/* =====================================================================
   v2.css — Premium design-system layer
   Loaded LAST (after styles.css + refresh.css) so it wins on equal
   specificity. Benchmark: roamic.com — polish, whitespace, typography,
   restraint. NOT a copy: keeps eSIMRetailer's identity + brand orange.

   Design principles:
   · Whitespace first — an 8-point spacing scale, sections that breathe.
   · Typography as the primary design element — one refined scale.
   · Restraint — one brand color (orange), one neutral (slate), calm
     surfaces, ultra-subtle shadows (depth from spacing, not shadow).
   · One consistent radius + shadow language across every component.
   · Fast, subtle, GPU-friendly micro-interactions.

   Fully reversible: remove the <link> to revert. Preserves every class
   name / JS hook / piece of copy. Builds on refresh.css --rf-* tokens.
   ===================================================================== */

:root {
  /* ---- 8-point spacing scale (single source of rhythm) ---- */
  --sp-1: 0.5rem;    /*  8px */
  --sp-2: 1rem;      /* 16px */
  --sp-3: 1.5rem;    /* 24px */
  --sp-4: 2rem;      /* 32px */
  --sp-6: 3rem;      /* 48px */
  --sp-8: 4rem;      /* 64px */
  --sp-12: 6rem;     /* 96px */

  /* ---- Radius scale ---- */
  --v-r-sm: 8px;
  --v-r-md: 12px;
  --v-r-lg: 16px;
  --v-r-xl: 24px;

  /* ---- Palette (extends refresh --rf-*) ---- */
  --v-ink: #0f172a;        /* headings */
  --v-body: #3f4b5e;       /* body — a touch softer than slate-700 */
  --v-muted: #64748b;      /* secondary */
  --v-line: #e9edf3;       /* hairline borders — lighter, calmer */
  --v-line-2: #f2f5f9;
  --v-surface: #ffffff;
  --v-bg: #f7f9fc;         /* page canvas — cool, bright */
  --v-brand: #ff6a00;
  --v-brand-ink: #e35600;
  --v-brand-soft: #fff5ee;
  --v-brand-border: #ffe0cc;

  /* ---- Elevation — extremely subtle, layered ---- */
  --v-shadow-xs: 0 1px 2px rgba(15, 23, 42, .04);
  --v-shadow-sm: 0 1px 2px rgba(15, 23, 42, .04), 0 2px 8px -4px rgba(15, 23, 42, .08);
  --v-shadow-md: 0 2px 4px rgba(15, 23, 42, .04), 0 12px 28px -12px rgba(15, 23, 42, .16);
  --v-shadow-lg: 0 8px 24px -8px rgba(15, 23, 42, .12), 0 24px 56px -24px rgba(15, 23, 42, .22);

  /* ---- Motion ---- */
  --v-ease: cubic-bezier(.4, 0, .2, 1);
  --v-t: .18s var(--v-ease);
  --v-ring: 0 0 0 3px rgba(255, 106, 0, .28);
}

/* ------------------------------------------------------------------ *
 * Foundations
 * ------------------------------------------------------------------ */
html { scroll-behavior: smooth; }

body {
  background-color: var(--v-bg);
  color: var(--v-body);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  overflow-x: hidden;   /* guard: never allow horizontal scroll */
}

::selection { background: rgba(255, 106, 0, .16); color: var(--v-ink); }

p { color: var(--v-body); }

/* Roomier gutters on larger screens (container stays 1200px) */
@media (min-width: 768px) {
  .container { padding-left: var(--sp-3); padding-right: var(--sp-3); }
}

/* ------------------------------------------------------------------ *
 * Typography — one refined scale, weights limited to 400/500/600/700
 * ------------------------------------------------------------------ */
h1, h2, h3, h4, h5, h6,
.section-title, .hero-title {
  font-family: "Inter", "Poppins", sans-serif;
  color: var(--v-ink);
  letter-spacing: -0.022em;
  text-wrap: balance;
}

.section-title {
  font-size: clamp(1.75rem, 1.05rem + 2.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: var(--sp-2);
}

.section-subtitle {
  font-size: clamp(1rem, .95rem + .4vw, 1.15rem);
  line-height: 1.6;
  color: var(--v-muted);
  font-weight: 400;
  max-width: 44rem;
  margin-inline: auto;
}

/* Give every centered section a consistent, generous header rhythm */
.features .section-title,
.destinations .section-title,
.how-it-works .section-title,
.testimonials .section-title,
.faq .section-title,
.affiliate .section-title {
  text-align: center;
  margin-bottom: var(--sp-6);
}

/* Refine the quiet accent under centered titles → gradient hairline */
.features .section-title::after,
.destinations .section-title::after,
.how-it-works .section-title::after {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--v-brand), #ff9a4d);
  border-radius: 999px;
}

/* ------------------------------------------------------------------ *
 * Section rhythm — sections breathe (generous, consistent vertical space)
 * ------------------------------------------------------------------ */
.features,
.destinations,
.how-it-works,
.testimonials,
.trust,
.faq,
.affiliate {
  padding-block: clamp(2.75rem, 1.5rem + 4.5vw, 4.5rem);   /* tighter — less empty air */
}

/* Alternating canvas for rhythm + warm colour contrast */
.features { background: var(--v-surface); }
.destinations { background: var(--v-bg); }
.how-it-works { background: linear-gradient(180deg, #fff8f2 0%, #fff 100%); }  /* warm tint */
.faq { background: var(--v-bg); }

/* ------------------------------------------------------------------ *
 * Buttons — premium, tappable (>=48px), one consistent language
 * ------------------------------------------------------------------ */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  min-height: 48px;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  line-height: 1;
  cursor: pointer;
  transition: background var(--v-t), color var(--v-t),
    border-color var(--v-t), box-shadow var(--v-t), transform var(--v-t);
}

.cta-button.primary {
  background: var(--v-brand);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 1px 2px rgba(227, 86, 0, .18), 0 8px 20px -10px rgba(227, 86, 0, .5);
}
.cta-button.primary:hover {
  background: var(--v-brand-ink);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(227, 86, 0, .2), 0 14px 28px -12px rgba(227, 86, 0, .55);
}

.cta-button.secondary {
  background: #fff;
  color: var(--v-ink);
  border: 1px solid var(--v-line);
  box-shadow: var(--v-shadow-xs);
}
.cta-button.secondary:hover {
  border-color: #d3dbe6;
  transform: translateY(-1px);
  box-shadow: var(--v-shadow-sm);
}
.cta-button:active { transform: translateY(0); }
.cta-button:focus-visible { outline: none; box-shadow: var(--v-ring); }

/* Hero CTAs (over the orange hero) — white primary, glass secondary */
.hero-buttons { gap: var(--sp-1); margin-top: var(--sp-4); }
.hero-buttons .cta-button.primary {
  background: #fff;
  color: var(--v-brand-ink);
  box-shadow: 0 10px 26px -12px rgba(60, 12, 0, .55);
}
.hero-buttons .cta-button.primary:hover { background: #fff8f3; color: var(--v-brand-ink); }
.hero-buttons .cta-button.secondary {
  background: rgba(255, 255, 255, .12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .5);
  box-shadow: none;
}
.hero-buttons .cta-button.secondary:hover { background: rgba(255, 255, 255, .2); border-color: rgba(255, 255, 255, .7); }

/* ------------------------------------------------------------------ *
 * Unified card language — feature cards, steps, trust badges, stats
 * Generous padding, hairline border, ultra-soft shadow, calm hover.
 * ------------------------------------------------------------------ */
.feature-card,
.step,
.badge {
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  border-radius: var(--v-r-xl);
  box-shadow: var(--v-shadow-sm);
  padding: var(--sp-4);
  transition: transform var(--v-t), box-shadow var(--v-t), border-color var(--v-t);
}
.feature-card:hover,
.step:hover,
.badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--v-shadow-md);
  border-color: #dbe2ec;
}

/* Icon chips — one consistent size / weight / treatment */
.feature-card .feature-icon,
.feature-card .feature-emoji,
.step-icon,
.badge .badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 1.55rem;
  line-height: 1;
  border-radius: var(--v-r-lg);
  background: var(--v-brand-soft);
  border: 1px solid var(--v-brand-border);
  color: var(--v-brand-ink);
  margin-bottom: var(--sp-2);
}

.feature-card h3,
.step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: var(--sp-1);
  margin-bottom: 0.4rem;
  color: var(--v-ink);
}
.feature-card p,
.step p {
  color: var(--v-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Quiet, understated text link (no heavy filled pill) */
.feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: var(--sp-2);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--v-brand-ink);
  transition: gap var(--v-t), color var(--v-t);
}
.feature-cta::after {
  content: "→";
  font-size: 1em;
  line-height: 1;
  transition: transform var(--v-t);
}
.feature-cta:hover { gap: 0.55rem; color: var(--v-brand); background: transparent; }
.feature-cta:hover::after { transform: translateX(2px); }

/* Feature grid + video: more air, aligned rhythm */
.features-grid { gap: var(--sp-3); }
.features-content { gap: clamp(var(--sp-4), 5vw, var(--sp-8)); }
.features-video video {
  width: 100%;
  border-radius: var(--v-r-xl);
  border: 1px solid var(--v-line);
  box-shadow: var(--v-shadow-sm);
}

/* Steps grid rhythm */
.steps { gap: var(--sp-3); }
.how-it-works-content { gap: clamp(var(--sp-4), 5vw, var(--sp-8)); }
.how-it-works-image video {
  border-radius: var(--v-r-xl);
  border: 1px solid var(--v-line);
  box-shadow: var(--v-shadow-sm);
}

/* ------------------------------------------------------------------ *
 * Hero — refine spacing + search; keep the premium gradient/phone
 * ------------------------------------------------------------------ */
.hero { padding: clamp(4.5rem, 3rem + 8vw, 7rem) 0 clamp(3.5rem, 2rem + 6vw, 5rem); }
.hero-eyebrow {
  margin-bottom: var(--sp-3);
  letter-spacing: .1em;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
}
.hero-title {
  color: #fff;
  font-size: clamp(2.1rem, 1.2rem + 4vw, 3.6rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-3);
  text-shadow: 0 2px 30px rgba(120, 28, 0, .22);
}
.hero-subtitle {
  font-size: clamp(1rem, .96rem + .5vw, 1.16rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, .95);
  max-width: 38rem;
}

/* Hero search — a strong, tactile centerpiece */
.hero-search { width: 100%; max-width: 620px; margin-top: var(--sp-1); }
.search-container {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .6);
  background: #fff;
  box-shadow: 0 14px 40px -16px rgba(40, 8, 0, .5);
  padding: 6px;
  transition: box-shadow var(--v-t), transform var(--v-t);
}
.search-container:focus-within {
  box-shadow: 0 18px 48px -16px rgba(40, 8, 0, .55), var(--v-ring);
  transform: translateY(-1px);
}
.search-input { min-height: 52px; font-size: 1rem; color: var(--v-ink); }
.search-input::placeholder { color: #9aa6b6; }
.search-button {
  background: var(--v-brand);
  color: #fff;
  border-radius: 999px;
  min-width: 48px;
  min-height: 48px;
  transition: background var(--v-t), transform var(--v-t);
}
.search-button:hover { background: var(--v-brand-ink); transform: scale(1.04); }

/* ------------------------------------------------------------------ *
 * Hero stats strip — refined floating plate
 * ------------------------------------------------------------------ */
.hero-stats-inner {
  display: flex !important;
  flex-direction: column;
  gap: 0;
  padding: var(--sp-2) var(--sp-4) var(--sp-3);
  border: 1px solid var(--v-line);
  border-radius: var(--v-r-xl);
  box-shadow: var(--v-shadow-lg);
}
/* Trust line — builds confidence right under the hero */
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.35rem 0 var(--sp-2);
  margin-bottom: var(--sp-2);
  border-bottom: 1px solid var(--v-line);
}
.hero-trust-stars { color: #f5a623; font-size: 0.95rem; letter-spacing: 3px; }
.hero-trust-text { color: var(--v-body); font-weight: 600; font-size: 0.9rem; letter-spacing: -0.01em; }

.hero-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero-stats .stat-item { padding: var(--sp-1) var(--sp-2); text-align: center; position: relative; background: transparent; border: 0; box-shadow: none; }
.hero-stats-grid .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  height: 58%;
  width: 1px;
  background: var(--v-line);
}
.hero-stats .stat-number { font-weight: 800; color: var(--v-ink); letter-spacing: -0.02em; }
.hero-stats .stat-label { color: var(--v-muted); font-size: 0.82rem; }
@media (max-width: 700px) {
  .hero-stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: var(--sp-3); }
  .hero-stats-grid .stat-item:nth-child(even)::after { display: none; }
}

/* ------------------------------------------------------------------ *
 * Destinations — search as a strong component; converter refined
 * ------------------------------------------------------------------ */
.home-currency-converter {
  border-radius: var(--v-r-lg);
  border: 1px solid var(--v-line);
  box-shadow: var(--v-shadow-xs);
  background: var(--v-surface);
  padding: var(--sp-2) var(--sp-3);
  margin-bottom: var(--sp-6);
}
.home-currency-option-btn {
  min-height: 40px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--v-line);
  background: #fff;
  color: var(--v-body);
  transition: background var(--v-t), color var(--v-t), border-color var(--v-t);
}
.home-currency-option-btn.is-active {
  background: var(--v-brand);
  color: #fff;
  border-color: transparent;
}

/* Clean, top-notch search — ONE field: icon + input flush inside a single
   rounded container (kill the base input's own border/bg so there is no
   nested "box within a box"). */
.destinations-search { max-width: 320px; margin: 0 auto var(--sp-4); }
.destinations-search-container {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  padding: 0 0.9rem !important;
  min-height: 44px;
  border-radius: 12px !important;
  border: 1px solid var(--v-line) !important;
  background: #fff !important;
  box-shadow: 0 1px 2px rgba(15, 23, 42, .04), 0 4px 14px -10px rgba(15, 23, 42, .16) !important;
  transition: box-shadow var(--v-t), border-color var(--v-t);
}
.destinations-search-container:focus-within {
  border-color: var(--v-brand) !important;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, .14), 0 8px 24px -12px rgba(255, 106, 0, .35) !important;
}
.destinations-search-ic { flex: 0 0 auto; width: 16px; height: 16px; color: #9aa6b6; transition: color var(--v-t); }
.destinations-search-container:focus-within .destinations-search-ic { color: var(--v-brand); }
.destinations-search-input {
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0;
  height: 42px;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--v-ink) !important;
}
.destinations-search-input::placeholder { color: #9aa6b6; font-weight: 400; }

/* "See all" as a quiet, professional text link (no button) */
.destinations-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--v-brand-ink);
  text-decoration: none;
  transition: gap var(--v-t), color var(--v-t);
}
.destinations-more-link:hover { gap: 0.65rem; color: var(--v-brand); }

/* ---- How It Works: relevant cartoon, no card/panel ---- */
.hiw-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.hiw-illustration img { width: 100%; max-width: 440px; height: auto; object-fit: contain; }

/* ---- FAQ — 2 columns: wide accordion + compact cartoon support aside ---- */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(var(--sp-4), 4vw, var(--sp-6));
  align-items: start;
}
@media (min-width: 900px) { .faq-layout { grid-template-columns: minmax(0, 2.3fr) minmax(0, 1fr); } }

.faq-main .section-title { text-align: left !important; margin-bottom: var(--sp-3) !important; }
.faq-main .section-title::after { left: 0 !important; transform: none !important; }
.faq-main .faq-header { text-align: left; margin: 0; }
.faq-main .accordion { max-width: none !important; margin: 0 !important; }

.faq-aside { position: relative; }
@media (min-width: 900px) { .faq-aside { position: sticky; top: 92px; } }
.faq-aside-inner {
  background: none;
  border: 0;
  border-radius: 0;
  padding: 0;
  text-align: center;
  box-shadow: none;
}
.faq-aside-ill { width: 100%; max-width: 240px; height: auto; margin: 0 auto var(--sp-2); display: block; }
.faq-aside-inner h3 { font-size: 1.15rem; font-weight: 700; color: var(--v-ink); margin: 0 0 0.4rem; }
.faq-aside-inner p { color: var(--v-body); font-size: 0.92rem; line-height: 1.55; margin: 0 0 var(--sp-3); }
.faq-aside-inner .cta-button { width: 100%; }

/* FAQ compact — smaller font + tighter spacing */
.accordion { gap: 0.4rem !important; }
.accordion details { margin-bottom: 0 !important; }
.accordion summary { padding: 0.7rem 2.4rem 0.7rem 0.95rem !important; font-size: 0.9rem !important; }
.accordion details p { padding: 0 0.95rem 0.75rem !important; font-size: 0.86rem !important; line-height: 1.55 !important; }
.accordion summary::after { right: 0.95rem !important; width: 11px !important; height: 11px !important; }

/* ------------------------------------------------------------------ *
 * Testimonials — calmer, cleaner surface
 * ------------------------------------------------------------------ */
.testimonials { background: linear-gradient(180deg, var(--v-bg) 0%, var(--v-surface) 100%); }
.testimonials-bg-image { opacity: .06; filter: grayscale(1); }
.testimonials-header { margin-bottom: var(--sp-6); }
.testimonial-content {
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  border-radius: var(--v-r-xl);
  box-shadow: var(--v-shadow-sm);
  padding: var(--sp-4);
}
.testimonial-quote .quote-icon { color: var(--v-brand); opacity: .28; }
.testimonial-quote p { color: var(--v-body); line-height: 1.7; }
.testimonial-dots .dot {
  transition: background var(--v-t), transform var(--v-t);
}
.testimonial-dots .dot.active { background: var(--v-brand); transform: scale(1.25); }
.testimonial-nav .nav-btn {
  border: 1px solid var(--v-line);
  background: #fff;
  color: var(--v-ink);
  box-shadow: var(--v-shadow-xs);
  transition: background var(--v-t), border-color var(--v-t), transform var(--v-t);
}
.testimonial-nav .nav-btn:hover { border-color: var(--v-brand-border); color: var(--v-brand-ink); transform: translateY(-1px); }

/* ------------------------------------------------------------------ *
 * Trust badges — align to the card language, add air
 * ------------------------------------------------------------------ */
/* Trust — photo-backed band (reuses the travelers image) with white badges */
.trust {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-block: 0;
  color: #fff;
  background: #0f1420;
}
.trust .trust-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.4) saturate(1.05);
}
.trust::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(125deg, rgba(9, 12, 20, .92) 0%, rgba(9, 12, 20, .86) 62%, rgba(120, 44, 4, .74) 100%);
}
.trust .badge .badge-icon {
  background: rgba(255, 255, 255, .14) !important;
  border: 1px solid rgba(255, 255, 255, .3) !important;
  color: #fff !important;
}
.trust .badge .badge-icon svg { color: #fff !important; }
.trust .badge-title { color: #fff !important; text-shadow: 0 1px 3px rgba(0, 0, 0, .55); }
.trust .badge-description { color: rgba(255, 255, 255, .86) !important; text-shadow: 0 1px 3px rgba(0, 0, 0, .5); }
.trust-badges {
  display: grid;
  grid-template-columns: 1fr;   /* full-width cards on phones — no cramped wrapping */
  gap: var(--sp-3);
}
@media (min-width: 640px) { .trust-badges { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .trust-badges { grid-template-columns: repeat(4, 1fr); } }
.badge { display: flex; align-items: flex-start; gap: var(--sp-2); text-align: left; }
.badge .badge-icon { flex: 0 0 auto; margin-bottom: 0; }
.badge-title { color: var(--v-ink); font-weight: 600; }
.badge-description { color: var(--v-muted); font-size: 0.9rem; line-height: 1.6; }

/* ------------------------------------------------------------------ *
 * FAQ accordion — quiet cards, animated +/- affordance
 * ------------------------------------------------------------------ */
/* Single-column accordion — expanding an item pushes the next down instead
   of leaving a white gap beside a shorter neighbour (base uses a 2-col grid). */
.accordion {
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
  column-count: 1 !important;
  gap: 0.6rem;
  max-width: 760px;
  margin-inline: auto;
}
.accordion details {
  background: var(--v-surface);
  border: 1px solid var(--v-line);
  border-radius: var(--v-r-md);
  box-shadow: var(--v-shadow-xs);
  margin-bottom: var(--sp-1);
  overflow: hidden;
  transition: border-color var(--v-t), box-shadow var(--v-t);
}
.accordion details[open] { border-color: var(--v-brand-border); box-shadow: var(--v-shadow-sm); }
.accordion summary {
  position: relative;
  cursor: pointer;
  font-weight: 600;
  color: var(--v-ink);
  padding: var(--sp-2) 3rem var(--sp-2) var(--sp-3);
  list-style: none;
  transition: color var(--v-t);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary:hover { color: var(--v-brand-ink); }
/* +/- affordance */
.accordion summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: var(--sp-3);
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  background:
    linear-gradient(var(--v-brand), var(--v-brand)) center/12px 2px no-repeat,
    linear-gradient(var(--v-brand), var(--v-brand)) center/2px 12px no-repeat;
  transition: transform var(--v-t), opacity var(--v-t);
}
.accordion details[open] summary::after { transform: translateY(-50%) rotate(90deg); opacity: .8; }
.accordion details[open] summary::after {
  background:
    linear-gradient(var(--v-brand), var(--v-brand)) center/12px 2px no-repeat;
}
.accordion details p { padding: 0 var(--sp-3) var(--sp-3); color: var(--v-muted); line-height: 1.7; }

/* ------------------------------------------------------------------ *
 * Affiliate — calm the loud 5-colour animated gradient down to one
 * refined brand treatment (restraint: one accent, one surface).
 * ------------------------------------------------------------------ */
.affiliate {
  background:
    radial-gradient(90% 120% at 88% -10%, rgba(255, 210, 170, .16) 0%, rgba(255, 210, 170, 0) 55%),
    radial-gradient(80% 120% at 6% 110%, rgba(255, 106, 0, .16) 0%, rgba(255, 106, 0, 0) 55%),
    linear-gradient(150deg, #171d2b 0%, #0f1420 100%) !important;
  animation: none !important;
  color: #fff;
}
.affiliate .affiliate-gradient-orb { opacity: .35; filter: blur(60px); }
.affiliate .section-title { color: #fff; }
.affiliate .section-subtitle { color: rgba(255, 255, 255, .78); }
.affiliate-badge {
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
}
.affiliate-cta {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--v-r-xl);
  padding: var(--sp-6) var(--sp-4);
}
.affiliate-cta-text { color: rgba(255, 255, 255, .92); }
.affiliate .affiliate-button.affiliate-login-button {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
}
.affiliate .affiliate-button.affiliate-login-button:hover { background: rgba(255, 255, 255, .16); }

/* Affiliate benefit cards — clean, professional glass tiles (no shine/orbs) */
.affiliate .affiliate-gradient-orb { display: none !important; }
#affiliate-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);   /* 2 up on phones */
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}
@media (min-width: 760px) { #affiliate-benefits { grid-template-columns: repeat(4, 1fr); } }  /* all in one line */

.affiliate .benefit-card {
  background: rgba(255, 255, 255, .05) !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: var(--v-r-md) !important;
  box-shadow: none !important;
  padding: var(--sp-2) !important;
  text-align: left !important;
  animation: none !important;
  transform: none !important;
  overflow: hidden;
  transition: background var(--v-t), border-color var(--v-t), transform var(--v-t) !important;
}
.affiliate .benefit-card:hover {
  background: rgba(255, 255, 255, .08) !important;
  border-color: rgba(255, 255, 255, .22) !important;
  transform: translateY(-2px) !important;
}
.affiliate .benefit-shine { display: none !important; }
.affiliate .benefit-icon-wrapper { margin: 0 0 var(--sp-2) !important; padding: 0 !important; background: none !important; box-shadow: none !important; filter: none !important; }
.affiliate .benefit-icon-wrapper::before,
.affiliate .benefit-icon-wrapper::after,
.affiliate .benefit-icon::before,
.affiliate .benefit-icon::after { display: none !important; content: none !important; }
.affiliate .benefit-icon {
  width: 40px !important;
  height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.15rem !important;
  line-height: 1 !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, .1) !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
  box-shadow: none !important;
}
.affiliate .benefit-card h3 {
  color: #fff !important;
  font-size: 0.92rem !important;
  font-weight: 600 !important;
  margin: 0 0 0.3rem !important;
  line-height: 1.25 !important;
}
.affiliate .benefit-card p {
  color: rgba(255, 255, 255, .7) !important;
  font-size: 0.82rem !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

/* ------------------------------------------------------------------ *
 * Footer — deep ink surface, calmer type, generous spacing
 * ------------------------------------------------------------------ */
.footer {
  background: #0f1420;
  color: #cbd5e1;
  padding: clamp(3rem, 2rem + 4vw, 4.5rem) 0 var(--sp-4);
}
.footer-content { gap: var(--sp-6); margin-bottom: var(--sp-6); }
.footer-column h4 {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: .01em;
  margin-bottom: var(--sp-2);
}
.footer-column li { margin-bottom: 0.6rem; }
.footer-column a {
  color: #93a1b5;
  transition: color var(--v-t);
}
.footer-column a:hover { color: #fff; }
.footer .contact-item a { color: #93a1b5; }
.footer .contact-item a:hover { color: #fff; }
.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--v-r-md);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #cbd5e1;
  transition: background var(--v-t), color var(--v-t), transform var(--v-t);
}
.footer .social-links a:hover { background: var(--v-brand); border-color: transparent; color: #fff; transform: translateY(-2px); }
.footer-bottom {
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: #7d8aa0;
  font-size: 0.9rem;
}

/* ------------------------------------------------------------------ *
 * Header — a touch more air, calmer nav (desktop)
 * ------------------------------------------------------------------ */
@media (min-width: 769px) {
  .header { background: rgba(255, 255, 255, .9); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--v-line); }
  .nav a, .nav-link { border-radius: 10px; font-weight: 600; color: var(--v-body); transition: background var(--v-t), color var(--v-t); }
  .nav a:hover, .nav-link:hover { background: var(--v-line-2); color: var(--v-ink); }
  .nav-link.active { background: var(--v-brand-soft); border: 1px solid var(--v-brand-border); color: var(--v-brand-ink); }
}

/* ------------------------------------------------------------------ *
 * Accessibility + motion
 * ------------------------------------------------------------------ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible,
.cta-button:focus-visible {
  outline: none;
  box-shadow: var(--v-ring);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}

/* Source fix for mobile horizontal overflow: the desktop mega-menu is
   min-width:900px and, though visually hidden, its absolutely-positioned
   box still forced the document ~900px wide on phones. Mobile uses the
   separate .mobile-destinations-modal, so remove the desktop menu from
   layout entirely below the breakpoint. */
@media (max-width: 768px) {
  .nav-item-with-mega .mega-menu-desktop { display: none !important; }
}

/* ------------------------------------------------------------------ *
 * WhatsApp float — refined resting state
 * ------------------------------------------------------------------ */
.whatsapp-float {
  box-shadow: 0 8px 24px -8px rgba(37, 211, 102, .6);
  transition: transform var(--v-t), box-shadow var(--v-t);
}
.whatsapp-float:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 12px 30px -8px rgba(37, 211, 102, .7); }

/* =====================================================================
   HERO — focused premium redesign
   Locked (untouched): .hero-eyebrow "Global eSIM Store", .hero-title,
   .hero-subtitle copy + internal order. Everything else redesigned into
   one unified, balanced, uncluttered story: badge → headline → paragraph
   → primary CTA → search → phone. 8-point rhythm, calm depth from spacing.
   ===================================================================== */

/* ---- Layout balance + vertical rhythm ---- */
.hero .container { gap: clamp(2.5rem, 5vw, 4.5rem); }
@media (min-width: 900px) {
  .hero .container { align-items: center; }
  .hero-content { flex: 1 1 53%; }
  .hero-image { flex: 1 1 47%; }
}

/* One consistent 8pt gap between hero blocks; kill ad-hoc child margins */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
}
.hero-content > * { margin: 0; }
.hero-content .hero-buttons { margin-top: var(--sp-1); }
.hero-content .hero-search { margin-top: var(--sp-4); }
@media (max-width: 899px) {
  .hero-content { align-items: center; text-align: center; }
}

/* Locked content — spacing/rendering polish only, no restyle of hierarchy */
.hero-eyebrow { margin-bottom: 0; }
.hero-title { margin-bottom: 0; }
.hero-subtitle {
  margin: 0;
  max-width: 34rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .94);
}
@media (max-width: 899px) { .hero-subtitle { margin-inline: auto; } }

/* ---- Primary CTA dominates, secondary stays understated ---- */
.hero-buttons { flex-wrap: wrap; gap: var(--sp-2); }
.hero-buttons .cta-button { min-height: 52px; padding: 0.9rem 1.9rem; font-size: 1rem; }
.hero-buttons .cta-button.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .55);
  color: #fff;
  box-shadow: none;
}
.hero-buttons .cta-button.secondary:hover { background: rgba(255, 255, 255, .14); border-color: #fff; }

/* ---- Search as a hero feature: wider, cleaner, prominent ---- */
.hero-search { width: 100%; max-width: 560px; }
.hero .search-container {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 7px 7px 7px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .65);
  background: #fff;
  box-shadow: 0 18px 46px -18px rgba(40, 8, 0, .5);
  transition: box-shadow var(--v-t), transform var(--v-t);
}
.hero .search-container:focus-within {
  transform: translateY(-1px);
  box-shadow: 0 22px 54px -18px rgba(40, 8, 0, .55), var(--v-ring);
}
.hero .search-input {
  flex: 1;
  min-height: 52px;
  padding-inline: 1.1rem;
  font-size: 1.02rem;
  color: var(--v-ink);
  background: transparent;
  border: 0;
}
.hero .search-input::placeholder { color: #98a4b4; }
.hero .search-button {
  flex: 0 0 auto;
  min-width: 52px;
  min-height: 52px;
  border-radius: 999px;
  background: var(--v-brand);
  color: #fff;
  border: 0;
  transition: background var(--v-t), transform var(--v-t);
}
.hero .search-button:hover { background: var(--v-brand-ink); transform: scale(1.04); }
.hero .search-button::before { display: none; }  /* drop the legacy ripple */

/* ---- Phone stage + elegant floating cards (depth via spacing) ---- */
.hero-phone-stage { position: relative; display: inline-block; }

.hero-float {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .7);
  box-shadow: 0 16px 34px -16px rgba(30, 8, 0, .45);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--v-ink);
  white-space: nowrap;
  will-change: transform;
}
.hero-float-ic { font-size: 1rem; line-height: 1; }
/* Floats live in the phone's EMPTY lower area (staggered), never over content */
.hero-float-a { top: 58%; bottom: auto; left: -12%; animation: v-hero-float 5s var(--v-ease) infinite; }
.hero-float-b { top: 80%; bottom: auto; right: -13%; animation: v-hero-float 5.6s var(--v-ease) .6s infinite; }
@keyframes v-hero-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

@media (max-width: 560px) {
  .hero-float { font-size: 0.72rem; padding: 0.45rem 0.65rem; }
  .hero-float-a { display: none; }            /* keep just one chip on the smaller phone */
  .hero-float-b { top: auto; bottom: 6%; right: -3%; }
}

/* ---- Simplified premium in-phone app screen ---- */
.phone-mockup .app-interface { background: #f6f8fc; position: relative; }

/* iOS-style status bar — time left, system icons right, flanking the island */
.pm-statusbar {
  position: absolute;
  top: 12px;
  left: 20px;
  right: 18px;
  z-index: 7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #14151a;
  pointer-events: none;
}
.pm-time { font-size: 12px; font-weight: 600; letter-spacing: .01em; font-variant-numeric: tabular-nums; }
.pm-sysicons { display: inline-flex; align-items: center; gap: 5px; }
.pm-ic { display: block; }
.phone-mockup .app-header {
  border-bottom: 0;
  margin-bottom: var(--sp-2);
  padding: 2px 0 0;
  text-align: center;
}
.phone-mockup .app-logo { height: 22px; }
.phone-mockup .app-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;          /* full-width children, consistent left edge */
  justify-content: flex-start;
  gap: 0.65rem;
  width: 100%;
  padding: 0;                    /* app-interface already provides the gutter */
  height: auto;
}

.pm-status {
  align-self: center;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: #ecfdf3;
  border: 1px solid #baf3d3;
  font-size: 0.68rem;
  font-weight: 600;
  color: #067647;
  white-space: nowrap;
}
.pm-status-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #17b26a;
  box-shadow: 0 0 0 3px rgba(23, 178, 106, .18);
}
.pm-status-net { opacity: .75; }

.pm-data-card {
  background: #fff;
  border: 1px solid var(--v-line);
  border-radius: 14px;
  padding: 0.8rem 0.9rem;
  box-shadow: var(--v-shadow-xs);
  text-align: center;   /* centered content inside the phone */
}
.pm-dests { text-align: center; }
.pm-dests-row { justify-content: center; }
.pm-data-head { font-size: 0.66rem; font-weight: 500; color: var(--v-muted); text-transform: uppercase; letter-spacing: .05em; }
.pm-data-figure { display: flex; align-items: baseline; justify-content: center; gap: 0.3rem; margin-top: 0.15rem; flex-wrap: nowrap; }
.pm-data-figure strong { font-size: 1.55rem; font-weight: 700; letter-spacing: -0.02em; color: var(--v-ink); }
.pm-data-figure span { font-size: 0.72rem; color: var(--v-muted); white-space: nowrap; }
.pm-bar { height: 6px; margin-top: 0.6rem; border-radius: 999px; background: #eef1f6; overflow: hidden; }
.pm-bar-fill { display: block; height: 100%; width: 12%; border-radius: 999px; background: linear-gradient(90deg, var(--v-brand), #ff9a4d); }

.pm-dests-label { font-size: 0.66rem; font-weight: 500; color: var(--v-muted); margin-bottom: 0.45rem; text-transform: uppercase; letter-spacing: .05em; }
.pm-dests-row { display: flex; align-items: center; gap: 0.4rem; }
.pm-flag {
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--v-line);
  box-shadow: var(--v-shadow-xs);
}
.pm-flag-more {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--v-brand-ink);
  background: var(--v-brand-soft);
  border-color: var(--v-brand-border);
}

/* =====================================================================
   ONE ICON FAMILY — cohesive line icons replacing mixed emoji across
   Features, How It Works, Trust. Same stroke weight, size, colour.
   ===================================================================== */
.feature-card .feature-icon svg,
.step .step-icon svg,
.badge .badge-icon svg {
  width: 26px;
  height: 26px;
  color: var(--v-brand-ink);
  stroke: currentColor;
}
.step .step-icon svg { width: 30px; height: 30px; }
/* icon chips no longer need emoji font sizing */
.feature-card .feature-icon,
.step .step-icon,
.badge .badge-icon { font-size: 0; line-height: 0; }

/* Remove decorative noise on feature cards: the 4px orange top-bar and the
   rotating gradient shimmer overlay — depth comes from spacing, not effects. */
.feature-card::before,
.feature-card::after { display: none !important; content: none !important; }

/* Numbered steps (Roamic-style) — badge on the icon chip */
.steps { counter-reset: v-step; }
.step { counter-increment: v-step; position: relative; }
.step .step-icon { position: relative; overflow: visible; }
.step .step-icon::after {
  content: counter(v-step);
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--v-brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border-radius: 50%;
  border: 2px solid var(--v-surface);
  box-shadow: 0 2px 6px -1px rgba(227, 86, 0, .5);
}

/* =====================================================================
   IMAGERY — real photo accents (downloaded, local, licensed).
   ===================================================================== */
/* Testimonials: local, calm, on-brand background photo */
.testimonials-bg-image {
  opacity: .08;
  filter: grayscale(.4) contrast(1.05);
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* A slim full-bleed lifestyle band usable between sections */
.v-photo-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: clamp(3.5rem, 2rem + 7vw, 6rem) var(--sp-3);
}
.v-photo-band img.v-photo-band-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v-photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(20, 10, 4, .72), rgba(227, 86, 0, .55));
}
.v-photo-band h2 { color: #fff; font-size: clamp(1.6rem, 1rem + 2.6vw, 2.4rem); font-weight: 700; margin-bottom: var(--sp-2); text-wrap: balance; }
.v-photo-band p { color: rgba(255, 255, 255, .92); max-width: 40rem; margin: 0 auto var(--sp-4); font-size: 1.05rem; line-height: 1.6; }
.v-band-actions { display: flex; gap: var(--sp-2); justify-content: center; flex-wrap: wrap; }
.v-photo-band .cta-button.primary { background: var(--v-brand); color: #fff; box-shadow: 0 10px 26px -10px rgba(0, 0, 0, .5); }
.v-photo-band .cta-button.primary:hover { background: var(--v-brand-ink); }
.v-photo-band .cta-button.secondary { background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .6); color: #fff; box-shadow: none; }
.v-photo-band .cta-button.secondary:hover { background: rgba(255, 255, 255, .2); border-color: #fff; }

/* Testimonial avatar (initials) injected by JS */
.tm-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--v-brand) 0%, #ff9a4d 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .01em;
  box-shadow: 0 4px 12px -4px rgba(227, 86, 0, .5);
}
.tm-head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.7rem; }
.tm-name { font-weight: 600; color: var(--v-ink); font-size: 0.95rem; line-height: 1.2; }
.tm-meta { color: var(--v-muted); font-size: 0.8rem; }
.tm-stars { color: #f5a623; font-size: 0.85rem; letter-spacing: 1px; margin-top: 2px; }

/* =====================================================================
   SECTION REDESIGNS — fewer cards, more whitespace, real imagery
   (Why Choose · How It Works · Popular Destinations · Trust)
   ===================================================================== */

/* ---- Why Choose: borderless feature list beside a lifestyle photo ---- */
.features-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(var(--sp-4), 5vw, var(--sp-8));
  align-items: center;
}
@media (min-width: 900px) { .features-layout { grid-template-columns: 0.92fr 1.08fr; } }

.features-media { position: relative; }
.features-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--v-r-xl);
  box-shadow: var(--v-shadow-lg);
}
/* Cartoon illustration — no card/panel, sits directly on the section */
.features-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.features-illustration img { width: 100%; max-width: 460px; height: auto; object-fit: contain; }
.features-media-badge {
  position: absolute;
  right: 14px;
  bottom: -18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.7rem 1rem;
  background: #fff;
  border: 1px solid var(--v-line);
  border-radius: var(--v-r-lg);
  box-shadow: var(--v-shadow-md);
}
.features-media-badge-num { font-size: 1.4rem; font-weight: 800; color: var(--v-brand-ink); line-height: 1; letter-spacing: -0.02em; }
.features-media-badge-txt { font-size: 0.72rem; color: var(--v-muted); font-weight: 600; margin-top: 2px; }

.features-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--sp-3); }
.feature-item { display: flex; gap: var(--sp-2); align-items: flex-start; }
.feature-item .feature-icon {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--v-r-md);
  background: var(--v-brand-soft);
  border: 1px solid var(--v-brand-border);
  color: var(--v-brand-ink);
}
.feature-item .feature-icon svg { width: 24px; height: 24px; color: var(--v-brand-ink); }
.feature-item h3 { font-size: 1.05rem; font-weight: 600; margin: 0 0 0.2rem; color: var(--v-ink); }
.feature-item p { margin: 0; color: var(--v-muted); font-size: 0.94rem; line-height: 1.6; }

/* ---- How It Works: borderless numbered timeline beside a photo ---- */
.hiw-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(var(--sp-4), 5vw, var(--sp-8));
  align-items: center;
}
@media (min-width: 900px) { .hiw-layout { grid-template-columns: 1.05fr 0.95fr; } }

.how-it-works .steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--sp-3); counter-reset: v-step; }
.how-it-works .step {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  transform: none !important;
  display: flex !important;
  flex-direction: row !important;    /* icon BESIDE text (base sets column) */
  align-items: flex-start !important;
  text-align: left !important;
  gap: var(--sp-2) !important;
  padding: 0 !important;
  min-height: 0 !important;
  position: relative;
}
.how-it-works .step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 62px;
  height: calc(100% - 46px);
  width: 2px;
  background: linear-gradient(var(--v-brand-border), rgba(255, 224, 204, 0));
}
.how-it-works .step .step-icon { flex: 0 0 auto; margin: 0 !important; align-self: flex-start; }
.how-it-works .step-text { padding-top: 0.35rem; }
.how-it-works .step-text h3 { margin: 0 0 0.25rem; font-size: 1.08rem; }
.how-it-works .step-text p { margin: 0; color: var(--v-muted); }
.hiw-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 460px;
  object-fit: cover;
  border-radius: var(--v-r-xl);
  box-shadow: var(--v-shadow-lg);
}
@media (max-width: 899px) { .hiw-photo { aspect-ratio: 16 / 10; } .how-it-works .hiw-media { order: -1; } }

/* ---- Popular Destinations — clean borderless list (no cards) ----
   Formal, smart directory: flag · country · price on hairline rows,
   two columns on wider screens. */
#destinations-grid.destinations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 clamp(var(--sp-4), 5vw, var(--sp-8));
  max-width: 820px;
  margin: 0 auto;
  align-content: start;
}
@media (min-width: 760px) { #destinations-grid.destinations-grid { grid-template-columns: 1fr 1fr; } }

/* show 6 on the homepage (needs !important + specificity to beat the card display rule) */
#destinations-grid .destination-card:nth-child(n+7) { display: none !important; }

#destinations-grid .destination-card {
  display: block !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid var(--v-line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0.85rem 0.5rem !important;
  margin: 0 !important;
  text-decoration: none;
  transition: background var(--v-t), padding-left var(--v-t);
}
#destinations-grid .destination-card:hover {
  transform: none !important;
  background: linear-gradient(90deg, var(--v-brand-soft), rgba(255, 245, 238, 0)) !important;
  padding-left: 0.85rem !important;
}
#destinations-grid .destination-content {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: var(--sp-2);
}
#destinations-grid .destination-flag {
  width: 36px !important;
  height: 36px !important;
  flex: 0 0 auto;
  font-size: 22px !important;
}
#destinations-grid .destination-flag img {
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
}
#destinations-grid .destination-info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
}
#destinations-grid .destination-info h3 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--v-ink);
  margin: 0 !important;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#destinations-grid .destination-price {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--v-muted) !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  white-space: nowrap;
}
#destinations-grid .destination-arrow {
  flex: 0 0 auto;
  opacity: .35;
  transition: opacity var(--v-t), transform var(--v-t);
}
#destinations-grid .destination-card:hover .destination-arrow { opacity: 1; transform: translateX(3px); }
#destinations-grid .arrow-button {
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  color: var(--v-brand-ink) !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.destinations-more { text-align: center; margin-top: var(--sp-4); }
.destinations-search { margin-bottom: var(--sp-4); }

/* ---- Trust: lighten to borderless blocks (reduce card overuse) ---- */
.trust .badge {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: var(--sp-1) 0;
}
.trust .badge:hover { transform: none; box-shadow: none; border-color: transparent; }

/* =====================================================================
   FAQ — two questions per row, borderless (no card/button), each item
   opens independently. CSS multi-column so an open answer only pushes
   items below it in ITS OWN column, never the neighbour.
   ===================================================================== */
.accordion {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 0 clamp(1.5rem, 4vw, 3rem) !important;
  align-items: start !important;
  columns: auto !important;
  max-width: 1000px !important;
  margin-inline: auto !important;
}
.accordion-col { min-width: 0; display: block; }
@media (max-width: 640px) { .accordion { grid-template-columns: 1fr !important; } }

.accordion details {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid var(--v-line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  overflow: hidden;
}
.accordion details[open] { border-color: var(--v-line) !important; box-shadow: none !important; }
.accordion summary {
  padding: 0.9rem 2rem 0.9rem 0.15rem !important;
  font-size: 0.92rem !important;
  font-weight: 600;
}
.accordion summary::after { right: 0.15rem !important; }
.accordion details p { padding: 0 0.15rem 0.9rem !important; }

/* =====================================================================
   Hero reviews carousel — replaces the static stats (compact, live)
   ===================================================================== */
.hero-reviews { position: relative; display: flex; align-items: stretch; gap: 0.4rem; }
.hero-reviews-viewport { overflow: hidden; flex: 1 1 auto; min-width: 0; }
.hero-reviews-track { display: flex; align-items: stretch; will-change: transform; }

.hr-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: #fff;
  border: 1px solid var(--v-line);
  border-radius: 14px;
  box-shadow: var(--v-shadow-xs);
  padding: 0.7rem 0.8rem;
  text-align: left;
}
.hr-stars { color: var(--v-brand); font-size: 0.72rem; letter-spacing: 1.5px; line-height: 1; }
.hr-head { display: flex; align-items: center; gap: 0.35rem; }
.hr-name { font-weight: 600; font-size: 0.8rem; color: var(--v-ink); }
.hr-loc { font-size: 0.68rem; color: var(--v-muted); font-weight: 500; letter-spacing: .02em; }
.hr-verified {
  display: inline-flex; align-items: center; justify-content: center;
  width: 14px; height: 14px; border-radius: 50%;
  background: #eafaf0; color: #12b76a; font-size: 0.6rem; font-weight: 700;
}
.hr-title {
  font-weight: 600; font-size: 0.76rem; color: var(--v-ink);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hr-body {
  margin: 0; font-size: 0.74rem; line-height: 1.45; color: var(--v-muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.hr-date { margin-top: auto; padding-top: 0.15rem; font-size: 0.66rem; color: #9aa6b6; }

.hero-reviews-nav {
  flex: 0 0 auto; align-self: center;
  width: 30px; height: 30px; border-radius: 50%;
  border: 1px solid var(--v-line); background: #fff; color: var(--v-ink);
  display: inline-flex; align-items: center; justify-content: center; cursor: pointer;
  transition: border-color var(--v-t), color var(--v-t), background var(--v-t);
}
.hero-reviews-nav:hover { border-color: var(--v-brand-border); color: var(--v-brand-ink); background: var(--v-brand-soft); }
.hr-state { width: 100%; text-align: center; padding: 1.1rem 0; color: var(--v-muted); font-size: 0.85rem; }
@media (max-width: 560px) {
  .hero-reviews-nav { display: none; }
  /* compact the whole reviews strip on small screens */
  .hero-stats-inner { padding: var(--sp-2) var(--sp-2) var(--sp-3); }
  .hero-trust { padding: 0.2rem 0 0.55rem; margin-bottom: 0.55rem; gap: 0.3rem; }
  .hero-trust-stars { font-size: 0.82rem; letter-spacing: 2px; }
  .hero-trust-text { font-size: 0.78rem; }
  .hr-card { padding: 0.6rem 0.7rem; gap: 0.12rem; border-radius: 12px; }
  .hr-stars { font-size: 0.68rem; }
  .hr-name { font-size: 0.76rem; }
  .hr-title { font-size: 0.72rem; }
  .hr-body { font-size: 0.72rem; line-height: 1.4; }
  .hr-date { font-size: 0.62rem; }
}

/* =====================================================================
   Phone mockup refinement — thinner frame, smaller island (clears the
   status-bar icons), tighter in-phone typography.
   ===================================================================== */
.phone-mockup::before {                 /* dynamic island — narrower + shorter */
  width: 26% !important;
  max-width: 80px !important;
  min-width: 66px !important;
  height: 20px !important;
  top: 12px !important;
  border-radius: 11px !important;
}
.phone-mockup .phone-screen {           /* thinner bezel around the screen */
  top: 7px !important;
  left: 7px !important;
  right: 7px !important;
  bottom: 7px !important;
  border-radius: 44px !important;
}
.phone-mockup { border-width: 1.5px !important; }

/* status bar — hug the edges, clear of the island, slightly smaller */
.pm-statusbar { top: 11px; left: 15px; right: 13px; }
.pm-time { font-size: 10.5px; }
.pm-sysicons { gap: 4px; }
.pm-sysicons .pm-ic { transform: scale(.9); transform-origin: center; }

/* in-phone content — more compact so it feels like a real app screenshot */
.phone-mockup .app-interface { padding-top: 42px !important; }
.phone-mockup .app-logo { height: 19px; }
.pm-status { font-size: 0.6rem; padding: 0.24rem 0.55rem; }
.pm-status-dot { width: 6px; height: 6px; }
.pm-data-card { padding: 0.65rem 0.75rem; }
.pm-data-head { font-size: 0.58rem; }
.pm-data-figure strong { font-size: 1.28rem; }
.pm-data-figure span { font-size: 0.64rem; }
.pm-bar { height: 5px; margin-top: 0.5rem; }
.pm-dests-label { font-size: 0.58rem; }
.pm-flag { width: 26px; height: 26px; font-size: 0.82rem; }
.pm-flag-more { font-size: 0.6rem; }

/* =====================================================================
   Hero search — cleaner, modern (rounded field + compact action button)
   ===================================================================== */
.hero-search { max-width: 500px; }
.hero .search-container {
  padding: 6px !important;
  min-height: 54px;
  gap: 4px;
  border-radius: 16px !important;
  border: 1px solid rgba(255, 255, 255, .5) !important;
  background: #fff !important;
  box-shadow: 0 14px 36px -16px rgba(40, 8, 0, .42) !important;
}
.hero .search-input { min-height: 42px !important; padding-inline: 0.9rem !important; font-size: 0.96rem !important; }
.hero .search-button {
  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 12px !important;
  background: var(--v-brand) !important;
  color: #fff !important;
  flex: 0 0 auto;
}
.hero .search-button svg { display: block; width: 18px !important; height: 18px !important; color: #fff; }
.hero .search-button svg path { stroke: #fff; }

/* Plans page — "Load more" pagination button */
.countries-load-more {
  display: block;
  margin: var(--sp-4) auto 0;
  padding: 0.72rem 1.7rem;
  border-radius: 999px;
  border: 1px solid var(--v-line);
  background: #fff;
  color: var(--v-ink);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: border-color var(--v-t), color var(--v-t), background var(--v-t), transform var(--v-t);
}
.countries-load-more:hover { border-color: var(--v-brand-border); color: var(--v-brand-ink); background: var(--v-brand-soft); transform: translateY(-1px); }
.countries-load-more[hidden] { display: none; }

/* ------------------------------------------------------------------ *
   Page loader — restrained replacement for the full-bleed orange splash

   The old loader flashed a saturated orange gradient over the whole
   viewport with three spinning rings. This layer's rule is restraint:
   colour is reserved for meaning, not decoration. So the canvas is the
   ordinary page background, the logo carries the brand, and the only
   orange is a single thin arc.

   Overrides styles.css by loading later at equal specificity. The ids
   and class names JS depends on (#page-loader, .fade-out, body.loading)
   are untouched.
 * ------------------------------------------------------------------ */
.page-loader {
  background: var(--v-bg);
  transition: opacity .4s var(--v-ease), visibility .4s var(--v-ease);
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  animation: none;                 /* the old slide-up read as a jolt */
}

.loader-logo-img {
  height: auto;
  width: clamp(140px, 12vw, 168px);
  filter: none;                    /* was inverted to white for the orange splash */
  opacity: 0;
  animation: loader-settle .5s var(--v-ease) .05s forwards;
}

/* A single hairline arc: enough to say "working", quiet enough to
   disappear the moment the page is ready. */
.loader-spinner {
  display: block;
  width: 30px;
  height: 30px;
  margin: 0;
  border: 2.5px solid var(--v-line);
  border-top-color: var(--v-brand);
  border-radius: 50%;
  animation: loader-spin .75s linear infinite;
}

/* Replaces the old infinite fade-in-out pulse, which read as a fault
   rather than as progress — it settles once and then holds. */
.loader-text {
  margin: 0;
  color: var(--v-muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0;
  opacity: 0;
  animation: loader-settle .5s var(--v-ease) .15s forwards;
}

@keyframes loader-spin { to { transform: rotate(360deg); } }
@keyframes loader-settle {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .loader-logo-img,
  .loader-text { animation: none; opacity: 1; }
  .loader-spinner { animation-duration: 2s; }
}

/* ------------------------------------------------------------------ *
   Device eSIM compatibility card (home, between reviews and destinations)

   One card, two columns: the pitch on the left, a scannable QR on the
   right that actually solves the desktop visitor's problem. Reads as a
   helpful prompt, never an alert — the verdict lives in the words and
   in the badge on the illustration, not in the card's colour.

   Mobile-first. JS sets a state class on .esim-check-card and writes
   only the heading and description.
 * ------------------------------------------------------------------ */
.esim-check {
  --ec-orange: #ff6b00;
  --ec-orange-hover: #e95f00;
  --ec-orange-wash: #fff4eb;
  --ec-orange-border: #ffe1cc;
  --ec-icon-bg: #fff1e8;
  --ec-ink: #1f2937;
  --ec-muted: #6b7280;
  --ec-hairline: #f1f5f9;

  padding-block: 40px 0;
}
.esim-check[hidden] { display: none; }

/* Tighten the run-in to Popular Destinations, which brings its own
   generous top padding — scoped so no other section is affected. */
.esim-check + .destinations { padding-top: 48px; }

/* Below 768px styles.css strips .container's horizontal padding with
   !important, which would run this card edge-to-edge. Restore a gutter
   here — !important is needed only to out-rank that override. */
@media (max-width: 767px) {
  .esim-check .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* ---- Card ------------------------------------------------------- */
.esim-check-card {
  display: grid;
  grid-template-columns: 1fr;          /* mobile: single column */
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--ec-hairline);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f3 100%);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06), 0 2px 8px rgba(15, 23, 42, .04);
  text-align: center;                  /* mobile: centred composition */
  transition: transform .25s var(--v-ease), box-shadow .25s var(--v-ease);
  animation: esim-check-in .45s var(--v-ease) both;
}
.esim-check-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .08), 0 3px 10px rgba(15, 23, 42, .05);
}

@keyframes esim-check-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

.esim-check-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ---- Illustration ----------------------------------------------- */
.esim-check-ic {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 35%, #fff 0%, var(--ec-icon-bg) 70%);
  color: var(--ec-orange);
  box-shadow: 0 0 0 1px rgba(255, 107, 0, .1), 0 8px 20px -10px rgba(255, 107, 0, .45);
  animation: esim-check-float 5s ease-in-out infinite;
}
@keyframes esim-check-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}
.esim-check-ic-art { width: 40px; height: 40px; }
.esim-check-ic-badge {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 20px;
  height: 20px;
  color: var(--ec-orange);
  border-radius: 50%;
  box-shadow: 0 0 0 3px #fff;
}
/* The badge is the only thing that shifts between states — a quiet
   signal, never a colour-coded warning across the whole card. */
.esim-check-card.is-maybe .esim-check-ic-badge,
.esim-check-card.is-desktop .esim-check-ic-badge { color: #f59e0b; }
.esim-check-card.is-no .esim-check-ic-badge { color: #94a3b8; }

/* ---- Copy ------------------------------------------------------- */
.esim-check-body { min-width: 0; }

.esim-check-title {
  margin: 0;
  font-family: inherit;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ec-ink);
  text-wrap: balance;
}

.esim-check-text {
  margin: 8px auto 0;
  max-width: 46ch;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ec-muted);
}

/* ---- Actions ---------------------------------------------------- */
.esim-check-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.esim-check-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 50px;
  padding: 0 26px;
  border: 0;
  border-radius: 14px;
  background: var(--ec-orange);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(255, 107, 0, .24);
  transition: background .2s var(--v-ease), box-shadow .2s var(--v-ease), transform .2s var(--v-ease);
}
.esim-check-toggle:hover {
  background: var(--ec-orange-hover);
  box-shadow: 0 10px 24px rgba(255, 107, 0, .3);
  transform: translateY(-2px);
}
.esim-check-toggle:active { transform: translateY(0); }
.esim-check-toggle:focus-visible { outline: 2px solid var(--ec-orange); outline-offset: 3px; }
.esim-check-toggle-ic { transition: transform .2s var(--v-ease); }
/* Points down once the steps below are open. */
.esim-check-toggle[aria-expanded="true"] .esim-check-toggle-ic { transform: rotate(90deg); }

.esim-check-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 44px;                    /* touch target */
  color: var(--ec-orange);
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: color .2s var(--v-ease), gap .2s var(--v-ease);
}
.esim-check-link:hover { color: var(--ec-orange-hover); gap: 9px; }
.esim-check-link:focus-visible { outline: 2px solid var(--ec-orange); outline-offset: 3px; }

/* ---- QR panel --------------------------------------------------- */
/* Hidden by default and only switched on for the desktop two-column
   layout (see the 900px block). A QR is useless on a phone — you would
   be scanning the screen you are already holding — and useless in a
   narrow window where it would just push the CTA further down. */
.esim-check-qr {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--ec-orange-border);
  border-radius: 16px;
  background: #fff;
}
.esim-check-qr-frame {
  width: 132px;
  height: 132px;
  padding: 8px;
  border-radius: 12px;
  background: #fff;
  transition: transform .25s var(--v-ease);
}
.esim-check-qr-frame img { width: 100%; height: 100%; display: block; }
.esim-check-qr:hover .esim-check-qr-frame { transform: scale(1.03); }
.esim-check-qr-caption {
  margin: 0;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--ec-muted);
  text-align: center;
}

/* ---- Disclosure ------------------------------------------------- */
.esim-check-help {
  margin-top: 10px;
  padding: 18px 20px;
  border: 1px solid var(--ec-orange-border);
  border-radius: 16px;
  background: var(--ec-orange-wash);
  text-align: left;
  animation: esim-check-in .3s var(--v-ease) both;
}
.esim-check-help[hidden] { display: none; }
.esim-check-help p {
  margin: 0 0 10px;
  max-width: 72ch;
  font-size: 14.5px;
  line-height: 1.65;
  color: #4b5563;
}
.esim-check-help p:last-child { margin-bottom: 0; }
.esim-check-help strong { color: var(--ec-ink); font-weight: 600; }
.esim-check-help code {
  padding: 2px 8px;
  border-radius: 7px;
  border: 1px solid var(--ec-orange-border);
  background: #fff;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: .94em;
  font-weight: 600;
  color: var(--ec-ink);
}

/* ---- Tablet: left-aligned, actions side by side ----------------- */
@media (min-width: 560px) {
  .esim-check-card { padding: 28px; text-align: left; }
  .esim-check-main { flex-direction: row; align-items: center; gap: 22px; }
  .esim-check-text { margin-left: 0; }
  .esim-check-actions { flex-direction: row; align-items: center; gap: 16px; }
  .esim-check-toggle { width: auto; }
  .esim-check-title { font-size: 23px; }
}

/* ---- Desktop: content | QR -------------------------------------- */
@media (min-width: 900px) {
  /* The only place the QR appears: a wide viewport AND a visitor who is
     not already on a phone. Both conditions must hold. */
  .esim-check-card.is-desktop .esim-check-qr { display: flex; }

  /* Second column only exists when the QR does — otherwise the column
     gap would leave 40px of dead space on the right. */
  .esim-check-card.is-desktop {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 40px;
  }

  .esim-check-card { padding: 32px; }
  .esim-check-ic { width: 84px; height: 84px; border-radius: 26px; }
  .esim-check-ic-art { width: 46px; height: 46px; }
  .esim-check-title { font-size: 26px; }
  .esim-check-text { font-size: 16px; }
  .esim-check-qr-frame { width: 148px; height: 148px; }
}

/* ---- Very narrow phones ----------------------------------------- */
@media (max-width: 380px) {
  .esim-check .container { padding-left: 12px !important; padding-right: 12px !important; }
  .esim-check-card { padding: 20px; gap: 20px; border-radius: 20px; }
  .esim-check-ic { width: 64px; height: 64px; border-radius: 20px; }
  .esim-check-ic-art { width: 34px; height: 34px; }
  .esim-check-title { font-size: 19px; }
  .esim-check-text { font-size: 14.5px; }
}

@media (prefers-reduced-motion: reduce) {
  .esim-check-card,
  .esim-check-help,
  .esim-check-ic { animation: none; }
  .esim-check-card,
  .esim-check-toggle,
  .esim-check-toggle-ic,
  .esim-check-link,
  .esim-check-qr-frame { transition: none; }
  .esim-check-card:hover,
  .esim-check-toggle:hover { transform: none; }
  .esim-check-qr:hover .esim-check-qr-frame { transform: none; }
}
