/* ───────────── eSIM BFF design tokens ───────────── */
:root {
  --bg: #fbf8f4;
  --bg-alt: #f4efe8;
  --card: #ffffff;
  --ink: #17130f;
  --ink-2: #4a433c;
  --ink-3: #7a716a;
  --line: #e9e2d9;
  --accent: #c45c38;
  --accent-ink: #8f3d26;
  --accent-soft: #fde8dc;
  --sky: #fde8dc; --sky-ink: #8f3d26;
  --lavender: #e6e1fa; --lavender-ink: #6a5ac8;
  --mint: #ddf3e8; --mint-ink: #2e8b63;
  --peach: #ffe4d6; --peach-ink: #d0603a;
  --butter: #fff1c9; --butter-ink: #b8860b;
  --pink: #fbe0ea; --pink-ink: #c2456e;
  --radius: 22px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(23, 19, 15, 0.04), 0 12px 32px -16px rgba(23, 19, 15, 0.14);
  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Figtree", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  background-image: radial-gradient(rgba(23, 19, 15, 0.045) 1px, transparent 1px);
  background-size: 22px 22px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-ink); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
code { font-size: 0.9em; background: var(--bg-alt); padding: 0.1em 0.4em; border-radius: 6px; }
small { font-size: 0.85em; }
.muted { color: var(--ink-3); }
.center { text-align: center; }
.wrap { width: min(var(--wrap), calc(100% - 2.5rem)); margin-inline: auto; }
.wrap.narrow { width: min(780px, calc(100% - 2.5rem)); }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 0.5rem 1rem; z-index: 100; }
.skip:focus { left: 1rem; top: 1rem; }
.launch-banner {
  margin: 0;
  padding: 0.55rem 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--butter);
  border-bottom: 1px solid var(--line);
}
.launch-banner a { font-weight: 800; color: var(--accent-ink); }

/* ───────────── Type ───────────── */
h1, h2, h3, h4 { margin: 0; line-height: 1.1; letter-spacing: -0.01em; }
.h-hero, .h-display { font-family: var(--serif); font-weight: 600; font-variation-settings: "opsz" 144; letter-spacing: -0.025em; }
.h-hero { font-size: clamp(2.4rem, 5.4vw, 4rem); line-height: 1.02; }
.h-display { font-size: clamp(1.9rem, 3.8vw, 3rem); line-height: 1.08; }
.text-highlight {
  background-image: linear-gradient(#f3b48a, #f3b48a);
  background-repeat: no-repeat;
  background-size: 100% 0.34em;
  background-position: 0 88%;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.h-sm { font-family: var(--sans); font-weight: 700; font-size: 1.05rem; margin: 1.5rem 0 0.75rem; }
h3 { font-weight: 700; font-size: 1.15rem; }
p { margin: 0 0 1rem; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-2); max-width: 62ch; }
.center .lead { margin-inline: auto; }
.fineprint { font-size: 0.85rem; color: var(--ink-3); }
.eyebrow { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink); margin-bottom: 0.9rem; }
.eyebrow-pill { background: #fff; border: 1px solid var(--line); padding: 0.45rem 0.95rem; border-radius: 999px; }
.section-head { margin-bottom: 2.25rem; }
.section-head.center { text-align: center; }
.section-head .lead { margin-top: 0.9rem; }
.split-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.split-head .section-head { margin-bottom: 0; }

/* ───────────── Buttons ───────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-weight: 600; font-size: 0.98rem; padding: 0.8rem 1.35rem; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer; transition: transform 0.12s ease, background 0.12s ease, box-shadow 0.12s ease; text-decoration: none !important; line-height: 1.2; font-family: inherit; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px -10px rgba(196, 92, 56, 0.5); }
.btn-primary:hover { background: var(--accent-ink); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { background: #fff; }
.btn-lg { padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ───────────── Header ───────────── */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(251, 248, 244, 0.88); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 74px; }
.logo { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--ink); text-decoration: none !important; }
.logo-mark { display: block; width: 40px; height: 40px; border-radius: 22%; object-fit: cover; flex: none; box-shadow: 0 6px 14px -10px rgba(196, 92, 56, 0.4); }
.footer-love .logo-mark { width: 18px; height: 18px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-family: var(--serif); font-weight: 700; font-size: 1.45rem; letter-spacing: -0.02em; }
.logo-bff { color: var(--accent); font-style: normal; }
.logo-tag { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); margin-top: 0.3rem; font-weight: 600; }
.main-nav { display: flex; gap: 1.6rem; }
.main-nav a { color: var(--ink-2); font-weight: 500; font-size: 0.98rem; }
.main-nav a:hover, .main-nav a[aria-current] { color: var(--ink); text-decoration: none; }
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.switchers { display: flex; align-items: center; gap: 0.15rem; }
.switch { position: relative; }
.switch-btn { list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 0.4rem; min-height: 40px; padding: 0.35rem 0.55rem; border-radius: 999px; border: 0; background: transparent; font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.switch-btn::-webkit-details-marker { display: none; }
.switch-btn:hover, .switch[open] .switch-btn { background: #fff; }
.switch-flag { font-size: 1.2rem; line-height: 1; }
.switch-panel { position: absolute; right: 0; top: calc(100% + 0.55rem); z-index: 80; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); padding: 0.75rem; width: min(360px, calc(100vw - 1.5rem)); max-height: min(72vh, 540px); overflow: hidden; display: grid; grid-template-rows: auto 1fr; }
.switch-panel-lang { width: min(440px, calc(100vw - 1.5rem)); }
.switch-panel-wide { width: min(340px, calc(100vw - 1.5rem)); }
.switch-title { margin: 0.15rem 0 0.45rem; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); padding: 0 0.55rem; }
.switch-search { width: 100%; margin-bottom: 0.55rem; padding: 0.7rem 0.95rem; border: 1px solid var(--line); border-radius: 999px; font: inherit; background: var(--bg); }
.switch-list { overflow: auto; display: grid; min-height: 0; }
.switch-row, .lang-row { display: flex; align-items: center; justify-content: space-between; gap: 0.7rem; padding: 0.5rem 0.55rem; border-radius: 8px; color: var(--ink); text-decoration: none !important; font-weight: 500; font-size: 0.95rem; }
.switch-row[hidden], .lang-row[hidden] { display: none !important; }
.switch-row:hover, .lang-row:hover { background: #f5f5f5; }
.switch-row.is-active { background: #f5f5f5; }
.switch-name { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.switch-row small { color: var(--ink-3); font-weight: 600; white-space: nowrap; }
.lang-chips { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 0.25rem; flex: none; }
.lang-chip { min-width: 1.9rem; height: 1.5rem; padding: 0 0.4rem; border-radius: 4px; background: #e5e5e5; color: #404040; font-size: 0.7rem; font-weight: 400; letter-spacing: 0.02em; display: inline-flex; align-items: center; justify-content: center; text-decoration: none !important; }
a.lang-chip:hover { background: #d4d4d4; }
.lang-chip.is-active { background: var(--accent-soft); color: var(--accent-ink); font-weight: 700; }
.switch-rule { height: 1px; background: var(--line); margin: 0.4rem 0.5rem; }
.mobile-menu { display: none; position: relative; }
.mobile-menu summary { list-style: none; cursor: pointer; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; border: 1px solid var(--line); background: #fff; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.burger { display: grid; gap: 4px; }
.burger i { display: block; width: 18px; height: 2px; background: var(--ink); border-radius: 2px; }
.mobile-nav { position: absolute; right: 0; top: calc(100% + 0.5rem); background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); box-shadow: var(--shadow); padding: 0.75rem; display: grid; gap: 0.25rem; min-width: 220px; }
.mobile-nav a { padding: 0.6rem 0.8rem; border-radius: 8px; color: var(--ink); font-weight: 500; }
.mobile-nav a:hover { background: var(--bg-alt); text-decoration: none; }
.mobile-nav .btn { margin-top: 0.5rem; }
.switchers-in-menu { display: none; }
@media (max-width: 900px) {
  .main-nav, .header-actions > .btn, .switchers-bar { display: none; }
  .mobile-menu { display: block; }
  .switchers-in-menu { display: block; padding: 0 0 0.55rem; margin-bottom: 0.35rem; border-bottom: 1px solid var(--line); }
  .switchers-in-menu .switchers { display: grid; gap: 0.15rem; }
  .switchers-in-menu .switch { width: 100%; }
  .switchers-in-menu .switch-btn { width: 100%; justify-content: flex-start; border-radius: 8px; padding: 0.6rem 0.8rem; }
  .switchers-in-menu .switch-panel {
    position: static;
    width: 100%;
    max-height: min(46vh, 360px);
    margin-top: 0.3rem;
    box-shadow: none;
    border-radius: 12px;
  }
  .switchers-in-menu .switch-panel-lang,
  .switchers-in-menu .switch-panel-wide { width: 100%; }
  .mobile-nav { min-width: min(360px, calc(100vw - 1.5rem)); max-height: min(80vh, 640px); overflow: auto; }
}

/* ───────────── Sections ───────────── */
.section { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.section-alt { background: var(--bg-alt); }
.page-hero { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem); }
.page-hero .lead { margin-top: 1rem; }

/* ───────────── Hero ───────────── */
.hero { padding: clamp(2rem, 5vw, 4.5rem) 0 clamp(2.5rem, 5vw, 5rem); position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: auto -10% -40% -10%; height: 60%; background: radial-gradient(60% 80% at 20% 100%, rgba(255, 228, 214, 0.75), transparent 60%), radial-gradient(50% 70% at 80% 100%, rgba(253, 232, 220, 0.95), transparent 60%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: center; position: relative; }
.hero-copy .lead { margin-top: 1.25rem; }
.hero-ctas { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 1.75rem 0 1rem; }
.hero-facts { list-style: none; padding: 0; margin: 1.25rem 0 1.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem 1.25rem; color: var(--ink-2); font-size: 0.95rem; }
.hero-facts li { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-facts svg { color: var(--accent); }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } .hero-visual { order: -1; } }

/* Phone mock */
.phone { width: min(340px, 100%); margin-inline: auto; background: var(--ink); border-radius: 44px; padding: 10px; box-shadow: 0 30px 60px -30px rgba(23, 19, 15, 0.5); position: relative; }
.phone-notch { position: absolute; top: 18px; left: 50%; transform: translateX(-50%); width: 110px; height: 26px; background: var(--ink); border-radius: 999px; z-index: 2; }
.phone-screen { background: #fff; border-radius: 36px; padding: 3.2rem 1.15rem 1.15rem; display: grid; gap: 0.55rem; }
.phone-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; }
.phone-top .eyebrow, .phone-screen > .eyebrow { margin-bottom: 0.15rem; font-size: 0.62rem; }
.phone-title { font-family: var(--serif); font-weight: 700; font-size: 1.15rem; line-height: 1.15; display: block; }
.phone-img { border-radius: 18px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--sky); }
.phone-img img { width: 100%; height: 100%; object-fit: cover; }
.phone-bar { height: 8px; border-radius: 999px; background: var(--bg-alt); overflow: hidden; }
.phone-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--accent), #e8a07a); border-radius: 999px; }
.phone-chips { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.phone-rows { display: grid; gap: 0.45rem; margin-top: 0.25rem; }
.phone-row { display: flex; align-items: center; gap: 0.65rem; background: var(--bg); border-radius: 14px; padding: 0.6rem 0.7rem; }
.phone-row strong { display: block; font-size: 0.9rem; }
.phone-row small { color: var(--ink-3); font-size: 0.75rem; }
.phone-cta { display: flex; justify-content: space-between; align-items: center; background: var(--ink); color: #fff; border-radius: 14px; padding: 0.75rem 0.9rem; font-weight: 600; font-size: 0.9rem; margin-top: 0.25rem; }
.phone-cta .muted { color: rgba(255, 255, 255, 0.6); font-weight: 500; font-size: 0.8rem; }

/* pills & chips */
.pill { display: inline-block; font-size: 0.75rem; font-weight: 700; padding: 0.3rem 0.65rem; border-radius: 999px; }
.pill-mint { background: var(--mint); color: var(--mint-ink); }
.pill-sky { background: var(--sky); color: var(--sky-ink); }
.chip { display: inline-flex; align-items: center; gap: 0.35rem; background: var(--bg-alt); border-radius: 999px; padding: 0.35rem 0.75rem; font-size: 0.85rem; font-weight: 600; color: var(--ink); }
.chip-link { background: #fff; border: 1px solid var(--line); text-decoration: none !important; }
.chip-link:hover { border-color: var(--ink); }
.chip-list { list-style: none; padding: 0; margin: 0 0 0.5rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }

/* ───────────── Tiles / icons ───────────── */
.tile { display: inline-grid; place-items: center; width: var(--tile-size, 64px); height: var(--tile-size, 64px); border-radius: 22%; background: var(--tile-bg); box-shadow: inset 0 -6px 12px rgba(255, 255, 255, 0.6), inset 0 2px 6px rgba(255, 255, 255, 0.9), 0 6px 14px -8px var(--tile-fg); }
.flag { display: inline-grid; place-items: center; font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif; line-height: 1; }
.flag-sm { font-size: 1.15rem; }
.flag-md { font-size: 1.6rem; }
.flag-lg { font-size: 2.1rem; width: 52px; height: 52px; background: var(--bg-alt); border-radius: 14px; }

/* ───────────── Pillars ───────────── */
.pillars { padding: 0 0 clamp(2rem, 4vw, 3rem); }
.pillars-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.pillar { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.35rem; display: grid; gap: 0.9rem; }
.pillar-img { width: 88px; height: 88px; border-radius: 18px; object-fit: contain; background: #fbf8f4; }
.pillar h3 { font-size: 1.02rem; margin-bottom: 0.35rem; }
.pillar p { font-size: 0.92rem; color: var(--ink-2); margin: 0; }
@media (max-width: 1000px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pillars-grid { grid-template-columns: 1fr; } }

/* ───────────── Destination picker ───────────── */
.picker-controls { display: flex; gap: 1rem; justify-content: space-between; align-items: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.gb-toggle { display: inline-flex; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 4px; gap: 2px; }
.gb-toggle button { border: 0; background: transparent; font: inherit; font-weight: 600; font-size: 0.9rem; padding: 0.5rem 0.95rem; border-radius: 999px; cursor: pointer; color: var(--ink-2); }
.gb-toggle button.is-active { background: var(--ink); color: #fff; }
.search { display: flex; align-items: center; gap: 0.6rem; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 0.35rem 0.5rem 0.35rem 1rem; min-width: min(340px, 100%); color: var(--ink-3); }
.search input { border: 0; outline: 0; font: inherit; flex: 1; background: transparent; color: var(--ink); min-width: 0; padding: 0.4rem 0; }
.search:focus-within { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.search-lg { margin-top: 1.5rem; max-width: 560px; padding: 0.45rem 0.45rem 0.45rem 1.1rem; }
.search-lg input { font-size: 1.05rem; }
.dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; }
.dest-grid[hidden] { display: none !important; }
@media (max-width: 1000px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .dest-grid { grid-template-columns: 1fr; } }
.dest-card { display: flex; align-items: center; gap: 0.85rem; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 0.9rem 1rem; color: var(--ink); text-decoration: none !important; transition: transform 0.12s, box-shadow 0.12s, border-color 0.12s; }
.dest-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: #d8cfc4; }
.dest-body { flex: 1; min-width: 0; display: grid; }
.dest-name { font-weight: 700; font-size: 0.98rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dest-gb { color: var(--ink-3); font-weight: 600; }
.dest-meta { font-size: 0.78rem; color: var(--ink-3); }
.dest-price { font-family: var(--serif); font-weight: 700; font-size: 1.2rem; }
.dest-results:not([hidden]) { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.9rem; margin-top: 0.9rem; }
@media (max-width: 1000px) { .dest-results:not([hidden]) { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .dest-results:not([hidden]) { grid-template-columns: 1fr; } }
.dest-empty { grid-column: 1 / -1; text-align: center; color: var(--ink-3); padding: 1rem; }

/* ───────────── Steps ───────────── */
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; counter-reset: step; }
.steps-vertical { grid-template-columns: 1fr; }
.step { background: #fff; border-radius: var(--radius); padding: 1.6rem; border: 1px solid var(--line); }
.step-n { display: inline-block; font-family: var(--serif); font-weight: 700; color: var(--accent); font-size: 1.5rem; margin-bottom: 0.9rem; font-style: italic; }
.step h3 { margin-bottom: 0.4rem; }
.step p { margin: 0; color: var(--ink-2); font-size: 0.97rem; }
@media (max-width: 1000px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ───────────── Feature cards ───────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature-grid.compact { grid-template-columns: repeat(2, 1fr); }
.feature-card { background: #fff; border-radius: var(--radius); padding: 1.6rem; border: 1px solid var(--line); display: grid; gap: 0.75rem; align-content: start; color: var(--ink); }
.feature-card .tile { margin-bottom: 0.35rem; }
.feature-img { width: 96px; height: 96px; border-radius: 22%; object-fit: cover; margin-bottom: 0.35rem; box-shadow: 0 8px 18px -12px rgba(23, 19, 15, 0.35); }
.feature-card p { margin: 0; color: var(--ink-2); font-size: 0.97rem; }
.feature-link { text-decoration: none !important; transition: transform 0.12s, box-shadow 0.12s; }
.feature-link:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.link-arrow { font-weight: 600; color: var(--accent-ink); }
@media (max-width: 1000px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid, .feature-grid.compact { grid-template-columns: 1fr; } }

/* ───────────── Coverage ───────────── */
.coverage-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.coverage-art { margin: 0; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); }
.coverage-art img { width: 100%; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin: 1.5rem 0; }
.stats > div { background: #fff; border-radius: 16px; border: 1px solid var(--line); padding: 0.9rem 1rem; }
.stats dt { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); font-weight: 700; }
.stats dd { margin: 0.15rem 0 0; font-family: var(--serif); font-weight: 700; font-size: 1.6rem; }
@media (max-width: 900px) { .coverage-grid { grid-template-columns: 1fr; } .stats { grid-template-columns: repeat(2, 1fr); } }

/* ───────────── Tables ───────────── */
.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
th, td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
thead th { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); background: var(--bg); }
tbody tr:last-child td, tbody tr:last-child th { border-bottom: 0; }
tbody th { font-weight: 600; }
tbody th a { color: var(--ink); display: inline-flex; align-items: center; gap: 0.5rem; }
.compare-table td { text-align: center; }
.compare-table th.is-us, .compare-table td.is-us { background: var(--sky); }
.compare-table thead th.is-us { color: var(--sky-ink); }
.compare-table thead th .pill { margin-right: 0.35rem; }
.compare-duo td.is-us { text-align: left; }
.compare-duo td { text-align: left; }
.mark { display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 999px; font-weight: 700; }
.mark-yes { background: var(--mint); color: var(--mint-ink); }
.mark-no { color: var(--ink-3); }
.mark-partial { background: var(--butter); color: var(--butter-ink); font-size: 0.9rem; }
.rates-table td { font-variant-numeric: tabular-nums; }

/* ───────────── Quotes ───────────── */
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.quote { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; display: grid; gap: 1rem; }
.quote p { margin: 0; font-family: var(--serif); font-size: 1.15rem; line-height: 1.45; font-weight: 500; }
.quote footer { display: flex; align-items: center; gap: 0.6rem; color: var(--ink-2); font-size: 0.92rem; }
@media (max-width: 800px) { .quote-grid { grid-template-columns: 1fr; } }

/* ───────────── FAQ ───────────── */
.faq-list { display: grid; gap: 0.6rem; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: 16px; }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 1.25rem; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq-plus { font-size: 1.4rem; color: var(--ink-3); transition: transform 0.15s; line-height: 1; }
.faq[open] .faq-plus { transform: rotate(45deg); }
.faq-a { padding: 0 1.25rem 1.1rem; color: var(--ink-2); }
.faq-a p { margin: 0; }

/* ───────────── Lists / misc ───────────── */
.guide-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.guide-list a { display: flex; align-items: center; gap: 0.9rem; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0.85rem 1rem; color: var(--ink); font-weight: 600; text-decoration: none !important; }
.guide-list a:hover { border-color: var(--ink); }
.guide-emoji { font-size: 1.4rem; width: 40px; height: 40px; display: grid; place-items: center; background: var(--bg-alt); border-radius: 10px; }
.guide-emoji-lg { font-size: 1.9rem; width: 56px; height: 56px; border-radius: 14px; }
.check-list { list-style: none; padding: 0; margin: 0 0 1rem; display: grid; gap: 0.55rem; }
.check-list li { display: flex; gap: 0.6rem; align-items: flex-start; }
.check-list svg { flex: none; color: var(--mint-ink); margin-top: 0.25rem; }
.country-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.35rem 1rem; }
.country-list a { color: var(--ink); display: flex; align-items: center; gap: 0.5rem; padding: 0.45rem 0.5rem; border-radius: 10px; }
.country-list a:hover { background: #fff; text-decoration: none; }
.country-list small { color: var(--ink-3); margin-left: auto; }
@media (max-width: 1000px) { .country-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .country-list { grid-template-columns: 1fr; } }
.callout { display: flex; gap: 0.7rem; align-items: center; background: var(--sky); color: var(--sky-ink); border-radius: 16px; padding: 1rem 1.25rem; margin-top: 1.5rem; font-weight: 500; }
.callout a { color: inherit; text-decoration: underline; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.facts { margin: 0; display: grid; gap: 0.6rem; }
.facts > div { display: grid; grid-template-columns: 120px 1fr; gap: 0.75rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--line); }
.facts > div:last-child { border-bottom: 0; padding-bottom: 0; }
.facts dt { color: var(--ink-3); font-size: 0.85rem; font-weight: 600; }
.facts dd { margin: 0; font-weight: 500; }
.crumbs { font-size: 0.85rem; margin-bottom: 1rem; }
.crumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 0.35rem; color: var(--ink-3); }
.crumbs li + li::before { content: "/"; margin-right: 0.35rem; color: var(--line); }
.crumbs a { color: var(--ink-3); }

/* Country hero */
.country-hero { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 2.5rem; align-items: start; }
.country-hero .h-hero .flag { vertical-align: middle; margin-right: 0.25rem; }
@media (max-width: 900px) { .country-hero { grid-template-columns: 1fr; } }

/* Plans */
.plan-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.9rem; }
.plan-card { position: relative; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.2rem; display: grid; gap: 0.35rem; align-content: start; }
.plan-card.is-popular { border-color: var(--accent); box-shadow: var(--shadow); }
.plan-badge { position: absolute; top: -0.7rem; left: 1rem; background: var(--accent); color: #fff; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.3rem 0.6rem; border-radius: 999px; }
.plan-gb { font-family: var(--serif); font-weight: 700; font-size: 2.2rem; line-height: 1; }
.plan-gb small { font-size: 1rem; color: var(--ink-3); font-family: var(--sans); font-weight: 600; }
.plan-price { font-weight: 700; font-size: 1.35rem; margin-top: 0.4rem; }
.plan-pergb { font-size: 0.82rem; color: var(--ink-3); }
.plan-facts { list-style: none; padding: 0; margin: 0.9rem 0 1.1rem; display: grid; gap: 0.35rem; font-size: 0.85rem; color: var(--ink-2); }
.plan-facts li { display: flex; align-items: center; gap: 0.4rem; }
.plan-facts svg { color: var(--accent); }
@media (max-width: 1100px) { .plan-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .plan-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .plan-grid { grid-template-columns: 1fr; } }

/* Article */
.article h2 { font-family: var(--serif); font-weight: 600; font-size: 1.7rem; margin: 2.5rem 0 0.9rem; letter-spacing: -0.02em; }
.article p, .article li { font-size: 1.05rem; color: var(--ink-2); }
.article ul, .article ol { padding-left: 1.4rem; }
.article li { margin-bottom: 0.45rem; }
.article li::marker { color: var(--accent); font-weight: 700; }
.toc { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 1.1rem 1.3rem; margin-bottom: 1rem; font-size: 0.92rem; }
.toc ol { margin: 0.5rem 0 0; padding-left: 1.2rem; columns: 2; column-gap: 2rem; }
.toc li { margin-bottom: 0.25rem; break-inside: avoid; }
@media (max-width: 600px) { .toc ol { columns: 1; } }

/* Checkout */
.checkout-form { display: grid; gap: 0.9rem; margin-top: 1.25rem; }
.checkout-form label { display: grid; gap: 0.35rem; font-weight: 600; font-size: 0.9rem; }
.checkout-form input, .facts select { font: inherit; padding: 0.75rem 0.9rem; border: 1.5px solid var(--line); border-radius: 12px; background: #fff; }
.checkout-form input:focus, .facts select:focus { outline: 0; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.facts select { padding: 0.4rem 0.6rem; }

/* CTA band */
.cta-band { padding: clamp(3.5rem, 7vw, 6rem) 0; background: linear-gradient(180deg, var(--bg) 0%, var(--sky) 100%); text-align: center; }
.cta-band .lead { margin: 1rem auto 1.75rem; }
.cta-band .fineprint { margin-top: 1rem; }

/* ───────────── Footer ───────────── */
.site-footer { background: #fff; border-top: 1px solid var(--line); padding: 3.5rem 0 2rem; font-size: 0.93rem; }
.footer-top { display: grid; grid-template-columns: 1.1fr 2fr; gap: 3rem; }
.footer-brand p { color: var(--ink-2); margin-top: 1rem; max-width: 40ch; }
.footer-mail { font-weight: 600; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.site-footer h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); margin-bottom: 0.8rem; }
.site-footer h4 { font-size: 0.95rem; margin-bottom: 0.5rem; }
.site-footer h4 a { color: var(--ink); }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.4rem; }
.site-footer ul a { color: var(--ink-2); }
.footer-dest { margin-top: 3rem; padding-top: 2.5rem; border-top: 1px solid var(--line); }
.footer-dest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem 2rem; }
.footer-dest-grid ul a { font-size: 0.88rem; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); display: grid; gap: 0.5rem; color: var(--ink-3); font-size: 0.85rem; }
.footer-bottom p { margin: 0; }
.footer-love { display: flex; align-items: center; gap: 0.4rem; }
@media (max-width: 1000px) { .footer-top { grid-template-columns: 1fr; } .footer-cols, .footer-dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .footer-cols, .footer-dest-grid { grid-template-columns: 1fr; } }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; } }
