
:root{
 --bg:#f8fafc;
 --surface:#ffffff;
 --ink:#1f2933;
 --text:#52606d;
 --muted:#7b8793;
 --line:#e7edf2;
 --blue:#1e8fff;
 --blue-dark:#3b7ea7;
 --blue-soft:#eef8ff;
 --green:#3e7a67;
 --green-soft:#eff8f4;
 --shadow:0 16px 44px rgba(55,92,116,.06);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
 margin:0;
 background:linear-gradient(180deg,#ffffff 0%,#f8fafc 100%);
 color:var(--ink);
 font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","SF Pro Text","Helvetica Neue","Segoe UI",Arial,sans-serif;
 -webkit-font-smoothing:antialiased;
 line-height:1.5;
}

.site-stage-banner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:9px 18px;
  border-bottom:1px solid #DCE5F2;
  background:#F5F9FF;
  color:#3E536B;
  font-size:12px;
  line-height:1.45;
  text-align:center;
}
.site-stage-banner b{color:#2369B1}
.site-stage-banner span{color:#637487}
@media (max-width:720px){
  .site-stage-banner{display:grid;gap:2px;padding:8px 14px;font-size:11px}
}
a{text-decoration:none;color:inherit}
button,input,select,textarea{font:inherit}
.container{width:min(1180px,calc(100% - 40px));margin:auto}

/* Header */
.utility{display:none}
.header{
 position:sticky;top:0;z-index:40;
 background:rgba(255,255,255,.92);
 backdrop-filter:blur(18px);
 border-bottom:1px solid rgba(231,237,242,.88)
}
.header-inner{height:70px;display:flex;align-items:center;justify-content:space-between;gap:22px}
.brand{display:flex;align-items:center;gap:9px;flex-shrink:0}
.brand svg{width:37px;height:37px}
.brand-name{font-size:21px;font-weight:690;letter-spacing:-.04em}
.brand-name span{font-weight:520;color:#6f7b86}
.nav{display:flex;gap:22px;color:#5b6975;font-size:14px}
.nav a:hover{color:#1e8fff}
.actions{display:flex;gap:9px}
.btn{
 display:inline-flex;align-items:center;justify-content:center;
 min-height:42px;padding:0 17px;border-radius:999px;
 border:1px solid var(--line);background:#fff;color:#31404b;font-size:14px;font-weight:620
}
.btn.primary,.btn.blue{background:var(--blue);border-color:var(--blue);color:#fff}
.btn.soft{background:var(--blue-soft);border-color:#dceef9;color:#3579a2}
.btn.small{min-height:36px;padding:0 13px;font-size:13px}

/* Hero */
.hero{padding:76px 0 34px}
.hero-grid{display:grid;grid-template-columns:1.02fr .98fr;gap:48px;align-items:center}
.eyebrow{font-size:12px;font-weight:750;letter-spacing:.12em;text-transform:uppercase;color:#4a88ad}
.hero h1{
 font-size:clamp(46px,6vw,74px);line-height:1.02;letter-spacing:-.058em;
 margin:14px 0 17px;font-weight:690;color:#202830
}
.hero p{font-size:18px;max-width:700px;color:#5d6b77;margin:0}
.hero-actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:25px}
.trust-row{display:flex;gap:8px;flex-wrap:wrap;margin-top:17px}
.trust{font-size:10.5px;color:#687681;padding:6px 9px;border-radius:999px;background:#fff;border:1px solid var(--line)}
.hero-art{
 background:linear-gradient(145deg,#ffffff,#f0f9ff);
 border:1px solid #e2eef5;border-radius:36px;padding:10px;box-shadow:var(--shadow)
}
.hero-art svg{display:block;width:100%;height:auto}

/* General */
.section{padding:54px 0}
.section.tight{padding-top:30px}
.section.dark-strip{display:none}
.section-head{display:flex;align-items:end;justify-content:space-between;gap:22px;margin-bottom:20px}
.section-head h2{font-size:clamp(29px,3.5vw,46px);line-height:1.08;letter-spacing:-.044em;margin:0 0 6px}
.section-head p{font-size:14px;color:var(--muted);margin:0;max-width:730px}
.more{font-size:13px;color:#3f82aa;font-weight:650;white-space:nowrap}
.card{background:#fff;border:1px solid var(--line);border-radius:20px;box-shadow:0 8px 22px rgba(55,92,116,.035)}

/* Destinations */
.search-panel{padding:20px;background:#fff;border:1px solid var(--line);border-radius:26px;box-shadow:var(--shadow)}
.search{height:50px;border:1px solid var(--line);border-radius:15px;background:#fbfdff;padding:0 16px;display:flex;align-items:center;color:#9aa5ae}
.destinations{display:grid;grid-template-columns:repeat(4,1fr);gap:11px;margin-top:13px}
.destination{display:block;min-height:126px;padding:15px;background:#fff;border:1px solid var(--line);border-radius:18px;transition:.15s ease}
.destination:hover{transform:translateY(-2px);border-color:#cfe5f3;box-shadow:0 10px 24px rgba(55,92,116,.055)}
.flag{font-size:23px}
.destination h3{font-size:17px;margin:8px 0 3px}
.destination p{font-size:11px;color:var(--muted);margin:0}

/* Plans */
.plan-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.plan{display:block;padding:17px;background:#fff;border:1px solid var(--line);border-radius:19px}
.chip{display:inline-flex;padding:5px 8px;border-radius:999px;background:var(--green-soft);color:var(--green);font-size:10px;font-weight:720}
.chip.blue{background:var(--blue-soft);color:#3f80a7}
.plan h3{font-size:18px;margin:11px 0 3px}
.plan p{font-size:11px;color:var(--muted);margin:0}
.price{font-size:25px;font-weight:700;letter-spacing:-.04em;margin-top:12px;color:#26333c}
.price small{font-size:10px;font-weight:500;color:#6f8492}

/* Simplified feature area */
.product-trust{display:none}
.scenarios{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.scenario{padding:17px}
.icon{width:38px;height:38px;border-radius:13px;background:var(--blue-soft);color:#3b7ea7;display:grid;place-items:center;font-size:12px;font-weight:750;margin-bottom:11px}
.scenario h3{font-size:16px;margin:0 0 4px}
.scenario p{font-size:11px;color:var(--muted);margin:0}
.apps{display:none}
.feature-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.feature{padding:17px}
.feature h3{font-size:16px;margin:0 0 4px}
.feature p{font-size:11px;color:var(--muted);margin:0}

/* Steps */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.step{padding:17px;background:#fff;border:1px solid var(--line);border-radius:19px}
.step-no{width:28px;height:28px;border-radius:50%;display:grid;place-items:center;background:var(--blue-soft);color:#3d7fa7;font-size:11px;font-weight:750;margin-bottom:10px}
.step h3{font-size:16px;margin:0 0 4px}
.step p{font-size:11px;color:var(--muted);margin:0}

/* Payments */
.payment-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:10px}
.payment{padding:14px 8px;text-align:center;background:#fff;border:1px solid var(--line);border-radius:15px}
.payment strong{display:block;font-size:13px}
.payment span{font-size:9.5px;color:var(--muted)}
.notice{background:#f7fbfe;border:1px solid #deedf6;color:#5d7483;border-radius:15px;padding:12px 13px;font-size:10.5px;margin-top:12px}

/* FAQ */
.faq{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.faq details{background:#fff;border:1px solid var(--line);border-radius:15px;padding:13px 15px}
.faq summary{font-size:13px;font-weight:650;cursor:pointer}
.faq p{font-size:10.5px;color:var(--muted);margin:7px 0 0}

/* Inner pages */
.page-head{padding:54px 0 20px}
.page-head h1{font-size:clamp(37px,5vw,56px);line-height:1.05;letter-spacing:-.05em;margin:6px 0 8px}
.page-head p{font-size:13px;color:var(--muted);max-width:780px;margin:0}
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.panel{padding:20px;background:#fff;border:1px solid var(--line);border-radius:21px;box-shadow:0 10px 28px rgba(55,92,116,.04)}
.panel h3{font-size:21px;letter-spacing:-.03em;margin:0 0 6px}
.panel p{font-size:12px;color:var(--muted);margin:0}
.check-list{display:grid;gap:8px;margin-top:13px}
.check{display:flex;gap:8px;color:#596875;font-size:11.5px}.check b{color:#4b8bb0}
.option-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:8px;margin-top:12px}
.option{display:block;padding:12px;border:1px solid var(--line);border-radius:13px;background:#fff}
.option strong{display:block;font-size:14px}.option span{font-size:10px;color:var(--muted)}
.form-box{background:#fff;border:1px solid var(--line);border-radius:20px;padding:20px}
.field{display:grid;gap:5px;margin:10px 0}.field label{font-size:11px;color:#5e6c78;font-weight:650}
.field input,.field select,.field textarea{width:100%;border:1px solid var(--line);border-radius:12px;background:#fbfdff;padding:11px}
.field textarea{min-height:88px}.checkbox{display:flex;gap:7px;align-items:flex-start;font-size:10px;color:#6d7984;margin:8px 0}.checkbox input{margin-top:2px}
.status-list{display:grid;gap:8px}.status{display:grid;grid-template-columns:145px 1fr;gap:11px;padding:12px;background:#fff;border:1px solid var(--line);border-radius:14px;font-size:11.5px}
.status b{color:#437fa4}.status span{color:var(--muted)}
.info-list{display:grid}.info-row{display:flex;justify-content:space-between;gap:14px;padding:9px 0;border-bottom:1px solid var(--line);font-size:11.5px}.info-row:last-child{border-bottom:0}.info-row span{color:var(--muted)}
.prose{padding:21px;background:#fff;border:1px solid var(--line);border-radius:20px}
.prose h2{font-size:19px;margin:20px 0 6px}.prose h2:first-child{margin-top:0}
.prose p,.prose li{font-size:11.5px;color:#5e6c78}.prose ul{padding-left:18px}

/* Footer */
.footer{border-top:1px solid var(--line);margin-top:44px;padding:36px 0 30px;background:#fff}
.footer-grid{display:grid;grid-template-columns:1.2fr repeat(3,.8fr);gap:20px}
.footer h4{font-size:12px;margin:0 0 7px}
.footer a,.footer p{display:block;font-size:10.5px;color:var(--muted);margin:5px 0}
.footer-bottom{border-top:1px solid var(--line);margin-top:18px;padding-top:13px;font-size:10px;color:#9ca6ae}
.bottom-nav{display:none}

@media(max-width:980px){
 .nav{display:none}
 .hero-grid{grid-template-columns:1fr}
 .hero-art{max-width:650px}
 .destinations,.plan-grid,.scenarios,.feature-grid,.steps,.payment-grid{grid-template-columns:repeat(2,1fr)}
 .faq{grid-template-columns:1fr}
 .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:680px){
 body{padding-bottom:64px}
 .container{width:min(100% - 28px,620px)}
 .header-inner{height:60px}
 .brand svg{width:32px;height:32px}.brand-name{font-size:19px}
 .actions .btn:not(.primary){display:none}
 .actions .btn.primary{min-height:35px;padding:0 12px;font-size:12px}
 .hero{padding:31px 0 16px}
 .hero h1{font-size:clamp(36px,10.8vw,50px);margin:9px 0 10px}
 .hero p{font-size:14px}
 .hero-actions{margin-top:16px}.hero-actions .btn{min-height:38px;padding:0 12px;font-size:11.5px}
 .trust-row{margin-top:12px}.trust{font-size:9px;padding:5px 7px}
 .hero-art{border-radius:25px;padding:6px}
 .section{padding:34px 0}.section.tight{padding-top:18px}
 .section-head{align-items:flex-start;flex-direction:column;gap:6px;margin-bottom:12px}
 .section-head h2{font-size:26px}.section-head p{font-size:11.5px}
 .search-panel{padding:12px;border-radius:19px}.search{height:45px;border-radius:12px;font-size:11.5px}
 .destinations{grid-template-columns:repeat(2,1fr);gap:8px;margin-top:8px}
 .destination{min-height:108px;padding:11px;border-radius:15px}.flag{font-size:20px}.destination h3{font-size:15px;margin-top:5px}.destination p{font-size:9.5px}
 .plan-grid{grid-template-columns:1fr;gap:8px}
 .plan{padding:13px;display:grid;grid-template-columns:1fr auto;column-gap:10px;align-items:center}
 .plan .chip{grid-column:1}.plan h3{font-size:15px;margin:6px 0 2px}.plan p{font-size:9.5px}
 .plan .price{grid-column:2;grid-row:1/4;margin:0;text-align:right;font-size:19px}
 .scenarios,.feature-grid{grid-template-columns:repeat(2,1fr);gap:8px}.scenario,.feature{padding:13px}
 .icon{width:33px;height:33px;margin-bottom:8px}.scenario h3,.feature h3{font-size:14px}.scenario p,.feature p{font-size:9.5px}
 .steps{grid-template-columns:1fr;gap:7px}.step{display:grid;grid-template-columns:28px 1fr;gap:9px;padding:12px}.step-no{margin:0}.step h3{font-size:14px}.step p{font-size:9.5px}
 .payment-grid{grid-template-columns:repeat(3,1fr);gap:6px}.payment{padding:9px 5px}.payment strong{font-size:11px}.payment span{font-size:8px}
 .faq details{padding:11px 12px}.faq summary{font-size:11.5px}.faq p{font-size:9.5px}
 .page-head{padding:28px 0 13px}.page-head h1{font-size:32px}.page-head p{font-size:11px}
 .two-col{grid-template-columns:1fr}.option-grid{grid-template-columns:1fr 1fr}.panel,.form-box,.prose{padding:15px;border-radius:17px}
 .panel h3{font-size:19px}.status{grid-template-columns:1fr;gap:3px}
 .footer{padding:26px 0 22px}.footer-grid{grid-template-columns:1fr 1fr;gap:11px}.footer-grid>div:first-child{grid-column:1/-1}
 .bottom-nav{
  display:grid;position:fixed;left:0;right:0;bottom:0;z-index:60;height:60px;
  background:rgba(255,255,255,.97);backdrop-filter:blur(18px);
  border-top:1px solid var(--line);grid-template-columns:repeat(4,1fr)
 }
 .bottom-nav a{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1px;color:#6d7882;font-size:9px}
 .bottom-nav b{font-size:15px;font-weight:500}.bottom-nav a.active{color:var(--blue)}
}


/* ===== V16 TYPOGRAPHY SYSTEM =====
   Desktop hierarchy:
   Hero 48–60
   Page title 36–48
   Section title 28–38
   Card title 16
   Body 13–15
   Meta 11–12

   Mobile hierarchy:
   Hero 36–42
   Page title 30
   Section title 24
   Card title 14.5–15
   Body 11–13
*/
body{
  font-size:15px;
  line-height:1.55;
  letter-spacing:0;
}
.brand-name{
  font-size:20px;
  font-weight:650;
  letter-spacing:-.025em;
}
.nav,.btn{font-size:14px}
.eyebrow{
  font-size:11px;
  font-weight:700;
  letter-spacing:.10em;
}
.hero h1{
  font-size:clamp(44px,5.2vw,60px);
  line-height:1.06;
  letter-spacing:-.042em;
  font-weight:650;
}
.hero p{
  font-size:17px;
  line-height:1.55;
}
.trust{
  font-size:11px;
  line-height:1.2;
}
.section-head h2{
  font-size:clamp(28px,3vw,38px);
  line-height:1.14;
  letter-spacing:-.032em;
  font-weight:640;
}
.section-head p{
  font-size:14px;
  line-height:1.55;
}
.more{font-size:13px}
.search{font-size:13px}
.destination h3{
  font-size:16px;
  line-height:1.3;
  font-weight:630;
}
.destination p{
  font-size:12px;
  line-height:1.45;
}
.chip{
  font-size:10.5px;
  line-height:1.2;
}
.plan h3{
  font-size:16px;
  line-height:1.3;
  font-weight:630;
}
.plan p{
  font-size:12px;
  line-height:1.45;
}
.price{
  font-size:24px;
  line-height:1.15;
  font-weight:680;
  letter-spacing:-.025em;
}
.price small{font-size:11px}
.icon{font-size:12px}
.scenario h3,.feature h3,.step h3{
  font-size:16px;
  line-height:1.3;
  font-weight:630;
}
.scenario p,.feature p,.step p{
  font-size:12.5px;
  line-height:1.5;
}
.payment strong{
  font-size:13px;
  line-height:1.3;
}
.payment span{
  font-size:11px;
  line-height:1.35;
}
.notice{
  font-size:12px;
  line-height:1.5;
}
.faq summary{
  font-size:14px;
  line-height:1.35;
}
.faq p{
  font-size:12.5px;
  line-height:1.5;
}
.page-head h1{
  font-size:clamp(36px,4.2vw,48px);
  line-height:1.1;
  letter-spacing:-.035em;
  font-weight:650;
}
.page-head p{
  font-size:14px;
  line-height:1.55;
}
.panel h3{
  font-size:20px;
  line-height:1.25;
  letter-spacing:-.02em;
  font-weight:640;
}
.panel p{
  font-size:13px;
  line-height:1.55;
}
.check{font-size:12.5px}
.option strong{
  font-size:14px;
  line-height:1.35;
}
.option span{font-size:11.5px}
.field label{font-size:12px}
.field input,.field select,.field textarea{
  font-size:13.5px;
}
.checkbox{font-size:11.5px}
.status,.info-row{
  font-size:12.5px;
  line-height:1.5;
}
.prose h2{
  font-size:19px;
  line-height:1.3;
  font-weight:640;
}
.prose p,.prose li{
  font-size:13px;
  line-height:1.65;
}
.footer h4{font-size:12.5px}
.footer a,.footer p{
  font-size:11.5px;
  line-height:1.5;
}
.footer-bottom{font-size:10.5px}

@media(max-width:680px){
  body{
    font-size:14px;
    line-height:1.5;
  }
  .brand-name{font-size:18.5px}
  .actions .btn.primary{font-size:12.5px}
  .eyebrow{
    font-size:10.5px;
    letter-spacing:.09em;
  }
  .hero h1{
    font-size:clamp(36px,10vw,42px);
    line-height:1.08;
    letter-spacing:-.035em;
  }
  .hero p{
    font-size:15px;
    line-height:1.5;
  }
  .hero-actions .btn{font-size:12px}
  .trust{font-size:10px}
  .section-head h2{
    font-size:24px;
    line-height:1.16;
    letter-spacing:-.025em;
  }
  .section-head p{font-size:12.5px}
  .more{font-size:12px}
  .search{font-size:12.5px}
  .destination h3{font-size:15px}
  .destination p{font-size:11px}
  .chip{font-size:10px}
  .plan h3{font-size:15px}
  .plan p{font-size:11px}
  .plan .price{font-size:20px}
  .scenario h3,.feature h3,.step h3{
    font-size:14.5px;
  }
  .scenario p,.feature p,.step p{
    font-size:11.5px;
    line-height:1.45;
  }
  .payment strong{font-size:11.5px}
  .payment span{font-size:9.5px}
  .faq summary{font-size:13px}
  .faq p{font-size:11.5px}
  .page-head h1{
    font-size:30px;
    line-height:1.12;
    letter-spacing:-.025em;
  }
  .page-head p{font-size:12.5px}
  .panel h3{font-size:18px}
  .panel p{font-size:12px}
  .check{font-size:11.5px}
  .option strong{font-size:13.5px}
  .option span{font-size:10.5px}
  .field label{font-size:11.5px}
  .field input,.field select,.field textarea{font-size:13px}
  .checkbox{font-size:10.5px}
  .status,.info-row{font-size:11.5px}
  .prose h2{font-size:18px}
  .prose p,.prose li{font-size:12px}
  .footer h4{font-size:12px}
  .footer a,.footer p{font-size:10.5px}
  .footer-bottom{font-size:10px}
}

/* ===== V17 FASHION NEUTRAL SYSTEM =====
   Inspired by premium fashion retail:
   cloud white / ecru / stone / slate / muted khaki
   restrained butter accent
*/
:root{
  --bg:#F7F5F0;
  --surface:#FFFEFC;
  --ink:#2E302D;
  --text:#5F625B;
  --muted:#85877F;
  --line:#E7E2D9;
  --blue:#7D8370;
  --blue-dark:#676D5E;
  --blue-soft:#F0F1EA;
  --green:#6F7666;
  --green-soft:#F0F2EB;
  --shadow:0 18px 48px rgba(72,70,61,.055);
}

body{
  background:
    linear-gradient(180deg,#FFFEFC 0%,#F8F6F1 50%,#F5F3EE 100%);
  color:var(--ink);
}

.header{
  background:rgba(255,254,252,.94);
  border-bottom:1px solid rgba(231,226,217,.92);
}
.brand-name span{color:#85877F}
.nav{color:#666A63}
.nav a:hover{color:#6F7666}

.btn{
  border-color:#E1DDD4;
  background:#FFFEFC;
  color:#3C403A;
}
.btn.primary,.btn.blue{
  background:#777D6B;
  border-color:#777D6B;
  color:#fff;
}
.btn.soft{
  background:#F2F1EB;
  border-color:#E4E0D7;
  color:#62685B;
}

.eyebrow{color:#858A76}

.hero-art{
  background:linear-gradient(145deg,#FFFDF9,#F0EDE5);
  border-color:#E5E0D7;
  box-shadow:0 18px 48px rgba(76,71,60,.06);
}

.trust{
  background:#FFFEFC;
  border-color:#E7E2D9;
  color:#74776E;
}

.section-head h2,.page-head h1,.hero h1{color:#2E302D}
.more{color:#727866}
.search-panel,.card,.plan,.destination,.step,.payment,.faq details,
.panel,.form-box,.prose{
  background:#FFFEFC;
  border-color:#E7E2D9;
  box-shadow:0 8px 24px rgba(72,70,61,.032);
}
.search{
  background:#FBFAF7;
  border-color:#E7E2D9;
  color:#9A9B94;
}

.destination:hover,.plan:hover,.option:hover{
  border-color:#CFCABA;
  box-shadow:0 10px 26px rgba(72,70,61,.05);
}

.chip{
  background:#F1F2EB;
  color:#6D735F;
}
.chip.blue{
  background:#F7F0D9;
  color:#847340;
}

.icon,.step-no{
  background:#F0F1EA;
  color:#6E7463;
}

.payment{
  background:#FFFEFC;
  border-color:#E7E2D9;
}
.notice{
  background:#FAF6E9;
  border-color:#EEE4C7;
  color:#776B4D;
}
.footer{
  background:#FCFAF6;
  border-top-color:#E7E2D9;
}

/* Cards feel more like fashion retail: lighter corners, less "app tile" weight */
.destination,.plan,.card,.step,.payment,.faq details{
  border-radius:16px;
}
.search-panel,.panel,.form-box,.prose{
  border-radius:20px;
}

/* more editorial spacing */
.hero{padding-top:82px}
.section{padding-top:58px;padding-bottom:58px}
.section-head{margin-bottom:24px}
.destinations{gap:14px}
.plan-grid{gap:14px}
.scenarios,.feature-grid,.steps{gap:14px}

/* small butter accent only, never as a dominant block */
.price::after{
  content:"";
  display:inline-block;
  width:6px;height:6px;
  margin-left:7px;
  border-radius:50%;
  background:#E8D79D;
  vertical-align:middle;
  opacity:.85;
}

/* Recolor embedded hero SVG blues to fashion neutrals */
.hero-art svg [fill="#1E8FFF"],
.hero-art svg [fill="#0A84FF"],
.hero-art svg [stroke="#1E8FFF"],
.hero-art svg [stroke="#0A84FF"]{
  fill:#7B816F !important;
  stroke:#7B816F !important;
}
.hero-art svg [stroke="#4C8FB7"],
.hero-art svg [stroke="#256F9D"],
.hero-art svg [stroke="#246D9C"],
.hero-art svg [stroke="#307BAA"]{
  stroke:#8E927F !important;
}
.hero-art svg [fill="#EDF8FF"],
.hero-art svg [fill="#EEF7FF"],
.hero-art svg [fill="#EEF6FC"],
.hero-art svg [fill="#F3F9FD"]{
  fill:#F3F0E8 !important;
}

/* avoid hard blue favicon/logo colors through CSS where possible */
.brand svg [stroke="#1E8FFF"],
.brand svg [stroke="#0A84FF"]{
  stroke:#7B816F !important;
}
.brand svg [stroke="#4C8FB7"],
.brand svg [stroke="#256F9D"],
.brand svg [stroke="#246D9C"]{
  stroke:#8A8F7C !important;
}
.brand svg [fill="#F3F9FD"],
.brand svg [fill="#F2F8FC"],
.brand svg [fill="#F1F7FB"]{
  fill:#F3F0E8 !important;
}

@media(max-width:680px){
  .hero{padding-top:36px}
  .section{padding-top:38px;padding-bottom:38px}
  .section-head{margin-bottom:15px}
  .destinations,.scenarios,.feature-grid{gap:9px}
  .plan-grid,.steps{gap:9px}
  .bottom-nav{
    background:rgba(255,254,252,.97);
    border-top-color:#E7E2D9;
  }
  .bottom-nav a.active{color:#727866}
}

/* ===== V18 EDITORIAL HERO ===== */
.editorial-hero{
  padding-top:96px;
  padding-bottom:54px;
}
.editorial-hero .hero-grid{
  display:block;
  max-width:900px;
  margin:0 auto;
}
.editorial-hero h1{
  max-width:820px;
}
.editorial-hero p{
  max-width:650px;
}
.editorial-hero .hero-actions{
  margin-top:28px;
}
.editorial-hero .trust-row{
  margin-top:18px;
}

@media(max-width:680px){
  .editorial-hero{
    padding-top:42px;
    padding-bottom:24px;
  }
  .editorial-hero .hero-grid{
    max-width:none;
  }
  .editorial-hero .hero-actions{
    margin-top:18px;
  }
}

/* ===== V19 CUSTOMER-SIMPLE HOMEPAGE ===== */
.simple-hero{
  padding-top:92px;
  padding-bottom:52px;
}
.simple-hero .container{
  max-width:1180px;
}
.simple-hero h1{
  max-width:760px;
}
.simple-hero p{
  max-width:610px;
}
.compact-section{
  padding-top:44px;
  padding-bottom:44px;
}
.simple-destinations{
  margin-top:0;
}
.simple-steps{
  grid-template-columns:repeat(3,1fr);
}
.simple-tools{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.payment-line{
  margin-top:14px;
  display:flex;
  align-items:center;
  gap:9px;
  flex-wrap:wrap;
  color:#74776e;
  font-size:11.5px;
}
.payment-line span{
  margin-right:2px;
  color:#95978f;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:10px;
}
.payment-line b{
  font-weight:560;
  padding:7px 10px;
  border:1px solid var(--line);
  background:var(--surface);
  border-radius:999px;
  color:#5f625b;
}
.simple-faq{
  grid-template-columns:1fr;
  max-width:820px;
}
.faq-short{
  padding-bottom:54px;
}

/* Remove decorative price dot on the simpler store home */
.simple-hero ~ .section .price::after{
  display:none;
}

@media(max-width:680px){
  .simple-hero{
    padding-top:40px;
    padding-bottom:24px;
  }
  .simple-hero h1{
    max-width:340px;
  }
  .compact-section{
    padding-top:30px;
    padding-bottom:30px;
  }
  .simple-steps{
    grid-template-columns:1fr;
  }
  .simple-steps .step{
    display:grid;
    grid-template-columns:30px 1fr;
    gap:10px;
  }
  .simple-tools{
    grid-template-columns:repeat(3,1fr);
    gap:8px;
  }
  .simple-tools .feature{
    padding:12px 10px;
  }
  .simple-tools .feature .icon{
    width:32px;height:32px;
  }
  .simple-tools .feature h3{
    font-size:13.5px;
  }
  .simple-tools .feature p{
    font-size:10px;
  }
  .payment-line{
    gap:6px;
    font-size:10px;
  }
  .payment-line span{
    width:100%;
    margin-bottom:1px;
  }
  .payment-line b{
    padding:5px 7px;
    font-size:9.5px;
  }
}

/* ===== V20 FINAL CUSTOMER CLEANUP ===== */
.brand-name{white-space:nowrap}
.chip{
  display:inline-block !important;
  width:max-content !important;
  max-width:max-content !important;
  justify-self:start;
  align-self:start;
}
.simple-tools .feature{
  min-height:128px;
}
.service-kicker{
  display:inline-block;
  margin-bottom:12px;
  font-size:10px;
  line-height:1;
  letter-spacing:.10em;
  font-weight:700;
  color:#858A76;
}
.simple-tools .feature h3{
  margin-top:0;
}
.payment-line{
  padding-top:4px;
}
@media(max-width:680px){
  .simple-tools{
    grid-template-columns:1fr !important;
    gap:7px !important;
  }
  .simple-tools .feature{
    min-height:auto;
    padding:13px 14px !important;
    display:grid;
    grid-template-columns:70px 1fr;
    column-gap:10px;
    align-items:center;
  }
  .simple-tools .service-kicker{
    grid-row:1/3;
    margin:0;
  }
  .simple-tools .feature h3{
    margin:0 0 2px !important;
    font-size:14px !important;
  }
  .simple-tools .feature p{
    margin:0 !important;
    font-size:10.5px !important;
  }
}

/* ===== V21 CHECKOUT PLAN PICKER ===== */
.plan-picker-field{margin-top:14px}
.plan-mode{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
  padding:4px;
  margin-top:7px;
  background:#F2F0EA;
  border-radius:13px;
}
.mode-btn{
  border:0;
  border-radius:10px;
  min-height:38px;
  background:transparent;
  color:#777A71;
  font-size:12px;
  font-weight:620;
}
.mode-btn.active{
  background:#FFFEFC;
  color:#343730;
  box-shadow:0 2px 8px rgba(72,70,61,.08);
}
.plan-choice-group{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:9px;
}
.checkout-plan{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  min-height:68px;
  padding:12px 13px;
  background:#FFFEFC;
  border:1px solid var(--line);
  border-radius:14px;
  cursor:pointer;
}
.checkout-plan input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.checkout-plan span{
  display:grid;
  gap:1px;
}
.checkout-plan b{
  font-size:15px;
  font-weight:650;
  color:#343730;
}
.checkout-plan small{
  font-size:10px;
  color:#8B8D85;
}
.checkout-plan strong{
  font-size:15px;
  font-weight:650;
  color:#62685B;
}
.checkout-plan:has(input:checked){
  border-color:#8F947F;
  background:#F8F7F2;
  box-shadow:inset 0 0 0 1px #8F947F;
}
.daily-builder{
  margin-top:9px;
  padding:13px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#FFFEFC;
}
.compact-field{margin:0 0 10px}
.compact-field:last-of-type{margin-bottom:0}
.plan-note{
  margin:10px 0 0;
  font-size:10.5px;
  line-height:1.5;
  color:#7B7E75;
}
.hidden-radio{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
@media(max-width:680px){
  .plan-choice-group{
    grid-template-columns:1fr 1fr;
  }
  .checkout-plan{
    min-height:64px;
    padding:11px 12px;
  }
  .checkout-plan b,.checkout-plan strong{
    font-size:14px;
  }
}

/* ===== V22 FULL CATALOG ===== */
.catalog-tabs{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
  max-width:440px;
  padding:4px;
  margin-bottom:20px;
  border-radius:14px;
  background:#F0EEE8;
}
.catalog-tab{
  min-height:42px;
  border:0;
  border-radius:11px;
  background:transparent;
  color:#777A71;
  font-size:13px;
  font-weight:630;
}
.catalog-tab.active{
  background:#FFFEFC;
  color:#343730;
  box-shadow:0 2px 9px rgba(72,70,61,.08);
}
.catalog-panel{
  background:#FFFEFC;
  border:1px solid var(--line);
  border-radius:20px;
  padding:20px;
}
.catalog-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}
.catalog-head h2{
  margin:3px 0 5px;
  font-size:25px;
  letter-spacing:-.025em;
}
.catalog-head p{
  max-width:760px;
  margin:0;
  color:var(--muted);
  font-size:12.5px;
}
.mini-kicker{
  display:block;
  color:#858A76;
  font-size:10px;
  font-weight:720;
  text-transform:uppercase;
  letter-spacing:.10em;
}
.picker-label{
  margin:16px 0 8px;
  color:#646860;
  font-size:12px;
  font-weight:650;
}
.day-grid{
  display:grid;
  grid-template-columns:repeat(10,1fr);
  gap:7px;
}
.day-chip{
  min-height:40px;
  border:1px solid var(--line);
  border-radius:11px;
  background:#FFFEFC;
  color:#50544D;
  font-size:12px;
  font-weight:620;
}
.day-chip.active{
  border-color:#929782;
  background:#F0F1EA;
  box-shadow:inset 0 0 0 1px #929782;
}
.daily-size-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:9px;
}
.daily-size{
  display:grid;
  grid-template-columns:1fr;
  gap:1px;
  min-height:78px;
  padding:12px;
  text-align:left;
  border:1px solid var(--line);
  border-radius:14px;
  background:#FFFEFC;
  color:#343730;
}
.daily-size b{font-size:16px}
.daily-size span{font-size:10.5px;color:#81847B}
.daily-size small{margin-top:5px;font-size:10px;color:#70756A}
.daily-size.active{
  border-color:#929782;
  background:#F4F4EE;
  box-shadow:inset 0 0 0 1px #929782;
}
.daily-summary{
  margin-top:13px;
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:16px;
  align-items:center;
  padding:15px;
  border-radius:15px;
  background:#F8F6F1;
}
.daily-summary span,.daily-summary-price span{
  display:block;
  color:#8A8C84;
  font-size:10px;
}
.daily-summary strong{
  display:block;
  margin-top:2px;
  font-size:15px;
}
.daily-summary-price{text-align:right}
.daily-summary-price>strong{font-size:22px}
.daily-summary-price small{display:block;color:#858A76;font-size:9px}
.fixed-catalog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:9px;
}
.catalog-plan{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  min-height:78px;
  padding:13px 14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#FFFEFC;
}
.catalog-plan:hover,.catalog-plan.selected{
  border-color:#929782;
  background:#F7F6F1;
  box-shadow:inset 0 0 0 1px #929782;
}
.catalog-plan>div{display:grid;gap:1px}
.catalog-plan b{font-size:16px}
.catalog-plan span{font-size:10.5px;color:#868980}
.catalog-plan>strong{font-size:16px;color:#5F6558}
.catalog-badge{
  display:inline-block;
  width:max-content;
  margin-top:5px;
  padding:3px 6px;
  border-radius:999px;
  background:#F5EFE1;
  color:#807350;
  font-size:8.5px;
  font-weight:650;
}
.catalog-badge.long{background:#EEF1E8;color:#69715C}
.catalog-legend{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:11px;
  color:#8A8C84;
  font-size:9.5px;
}
.catalog-legend i{
  display:inline-block;width:6px;height:6px;border-radius:50%;background:#AAB09A;margin-right:4px
}
.catalog-legend i.catalog-dot{background:#D9C98F}
.route-box{
  margin-top:13px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:15px 16px;
  border:1px solid var(--line);
  border-radius:15px;
  background:#FFFEFC;
}
.route-box h3{margin:3px 0 3px;font-size:16px}
.route-box p{margin:0;color:#85877F;font-size:10.5px;max-width:760px}
.apps-note{
  margin-top:13px;
  padding:16px;
  border:1px solid var(--line);
  border-radius:15px;
  background:#FFFEFC;
}
.apps-note-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:12px;
}
.apps-note h3{margin:3px 0 0;font-size:16px}
.route-note{font-size:9.5px;color:#8A8C84;text-align:right}
.app-tags{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-top:11px;
}
.app-tags span{
  padding:5px 8px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#FBFAF7;
  color:#676B63;
  font-size:9.5px;
}
.apps-disclaimer{
  margin:9px 0 0;
  color:#92948D;
  font-size:9.5px;
  line-height:1.5;
}
.checkout-summary{
  margin-top:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:11px 12px;
  border-radius:13px;
  background:#F8F6F1;
}
.checkout-summary span{display:block;color:#8A8C84;font-size:9.5px}
.checkout-summary b{font-size:12.5px}
.checkout-summary>strong{font-size:18px}
.order-day-grid{grid-template-columns:repeat(6,1fr)}
.order-fixed-grid{grid-template-columns:repeat(2,1fr)}

@media(max-width:980px){
  .day-grid{grid-template-columns:repeat(6,1fr)}
  .fixed-catalog-grid{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:680px){
  .catalog-panel{padding:14px;border-radius:17px}
  .catalog-head h2{font-size:21px}
  .catalog-head p{font-size:11px}
  .day-grid,.order-day-grid{
    grid-template-columns:repeat(5,1fr);
    gap:6px;
  }
  .day-chip{
    min-height:38px;
    font-size:11px;
  }
  .daily-size-grid{
    grid-template-columns:repeat(2,1fr);
    gap:7px;
  }
  .daily-size{
    min-height:68px;
    padding:10px 11px;
  }
  .daily-size b{font-size:14px}
  .daily-summary{
    grid-template-columns:1fr auto;
    gap:8px;
    padding:12px;
  }
  .daily-summary .btn{
    grid-column:1/-1;
    width:100%;
  }
  .daily-summary-price>strong{font-size:19px}
  .fixed-catalog-grid,.order-fixed-grid{
    grid-template-columns:1fr;
    gap:7px;
  }
  .catalog-plan{
    min-height:64px;
    padding:11px 12px;
  }
  .catalog-plan b,.catalog-plan>strong{font-size:14px}
  .route-box{
    align-items:flex-start;
    flex-direction:column;
  }
  .apps-note-head{
    align-items:flex-start;
    flex-direction:column;
    gap:4px;
  }
  .route-note{text-align:left}
  .app-tags span{font-size:9px}
}

/* ===== V23 MOBILE LAYOUT FIX ===== */

/* Normalize clickable controls */
.day-chip,.daily-size,.catalog-tab,.mode-btn,.catalog-plan{
  box-sizing:border-box;
  font-family:inherit;
  -webkit-appearance:none;
  appearance:none;
}

/* Days: always predictable geometry */
.day-grid{
  display:grid;
  grid-template-columns:repeat(10,minmax(0,1fr));
  gap:7px;
}
.day-chip{
  width:100%;
  min-width:0;
  height:40px;
  padding:0;
  overflow:hidden;
  white-space:nowrap;
}

/* Daily sizes: no content may escape its card */
.daily-size-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:9px;
}
.daily-size{
  width:100%;
  min-width:0;
  overflow:hidden;
}
.daily-size b,.daily-size span,.daily-size small{
  display:block;
  min-width:0;
  white-space:normal;
}

/* Summary never uses a fragile 3-column mobile layout */
.daily-summary{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:12px;
}
.daily-summary .btn{
  grid-column:1/-1;
  width:100%;
}
.checkout-summary{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:12px;
  align-items:center;
}
.checkout-summary-plan,.checkout-summary-price{
  min-width:0;
}
.checkout-summary-plan b{
  display:block;
  overflow-wrap:anywhere;
}
.checkout-summary-price{
  text-align:right;
}

/* Fixed plans */
.fixed-catalog-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:9px;
}
.catalog-plan{
  width:100%;
  min-width:0;
  text-align:left;
}
.catalog-plan>div{
  min-width:0;
}
.catalog-plan b,.catalog-plan span,.catalog-plan strong{
  white-space:normal;
}

/* Apps never overflow */
.app-tags{
  display:flex;
  flex-wrap:wrap;
}
.app-tags span{
  max-width:100%;
  white-space:normal;
}

/* Phone-specific */
@media screen and (max-width:680px){
  .catalog-tabs{
    max-width:none;
    width:100%;
  }
  .catalog-panel{
    overflow:hidden;
  }

  .day-grid,
  .order-day-grid{
    grid-template-columns:repeat(5,minmax(0,1fr)) !important;
    gap:6px !important;
  }
  .day-chip{
    height:42px !important;
    font-size:12px !important;
    border-radius:10px !important;
  }

  .daily-size-grid,
  .order-daily-size-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:8px !important;
  }
  .daily-size{
    min-height:76px !important;
    padding:11px 12px !important;
  }
  .daily-size b{
    font-size:15px !important;
  }
  .daily-size span{
    font-size:10.5px !important;
  }
  .daily-size small{
    margin-top:4px;
    font-size:10px !important;
  }

  .daily-summary{
    grid-template-columns:1fr !important;
    gap:8px !important;
    padding:13px !important;
  }
  .daily-summary-price{
    text-align:left !important;
  }
  .daily-summary-price>strong{
    font-size:20px !important;
  }

  .checkout-summary{
    grid-template-columns:1fr auto !important;
    padding:12px !important;
  }
  .checkout-summary-plan b{
    font-size:12.5px !important;
  }
  .checkout-summary-price strong{
    font-size:19px !important;
  }

  .fixed-catalog-grid,
  .order-fixed-grid{
    grid-template-columns:repeat(2,minmax(0,1fr)) !important;
    gap:7px !important;
  }
  .catalog-plan{
    min-height:72px !important;
    padding:10px 11px !important;
  }
  .catalog-plan b{
    font-size:14px !important;
  }
  .catalog-plan span{
    font-size:10px !important;
  }
  .catalog-plan>strong{
    font-size:14px !important;
  }

  .route-box,
  .apps-note{
    overflow:hidden;
  }
  .apps-note{
    padding:14px !important;
  }
  .app-tags{
    gap:5px !important;
  }
  .app-tags span{
    font-size:9px !important;
    padding:5px 7px !important;
  }
}

/* Very narrow devices */
@media screen and (max-width:360px){
  .day-grid,.order-day-grid{
    grid-template-columns:repeat(5,minmax(0,1fr)) !important;
    gap:5px !important;
  }
  .day-chip{
    height:39px !important;
    font-size:11px !important;
  }
  .fixed-catalog-grid,.order-fixed-grid{
    grid-template-columns:1fr !important;
  }
}

/* ===== V24 RADIO CARD SYSTEM ===== */
.day-radio-grid{
  display:grid;
  grid-template-columns:repeat(10,minmax(0,1fr));
  gap:7px;
}
.day-radio,.daily-radio{position:relative;display:block;min-width:0}
.day-radio input,.daily-radio input,.fixed-radio input{
  position:absolute;opacity:0;pointer-events:none;
}
.day-radio span{
  display:flex;align-items:center;justify-content:center;
  width:100%;height:40px;padding:0;
  border:1px solid var(--line);border-radius:10px;
  background:#FFFEFC;color:#50544D;font-size:12px;font-weight:620;
}
.day-radio input:checked + span{
  border-color:#929782;background:#F0F1EA;box-shadow:inset 0 0 0 1px #929782;
}
.daily-radio-grid{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:9px;
}
.daily-radio-body{
  display:flex;flex-direction:column;justify-content:center;
  min-height:78px;padding:11px 12px;
  border:1px solid var(--line);border-radius:13px;background:#FFFEFC;overflow:hidden;
}
.daily-radio-body b{display:block;font-size:16px;line-height:1.2;color:#343730}
.daily-radio-body small{display:block;margin-top:2px;font-size:10px;color:#85887F}
.daily-radio-body em{display:block;margin-top:7px;font-size:10px;line-height:1.2;font-style:normal;color:#70756A}
.daily-radio input:checked + .daily-radio-body{
  border-color:#929782;background:#F4F4EE;box-shadow:inset 0 0 0 1px #929782;
}
.fixed-radio-grid{
  display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px;
}
.fixed-radio{
  position:relative;display:flex;align-items:center;justify-content:space-between;
  gap:8px;min-width:0;min-height:76px;padding:12px 13px;
  border:1px solid var(--line);border-radius:13px;background:#FFFEFC;
}
.fixed-radio>span{display:flex;flex-direction:column;min-width:0}
.fixed-radio b{font-size:15px;line-height:1.25}
.fixed-radio small{margin-top:2px;font-size:10px;color:#85887F}
.fixed-radio strong{flex:0 0 auto;font-size:15px;color:#62685B}
.fixed-radio:has(input:checked){
  border-color:#929782;background:#F4F4EE;box-shadow:inset 0 0 0 1px #929782;
}
@media screen and (max-width:980px){
  .day-radio-grid{grid-template-columns:repeat(6,minmax(0,1fr))}
  .fixed-radio-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media screen and (max-width:680px){
  .day-radio-grid{grid-template-columns:repeat(5,minmax(0,1fr))!important;gap:6px!important}
  .day-radio span{height:41px!important;font-size:11.5px!important}
  .daily-radio-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:7px!important}
  .daily-radio-body{min-height:72px!important;padding:10px 11px!important}
  .daily-radio-body b{font-size:14.5px!important}
  .daily-radio-body small,.daily-radio-body em{font-size:9.8px!important}
  .fixed-radio-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:7px!important}
  .fixed-radio{min-height:68px!important;padding:10px 11px!important}
  .fixed-radio b,.fixed-radio strong{font-size:13.5px!important}
  .fixed-radio small{font-size:9.5px!important}
  .daily-summary{display:grid!important;grid-template-columns:1fr!important;gap:7px!important}
  .daily-summary-price{text-align:left!important}
  .checkout-summary{grid-template-columns:1fr auto!important}
}
@media screen and (max-width:360px){
  .fixed-radio-grid{grid-template-columns:1fr!important}
}

/* ===== V25 CHECKOUT CLEAN ===== */
.catalog-tabs-flex{
  display:flex !important;
  width:100%;
}
.catalog-tabs-flex .catalog-tab{
  flex:1 1 0;
  min-width:0;
}

.daily-summary-stack{
  display:block !important;
  padding:14px !important;
}
.summary-line{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
}
.summary-line span{
  display:block;
  color:#8A8C84;
  font-size:10px;
}
.summary-line strong{
  display:block;
  margin-top:3px;
  font-size:15px;
}
.summary-price{
  flex:0 0 auto;
  text-align:right;
}
.summary-price strong{
  font-size:22px;
}
.summary-price small{
  display:block;
  margin-top:2px;
  color:#858A76;
  font-size:9px;
}
.summary-cta{
  width:100% !important;
  margin-top:13px;
  min-height:42px;
}

.checkout-container{
  width:min(760px,calc(100% - 28px));
}
.checkout-head{
  padding-bottom:10px;
}
.checkout-section{
  padding-top:10px;
}
.checkout-card{
  padding:20px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#FFFEFC;
}
.checkout-safety{
  padding:13px;
  margin-bottom:14px;
  border-radius:14px;
  background:#F7F6F1;
}
.checkout-safety>span{
  display:block;
  margin-bottom:8px;
  color:#858A76;
  font-size:10px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.09em;
}
.checkout-checks{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
}
.checkout-checks b{
  padding:5px 8px;
  border:1px solid #E1DDD4;
  border-radius:999px;
  background:#FFFEFC;
  color:#62665E;
  font-size:9.5px;
  font-weight:600;
}
.checkout-card .plan-picker-field{
  margin-top:14px;
}
.checkout-submit{
  width:100%;
  margin-top:12px;
}
.checkout-body .footer{
  margin-top:28px;
}
.checkout-body .bottom-nav{
  display:none !important;
}
.checkout-body{
  padding-bottom:0 !important;
}

@media screen and (max-width:680px){
  .summary-line{
    display:block !important;
  }
  .summary-price{
    margin-top:9px;
    text-align:left !important;
  }
  .summary-price strong{
    font-size:20px !important;
  }

  .checkout-card{
    padding:14px !important;
    border-radius:17px !important;
  }
  .checkout-checks b{
    font-size:9px !important;
  }
  .checkout-body .footer{
    display:none !important;
  }
}

/* ===== V26 FINAL CHECK ===== */
.plan-mode{
  display:flex !important;
  width:100% !important;
  gap:6px !important;
}
.plan-mode .mode-btn{
  flex:1 1 0 !important;
  min-width:0 !important;
  width:auto !important;
  white-space:nowrap !important;
  overflow:hidden !important;
}
input[type="hidden"]{
  display:none !important;
}
.checkout-card{
  overflow:hidden;
}

/* ===== V27 PROFIT TABLE PRICING ===== */
.price-source{
  display:inline-block;
  width:max-content;
  margin-top:5px;
  font-size:8px;
  font-style:normal;
  color:#78806D;
  letter-spacing:.02em;
}
.price-source.live{
  color:#968A68;
}
.live-price{
  color:#8A7A52 !important;
  font-size:12px !important;
  white-space:nowrap;
}
.fixed-radio strong.live-price{
  font-size:11.5px !important;
}
.pricing-source-note{
  margin-top:10px;
  color:#85877F;
  font-size:9.5px;
}

/* ===== V28 PROFIT TABLE FINAL CHECK ===== */
.live-daily{
  color:#8A7A52 !important;
  font-size:9.5px !important;
  font-style:normal !important;
  white-space:nowrap;
}

/* ===== V29 DAILY ACCUMULATED PRICING ===== */
.app-groups{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:11px;
}
.app-groups>div{
  padding:10px 11px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#FBFAF7;
}
.app-groups b{
  display:block;
  margin-bottom:3px;
  color:#5F645A;
  font-size:10px;
}
.app-groups span{
  display:block;
  color:#777B72;
  font-size:9.5px;
  line-height:1.45;
}
.daily-radio-body em{
  color:#6D735F !important;
  font-weight:650;
}
@media screen and (max-width:680px){
  .app-groups{grid-template-columns:1fr !important}
}

/* ===== V30 CUSTOMER PRICING FINAL ===== */
.daily-radio-body em{
  color:#6D735F !important;
  font-weight:650;
}

/* ===== V32 GLOBAL 150 DESTINATIONS ===== */
.global-hero .container{max-width:1120px}
.global-trust{display:flex;flex-wrap:wrap;gap:7px;margin-top:20px}
.global-trust span{padding:6px 9px;border:1px solid var(--line);border-radius:999px;background:#FFFEFC;color:#73776E;font-size:10px}

.popular-global-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:9px}
.global-destination-card,.country-card{
  display:flex;align-items:center;gap:11px;min-width:0;padding:13px 14px;border:1px solid var(--line);
  border-radius:15px;background:#FFFEFC;transition:transform .16s ease,border-color .16s ease,background .16s ease;
}
.global-destination-card:hover,.country-card:hover{transform:translateY(-1px);border-color:#B6B8AD;background:#FAF9F5}
.flag-avatar{
  flex:0 0 auto;display:flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:50%;
  background:#F4F1E9;border:1px solid #E8E3D9;font-size:25px;line-height:1;overflow:hidden;
}
.dest-copy,.country-card-copy{min-width:0;flex:1}
.dest-copy h3,.country-card-copy h3{margin:0;font-size:13.5px;line-height:1.25;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.dest-copy p,.country-card-copy p{margin:3px 0 0;font-size:9.8px;color:#8B8E85}
.dest-arrow{flex:0 0 auto;color:#A0A39A;font-size:19px;font-weight:300}

.regional-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px}
.regional-card{display:flex;align-items:center;gap:12px;padding:14px;border:1px solid var(--line);border-radius:15px;background:#FFFEFC}
.regional-card h3{margin:0;font-size:13.5px}
.regional-card p{margin:3px 0 0;color:#898C84;font-size:9.8px}
.home-daily-grid .price{font-size:17px}

.destination-head{padding-bottom:18px}
.country-search-wrap{
  display:flex;align-items:center;gap:9px;max-width:620px;margin-top:18px;padding:0 13px;border:1px solid var(--line);
  border-radius:14px;background:#FFFEFC;
}
.country-search-wrap>span{color:#93968D;font-size:17px}
.country-search-wrap input{
  width:100%;height:48px;border:0;outline:0;background:transparent;font:inherit;font-size:13px;color:#3F433D;
}
.country-search-wrap input::placeholder{color:#A5A79F}
.result-count{margin-top:8px;color:#8B8E85;font-size:10px}
.result-count b{color:#5E635A}

.country-grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px}
.country-card{min-height:70px}
.country-card[hidden]{display:none!important}
.country-flag{width:40px;height:40px;font-size:23px}
.no-results{padding:28px;text-align:center;border:1px dashed var(--line);border-radius:16px;color:#81857C;font-size:12px}

.back-link{display:inline-block;margin-bottom:16px;color:#777B72;font-size:11px}
.destination-title-row{display:flex;align-items:center;gap:14px}
.detail-flag{width:58px;height:58px;font-size:34px}
.destination-title-row h1{margin:0}
.detail-plan-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:9px}
.detail-plan-card{
  display:flex;align-items:flex-end;justify-content:space-between;gap:10px;min-height:112px;padding:15px;border:1px solid var(--line);
  border-radius:15px;background:#FFFEFC;
}
.detail-plan-card h3{margin:7px 0 0;font-size:18px}
.detail-plan-card p{margin:2px 0 0;color:#8A8D85;font-size:10px}
.detail-plan-card>strong{font-size:17px;color:#62685B}
.live-catalog-card{
  display:grid;grid-template-columns:auto 1fr auto;gap:14px;align-items:center;padding:18px;border:1px solid var(--line);
  border-radius:17px;background:#FFFEFC;
}
.live-catalog-card h2{margin:3px 0 5px;font-size:20px}
.live-catalog-card p{margin:0;color:#7D8178;font-size:11px;max-width:680px}
.soft-avatar{font-size:17px;color:#7A7F71}
.destination-info-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:9px;margin-top:14px}
.destination-info-grid .card{padding:15px}
.destination-info-grid h3{margin:4px 0;font-size:14px}
.destination-info-grid p{margin:0;color:#85887F;font-size:10px;line-height:1.5}

.external-plan-summary{
  display:flex;align-items:center;gap:12px;padding:13px;margin-bottom:14px;border:1px solid var(--line);border-radius:14px;background:#F8F7F2;
}
.external-plan-summary h3{margin:3px 0;font-size:15px}
.external-plan-summary p{margin:0;color:#7E8278;font-size:10.5px}

@media screen and (max-width:980px){
  .popular-global-grid,.country-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .detail-plan-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media screen and (max-width:680px){
  .popular-global-grid{grid-template-columns:1fr 1fr!important;gap:7px!important}
  .global-destination-card{padding:11px!important;gap:9px!important}
  .global-destination-card .flag-avatar{width:39px;height:39px;font-size:22px}
  .dest-copy h3{font-size:12px!important}
  .dest-copy p{font-size:9px!important}

  .regional-grid{grid-template-columns:1fr!important;gap:7px!important}
  .regional-card{padding:11px 12px!important}

  .country-grid{grid-template-columns:1fr 1fr!important;gap:6px!important}
  .country-card{min-height:66px;padding:9px 10px!important;gap:8px!important}
  .country-flag{width:36px;height:36px;font-size:21px}
  .country-card-copy h3{font-size:11px!important}
  .country-card-copy p{font-size:8.6px!important}
  .dest-arrow{font-size:16px}

  .country-search-wrap{max-width:none}
  .all-regional{grid-template-columns:1fr!important}

  .destination-title-row{align-items:center}
  .detail-flag{width:52px;height:52px;font-size:30px}
  .detail-plan-grid{grid-template-columns:1fr 1fr!important;gap:7px!important}
  .detail-plan-card{min-height:96px;padding:12px!important}
  .detail-plan-card h3{font-size:15px!important}
  .detail-plan-card>strong{font-size:14px!important}

  .live-catalog-card{grid-template-columns:auto 1fr!important;padding:14px!important}
  .live-catalog-card .btn{grid-column:1/-1;width:100%}
  .destination-info-grid{grid-template-columns:1fr!important;gap:7px!important}
}
@media screen and (max-width:360px){
  .popular-global-grid,.country-grid,.detail-plan-grid{grid-template-columns:1fr!important}
}

/* V32.1 mobile name readability */
@media screen and (max-width:680px){
  .dest-copy h3,.country-card-copy h3{
    white-space:normal !important;
    overflow:visible !important;
    text-overflow:clip !important;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    line-height:1.2 !important;
  }
  .global-destination-card .dest-arrow,
  .country-card .dest-arrow{display:none !important}
}

/* =========================================================
   V33 EXPRESS STORE — eSIM Access-style selection flow
   ========================================================= */
.express-body{
  margin:0;
  min-height:100vh;
  background:#F6F7F9;
  color:#181B20;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  padding-bottom:78px;
}
.express-body *{box-sizing:border-box}
.express-top{
  position:sticky;top:0;z-index:20;
  display:flex;align-items:center;justify-content:space-between;
  height:62px;padding:0 max(16px,calc((100vw - 920px)/2));
  background:rgba(255,255,255,.94);
  border-bottom:1px solid #E8EAEE;
  backdrop-filter:blur(14px);
}
.express-brand{display:flex;align-items:center;gap:9px;color:#1D2025;font-size:15px;font-weight:650}
.express-brand b{font-weight:500;color:#6A7067}
.express-logo{width:34px;height:34px;display:block}
.express-logo svg,.express-logo-large svg{width:100%;height:100%}
.express-tools{display:flex;align-items:center;gap:7px}
.currency-pill,.account-pill{
  height:34px;padding:0 11px;border:1px solid #E3E5E8;border-radius:10px;background:#fff;
  color:#444951;font-size:11px;font-weight:600;display:flex;align-items:center;justify-content:center;
}
.express-main{width:min(100% - 28px,620px);margin:0 auto;padding:36px 0 34px}
.express-intro{text-align:center;padding:8px 0 24px}
.express-logo-large{width:62px;height:62px;margin:0 auto 13px}
.express-intro h1{margin:0;font-size:27px;letter-spacing:-.035em;font-weight:720}
.express-intro p{margin:7px 0 0;color:#70757D;font-size:13px}

.express-card{
  background:#fff;border:1px solid #E5E7EA;border-radius:20px;padding:22px;
  box-shadow:0 8px 30px rgba(30,35,40,.055);
}
.express-card-head{text-align:center;margin-bottom:20px}
.express-card-head h2{margin:0;font-size:20px;letter-spacing:-.02em}
.express-card-head p{margin:6px 0 0;color:#777C84;font-size:11.5px}
.express-field label,.sub-label{
  display:block;margin-bottom:7px;color:#50555D;font-size:10.5px;font-weight:650;
}
.express-select-wrap{
  position:relative;display:flex;align-items:center;height:54px;border:1px solid #DDE0E4;border-radius:13px;background:#fff;
}
.select-flag{width:48px;text-align:center;font-size:23px}
.express-select-wrap select{
  flex:1;min-width:0;height:100%;border:0;background:transparent;appearance:none;outline:0;
  color:#22262B;font-size:13px;font-weight:560;padding:0 34px 0 0;
}
.select-chevron{position:absolute;right:14px;color:#858A92;font-size:16px;pointer-events:none}
.quick-row{display:flex;gap:6px;flex-wrap:wrap;margin-top:10px}
.quick-row button{
  border:1px solid #E3E5E8;background:#FAFAFB;border-radius:999px;padding:6px 9px;
  color:#666B73;font-size:9.5px;
}
.stage-divider{height:1px;background:#ECEEF1;margin:21px -22px 18px}
.selected-country-line{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-bottom:16px}
.selected-country-left{display:flex;align-items:center;gap:10px}
.plan-country-flag{font-size:29px}
.selected-country-left div{display:flex;flex-direction:column}
.selected-country-left b{font-size:14px}
.selected-country-left small{margin-top:2px;color:#8A8F96;font-size:9.5px}
.text-button{border:0;background:transparent;color:#6E7569;font-size:10px;font-weight:650;padding:7px}

.segmented{
  display:grid;grid-template-columns:1fr 1fr;gap:4px;padding:4px;border-radius:11px;background:#F1F2F4;margin-bottom:17px;
}
.segment{height:36px;border:0;border-radius:8px;background:transparent;color:#7B8088;font-size:11px;font-weight:650}
.segment.active{background:#fff;color:#25292E;box-shadow:0 1px 4px rgba(0,0,0,.07)}
.compact-option-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:7px;margin-bottom:16px}
.compact-option{
  min-height:61px;border:1px solid #E1E3E6;border-radius:11px;background:#fff;display:flex;flex-direction:column;
  align-items:flex-start;justify-content:center;padding:9px;color:#282C31;
}
.compact-option b{font-size:13px}
.compact-option small{margin-top:3px;color:#858A91;font-size:8.8px}
.compact-option.selected{border-color:#747C6C;background:#F7F8F4;box-shadow:inset 0 0 0 1px #747C6C}

.days-control{
  display:grid;grid-template-columns:46px 1fr 46px;align-items:center;height:58px;border:1px solid #E1E3E6;border-radius:12px;overflow:hidden;
}
.days-control button{height:100%;border:0;background:#FAFAFB;color:#555B63;font-size:21px}
.days-control div{text-align:center;display:flex;align-items:baseline;justify-content:center;gap:5px}
.days-control b{font-size:20px}
.days-control span{font-size:10px;color:#8A8F96}
#daysRange{width:100%;margin:9px 0 16px;accent-color:#777E6D}

.selected-plan-summary{
  display:flex;align-items:end;justify-content:space-between;gap:12px;padding:13px 14px;border-radius:12px;background:#F7F8F6;margin-top:2px;
}
.selected-plan-summary span{display:block;color:#898E95;font-size:8.8px}
.selected-plan-summary b{display:block;margin-top:3px;font-size:12px}
.selected-plan-summary strong{font-size:19px}

.plan-list{display:grid;gap:7px}
.plan-row{
  width:100%;min-height:62px;border:1px solid #E2E4E7;border-radius:11px;background:#fff;
  display:grid;grid-template-columns:1fr auto 15px;align-items:center;gap:8px;padding:10px 12px;text-align:left;
}
.plan-row>div{display:flex;flex-direction:column}
.plan-row b{font-size:12px}
.plan-row small{margin-top:2px;color:#8B9097;font-size:9px}
.plan-row strong{font-size:13px;color:#3C4248}
.plan-row i{font-style:normal;color:#A0A4AA;font-size:16px}
.plan-row.selected{border-color:#747C6C;background:#F7F8F4;box-shadow:inset 0 0 0 1px #747C6C}

.catalog-pending{display:flex;gap:11px;padding:14px;border:1px solid #E3E5E8;border-radius:12px;background:#FAFAFB}
.pending-icon{width:34px;height:34px;border-radius:50%;background:#EEF0EC;display:flex;align-items:center;justify-content:center;color:#767D6D}
.catalog-pending b{font-size:11px}
.catalog-pending p{margin:4px 0 0;color:#858A91;font-size:9.5px;line-height:1.45}

.express-continue{
  width:100%;height:49px;margin-top:18px;border:0;border-radius:11px;background:#1F2328;color:#fff;
  font-size:12px;font-weight:700;
}
.express-continue:disabled{background:#D8DBDF;color:#989DA4}

.express-notes{display:grid;gap:7px;margin-top:14px}
.express-notes a{
  display:grid;grid-template-columns:34px 1fr 12px;align-items:center;gap:10px;padding:12px 13px;
  border:1px solid #E6E8EB;border-radius:13px;background:#fff;color:#2B2F34;
}
.express-notes>a>span{width:34px;height:34px;border-radius:10px;background:#F3F4F2;display:flex;align-items:center;justify-content:center;color:#747B6B}
.express-notes div{display:flex;flex-direction:column}
.express-notes b{font-size:10.5px}
.express-notes small{margin-top:2px;color:#8A8F96;font-size:8.8px}
.express-notes i{font-style:normal;color:#A0A4AA}
.express-footnote{text-align:center;margin:13px 9px 0;color:#92979E;font-size:8.5px;line-height:1.5}

.express-bottom{
  position:fixed;z-index:30;left:0;right:0;bottom:0;height:67px;padding-bottom:env(safe-area-inset-bottom);
  display:grid;grid-template-columns:repeat(4,1fr);background:rgba(255,255,255,.96);border-top:1px solid #E5E7EA;backdrop-filter:blur(14px);
}
.express-bottom a{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;color:#989CA2}
.express-bottom span{font-size:16px;line-height:1}
.express-bottom b{font-size:8.5px;font-weight:600}
.express-bottom a.active{color:#4C524A}

@media(min-width:760px){
  .express-main{padding-top:48px}
  .express-card{padding:27px}
  .stage-divider{margin-left:-27px;margin-right:-27px}
}
@media(max-width:480px){
  .express-top{height:58px;padding:0 14px}
  .express-main{width:calc(100% - 24px);padding:22px 0 25px}
  .express-intro{padding:4px 0 18px}
  .express-logo-large{width:52px;height:52px;margin-bottom:10px}
  .express-intro h1{font-size:24px}
  .express-intro p{font-size:11.5px}
  .express-card{padding:16px;border-radius:17px}
  .express-card-head{margin-bottom:17px}
  .express-card-head h2{font-size:18px}
  .express-card-head p{font-size:10px}
  .stage-divider{margin-left:-16px;margin-right:-16px}
  .compact-option-grid{grid-template-columns:1fr 1fr}
  .currency-pill{display:none}
}

/* =========================================================
   V34 — SIMPLE ESIM ACCESS STYLE FLOW
   ========================================================= */
.ea-body{
  margin:0;min-height:100vh;background:#F7F7F9;color:#1C2025;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  padding-bottom:72px;
}
.ea-body *{box-sizing:border-box}
.ea-header{
  height:60px;display:flex;align-items:center;justify-content:space-between;
  padding:0 16px;background:#fff;border-bottom:1px solid #E8EAED;
}
.ea-brand{display:flex;align-items:center;gap:8px;color:#1E2227}
.ea-brand span{display:block;width:32px;height:32px}
.ea-brand svg,.ea-main-logo svg{width:100%;height:100%}
.ea-brand b{font-size:14px}
.ea-header-actions{display:flex;gap:6px}
.ea-header-actions button,.ea-header-actions a{
  height:33px;padding:0 10px;border:1px solid #E2E4E7;border-radius:9px;background:#fff;
  color:#4B5057;font-size:10px;font-weight:600;display:flex;align-items:center;
}

.ea-main{width:min(100% - 24px,560px);margin:0 auto;padding:28px 0}
.ea-heading{text-align:center;padding:4px 0 20px}
.ea-main-logo{width:54px;height:54px;margin:0 auto 10px}
.ea-heading h1{margin:0;font-size:25px;letter-spacing:-.035em}
.ea-heading p{margin:6px 0 0;color:#767B82;font-size:11.5px}

.ea-shop{
  padding:19px 17px 17px;background:#fff;border:1px solid #E4E6E9;border-radius:18px;
  box-shadow:0 7px 24px rgba(25,30,35,.045);
}
.ea-shop h2{margin:0;text-align:center;font-size:19px;letter-spacing:-.02em}
.ea-shop-sub{margin:6px 0 19px;text-align:center;color:#7E838A;font-size:10px}
.ea-field{margin-top:13px}
.ea-field label{display:block;margin:0 0 6px;color:#535861;font-size:10px;font-weight:650}
.ea-select{
  position:relative;height:53px;display:flex;align-items:center;border:1px solid #DDE0E4;border-radius:11px;background:#fff;
}
.ea-select>span{width:45px;text-align:center;font-size:20px}
.ea-select select{
  flex:1;min-width:0;height:100%;padding:0 34px 0 0;border:0;outline:0;background:transparent;
  appearance:none;color:#23272C;font-size:12.5px;font-weight:560;
}
.ea-select i{position:absolute;right:13px;font-style:normal;color:#90959C;pointer-events:none}

.ea-live-notice{
  display:flex;gap:10px;align-items:flex-start;margin-top:13px;padding:12px;border:1px solid #E3E5E8;
  border-radius:11px;background:#FAFAFB;
}
.ea-live-notice>span{width:31px;height:31px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#EEF0ED;color:#71786A}
.ea-live-notice b{font-size:10.5px}
.ea-live-notice p{margin:3px 0 0;color:#82878E;font-size:9px;line-height:1.45}

.ea-summary{
  margin-top:14px;padding:13px;border-radius:11px;background:#F6F7F5;
  display:flex;align-items:flex-end;justify-content:space-between;gap:12px;
}
.ea-summary span{display:block;color:#8A8F95;font-size:8.5px}
.ea-summary b{display:block;margin-top:3px;font-size:11.5px}
.ea-summary strong{font-size:18px}
.ea-continue{
  width:100%;height:48px;margin-top:14px;border:0;border-radius:10px;background:#202429;color:#fff;font-size:11.5px;font-weight:700;
}
.ea-continue:disabled{background:#D9DCE0;color:#999EA5}

.ea-help{display:grid;gap:7px;margin-top:12px}
.ea-help a{
  display:grid;grid-template-columns:32px 1fr 12px;align-items:center;gap:9px;padding:11px 12px;
  border:1px solid #E5E7EA;border-radius:12px;background:#fff;color:#2B2F34;
}
.ea-help>a>span{width:32px;height:32px;border-radius:9px;background:#F2F3F1;display:flex;align-items:center;justify-content:center;color:#737A6B}
.ea-help div{display:flex;flex-direction:column}
.ea-help b{font-size:10px}
.ea-help small{margin-top:2px;color:#8B9097;font-size:8.5px}
.ea-help i{font-style:normal;color:#A4A8AE}

.ea-footer{text-align:center;color:#9A9EA4;font-size:8px;padding:6px 16px 18px}
.ea-bottom{
  position:fixed;left:0;right:0;bottom:0;height:64px;display:grid;grid-template-columns:repeat(4,1fr);
  background:rgba(255,255,255,.96);border-top:1px solid #E5E7EA;backdrop-filter:blur(14px);
}
.ea-bottom a{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:2px;color:#979BA2}
.ea-bottom span{font-size:15px}.ea-bottom b{font-size:8px;font-weight:600}
.ea-bottom a.active{color:#4C524A}

@media(min-width:700px){
  .ea-main{padding-top:42px}
  .ea-shop{padding:24px}
}

.ea-body [hidden]{display:none!important;}

.ea-brand b{white-space:nowrap;font-size:13px;}

/* =========================================================
   V35 — LIGHT TECH COMMERCIAL THEME
   ========================================================= */
:root{
  --tech-bg:#F5F8FC;
  --tech-surface:#FFFFFF;
  --tech-surface-soft:#F8FBFF;
  --tech-text:#142033;
  --tech-muted:#6E7C8F;
  --tech-line:#DCE5EF;
  --tech-line-strong:#C9D6E4;
  --tech-blue:#2F6BFF;
  --tech-blue-dark:#2458D8;
  --tech-cyan:#13B8D1;
  --tech-accent-soft:#EEF5FF;
}

.ea-body{
  background:
    radial-gradient(circle at 50% -8%, rgba(47,107,255,.08), transparent 34%),
    linear-gradient(180deg,#F8FBFF 0%,#F5F8FC 38%,#F6F8FB 100%) !important;
  color:var(--tech-text)!important;
}

.ea-header{
  background:rgba(255,255,255,.88)!important;
  border-bottom:1px solid rgba(205,218,231,.88)!important;
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  box-shadow:0 1px 0 rgba(255,255,255,.7);
}
.ea-brand{
  color:var(--tech-text)!important;
}
.ea-brand span,
.ea-main-logo{
  border-radius:14px;
  filter:drop-shadow(0 5px 12px rgba(47,107,255,.10));
}
.ea-brand svg rect,
.ea-main-logo svg rect{
  fill:#EEF5FF!important;
}
.ea-brand svg path[fill="#fff"],
.ea-main-logo svg path[fill="#fff"]{
  fill:#FFFFFF!important;
}
.ea-brand svg path,
.ea-main-logo svg path{
  stroke:#5A7BD8!important;
}
.ea-brand svg path:last-child,
.ea-main-logo svg path:last-child{
  stroke:#13AFC7!important;
}

.ea-header-actions button,
.ea-header-actions a{
  border-color:var(--tech-line)!important;
  background:rgba(255,255,255,.92)!important;
  color:#526275!important;
}
.ea-header-actions a:hover,
.ea-header-actions button:hover{
  border-color:#B8C9DB!important;
  background:#F8FBFF!important;
}

.ea-heading h1{
  color:#132039!important;
}
.ea-heading p{
  color:#738196!important;
}

.ea-shop{
  border:1px solid rgba(205,218,231,.92)!important;
  background:rgba(255,255,255,.96)!important;
  box-shadow:
    0 18px 45px rgba(38,62,95,.08),
    0 2px 8px rgba(38,62,95,.04)!important;
}
.ea-shop h2{
  color:#132039!important;
}
.ea-shop-sub{
  color:#748296!important;
}

.ea-trust-strip{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:6px;
  margin:-5px 0 18px;
}
.ea-trust-strip span{
  display:inline-flex;
  align-items:center;
  min-height:25px;
  padding:0 8px;
  border:1px solid #E1EAF4;
  border-radius:999px;
  background:#F8FBFF;
  color:#617389;
  font-size:8.5px;
  font-weight:620;
  white-space:nowrap;
}
.ea-trust-strip span::before{
  content:"";
  width:5px;height:5px;border-radius:50%;
  margin-right:5px;
  background:linear-gradient(135deg,var(--tech-blue),var(--tech-cyan));
  box-shadow:0 0 0 3px rgba(47,107,255,.07);
}

.ea-field label{
  color:#526175!important;
}
.ea-select{
  border-color:var(--tech-line)!important;
  background:#FFFFFF!important;
  box-shadow:0 1px 0 rgba(25,50,80,.02);
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.ea-select:focus-within{
  border-color:#8FB0FF!important;
  box-shadow:0 0 0 3px rgba(47,107,255,.10)!important;
  background:#FCFDFF!important;
}
.ea-select>span{
  color:var(--tech-blue)!important;
}
.ea-select select{
  color:#1B2A40!important;
}
.ea-select i{
  color:#8091A5!important;
}

.ea-live-notice{
  border-color:#DCE7F2!important;
  background:linear-gradient(180deg,#F9FCFF 0%,#F5FAFF 100%)!important;
}
.ea-live-notice>span{
  background:#EAF3FF!important;
  color:var(--tech-blue)!important;
}
.ea-live-notice b{
  color:#263850!important;
}
.ea-live-notice p{
  color:#748399!important;
}

.ea-summary{
  border:1px solid #DDE8F3!important;
  background:
    linear-gradient(135deg,rgba(47,107,255,.055),rgba(19,184,209,.035)),
    #FAFCFF!important;
}
.ea-summary span{
  color:#7A8AA0!important;
}
.ea-summary b{
  color:#24344B!important;
}
.ea-summary strong{
  color:#245FE8!important;
}

.ea-continue{
  background:linear-gradient(135deg,#2F6BFF 0%,#2678F2 54%,#13AFC7 130%)!important;
  color:#FFFFFF!important;
  box-shadow:0 9px 20px rgba(47,107,255,.20)!important;
  transition:transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}
.ea-continue:hover:not(:disabled){
  transform:translateY(-1px);
  box-shadow:0 12px 24px rgba(47,107,255,.24)!important;
}
.ea-continue:active:not(:disabled){
  transform:translateY(0);
}
.ea-continue:disabled{
  background:#DCE4EC!important;
  color:#95A2B0!important;
  box-shadow:none!important;
}

.ea-help a{
  border-color:#DFE7F0!important;
  background:rgba(255,255,255,.94)!important;
  box-shadow:0 2px 8px rgba(38,62,95,.025);
}
.ea-help>a>span{
  background:linear-gradient(135deg,#EEF5FF,#F0FBFC)!important;
  color:#3B70D7!important;
}
.ea-help b{
  color:#26364B!important;
}
.ea-help small{
  color:#7B899C!important;
}
.ea-help i{
  color:#8BA0B7!important;
}

.ea-footer{
  color:#8B99AA!important;
  line-height:1.6;
}
.ea-footer div:first-child{
  color:#738196;
  font-weight:600;
}

.ea-bottom{
  background:rgba(255,255,255,.94)!important;
  border-top-color:#DDE6EF!important;
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}
.ea-bottom a{
  color:#94A1B0!important;
}
.ea-bottom a.active{
  color:var(--tech-blue)!important;
}
.ea-bottom a.active span{
  text-shadow:0 0 14px rgba(47,107,255,.22);
}

@media(max-width:480px){
  .ea-shop{
    border-radius:18px!important;
  }
  .ea-trust-strip{
    gap:5px;
  }
  .ea-trust-strip span{
    font-size:8px;
    padding:0 7px;
  }
}

/* =========================================================
   V36 — CRISP COMMERCIAL TECH
   White + Navy + Cobalt
   ========================================================= */
:root{
  --v36-bg:#F8FAFC;
  --v36-surface:#FFFFFF;
  --v36-text:#0F172A;
  --v36-text-2:#334155;
  --v36-muted:#64748B;
  --v36-soft:#94A3B8;
  --v36-line:#DCE3EC;
  --v36-line-2:#CBD5E1;
  --v36-blue:#2563EB;
  --v36-blue-dark:#1D4ED8;
  --v36-blue-soft:#EFF6FF;
  --v36-cyan:#0891B2;
}

/* Overall */
.ea-body{
  background:var(--v36-bg)!important;
  color:var(--v36-text)!important;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

/* Header */
.ea-header{
  background:rgba(255,255,255,.98)!important;
  border-bottom:1px solid var(--v36-line)!important;
  box-shadow:0 1px 0 rgba(15,23,42,.02)!important;
  backdrop-filter:blur(12px)!important;
  -webkit-backdrop-filter:blur(12px)!important;
}
.ea-brand{
  color:var(--v36-text)!important;
}
.ea-brand b{
  color:var(--v36-text)!important;
  font-weight:720!important;
  letter-spacing:-.015em;
}
.ea-header-actions button,
.ea-header-actions a{
  border-color:var(--v36-line)!important;
  background:#FFFFFF!important;
  color:#475569!important;
  box-shadow:none!important;
}
.ea-header-actions button:hover,
.ea-header-actions a:hover{
  border-color:#B8C4D3!important;
  color:var(--v36-text)!important;
}

/* Logo — make the entire mark coordinated with the site */
.ea-brand svg rect,
.ea-main-logo svg rect{
  fill:#EFF6FF!important;
}
.ea-brand svg path[fill="#fff"],
.ea-main-logo svg path[fill="#fff"]{
  fill:#FFFFFF!important;
}
.ea-brand svg path,
.ea-main-logo svg path{
  stroke:#2563EB!important;
}
.ea-brand svg path:last-child,
.ea-main-logo svg path:last-child{
  stroke:#0891B2!important;
}
.ea-brand span,
.ea-main-logo{
  filter:none!important;
}

/* Hero */
.ea-heading{
  padding-top:6px!important;
}
.ea-heading h1{
  color:var(--v36-text)!important;
  font-weight:760!important;
  letter-spacing:-.04em!important;
}
.ea-heading p{
  color:var(--v36-muted)!important;
  font-weight:450;
}

/* Main commerce card */
.ea-shop{
  background:#FFFFFF!important;
  border:1px solid var(--v36-line)!important;
  box-shadow:
    0 16px 36px rgba(15,23,42,.055),
    0 2px 5px rgba(15,23,42,.025)!important;
}
.ea-shop h2{
  color:var(--v36-text)!important;
  font-weight:750!important;
}
.ea-shop-sub{
  color:var(--v36-muted)!important;
}

/* Trust line: no floating pills */
.ea-trust-line{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px;
  margin:-5px 0 18px;
  color:#64748B;
  font-size:8.8px;
  font-weight:560;
}
.ea-trust-line i{
  width:3px;
  height:3px;
  border-radius:50%;
  background:#94A3B8;
}

/* Form labels and controls */
.ea-field label{
  color:#475569!important;
  font-weight:680!important;
}
.ea-select{
  border:1px solid var(--v36-line-2)!important;
  background:#FFFFFF!important;
  box-shadow:0 1px 1px rgba(15,23,42,.02)!important;
}
.ea-select:focus-within{
  border-color:#6EA0FF!important;
  box-shadow:0 0 0 3px rgba(37,99,235,.10)!important;
}
.ea-select>span{
  color:var(--v36-blue)!important;
}
.ea-select select{
  color:#1E293B!important;
  font-weight:620!important;
}
.ea-select i{
  color:#64748B!important;
}

/* Live notice */
.ea-live-notice{
  border-color:#DBEAFE!important;
  background:#F8FBFF!important;
}
.ea-live-notice>span{
  background:#EFF6FF!important;
  color:var(--v36-blue)!important;
}
.ea-live-notice b{
  color:#1E293B!important;
}
.ea-live-notice p{
  color:#64748B!important;
}

/* Plan summary */
.ea-summary{
  border:1px solid #D8E4F4!important;
  background:#F8FBFF!important;
}
.ea-summary span{
  color:#64748B!important;
}
.ea-summary b{
  color:#1E293B!important;
  font-weight:700!important;
}
.ea-summary strong{
  color:var(--v36-blue)!important;
  font-weight:780!important;
}

/* CTA */
.ea-continue{
  background:var(--v36-blue)!important;
  color:#FFFFFF!important;
  box-shadow:0 7px 16px rgba(37,99,235,.18)!important;
  font-weight:720!important;
}
.ea-continue:hover:not(:disabled){
  background:var(--v36-blue-dark)!important;
  transform:translateY(-1px);
}
.ea-continue:disabled{
  background:#E2E8F0!important;
  color:#94A3B8!important;
  box-shadow:none!important;
}

/* Helper rows */
.ea-help a{
  background:#FFFFFF!important;
  border-color:var(--v36-line)!important;
  box-shadow:0 2px 7px rgba(15,23,42,.025)!important;
}
.ea-help>a>span{
  background:#EFF6FF!important;
  color:var(--v36-blue)!important;
}
.ea-help b{
  color:#1E293B!important;
  font-weight:690!important;
}
.ea-help small{
  color:#64748B!important;
}
.ea-help i{
  color:#94A3B8!important;
}

/* Footer + bottom navigation */
.ea-footer{
  color:#94A3B8!important;
}
.ea-footer div:first-child{
  color:#64748B!important;
}
.ea-bottom{
  background:rgba(255,255,255,.98)!important;
  border-top:1px solid var(--v36-line)!important;
}
.ea-bottom a{
  color:#94A3B8!important;
}
.ea-bottom a.active{
  color:var(--v36-blue)!important;
}
.ea-bottom a.active span{
  text-shadow:none!important;
}

/* Remove washed gradients inherited from earlier versions */
.ea-body,
.ea-shop,
.ea-summary,
.ea-live-notice,
.ea-help>a>span{
  background-image:none!important;
}

/* Sharper control rhythm */
.ea-select,
.ea-continue{
  border-radius:11px!important;
}
.ea-shop{
  border-radius:18px!important;
}
.ea-help a{
  border-radius:12px!important;
}

@media(max-width:480px){
  .ea-trust-line{
    font-size:8.3px;
    gap:6px;
  }
}

/* ===== V42 Daily 1–5GB/day × 1–30 days ===== */
.package-info{
  background:linear-gradient(135deg,#f5f9ff,#eef7ff)!important;
  border-style:dashed!important;
  cursor:default!important;
}
.package-info strong{
  color:#657a92!important;
  font-size:12px!important;
}
.package-info .chev{
  color:#a5b0bd!important;
}
@media(max-width:620px){
  .daily-radio-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))!important;
  }
  .daily-radio:last-child{
    grid-column:1/-1;
  }
}

/* ===== V43 Apple-like Typography System ===== */
html,body,button,input,select,textarea{
  font-family:"SF Pro Display","SF Pro Text",-apple-system,BlinkMacSystemFont,"Helvetica Neue","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif!important;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
body{
  font-weight:400;
  letter-spacing:0;
}
h1,h2,h3,h4,.hero h1,.page-head h1,.section-head h2{
  font-family:"SF Pro Display",-apple-system,BlinkMacSystemFont,"Helvetica Neue","PingFang SC",sans-serif!important;
  font-weight:650!important;
  letter-spacing:-0.035em!important;
}
p,small,span,input,select,button{
  font-family:"SF Pro Text",-apple-system,BlinkMacSystemFont,"Helvetica Neue","PingFang SC",sans-serif!important;
}
.eyebrow,.section-kicker{
  font-weight:700!important;
  letter-spacing:.07em!important;
}
.dest-main b,.country-copy b,.menu-row b,.quick b,.package b{
  font-weight:620!important;
  letter-spacing:-.012em!important;
}
.dest-price strong,.package strong,.summary strong{
  font-weight:650!important;
  letter-spacing:-.02em!important;
}
@media(max-width:620px){
  .hero h1{font-size:40px!important;line-height:1.12!important}
  .page-head h1{font-size:30px!important;line-height:1.16!important}
  .section-head h2{font-size:24px!important;line-height:1.18!important}
  .dest-main b{font-size:15px!important;line-height:1.28!important}
  .dest-main small{font-size:10px!important;line-height:1.35!important}
  .dest-price strong{font-size:16px!important;line-height:1.16!important}
  .dest-price span{font-size:9px!important;line-height:1.2!important}
  .menu-row b{font-size:14.5px!important;line-height:1.28!important}
  .menu-row small{font-size:10.5px!important;line-height:1.42!important}
  .hero p,.page-head p{font-size:12.5px!important;line-height:1.6!important}
}
@media(min-width:621px){
  .hero h1{font-size:54px!important;line-height:1.08!important}
  .page-head h1{font-size:42px!important;line-height:1.1!important}
  .section-head h2{font-size:30px!important;line-height:1.15!important}
}

/* ===== V44 Horizontal Commercial Layout ===== */
.h-content{padding-top:18px!important}
.h-hero{
  position:relative;
  min-height:330px;
  overflow:hidden;
  border:1px solid #d8e7f7;
  border-radius:30px;
  background:
    radial-gradient(circle at 86% 26%,rgba(45,173,255,.20),transparent 31%),
    linear-gradient(135deg,#ffffff 0%,#eff8ff 53%,#dcedff 100%);
  box-shadow:0 14px 36px rgba(44,83,128,.07);
  padding:28px 30px;
}
.h-hero-copy{position:relative;z-index:2;max-width:520px}
.h-hero h1{
  margin:16px 0 10px;
  font-size:46px!important;
  line-height:1.08!important;
  max-width:470px;
}
.h-hero p{
  margin:0;
  max-width:480px;
  color:#60728a;
  font-size:14px;
  line-height:1.6;
}
.h-hero-actions{display:flex;gap:9px;margin-top:22px;position:relative;z-index:3}
.h-primary{margin:0!important;min-width:130px}
.h-secondary{
  min-height:49px;
  padding:0 20px;
  border:1px solid #cfdceb;
  border-radius:15px;
  background:rgba(255,255,255,.86);
  color:#34516f;
  font-size:12px;
  font-weight:700;
}
.h-hero-art{
  position:absolute;
  right:8px;
  bottom:-14px;
  width:46%;
  max-width:480px;
  min-width:330px;
}
.h-search{
  margin-top:14px;
  height:62px;
  display:flex;
  align-items:center;
  gap:12px;
  border:1px solid #dce6f1;
  border-radius:19px;
  padding:0 17px;
  background:#fff;
}
.h-search .icon{color:#0879ff}
.h-search input{
  width:100%;
  border:0;
  outline:0;
  background:transparent;
  color:#15324f;
  font-size:14px;
}
.h-mini-trust{
  display:flex;
  gap:7px;
  flex-wrap:wrap;
  margin-top:10px;
}
.h-mini-trust span{
  padding:7px 10px;
  border:1px solid #dce7f2;
  border-radius:999px;
  background:#fff;
  color:#687a90;
  font-size:9px;
  font-weight:650;
}
.h-section-head{
  margin:29px 0 13px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
}
.h-section-head h2{
  margin:5px 0 0;
  font-size:25px!important;
  line-height:1.16!important;
}
.h-link{
  border:0;
  background:transparent;
  color:#0879ff;
  font-size:10px;
  font-weight:700;
}
.h-note{font-size:10px;color:#7d8999}
.h-pop-scroll,.h-plan-scroll{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding-bottom:4px;
  scroll-snap-type:x proximity;
  scrollbar-width:none;
}
.h-pop-scroll::-webkit-scrollbar,.h-plan-scroll::-webkit-scrollbar{display:none}
.h-pop-card{
  flex:0 0 172px;
  min-height:150px;
  padding:15px;
  border:1px solid #dfe7f0;
  border-radius:20px;
  background:#fff;
  text-align:left;
  scroll-snap-align:start;
}
.h-flag{
  width:48px;
  height:48px;
  display:grid;
  place-items:center;
  border-radius:15px;
  background:#f2f6fb;
  font-size:27px;
}
.h-pop-copy{margin-top:13px}
.h-pop-copy b{
  display:block;
  font-size:15px;
  line-height:1.25;
}
.h-pop-copy span{
  display:block;
  margin-top:3px;
  color:#7a8798;
  font-size:9px;
  line-height:1.25;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.h-pop-card strong{
  display:block;
  margin-top:13px;
  color:#0869dd;
  font-size:16px;
}
.h-plan-card{
  flex:0 0 148px;
  min-height:132px;
  padding:14px;
  border:1px solid #dce7f1;
  border-radius:19px;
  background:linear-gradient(180deg,#fff,#f9fcff);
  text-align:left;
  scroll-snap-align:start;
}
.h-plan-badge{
  display:inline-flex;
  padding:4px 7px;
  border-radius:999px;
  background:#eaf4ff;
  color:#0879ff;
  font-size:8px;
  font-weight:700;
}
.h-plan-card b{
  display:block;
  margin-top:11px;
  font-size:16px;
}
.h-plan-card small{
  display:block;
  margin-top:4px;
  color:#7b8898;
  font-size:9px;
}
.h-plan-card strong{
  display:block;
  margin-top:12px;
  color:#0879ff;
  font-size:16px;
}
.h-tabs{margin-bottom:2px}
.h-country-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:10px;
  margin-top:12px;
}
.h-country-card{
  min-height:168px;
  padding:14px;
  border:1px solid #dfe7f0;
  border-radius:20px;
  background:#fff;
  text-align:left;
  display:flex;
  flex-direction:column;
}
.h-country-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
.h-country-flag{
  width:46px;
  height:46px;
  border-radius:14px;
  background:#f2f6fb;
  display:grid;
  place-items:center;
  font-size:26px;
}
.h-country-price{
  text-align:right;
  min-width:72px;
}
.h-country-price span{
  display:block;
  color:#8995a4;
  font-size:8px;
  line-height:1.2;
}
.h-country-price strong{
  display:block;
  margin-top:4px;
  color:#0869dd;
  font-size:14px;
  line-height:1.2;
  white-space:nowrap;
}
.h-country-name{
  margin-top:13px;
  min-width:0;
}
.h-country-name b{
  display:block;
  font-size:15px;
  line-height:1.25;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.h-country-name span{
  display:block;
  margin-top:4px;
  color:#7c8999;
  font-size:9px;
  line-height:1.3;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.h-country-meta{
  margin-top:auto;
  padding-top:12px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  color:#6f7e91;
  font-size:9px;
  border-top:1px solid #edf1f5;
}
.h-country-meta .chev{width:14px;height:14px;color:#9aa7b5}
.country-empty{grid-column:1/-1}

@media(max-width:760px){
  .h-country-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .h-hero{min-height:380px;padding:24px 21px}
  .h-hero h1{font-size:38px!important;max-width:285px}
  .h-hero p{font-size:12.5px;max-width:285px}
  .h-hero-art{width:58%;min-width:245px;right:-16px}
  .h-pop-card{flex-basis:155px}
  .h-plan-card{flex-basis:136px}
}
@media(max-width:380px){
  .h-country-grid{grid-template-columns:1fr 1fr}
  .h-country-card{min-height:160px;padding:12px}
  .h-country-price{min-width:64px}
  .h-country-price strong{font-size:13px}
}
@media(min-width:900px){
  .h-country-grid{grid-template-columns:repeat(4,minmax(0,1fr))}
  .h-pop-scroll,.h-plan-scroll{overflow:visible;display:grid;grid-template-columns:repeat(4,1fr)}
  .h-pop-card,.h-plan-card{width:auto;min-width:0}
}

/* V55 public */
.prose a{color:#1769c2;text-decoration:none}.prose a:hover{text-decoration:underline}.footer-bottom a{color:inherit;text-decoration:underline;text-underline-offset:3px}

.business-disclosure-link{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 16px;border:1px solid #e4e9ef;border-radius:16px;background:#fff;color:inherit;text-decoration:none}
.business-disclosure-link b{font-size:12px}.business-disclosure-link span{font-size:10px;color:#6f7d90;text-align:right}

/* V60.4: preserve native hidden behavior inside checkout and clarify helper text. */
.checkout-body [hidden]{display:none!important}
.field-hint{display:block;margin-top:2px;color:#7c8893;font-size:9px;line-height:1.55}

/* ===== V60.6 FINAL MOBILE POLISH ===== */
.site-stage-banner{
  min-height:34px;
  padding:7px 14px;
  background:#f7faff;
  border-bottom:1px solid #e2eaf3;
  color:#617087;
  font-size:10.5px;
  line-height:1.35;
  white-space:normal;
}
.site-stage-banner span{color:inherit}
.site-stage-banner b{color:#326aa8;font-weight:700}

.contact-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.contact-grid .feature{min-height:164px}
.contact-grid .feature .icon svg{width:19px;height:19px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.contact-note{margin-top:14px;padding:14px 16px;border:1px solid var(--line);border-radius:16px;background:#fbfcfe;color:#6b7888;font-size:11.5px;line-height:1.6}

@media(max-width:680px){
  body{padding-bottom:calc(70px + env(safe-area-inset-bottom))}
  .container{width:min(calc(100% - 34px),620px)}
  .header-inner{height:62px;gap:12px}
  .brand{gap:10px}
  .brand>img.brand-logo{width:38px!important;height:38px!important;flex:0 0 38px!important}
  .brand-name{font-size:18px!important;line-height:1!important}
  .actions .btn.primary{min-height:38px;padding:0 15px;font-size:12px;border-radius:999px}
  .page-head{padding:28px 0 12px}
  .section.tight{padding-top:14px;padding-bottom:28px}
  .feature-grid{grid-template-columns:1fr;gap:10px}
  .feature{padding:16px}
  .feature .icon{width:38px;height:38px;margin-bottom:10px}
  .feature h3{font-size:15px}
  .feature p{font-size:11.5px;line-height:1.55}
  .contact-grid{grid-template-columns:1fr}
  .contact-grid .feature{min-height:auto}
  .contact-note{font-size:10.8px;padding:12px 14px}
  .two-col{gap:10px}
  .two-col .panel{margin:0}
  .footer{margin-top:28px;padding:28px 0 calc(88px + env(safe-area-inset-bottom))}
  .footer-grid{gap:15px 18px}
  .footer-grid>div:first-child{padding-bottom:4px}
  .footer-grid>div:nth-child(4){grid-column:1/-1;padding-top:2px}
  .footer-grid>div:nth-child(4) a{display:inline-block;margin:5px 14px 0 0}
  .footer-bottom{margin-top:15px}
  .bottom-nav{
    height:calc(62px + env(safe-area-inset-bottom));
    padding-bottom:env(safe-area-inset-bottom);
    background:rgba(255,255,255,.97);
    border-top:1px solid #e6e9ed;
    box-shadow:0 -8px 24px rgba(28,44,61,.035);
  }
  .bottom-nav a{gap:4px;font-size:10px;line-height:1.1;color:#747e89}
  .bottom-nav b{width:22px;height:22px;display:grid;place-items:center;font-size:0;font-weight:400}
  .bottom-nav b svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.85;stroke-linecap:round;stroke-linejoin:round}
  .bottom-nav span{font-size:10px;line-height:1.1;font-weight:550}
  .bottom-nav a.active{color:#1d6fd8}
}


/* ===== V60.7 COMMERCIAL UNIFICATION ===== */
:root{
  --bg:#f8fafc;
  --surface:#ffffff;
  --ink:#12233d;
  --text:#5c6c80;
  --muted:#7a899b;
  --line:#e2e9f1;
  --blue:#2378dd;
  --blue-dark:#175fb8;
  --blue-soft:#eef6ff;
  --green:#397c68;
  --green-soft:#edf8f4;
  --shadow:0 14px 38px rgba(33,77,119,.055);
}
body{background:linear-gradient(180deg,#fff 0%,#f8fafc 100%);color:var(--ink)}
.header{background:rgba(255,255,255,.96);border-bottom:1px solid #e5ebf2}
.brand-name span{color:#778493}.nav{color:#5e6d7d}.nav a:hover{color:var(--blue)}
.btn{border-color:#dfe7ef;background:#fff;color:#31445a}
.btn.primary,.btn.blue{background:var(--blue)!important;border-color:var(--blue)!important;color:#fff!important;box-shadow:0 6px 16px rgba(35,120,221,.12)}
.btn.primary:hover,.btn.blue:hover{background:var(--blue-dark)!important;border-color:var(--blue-dark)!important}
.btn.soft{background:var(--blue-soft);border-color:#dcebf9;color:#2b6eaf}
.eyebrow{color:#2d75c7}.more{color:#2f73b8}
.page-head h1,.section-head h2,.hero h1{color:#12233d}
.panel,.feature,.option,.status,.info-row,.faq details,.search-panel,.card,.plan,.destination,.step,.payment{background:#fff;border-color:var(--line)}
.footer{background:#fff;border-top:1px solid #e6ebf1}
.site-stage-banner{background:#f6f9fd;border-bottom-color:#e1e8f1;color:#617086}
.site-stage-banner b{color:#276cb8}
.supplier-test-card{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:center;gap:14px;margin-top:14px}
.supplier-test-card>div:first-child{display:grid;gap:4px}.supplier-test-card span{color:#6d7b8c;font-size:11px;line-height:1.5}
.supplier-test-result{grid-column:1/-1;padding:10px 12px;border-radius:12px;background:#edf8f4;color:#29705b;font-size:11px;font-weight:650}.supplier-test-result.bad{background:#fff3f2;color:#a33b32}
@media(max-width:680px){
  .supplier-test-card{grid-template-columns:1fr}.supplier-test-card .btn{width:100%}.supplier-test-result{grid-column:1}
  .page-head{padding-top:24px}.page-head h1{font-size:29px}.page-head p{line-height:1.6}
  .panel{border-radius:17px}.section.tight{padding-top:12px}
  .actions .btn.primary{background:var(--blue)!important;border-color:var(--blue)!important}
}


/* ===== V60.8 COMMERCIAL POLISH ===== */
body{font-family:-apple-system,BlinkMacSystemFont,"SF Pro Text","SF Pro Display","PingFang SC","Helvetica Neue",Arial,sans-serif}
.header .brand-name,.page-head h1,.panel h3,.footer h4{letter-spacing:-.025em}
.header-inner{min-height:72px}
.header .btn.primary{background:#0866ff!important;border-color:#0866ff!important;color:#fff!important;box-shadow:0 8px 22px rgba(8,102,255,.15)!important}
.header .btn{border-radius:999px!important}
.page-head{padding-top:46px!important;padding-bottom:28px!important}
.page-head h1{max-width:900px}
.panel,.card{box-shadow:0 8px 24px rgba(15,43,75,.035)}
.contact-grid .feature{align-content:start}
.contact-grid .icon{display:grid;place-items:center}
.contact-grid .icon svg{width:21px;height:21px;fill:none;stroke:currentColor;stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round}
.plan-badge{display:inline-flex;align-items:center;min-height:21px;margin-left:7px;padding:3px 7px;border-radius:999px;background:#eef5ff;color:#0866ff;font-size:8px;font-weight:800;vertical-align:middle}
.live-catalog-card>div{min-width:0}
.bottom-nav a svg{width:22px;height:22px;margin-bottom:3px}
.bottom-nav a{gap:1px;color:#7b8794}
.bottom-nav a.active{color:#0866ff}
.bottom-nav a span{font-size:9px;font-weight:650}
@media(max-width:760px){
  body{padding-bottom:74px!important}
  .header-inner{min-height:64px!important;padding-top:0!important;padding-bottom:0!important}
  .brand-logo{width:40px!important;height:40px!important}.brand-name{font-size:20px!important}
  .header .actions{gap:5px}.header .actions .btn:first-child{display:none}.header .actions .btn.primary{min-height:38px!important;padding:0 14px!important;font-size:11px!important}
  .page-head{padding-top:30px!important;padding-bottom:20px!important}.page-head h1{font-size:34px!important;line-height:1.08!important}.page-head p{font-size:11.5px!important;line-height:1.65!important}
  .section.tight{padding-top:16px!important;padding-bottom:30px!important}.panel{padding:18px!important;border-radius:18px!important}
  .two-col{gap:10px!important}.contact-grid{grid-template-columns:1fr!important;gap:10px!important}.contact-note{font-size:10px!important;line-height:1.6!important}
  .footer{margin-top:24px!important;padding-bottom:88px!important}.footer-grid{gap:20px!important}.footer-grid>div:first-child{grid-column:1/-1}.footer-bottom{font-size:9px!important;line-height:1.5}
  .bottom-nav{height:68px!important;padding-bottom:max(6px,env(safe-area-inset-bottom))!important;background:rgba(255,255,255,.96)!important;backdrop-filter:blur(16px);border-top:1px solid #e8edf3!important}
  .bottom-nav a{min-height:54px!important}
  .live-catalog-card{padding:15px!important;gap:11px!important}.live-catalog-card h2{font-size:16px!important;line-height:1.3!important}.live-catalog-card p{font-size:9.5px!important;line-height:1.5!important}.live-catalog-card .btn{min-height:40px!important;white-space:nowrap}
}


/* ===== V61.4 shared muted palette override ===== */
:root{
 --bg:#F7F8F7;
 --surface:#FFFFFF;
 --ink:#17191C;
 --text:#687078;
 --muted:#687078;
 --line:#E8EAEC;
 --blue:#35586C;
 --blue-dark:#294958;
 --blue-soft:#EDF3F5;
 --green:#28765A;
 --green-soft:#EFF5F2;
 --shadow:0 6px 18px rgba(25,40,50,.06);
}
body{background:linear-gradient(180deg,#FFFFFF 0%,#F7F8F7 100%)}
.header{background:rgba(255,255,255,.92);border-bottom:1px solid rgba(232,234,236,.96)}
.nav a:hover,.more,.check b,.brand-name span{color:var(--blue)}
.btn.primary,.btn.blue{background:var(--blue);border-color:var(--blue)}
.btn.soft,.chip.blue,.icon,.step-no{background:var(--blue-soft)!important;color:var(--blue)!important}
.hero-art,.search-panel,.card,.step,.panel,.prose{box-shadow:none}
.hero-art{background:linear-gradient(145deg,#FFFFFF,#F5F8F8);border-color:var(--line)}
.trust{background:#fff;border-color:var(--line);color:#687078}
.hero p,.section-head p,.destination p,.plan p,.scenario p,.feature p,.step p,.faq p,.page-head p,.panel p,.check,.status span,.info-row span,.prose p,.prose li,.footer a,.footer p,.footer-bottom{color:#687078}
.destination:hover{transform:none;border-color:#D5DDE0;box-shadow:none}

/* V61.12 language switcher */
.linko-lang-switcher{position:relative;z-index:10020;display:inline-flex;align-items:center;flex:0 0 auto;font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Noto Sans SC","Microsoft YaHei",Arial,sans-serif}.linko-lang-current{height:42px;max-width:132px;padding:0 12px;border:1px solid #E1E5E7;border-radius:22px;background:#fff;color:#35586C;font:600 13px/1 inherit;display:flex;align-items:center;gap:6px;white-space:nowrap}.linko-lang-menu{position:absolute;right:0;top:calc(100% + 8px);min-width:150px;padding:6px;background:#fff;border:1px solid #E1E5E7;border-radius:16px;box-shadow:0 12px 34px rgba(25,40,50,.12);display:none}.linko-lang-switcher.open .linko-lang-menu{display:grid}.linko-lang-menu button{appearance:none;border:0;background:transparent;text-align:left;padding:10px 12px;border-radius:10px;color:#17191C;font:500 14px/1.2 inherit;white-space:nowrap}.linko-lang-menu button:hover,.linko-lang-menu button:focus{background:#EDF3F5;color:#294958}.header-tools,.headerActions,.actions{align-items:center}.header-tools>.linko-lang-switcher,.headerActions>.linko-lang-switcher,.actions>.linko-lang-switcher{order:-1}@media(max-width:760px){.linko-lang-current{height:40px;max-width:112px;padding:0 10px;font-size:12px}.linko-lang-menu{position:fixed;right:14px;top:82px;min-width:160px}.header .actions .linko-lang-switcher{display:inline-flex}.header .actions>a:not(.primary){display:none}}
