<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Everyday Lab</title>
    <link>https://info-life.net/en/</link>
    <description>Practical guides and calculators we actually tested. Answers first, ads later.</description>
    <language>en</language>
    <lastBuildDate>Tue, 21 Jul 2026 09:00:00 +0900</lastBuildDate>
    <atom:link href="https://info-life.net/en/rss.xml" rel="self" type="application/rss+xml"/>
    <item>
      <title>Jeonse to Monthly Rent Calculator — Fair Rent and the Legal Cap (2026)</title>
      <link>https://info-life.net/en/jeonse-monthly-converter.html</link>
      <guid isPermaLink="true">https://info-life.net/en/jeonse-monthly-converter.html</guid>
      <category>Calculators</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Enter deposits and a rate for the fair monthly rent, compared against jeonse loan interest.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/jeonse-monthly-converter.webp" alt="Jeonse to Monthly Rent Calculator — Fair Rent and the Legal Cap (2026)"><br>        <p>When a Korean landlord proposes <strong>converting jeonse into part-monthly rent</strong>, it's hard to judge whether the offer is fair. They'll lower the deposit and add a monthly payment — but by how much should each move?</p>

        <p>One number governs it: the <strong>conversion rate</strong>. Enter the deposits and rate to get the fair monthly rent, and see <strong>whether borrowing to keep jeonse beats paying rent</strong>.</p>

        <!-- ▼▼ Conversion calculator ▼▼ -->
        <div class="scalc" id="jm-calc">
          <div class="scalc__title">Jeonse ↔ Monthly Rent Calculator <span>fair rent · legal cap · loan comparison</span></div>

          <div class="scalc__inputs">
            <div class="scalc__field">
              <label for="jm-deposit">Current jeonse deposit</label>
              <div class="scalc__inputwrap">
                <span class="scalc__unit">₩</span>
                <input id="jm-deposit" type="text" inputmode="numeric" value="300,000,000">
              </div>
            </div>
            <div class="scalc__field">
              <label for="jm-keep">Deposit to keep after conversion</label>
              <div class="scalc__inputwrap">
                <span class="scalc__unit">₩</span>
                <input id="jm-keep" type="text" inputmode="numeric" value="100,000,000">
              </div>
            </div>
            <div class="scalc__field scalc__field--sm">
              <label for="jm-rate">Conversion rate</label>
              <div class="scalc__inputwrap">
                <input id="jm-rate" type="number" inputmode="decimal" value="4.5" min="0" max="20" step="0.1">
                <span class="scalc__unit">%</span>
              </div>
            </div>
            <div class="scalc__field scalc__field--sm">
              <label for="jm-base">Bank of Korea base rate <small>(for the legal cap)</small></label>
              <div class="scalc__inputwrap">
                <input id="jm-base" type="number" inputmode="decimal" value="2.5" min="0" max="15" step="0.05">
                <span class="scalc__unit">%</span>
              </div>
            </div>
            <div class="scalc__field scalc__field--sm">
              <label for="jm-loan">Jeonse loan rate <small>(for comparison)</small></label>
              <div class="scalc__inputwrap">
                <input id="jm-loan" type="number" inputmode="decimal" value="4.0" min="0" max="15" step="0.1">
                <span class="scalc__unit">%</span>
              </div>
            </div>
          </div>

          <div class="scalc__result" id="jm-result">
            <div class="scalc__net">
              <span class="scalc__net-label">Monthly rent at your rate</span>
              <span class="scalc__net-value">₩<b id="jm-month">0</b></span>
              <span class="scalc__net-year">Converted deposit ₩<span id="jm-conv">0</span> · legal cap <span id="jm-cap">4.5</span>%</span>
            </div>
            <table class="scalc__table">
              <tbody id="jm-rows"></tbody>
            </table>
          </div>
          <p class="scalc__note">Calculates automatically. <strong>Rent = (converted deposit × rate) ÷ 12</strong>. The legal cap is the <strong>lower of base rate + 2%p and 10%</strong> (Housing Lease Protection Act art. 7-2); the base rate changes, so check it at contract time. The loan comparison uses interest only and is <strong>indicative</strong>.</p>
        </div>
        <script>
        (function(){
          var $=function(id){return document.getElementById(id);};
          var D=$('jm-deposit'),K=$('jm-keep'),R=$('jm-rate'),B=$('jm-base'),L=$('jm-loan'),rows=$('jm-rows');
          function won(v){ return Math.round(v).toLocaleString('en-US'); }
          function comma(el){
            el.addEventListener('input',function(){
              var raw=el.value.replace(/[^0-9]/g,'');
              var pos=el.selectionStart||0, before=el.value.slice(0,pos).replace(/[^0-9]/g,'').length;
              el.value = raw===''?'':Number(raw).toLocaleString('en-US');
              var np=0,seen=0; while(np<el.value.length&&seen<before){ var cc=el.value.charCodeAt(np); if(cc>=48&&cc<=57) seen++; np++; }
              try{ el.setSelectionRange(np,np); }catch(e){}
            });
          }
          function amt(el){ return Math.max(0, parseFloat(String(el.value).replace(/[^0-9]/g,''))||0); }
          [D,K].forEach(comma);
          function calc(){
            var dep=amt(D), keep=Math.min(amt(K),dep);
            var conv=Math.max(0, dep-keep);
            var rate=Math.max(0,parseFloat(R.value)||0);
            var base=Math.max(0,parseFloat(B.value)||0);
            var loan=Math.max(0,parseFloat(L.value)||0);
            var cap=Math.min(base+2, 10);
            var m=function(r){ return conv*(r/100)/12; };
            $('jm-conv').textContent=won(conv);
            $('jm-cap').textContent=cap.toFixed(2);
            $('jm-month').textContent=won(m(rate));
            var loanMonthly = conv*(loan/100)/12;
            var verdict, diff = m(rate)-loanMonthly;
            if(conv===0) verdict='Nothing to convert';
            else if(diff>0) verdict='Borrowing is cheaper by ₩'+won(diff)+'/month';
            else verdict='Renting is cheaper by ₩'+won(-diff)+'/month';
            rows.innerHTML=''
              + '<tr><td>At the legal cap ('+cap.toFixed(2)+'%)</td><td class="scalc__plain">₩'+won(m(cap))+'</td></tr>'
              + '<tr><td>At 5.0%</td><td class="scalc__plain">₩'+won(m(5))+'</td></tr>'
              + '<tr><td>At 6.0%</td><td class="scalc__plain">₩'+won(m(6))+'</td></tr>'
              + '<tr><td>At 7.0%</td><td class="scalc__plain">₩'+won(m(7))+'</td></tr>'
              + '<tr><td>Monthly interest if borrowed instead</td><td class="scalc__plain">₩'+won(loanMonthly)+'</td></tr>'
              + '<tr><td>Verdict</td><td class="scalc__plain">'+verdict+'</td></tr>';
          }
          [D,K,R,B,L].forEach(function(el){ el.addEventListener('input',calc); el.addEventListener('change',calc); });
          calc();
        })();
        </script>
        <!-- ▲▲ End calculator ▲▲ -->

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>The formula</h2>
        <div class="callout">
          <p style="margin:0;"><strong>Monthly rent = (jeonse deposit − retained deposit) × conversion rate ÷ 12</strong></p>
        </div>
        <p>With the defaults — ₩300M jeonse, keeping ₩100M, converting ₩200M at 4.5% — that's ₩9M a year, or <strong>₩750,000 a month</strong>.</p>
        <p>To go the other way, <strong>converted deposit = rent × 12 ÷ rate</strong>. Rent of ₩750,000 at 4.5% equals ₩200M of deposit.</p>

        <h2>The legal cap — and when it applies</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Legal cap</td><td class="scalc__plain">Lower of <strong>base rate + 2%p</strong> and <strong>10%</strong></td></tr>
            <tr><td>2026 basis</td><td class="scalc__plain">Base rate 2.5% → cap <strong>4.5%</strong></td></tr>
            <tr><td>Applies to</td><td class="scalc__plain">Conversion during a lease and when <strong>exercising the renewal right</strong></td></tr>
            <tr><td>⚠️ Does not apply</td><td class="scalc__plain"><strong>Brand-new contracts</strong> — those follow the market</td></tr>
            <tr><td>If exceeded</td><td class="scalc__plain">The excess is void and <strong>recoverable as unjust enrichment</strong></td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;">This trips people up constantly. <strong>Renewing your current lease with a conversion is capped; signing for a new place is not.</strong> That's why market conversion rates often exceed the legal cap. Note too that a landlord <strong>cannot impose conversion unilaterally — the tenant must agree.</strong></p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>The real test — conversion rate vs your loan rate</h2>
        <ul>
          <li><strong>Conversion rate above your loan rate</strong> → <strong>borrow and keep jeonse</strong></li>
          <li><strong>Conversion rate below your loan rate</strong> → <strong>take the monthly rent</strong></li>
        </ul>
        <p>With the defaults, 4.5% (₩750,000) versus a 4% loan (about ₩667,000) favours <strong>borrowing</strong>. But at a market rate of 6%, rent becomes ₩1,000,000 and the gap widens sharply.</p>
        <div class="callout">
          <p style="margin:0;">Numbers aren't everything. <strong>A loan means carrying deposit-recovery risk</strong> and facing borrowing limits, while renting <strong>ties up far less cash and less risk.</strong> See <a href="https://info-life.net/en/jeonse-vs-monthly-rent.html">jeonse vs monthly rent</a>.</p>
        </div>

        <h2>Taxes can flip the answer</h2>
        <ul>
          <li><strong>Monthly rent</strong> — qualifying tenants can claim a <strong>rent tax credit</strong>, lowering the real cost.</li>
          <li><strong>Jeonse loan</strong> — repayments may qualify for a <strong>deduction</strong>.</li>
        </ul>
        <p>Compare <strong>after tax</strong>, not just interest. See <a href="https://info-life.net/en/monthly-rent-tax-credit.html">the rent tax credit guide</a>.</p>

        <h2>Limits of this tool</h2>
        <ul>
          <li>The loan comparison counts <strong>interest only</strong> — no principal, fees or guarantee costs.</li>
          <li><strong>The base rate changes</strong>; enter the rate current at your contract date.</li>
          <li>Maintenance and parking costs aren't included.</li>
          <li><strong>Deposit-recovery risk</strong> can't be expressed as a number.</li>
        </ul>

        <h2>FAQ</h2>
        <h3>How do I judge the landlord's offer?</h3>
        <p>Work backwards: find the rate that produces their figure. If it <strong>exceeds the legal cap and you're renewing</strong>, you can push back.</p>
        <h3>How do I choose a semi-jeonse split?</h3>
        <p>Vary the retained deposit and watch the rent move — it's about balancing <strong>available cash against monthly capacity</strong>. See <a href="https://info-life.net/en/semi-jeonse-guide.html">choosing your split</a>.</p>
        <h3>How should the contract record it?</h3>
        <p>Use an <strong>amendment</strong> stating the new deposit and rent, and obtain a fresh fixed date stamp (see <a href="https://info-life.net/en/tenant-protection-law.html">tenant rights</a>).</p>

        <blockquote>The conversion rate isn't the landlord's number to set — it's the <strong>basis for negotiation</strong>. Know the fair figure before the conversation starts.</blockquote>

        <p>This is a general-information estimate, not legal or tax advice. Caps and their scope can change and depend on your contract — seek professional advice if a dispute seems likely.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Semi-Jeonse — How to Split Between Deposit and Rent</title>
      <link>https://info-life.net/en/semi-jeonse-guide.html</link>
      <guid isPermaLink="true">https://info-life.net/en/semi-jeonse-guide.html</guid>
      <category>Real Estate</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Each 50M won of deposit is worth about 190,000 won a month. Compare that with your cash&#x27;s opportunity cost.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/semi-jeonse-guide.webp" alt="Semi-Jeonse — How to Split Between Deposit and Rent"><br>        <p>Jeonse demands a daunting lump sum; monthly rent feels like money down the drain. In between sits <strong>semi-jeonse</strong> — a rental with a substantial deposit. The question is <strong>how to split between deposit and rent.</strong></p>

        <div class="callout">
          <p style="margin:0;"><strong>The test in one line</strong> — if adding to the deposit reduces rent by more than what that money would earn elsewhere (or cost you in loan interest), a bigger deposit wins.<br>
          Check your own splits in the <a href="https://info-life.net/en/jeonse-monthly-converter.html">conversion calculator</a>.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>What semi-jeonse actually is</h2>
        <p>It isn't a legal term — it simply describes <strong>a monthly rental with a large deposit</strong>. Functionally it's closer to renting than to jeonse.</p>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Type</strong></td><td class="scalc__plain"><strong>Deposit / rent / traits</strong></td></tr>
            <tr><td>Jeonse</td><td class="scalc__plain">Very large / none / needs a lump sum, <strong>higher recovery risk</strong></td></tr>
            <tr><td>Semi-jeonse</td><td class="scalc__plain">Medium / medium / <strong>spreads the burden</strong></td></tr>
            <tr><td>Monthly rent</td><td class="scalc__plain">Small / large / little cash tied up, <strong>lower risk</strong></td></tr>
          </tbody>
        </table>

        <h2>How the splits compare</h2>
        <p>Converting a ₩300M jeonse at a <strong>4.5%</strong> rate:</p>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Deposit retained</strong></td><td class="scalc__plain"><strong>Converted → monthly rent</strong></td></tr>
            <tr><td>₩250M</td><td class="scalc__plain">₩50M → about ₩188,000</td></tr>
            <tr><td>₩200M</td><td class="scalc__plain">₩100M → about ₩375,000</td></tr>
            <tr><td>₩150M</td><td class="scalc__plain">₩150M → about ₩563,000</td></tr>
            <tr><td>₩100M</td><td class="scalc__plain">₩200M → about ₩750,000</td></tr>
            <tr><td>₩50M</td><td class="scalc__plain">₩250M → about ₩938,000</td></tr>
          </tbody>
        </table>
        <p>Each <strong>₩50M of deposit is worth roughly ₩190,000 a month.</strong> That's your yardstick.</p>
        <div class="callout">
          <p style="margin:0;">Adding ₩50M to save ₩190,000 monthly (₩2.28M a year) equals a <strong>4.5% annual return</strong> on that money. If your savings rate is lower, <strong>raise the deposit</strong>; if you can earn more elsewhere, <strong>take the rent</strong>.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>When a bigger deposit wins</h2>
        <ul>
          <li>Your spare cash sits in <strong>savings earning less than the conversion rate</strong></li>
          <li>You want to <strong>reduce fixed monthly outgoings</strong> (irregular income)</li>
          <li>The offered rate is <strong>above market</strong> — converting costs you more</li>
        </ul>

        <h2>When more rent wins</h2>
        <ul>
          <li>You need the lump sum <strong>elsewhere</strong></li>
          <li>You're worried about <strong>deposit recovery</strong> — less deposit, less to lose</li>
          <li>You qualify for the <strong>rent tax credit</strong> (<a href="https://info-life.net/en/monthly-rent-tax-credit.html">check the rules</a>)</li>
          <li>You're staying <strong>short term</strong></li>
        </ul>

        <h2>⚠️ Safety comes before yield</h2>
        <div class="callout">
          <p style="margin:0;">Before optimising returns, check recovery. Confirm that <strong>senior mortgages plus your deposit stay under about 70% of market value.</strong> Above 80%, an auction may not return your money in full.</p>
        </div>
        <ul>
          <li>Read the <a href="https://info-life.net/en/property-register-guide.html">property register</a> before signing</li>
          <li>Check whether the amount qualifies for <strong>deposit-return insurance</strong> — rejection is itself a warning</li>
          <li>The larger the deposit, the more essential that insurance becomes</li>
        </ul>
        <p>A favourable yield calculation means nothing if the deposit isn't safe.</p>

        <h2>Using this in negotiation</h2>
        <ol>
          <li>Work out the <strong>implied rate</strong> of their offer in the <a href="https://info-life.net/en/jeonse-monthly-converter.html">calculator</a></li>
          <li>Compare it against the <strong>legal cap and market levels</strong></li>
          <li>If renewing, you can <strong>push back on anything above the cap</strong></li>
          <li>Propose a <strong>specific alternative split</strong></li>
          <li>Record the agreement in an <strong>amended contract</strong> and get a fresh fixed date stamp</li>
        </ol>
        <p>"Could you lower it?" persuades far less than "at 6% that's ₩1,000,000; at the 4.5% cap it's ₩750,000."</p>

        <h2>FAQ</h2>
        <h3>Does semi-jeonse need a fixed date stamp?</h3>
        <p>Absolutely — any deposit requires <strong>move-in registration plus a fixed date</strong> (see <a href="https://info-life.net/en/tenant-protection-law.html">tenant rights</a>).</p>
        <h3>Does a smaller deposit weaken my protection?</h3>
        <p>Opposing power comes from registration and occupancy, but <strong>how much you recover at auction</strong> depends on deposit size and ranking.</p>
        <h3>Can we change the split mid-lease?</h3>
        <p>Yes, by agreement. Use an <strong>amended contract</strong> and renew the fixed date stamp.</p>

        <blockquote>The answer is <strong>your cash's opportunity cost versus the conversion rate</strong> — but check first that the deposit can be safely recovered.</blockquote>

        <p>This is general information, not legal or investment advice. Rates and caps change — verify at contract time.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Korea&#x27;s Conversion Rate Cap and How to Negotiate It</title>
      <link>https://info-life.net/en/conversion-rate-negotiation.html</link>
      <guid isPermaLink="true">https://info-life.net/en/conversion-rate-negotiation.html</guid>
      <category>Real Estate</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>At renewal the rate can&#x27;t exceed base rate plus 2 points — and it can&#x27;t change without your consent.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/conversion-rate-negotiation.webp" alt="Korea&#x27;s Conversion Rate Cap and How to Negotiate It"><br>        <p>When a landlord says <strong>"I'm converting to semi-jeonse at renewal,"</strong> most tenants simply accept — unsure whether they can refuse or whether the figure is fair.</p>

        <p>Knowing the rules changes the conversation. <strong>Conversions are capped by law, and above all they require your consent.</strong></p>

        <div class="callout">
          <p style="margin:0;"><strong>Three points</strong> — ① a landlord <strong>cannot convert unilaterally</strong> ② at renewal the rate <strong>cannot exceed base rate + 2%p</strong> ③ rent paid above the cap is <strong>recoverable</strong>.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>The legal conversion cap</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Formula</td><td class="scalc__plain">Lower of <strong>base rate + 2%p</strong> and <strong>10%</strong></td></tr>
            <tr><td>2026 basis</td><td class="scalc__plain">Base rate 2.5% → <strong>4.5%</strong></td></tr>
            <tr><td>If the base rate were 3.5%</td><td class="scalc__plain">3.5 + 2 = <strong>5.5%</strong></td></tr>
            <tr><td>If the base rate were 8.5%</td><td class="scalc__plain">10.5% vs 10% → <strong>10%</strong> applies</td></tr>
            <tr><td>Scope</td><td class="scalc__plain">Residential leases (commercial has separate rules)</td></tr>
          </tbody>
        </table>
        <p>The Bank of Korea sets the base rate eight times a year, so <strong>the cap moves with it.</strong> Check the rate current at your contract date.</p>

        <h2>⚠️ When the cap actually applies</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Situation</strong></td><td class="scalc__plain"><strong>Cap applies?</strong></td></tr>
            <tr><td>Converting during an existing lease</td><td class="scalc__plain">✅ <strong>Yes</strong></td></tr>
            <tr><td>Renewing via the renewal request right</td><td class="scalc__plain">✅ <strong>Yes</strong></td></tr>
            <tr><td>A brand-new contract elsewhere</td><td class="scalc__plain">❌ <strong>No</strong> — market rates</td></tr>
            <tr><td>Signing fresh terms after expiry</td><td class="scalc__plain">⚠️ Disputed — depends on renewal versus new</td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;">This is why <strong>market conversion rates often exceed the legal cap</strong> — new contracts aren't bound. Conversely, if you're <strong>renewing your current lease, the cap is a powerful argument</strong> in your hands.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Can a landlord impose it?</h2>
        <p><strong>No.</strong> Converting jeonse to rent changes the contract terms and <strong>requires tenant agreement.</strong></p>
        <ul>
          <li>Mid-lease, terms <strong>cannot change without consent.</strong></li>
          <li>At renewal, the tenant can invoke the <strong>renewal request right</strong> for two more years on broadly existing terms (once, with rent increases capped at 5%).</li>
          <li>Refusing renewal requires <strong>statutory grounds</strong>, such as the owner moving in.</li>
        </ul>
        <p>So "accept it or leave" isn't the whole story — the renewal right, the 5% cap and the conversion cap work together (see <a href="https://info-life.net/en/tenant-protection-law.html">tenant rights</a>).</p>

        <h2>Negotiating, step by step</h2>
        <ol>
          <li><strong>Reverse-engineer the implied rate</strong>:<br>rate = (rent × 12) ÷ (old deposit − new deposit) × 100 — use the <a href="https://info-life.net/en/jeonse-monthly-converter.html">calculator</a></li>
          <li><strong>Compare with the cap</strong> (currently 4.5%)</li>
          <li>Establish whether this is a <strong>renewal or a new contract</strong></li>
          <li><strong>Counter with specific numbers</strong>: "6% means ₩1,000,000; the 4.5% cap means ₩750,000."</li>
          <li>Record it in an <strong>amended contract</strong> and get a new fixed date stamp</li>
        </ol>
        <div class="callout">
          <p style="margin:0;"><strong>Keep records.</strong> Negotiate by message or email — if a dispute follows, <strong>what was agreed</strong> becomes the key evidence.</p>
        </div>

        <h2>If you've already overpaid</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Step 1</td><td class="scalc__plain">Calculate the excess from the contract and transfer records</td></tr>
            <tr><td>Step 2</td><td class="scalc__plain">Request repayment by <strong>certified mail</strong></td></tr>
            <tr><td>Step 3</td><td class="scalc__plain">Apply to the <strong>lease dispute mediation committee</strong></td></tr>
            <tr><td>Step 4</td><td class="scalc__plain">Litigation if unresolved (small-claims procedure for modest sums)</td></tr>
          </tbody>
        </table>
        <p>If raising it while living there feels awkward, some tenants <strong>settle at move-out</strong> instead. Either way, keep the evidence as you go.</p>

        <h2>FAQ</h2>
        <h3>What if the landlord refuses my counter-offer?</h3>
        <p>Where the renewal right applies, you can insist on <strong>two more years on existing terms</strong> with increases capped at 5%.</p>
        <h3>Can we agree below the cap?</h3>
        <p>Of course — the cap is a <strong>maximum</strong>, not a target.</p>
        <h3>Can we negotiate the deposit-rent mix too?</h3>
        <p>Yes. Even at one rate, the <strong>split is negotiable</strong> (see <a href="https://info-life.net/en/semi-jeonse-guide.html">choosing your split</a>).</p>

        <blockquote>The conversion rate isn't something you're told — there's a <strong>legal ceiling</strong>, and it can't change <strong>without your agreement.</strong></blockquote>

        <p>This is general information, not legal advice. Whether the cap applies depends on the nature of the contract — consult a legal service if a dispute is likely.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Korea&#x27;s Monthly Rent Tax Credit — Registration Is the Gateway</title>
      <link>https://info-life.net/en/monthly-rent-tax-credit.html</link>
      <guid isPermaLink="true">https://info-life.net/en/monthly-rent-tax-credit.html</guid>
      <category>Real Estate</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>17% for salaries under 55M won. Rent of 600,000 won returns about 1.22M won a year.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/monthly-rent-tax-credit.webp" alt="Korea&#x27;s Monthly Rent Tax Credit — Registration Is the Gateway"><br>        <p>If you pay monthly rent in Korea, some of it comes back at year-end settlement. Yet many tenants miss it — confusing <strong>tax credits with deductions</strong>, or assuming they don't qualify.</p>

        <p>The rent credit is subtracted <strong>directly from tax owed</strong>, so the effect is substantial.</p>

        <div class="callout">
          <p style="margin:0;"><strong>Three core requirements</strong> — ① <strong>no home owned</strong> by the household ② <strong>total salary of ₩80M or less</strong> ③ <strong>move-in registration</strong> matching the lease address. Housing size or value conditions also apply.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>How much comes back</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Total salary</strong></td><td class="scalc__plain"><strong>Credit rate</strong></td></tr>
            <tr><td>₩55M or less</td><td class="scalc__plain"><strong>17%</strong></td></tr>
            <tr><td>₩55M – ₩80M</td><td class="scalc__plain"><strong>15%</strong></td></tr>
            <tr><td>Above ₩80M</td><td class="scalc__plain">Not eligible</td></tr>
            <tr><td>Annual cap on rent counted</td><td class="scalc__plain"><strong>₩10M</strong></td></tr>
          </tbody>
        </table>
        <p><strong>Example</strong> — ₩600,000 monthly rent, ₩50M salary: ₩7.2M a year × 17% = <strong>about ₩1.22M</strong> credited.</p>
        <div class="callout">
          <p style="margin:0;"><strong>Credits differ from deductions.</strong> A deduction reduces taxable income, so you save only your marginal rate. A <strong>credit is subtracted from the tax itself</strong> — far more valuable for the same amount.</p>
        </div>

        <h2>Eligibility in detail</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Home ownership</td><td class="scalc__plain"><strong>No home</strong> owned by the household at year-end</td></tr>
            <tr><td>Income</td><td class="scalc__plain">Total salary <strong>₩80M or less</strong></td></tr>
            <tr><td>Housing size</td><td class="scalc__plain"><strong>85㎡ or under</strong>, or meeting the value condition</td></tr>
            <tr><td>Property type</td><td class="scalc__plain">Apartments, houses, <strong>officetels and goshiwon</strong> included</td></tr>
            <tr><td>Contract holder</td><td class="scalc__plain">You or a qualifying dependent</td></tr>
            <tr><td>Address</td><td class="scalc__plain"><strong>Registered address must match the lease</strong></td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;"><strong>⚠️ The most common miss: move-in registration.</strong> A contract alone isn't enough — <strong>without registration there's no credit</strong>, and only rent paid <strong>after</strong> registration counts. Register the day you move (it also <a href="https://info-life.net/en/tenant-protection-law.html">protects your deposit</a>).</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>How to claim</h2>
        <ol>
          <li><strong>Documents</strong> — lease contract copy, proof of rent transfers, residence certificate</li>
          <li>Submit at <strong>year-end settlement</strong>, or confirm the pre-filled Hometax data</li>
          <li>Missed it? Claim in the <strong>May income tax filing</strong></li>
          <li>Missed that too? File an <strong>amended return within five years</strong></li>
        </ol>
        <p>Cash payments are hard to evidence — <strong>pay by bank transfer</strong> and label it.</p>

        <h2>If the landlord objects</h2>
        <p>Some landlords ask tenants not to claim, since it reveals rental income.</p>
        <ul>
          <li>The credit is <strong>your legal right.</strong></li>
          <li>Such clauses are <strong>unlikely to be enforceable.</strong></li>
          <li>To avoid friction, some tenants file an <strong>amended return after moving out</strong>, within five years.</li>
        </ul>
        <p>The landlord's <a href="https://info-life.net/en/rental-income-tax.html">rental income tax</a> is a separate matter, and much of it is already visible through lease records.</p>

        <h2>If you don't qualify</h2>
        <p>You can still request a <strong>cash receipt for rent</strong> and include it in the card-spending deduction.</p>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Aspect</strong></td><td class="scalc__plain"><strong>Rent credit / cash-receipt deduction</strong></td></tr>
            <tr><td>Effect</td><td class="scalc__plain">Cuts tax directly (15–17%) / reduces taxable income</td></tr>
            <tr><td>Better option</td><td class="scalc__plain"><strong>Usually the credit</strong> / fallback if ineligible</td></tr>
            <tr><td>Both?</td><td class="scalc__plain"><strong>One or the other</strong></td></tr>
          </tbody>
        </table>
        <p>Cash receipts can be requested through Hometax using the lease — <strong>no landlord consent needed.</strong></p>

        <h2>FAQ</h2>
        <h3>Must I be the head of household?</h3>
        <p>Generally, though a household member may qualify if the head hasn't claimed related benefits.</p>
        <h3>Do officetels count?</h3>
        <p>Yes, when <strong>used residentially</strong> and other conditions are met.</p>
        <h3>I moved mid-year.</h3>
        <p>Combine rent paid <strong>while registered at each address</strong>. Keep every contract.</p>
        <h3>I missed last year.</h3>
        <p>File an <strong>amended return within five years</strong> via Hometax.</p>

        <blockquote>The gateway to this credit is <strong>move-in registration</strong>. Do it on moving day and you protect your deposit and your refund at once.</blockquote>

        <p>This is general information, not tax advice. Rates, caps and conditions change — confirm with Hometax or a tax professional.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>How to Book Cheaper Flights — Cutting Through the Myths</title>
      <link>https://info-life.net/en/flight-booking-cheap.html</link>
      <guid isPermaLink="true">https://info-life.net/en/flight-booking-cheap.html</guid>
      <category>Life Tips</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>&quot;Buy on Tuesday&quot; is weakly supported. Shifting your departure day matters far more.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/flight-booking-cheap.webp" alt="How to Book Cheaper Flights — Cutting Through the Myths"><br>        <p>Few subjects attract as much <strong>folklore as airfares</strong>. "Buy on Tuesday at 3am." "Search in incognito mode." Test these against actual data and <strong>most turn out weak or flip from year to year.</strong></p>

        <p>What genuinely saves money is simpler: <strong>when you fly matters far more than when you buy.</strong></p>

        <div class="callout">
          <p style="margin:0;"><strong>Three lines</strong> — ① adjust your <strong>departure day</strong>, not your purchase day ② booking timing is about <strong>how far out you are</strong>, not a magic weekday ③ compare <strong>total cost including bags and fees</strong>.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>1. Testing the myths</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Claim</strong></td><td class="scalc__plain"><strong>Reality</strong></td></tr>
            <tr><td>"Tuesday is the cheapest day to buy"</td><td class="scalc__plain">❌ <strong>Weakly supported.</strong> Studies disagree — the same source has named Sunday one year and Friday the next</td></tr>
            <tr><td>"Incognito mode lowers prices"</td><td class="scalc__plain">❌ Largely <strong>negligible.</strong> Prices move with seat inventory and demand</td></tr>
            <tr><td>"Last minute is always cheaper"</td><td class="scalc__plain">❌ A gamble — off-season deals exist, but <strong>peak season spikes</strong></td></tr>
            <tr><td>"Earlier is always cheaper"</td><td class="scalc__plain">❌ Book too early and only <strong>higher initial fare buckets</strong> are open</td></tr>
            <tr><td>"Changing your departure day helps"</td><td class="scalc__plain">✅ <strong>This one is real</strong></td></tr>
          </tbody>
        </table>
        <p>The Tuesday story has roots: airlines once released fare sales early in the week. But pricing is now <strong>algorithmic and continuous</strong>, which has flattened that pattern.</p>

        <h2>2. What actually moves the price</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Factor</strong></td><td class="scalc__plain"><strong>Expensive / cheaper</strong></td></tr>
            <tr><td>Departure day</td><td class="scalc__plain">Fri–Sun, especially Friday evening / <strong>Tue and Wed</strong>, often Saturday too</td></tr>
            <tr><td>Departure time</td><td class="scalc__plain">Mid-morning and after work / <strong>very early or late night</strong></td></tr>
            <tr><td>Season</td><td class="scalc__plain">Summer peak, holidays / <strong>shoulder and low season</strong></td></tr>
            <tr><td>Flexibility</td><td class="scalc__plain">Fixed dates / <strong>±3 days</strong></td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;">The logic is avoiding <strong>both business and weekend demand</strong>. Business travellers leave Monday and return Friday; weekend travellers leave Friday evening. <strong>Tuesday and Wednesday fall in the gap.</strong> Shifting your departure by three days beats obsessing over purchase day.</p>
        </div>

        <h2>3. When to book — measured in weeks out</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Trip type</strong></td><td class="scalc__plain"><strong>Suggested booking window</strong></td></tr>
            <tr><td>Domestic</td><td class="scalc__plain"><strong>1–3 months</strong> ahead</td></tr>
            <tr><td>International, off-peak</td><td class="scalc__plain"><strong>2–6 months</strong> ahead</td></tr>
            <tr><td>International, peak or holidays</td><td class="scalc__plain"><strong>6–10 months</strong> ahead</td></tr>
            <tr><td>Fixed-date events</td><td class="scalc__plain">Prioritise <strong>securing the seat</strong> over price</td></tr>
          </tbody>
        </table>
        <p>Peak season is the exception: <strong>when demand is certain, waiting costs money.</strong> "A deal will appear" rarely works in July and August.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>4. Searching properly</h2>
        <ul>
          <li><strong>Set price alerts</strong> — more accurate and less effort than checking daily.</li>
          <li><strong>Search by whole month</strong> — calendar views show the cheapest dates, and one day often swings the fare noticeably.</li>
          <li><strong>Widen your airports</strong> — big cities have several, and a nearby city plus ground transport can undercut them.</li>
          <li><strong>Compare round-trip against two one-ways</strong>, potentially on different airlines.</li>
          <li><strong>Don't dismiss connections</strong> — one stop often cuts the fare sharply. Just check <strong>layover time and baggage transfer</strong>.</li>
        </ul>

        <h2>5. ⚠️ Compare totals, not headline fares</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Item</strong></td><td class="scalc__plain"><strong>What to check</strong></td></tr>
            <tr><td>Checked bag</td><td class="scalc__plain">Included? Weight? <strong>Adding later costs far more</strong></td></tr>
            <tr><td>Cabin bag</td><td class="scalc__plain">Basic fares may allow <strong>only a small personal item</strong></td></tr>
            <tr><td>Seat selection</td><td class="scalc__plain">Free or paid</td></tr>
            <tr><td>Payment fee</td><td class="scalc__plain">Some sellers charge for card payment</td></tr>
            <tr><td>Changes and refunds</td><td class="scalc__plain">Cheap fares are often <strong>non-changeable and non-refundable</strong></td></tr>
            <tr><td>Airport location</td><td class="scalc__plain">Outlying airports add <strong>transfer cost and time</strong></td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;">Those last two matter most. <strong>A fare that's cheaper by the price of a return airport bus, arriving at 2am</strong>, isn't really cheaper. Compare <strong>door to door</strong>.</p>
        </div>

        <h2>6. Airline direct vs booking sites</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Airline website</strong></td><td class="scalc__plain">Changes and disruptions handled <strong>directly and faster</strong>, reliable mileage / sometimes slightly pricier</td></tr>
            <tr><td><strong>Booking site</strong></td><td class="scalc__plain">Easy comparison, promo codes / <strong>an extra party</strong> when something goes wrong</td></tr>
          </tbody>
        </table>
        <p>When prices are close, <strong>book direct</strong> — the difference in handling a cancellation is stark. If you use an agency, check its <strong>change policy and support channels</strong> first.</p>

        <h2>7. One more thing at checkout</h2>
        <p>If a foreign airline or booking site offers to charge you <strong>in your home currency</strong>, decline. That's dynamic currency conversion, and it typically adds <strong>3–8%</strong>. Always choose the <strong>local currency</strong> — see <a href="https://info-life.net/en/overseas-payment-fees.html">cutting overseas payment fees</a>.</p>

        <h2>Checklist</h2>
        <ol>
          <li>Decide your <strong>date range</strong> first (±3 days opens far more options)</li>
          <li>Use month-view search to find <strong>cheap date bands</strong></li>
          <li>Set a <strong>price alert</strong></li>
          <li>Include Tue/Wed departures and early or late flights</li>
          <li>Compare finalists on <strong>total cost including bags and transfers</strong></li>
          <li>If close, <strong>book direct</strong></li>
          <li>Pay in <strong>local currency</strong></li>
          <li>Verify <strong>name spelling</strong> immediately — corrections cost money</li>
        </ol>

        <h2>FAQ</h2>
        <h3>Should I wait for the price to drop?</h3>
        <p>Reasonable off-season with flexible dates. For <strong>peak periods or fixed dates</strong>, waiting usually costs more.</p>
        <h3>Connections are much cheaper — is that fine?</h3>
        <p>Check for at least <strong>two hours</strong> (more internationally) and whether bags transfer through. <strong>Separately ticketed flights</strong> don't protect you if the first leg is late.</p>
        <h3>Are miles worth using?</h3>
        <p>Generally best on <strong>long-haul or premium cabins</strong>. Short economy redemptions usually waste value.</p>

        <blockquote>Airfare isn't a game of when you buy — it's <strong>when you fly</strong>. If you can move your dates by three days, that's the biggest discount available.</blockquote>

        <p>This is general information and doesn't endorse specific airlines or agencies. Fare rules and fees vary — check the conditions before booking.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Booking Hotels for Less — Make Free Cancellation Your Tool</title>
      <link>https://info-life.net/en/hotel-booking-cheap.html</link>
      <guid isPermaLink="true">https://info-life.net/en/hotel-booking-cheap.html</guid>
      <category>Life Tips</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Lock in a refundable room first, then compare. With a room secured you can&#x27;t lose.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/hotel-booking-cheap.webp" alt="Booking Hotels for Less — Make Free Cancellation Your Tool"><br>        <p>Same hotel, same dates — and <strong>every site shows a different price.</strong> Then taxes and resort fees appear at checkout and the final number no longer resembles the one you saw.</p>

        <p>Unlike flights, hotels give you <strong>one powerful tool: free cancellation.</strong> Using it well is the whole strategy.</p>

        <div class="callout">
          <p style="margin:0;"><strong>The strategy in a line</strong> — <strong>book something with free cancellation now</strong>, keep watching prices, and switch if something better appears. You compare at leisure with a room already secured.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>1. Why prices differ</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Channel</strong></td><td class="scalc__plain"><strong>Characteristics</strong></td></tr>
            <tr><td>Booking sites (OTAs)</td><td class="scalc__plain">Easy comparison, frequent promotions</td></tr>
            <tr><td>Hotel's own website</td><td class="scalc__plain">Member rates, upgrades, breakfast — <strong>often better conditions</strong></td></tr>
            <tr><td>Bundled packages</td><td class="scalc__plain">Flight plus hotel can discount both</td></tr>
            <tr><td>Member-only rates</td><td class="scalc__plain">Often invisible until you sign in</td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;"><strong>Always do this</strong> — once you've found a hotel on a booking site, <strong>check the hotel's own site for the same dates</strong>. Even at the same price, breakfast, an upgrade or late checkout frequently tips it in their favour. It takes a minute.</p>
        </div>

        <h2>2. Build around free cancellation</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Rate type</strong></td><td class="scalc__plain"><strong>Traits · when to use</strong></td></tr>
            <tr><td><strong>Free cancellation</strong></td><td class="scalc__plain">Cancellable until days before arrival, usually pay at property<br>→ <strong>plans still fluid, or still hunting</strong></td></tr>
            <tr><td><strong>Prepaid rate</strong></td><td class="scalc__plain">10–20% cheaper but <strong>non-refundable</strong><br>→ <strong>only when dates are certain</strong></td></tr>
          </tbody>
        </table>
        <ol>
          <li><strong>Secure a free-cancellation booking early</strong> (rooms disappear first in peak season)</li>
          <li>Check prices occasionally before departure</li>
          <li>Found cheaper? <strong>Book the new one first, then cancel the old</strong> — order matters</li>
          <li>Once dates are locked and the price is good, switching to prepaid can save more</li>
        </ol>

        <h2>3. ⚠️ Displayed price ≠ final price</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Item</strong></td><td class="scalc__plain"><strong>What to check</strong></td></tr>
            <tr><td>Taxes and service charges</td><td class="scalc__plain">Vary by country and city; can exceed <strong>10–20%</strong></td></tr>
            <tr><td><strong>Resort or facility fees</strong></td><td class="scalc__plain">Per night, often <strong>excluded from the listing and charged on site</strong></td></tr>
            <tr><td>City or tourist tax</td><td class="scalc__plain">Frequently collected <strong>in cash at the property</strong></td></tr>
            <tr><td>Breakfast</td><td class="scalc__plain">For one person or two?</td></tr>
            <tr><td>Parking and Wi-Fi</td><td class="scalc__plain">Paid more often than you'd expect</td></tr>
            <tr><td>Extra guests</td><td class="scalc__plain">Rates usually assume two</td></tr>
          </tbody>
        </table>
        <p>Always compare on the <strong>total-price view including taxes and fees</strong> — most sites offer that toggle.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>4. When to book</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Peak season, festivals, holidays</td><td class="scalc__plain"><strong>Book early</strong> with free cancellation</td></tr>
            <tr><td>Off-season weekdays</td><td class="scalc__plain">You can wait and watch for <strong>unsold-room deals</strong></td></tr>
            <tr><td>City-centre weekends</td><td class="scalc__plain">Tourist demand — <strong>weekdays cheaper</strong></td></tr>
            <tr><td>Business districts</td><td class="scalc__plain">The reverse — <strong>weekends cheaper</strong></td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;"><strong>Read the neighbourhood.</strong> Hotels serving business travellers <strong>empty out at weekends</strong> and cut prices; tourist-area hotels do the opposite. Within one city, the weekly pattern can run in opposite directions by district.</p>
        </div>

        <h2>5. Quiet savings</h2>
        <ul>
          <li><strong>Loyalty programmes are free</strong> — signing up often unlocks member rates and free Wi-Fi.</li>
          <li><strong>Multi-night discounts</strong> commonly kick in at three nights.</li>
          <li><strong>Drop the room category</strong> — view and high floors are poor value if you're mostly sleeping.</li>
          <li><strong>Move one stop out</strong> — a station or two from the centre cuts rates sharply. Weigh the transport cost and time.</li>
          <li><strong>Diary the cancellation deadline</strong> — miss it and the booking hardens.</li>
          <li><strong>Contact the hotel directly</strong> for long stays or multiple rooms.</li>
        </ul>

        <h2>6. After booking and at check-in</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Confirmation</td><td class="scalc__plain">Name spelling, dates, guests, <strong>breakfast included?</strong></td></tr>
            <tr><td>Cancellation deadline</td><td class="scalc__plain">Set a calendar reminder</td></tr>
            <tr><td>Payment currency</td><td class="scalc__plain">Beware auto-selected home currency → choose <strong>local</strong></td></tr>
            <tr><td>Deposit hold</td><td class="scalc__plain">Card authorisation at check-in; release can take <strong>several days</strong></td></tr>
            <tr><td>Check-in/out times</td><td class="scalc__plain">Request early or late <strong>in advance</strong></td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;"><strong>Many international booking sites default to your home currency</strong> based on where you connect from. Leaving it adds <strong>3–8%</strong>. Switching to the <strong>local currency</strong> at checkout can save real money (see <a href="https://info-life.net/en/overseas-payment-fees.html">overseas payment fees</a>).</p>
        </div>

        <h2>7. Reading reviews</h2>
        <ul>
          <li><strong>Sort by newest</strong> — year-old reviews miss renovations and management changes.</li>
          <li><strong>Mid-range reviews</strong> carry the most information; extremes are noise.</li>
          <li><strong>Watch for repeated words</strong> — "noise," "mould," "hot water" appearing repeatedly signals a real issue.</li>
          <li>Read reviews from <strong>travellers like you</strong> — families, business and backpackers want different things.</li>
          <li>Look at <strong>guest photos</strong>, not the official gallery.</li>
        </ul>

        <h2>FAQ</h2>
        <h3>Are booking sites always cheaper?</h3>
        <p>No. The hotel's own site is often <strong>equal or better once perks are counted.</strong></p>
        <h3>Does last-minute booking work?</h3>
        <p>Sometimes off-season midweek. In <strong>peak periods rooms vanish or spike</strong> — it's a gamble.</p>
        <h3>Should I take the prepaid rate?</h3>
        <p>Only with certain dates. Otherwise treat the difference as <strong>an insurance premium</strong> and keep flexibility.</p>
        <h3>How do I get an upgrade?</h3>
        <p>Never guaranteed, but <strong>membership, a polite request and low season</strong> together improve the odds. Mentioning a special occasion in advance can help.</p>

        <blockquote>Hotel booking isn't about haggling — it's about <strong>holding a free-cancellation room while you compare.</strong> With a room secured, you can't lose.</blockquote>

        <p>This is general information and doesn't endorse specific properties or agencies. Rate policies and extra charges vary — confirm before booking.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Cutting Overseas Card Fees — Never Pay in Your Home Currency</title>
      <link>https://info-life.net/en/overseas-payment-fees.html</link>
      <guid isPermaLink="true">https://info-life.net/en/overseas-payment-fees.html</guid>
      <category>Life Tips</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Choosing your home currency at the terminal adds 3-8%. One request before you fly ends it.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/overseas-payment-fees.webp" alt="Cutting Overseas Card Fees — Never Pay in Your Home Currency"><br>        <p>People compare flights and hotels obsessively, then <strong>lose money at the payment terminal</strong> without noticing. The biggest leak is one button: <strong>"Would you like to pay in your home currency?"</strong></p>

        <p>Tapping yes adds <strong>3–8% to the transaction</strong>. Spend the equivalent of $1,000 and that's up to $80 gone.</p>

        <div class="callout">
          <p style="margin:0;"><strong>The rule</strong> — when paying by card abroad, <strong>always choose the local currency</strong>. Seeing the amount in your own currency feels reassuring, and that reassurance costs <strong>3–8%</strong>.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>1. DCC — the most expensive courtesy</h2>
        <p>When a foreign merchant offers to bill you in your home currency, that's <strong>dynamic currency conversion (DCC)</strong>.</p>
        <p>It looks helpful, but the conversion is performed by <strong>the merchant's provider at their own exchange rate</strong>, with a margin added. Your card issuer can't intervene — <strong>declining is the only defence.</strong></p>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Aspect</strong></td><td class="scalc__plain"><strong>Local currency / home currency (DCC)</strong></td></tr>
            <tr><td>Who converts</td><td class="scalc__plain">Card networks and your issuer / <strong>the merchant's provider</strong></td></tr>
            <tr><td>Extra fee</td><td class="scalc__plain">None / <strong>3–8% of the amount</strong></td></tr>
            <tr><td>Exchange rate</td><td class="scalc__plain">Generally favourable / <strong>often unfavourable</strong></td></tr>
            <tr><td>Receipt</td><td class="scalc__plain">Local currency only / <strong>shows your home currency too</strong></td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;"><strong>Check the receipt.</strong> If it shows your home currency alongside the local amount, <strong>DCC was applied</strong>. Ask them to <strong>void it and re-run in local currency</strong> on the spot — afterwards it's hard to undo.</p>
        </div>

        <h2>2. Where it happens most</h2>
        <ul>
          <li><strong>Airport duty-free and tourist shops</strong> — the more foreign customers, the harder the push</li>
          <li><strong>Hotel check-in and checkout</strong> — sometimes preselected</li>
          <li><strong>Car rental desks</strong> — large amounts, large losses</li>
          <li><strong>⚠️ International booking sites and airline websites</strong> — many <strong>default to your home currency</strong> based on your location. You can lose money before leaving home</li>
          <li><strong>Overseas online shopping</strong> — check the currency selector</li>
        </ul>

        <h3>Block it permanently</h3>
        <p>Many card issuers offer a <strong>DCC block service</strong>. With it enabled, home-currency authorisation simply <strong>won't go through</strong>, so even a mistaken tap forces local currency.</p>
        <ul>
          <li>Request it <strong>free</strong> via the app, website or customer service</li>
          <li>It <strong>doesn't affect domestic use</strong></li>
          <li>Set it once and you're <strong>protected on every trip</strong> — the most reliable fix</li>
        </ul>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>3. What fees exist even without DCC</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Network fee</td><td class="scalc__plain">Charged by Visa, Mastercard and others (typically <strong>around 1%</strong>)</td></tr>
            <tr><td>Issuer foreign transaction fee</td><td class="scalc__plain">Charged by your bank</td></tr>
            <tr><td>Exchange spread</td><td class="scalc__plain">Margin baked into the rate</td></tr>
            <tr><td>ATM withdrawal fee</td><td class="scalc__plain">Possible from <strong>both</strong> the local ATM and your bank</td></tr>
          </tbody>
        </table>
        <p>Together these commonly total <strong>around 2.5%</strong> on an ordinary credit card. Add DCC and you're looking at <strong>5–10%</strong>.</p>

        <h2>4. Comparing payment methods</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Prepaid travel card</strong></td><td class="scalc__plain">Exchange, payment and ATM fees <strong>usually waived</strong>; losses capped at the loaded balance / <strong>converting leftovers back</strong> may cost, check supported currencies</td></tr>
            <tr><td><strong>Credit card</strong></td><td class="scalc__plain">Higher limits, better for deposits, loss protection / <strong>about 2.5% in fees</strong>, cash withdrawals treated as advances</td></tr>
            <tr><td><strong>Cash</strong></td><td class="scalc__plain">Essential where cards aren't taken / theft risk, exchange costs both ways</td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;"><strong>A practical mix</strong> — a <strong>prepaid travel card as your main</strong> method, <strong>one credit card in reserve</strong> for deposits and emergencies, plus <strong>a little cash</strong>. Card network acceptance varies by country, so match the brand to your destination.</p>
        </div>

        <h2>5. Withdrawing cash abroad</h2>
        <ul>
          <li>ATMs ask about conversion too. If offered <strong>"with conversion" or "without conversion,"</strong> choose <strong>without</strong> (local currency).</li>
          <li><strong>Fewer, larger withdrawals</strong> — ATM fees are usually flat per transaction.</li>
          <li>Use <strong>bank-operated ATMs</strong>; standalone machines in shops charge more and are less secure.</li>
          <li>Read the <strong>fee shown on screen</strong> before confirming, and cancel if it's excessive.</li>
        </ul>

        <h2>6. Five-minute pre-trip checklist</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>1</td><td class="scalc__plain">Ask your issuer to <strong>block DCC</strong></td></tr>
            <tr><td>2</td><td class="scalc__plain">Prepare <strong>one or two low-fee cards</strong></td></tr>
            <tr><td>3</td><td class="scalc__plain">Confirm <strong>overseas use is enabled</strong> and check limits</td></tr>
            <tr><td>4</td><td class="scalc__plain">Save the <strong>lost-card hotline</strong></td></tr>
            <tr><td>5</td><td class="scalc__plain">Split cards <strong>across two bags</strong></td></tr>
            <tr><td>6</td><td class="scalc__plain">Carry <strong>some emergency cash</strong></td></tr>
          </tbody>
        </table>

        <h2>7. Three habits while travelling</h2>
        <ol>
          <li><strong>"Local currency, please"</strong> — check the terminal and the receipt</li>
          <li><strong>Keep your card in sight</strong></li>
          <li><strong>Turn on payment alerts</strong> to catch fraud immediately</li>
        </ol>
        <p>For the rest of the trip, see the <a href="https://info-life.net/en/travel-packing-guide.html">packing guide</a>, <a href="https://info-life.net/en/flight-booking-cheap.html">cheaper flights</a> and <a href="https://info-life.net/en/hotel-booking-cheap.html">hotel booking</a>.</p>

        <h2>FAQ</h2>
        <h3>Doesn't home-currency billing remove exchange risk?</h3>
        <p>You see the number upfront, but it <strong>already contains a poor rate and a margin</strong>. Certainty costs 3–8%.</p>
        <h3>Can a DCC charge be reversed?</h3>
        <p><strong>Immediately, at the counter</strong>, yes. Later it's difficult — the fee came from the merchant's side.</p>
        <h3>Is a travel card enough on its own?</h3>
        <p>Usually, but <strong>hotel deposits and car rentals</strong> often require a credit card. Bring a backup.</p>
        <h3>What about leftover foreign cash?</h3>
        <p>Small amounts are best saved for next time — converting back costs money and <strong>coins usually can't be exchanged.</strong></p>

        <blockquote>The easiest saving in travel is pressing <strong>"local currency."</strong> Block DCC before you leave and you won't even have to think about it.</blockquote>

        <p>This is general information and doesn't endorse specific cards or financial products. Fees and benefits vary by issuer and product — check the terms.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>The Complete Packing Guide — Liquid Rules and Doubling Your Space</title>
      <link>https://info-life.net/en/travel-packing-guide.html</link>
      <guid isPermaLink="true">https://info-life.net/en/travel-packing-guide.html</guid>
      <category>Life Tips</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Liquids in 100ml bottles inside one 1L bag, power banks in carry-on. Those two rules prevent most airport trouble.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/travel-packing-guide.webp" alt="The Complete Packing Guide — Liquid Rules and Doubling Your Space"><br>        <p>The night before a trip, you stare into an open suitcase wondering <strong>"will this all fit?"</strong>, forget something anyway, and then <strong>lose your toiletries at security.</strong> Packing is less about clever folding than about <strong>order and rules</strong>.</p>

        <p>This guide uses standards that <strong>work almost anywhere</strong>, since most countries follow the same international aviation security framework.</p>

        <div class="callout">
          <p style="margin:0;"><strong>Remember two things</strong> — ① liquids go in containers of <strong>100ml or less inside one 1L clear zip bag</strong> ② <strong>power banks must be in your carry-on</strong> (never checked). These two prevent most airport mishaps.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>1. Carry-on or checked?</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Item</strong></td><td class="scalc__plain"><strong>Carry-on / checked</strong></td></tr>
            <tr><td>Passport, wallet, cash</td><td class="scalc__plain"><strong>Always carry-on</strong></td></tr>
            <tr><td>Power banks, e-cigarettes</td><td class="scalc__plain"><strong>Carry-on only</strong> (banned in checked bags)</td></tr>
            <tr><td>Laptop, camera</td><td class="scalc__plain">Carry-on (damage and loss risk)</td></tr>
            <tr><td>Prescription medication</td><td class="scalc__plain">Carry-on, with a photo of the prescription</td></tr>
            <tr><td>Liquids over 100ml</td><td class="scalc__plain"><strong>Checked</strong></td></tr>
            <tr><td>Nail clippers, scissors, razor blades</td><td class="scalc__plain"><strong>Checked</strong></td></tr>
            <tr><td>Lighters</td><td class="scalc__plain">One on your person; <strong>not in checked bags</strong></td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;"><strong>Why must power banks fly with you?</strong> Lithium batteries can catch fire, and a fire in the hold can't be reached. In the cabin, crew can respond. Units up to <strong>100Wh</strong> are generally fine; above that needs airline approval.</p>
        </div>

        <h2>2. The liquid rule — where most people get caught</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Container size</td><td class="scalc__plain"><strong>100ml (100g) or less each</strong></td></tr>
            <tr><td>Total</td><td class="scalc__plain">One clear zip bag of <strong>1L or less</strong></td></tr>
            <tr><td>Bag size</td><td class="scalc__plain">About <strong>20cm × 20cm</strong>, fully sealable</td></tr>
            <tr><td>Per passenger</td><td class="scalc__plain"><strong>One bag only</strong></td></tr>
            <tr><td>What counts</td><td class="scalc__plain">Liquids, gels, creams, sprays — toothpaste and sunscreen included</td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;"><strong>⚠️ The classic mistake</strong> — the limit applies to the <strong>container's stated size, not how much is left</strong>. A nearly empty 200ml bottle is still <strong>refused</strong>. Decant into travel bottles.</p>
        </div>

        <h3>Recognized exceptions</h3>
        <ul>
          <li><strong>Prescription medicine</strong> — allowed beyond the limit. <strong>Declare it</strong> at screening with labels or a prescription.</li>
          <li><strong>Baby formula, milk and food</strong> — reasonable quantities are permitted when travelling with an infant. Declare it too.</li>
          <li><strong>Duty-free purchases</strong> — allowed inside a sealed security bag with the receipt visible. <strong>Never open it early</strong>, and expect re-screening on transfers.</li>
          <li><strong>Solid products</strong> — bar soap, shampoo bars and solid toothpaste aren't liquids, so <strong>no limit</strong>. A great way to cut bulk.</li>
        </ul>
        <p>Some airports now trial relaxed limits with advanced CT scanners, but this isn't universal and transfer airports may differ — <strong>pack to the 100ml rule</strong> to be safe.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>3. Doubling your space</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Method</strong></td><td class="scalc__plain"><strong>Best for · effect</strong></td></tr>
            <tr><td><strong>Rolling</strong></td><td class="scalc__plain">T-shirts, trousers, underwear → saves space, fewer creases</td></tr>
            <tr><td><strong>Folding</strong></td><td class="scalc__plain">Shirts, jackets → garments that need structure</td></tr>
            <tr><td><strong>Compression bags</strong></td><td class="scalc__plain">Winter coats → half the bulk, but <strong>the same weight</strong></td></tr>
            <tr><td><strong>Packing cubes</strong></td><td class="scalc__plain">Sorting → nothing collapses when you take one item out</td></tr>
            <tr><td><strong>Stuffing shoes</strong></td><td class="scalc__plain">Socks, chargers → uses dead space</td></tr>
          </tbody>
        </table>
        <h3>Weight distribution matters</h3>
        <ul>
          <li><strong>Heaviest near the wheels</strong> — shoes, toiletries, books</li>
          <li><strong>Clothes in the middle</strong></li>
          <li><strong>Light and frequently used items on top</strong></li>
        </ul>
        <p>Top-heavy cases tip over constantly and strain your wrist. <strong>Weight low means it rolls properly.</strong></p>

        <h2>4. How many clothes by trip length</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Length</strong></td><td class="scalc__plain"><strong>Tops / bottoms / underwear sets</strong></td></tr>
            <tr><td>2–3 days</td><td class="scalc__plain">3 / 2 / 3</td></tr>
            <tr><td>4–7 days</td><td class="scalc__plain">4–5 / 2–3 / 7</td></tr>
            <tr><td>8–14 days</td><td class="scalc__plain">5–6 / 3 / 7 + <strong>one laundry stop</strong></td></tr>
            <tr><td>15+ days</td><td class="scalc__plain">One week's worth + <strong>laundry on location</strong></td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;"><strong>The key trick</strong> — choose colours that <strong>all work together</strong>. Four tops and two bottoms that mix freely give eight outfits. And you can always buy something there.</p>
        </div>

        <h2>5. Final checklist</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>When</strong></td><td class="scalc__plain"><strong>Check</strong></td></tr>
            <tr><td>1 week out</td><td class="scalc__plain">Passport validity (<strong>6+ months</strong>), visa, name spelling on tickets</td></tr>
            <tr><td>3 days out</td><td class="scalc__plain">Destination weather, plug adapter, prescriptions</td></tr>
            <tr><td>1 day out</td><td class="scalc__plain">Liquid bag, power bank into carry-on, weigh the case</td></tr>
            <tr><td>Departure day</td><td class="scalc__plain">Passport, cards, cash, roaming or SIM, <strong>gas and power at home</strong></td></tr>
          </tbody>
        </table>
        <p>The <strong>six-month passport rule</strong> catches people constantly — many countries require six months of validity from entry.</p>

        <h2>6. Planning for loss</h2>
        <ul>
          <li>Store <strong>photos of your passport</strong> on your phone and in email</li>
          <li>Put a <strong>name tag outside and contact details inside</strong> the case</li>
          <li><strong>Never check valuables</strong> — compensation limits are low</li>
          <li>Photograph your suitcase so you can describe it if lost</li>
          <li><strong>Split essentials</strong> between carry-on and checked, including a change of clothes</li>
        </ul>

        <h2>FAQ</h2>
        <h3>What's the carry-on weight limit?</h3>
        <p>It varies, commonly <strong>7–10kg</strong>. Budget airlines are stricter — check your airline.</p>
        <h3>Can I bring several power banks?</h3>
        <p>Usually yes under <strong>100Wh</strong>, though some airlines cap the count. Pack them so <strong>terminals can't touch</strong>.</p>
        <h3>Can I bring food?</h3>
        <p>Solid food is generally fine onboard, but <strong>quarantine rules differ by country</strong> — meat, fruit and dairy are often banned on arrival.</p>
        <h3>What if my bag is overweight?</h3>
        <p>Excess fees are steep. <strong>Wear the heavy clothes</strong> and move books and electronics into your carry-on at the counter.</p>

        <blockquote>Packing isn't about fitting more in — it's about clearing security and arriving with everything. Handle liquids and batteries and you're halfway there.</blockquote>

        <p>This is general information. Aviation security rules vary by country, airport and airline and change often — always check current guidance before you fly.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Beating Jet Lag — Light Timing Is Almost Everything</title>
      <link>https://info-life.net/en/jet-lag-recovery.html</link>
      <guid isPermaLink="true">https://info-life.net/en/jet-lag-recovery.html</guid>
      <category>Life Tips</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Roughly a day per hour of difference. Getting light timing right can halve that.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/jet-lag-recovery.webp" alt="Beating Jet Lag — Light Timing Is Almost Everything"><br>        <p>You land and your <strong>body feels heavy, your head foggy</strong> — then at night you're wide awake. That's jet lag, and it isn't simple tiredness. It's your <strong>internal clock out of step</strong> with local time.</p>

        <p>Which means "just push through" is slower than <strong>deliberately moving the clock</strong>.</p>

        <div class="callout">
          <p style="margin:0;"><strong>The baseline</strong> — recovery takes roughly <strong>one day per hour of time difference</strong>. An eight-hour shift means about eight days naturally. The steps below can cut that <strong>by more than half</strong>.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Why eastward is harder</h2>
        <p>The human body clock naturally runs <strong>slightly longer than 24 hours</strong>, so <strong>going to bed later is easy and going earlier is hard.</strong></p>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Direction</strong></td><td class="scalc__plain"><strong>What your body must do · difficulty</strong></td></tr>
            <tr><td><strong>Westward</strong> (e.g. Asia → Europe or US west)</td><td class="scalc__plain">Day gets <strong>longer</strong> → sleep later → <strong>easier</strong></td></tr>
            <tr><td><strong>Eastward</strong> (e.g. Europe → Asia)</td><td class="scalc__plain">Day gets <strong>shorter</strong> → sleep earlier → <strong>harder</strong></td></tr>
            <tr><td>North–south (no time change)</td><td class="scalc__plain">Little jet lag, just travel fatigue</td></tr>
          </tbody>
        </table>
        <p>So <strong>prepare in advance for eastward trips</strong>; westward can often be handled on arrival.</p>

        <h2>Light is your strongest tool</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Goal</strong></td><td class="scalc__plain"><strong>Seek light / avoid light</strong></td></tr>
            <tr><td><strong>Eastward</strong> (need earlier sleep)</td><td class="scalc__plain">Bright light in the <strong>local morning</strong> / avoid it in the evening</td></tr>
            <tr><td><strong>Westward</strong> (need later sleep)</td><td class="scalc__plain">Light in the <strong>local afternoon and evening</strong> / avoid strong early-morning light</td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;">Natural <strong>outdoor light</strong> is far stronger than indoor lighting. A <strong>30-minute walk</strong> on arrival day speeds adaptation noticeably. When you need to avoid light, use sunglasses and blackout curtains.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Timeline — what to do when</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>When</strong></td><td class="scalc__plain"><strong>What to do</strong></td></tr>
            <tr><td><strong>3–4 days before</strong></td><td class="scalc__plain">Eastward: shift sleep <strong>30–60 min earlier</strong> daily. Westward: later</td></tr>
            <tr><td><strong>Night before</strong></td><td class="scalc__plain">Don't stay up — sleep debt <strong>worsens</strong> jet lag</td></tr>
            <tr><td><strong>Boarding</strong></td><td class="scalc__plain">Set your watch to <strong>destination time</strong> and think in it</td></tr>
            <tr><td><strong>In flight</strong></td><td class="scalc__plain">Sleep if it's night there, stay awake if it's day. Hydrate; <strong>skip alcohol</strong></td></tr>
            <tr><td><strong>Arrival day</strong></td><td class="scalc__plain">Stay up until <strong>local bedtime</strong>; get outdoors</td></tr>
            <tr><td><strong>Days 2–3</strong></td><td class="scalc__plain">Keep <strong>wake-up time consistent</strong> — it matters more than bedtime</td></tr>
          </tbody>
        </table>

        <h3>Napping rules</h3>
        <ul>
          <li><strong>20–30 minutes max</strong> — deeper sleep leaves you groggier</li>
          <li><strong>Before 3pm</strong> — later naps wreck the night</li>
          <li>Always <strong>set an alarm</strong></li>
        </ul>

        <h2>In-flight habits</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Water</td><td class="scalc__plain">Every 1–2 hours — cabins are <strong>very dry</strong> and dehydration amplifies fatigue</td></tr>
            <tr><td>Alcohol</td><td class="scalc__plain"><strong>Avoid</strong> — it helps you fall asleep but <strong>degrades sleep quality</strong></td></tr>
            <tr><td>Caffeine</td><td class="scalc__plain">None after <strong>late afternoon destination time</strong></td></tr>
            <tr><td>Meals</td><td class="scalc__plain">Eating on destination schedule aids adjustment</td></tr>
            <tr><td>Movement</td><td class="scalc__plain">Walk every 2–3 hours (circulation)</td></tr>
            <tr><td>Sleep kit</td><td class="scalc__plain">Eye mask, earplugs — <strong>blocking light is key</strong></td></tr>
          </tbody>
        </table>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Helping recovery after arrival</h2>
        <ul>
          <li><strong>Fix your wake-up time</strong> — anchoring the morning shifts the clock faster than chasing bedtime.</li>
          <li><strong>Eat breakfast</strong> — meal timing is another clock signal.</li>
          <li><strong>Light exercise</strong> — a walk is enough; avoid intense workouts near bedtime.</li>
          <li><strong>Melatonin</strong> — evidence supports timed use, but <strong>dose and timing matter</strong> and responses vary. Ask a professional first.</li>
          <li><strong>Be careful with sleeping pills</strong> — they induce sleep without moving the body clock.</li>
        </ul>

        <h2>Short trips — consider not adjusting</h2>
        <div class="callout">
          <p style="margin:0;">For trips of <strong>two to three days</strong>, staying on home time can beat adapting. You'd barely adjust before returning — and you avoid <strong>a second round of jet lag</strong> at home. Just manage your energy around key meetings.</p>
        </div>

        <h2>FAQ</h2>
        <h3>How long does jet lag last?</h3>
        <p>Roughly <strong>a day per hour of difference</strong>, longer going east. Good light timing shortens it considerably.</p>
        <h3>Can I sleep right after landing?</h3>
        <p>If it's night locally, yes. The problem is <strong>sleeping during local daytime</strong> — that stalls the shift.</p>
        <h3>Must I sleep on the plane?</h3>
        <p>Only when it's <strong>night at your destination</strong>. Sleeping regardless can slow adaptation.</p>
        <h3>Why is the return trip worse?</h3>
        <p>The return is often <strong>eastward</strong>, and travel fatigue has accumulated. Leave <strong>a spare day</strong> after getting home.</p>

        <blockquote>Beating jet lag isn't about endurance — it's about <strong>when you see light</strong>. A 30-minute walk on day one can save days.</blockquote>

        <p>This is general health information and does not replace medical advice. Consult a professional about melatonin or sleep medication, and see a doctor before travel if you have a health condition.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Password Security, Properly — Two-Factor Authentication and Passkeys</title>
      <link>https://info-life.net/en/password-security-guide.html</link>
      <guid isPermaLink="true">https://info-life.net/en/password-security-guide.html</guid>
      <category>Life Tips</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Reuse is the real danger. Thirty minutes starting with email removes most of your risk.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/password-security-guide.webp" alt="Password Security, Properly — Two-Factor Authentication and Passkeys"><br>        <p><strong>How many passwords do you actually use?</strong> Most people run two or three variations across dozens of sites — and that's <strong>the single most dangerous habit</strong>. One breach and the rest fall like dominoes.</p>

        <p>These standards work with <strong>any service, in any country</strong>. Thirty minutes today saves you years of trouble.</p>

        <div class="callout">
          <p style="margin:0;"><strong>Three priorities</strong> — ① secure your <strong>email account</strong> hardest (it's the key to everything) ② <strong>stop reusing passwords</strong> ③ turn on <strong>two-factor authentication</strong>. That order removes most of your risk.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>1. Why email comes first</h2>
        <p>Email is the <strong>master key</strong>. Forget a password anywhere and the reset link goes... to your email. An attacker holding it can <strong>reset other accounts one by one</strong> without knowing a single other password.</p>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Priority</strong></td><td class="scalc__plain"><strong>Account type · protection</strong></td></tr>
            <tr><td>1st</td><td class="scalc__plain"><strong>Email</strong> — strongest password + passkey or security key</td></tr>
            <tr><td>2nd</td><td class="scalc__plain">Banking and payments — app-based 2FA essential</td></tr>
            <tr><td>3rd</td><td class="scalc__plain">Cloud storage (photos, documents)</td></tr>
            <tr><td>4th</td><td class="scalc__plain">Social and messaging — impersonation risk</td></tr>
            <tr><td>5th</td><td class="scalc__plain">Shopping and others — check stored payment methods</td></tr>
          </tbody>
        </table>

        <h2>2. Not all two-factor is equal</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Method</strong></td><td class="scalc__plain"><strong>Strength · notes</strong></td></tr>
            <tr><td>Password only</td><td class="scalc__plain">⭐ — leaked means breached</td></tr>
            <tr><td><strong>SMS codes</strong></td><td class="scalc__plain">⭐⭐ — better than nothing, but vulnerable to <strong>SIM swapping</strong></td></tr>
            <tr><td><strong>Authenticator app (TOTP)</strong></td><td class="scalc__plain">⭐⭐⭐⭐ — rotating codes. <strong>The sensible default</strong></td></tr>
            <tr><td><strong>Passkeys</strong></td><td class="scalc__plain">⭐⭐⭐⭐⭐ — device-held key + biometrics. <strong>Phishing-resistant</strong></td></tr>
            <tr><td><strong>Hardware security key</strong></td><td class="scalc__plain">⭐⭐⭐⭐⭐ — strongest; plan for loss</td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;"><strong>The SMS weakness</strong> — an attacker who convinces a carrier to <strong>move your number to their SIM</strong> receives your codes. Move important accounts to an app or passkey. That said, <strong>SMS 2FA still beats no 2FA.</strong></p>
        </div>

        <h3>What is a passkey?</h3>
        <p>It signs you in with your <strong>device's biometrics instead of a password</strong>. The secret <strong>stays on your device and is never sent to the server</strong>.</p>
        <ul>
          <li>A server breach exposes <strong>no password to steal</strong></li>
          <li>It simply <strong>won't work on a fake site</strong>, defeating phishing</li>
          <li>Support keeps expanding — <strong>switch service by service</strong> as it becomes available</li>
        </ul>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>3. Good vs bad passwords</h2>
        <p>A common misconception: <strong>length beats complexity</strong>. Four unrelated words at 20 characters outperform a symbol-stuffed eight-character password.</p>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>❌ Bad</strong></td><td class="scalc__plain"><strong>✅ Better</strong></td></tr>
            <tr><td>Name, birthday, phone number</td><td class="scalc__plain">Nothing tied to your identity</td></tr>
            <tr><td>Predictable swaps like P@ssw0rd!</td><td class="scalc__plain"><strong>Four or more unrelated words</strong></td></tr>
            <tr><td>Same base with a changing number</td><td class="scalc__plain"><strong>Completely different</strong> per site</td></tr>
            <tr><td>Eight characters or fewer</td><td class="scalc__plain"><strong>12 minimum, 16+ preferred</strong></td></tr>
            <tr><td>Notes app or spreadsheet</td><td class="scalc__plain">A <strong>password manager</strong></td></tr>
            <tr><td>Forced changes every 90 days</td><td class="scalc__plain">Change <strong>only when breached</strong></td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;">That last row surprises people. Routine forced rotation is <strong>no longer recommended</strong> because it pushes users toward weaker, predictable passwords. <strong>Long, unique, and changed on breach</strong> is the current standard.</p>
        </div>

        <h2>4. Password managers are effectively essential</h2>
        <ul>
          <li>Remember <strong>one master password</strong>; everything else autofills</li>
          <li>They <strong>generate long random passwords</strong> per site</li>
          <li>They <strong>won't autofill on lookalike domains</strong> — quiet phishing protection</li>
          <li>Built-in browser and OS managers are now perfectly serviceable</li>
        </ul>
        <p>Just never forget the master password, and always put <strong>2FA on the manager account itself</strong>.</p>

        <h2>5. Your 30-minute plan</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>1</td><td class="scalc__plain">Check whether your email appears in <strong>known breaches</strong> — 5 min</td></tr>
            <tr><td>2</td><td class="scalc__plain">Change your <strong>email password</strong> to something long and unique — 5 min</td></tr>
            <tr><td>3</td><td class="scalc__plain">Enable <strong>app-based 2FA</strong> on email — 5 min</td></tr>
            <tr><td>4</td><td class="scalc__plain">Save the <strong>recovery codes</strong> somewhere safe — 3 min</td></tr>
            <tr><td>5</td><td class="scalc__plain">Verify 2FA on financial accounts — 10 min</td></tr>
            <tr><td>6</td><td class="scalc__plain">Install a password manager and migrate gradually — ongoing</td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;"><strong>⚠️ Do not skip recovery codes.</strong> With 2FA on, <strong>losing your phone can lock you out permanently.</strong> Print the backup codes or set up your authenticator on a second device. This is how people lose accounts for good.</p>
        </div>

        <h2>6. Phishing targets people, not passwords</h2>
        <ul>
          <li><strong>Never log in via a link.</strong> Type the address or use the app</li>
          <li>"Your account is locked", "act now" — <strong>urgency is the tell</strong></li>
          <li><strong>Never share a verification code.</strong> No legitimate support asks</li>
          <li>Check sender domains letter by letter</li>
          <li>Avoid banking on public Wi-Fi</li>
        </ul>

        <h2>FAQ</h2>
        <h3>Isn't a password manager a single point of failure?</h3>
        <p>In theory, but vaults are <strong>encrypted</strong> and the master password isn't stored on servers. <strong>Reuse across sites is the far more realistic risk.</strong></p>
        <h3>Is the browser's built-in manager enough?</h3>
        <p>Much better than nothing. Just secure the <strong>device lock and the account's 2FA</strong>.</p>
        <h3>Two-factor feels tedious.</h3>
        <p>Most services <strong>remember trusted devices</strong>, so prompts are rare after setup.</p>
        <h3>I got a breach alert. Now what?</h3>
        <p>Change that password immediately, then <strong>every site where you reused it</strong>, and enable 2FA.</p>

        <blockquote>Ninety percent of security is three habits — <strong>don't reuse, turn on 2FA, never log in from a link.</strong> Start with your email today.</blockquote>

        <p>This is general information and does not endorse specific products. Settings and available features differ by service — check their official guidance.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Making Your Phone Battery Last — Half the Common Advice Is Wrong</title>
      <link>https://info-life.net/en/phone-battery-life.html</link>
      <guid isPermaLink="true">https://info-life.net/en/phone-battery-life.html</guid>
      <category>Life Tips</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Overnight charging is fine; charging under a duvet isn&#x27;t. Heat is the real enemy.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/phone-battery-life.webp" alt="Making Your Phone Battery Last — Half the Common Advice Is Wrong"><br>        <p>A new phone lasts all day; two years later it's <strong>dead by mid-afternoon</strong>. You've heard you should "drain it fully before charging" and "never charge overnight." <strong>Which is true?</strong></p>

        <p>Most battery folklore describes <strong>batteries from decades ago</strong>. Understand the actual mechanism and care gets simple.</p>

        <div class="callout">
          <p style="margin:0;"><strong>Three lines</strong> — ① <strong>heat</strong> is the enemy ② living between <strong>20% and 80%</strong> extends life ③ <strong>avoid full discharge</strong>. Everything else is minor.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>1. Batteries age by cycles, not plug-ins</h2>
        <p>Lithium-ion life is measured in <strong>charge cycles</strong>, where one cycle means <strong>100% of capacity used</strong> — not one visit to the charger.</p>
        <ul>
          <li>Two 50% top-ups = <strong>one cycle</strong></li>
          <li>Five 20% top-ups = <strong>one cycle</strong></li>
          <li>So <strong>frequent small charges cost you nothing</strong> — they're actually preferable</li>
        </ul>
        <p>After several hundred cycles capacity noticeably drops, which is why the change becomes obvious <strong>around year two</strong>.</p>

        <h2>2. What actually ages a battery</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Factor</strong></td><td class="scalc__plain"><strong>Impact · what to do</strong></td></tr>
            <tr><td><strong>Heat</strong></td><td class="scalc__plain">🔥 Worst — no hot cars, no charging under bedding</td></tr>
            <tr><td><strong>Sitting at 100%</strong></td><td class="scalc__plain">High — prolonged full charge is stressful</td></tr>
            <tr><td><strong>Full discharge to 0%</strong></td><td class="scalc__plain">High — especially leaving it there</td></tr>
            <tr><td><strong>Extreme cold</strong></td><td class="scalc__plain">Moderate — temporary; sudden shutdowns in winter</td></tr>
            <tr><td>Fast charging</td><td class="scalc__plain">Low–moderate — generates heat, <strong>no need every time</strong></td></tr>
            <tr><td>Overnight charging</td><td class="scalc__plain">Low — modern phones <strong>stop at 100%</strong></td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;"><strong>"Overnight charging kills batteries" is outdated.</strong> Phones stop charging at 100% and many <strong>delay the final 20% until just before you wake</strong>. What still hurts is charging <strong>on a pillow or duvet</strong>, where heat can't escape.</p>
        </div>

        <h2>3. Charging habits</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>✅ Do</strong></td><td class="scalc__plain"><strong>❌ Don't</strong></td></tr>
            <tr><td>Stay roughly between 20% and 80%</td><td class="scalc__plain">Drain to 0 then fill to 100 every time</td></tr>
            <tr><td>Top up whenever convenient</td><td class="scalc__plain">Believe you must "fully discharge first"</td></tr>
            <tr><td>Charge on a hard surface</td><td class="scalc__plain">Charge under bedding or cushions</td></tr>
            <tr><td>Ease off heavy gaming while charging</td><td class="scalc__plain">Play demanding games mid-charge</td></tr>
            <tr><td>Use certified chargers</td><td class="scalc__plain">Use unbranded cheap adapters</td></tr>
            <tr><td>Store long-term at <strong>~50%</strong></td><td class="scalc__plain">Leave it at 0% or 100% for months</td></tr>
          </tbody>
        </table>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>4. Settings that stretch today's charge</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Setting</strong></td><td class="scalc__plain"><strong>Impact · how</strong></td></tr>
            <tr><td><strong>Screen brightness</strong></td><td class="scalc__plain">⭐⭐⭐ Biggest — enable auto-brightness or drop a notch</td></tr>
            <tr><td><strong>Screen timeout</strong></td><td class="scalc__plain">⭐⭐⭐ — set to 30 seconds</td></tr>
            <tr><td><strong>Dark mode</strong></td><td class="scalc__plain">⭐⭐ — genuinely saves on OLED screens</td></tr>
            <tr><td><strong>Background refresh</strong></td><td class="scalc__plain">⭐⭐ — disable for apps you rarely use</td></tr>
            <tr><td><strong>Location services</strong></td><td class="scalc__plain">⭐⭐ — switch "always" to "while using"</td></tr>
            <tr><td>Notifications</td><td class="scalc__plain">⭐ — fewer screen wake-ups</td></tr>
            <tr><td>Low power mode</td><td class="scalc__plain">⭐⭐ — instant effect when needed</td></tr>
          </tbody>
        </table>
        <p><strong>The screen consumes the most power.</strong> Lowering brightness alone often beats every other tweak combined.</p>

        <h2>5. Checking your battery health</h2>
        <ul>
          <li>Most phones show <strong>maximum capacity</strong> under Settings → Battery.</li>
          <li><strong>Below 80%</strong> is the usual point to consider replacement — it's also a common warranty threshold.</li>
          <li>The same screen shows <strong>which apps drain most</strong>. The top entry is often a surprise.</li>
        </ul>
        <table class="scalc__table">
          <tbody>
            <tr><td>Drains quickly</td><td class="scalc__plain">Ageing battery — check health</td></tr>
            <tr><td>Shuts off around 30%</td><td class="scalc__plain">Significant degradation — <strong>replace</strong></td></tr>
            <tr><td>Device swelling</td><td class="scalc__plain">⚠️ <strong>Stop using immediately</strong> — fire risk</td></tr>
            <tr><td>Excessive heat when charging</td><td class="scalc__plain">Check charger and cable; if it persists, get it serviced</td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;"><strong>⚠️ Never press or puncture a swollen battery.</strong> If the back panel lifts or the screen bulges, stop using the device and take it to a service centre. Damaged lithium cells can ignite.</p>
        </div>

        <h2>6. Reviving an older phone</h2>
        <ol>
          <li><strong>Check battery health</strong> — under 80%, replacement is the real fix</li>
          <li><strong>Review top battery-draining apps</strong> and restrict or remove them</li>
          <li><strong>Adjust brightness and timeout</strong></li>
          <li><strong>Update the OS</strong> — power optimisations often improve</li>
          <li><strong>Free up storage</strong> — a full device slows everything</li>
        </ol>
        <p>A battery replacement costs a fraction of a new phone. If nothing else bothers you, it can buy <strong>another year or two</strong>.</p>

        <h2>FAQ</h2>
        <h3>Do I really need to stop at 80%?</h3>
        <p>It helps longevity, but <strong>daily inconvenience isn't required</strong> — enabling optimised charging is enough for most people.</p>
        <h3>Is fast charging bad?</h3>
        <p>It's fine. It runs warmer, so use it <strong>when you're in a hurry</strong> and normal charging otherwise.</p>
        <h3>Is wireless charging worse?</h3>
        <p>It generally <strong>produces more heat</strong>. Use it somewhere ventilated to reduce the effect.</p>
        <h3>Do battery-saver apps help?</h3>
        <p>Most <strong>do nothing or make things worse</strong>. Built-in OS features are sufficient.</p>

        <blockquote>Eighty percent of battery care is simply <strong>not letting it get hot</strong>. Stop charging on the bed and you'll notice the difference.</blockquote>

        <p>This is general information; features and names vary by device and manufacturer. If you suspect a battery fault, don't open the device — contact an authorised service centre.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Never Lose Your Photos — The 3-2-1 Backup Rule</title>
      <link>https://info-life.net/en/data-backup-321.html</link>
      <guid isPermaLink="true">https://info-life.net/en/data-backup-321.html</guid>
      <category>Life Tips</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Cloud sync is not a backup. Delete a file and it disappears from both.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/data-backup-321.webp" alt="Never Lose Your Photos — The 3-2-1 Backup Rule"><br>        <p>You lose your phone, your laptop won't boot, or you delete the wrong folder. The first thought is always the same: <strong>"my photos."</strong> Hardware can be replaced with money — <strong>data that isn't backed up is simply gone.</strong></p>

        <p>Backing up isn't hard. But without knowing what <strong>counts as a real backup</strong>, people lose everything while believing they were protected.</p>

        <div class="callout">
          <p style="margin:0;"><strong>The 3-2-1 rule</strong> — the global standard for backups.<br>
          <strong>3</strong> copies · <strong>2</strong> different media types · <strong>1</strong> kept in another location</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>1. Why 3-2-1?</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Rule</strong></td><td class="scalc__plain"><strong>Meaning · what it prevents</strong></td></tr>
            <tr><td><strong>3 copies</strong></td><td class="scalc__plain">Original + two backups → one failing <strong>still leaves one</strong></td></tr>
            <tr><td><strong>2 media types</strong></td><td class="scalc__plain">e.g. external drive + cloud → survives <strong>one type failing</strong></td></tr>
            <tr><td><strong>1 offsite</strong></td><td class="scalc__plain">Fire, theft, flood → survives <strong>losing the whole house</strong></td></tr>
          </tbody>
        </table>
        <p>Backing up to a single external drive that then dies is remarkably common. <strong>Backup media fail too.</strong></p>

        <h2>2. ⚠️ Cloud sync is not a backup</h2>
        <div class="callout">
          <p style="margin:0;"><strong>Sync is a live mirror.</strong> Delete a file on your computer and <strong>it's deleted in the cloud.</strong> If ransomware encrypts your files, <strong>the encrypted versions sync upward.</strong> Sync faithfully copies your mistakes and your attackers.</p>
        </div>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Aspect</strong></td><td class="scalc__plain"><strong>Sync / backup</strong></td></tr>
            <tr><td>Purpose</td><td class="scalc__plain">Same files everywhere / <strong>preserve past states</strong></td></tr>
            <tr><td>On deletion</td><td class="scalc__plain">Gone from both / <strong>backup survives</strong></td></tr>
            <tr><td>Ransomware</td><td class="scalc__plain">Spreads / <strong>restore an earlier point</strong></td></tr>
            <tr><td>Versioning</td><td class="scalc__plain">Limited / <strong>point-in-time recovery</strong></td></tr>
          </tbody>
        </table>
        <p>Most cloud services do keep a <strong>trash and version history</strong>, typically around 30 days. <strong>Past that window recovery ends</strong> — so keep a separate backup rather than relying on sync.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>3. Comparing methods</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Method</strong></td><td class="scalc__plain"><strong>Pros / cons</strong></td></tr>
            <tr><td><strong>Cloud storage</strong></td><td class="scalc__plain">Automatic, offsite by default / paid above free tiers, lost account means lost access</td></tr>
            <tr><td><strong>External drive or SSD</strong></td><td class="scalc__plain">Cheap, large / manual, <strong>fails or gets stolen</strong>, sits in the same building</td></tr>
            <tr><td><strong>Home NAS</strong></td><td class="scalc__plain">Large, automated / upfront cost and setup, still onsite</td></tr>
            <tr><td><strong>USB stick</strong></td><td class="scalc__plain">Convenient / <strong>poor for long-term storage</strong>, easily lost</td></tr>
          </tbody>
        </table>
        <p>The practical combination is <strong>cloud plus an external drive</strong> — the cloud satisfies "offsite" automatically and the drive satisfies "different medium."</p>

        <h2>4. What to back up first</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>1st</td><td class="scalc__plain"><strong>Photos and videos</strong> — irreplaceable, the most-regretted loss</td></tr>
            <tr><td>2nd</td><td class="scalc__plain"><strong>Scans of IDs and contracts</strong></td></tr>
            <tr><td>3rd</td><td class="scalc__plain">Work and study files, creative projects</td></tr>
            <tr><td>4th</td><td class="scalc__plain">Contacts, notes, calendars (usually account-synced already)</td></tr>
            <tr><td>5th</td><td class="scalc__plain">Installers, media — <strong>downloadable again</strong></td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;">The fifth row doesn't really need backing up at all. If space is tight, drop it first. <strong>"Can I get this again?"</strong> is the only test that matters.</p>
        </div>

        <h2>5. A 30-minute setup</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>1</td><td class="scalc__plain">Turn on <strong>automatic photo backup</strong> on your phone</td></tr>
            <tr><td>2</td><td class="scalc__plain">Check <strong>cloud storage space</strong> — tidy up or review plans</td></tr>
            <tr><td>3</td><td class="scalc__plain">Copy <strong>photos and documents to an external drive</strong></td></tr>
            <tr><td>4</td><td class="scalc__plain">Enable <strong>2FA on the cloud account</strong> — losing it loses the backup</td></tr>
            <tr><td>5</td><td class="scalc__plain">Add a <strong>quarterly reminder</strong> to your calendar</td></tr>
          </tbody>
        </table>
        <p>Step four matters: if the cloud is your only backup and the <strong>account is compromised or lost, so is the backup.</strong></p>

        <h2>6. Test your restore</h2>
        <div class="callout">
          <p style="margin:0;"><strong>The most-skipped step.</strong> "The backup is running" and "the backup restores" are different claims. Silent failures for months are common.</p>
        </div>
        <ul>
          <li><strong>Once a year</strong>, actually pull a few files out and open them</li>
          <li>Confirm photos display and documents aren't corrupted</li>
          <li>Check that the external drive still <strong>mounts at all</strong></li>
          <li>Glance at the <strong>last successful backup date</strong> regularly</li>
        </ul>

        <h2>7. What to do when things break</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Lost or broken phone</td><td class="scalc__plain">Restore from cloud backup on the new device</td></tr>
            <tr><td>Accidental deletion</td><td class="scalc__plain">Check <strong>trash or recently deleted</strong> first (usually 30 days)</td></tr>
            <tr><td>Drive failure</td><td class="scalc__plain">Restore from the other medium — <strong>3-2-1 earning its keep</strong></td></tr>
            <tr><td>Ransomware</td><td class="scalc__plain"><strong>Disconnect from the network</strong>, restore an earlier version</td></tr>
            <tr><td>Account compromise</td><td class="scalc__plain">Change password, enable 2FA; offline copies stay safe</td></tr>
          </tbody>
        </table>

        <h2>FAQ</h2>
        <h3>Isn't cloud alone enough?</h3>
        <p>Convenient, but exposed to <strong>account problems, deletions and ransomware</strong>. Keep at least <strong>one external copy</strong>.</p>
        <h3>How long do external drives last?</h3>
        <p>Years typically, but <strong>failure timing is unpredictable</strong> — which is exactly why one copy isn't enough. Migrate old drives.</p>
        <h3>My photo library is too large.</h3>
        <p>Clearing duplicates, screenshots and blurry shots usually frees a surprising amount. Beyond that, a paid plan is the realistic answer.</p>
        <h3>How often should I back up?</h3>
        <p>Photos <strong>automatically</strong>, documents <strong>weekly</strong>, a full backup <strong>quarterly</strong>.</p>

        <blockquote>You can't create a backup after the accident. Turn on <strong>automatic photo backup</strong> today — that single switch prevents the loss you'd regret most.</blockquote>

        <p>This is general information and doesn't endorse specific products. Retention periods and features vary by service — check your provider's policy.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Korean Capital Gains Tax A to Z — Rates, Deductions, Expenses (2026)</title>
      <link>https://info-life.net/en/capital-gains-tax-calculation.html</link>
      <guid isPermaLink="true">https://info-life.net/en/capital-gains-tax-calculation.html</guid>
      <category>Real Estate</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>The multi-home surcharge returned in May 2026. Follow the tables to estimate your own bill.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/capital-gains-tax-calculation.webp" alt="Korean Capital Gains Tax A to Z — Rates, Deductions, Expenses (2026)"><br>        <p>By far the largest tax when selling a home in Korea is <strong>capital gains tax</strong>. Yet ask "how much will it be?" and nobody can answer straight away — because <strong>holding period, number of homes, location and residence</strong> can swing the bill several times over.</p>

        <p>This guide walks through <strong>the calculation in order</strong>. Use the tables to plug in your own case.</p>

        <div class="callout">
          <p style="margin:0;"><strong>⚠️ The big 2026 change</strong> — the four-year suspension of the multi-home surcharge <strong>ended on May 9, 2026</strong>, and <strong>the surcharge returned on May 10</strong>. In regulated areas, two-home owners face <strong>+20%p</strong> and three-or-more <strong>+30%p</strong>, and the <strong>long-term holding deduction is disallowed</strong>.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Step 1 — The calculation flow</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>① Capital gain</td><td class="scalc__plain">Sale price − purchase price − <strong>allowable expenses</strong></td></tr>
            <tr><td>② Taxable gain</td><td class="scalc__plain">① − <strong>long-term holding deduction</strong></td></tr>
            <tr><td>③ Tax base</td><td class="scalc__plain">② − basic deduction of <strong>₩2.5M</strong> (once a year)</td></tr>
            <tr><td>④ Computed tax</td><td class="scalc__plain">③ × <strong>rate</strong> − progressive deduction</td></tr>
            <tr><td>⑤ Total payable</td><td class="scalc__plain">④ + <strong>local income tax (10% of ④)</strong></td></tr>
          </tbody>
        </table>
        <p>People routinely forget the last line. <strong>Local income tax of 10% always follows.</strong> A ₩100M computed tax means ₩110M out the door.</p>

        <h2>Step 2 — The rate table</h2>
        <p>Hold for <strong>two years or more</strong> and the progressive rates apply.</p>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Tax base</strong></td><td class="scalc__plain"><strong>Rate · progressive deduction</strong></td></tr>
            <tr><td>Up to ₩14M</td><td class="scalc__plain">6% · 0</td></tr>
            <tr><td>₩14M – ₩50M</td><td class="scalc__plain">15% · ₩1.26M</td></tr>
            <tr><td>₩50M – ₩88M</td><td class="scalc__plain">24% · ₩5.76M</td></tr>
            <tr><td>₩88M – ₩150M</td><td class="scalc__plain">35% · ₩15.44M</td></tr>
            <tr><td>₩150M – ₩300M</td><td class="scalc__plain">38% · ₩19.94M</td></tr>
            <tr><td>₩300M – ₩500M</td><td class="scalc__plain">40% · ₩25.94M</td></tr>
            <tr><td>₩500M – ₩1B</td><td class="scalc__plain">42% · ₩35.94M</td></tr>
            <tr><td>Over ₩1B</td><td class="scalc__plain">45% · ₩65.94M</td></tr>
          </tbody>
        </table>

        <h3>Short holding is taxed completely differently</h3>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Holding period</strong></td><td class="scalc__plain"><strong>Housing / pre-sale rights</strong></td></tr>
            <tr><td>Under 1 year</td><td class="scalc__plain"><strong>70%</strong> / 70%</td></tr>
            <tr><td>1 to 2 years</td><td class="scalc__plain"><strong>60%</strong> / 60%</td></tr>
            <tr><td>2 years or more</td><td class="scalc__plain">Progressive (6–45%) / 60%</td></tr>
            <tr><td>Unregistered transfer</td><td class="scalc__plain"><strong>70%</strong></td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;"><strong>Clearing two years is the first fork.</strong> Sell at 23 months and it's 60%; at 25 months the top progressive rate is 45%. <strong>Two months flips the outcome.</strong></p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Step 3 — The multi-home surcharge (back since May 10, 2026)</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Two homes (selling in a regulated area)</td><td class="scalc__plain">Base rate <strong>+ 20%p</strong></td></tr>
            <tr><td>Three or more (regulated area)</td><td class="scalc__plain">Base rate <strong>+ 30%p</strong></td></tr>
            <tr><td>Long-term holding deduction</td><td class="scalc__plain"><strong>Disallowed</strong> for surcharged homes</td></tr>
            <tr><td>Non-regulated areas</td><td class="scalc__plain">No surcharge (base rates)</td></tr>
          </tbody>
        </table>
        <p>At the top bracket with three homes: 45% + 30%p = 75%, and with local income tax the <strong>effective rate reaches 82.5%</strong> — most of the gain goes to tax.</p>
        <div class="callout">
          <p style="margin:0;"><strong>Transitional relief</strong> — contracts <strong>signed by May 9, 2026 with documented deposit payment</strong> are exempt from the surcharge. Keep the contract and transfer records if this applies to you.</p>
        </div>

        <h2>Step 4 — Long-term holding deduction</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>General property (3+ years)</td><td class="scalc__plain">2% per year, <strong>up to 30%</strong> (15 years)</td></tr>
            <tr><td>Single home — holding</td><td class="scalc__plain">4% per year, up to 40%</td></tr>
            <tr><td>Single home — residence</td><td class="scalc__plain">4% per year, up to 40%</td></tr>
            <tr><td>Single home total</td><td class="scalc__plain"><strong>Up to 80%</strong> (holding + residence)</td></tr>
          </tbody>
        </table>
        <p>A single-home household counts <strong>holding and residence separately</strong> and adds them. Ten years of each gives 80% — so a ₩1B gain is taxed on only ₩200M. Conversely, <strong>surcharged sales lose this deduction entirely</strong>, which often hurts more than the higher rate.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Step 5 — Allowable expenses: receipts are money</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Allowed ✅</strong></td><td class="scalc__plain"><strong>Not allowed ❌</strong></td></tr>
            <tr><td>Acquisition and registration tax</td><td class="scalc__plain">Wallpaper and flooring</td></tr>
            <tr><td>Agent commissions (buy and sell)</td><td class="scalc__plain">Sink and lighting replacement</td></tr>
            <tr><td>Legal scrivener fees</td><td class="scalc__plain">Boiler repair (routine)</td></tr>
            <tr><td>Balcony extension</td><td class="scalc__plain">Paint</td></tr>
            <tr><td>Window (saesi) installation</td><td class="scalc__plain">Appliances</td></tr>
            <tr><td>Heating system upgrade</td><td class="scalc__plain">Cleaning and moving costs</td></tr>
            <tr><td>Tax filing fees</td><td class="scalc__plain">Loan interest</td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;">One test decides it: spending that <strong>raises value or extends life (capital expenditure)</strong> counts; spending that <strong>maintains condition (repairs)</strong> doesn't. And <strong>without documentation — invoices, card records, transfers — nothing counts</strong>, however real the spending was.</p>
        </div>

        <h2>Worked example</h2>
        <p>Bought at ₩500M, sold at ₩900M, held and lived in for 8 years, single-home household, ₩30M of expenses:</p>
        <table class="scalc__table">
          <tbody>
            <tr><td>Sale price</td><td class="scalc__plain">₩900,000,000</td></tr>
            <tr><td>− Purchase price</td><td class="scalc__plain">₩500,000,000</td></tr>
            <tr><td>− Expenses</td><td class="scalc__plain">₩30,000,000</td></tr>
            <tr><td>= Capital gain</td><td class="scalc__plain">₩370,000,000</td></tr>
            <tr><td>Exemption test</td><td class="scalc__plain">Under ₩1.2B → <strong>fully exempt</strong></td></tr>
            <tr><td><strong>Tax due</strong></td><td class="scalc__plain"><strong>₩0</strong></td></tr>
          </tbody>
        </table>
        <p>Meet the single-home requirements under ₩1.2B and even this gain is tax-free (see <a href="https://info-life.net/en/one-house-capital-gains-tax.html">the exemption requirements</a>). Sell the same home as a <strong>two-home owner in a regulated area</strong> and the deduction disappears while the surcharge applies — comfortably <strong>over ₩100M in tax</strong>. Same home, same gain, different household.</p>

        <h2>Filing and payment</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Preliminary return</td><td class="scalc__plain"><strong>Within 2 months</strong> from month-end of sale</td></tr>
            <tr><td>Final return</td><td class="scalc__plain">Following May, if multiple sales in a year</td></tr>
            <tr><td>Reference date</td><td class="scalc__plain"><strong>Balance payment date</strong> (or registration, whichever is earlier)</td></tr>
            <tr><td>Installments</td><td class="scalc__plain">Available above ₩10M</td></tr>
            <tr><td>Non-filing penalty</td><td class="scalc__plain">20% plus late-payment penalties</td></tr>
          </tbody>
        </table>

        <h2>Tax-saving checklist</h2>
        <ol>
          <li><strong>Always clear two years</strong> — avoiding 60–70% rates comes first</li>
          <li><strong>Check single-home status</strong> — household-wide home count, plus residence if bought in a regulated area</li>
          <li><strong>Collect receipts</strong> — acquisition tax, commissions, extensions, windows</li>
          <li><strong>Split sales across tax years</strong> to use the ₩2.5M deduction twice and lower brackets</li>
          <li><strong>Order matters</strong> for multi-home owners — which home you sell first changes everything</li>
          <li><strong>Consult before selling</strong> — one day's difference in closing can flip the result</li>
        </ol>

        <h2>FAQ</h2>
        <h3>What if I don't know the purchase price?</h3>
        <p>A <strong>converted acquisition value</strong> can be used, though it may be less favorable. Hunt for the original contract first.</p>
        <h3>What's the basis for an inherited home?</h3>
        <p>The <strong>valuation at the date of inheritance</strong>. Keep the inheritance tax documents.</p>
        <h3>Does joint ownership reduce tax?</h3>
        <p>Usually yes — the gain is <strong>split by share</strong>, each spouse gets their own progressive brackets and their own ₩2.5M deduction.</p>
        <h3>I sold at a loss — do I file?</h3>
        <p>No tax is due, but filing lets you <strong>offset gains from other sales in the same year</strong>.</p>

        <blockquote>Capital gains tax is decided less by your sale price than by the conditions of the sale. Run these tables before you sign.</blockquote>

        <p>This is general 2026 information, not tax advice. Korean property tax rules change frequently and outcomes vary sharply by home count, area and purchase date — consult a tax professional before selling.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Korean Acquisition Tax Explained — Why It Ranges From 1% to 12%</title>
      <link>https://info-life.net/en/acquisition-tax-guide.html</link>
      <guid isPermaLink="true">https://info-life.net/en/acquisition-tax-guide.html</guid>
      <category>Real Estate</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Your home count and the area set the rate. On a 900M won home that&#x27;s 9M versus 108M.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/acquisition-tax-guide.webp" alt="Korean Acquisition Tax Explained — Why It Ranges From 1% to 12%"><br>        <p>The first tax you meet when buying a home in Korea is <strong>acquisition tax</strong> — and it ranges from <strong>1% to 12%</strong> depending on how many homes you'll own and where. On a ₩900M home that's the difference between <strong>₩9M and ₩108M</strong>. Worth calculating before you sign.</p>

        <div class="callout">
          <p style="margin:0;">Acquisition tax is due <strong>within 60 days of acquisition</strong> (usually the balance payment date). A scrivener typically handles it with registration, but <strong>know the amount in advance</strong> so your funding plan holds.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Housing acquisition tax rates (2026)</h2>
        <p>Rates depend on <strong>the number of homes you'll own after the purchase</strong> and <strong>whether the area is regulated</strong>.</p>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Homes owned</strong></td><td class="scalc__plain"><strong>Non-regulated / regulated area</strong></td></tr>
            <tr><td>1 home</td><td class="scalc__plain"><strong>1–3%</strong> (by price) / same</td></tr>
            <tr><td>2 homes</td><td class="scalc__plain">1–3% / <strong>8%</strong></td></tr>
            <tr><td>3 homes</td><td class="scalc__plain"><strong>8%</strong> / <strong>12%</strong></td></tr>
            <tr><td>4+ homes or corporate</td><td class="scalc__plain"><strong>12%</strong> / <strong>12%</strong></td></tr>
            <tr><td>Officetels, commercial (non-housing)</td><td class="scalc__plain"><strong>4%</strong> (about 4.6% with surtaxes)</td></tr>
          </tbody>
        </table>
        <p>Note it's the count <strong>after</strong> the purchase, and it includes <strong>every home in your household</strong>.</p>

        <h2>The single-home bracket is progressive</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Up to ₩600M</td><td class="scalc__plain"><strong>1%</strong></td></tr>
            <tr><td>₩600M – ₩900M</td><td class="scalc__plain">(price ÷ 300M × 2 − 3)% <strong>→ between 1% and 3%</strong></td></tr>
            <tr><td>Over ₩900M</td><td class="scalc__plain"><strong>3%</strong></td></tr>
          </tbody>
        </table>
        <p>A ₩700M home works out to about <strong>1.67%</strong>, or roughly ₩11.7M. The middle band is a <strong>gentle slope, not a cliff</strong> — ₩601M doesn't suddenly jump.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>It isn't only acquisition tax — the surtaxes</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Acquisition tax</td><td class="scalc__plain">The main tax (1–12%)</td></tr>
            <tr><td>Local education tax</td><td class="scalc__plain">Linked to the rate (roughly 0.1–0.4%)</td></tr>
            <tr><td>Special rural development tax</td><td class="scalc__plain">Applies above 85㎡; <strong>exempt at 85㎡ or under</strong></td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;">Homes of <strong>85㎡ or less are exempt from the rural development surtax</strong> — which is why the same price can carry different tax at 84㎡ versus above 85㎡. It's one quiet reason the 84㎡ "national size" stays popular.</p>
        </div>

        <h2>First-home buyer relief</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Maximum relief</td><td class="scalc__plain"><strong>₩2M</strong></td></tr>
            <tr><td>Price limit</td><td class="scalc__plain"><strong>₩1.2B or less</strong></td></tr>
            <tr><td>Eligibility</td><td class="scalc__plain">Households where <strong>no member has ever owned a home</strong></td></tr>
            <tr><td>Basis / deadline</td><td class="scalc__plain">Local Tax Special Restriction Act (through Dec 31, 2028)</td></tr>
            <tr><td>Population-decline areas</td><td class="scalc__plain">Up to <strong>100% relief</strong> where conditions are met</td></tr>
          </tbody>
        </table>
        <p>Buying a ₩900M home as a first-time buyer means roughly ₩18M in acquisition tax less ₩2M relief, plus surtaxes — budget around <strong>₩20M</strong>.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Temporary two homes — the upgrade rule</h2>
        <ul>
          <li>Becoming a two-home owner through a move or marriage can still qualify for <strong>1–3% rates</strong> if you dispose of the old home in time (commonly <strong>within three years</strong>).</li>
          <li><strong>Miss the deadline and the difference is clawed back</strong> — the gap between 8% and 1–3% is substantial.</li>
          <li>Declare the temporary two-home status when filing.</li>
        </ul>

        <h2>Counting homes — the confusing parts</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Residential officetel</td><td class="scalc__plain">May <strong>count</strong> toward home number (taxed at 4% itself)</td></tr>
            <tr><td>Pre-sale rights</td><td class="scalc__plain"><strong>Counted</strong>, depending on acquisition date</td></tr>
            <tr><td>Inherited home</td><td class="scalc__plain">Special rules may <strong>exclude</strong> it for a period</td></tr>
            <tr><td>Homes under ₩100M published price</td><td class="scalc__plain">May be <strong>excluded</strong> from the surcharge</td></tr>
          </tbody>
        </table>
        <p>This is where disputes arise. When unsure, ask Wetax or your district tax office <strong>before signing</strong> — misfiling brings penalties.</p>

        <h2>Pre-contract checklist</h2>
        <ol>
          <li>Count <strong>household homes after purchase</strong></li>
          <li>Check whether the area is <strong>regulated</strong></li>
          <li>Check whether the unit exceeds <strong>85㎡</strong></li>
          <li>Check <strong>first-home relief</strong> eligibility</li>
          <li>If upgrading, confirm the <strong>disposal deadline</strong></li>
          <li>Budget the amount — it's due <strong>within 60 days</strong>, separate from the purchase price</li>
        </ol>

        <h2>FAQ</h2>
        <h3>When is it due?</h3>
        <p><strong>Within 60 days of acquisition.</strong> In practice it's paid alongside the balance since registration requires it.</p>
        <h3>Is a gifted property taxed differently?</h3>
        <p>Yes, gift acquisitions use separate rates, and high-value gifts in regulated areas can be surcharged.</p>
        <h3>Do new-build purchases pay it?</h3>
        <p>Yes — at <strong>occupancy (balance payment)</strong>, not at contract.</p>
        <h3>Is it deductible later?</h3>
        <p>Yes, as an <a href="https://info-life.net/en/capital-gains-tax-calculation.html">allowable expense for capital gains tax</a>. <strong>Keep the receipt.</strong></p>

        <blockquote>Acquisition tax isn't "a percentage of the price" — it's your home count times your area. Check the table before you sign.</blockquote>

        <p>This is general 2026 information, not tax advice. Rates and relief change and home counting depends on your circumstances — confirm with Wetax, your local government or a tax professional.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Korea&#x27;s Comprehensive Real Estate Tax vs. Property Tax — Why December Bills Too</title>
      <link>https://info-life.net/en/comprehensive-property-tax.html</link>
      <guid isPermaLink="true">https://info-life.net/en/comprehensive-property-tax.html</guid>
      <category>Real Estate</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>1.2B won for one home, 900M for others. Because it&#x27;s totalled per person nationwide, the same value gives different results.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/comprehensive-property-tax.webp" alt="Korea&#x27;s Comprehensive Real Estate Tax vs. Property Tax — Why December Bills Too"><br>        <p>Every late November, Korean news mentions "comprehensive real estate tax bills." But <strong>didn't we already pay property tax in July?</strong> They're <strong>two entirely different taxes</strong>.</p>

        <div class="callout">
          <p style="margin:0;">In one line — <strong>property tax applies to every owner (local tax)</strong>, while <strong>comprehensive real estate tax applies only above certain thresholds (national tax)</strong>. The latter is layered <strong>on top of</strong> property tax.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Property tax vs. comprehensive real estate tax</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Item</strong></td><td class="scalc__plain"><strong>Property tax / comprehensive tax</strong></td></tr>
            <tr><td>Type</td><td class="scalc__plain">Local / <strong>national</strong></td></tr>
            <tr><td>Who pays</td><td class="scalc__plain">All owners / <strong>owners above the deduction</strong></td></tr>
            <tr><td>Assessment date</td><td class="scalc__plain">June 1 / <strong>June 1</strong> (same)</td></tr>
            <tr><td>Payment</td><td class="scalc__plain">July and September / <strong>December 1–15</strong></td></tr>
            <tr><td>Calculation unit</td><td class="scalc__plain">Per property / <strong>per person, nationwide total</strong></td></tr>
            <tr><td>Surtax</td><td class="scalc__plain">Local education tax / <strong>20% rural development tax</strong></td></tr>
          </tbody>
        </table>
        <p>The critical difference is <strong>"per person, nationwide."</strong> Property tax is billed property by property; the comprehensive tax <strong>adds up the published prices of every home you own across Korea</strong>.</p>

        <h2>Am I liable? The basic deduction</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Single-home household</td><td class="scalc__plain"><strong>₩1.2B</strong></td></tr>
            <tr><td>Others (multi-home)</td><td class="scalc__plain"><strong>₩900M</strong></td></tr>
            <tr><td>Aggregate land</td><td class="scalc__plain">₩500M</td></tr>
            <tr><td>Separately aggregated land</td><td class="scalc__plain">₩8B</td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;"><strong>This is the fork.</strong> A single-home owner with a ₩1.2B published price pays <strong>zero</strong>. A multi-home owner whose homes total ₩1.2B has a ₩900M deduction and <strong>pays tax on ₩300M.</strong> Same total, different result.</p>
        </div>
        <p>Also note the base is the <strong>published price, not market price</strong> — typically 60–70% of market. In practice, single-home owners enter the net around a <strong>₩1.7–1.8B market value</strong>.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>How it's calculated</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>① Sum published prices</td><td class="scalc__plain">All your homes <strong>nationwide</strong></td></tr>
            <tr><td>② − basic deduction</td><td class="scalc__plain">₩1.2B single / ₩900M other</td></tr>
            <tr><td>③ × fair market ratio</td><td class="scalc__plain">Housing <strong>60%</strong> (land 100%)</td></tr>
            <tr><td>= tax base</td><td class="scalc__plain">Rates applied here</td></tr>
            <tr><td>④ − property tax already paid</td><td class="scalc__plain">Overlapping amount deducted</td></tr>
            <tr><td>⑤ − tax credits</td><td class="scalc__plain">Age and long-holding (single home)</td></tr>
            <tr><td>⑥ + rural development tax</td><td class="scalc__plain"><strong>20%</strong> of the tax</td></tr>
          </tbody>
        </table>
        <p>Step ④ matters: it prevents <strong>double taxation</strong> on the same value.</p>

        <h2>Credits for single-home owners</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Age credit</strong></td><td class="scalc__plain">Rises by age band from 60</td></tr>
            <tr><td><strong>Long-holding credit</strong></td><td class="scalc__plain">Rises with years held, from 5 years</td></tr>
            <tr><td>Combined cap</td><td class="scalc__plain"><strong>Up to 80%</strong> together</td></tr>
          </tbody>
        </table>
        <p>An <strong>older owner in a long-held single home</strong> often sees the tax shrink to near nothing — which is why the "tax bomb on one home" worry frequently doesn't match reality.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Is joint ownership better?</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Sole ownership (single home)</td><td class="scalc__plain">₩1.2B deduction + <strong>age and holding credits</strong></td></tr>
            <tr><td>Joint ownership (couple)</td><td class="scalc__plain">₩900M each, <strong>₩1.8B combined</strong></td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;">Joint ownership looks better on the headline deduction, but sole ownership can cut up to 80% through age and holding credits — so <strong>older, longer-held owners eventually favor sole treatment</strong>. Joint owners may therefore <strong>apply for single-home special treatment</strong> and be assessed the sole-ownership way, choosing each September whichever is better.</p>
        </div>

        <h2>Payment and installments</h2>
        <ul>
          <li><strong>Billed</strong> by the tax office around <strong>late November</strong> — no filing required (self-filing is optional).</li>
          <li><strong>Payment window: December 1–15.</strong></li>
          <li><strong>Installments</strong> available when the tax exceeds <strong>₩2.5M</strong>.</li>
          <li><strong>Exclusion filing</strong> in September removes qualifying rental and company housing from the total.</li>
        </ul>

        <h2>FAQ</h2>
        <h3>Where do I find published prices?</h3>
        <p>On the official real estate price disclosure site, published annually with an objection window.</p>
        <h3>Does a rented-out home count?</h3>
        <p>Yes — liability follows <strong>ownership</strong>. Rental income is taxed separately (<a href="https://info-life.net/en/rental-income-tax.html">rental income tax</a>).</p>
        <h3>What if I sell just before June 1?</h3>
        <p>The <strong>June 1 owner</strong> pays. Closing on May 31 shifts that year's bill to the buyer.</p>
        <h3>Are inherited homes included?</h3>
        <p>Special rules can <strong>exclude</strong> them from the count for a period. Check the requirements.</p>

        <blockquote>This tax is set by your total published prices, not your home's price tag. Track two calendars: property tax in <a href="https://info-life.net/en/property-tax-guide.html">July and September</a>, comprehensive tax in December.</blockquote>

        <p>This is general 2026 information, not tax advice. Deductions, rates and ratios change — confirm with the National Tax Service or a tax professional.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Tenant Rights in Korea — Opposing Power, Priority Repayment, Renewal</title>
      <link>https://info-life.net/en/tenant-protection-law.html</link>
      <guid isPermaLink="true">https://info-life.net/en/tenant-protection-law.html</guid>
      <category>Real Estate</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Rights arise from the move-in report and fixed date stamp. A signed contract alone isn&#x27;t enough.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/tenant-protection-law.webp" alt="Tenant Rights in Korea — Opposing Power, Priority Repayment, Renewal"><br>        <p>Renting in Korea brings anxieties: <strong>"What if the landlord tells me to leave?"</strong> <strong>"What if I don't get my deposit back?"</strong> <strong>"What if the rent jumps?"</strong> The <strong>Housing Lease Protection Act</strong> protects tenants — but the rights <strong>don't arise automatically.</strong></p>

        <div class="callout">
          <p style="margin:0;">The core rule — <strong>you must file a move-in report and obtain a fixed date stamp.</strong> A signed contract alone leaves you only partly protected.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Three tenant rights — and how they differ</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Right</strong></td><td class="scalc__plain"><strong>Requirements · effect</strong></td></tr>
            <tr><td><strong>Opposing power</strong></td><td class="scalc__plain">Occupancy + <strong>move-in report</strong><br>→ <strong>stay through the lease</strong> even if the home is sold or auctioned</td></tr>
            <tr><td><strong>Priority repayment</strong></td><td class="scalc__plain">Opposing power + <strong>fixed date stamp</strong><br>→ paid <strong>ahead of junior creditors</strong> at auction</td></tr>
            <tr><td><strong>Top-priority repayment</strong></td><td class="scalc__plain">Small-deposit tenant criteria<br>→ a set amount paid <strong>before even senior secured creditors</strong></td></tr>
          </tbody>
        </table>
        <p>They stack. A move-in report protects your <strong>right to stay</strong>, but only the fixed date stamp secures your <strong>right to be paid first</strong>. You need both.</p>

        <div class="callout">
          <p style="margin:0;"><strong>⚠️ The one-day gap</strong> — under current rules opposing power begins at <strong>midnight the day after</strong> your move-in report. A landlord taking a loan on moving day can rank ahead of you. That's why the <a href="https://info-life.net/en/jeonse-contract-checklist.html">contract clause</a> barring new rights until the day after closing matters. (Reform to make opposing power immediate is under way, but prepare under current rules until it takes effect.)</p>
        </div>

        <h2>Renewal request right — two more years</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Times available</td><td class="scalc__plain"><strong>Once</strong> (2 + 2 = up to 4 years)</td></tr>
            <tr><td>When to exercise</td><td class="scalc__plain">Between <strong>6 and 2 months</strong> before expiry</td></tr>
            <tr><td>How</td><td class="scalc__plain">Verbal is valid, but <strong>keep written proof</strong></td></tr>
            <tr><td>Rent increase</td><td class="scalc__plain">Capped at <strong>5%</strong> on renewal</td></tr>
            <tr><td>Early termination</td><td class="scalc__plain">Tenant may end <strong>any time</strong> after renewal (effective 3 months later)</td></tr>
          </tbody>
        </table>
        <p>Miss the window and the right lapses. <strong>Give notice at least two months before expiry</strong> — put it in your calendar.</p>

        <h3>When a landlord can refuse</h3>
        <ul>
          <li><strong>The landlord (or direct family) will actually live there</strong> — the most common ground.</li>
          <li>The tenant has <strong>fallen two payments behind</strong> or leased by improper means</li>
          <li>Demolition or reconstruction disclosed at the time of contract</li>
          <li>The landlord provides <strong>substantial compensation</strong></li>
        </ul>
        <div class="callout">
          <p style="margin:0;">If a landlord evicts on residence grounds and then <strong>rents to someone else</strong>, the former tenant may claim damages — and can check afterwards through fixed-date records.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Implied renewal — when nobody says anything</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Renewal term</td><td class="scalc__plain">Treated as <strong>2 years</strong></td></tr>
            <tr><td>Rent</td><td class="scalc__plain"><strong>Unchanged</strong></td></tr>
            <tr><td>Tenant termination</td><td class="scalc__plain">Any time (effective after <strong>3 months</strong>)</td></tr>
            <tr><td>Renewal right</td><td class="scalc__plain"><strong>Not used up</strong> — still available later</td></tr>
          </tbody>
        </table>
        <p>Implied renewal favors tenants: two more years while <strong>keeping the renewal right in reserve</strong>.</p>

        <h2>If the deposit isn't returned</h2>
        <ol>
          <li><strong>Send certified mail</strong> demanding return — the foundation for later steps.</li>
          <li><strong>Lease registration order</strong> — essential if you must move out before repayment. Once registered, <strong>opposing power and priority survive your move.</strong></li>
          <li><strong>Lawsuit or payment order</strong> for return of the deposit</li>
          <li>If you hold <strong>deposit-return guarantee insurance</strong>, claim from the guarantor</li>
        </ol>
        <div class="callout">
          <p style="margin:0;"><strong>The most common mistake</strong> — moving out and transferring your move-in registration <strong>before the deposit is returned</strong>. Your protections vanish that moment. Move only after the <strong>lease registration is confirmed complete.</strong></p>
        </div>

        <h2>Deposit-return guarantee insurance</h2>
        <p>If the landlord can't repay, the guarantor pays instead. Providers include HUG, the Korea Housing Finance Corporation and SGI Seoul Guarantee.</p>
        <ul>
          <li>Requirements, premiums and limits <strong>differ by provider</strong> — compare.</li>
          <li><strong>Confirm eligibility before signing.</strong> Rejection because the deposit-to-value ratio is high is itself a <strong>warning sign</strong> about the property.</li>
          <li>There are timing limits, so ask <strong>early in the tenancy</strong>.</li>
        </ul>

        <h2>Tenant checklist</h2>
        <ol>
          <li>Check the <a href="https://info-life.net/en/property-register-guide.html">property register</a> before signing</li>
          <li>Add the <strong>no-new-rights clause</strong></li>
          <li><strong>Recheck the register</strong> before the balance payment</li>
          <li><strong>Move-in report + fixed date on moving day</strong> — never delay</li>
          <li>Get <strong>deposit-return insurance</strong></li>
          <li>Give renewal notice <strong>6–2 months</strong> before expiry</li>
          <li>If the deposit is withheld, get a <strong>lease registration order before moving</strong></li>
        </ol>

        <h2>FAQ</h2>
        <h3>Where do I get a fixed date stamp?</h3>
        <p>At a community center with your move-in report, or online via the Internet Registry Office or Government24, for a small fee.</p>
        <h3>Does it cover monthly rentals?</h3>
        <p>Yes — the Act covers <strong>both jeonse and monthly rent</strong>. Get the stamp if there's a deposit.</p>
        <h3>When does the 5% cap apply?</h3>
        <p>Only when <strong>renewing via the renewal request right</strong> — not to brand-new contracts.</p>
        <h3>What if the home goes to auction?</h3>
        <p>With opposing power and <strong>senior ranking</strong>, you can assert your rights against the buyer. If junior, you're paid in order — which is why checking mortgages first is decisive.</p>
        <h3>Can I move my registration briefly?</h3>
        <p>Never. Even one day <strong>destroys your ranking</strong>, irreversibly.</p>

        <blockquote>The law is strong, but it protects <strong>those who take the steps</strong>. The move-in report and fixed date stamp on moving day are almost the whole game.</blockquote>

        <p>This is general information, not legal advice. Rules can change — check Ministry of Land guidance or a legal professional before signing.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Buying an Apartment in Korea, Step by Step — Contract to Registration</title>
      <link>https://info-life.net/en/apartment-purchase-process.html</link>
      <guid isPermaLink="true">https://info-life.net/en/apartment-purchase-process.html</guid>
      <category>Real Estate</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>10% deposit, interim payment, balance and registration over two to three months, with checks and costs at each stage.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/apartment-purchase-process.webp" alt="Buying an Apartment in Korea, Step by Step — Contract to Registration"><br>        <p>Buying your first home in Korea is a chain of <strong>"what now?"</strong> moments. When is the deposit due? When do I apply for a loan? Who handles registration? Get the order wrong and <strong>costs land when the money isn't ready</strong> — or you skip a check that matters.</p>

        <p>Here's the whole process <strong>in sequence</strong>, with what to verify and what to pay at each stage.</p>

        <div class="callout">
          <p style="margin:0;">The typical flow is <strong>contract → (30–60 days) → interim payment → (30–60 days) → balance and registration</strong>, taking <strong>two to three months</strong>. Standard splits are 10% deposit, 40–50% interim, 40–50% balance (negotiable).</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Timeline and cash flow</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td><strong>Stage</strong></td><td class="scalc__plain"><strong>Timing · outlay</strong></td></tr>
            <tr><td>① Viewing and holding deposit</td><td class="scalc__plain">Small holding sum</td></tr>
            <tr><td>② Main contract</td><td class="scalc__plain">Deposit of <strong>10%</strong> of price</td></tr>
            <tr><td>③ Loan application</td><td class="scalc__plain">Right after signing (2–7 days review)</td></tr>
            <tr><td>④ Interim payment</td><td class="scalc__plain"><strong>40–50%</strong> of price</td></tr>
            <tr><td>⑤ Balance and transfer</td><td class="scalc__plain">Balance + <strong>acquisition tax, commission, scrivener</strong></td></tr>
            <tr><td>⑥ Registration complete</td><td class="scalc__plain"><strong>1–2 weeks</strong> after balance</td></tr>
          </tbody>
        </table>

        <h2>① Before you commit</h2>
        <ul>
          <li><strong>Property register</strong> — mortgages, attachments, trusts (<a href="https://info-life.net/en/property-register-guide.html">how to read it</a>)</li>
          <li><strong>Building ledger</strong> — violations, actual area and use</li>
          <li><strong>Market price</strong> — recent transactions for the <strong>same complex and size</strong> on the official disclosure system</li>
          <li><strong>Site visit</strong> — light, noise, leak marks, water pressure, surroundings</li>
          <li><strong>Maintenance fees and arrears</strong> — ask the management office</li>
        </ul>
        <div class="callout">
          <p style="margin:0;"><strong>Careful with holding deposits.</strong> Wiring money in a rush can constitute a concluded contract. At minimum, put the <strong>address, amount, closing date and refund conditions</strong> in writing first.</p>
        </div>

        <h2>② Signing the contract</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Counterparty</td><td class="scalc__plain">Confirm the <strong>registered owner</strong> against ID</td></tr>
            <tr><td>If an agent signs</td><td class="scalc__plain">Check <strong>power of attorney and seal certificate</strong></td></tr>
            <tr><td>Payment account</td><td class="scalc__plain">Must be in the <strong>owner's name</strong></td></tr>
            <tr><td>Contract essentials</td><td class="scalc__plain">Price, payment schedule, closing date, special clauses</td></tr>
            <tr><td>Disclosure statement</td><td class="scalc__plain">Receive and <strong>sign</strong> it</td></tr>
          </tbody>
        </table>

        <h3>Clauses worth adding</h3>
        <ul>
          <li>"The seller shall create <strong>no new mortgage or attachment</strong> before the closing date."</li>
          <li>"The seller shall <strong>settle maintenance fees and utilities</strong> as of the closing date."</li>
          <li>"If <strong>the buyer's loan is refused</strong>, the contract is void and the deposit refunded."</li>
          <li>"The seller is responsible for <strong>material defects</strong> in the current condition."</li>
        </ul>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>③ The loan — start immediately</h2>
        <ul>
          <li><strong>Limits</strong> — the lower of LTV (value-based) and <a href="https://info-life.net/en/dsr-borrowing-limit.html">DSR</a> (income-based) is your real cap.</li>
          <li><strong>Compare banks</strong> — small rate gaps compound into millions. Check payments in the <a href="https://info-life.net/en/loan-calculator.html">loan calculator</a>.</li>
          <li><strong>Fixed or variable</strong> (<a href="https://info-life.net/en/fixed-vs-variable-rate.html">comparison</a>)</li>
          <li><strong>Documents</strong> — income, employment, contract, property register</li>
        </ul>

        <h2>④ Interim payment — the point of no return</h2>
        <div class="callout">
          <p style="margin:0;"><strong>Legally significant.</strong> While only the deposit has changed hands, the buyer can walk away by forfeiting it and the seller by returning double. <strong>Once the interim payment is made, unilateral cancellation ends.</strong> In a rising market, paying the interim early is a defense against a seller trying to break the deal.</p>
        </div>

        <h2>⑤ Closing day</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Final check</td><td class="scalc__plain"><strong>Re-issue the property register</strong> — no new mortgages</td></tr>
            <tr><td>Seller's loan</td><td class="scalc__plain">Confirm existing mortgages are <strong>discharged</strong></td></tr>
            <tr><td>Settlement</td><td class="scalc__plain">Maintenance fees, utilities, long-term repair reserve</td></tr>
            <tr><td>Payments</td><td class="scalc__plain">Balance + commission + scrivener fee</td></tr>
            <tr><td>Receive</td><td class="scalc__plain">Keys, <strong>title deed</strong>, management handover</td></tr>
          </tbody>
        </table>

        <h2>⑥ Registration and taxes</h2>
        <table class="scalc__table">
          <tbody>
            <tr><td>Ownership transfer</td><td class="scalc__plain">Filed at closing, <strong>done in 1–2 weeks</strong></td></tr>
            <tr><td><strong>Acquisition tax</strong></td><td class="scalc__plain">Within <strong>60 days</strong> (<a href="https://info-life.net/en/acquisition-tax-guide.html">rate table</a>)</td></tr>
            <tr><td>Move-in report</td><td class="scalc__plain">Within <strong>14 days</strong> of moving</td></tr>
            <tr><td>Title deed</td><td class="scalc__plain">Cannot be reissued — <strong>store safely</strong></td></tr>
          </tbody>
        </table>

        <h2>💰 What it costs beyond the price</h2>
        <p>First-time buyers most often miss this: budget <strong>2–4% of the purchase price</strong> on top.</p>
        <table class="scalc__table">
          <tbody>
            <tr><td>Acquisition tax + surtaxes</td><td class="scalc__plain"><strong>1.1–3.5%</strong> of price</td></tr>
            <tr><td>Agent commission</td><td class="scalc__plain">Negotiated within the ceiling (<a href="https://info-life.net/en/brokerage-fee-guide.html">how it works</a>)</td></tr>
            <tr><td>Scrivener fee</td><td class="scalc__plain">Several hundred thousand won</td></tr>
            <tr><td>Stamp duty, bonds</td><td class="scalc__plain">Minor</td></tr>
            <tr><td>Moving and interiors</td><td class="scalc__plain">Separate</td></tr>
          </tbody>
        </table>
        <div class="callout">
          <p style="margin:0;"><strong>Keep every receipt.</strong> Acquisition tax, commissions, scrivener fees, extensions and windows all count later as <a href="https://info-life.net/en/capital-gains-tax-calculation.html">allowable expenses for capital gains tax</a> — paperwork that saves millions a decade from now.</p>
        </div>

        <h2>FAQ</h2>
        <h3>Can I cancel after a holding deposit?</h3>
        <p>Without stated conditions it may count as a concluded contract, making <strong>recovery difficult</strong>. Put refund terms in writing first.</p>
        <h3>Can the closing date move?</h3>
        <p>Only by agreement. Delaying unilaterally can trigger <strong>interest or cancellation</strong>.</p>
        <h3>Can I register the transfer myself?</h3>
        <p>Yes, though lenders often require their own scrivener when a mortgage is involved.</p>
        <h3>Can I move in before closing?</h3>
        <p>Normally after ownership transfers. If necessary, get a <strong>written agreement</strong>.</p>

        <blockquote>Buying a home is half finding the right property and half checking things in the right order. Read the register twice — before signing and before the balance.</blockquote>

        <p>This is general information, not legal or tax advice. Procedures and costs vary by deal and region — consult an agent, scrivener or tax professional.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Korean National Pension Estimator (2026) — Early vs Deferred</title>
      <link>https://info-life.net/en/national-pension-calculator.html</link>
      <guid isPermaLink="true">https://info-life.net/en/national-pension-calculator.html</guid>
      <category>Calculators</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Enter income and years to see your estimated pension, with early and deferred claiming compared.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/national-pension-calculator.webp" alt="Korean National Pension Estimator (2026) — Early vs Deferred"><br>        <p>"How much will my national pension actually be?" Logging into the official site is a chore. Enter your <strong>average monthly income and years of contribution</strong> and get an estimate instantly — with <strong>early and deferred claiming compared side by side.</strong></p>

        <!-- ▼▼ National pension calculator ▼▼ -->
        <div class="scalc" id="nps-calc">
          <div class="scalc__title">Korean National Pension Estimator <span>2026 basis · early vs deferred</span></div>

          <div class="scalc__inputs">
            <div class="scalc__field">
              <label for="np-income">Average monthly income <small>(over your contribution years, "B")</small></label>
              <div class="scalc__inputwrap">
                <span class="scalc__unit">₩</span>
                <input id="np-income" type="text" inputmode="numeric" value="3,000,000">
              </div>
            </div>
            <div class="scalc__field scalc__field--sm">
              <label for="np-years">Years contributed</label>
              <div class="scalc__inputwrap">
                <input id="np-years" type="number" inputmode="numeric" value="25" min="1" max="50" step="1">
                <span class="scalc__unit">yrs</span>
              </div>
            </div>
            <div class="scalc__field">
              <label for="np-const">Main enrollment period <small>(replacement-rate constant)</small></label>
              <select id="np-const" class="scalc__select">
                <option value="1.29" selected>From 2026 (43% replacement)</option>
                <option value="1.35">2008–2025 (about 50%→41.5%)</option>
                <option value="1.8">1999–2007 (60%→50%)</option>
                <option value="2.4">1988–1998 (70%)</option>
              </select>
            </div>
            <div class="scalc__field">
              <label for="np-a">"A" value <small>(all-member average monthly income)</small></label>
              <div class="scalc__inputwrap">
                <span class="scalc__unit">₩</span>
                <input id="np-a" type="text" inputmode="numeric" value="3,193,511">
              </div>
            </div>
          </div>

          <div class="scalc__result" id="np-result">
            <div class="scalc__net">
              <span class="scalc__net-label">Estimated monthly pension <small>(normal claim, pre-tax)</small></span>
              <span class="scalc__net-value">₩<b id="np-month">0</b></span>
              <span class="scalc__net-year">₩<span id="np-year">0</span>/year · <span id="np-rate">0</span>% of your income</span>
            </div>
            <table class="scalc__table">
              <tbody id="np-rows"></tbody>
            </table>
          </div>
          <p class="scalc__note">Calculates automatically using <strong>basic pension (annual) = constant × (A + B) × years ÷ 20</strong>. This is an <strong>estimate</strong>; actual amounts depend on revaluation of past income, period-specific constants and dependent allowances. For an exact figure, use the National Pension Service's own estimate service.</p>
        </div>
        <script>
        (function(){
          var $=function(id){return document.getElementById(id);};
          var IN=$('np-income'),Y=$('np-years'),C=$('np-const'),A=$('np-a'),rows=$('np-rows');
          function won(v){ return Math.round(v).toLocaleString('en-US'); }
          function comma(el){
            el.addEventListener('input',function(){
              var raw=el.value.replace(/[^0-9]/g,'');
              var pos=el.selectionStart||0, before=el.value.slice(0,pos).replace(/[^0-9]/g,'').length;
              el.value = raw===''?'':Number(raw).toLocaleString('en-US');
              var np=0,seen=0; while(np<el.value.length&&seen<before){ var cc=el.value.charCodeAt(np); if(cc>=48&&cc<=57) seen++; np++; }
              try{ el.setSelectionRange(np,np); }catch(e){}
            });
          }
          function amt(el){ return Math.max(0, parseFloat(String(el.value).replace(/[^0-9]/g,''))||0); }
          [IN,A].forEach(comma);
          function calc(){
            var B=Math.min(6590000, Math.max(410000, amt(IN)));
            var years=Math.min(50,Math.max(1,Math.floor(parseFloat(Y.value)||1)));
            var k=parseFloat(C.value)||1.29, Aval=amt(A)||3193511;
            var base = k * (Aval + B) * (years/20);
            var month = base/12;
            if(years < 10){
              $('np-month').textContent='0'; $('np-year').textContent='0'; $('np-rate').textContent='0';
              rows.innerHTML='<tr><td colspan="2" class="scalc__plain">With under 10 years of contributions there is no old-age pension — you receive a <b>lump-sum refund</b> of contributions plus interest. Voluntary continued enrollment can help you reach 10 years.</td></tr>';
              return;
            }
            $('np-month').textContent=won(month);
            $('np-year').textContent=won(base);
            $('np-rate').textContent=(month/B*100).toFixed(1);
            var html='';
            html+='<tr><td>Early claim (5 years, −30%)</td><td class="scalc__plain">₩'+won(month*0.70)+'</td></tr>';
            html+='<tr><td>Early claim (3 years, −18%)</td><td class="scalc__plain">₩'+won(month*0.82)+'</td></tr>';
            html+='<tr><td>Normal claim</td><td class="scalc__plain">₩'+won(month)+'</td></tr>';
            html+='<tr><td>Deferred (3 years, +21.6%)</td><td class="scalc__plain">₩'+won(month*1.216)+'</td></tr>';
            html+='<tr><td>Deferred (5 years, +36%)</td><td class="scalc__plain">₩'+won(month*1.36)+'</td></tr>';
            rows.innerHTML=html;
          }
          [IN,Y,C,A].forEach(function(el){ el.addEventListener('input',calc); el.addEventListener('change',calc); });
          calc();
        })();
        </script>
        <!-- ▲▲ End calculator ▲▲ -->

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>How it works — the A and B values</h2>
        <p>Korea's national pension isn't a savings account that returns what you paid. It contains <strong>income redistribution</strong>, so two incomes enter the formula.</p>
        <ul>
          <li><strong>A value</strong> — the <strong>average monthly income of all members</strong> (three-year average). The <strong>2026 figure is ₩3,193,511</strong>. It applies equally to everyone: the "flat" portion.</li>
          <li><strong>B value</strong> — <strong>your own average income</strong> over your contribution years: the proportional portion.</li>
        </ul>
        <div class="callout">
          <p style="margin:0;">One consequence worth knowing: <strong>the lower your income, the higher your return relative to contributions</strong>, because the shared A value makes up half the formula. That's why this is social insurance, not an investment.</p>
        </div>

        <h2>The formula</h2>
        <p><strong>Basic pension (annual) = constant × (A + B) × years ÷ 20</strong></p>
        <ul>
          <li>The <strong>constant</strong> reflects the replacement rate of your enrollment period. From 2026 it's <strong>1.29</strong> (43% replacement).</li>
          <li>Earlier periods used <strong>higher constants</strong> (2.4 for 1988–1998), so long-time members may receive <strong>more than this estimate</strong>.</li>
          <li><strong>20 years</strong> is the pivot: at 20 years you get 100% of the basic pension, less below and more above.</li>
        </ul>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Early vs deferred claiming</h2>
        <ul>
          <li><strong>Early</strong> — up to five years sooner, reduced <strong>6% per year, permanently</strong>. Five years means 30% less for life.</li>
          <li><strong>Deferred</strong> — up to five years later, increased <strong>7.2% per year</strong>. Five years means 36% more.</li>
        </ul>
        <p>Which wins depends on health, other income and life expectancy — see <a href="https://info-life.net/en/pension-early-vs-deferred.html">early vs deferred claiming</a>.</p>

        <h2>Limits of this estimator</h2>
        <ul>
          <li>It doesn't apply <strong>revaluation</strong> to past income, which in reality lifts older earnings to present value.</li>
          <li>Mixed enrollment periods use <strong>different constants per period</strong>; this uses one.</li>
          <li><strong>Dependent allowances</strong> aren't included.</li>
          <li>Results are <strong>pre-tax</strong>.</li>
        </ul>
        <div class="callout">
          <p style="margin:0;">For an exact figure, use the <strong>National Pension Service (nps.or.kr)</strong> estimate service or its mobile app — it reflects your real contribution history.</p>
        </div>

        <h2>FAQ</h2>
        <h3>What if I have under 10 years?</h3>
        <p>No old-age pension — you receive a <strong>lump-sum refund</strong> instead. <strong>Voluntary continued enrollment</strong> after 60 can get you to 10 years.</p>
        <h3>My official estimate is higher than this.</h3>
        <p>Older contribution periods carry <strong>higher constants</strong>, and <strong>revaluation</strong> raises past income. The official figure is the accurate one.</p>
        <h3>What changed in 2026?</h3>
        <p>The contribution rate rose from 9% to 9.5% and the replacement rate went to 43% — see <a href="https://info-life.net/en/national-pension-guide.html">the 2026 reform guide</a>.</p>
        <h3>Can I increase my pension?</h3>
        <p>Yes — retroactive payments, repaying refunds, voluntary enrollment and credits. See <a href="https://info-life.net/en/pension-increase-methods.html">how to increase your pension</a>.</p>

        <blockquote>With the national pension, how long you contribute matters more than how much. Start by checking how to extend your years.</blockquote>

        <p>This is a general-information estimate, not financial or legal advice. Rules and figures change — confirm with the National Pension Service.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Claiming Korea&#x27;s Pension Early vs. Deferring — Which Wins?</title>
      <link>https://info-life.net/en/pension-early-vs-deferred.html</link>
      <guid isPermaLink="true">https://info-life.net/en/pension-early-vs-deferred.html</guid>
      <category>Retirement</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Early cuts 6% a year; deferring adds 7.2%. Both last for life.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/pension-early-vs-deferred.webp" alt="Claiming Korea&#x27;s Pension Early vs. Deferring — Which Wins?"><br>        <p>As pension age approaches, a decision looms: <strong>take it early at a discount, or wait and receive more?</strong> The adjustments are large enough that this single choice changes what you receive for the rest of your life.</p>

        <div class="callout">
          <p style="margin:0;"><strong>The numbers</strong> — early claiming cuts <strong>6% per year</strong> (up to five years, 30%); deferral adds <strong>7.2% per year</strong> (up to five years, 36%). Both are <strong>permanent</strong>.<br>
          Compare your own figures in the <a href="https://info-life.net/en/national-pension-calculator.html">national pension calculator</a>.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Where's the break-even?</h2>
        <p>The obvious question: how long must you live for each choice to pay off? On simple cumulative totals:</p>
        <ul>
          <li><strong>Early (5 years, −30%)</strong> — those five extra years of payments lead at first, but the smaller monthly amount means normal claiming <strong>overtakes it roughly a decade after the normal start age</strong>.</li>
          <li><strong>Deferred (5 years, +36%)</strong> — you must first make up five years of skipped payments, so the cumulative total typically pulls ahead <strong>in your early-to-mid eighties</strong>.</li>
        </ul>
        <p>So <strong>longer life favors deferral; a shorter horizon favors early claiming</strong>. Note this ignores inflation, tax and other income.</p>

        <h2>When early claiming makes sense</h2>
        <ul>
          <li><strong>You need the money now</strong> — the most practical reason. If the alternative is debt or selling assets, the reduction may be worth it.</li>
          <li><strong>Health concerns</strong> or a family history suggesting a shorter life expectancy</li>
          <li><strong>Bridging an income gap</strong> after retirement</li>
        </ul>
        <div class="callout">
          <p style="margin:0;"><strong>⚠️ The trap:</strong> the reduction is <strong>for life</strong>. A temporary squeeze can lock in 30% less for two decades or more. Also, working in paid employment while claiming early can <strong>suspend payments</strong>.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>When deferral makes sense</h2>
        <ul>
          <li><strong>You have other income</strong> — re-employment, a business or rental income means you can wait.</li>
          <li><strong>Good health and likely longevity</strong> — 7.2% a year beats any guaranteed product on the market.</li>
          <li><strong>Providing for a spouse</strong> — a larger pension can affect survivor benefits.</li>
        </ul>
        <p>You can also defer <strong>only part</strong> of the pension (50–90%), taking some for living costs while growing the rest.</p>

        <h2>Three variables people miss</h2>
        <ol>
          <li><strong>Income-based reduction</strong> — even with normal claiming, substantial earnings within five years of starting can trim your pension. Deferring may be better in that case.</li>
          <li><strong>Health insurance premiums</strong> — more pension income can raise regional premiums or affect dependent status.</li>
          <li><strong>Basic pension</strong> — a larger national pension can reduce your <a href="https://info-life.net/en/basic-pension-guide.html">basic pension</a>. Look at both together.</li>
        </ol>

        <h2>How to decide</h2>
        <ol>
          <li>Compare early, normal and deferred amounts in the <a href="https://info-life.net/en/national-pension-calculator.html">calculator</a></li>
          <li>Check what <strong>other income</strong> you'll have around that time</li>
          <li>Weigh health and family longevity</li>
          <li>Check knock-on effects on premiums and the basic pension</li>
          <li>When unsure, call the National Pension Service (1355) — <strong>consultations are free</strong></li>
        </ol>

        <h2>FAQ</h2>
        <h3>Can I undo an early claim?</h3>
        <p>Payments can be suspended if you return to work, but <strong>reversing the decision itself is difficult.</strong> Think it through before applying.</p>
        <h3>Do I pay more contributions while deferring?</h3>
        <p>No. Deferral only <strong>delays when payments start</strong> — it isn't extra contribution.</p>
        <h3>How long must I live for deferral to win?</h3>
        <p>On cumulative totals, the <strong>early-to-mid eighties</strong>. But a pension is <strong>insurance against outliving your money</strong>, not just a break-even calculation.</p>

        <blockquote>Rather than guessing how long you'll live, ask whether you truly need this money now. That's the more practical test.</blockquote>

        <p>This is general information, not financial advice. Reduction and increase rates and income rules can change — confirm with the National Pension Service.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>How to Increase Your Korean National Pension — Every Option</title>
      <link>https://info-life.net/en/pension-increase-methods.html</link>
      <guid isPermaLink="true">https://info-life.net/en/pension-increase-methods.html</guid>
      <category>Retirement</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Extending your contribution years beats paying more per month.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/pension-increase-methods.webp" alt="How to Increase Your Korean National Pension — Every Option"><br>        <p>If the <a href="https://info-life.net/en/national-pension-calculator.html">calculator</a> gave you a smaller number than you hoped, there are still ways to raise it. Korea's national pension rewards <strong>length of contribution</strong>, so filling in the gaps is the lever.</p>

        <div class="callout">
          <p style="margin:0;">One principle to remember: <strong>extending your contribution years beats paying more per month</strong>, because years are multiplied in the formula.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>① Retroactive payment — fill the gaps</h2>
        <p>If you missed contributions during unemployment, business closure or a career break, you can <strong>pay for those periods later</strong> and have them counted.</p>
        <ul>
          <li>Applies to exemption periods and periods outside coverage.</li>
          <li><strong>Installments</strong> are available if the lump sum is heavy.</li>
          <li>Because it extends your years, the <strong>effect on the pension is large</strong>.</li>
        </ul>
        <p>It's decisive for anyone <strong>short of 10 years (120 months)</strong> — without that, there's no pension at all.</p>

        <h2>② Repaying a past lump-sum refund</h2>
        <p>If you once took a lump-sum refund on leaving a job, you can <strong>return it with interest and restore that period</strong>.</p>
        <div class="callout">
          <p style="margin:0;">This is especially valuable because older periods carry <strong>higher replacement-rate constants</strong>. The 1988–1998 constant is 2.4, nearly double today's 1.29. <strong>The older the period, the more it's worth restoring.</strong></p>
        </div>

        <h2>③ Voluntary continued enrollment — keep paying past 60</h2>
        <ul>
          <li>Mandatory coverage ends at 60, but you may <strong>continue contributing to 65</strong> by choice.</li>
          <li>It's the surest route to <strong>reaching 10 years</strong> for those who fall short.</li>
          <li>Even past 10 years, it <strong>lengthens your record and raises the pension</strong>.</li>
        </ul>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>④ Voluntary enrollment — join without income</h2>
        <p>Homemakers, students and others outside mandatory coverage can <strong>enroll voluntarily</strong>. When both spouses enroll, <strong>both receive pensions</strong> later.</p>

        <h2>⑤ Credits — contribution years granted free</h2>
        <p>Certain circumstances <strong>add contribution months without payment</strong>, and the scheme expanded in 2026.</p>
        <ul>
          <li><strong>Childbirth credit</strong> — now <strong>12 months from the first child</strong>, with the previous 50-month ceiling abolished.</li>
          <li><strong>Military service credit</strong> — extended from 6 months to <strong>up to 12 months</strong>.</li>
          <li><strong>Unemployment credit</strong> — partial contribution support while receiving job-seeker benefits.</li>
        </ul>

        <h2>⑥ Deferral — delay the start</h2>
        <p>Postponing up to five years adds <strong>7.2% a year, up to 36%</strong>. With other income available, it's the most reliable increase. (<a href="https://info-life.net/en/pension-early-vs-deferred.html">early vs deferred</a>)</p>

        <h2>What order to check</h2>
        <ol>
          <li><strong>Under 10 years</strong> → voluntary continued enrollment or retroactive payment to reach 10</li>
          <li><strong>Took a refund before</strong> → consider repaying (older periods are more valuable)</li>
          <li><strong>Gaps in your record</strong> → retroactive payment</li>
          <li>Check which <strong>credits</strong> apply (childbirth, military, unemployment)</li>
          <li><strong>Other income available</strong> → defer</li>
        </ol>
        <div class="callout">
          <p style="margin:0;">The <strong>National Pension Service (1355)</strong> will review your record and calculate <strong>how much extra payment buys how much extra pension</strong> — free of charge.</p>
        </div>

        <h2>FAQ</h2>
        <h3>Is retroactive payment always worth it?</h3>
        <p>Usually, but it needs <strong>cash upfront</strong> and takes time to recoup. Ask the NPS for the <strong>payback period</strong> before deciding.</p>
        <h3>How much does repaying cost?</h3>
        <p>The refund you received plus <strong>set interest</strong>. Older periods accrue more interest, but the higher constant often more than compensates.</p>
        <h3>Can voluntary enrollment be a loss?</h3>
        <p>If contributions are very short or you die early, yes. But an <strong>inflation-linked lifetime pension</strong> is something no other product offers.</p>

        <blockquote>With this pension, filling more years beats paying more. Start by finding the gaps in your record.</blockquote>

        <p>This is general information, not financial advice. Requirements and amounts depend on your record — confirm with the National Pension Service (1355).</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Korea&#x27;s Three-Tier Pension — Which Layer to Fill First</title>
      <link>https://info-life.net/en/three-tier-pension.html</link>
      <guid isPermaLink="true">https://info-life.net/en/three-tier-pension.html</guid>
      <category>Retirement</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>The national pension alone isn&#x27;t enough. The order you build matters.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/three-tier-pension.webp" alt="Korea&#x27;s Three-Tier Pension — Which Layer to Fill First"><br>        <p>Run the <a href="https://info-life.net/en/national-pension-calculator.html">calculator</a> and most people think the same thing: <strong>"That won't be enough."</strong> Correct — the national pension is designed to set <strong>a floor</strong> for retirement, not to fund it entirely.</p>

        <p>Hence the <strong>three-tier pension</strong>: layers stacked to build retirement income.</p>

        <div class="callout">
          <p style="margin:0;"><strong>Tier 1 national pension</strong> (basic living) + <strong>Tier 2 retirement pension</strong> (built at work) + <strong>Tier 3 private pension</strong> (your own) — with <strong>Tier 4 housing pension</strong> if needed.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Tier 1 — national pension (the floor)</h2>
        <ul>
          <li><strong>Role</strong> — minimum living costs. Its strengths are being <strong>inflation-linked</strong> and <strong>lifelong</strong>.</li>
          <li><strong>Limit</strong> — the 43% replacement rate assumes <strong>40 years of contributions</strong>, which most people don't reach.</li>
          <li><strong>Action</strong> — start by <a href="https://info-life.net/en/pension-increase-methods.html">extending your contribution years</a>.</li>
        </ul>

        <h2>Tier 2 — retirement pension (accrues at work)</h2>
        <ul>
          <li><strong>Role</strong> — retirement funds accumulating with years of service.</li>
          <li><strong>The common mistake</strong> — <strong>cashing out severance when changing jobs.</strong> Your retirement savings reset every time.</li>
          <li><strong>Action</strong> — <strong>consolidate in an IRP</strong>, and if you're on DC, actually invest it. (<a href="https://info-life.net/en/retirement-pension-db-dc.html">DB vs DC vs IRP</a>)</li>
        </ul>

        <h2>Tier 3 — private pension (the layer you build)</h2>
        <ul>
          <li><strong>Role</strong> — voluntary saving to close the gap left by tiers 1 and 2.</li>
          <li><strong>Pension savings and IRP</strong> give a <strong>tax credit on up to ₩9M a year combined</strong> — you're refunded tax while saving for later.</li>
          <li><strong>Action</strong> — fill the tax credit limit first. (<a href="https://info-life.net/en/pension-irp-tax-credit.html">pension savings and IRP</a>)</li>
        </ul>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Tier 4 — housing pension (if you own a home)</h2>
        <p>House-rich but cash-poor? You can pledge the home you live in and receive <strong>monthly income for life</strong> while keeping ownership and residence. (<a href="https://info-life.net/en/housing-pension-guide.html">housing pension guide</a>)</p>

        <h2>What to fill first</h2>
        <ol>
          <li><strong>Reach 10 years of national pension</strong> — without it there's no pension at all. Top priority.</li>
          <li><strong>Protect your retirement pension</strong> — roll it into an IRP when changing jobs. Stop the leaks first.</li>
          <li><strong>Fill the pension savings and IRP tax credit</strong> — a guaranteed return in the form of refunded tax.</li>
          <li><strong>Extend national pension years</strong> — retroactive payments and refund repayment.</li>
          <li><strong>Then</strong> general investing.</li>
        </ol>
        <div class="callout">
          <p style="margin:0;">The order matters: a <strong>guaranteed tax credit</strong> comes before <strong>uncertain investment returns.</strong> Many people skip tier 3 and go straight to stocks and ETFs — capturing the tax benefit first is simply more efficient.</p>
        </div>

        <h2>Seeing all your pensions at once</h2>
        <ul>
          <li><strong>Financial Supervisory Service integrated pension portal</strong> — shows <strong>every pension</strong> you hold in one place.</li>
          <li><strong>National Pension Service estimate service</strong> — your projected national pension.</li>
          <li>Together they give a rough picture of your <strong>monthly retirement income.</strong></li>
        </ul>

        <h2>FAQ</h2>
        <h3>How much do I need per month in retirement?</h3>
        <p>It varies widely, though <strong>60–70% of pre-retirement income</strong> is a common target. What matters most is knowing the <strong>gap</strong> between that and your projected income.</p>
        <h3>I can't fund all three tiers.</h3>
        <p>Follow the order. Just <strong>10 years of national pension → protecting severance → the tax credit limit</strong> makes a substantial difference.</p>
        <h3>Doesn't more pension mean more tax?</h3>
        <p>Pension income tax applies, but <strong>at lower rates than a lump sum.</strong> Watch the effects on health premiums and the basic pension when planning.</p>

        <blockquote>Retirement planning is less about the total saved than how many layers you've stacked. Build them in order.</blockquote>

        <p>This is general information, not investment or financial advice. Rules and taxes change and circumstances differ — consult a professional.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Korea&#x27;s Housing Pension — Stay in Your Home and Draw Income (2026)</title>
      <link>https://info-life.net/en/housing-pension-guide.html</link>
      <guid isPermaLink="true">https://info-life.net/en/housing-pension-guide.html</guid>
      <category>Retirement</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Age 55+ with a home under 1.2B won qualifies. Payments rose and fees fell in 2026.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/housing-pension-guide.webp" alt="Korea&#x27;s Housing Pension — Stay in Your Home and Draw Income (2026)"><br>        <p>"The house is paid for, but the bank account is empty." It's the classic retirement bind — selling means having nowhere to live, staying means being short of cash. Korea's <strong>housing pension</strong> exists for exactly this.</p>

        <div class="callout">
          <p style="margin:0;">In one line — <strong>keep living in your home while drawing a monthly pension against it for life.</strong> It's a <strong>state-guaranteed reverse mortgage</strong> backed by the Korea Housing Finance Corporation.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Eligibility (2026)</h2>
        <ul>
          <li><strong>Age</strong> — just <strong>one spouse aged 55 or older</strong>.</li>
          <li><strong>Home value</strong> — combined <strong>published price of ₩1.2B or less</strong>.</li>
          <li><strong>Number of homes</strong> — one in principle, though multiple homes qualify if the <strong>combined value stays under ₩1.2B</strong>; two-home owners above that can join on condition of <strong>disposing of one within three years</strong>.</li>
          <li><strong>Residence</strong> — you must <strong>actually live</strong> in the pledged home.</li>
          <li><strong>Property types</strong> — apartments, detached houses, multiplexes, senior housing and residential officetels.</li>
        </ul>

        <h2>What improved in 2026</h2>
        <ul>
          <li><strong>Payments rose an average 3.13%</strong> after a full redesign of the actuarial model.</li>
          <li><strong>Initial guarantee fee cut from 1.5% to 1.0%</strong>, lowering the entry cost.</li>
          <li><strong>Refund window for the initial fee extended from three to five years</strong> on early termination.</li>
        </ul>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>How much you receive</h2>
        <p>Monthly payments depend on <strong>home value</strong> and the <strong>age of the older spouse</strong>.</p>
        <ul>
          <li><strong>Older means larger</strong> monthly payments, since the expected period is shorter.</li>
          <li>Valuation uses the <strong>corporation's appraisal</strong>, typically 80–90% of market price — not the published price.</li>
          <li>As a reference, a <strong>₩900M home with a 65-year-old couple</strong> yields roughly <strong>₩1.5M a month</strong> (varies by conditions).</li>
          <li>Get an exact figure from the <strong>Korea Housing Finance Corporation's estimate tool</strong>.</li>
        </ul>

        <h2>Choosing a payment method</h2>
        <ul>
          <li><strong>Lifetime</strong> — the same amount monthly until both spouses pass away. The most common choice.</li>
          <li><strong>Fixed term</strong> — 10, 15, 20 or 30 years. <strong>Higher monthly payments</strong>, but they stop at the end. Useful for <strong>bridging the years before the national pension starts.</strong></li>
          <li><strong>Mixed</strong> — take part as a lump sum (medical costs, debt repayment) and the rest as a pension.</li>
        </ul>

        <h2>Key things to know</h2>
        <ul>
          <li><strong>You keep ownership</strong>, and <strong>residence is guaranteed until both spouses pass away.</strong></li>
          <li><strong>Automatic spousal succession</strong> — if one spouse dies, the survivor receives <strong>the same amount for life</strong>.</li>
          <li><strong>Falling home prices don't cut your pension</strong> — but <strong>rising prices don't raise it either.</strong></li>
          <li>On settlement, <strong>any surplus goes to heirs</strong>, and <strong>any shortfall is not claimed from them.</strong></li>
          <li><strong>Guarantee fees</strong> apply (initial and annual) but are deducted from payments — no cash outlay.</li>
          <li>Rates are <strong>variable</strong>, so rate moves affect how payments are calculated.</li>
        </ul>
        <div class="callout">
          <p style="margin:0;"><strong>The real question is usually inheritance</strong> — passing the home to children versus funding your own retirement comfortably. Discussing it with family in advance prevents disputes.</p>
        </div>

        <h2>FAQ</h2>
        <h3>Can I cancel later?</h3>
        <p>Yes, by repaying the payments received plus interest and fees. Since 2026 the <strong>initial fee refund window is five years</strong>, easing the cost.</p>
        <h3>What if I move?</h3>
        <p>There's a process for changing the pledged property, but residence is required — <strong>ask the corporation first</strong>.</p>
        <h3>Does it affect the basic pension or health premiums?</h3>
        <p>Housing pension is <strong>loan-like</strong> rather than income in some respects, but the home remains an asset. Check alongside the <a href="https://info-life.net/en/basic-pension-guide.html">basic pension</a> rules.</p>
        <h3>Do my children need to consent?</h3>
        <p>Not legally, but since it affects inheritance, <strong>discussing it beforehand is wise</strong>.</p>

        <blockquote>A housing pension isn't selling your home — it's living in it while it pays you. Worth considering when three tiers aren't enough.</blockquote>

        <p>This is general 2026 information, not financial advice. Eligibility, payments and fees can change — confirm with the Korea Housing Finance Corporation.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Avoiding the Post-Retirement Health Insurance Shock in Korea</title>
      <link>https://info-life.net/en/retiree-health-insurance.html</link>
      <guid isPermaLink="true">https://info-life.net/en/retiree-health-insurance.html</guid>
      <category>Retirement</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Income stops but premiums rise. One scheme holds them down for up to 36 months.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/retiree-health-insurance.webp" alt="Avoiding the Post-Retirement Health Insurance Shock in Korea"><br>        <p>A couple of months after retiring, the health insurance bill arrives and shocks people: <strong>"Why is this higher than when I was working?"</strong> Income stopped, yet the premium went up. There's a reason — and <strong>a way to prevent it.</strong></p>

        <div class="callout">
          <p style="margin:0;">The scheme is called <strong>voluntary continued enrollment</strong>. It holds your premium at <strong>employee-level</strong> for <strong>up to 36 months</strong> after leaving work.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Why premiums rise after retiring</h2>
        <p>Because the <strong>calculation method changes completely</strong>.</p>
        <ul>
          <li><strong>Employee subscriber</strong> — the rate applies to <strong>salary only</strong>, and the <strong>employer pays half</strong>.</li>
          <li><strong>Regional subscriber</strong> — <strong>property, land and vehicles</strong> count alongside income, and <strong>you pay it all</strong>.</li>
        </ul>
        <p>So a <strong>retiree who owns a home</strong> can face a large bill with zero income — larger still with severance or pension income.</p>

        <h2>Voluntary continued enrollment — three years of cover</h2>
        <ul>
          <li>Based on the National Health Insurance Act, it lets you keep paying <strong>employee-level premiums</strong> after leaving work.</li>
          <li><strong>Property and vehicles aren't counted</strong> — that's the core benefit.</li>
          <li>It lasts <strong>up to 36 months</strong> and <strong>cannot be extended</strong>.</li>
          <li>Without the employer's half it can exceed what you paid while employed, but it's <strong>usually still cheaper than regional status</strong>.</li>
        </ul>

        <div class="callout">
          <p style="margin:0;"><strong>⚠️ The deadline is short.</strong> Apply <strong>within two months of the first regional premium's due date</strong>. Miss it and regional status is locked in. There's also a requirement to have held employee status for a qualifying period in the 18 months before leaving — so <strong>call the service (1577-1000) right after retiring.</strong></p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>The other option — dependent registration</h2>
        <p>If a spouse or child is an <strong>employee subscriber</strong>, you may register as their <strong>dependent</strong> — with a premium of <strong>zero</strong>.</p>
        <ul>
          <li>Income and asset conditions apply, so significant pension income or assets can disqualify you.</li>
          <li>These conditions have tightened over time — <strong>confirm the current standard</strong> with the service.</li>
          <li><strong>Dependent status is first choice</strong>; voluntary continued enrollment is second.</li>
        </ul>

        <h2>Steps after retiring</h2>
        <ol>
          <li>Check whether <strong>dependent registration</strong> is possible (zero premium)</li>
          <li>If not, <strong>apply for voluntary continued enrollment</strong> — immediately, given the deadline</li>
          <li><strong>Set up automatic payment</strong> — one missed payment can end eligibility</li>
          <li><strong>Plan for month 37</strong> — revisit dependent status or employment then</li>
        </ol>

        <h2>Watch-outs</h2>
        <ul>
          <li><strong>Late payment ends eligibility</strong> immediately, switching you to regional status. Automate it.</li>
          <li><strong>Once you withdraw, you cannot reapply.</strong></li>
          <li>Returning to work or becoming a dependent simply changes your status — <strong>no penalty</strong>.</li>
          <li><strong>Rising pension income</strong> can affect regional premiums or dependent eligibility — factor it into <a href="https://info-life.net/en/pension-early-vs-deferred.html">when you claim</a>.</li>
        </ul>

        <h2>FAQ</h2>
        <h3>How much can I save?</h3>
        <p>The more property you hold, the bigger the gap — especially with <strong>a home in your name</strong>. Ask the service (1577-1000) for both figures to compare.</p>
        <h3>What if I earn income during the three years?</h3>
        <p>Re-employment moves you to employee status; if you leave again, you can use the <strong>remaining months</strong>.</p>
        <h3>What happens after 36 months?</h3>
        <p>You switch to <strong>regional status automatically</strong>. Recheck dependent eligibility at that point.</p>

        <blockquote>Post-retirement premiums are a classic case of paying more simply for not knowing. Make that phone call the week you retire.</blockquote>

        <p>This is general information, not tax or financial advice. Requirements and deadlines can change — confirm with the National Health Insurance Service (1577-1000).</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>How to Read a Korean Property Register — 5 Minutes That Prevent Fraud</title>
      <link>https://info-life.net/en/property-register-guide.html</link>
      <guid isPermaLink="true">https://info-life.net/en/property-register-guide.html</guid>
      <category>Real Estate</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Just three sections. How to read the maximum claim amount and the entries that mean stop.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/property-register-guide.webp" alt="How to Read a Korean Property Register — 5 Minutes That Prevent Fraud"><br>        <p>Whether it's jeonse or a purchase, there's <strong>one document you must read before signing</strong>: the <strong>property register (등기부등본)</strong>. Anyone can pull it from Korea's Internet Registry Office for a few hundred won — yet nobody teaches you how to read it.</p>

        <p>Learn the structure and it takes five minutes. Those five minutes <strong>filter out most fraud and bad listings.</strong></p>

        <div class="callout">
          <p style="margin:0;">The register has three parts: <strong>description, section A (갑구) and section B (을구)</strong>. The description says <strong>what</strong> the property is, section A says <strong>who owns it</strong>, and section B says <strong>how much debt is on it</strong>.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>① Description — is this the right property?</h2>
        <ul>
          <li>Does the <strong>address and unit number</strong> exactly match the place you're renting or buying?</li>
          <li>Is the <strong>floor area</strong> the same as advertised?</li>
          <li><strong>Use classification</strong> — if it says "neighborhood living facility" rather than housing, it may not be residential, which can block jeonse loans and guarantee insurance.</li>
        </ul>

        <h2>② Section A — ownership and red flags</h2>
        <ul>
          <li>Is the <strong>current owner</strong> the person you're contracting with? Check against their ID.</li>
          <li><strong>When did they buy it?</strong> A very recent purchase paired with a below-market jeonse deserves a second look.</li>
          <li><strong>Warning entries</strong> — provisional attachment, seizure, injunction, auction commencement or <strong>trust</strong>. Any of these means stop and consult a professional.</li>
        </ul>
        <div class="callout">
          <p style="margin:0;">A <strong>trust registration</strong> is especially risky: ownership sits with the trust company, so a contract signed with the nominal owner <strong>without the trustee's consent may not protect you.</strong></p>
        </div>

        <h2>③ Section B — how much debt is attached</h2>
        <p>Rights other than ownership — mainly <strong>mortgages</strong>. For jeonse this is the critical section.</p>
        <ul>
          <li>Look at the <strong>maximum claim amount</strong>. It isn't the actual loan — it's typically set at <strong>110–130% of it</strong>. A figure of ₩130M often means a real loan near ₩100M.</li>
          <li>Rule of thumb: <strong>(maximum claim + your deposit) at 70% or less of market value</strong> is relatively safe. Above 80%, an auction may not return your full deposit.</li>
          <li><strong>Priority order matters</strong> — earlier rights get paid first.</li>
        </ul>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>How to get one</h2>
        <ol>
          <li>Go to the <strong>Internet Registry Office</strong> (iros.go.kr) — <strong>no owner consent needed</strong></li>
          <li>Search by address and view or issue (a few hundred to about ₩1,000)</li>
          <li>Choose the version <strong>including cancelled entries</strong> to see history — repeated seizures that were later removed are worth noting</li>
        </ol>
        <div class="callout">
          <p style="margin:0;"><strong>Timing is everything.</strong> Check it <strong>twice</strong>: before signing, and <strong>right before paying the balance</strong>. Landlords have been known to take out new loans in between. See the <a href="https://info-life.net/en/jeonse-contract-checklist.html">jeonse contract checklist</a> for the protective clauses.</p>
        </div>

        <h2>Stop the deal if</h2>
        <ul>
          <li>Section A shows <strong>attachment or auction commencement</strong></li>
          <li>There's a <strong>trust registration</strong> and the agent's explanation is vague</li>
          <li>Maximum claim plus your deposit exceeds <strong>80% of market value</strong></li>
          <li>The registered owner <strong>isn't the person signing</strong>, without a power of attorney and seal certificate</li>
        </ul>

        <h2>FAQ</h2>
        <h3>Which version should I request?</h3>
        <p>The full certificate (전부증명서). Before signing, that's the one to read.</p>
        <h3>Do I need the owner's permission?</h3>
        <p>No — <strong>anyone can view or issue it.</strong></p>
        <h3>Is any mortgage a dealbreaker?</h3>
        <p>No. Most homes carry loans. What matters is the <strong>ratio to market value</strong>.</p>

        <blockquote>One document tells you 80% of whether a property is safe. Read it twice — before signing and before the balance payment.</blockquote>

        <p>This is general information, not legal advice. If the rights on the register are unclear, consult a legal professional before signing.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Korean Agent Commissions Are a Ceiling, Not a Fixed Price</title>
      <link>https://info-life.net/en/brokerage-fee-guide.html</link>
      <guid isPermaLink="true">https://info-life.net/en/brokerage-fee-guide.html</guid>
      <category>Real Estate</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>How the transaction amount is calculated, why you can negotiate, and what agents cannot charge.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/brokerage-fee-guide.webp" alt="Korean Agent Commissions Are a Ceiling, Not a Fixed Price"><br>        <p>The last figure you face after a deal closes: the <strong>agent's commission</strong>. "Is this the normal amount?" — awkward to ask. The short answer: <strong>what the law sets is a ceiling, and you can negotiate below it.</strong></p>

        <div class="callout">
          <p style="margin:0;"><strong>Commission = transaction amount × maximum rate</strong> (some brackets also carry a cap). Rates are set by <strong>city/province ordinance</strong>, so check the table for your area before signing.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>First, the "transaction amount"</h2>
        <p>For a purchase it's the price. For <strong>monthly rent there's a conversion formula</strong>:</p>
        <ul>
          <li><strong>Jeonse</strong> — the deposit is the transaction amount</li>
          <li><strong>Monthly rent</strong> — <strong>deposit + (monthly rent × 100)</strong></li>
          <li>If that total is <strong>under ₩50M</strong>, recalculate as <strong>deposit + (monthly rent × 70)</strong></li>
          <li><strong>Pre-sale rights</strong> — (amount paid to date + premium) × rate</li>
        </ul>
        <p>So a ₩10M deposit with ₩500,000 monthly rent gives ₩10M + ₩50M = <strong>₩60M</strong>.</p>

        <h2>What "maximum" really means</h2>
        <p>The published figure is a <strong>ceiling</strong>. You are legally free to <strong>agree on less</strong>, and many deals do.</p>
        <ul>
          <li>Negotiate <strong>before signing</strong>, not on the day you pay the balance.</li>
          <li>Using the <strong>same agent for both sides</strong>, or a quick sale, sometimes creates room.</li>
          <li>VAT depends on whether the agent is a general or simplified taxpayer — <strong>confirm the total.</strong></li>
        </ul>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>What they cannot charge</h2>
        <p>Licensed agents may not take <strong>money beyond the commission and actual expenses.</strong></p>
        <ul>
          <li>Separate charges for <strong>drafting the contract</strong> or <strong>arranging a loan</strong> are violations.</li>
          <li><strong>Actual expenses</strong> (such as certificate fees) may be charged only when you requested them.</li>
          <li>Charging above the ceiling exposes the agent to <strong>administrative and criminal penalties</strong>.</li>
        </ul>

        <h2>Always take a receipt</h2>
        <ul>
          <li>Request a <strong>cash receipt or tax invoice</strong> — commissions qualify.</li>
          <li>The receipt later counts as a <strong>deductible expense for capital gains tax</strong> (see the <a href="https://info-life.net/en/one-house-capital-gains-tax.html">capital gains guide</a>).</li>
          <li>In other words, <strong>skipping the receipt costs you at tax time.</strong></li>
        </ul>

        <h2>If you were overcharged</h2>
        <ol>
          <li>Collect evidence — contract, receipt, messages</li>
          <li>Request a refund from the agent</li>
          <li>If unresolved, file a complaint with your <strong>district office</strong></li>
          <li>The Ministry of Land's transaction report center and the realtors' association dispute mediation are also options</li>
        </ol>

        <h2>FAQ</h2>
        <h3>Where do I find the rate table?</h3>
        <p>On your <strong>city or province website</strong>, the realtors' association regional tables, or Ministry of Land guidance. Rates vary by ordinance.</p>
        <h3>Do I pay if the deal falls through?</h3>
        <p>In principle commission arises only when a contract is concluded — though disputes can arise if the buyer or seller caused the collapse.</p>
        <h3>What about renewing a jeonse contract?</h3>
        <p>Renewing directly with the landlord without an agent means no commission.</p>

        <blockquote>The commission is a ceiling, not a fixed price. Confirm the total and get a receipt before you sign.</blockquote>

        <p>This is general information, not legal advice. Rates and rules vary by local ordinance and change over time — check with your local government before signing.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Jeonse vs. Monthly Rent — Run the Numbers and the Answer Appears</title>
      <link>https://info-life.net/en/jeonse-vs-monthly-rent.html</link>
      <guid isPermaLink="true">https://info-life.net/en/jeonse-vs-monthly-rent.html</guid>
      <category>Real Estate</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Compare two figures: the conversion rate and your loan rate.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/jeonse-vs-monthly-rent.webp" alt="Jeonse vs. Monthly Rent — Run the Numbers and the Answer Appears"><br>        <p>Every apartment search hits the same fork: <strong>jeonse or monthly rent?</strong> Some swear jeonse always wins; others say monthly rent makes more sense now. The answer comes out <strong>when you run the numbers.</strong></p>

        <div class="callout">
          <p style="margin:0;">The comparison is one question: is the <strong>interest you'd earn (or pay) on the jeonse deposit</strong> bigger or smaller than <strong>the rent you'd hand over</strong>?</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>The key number: conversion rate</h2>
        <div class="callout">
          <p style="margin:0;"><strong>Conversion rate (%) = (monthly rent × 12) ÷ (jeonse deposit − rental deposit) × 100</strong></p>
        </div>
        <p><strong>Example</strong> — a ₩300M jeonse home offered at ₩100M deposit plus ₩800,000 monthly:<br>
        (800,000 × 12) ÷ (300M − 100M) × 100 = <strong>4.8% per year</strong></p>
        <p>Compare that 4.8% with <strong>your loan rate or deposit rate</strong> and the decision follows.</p>

        <h2>How to read it</h2>
        <ul>
          <li><strong>Conversion rate &gt; your loan rate</strong> → <strong>jeonse wins.</strong> Even paying loan interest costs less than the rent.</li>
          <li><strong>Conversion rate &lt; savings rate</strong> → <strong>monthly rent wins.</strong> Park the deposit and let interest cover the rent.</li>
          <li>Generally, a conversion rate above prevailing loan rates favors jeonse.</li>
        </ul>
        <p>Run your actual jeonse loan interest in the <a href="https://info-life.net/en/loan-calculator.html">loan calculator</a> and compare it directly with the rent.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>What the numbers miss</h2>
        <h3>The downside of jeonse</h3>
        <ul>
          <li><strong>Deposit recovery risk</strong> — the big one. <a href="https://info-life.net/en/property-register-guide.html">Reading the property register</a> and guarantee insurance are essential.</li>
          <li><strong>A large sum is locked up</strong>, unavailable for anything else.</li>
          <li>With a loan, you also carry <strong>interest-rate risk</strong>.</li>
        </ul>
        <h3>The upside of monthly rent</h3>
        <ul>
          <li><strong>No large sum tied up</strong>, and moving is easier.</li>
          <li>A smaller deposit means <strong>less at risk</strong>.</li>
          <li>Qualifying tenants can claim a <strong>monthly rent tax credit</strong>.</li>
        </ul>

        <h2>Add taxes and deductions</h2>
        <ul>
          <li><strong>Monthly rent</strong> — qualifying employees without a home can claim a <strong>rent tax credit</strong>, lowering the real cost.</li>
          <li><strong>Jeonse</strong> — a jeonse loan can qualify for a <strong>deduction on principal and interest repayments</strong>.</li>
        </ul>
        <p>So compare <strong>after tax</strong>, not just raw interest.</p>

        <h2>By situation</h2>
        <ul>
          <li><strong>Have the cash and staying a while</strong> → jeonse often wins (verify safety first).</li>
          <li><strong>No lump sum or moving soon</strong> → monthly rent is more flexible.</li>
          <li><strong>Deposit looks high versus market value</strong> → a hybrid (semi-jeonse) can lower the risk.</li>
        </ul>

        <h2>FAQ</h2>
        <h3>Can landlords set any conversion rate?</h3>
        <p>Legal caps apply when converting an existing contract, though <strong>new contracts follow the market.</strong></p>
        <h3>What about semi-jeonse?</h3>
        <p>It splits the burden between deposit and monthly outgo. Use the formula above to see which mix wins.</p>
        <h3>Isn't jeonse dangerous?</h3>
        <p>The risk lies in the specific property, not the structure. Register checks, guarantee insurance and the <a href="https://info-life.net/en/jeonse-contract-checklist.html">contract checklist</a> cut it sharply.</p>

        <blockquote>Jeonse versus monthly rent isn't taste — it's arithmetic. Compare the conversion rate with your loan rate and the answer appears.</blockquote>

        <p>This is general information, not investment or legal advice. Rates and market prices shift and deduction eligibility varies — confirm before signing.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Korea&#x27;s National Pension in 2026 — What Changed, What You&#x27;ll Get</title>
      <link>https://info-life.net/en/national-pension-guide.html</link>
      <guid isPermaLink="true">https://info-life.net/en/national-pension-guide.html</guid>
      <category>Retirement</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Contributions up to 9.5%, replacement rate fixed at 43%, and how to check your own estimate.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/national-pension-guide.webp" alt="Korea&#x27;s National Pension in 2026 — What Changed, What You&#x27;ll Get"><br>        <p>That deduction from every paycheck: <strong>national pension</strong>. "Will I actually get it?" "How much?" Worth knowing — especially since <strong>the system changed significantly in 2026.</strong></p>

        <div class="callout">
          <p style="margin:0;"><strong>What changed in 2026</strong> — ① the contribution rate rose from 9% to <strong>9.5%</strong> (climbing 0.5%p a year to <strong>13% by 2033</strong>) ② the income replacement rate was <strong>fixed at 43%</strong> (it had been scheduled to fall to 40%) ③ the <strong>state's payment guarantee</strong> is now written into law.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>What you pay</h2>
        <p>The rate is <strong>9.5% of your standard monthly income</strong> in 2026. Employees <strong>split it with the employer</strong>, so your share is 4.75%. Self-employed members pay the full amount.</p>
        <p>By 2033 the rate reaches 13%, making an employee's share 6.5%.</p>

        <h2>What you'll receive</h2>
        <ul>
          <li>The <strong>43% replacement rate</strong> means 40 years of contributions yield 43% of your lifetime average income as pension.</li>
          <li>⚠️ Important: <strong>43% applies only to periods from January 1, 2026</strong> onward. Earlier periods keep their original terms.</li>
          <li>Existing pensioners keep their previous basis, with <strong>annual inflation adjustments</strong>.</li>
        </ul>
        <div class="callout">
          <p style="margin:0;"><strong>Check your own estimate</strong> at the National Pension Service (<strong>nps.or.kr</strong>) under "내 연금 알아보기," or in the NPS mobile app. It takes seconds and is the most accurate source.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>When payments start</h2>
        <ul>
          <li>The eligibility age is <strong>63 now</strong>, rising in stages to <strong>65 from 2033</strong>, depending on birth year.</li>
          <li>You need <strong>at least 10 years (120 months)</strong> of contributions. Fall short and you receive a <strong>lump-sum refund</strong> instead.</li>
          <li><strong>Early claiming</strong> is possible up to five years early, but reduces payments by <strong>6% per year — permanently.</strong> Five years early means 30% less for life.</li>
        </ul>

        <h2>Ways to increase your pension</h2>
        <ul>
          <li><strong>Retroactive payment</strong> — pay contributions for periods missed during unemployment or business closure to have them counted.</li>
          <li><strong>Repaying a past lump sum</strong> — return a refund you took earlier, with interest, to restore that period. Older, <strong>higher replacement rates</strong> can apply, which may help.</li>
          <li><strong>Voluntary continued enrollment</strong> — keep paying past 60 to reach 10 years or raise your amount.</li>
          <li><strong>Credits</strong> — childbirth, military service and unemployment periods can count. From <strong>2026 the childbirth credit starts from the first child</strong> with 12 months granted.</li>
        </ul>

        <h2>FAQ</h2>
        <h3>What if the fund runs out?</h3>
        <p>The reform wrote the <strong>state's payment guarantee into law</strong>, and the government expects the projected depletion date to be pushed back.</p>
        <h3>Do the new rates apply to what I already paid?</h3>
        <p>No — the new contribution and replacement rates apply <strong>from January 1, 2026 onward</strong>.</p>
        <h3>Is national pension alone enough?</h3>
        <p>The 43% figure assumes <strong>40 years of contributions</strong>, which few reach. Pairing it with workplace and private pensions is more realistic (see the <a href="https://info-life.net/en/pension-irp-tax-credit.html">pension savings and IRP guide</a>).</p>
        <h3>Is the estimate before tax?</h3>
        <p>Yes — the figure shown is <strong>pre-tax</strong>; pension income tax applies on receipt.</p>

        <blockquote>The question isn't whether you'll receive it, but how much you've built up. Spend five minutes checking your estimate today.</blockquote>

        <p>This is general 2026 information, not financial or legal advice. Rules change and individual amounts depend on your contribution history — confirm with the National Pension Service.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>DB vs. DC Retirement Pensions in Korea — Which Should You Pick?</title>
      <link>https://info-life.net/en/retirement-pension-db-dc.html</link>
      <guid isPermaLink="true">https://info-life.net/en/retirement-pension-db-dc.html</guid>
      <category>Retirement</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Does the company invest it, or do you? Plus how IRP fits in.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/retirement-pension-db-dc.webp" alt="DB vs. DC Retirement Pensions in Korea — Which Should You Pick?"><br>        <p>Ever been asked at work, <strong>"DB or DC for your retirement pension?"</strong> and picked one at random? That choice can meaningfully change <strong>what you walk away with.</strong></p>

        <div class="callout">
          <p style="margin:0;">In one line — <strong>DB: the company invests and you get a set formula amount</strong>; <strong>DC: you invest and the outcome is yours.</strong></p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>DB (defined benefit)</h2>
        <ul>
          <li>The company <strong>manages and bears the risk</strong>.</li>
          <li>Your payout is <strong>final average wage × years of service</strong>, regardless of investment results.</li>
          <li>Better when <strong>wage growth is strong</strong> or a promotion is coming — a higher final salary means a bigger payout.</li>
          <li>Nothing to manage, but also no way to grow it.</li>
        </ul>

        <h2>DC (defined contribution)</h2>
        <ul>
          <li>The company deposits <strong>at least one-twelfth of your annual wages</strong> into your account each year, and <strong>you</strong> invest it.</li>
          <li>Good results grow your payout; bad results shrink it. <strong>Losses are possible.</strong></li>
          <li>Better when <strong>wage growth is limited</strong>, under a wage-peak system, or if you'll actually manage it.</li>
          <li>You can make <strong>additional contributions</strong>, which qualify for tax credits.</li>
        </ul>

        <div class="callout">
          <p style="margin:0;"><strong>The common mistake:</strong> leaving a DC account parked entirely in <strong>principal-guaranteed deposits</strong>. It can fail to keep pace with inflation. Piling into risky assets is equally unwise — <strong>allocate to your own risk tolerance.</strong></p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Where IRP fits</h2>
        <p>An <strong>IRP</strong> is an account <strong>you open yourself</strong>.</p>
        <ul>
          <li>It's the <strong>vessel that receives your severance</strong> when you change jobs or retire.</li>
          <li>You can add contributions while employed, with <strong>tax credits up to ₩9M combined with pension savings</strong>.</li>
          <li>You manage the investments, and taking it as a pension after 55 attracts <strong>lower pension income tax</strong>.</li>
        </ul>
        <p>See the <a href="https://info-life.net/en/pension-irp-tax-credit.html">pension savings and IRP guide</a> for the tax details.</p>

        <h2>When you leave a job</h2>
        <ul>
          <li>Severance is generally <strong>paid into an IRP</strong> — open one in advance.</li>
          <li>Taking it as a <strong>lump sum triggers severance tax</strong>, while <strong>receiving it as a pension cuts that tax by roughly 30–40%</strong>. If you can wait, the pension route wins.</li>
          <li>If you change jobs often, <strong>consolidating in an IRP</strong> is simpler and more tax-efficient.</li>
        </ul>
        <p>Estimate your severance with the <a href="https://info-life.net/en/severance-calculator.html">severance calculator</a>.</p>

        <h2>FAQ</h2>
        <h3>Can I switch from DB to DC?</h3>
        <p>Sometimes, depending on company rules — but <strong>switching back from DC to DB is usually not possible.</strong> Decide carefully.</p>
        <h3>What if my employer goes under?</h3>
        <p>Retirement pension funds are <strong>held externally at a financial institution</strong>, separate from the company — that's the point of the system.</p>
        <h3>Can I withdraw early?</h3>
        <p>Only for <strong>legally specified reasons</strong>, such as buying a first home.</p>
        <h3>I don't know where my pension is.</h3>
        <p>The Financial Supervisory Service's integrated pension portal shows all your pension accounts in one place.</p>

        <blockquote>DB or DC is about who does the investing. Strong wage growth points to DB; confidence in managing it points to DC.</blockquote>

        <p>This is general information, not investment advice. Rules, taxes and company policies vary — check with your HR team and provider.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Can Your Parents Get Korea&#x27;s Basic Pension? (2026)</title>
      <link>https://info-life.net/en/basic-pension-guide.html</link>
      <guid isPermaLink="true">https://info-life.net/en/basic-pension-guide.html</guid>
      <category>Retirement</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Eligible under 2.47M won single or 3.95M won couple. You must apply — and late applications aren&#x27;t backdated.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/basic-pension-guide.webp" alt="Can Your Parents Get Korea&#x27;s Basic Pension? (2026)"><br>        <p>As a parent nears 65 in Korea, the question comes up: <strong>"Have you applied for the basic pension?"</strong> It's easy to confuse with the national pension, but it's an entirely different scheme — <strong>you can receive it without ever paying a contribution.</strong></p>

        <div class="callout">
          <p style="margin:0;"><strong>2026 figures</strong> — aged 65+ with <strong>recognized income of ₩2.47M or less monthly for a single household, or ₩3.952M for a couple</strong>. The standard payment is <strong>up to ₩349,700 per month</strong>.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>How it differs from the national pension</h2>
        <ul>
          <li><strong>National pension</strong> — <strong>social insurance</strong> based on your own contributions, requiring 10+ years.</li>
          <li><strong>Basic pension</strong> — a <strong>welfare benefit funded by taxes</strong>, available with no contribution history if you meet income and asset tests.</li>
        </ul>
        <p>You can receive <strong>both</strong>, though a large national pension may reduce the basic pension somewhat.</p>

        <h2>2026 eligibility</h2>
        <ul>
          <li><strong>Age</strong> — 65 or older. In 2026, those born in <strong>1961</strong> become newly eligible.</li>
          <li><strong>Recognized income</strong> — <strong>₩2.47M</strong> monthly for a single household, <strong>₩3.952M</strong> for a couple<br>(up ₩190,000, about 8.3%, from 2025)</li>
          <li>Korean nationality and residence in Korea</li>
        </ul>
        <div class="callout">
          <p style="margin:0;"><strong>The threshold rises each year.</strong> If a parent was rejected before, <strong>it's worth reapplying</strong> — the 2026 figure is 8.3% higher than 2025.</p>
        </div>

        <h2>"Recognized income" is the crux</h2>
        <p>It isn't just salary. It combines <strong>income plus assets converted into a monthly income figure</strong>.</p>
        <ul>
          <li><strong>Income</strong> — employment, business and pension income, with deductions applied to earned income.</li>
          <li><strong>Assets</strong> — housing, land and financial assets <strong>converted to monthly income</strong>, with debts subtracted.</li>
          <li><strong>Basic asset deductions</strong> differ by region (large city, small city, rural).</li>
        </ul>
        <p>It's too complex to judge yourself — use the <strong>basic pension simulator</strong> on Bokjiro (bokjiro.go.kr) first.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>You must apply — it isn't automatic</h2>
        <ul>
          <li><strong>Timing</strong> — from <strong>one month before</strong> the month of the 65th birthday.</li>
          <li><strong>⚠️ No backdating.</strong> Months that pass before you apply are lost, so <strong>apply a month ahead.</strong></li>
          <li><strong>Where</strong> — regardless of address: ① community service center ② National Pension Service branch ③ Bokjiro online.</li>
          <li>For those with mobility difficulties, the NPS offers a <strong>home visit service</strong> (call 1355).</li>
          <li><strong>Bring</strong> — ID, bank account details, income and asset declaration, financial information consent form.</li>
        </ul>

        <h2>How much is paid</h2>
        <p>The 2026 standard amount is <strong>up to ₩349,700 monthly</strong> — though <strong>not everyone receives the maximum</strong>:</p>
        <ul>
          <li><strong>Couples both receiving</strong> get <strong>20% less</strong> each</li>
          <li>A <strong>large national pension</strong> can reduce the amount</li>
          <li>Recognized income near the threshold may mean a <strong>partial</strong> payment</li>
        </ul>

        <h2>FAQ</h2>
        <h3>Does owning a home disqualify you?</h3>
        <p>No. Housing is <strong>converted into the asset calculation</strong>, with basic deductions applied. Many recipients own homes.</p>
        <h3>Can you receive it alongside the national pension?</h3>
        <p>Yes, though the basic pension may be adjusted based on the national pension amount.</p>
        <h3>Do children's incomes count?</h3>
        <p>Assessment is based on the <strong>applicant and spouse</strong>.</p>
        <h3>Can you reapply after being rejected?</h3>
        <p>Yes. <strong>Thresholds rise annually</strong> and circumstances change, so reapplying later is worthwhile.</p>

        <blockquote>The basic pension only arrives if you apply. Mark the calendar one month before a parent's 65th birthday.</blockquote>

        <p>This is general 2026 information. Thresholds and amounts are set annually and depend on individual circumstances — check the Bokjiro simulator or call the National Pension Service at 1355.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
    <item>
      <title>Your July Property Tax Bill in Korea — Why That Amount? (2026)</title>
      <link>https://info-life.net/en/property-tax-guide.html</link>
      <guid isPermaLink="true">https://info-life.net/en/property-tax-guide.html</guid>
      <category>Real Estate</category>
      <pubDate>Tue, 21 Jul 2026 09:00:00 +0900</pubDate>
      <description>Whoever owns it on June 1 pays the full year. How it&#x27;s calculated, single-home relief and how to pay.</description>
      <content:encoded><![CDATA[<img src="https://info-life.net/images/property-tax-guide.webp" alt="Your July Property Tax Bill in Korea — Why That Amount? (2026)"><br>        <p>Every July the bill arrives without fail: <strong>property tax</strong>. And with it the questions — "why is mine this high?", "why did it go up?" Here's how it's calculated and how to pay it in Korea.</p>

        <div class="callout">
          <p style="margin:0;"><strong>Three sentences</strong> — ① Whoever <strong>owns the property on June 1</strong> pays the full year's tax. ② Housing tax is <strong>split in half across July and September</strong>. ③ The amount is <strong>published price × fair market ratio × rate</strong>.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>Why June 1 matters so much</h2>
        <p>The assessment date is <strong>June 1 each year</strong>. Whoever is the registered owner that day owes <strong>the entire year's tax</strong> — regardless of whether they live there or how long they've held it.</p>
        <ul>
          <li><strong>Sold on May 31</strong> → the <strong>buyer</strong> pays that year's tax.</li>
          <li><strong>Bought on June 2</strong> → the <strong>seller</strong> pays it.</li>
        </ul>
        <p>So for a May–June transaction, <strong>which side of June 1 the closing date falls on</strong> is real money.</p>

        <h2>Payment periods (2026)</h2>
        <ul>
          <li><strong>Housing, 1st installment</strong> — July 16–31 (half the annual amount)</li>
          <li><strong>Housing, 2nd installment</strong> — September 16–30 (the other half)</li>
          <li><strong>Buildings (shops etc.)</strong> — once in July</li>
          <li><strong>Land</strong> — once in September</li>
        </ul>
        <div class="callout">
          <p style="margin:0;">Miss the deadline by even a day and a <strong>3% penalty</strong> applies, with further monthly additions on larger bills. Don't let it slip.</p>
        </div>

        <div class="ad-slot">Ad space — ads appear here after approval</div>

        <h2>How the tax is figured</h2>
        <ol>
          <li><strong>Published price</strong> — a government-assessed value, typically 60–70% of market price (not the sale price)</li>
          <li><strong>× fair market value ratio</strong> — generally <strong>60%</strong> for housing, with a <strong>43–45% special ratio for single-home households</strong>. Land and buildings use 70%.</li>
          <li><strong>× rate</strong> — <strong>0.1–0.4%</strong> progressive for housing. A single-home household with a published price of ₩900M or less gets a <strong>0.05–0.35% special rate</strong>.</li>
        </ol>
        <p>So single-home households benefit <strong>twice</strong> — lower ratio and lower rate. It applies automatically, but <strong>check your bill to confirm it was reflected.</strong></p>

        <h2>The cap that limits sudden jumps</h2>
        <p>A <strong>tax burden cap</strong> prevents your bill from rising beyond a set share of last year's:</p>
        <ul>
          <li>Published price up to ₩300M — <strong>105%</strong></li>
          <li>₩300M–600M — <strong>110%</strong></li>
          <li>Over ₩600M — <strong>130%</strong></li>
        </ul>

        <h2>How to pay</h2>
        <ul>
          <li><strong>Wetax</strong> (wetax.go.kr), or <strong>Etax</strong> in Seoul. Banks, phone and apps also work.</li>
          <li><strong>Local taxes carry no credit-card fee.</strong> Card interest-free installment promotions can spread the cost.</li>
          <li>Bills over <strong>₩2.5M can be paid in installments</strong>.</li>
          <li>No bill? Check Wetax directly — <strong>penalties apply even if the notice never reached you.</strong></li>
        </ul>

        <h2>FAQ</h2>
        <h3>I'm mid-sale — who pays?</h3>
        <p>The <strong>owner as of June 1</strong>. Ownership transfers on the closing (balance) date, so check the timing.</p>
        <h3>Where do I find the published price?</h3>
        <p>On the official real estate price disclosure site, which also runs an objection period.</p>
        <h3>Is this the same as the comprehensive real estate tax?</h3>
        <p>No. Property tax is a <strong>local tax</strong> on all owners; the comprehensive real estate tax is a <strong>national tax</strong> billed separately in November–December above certain thresholds.</p>
        <h3>Do I pay if the place is rented out?</h3>
        <p>Yes — property tax falls on the <strong>owner</strong>, not the tenant.</p>

        <blockquote>Property tax comes down to "who owned it on June 1." For a spring sale, one day around that date can shift a whole year's bill.</blockquote>

        <p>This is general information, not tax advice. Rates, ratios and reductions vary by local ordinance and reform — confirm your actual bill on Wetax or with your local office.</p>

        <div class="ad-slot">Ad space — ads appear here after approval</div>
]]></content:encoded>
    </item>
  </channel>
</rss>
