/* ╔══════════════════════════════════════════════════════════════╗
   ║   eSIM NELIMITAT — 5GeSIM Portal Design System 2026         ║
   ║   Matched to resellers.5gesimglobal.com                            ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* Match reseller portal typography */
@font-face{font-family:"BlauerNue";src:url("https://resellers.esim.tech/fonts/BlauerNue-Light.woff2") format("woff2");font-weight:300;font-style:normal;font-display:swap}
@font-face{font-family:"BlauerNue";src:url("https://resellers.esim.tech/fonts/BlauerNue-Regular.woff2") format("woff2");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"BlauerNue";src:url("https://resellers.esim.tech/fonts/BlauerNue-Medium.woff2") format("woff2");font-weight:500;font-style:normal;font-display:swap}
@font-face{font-family:"BlauerNue";src:url("https://resellers.esim.tech/fonts/BlauerNue-SemiBold.woff2") format("woff2");font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:"BlauerNue";src:url("https://resellers.esim.tech/fonts/BlauerNue-Bold.woff2") format("woff2");font-weight:700;font-style:normal;font-display:swap}
@font-face{font-family:"BlauerNue";src:url("https://resellers.esim.tech/fonts/BlauerNue-ExtraBold.woff2") format("woff2");font-weight:800;font-style:normal;font-display:swap}
@font-face{font-family:"BlauerNue";src:url("https://resellers.esim.tech/fonts/BlauerNue-Heavy.woff2") format("woff2");font-weight:900;font-style:normal;font-display:swap}

/* ─── TOKENS ─────────────────────────────────────────────────── */
:root {
  --ink: #06070c;
  --ink-1: #0a0d15;
  --ink-2: #101522;
  --ink-3: #171d2d;
  --surface: rgba(18, 23, 35, 0.86);
  --surface-2: rgba(13, 17, 28, 0.9);
  --text: #f5f7fb;
  --text-2: #c3c9d8;
  --text-3: #96a0b5;
  --border: rgba(255, 255, 255, 0.14);
  --border-2: rgba(255, 255, 255, 0.2);
  --brand: #ff1f2e;
  --brand-soft: rgba(255, 31, 46, 0.18);
  --brand-dark: #e01120;
  --cyan: #ff1f2e; /* mapped to portal --brand */
  --cyan-soft: #ffe5e7;
  --violet: #ff3d4a;
  --violet-soft: #ffe5e7;
  --mint: #059669;
  --mint-soft: rgba(5, 150, 105, 0.1);
  --gold: #D97706;
  --gold-soft: rgba(217, 119, 6, 0.1);
  --danger: #DC2626;
  --danger-soft: rgba(220, 38, 38, 0.08);
  --glow-c: none;
  --glow-v: none;
  --r-xs: 8px;
  --r-sm: 12px; /* portal rounded-xl */
  --r: 16px;    /* portal rounded-2xl */
  --r-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(16, 18, 24, .06), 0 1px 3px rgba(16, 18, 24, .04);
  --shadow: 0 4px 16px rgba(16, 18, 24, .08), 0 2px 6px rgba(16, 18, 24, .05);
  --shadow-lg: 0 16px 48px rgba(16, 18, 24, .16), 0 6px 16px rgba(16, 18, 24, .08);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-b: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t: 0.2s;
  --t-sl: 0.35s;
  --blue: #ff1f2e;
  --blue-hover: #e01120;
  --page-bg: #06070c;
  --canvas: #06070c;
  --card: rgba(18, 23, 35, 0.9);
  --muted: #6b7280;
}

/* ─── BASE RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 82px; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--page-bg);
  background-image:
    radial-gradient(ellipse at 50% -12%, rgba(255, 31, 46, 0.26) 0%, rgba(255, 31, 46, 0) 45%),
    linear-gradient(180deg, #070910 0%, #06070c 42%, #05070d 100%);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.45;
}

body::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: -16%;
  height: 44%;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(255, 31, 46, 0) 0%,
    rgba(255, 31, 46, 0.58) 50%,
    rgba(255, 31, 46, 0) 100%
  );
  filter: blur(22px);
  animation: globalScanRed 8.5s ease-in-out infinite;
  transform: translateY(-24%);
}

@keyframes globalScanRed {
  0% { transform: translateY(-26%); opacity: .78; }
  50% { transform: translateY(108%); opacity: .5; }
  100% { transform: translateY(-26%); opacity: .78; }
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
h1,h2,h3,h4 {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.2;
  color: var(--text);
  font-weight: 700;
}
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; }

/* Selection */
::selection { background: rgba(255, 31, 46, 0.15); color: var(--text); }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--ink-1); }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 9px; }
::-webkit-scrollbar-thumb:hover { background: #9CA3AF; }

/* Focus */
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 4px; }

/* Force BlauerNue across the UI */
body, .btn, .btn-nav, h1, h2, h3, h4, .section-title, .section-desc, label, input, select, textarea, button {
  font-family: "BlauerNue", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif !important;
}

/* ─── UTILITIES ─────────────────────────────────────────────── */
.container { width: min(1240px, 92%); margin-inline: auto; position: relative; }
.skip-link { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.skip-link:focus { left: 1rem; top: 1rem; width: auto; height: auto; z-index: 9999; padding: .7rem 1rem; border-radius: 8px; background: var(--surface); color: #111; box-shadow: var(--shadow); }

/* ─── PROGRESS BAR ───────────────────────────────────────────── */
.progress-bar {
  position: fixed; top: 0; left: 0;
  width: 0%; height: 2px;
  background: var(--blue);
  box-shadow: none;
  z-index: 9999;
  transition: width 60ms linear;
}
@keyframes pbShimmer { 0% { background-position: 0%; } 100% { background-position: 200%; } }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 600; font-size: .9rem;
  letter-spacing: .01em;
  border-radius: var(--r-sm);
  border: 1.5px solid transparent;
  padding: .75rem 1.4rem;
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: transform var(--t) var(--ease), box-shadow var(--t), border-color var(--t), background var(--t), color var(--t);
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background .2s;
  border-radius: inherit;
  pointer-events: none;
}
.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn:hover        { transform: none; }
.btn:active       { transform: scale(.98) translateY(0); }

/* Primary */
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 14px rgba(255, 31, 46, 0.28);
}
.btn-primary:hover { background: var(--brand-dark); opacity: 0.95; box-shadow: 0 6px 18px rgba(255, 31, 46, 0.32); }

/* Outline */
.btn-outline {
  border-color: var(--border-2);
  color: var(--text);
  background: var(--surface);
}
.btn-outline:hover { border-color: var(--cyan); background: var(--cyan-soft); color: var(--cyan); }

/* Nav CTA */
.btn-nav {
  padding: .55rem 1rem;
  font-size: .875rem;
  background: var(--brand);
  color: #fff;
  font-family: inherit;
  font-weight: 600;
  border-radius: var(--r-sm);
  box-shadow: 0 4px 14px rgba(255, 31, 46, 0.22);
}
.btn-nav:hover { background: var(--brand-dark); opacity: .95; }

/* Full-width */
.btn-full { width: 100%; }

/* Small */
.btn-sm { padding: .5rem 1rem; font-size: .8rem; border-radius: var(--r-sm); }

/* Tutorial / special */
.tutorial-video-link {
  background: var(--blue) !important;
  color: #fff !important;
  border-color: var(--blue) !important;
  font-weight: 700;
  box-shadow: var(--shadow-sm) !important;
}
.tutorial-video-link:hover { background: var(--blue-hover) !important; box-shadow: var(--shadow) !important; }
.btn-group-inline { display: flex; flex-wrap: wrap; gap: .5rem; margin: .8rem 0; }

/* ═══════════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════════ */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 18, 24, 0.06);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
}
.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body.nav-open {
  overflow: hidden;
  touch-action: none;
}

/*
 * Ancestors with backdrop-filter create a containing block for position:fixed
 * descendants, so #mainNav.open was clipped to the header height (~72px).
 * While the drawer is open, drop the blur on the header so the panel can
 * cover the full viewport below the bar.
 */
@media (max-width: 959px) {
  .site-header.site-header--menu-open {
    overflow: visible;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--surface);
  }
  .site-header.site-header--menu-open .hdr-inner {
    overflow: visible;
  }
}

.site-header {
  position: sticky; top: 0; z-index: 950;
  border-bottom: 1px solid var(--border);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: var(--surface);
  transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: var(--surface);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.hdr-inner {
  display: flex; align-items: center; gap: 1rem;
  min-height: 56px; /* portal h-14 */
}

/* Logo */
.logo {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.01em;
  flex-shrink: 0;
  color: var(--text);
}
/* Script.js sets .logo span to plain text "eSIM Nelimitat" — solid dark text, no gradient */
.logo > span:not(.logo-icon) {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  color: var(--text);
  font-weight: 700;
}
.logo-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: none;
  flex-shrink: 0;
  display: block;
}
.logo-icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.logo--footer { margin-bottom: .8rem; font-size: 1rem; }

/* Main nav */
.main-nav {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: .15rem;
}

/* Mobile nav open state (toggled by script.js via .open class) */
.main-nav.open {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: calc(100dvh - 56px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin-left: 0 !important;
  padding: 1rem;
  padding-bottom: max(2rem, env(safe-area-inset-bottom, 0px));
  background: var(--surface);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  z-index: 930;
  animation: mobileNavIn .25s var(--ease) both;
}
@keyframes mobileNavIn {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.main-nav.open a {
  padding: .85rem 1rem;
  border-radius: var(--r-sm);
  border-bottom: 1px solid var(--border);
  font-size: 1rem;
}
.main-nav.open a:last-child { border-bottom: 0; }
.main-nav a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-2);
  padding: .45rem .75rem;
  border-radius: var(--r-xs);
  transition: color var(--t), background var(--t);
}
.main-nav a:hover, .main-nav a.nav-active {
  color: var(--text);
  background: var(--ink-1);
}
.main-nav a.nav-active { color: var(--cyan); }

/* Right side */
.hdr-right {
  display: flex; align-items: center; gap: .6rem;
  margin-left: auto;
}

/* Language */
.lang-switch { position: relative; z-index: 980; }
.lang-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  min-width: 52px; height: 44px;
  padding: 0 .55rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-2);
  background: var(--surface);
  color: var(--text);
  font-size: 1.15rem;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
  box-shadow: none;
}
.lang-btn:hover { background: var(--surface-2); border-color: var(--cyan); }
.lang-btn:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.lang-flag { font-size: 1.25rem; line-height: 1; }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: min(220px, calc(100vw - 2rem)); padding: .5rem;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  backdrop-filter: none;
  opacity: 0; transform: translateY(-8px) scale(.96);
  pointer-events: none; z-index: 990;
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}
.lang-switch.open .lang-menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.lang-option {
  width: 100%; display: flex; align-items: center; gap: .6rem;
  padding: .85rem .85rem;
  min-height: 48px;
  border-radius: var(--r-xs); color: var(--text);
  font-size: .95rem; font-weight: 600; text-align: left; cursor: pointer;
  background: transparent; border: none; font-family: inherit;
  transition: background var(--t), color var(--t), transform var(--t);
}
.lang-option:hover, .lang-option:focus-visible { background: var(--cyan-soft); color: var(--cyan); }
.lang-option.active { color: var(--cyan); background: var(--cyan-soft); box-shadow: inset 0 0 0 1px rgba(255, 31, 46, 0.2); }
.lang-option + .lang-option { margin-top: .2rem; }

/* Logo span */
.logo > span:last-child { color: var(--text); }

/* Hamburger */
.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  width: 46px; height: 46px; justify-content: center; align-items: center;
  border-radius: var(--r-xs);
  cursor: pointer; border: none; background: transparent;
  touch-action: manipulation; appearance: none; -webkit-appearance: none;
  position: relative; z-index: 960;
  border: 1px solid var(--border-2);
  background: var(--surface);
  flex-shrink: 0;
  transition: background var(--t), border-color var(--t);
}
.hamburger:hover { background: var(--surface-2); border-color: var(--border-2); }
.hamburger[aria-expanded="true"] { background: var(--cyan-soft); border-color: rgba(255, 31, 46, 0.35); }
.hamburger span { display: block; width: 18px; height: 2px; background: var(--text); border-radius: 2px; transition: transform var(--t), opacity var(--t); }
/* X icon when open */
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════════════════════════ */
.section { padding: 5rem 0; position: relative; }

.section-head {
  max-width: 640px;
  margin-bottom: 2.75rem;
}
.section-head.center { margin-inline: auto; text-align: center; }

.section-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .28rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 31, 46, 0.2);
  background: var(--cyan-soft);
  color: var(--cyan);
  font-family: Inter, system-ui, sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: .9rem;
}

.section-title {
  margin: 0 0 .8rem;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  letter-spacing: -.02em;
  color: var(--text);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
}

.section-desc {
  margin: 0; color: var(--text-2); font-size: 1.05rem; line-height: 1.7;
  max-width: 58ch;
}

/* Divider */
.section + .section::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40%; height: 1px;
  background: var(--border);
}

.features-section {
  background: var(--page-bg);
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
.features-section .section-head { margin-bottom: 2rem; }
.features-grid .why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* ═══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3rem;
  min-height: auto;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--surface);
}

/* Grid overlay — disabled for light aesthetic */
.hero-grid-bg {
  display: none;
}

/* Orbs — hidden */
.orb {
  display: none;
}
.orb-1, .orb-2, .orb-3 { display: none; }
@keyframes orbDrift { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(4%, 6%) scale(1.08); } }

/* Hero inner */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative; z-index: 1;
}

/* Headline */
.hero-title {
  margin: 0 0 1.1rem;
  font-size: clamp(2.2rem, 5.5vw, 3.75rem);
  letter-spacing: -.03em;
  line-height: 1.08;
  color: var(--text);
}

.grad-text {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  color: var(--blue);
  animation: none;
}
@keyframes gradFlow { 0%{background-position:0% 50%} 100%{background-position:100% 50%} }

/* Sub */
.hero-sub {
  margin: 0 0 1.75rem;
  color: var(--text-2);
  font-size: 1.08rem;
  line-height: 1.7;
  max-width: 50ch;
}
.hero-sub strong { color: var(--text); }

/* Actions */
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* Sub-actions row */
.hero-sub-actions {
  display: flex; align-items: center; gap: .5rem;
  margin-top: .6rem;
}
.hero-how-link {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .85rem; font-weight: 600;
  color: var(--text-3);
  border-bottom: 1px solid transparent;
  transition: color var(--t), border-color var(--t);
  padding-bottom: 1px;
}
.hero-how-link:hover { color: var(--cyan); border-color: rgba(255, 31, 46, 0.35); }
.hero-how-link svg { color: var(--cyan); flex-shrink: 0; }

/* Stats */
.hero-stats {
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.stat { display: flex; flex-direction: column; gap: .1rem; }
.stat-val {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.5rem; font-weight: 800;
  letter-spacing: -.02em; color: var(--cyan);
}
.stat-lbl { font-size: .75rem; color: var(--text-3); font-weight: 500; text-transform: uppercase; letter-spacing: .05em; }
.stat-div { width: 1px; height: 32px; background: var(--border); }

/* Hero visual */
.hero-visual { position: relative; }
.hero-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow .4s;
  background: transparent;
}
.hero-img-wrap:hover { box-shadow: var(--shadow-lg); }
.hero-img-wrap img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  filter: none;
  opacity: 1;
  transition: transform .7s var(--ease);
}
.hero-img-wrap:hover img { transform: scale(1.02); }

.hero-visual--canvas {
  display: flex;
  justify-content: center;
}

.hero-stage {
  position: relative;
  width: min(100%, 560px);
  min-height: 560px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 31, 46, 0.14);
  background:
    radial-gradient(circle at top, rgba(255, 31, 46, 0.08), transparent 42%),
    linear-gradient(180deg, #05070d 0%, #090d16 55%, #05070d 100%);
  box-shadow: 0 16px 48px rgba(16, 18, 24, 0.22);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.15));
  pointer-events: none;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-stage-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) brightness(0.58) contrast(1.05);
  transform: scale(1.02);
}

.hero-stage-copy {
  position: absolute;
  left: 0;
  right: 0;
  top: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  padding: 0 1.25rem;
  text-align: center;
  pointer-events: none;
}

.hero-stage-kicker {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.42);
}

.hero-stage-subtitle {
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: clamp(.8rem, 1.4vw, 1.1rem);
  font-weight: 700;
  letter-spacing: .02em;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.hero-explore-btn {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: #ffffff;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .01em;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}

.hero-explore-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.28);
}

.hero-explore-arrow {
  display: inline-flex;
  animation: heroArrowBounce 1.6s ease-in-out infinite;
}

@keyframes heroArrowBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}

/* Floating badges — light chips */
.hero-badge-float,
.hero-badge-float2 {
  position: absolute;
  display: flex; align-items: center; gap: .45rem;
  padding: .45rem .8rem;
  border-radius: 999px;
  backdrop-filter: none;
  font-size: .78rem; font-weight: 700;
  border: 1px solid var(--border);
  animation: badgeFloat 3s ease-in-out infinite alternate;
  box-shadow: var(--shadow-sm);
}
.hero-badge-float {
  bottom: 1.2rem; left: 1.2rem;
  background: var(--surface);
  color: var(--cyan);
  animation-delay: 0s;
}
.hero-badge-float2 {
  top: 1.2rem; right: 1.2rem;
  background: var(--surface);
  color: var(--mint);
  border-color: rgba(5, 150, 105, 0.25);
  animation-delay: -1.5s;
}
@keyframes badgeFloat { 0%{transform:translateY(0)} 100%{transform:translateY(-6px)} }

@keyframes tagPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--mint);
  animation: tagPulse 1.5s ease-in-out infinite;
  box-shadow: none;
}

/* Hero trust bar */
.hero-trust {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; align-items: center; gap: 1rem;
  position: relative; z-index: 1;
}
.trust-label { font-size: .8rem; color: var(--text-3); font-weight: 500; }
.trust-chips { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip {
  padding: .3rem .75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  font-size: .78rem; font-weight: 600;
  color: var(--text-2);
  transition: border-color var(--t), color var(--t), background var(--t);
}
.chip:hover { border-color: rgba(255, 31, 46, 0.3); color: var(--cyan); background: var(--cyan-soft); }

/* ═══════════════════════════════════════════════════════════════
   PLANS / PRICING
═══════════════════════════════════════════════════════════════ */
.plans-section { background: var(--page-bg); }

.pricing-group { margin-bottom: 3rem; }
.pricing-group:last-child { margin-bottom: 0; }

.pricing-group-label {
  display: inline-flex; align-items: center; gap: .5rem;
  margin: 0 0 1.5rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: .8rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--cyan);
  padding: .3rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 31, 46, 0.2);
  background: var(--cyan-soft);
}
.pricing-group-label--alt {
  color: var(--violet);
  border-color: rgba(255, 61, 74, 0.25);
  background: var(--violet-soft);
}

/* Plan search / advanced filters */
.plan-search {
  margin: 0 0 2rem;
  padding: 1.1rem 1.15rem 1.15rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.plan-search-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: stretch;
}
.plan-search-field {
  flex: 1 1 220px;
  display: flex;
  align-items: center;
  gap: .65rem;
  min-height: 48px;
  padding: 0 .95rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-2);
  background: var(--surface);
  color: var(--text-2);
}
.plan-search-field:focus-within {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(255, 31, 46, 0.12);
  color: var(--cyan);
}
.plan-search-field input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: .98rem;
}
.plan-search-field input::placeholder { color: var(--text-3); }
.plan-search-advanced-btn {
  flex: 0 0 auto;
  min-height: 48px;
  white-space: nowrap;
}
.plan-search-advanced {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.plan-search-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: .85rem;
}
.plan-filter {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-3);
}
.plan-filter select {
  min-height: 42px;
  border-radius: var(--r-xs);
  border: 1px solid var(--border-2);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 0 .7rem;
}
.plan-filter select:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(255, 31, 46, 0.12);
}
.plan-search-checks {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem 1.1rem;
  margin-top: 1rem;
}
.plan-check {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .9rem;
  color: var(--text-2);
  cursor: pointer;
}
.plan-check input { accent-color: var(--cyan); width: 1rem; height: 1rem; }
.plan-search-actions { margin-top: 1rem; }
.plan-search-meta-row { margin-top: .85rem; min-height: 1.4em; }
.plan-search-meta {
  margin: 0;
  font-size: .9rem;
  color: var(--text-3);
}
.plan-search-empty {
  margin: .35rem 0 0;
  font-size: .95rem;
  color: var(--gold);
}
.pricing-group.is-filter-hidden,
.plan-tile.is-filter-hidden,
.plan-tile.is-plan-hidden { display: none !important; }

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1.75rem;
  align-items: stretch;
  padding-top: .75rem;
}
.pricing-grid--gb { grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr)); }

/* ── Animated Glassy Pricing (easemize / 21st.dev) ── */
.price-card {
  position: relative;
  isolation: isolate;
  overflow: visible;
  border-radius: 1rem; /* rounded-2xl */
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  backdrop-filter: blur(14px) brightness(0.91);
  padding: 1.75rem 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  text-decoration: none;
  color: inherit;
}

.plans-section .price-card.plan-tile {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  background-image: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  padding: 1.75rem 1.6rem 1.5rem;
  min-height: 0;
  padding-bottom: 1.5rem;
}

/* Network logo — small glass chip (top-right); keep clear of text */
.plans-section .price-card.plan-tile::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 1.15rem;
  bottom: auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background-color: rgba(0, 0, 0, 0.35);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  pointer-events: none;
  z-index: 2;
  opacity: .92;
}
.plans-section .price-card.plan-tile.price-card--featured::after {
  top: 2.35rem;
}

/* Reserve space so title/subtitle never run under the network logo */
.plans-section .price-card.plan-tile .price-card-head {
  padding-right: 3.35rem;
  min-width: 0;
  max-width: 100%;
}
.plans-section .price-card.plan-tile .price-card-head h3 {
  padding-right: 0;
  max-width: 100%;
}
.plans-section .price-card.plan-tile .plan-subtitle {
  padding-right: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}

.plans-section .price-card.plan-tile[data-network="vodafone"]::after,
.plans-section .price-card.plan-tile[data-network="vodafone-nl"]::after {
  background-image: url("images/networks/vodafone.png?v=20260718f");
  background-color: #e60000;
}

.plans-section .price-card.plan-tile[data-network="orange"]::after,
.plans-section .price-card.plan-tile[data-network="orange-fr"]::after,
.plans-section .price-card.plan-tile[data-network="orange-es"]::after {
  background-image: url("images/networks/orange.svg?v=20260718d");
  background-color: #ff7900;
}

.plans-section .price-card.plan-tile[data-network="proximus"]::after {
  background-image: url("images/networks/proximus.png?v=20260718g");
  background-color: #000;
  background-size: contain;
}

.plans-section .price-card.plan-tile[data-network="ee"]::after {
  background-image: url("images/networks/ee.svg?v=20260718n");
  background-color: #00b9ad;
  background-size: contain;
}

.plans-section .price-card.plan-tile[data-network="cmlink"]::after {
  background-image: url("images/networks/cmlink.png?v=20260718h");
  background-color: #000;
  background-size: contain;
}

.price-card::before { display: none; content: none; }

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35), 0 24px 48px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.18);
}

.price-card--featured {
  transform: scale(1.04);
  border-color: rgba(255, 31, 46, 0.35);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 31, 46, 0.08));
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35), 0 0 0 2px rgba(255, 31, 46, 0.2);
  z-index: 1;
}
.price-card--featured:hover {
  transform: scale(1.04) translateY(-5px);
  border-color: rgba(255, 31, 46, 0.5);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(255, 31, 46, 0.32);
}

.price-card--premium {
  border-color: rgba(255, 255, 255, 0.14);
}
.price-card--premium:hover {
  border-color: rgba(255, 31, 46, 0.35);
}

.featured-crown {
  position: absolute;
  top: -0.85rem;
  right: 1rem;
  z-index: 3;
  padding: .28rem .75rem;
  border-radius: 999px;
  background: #ff1f2e;
  border: 0;
  color: #fff;
  font-family: inherit;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: none;
  box-shadow: 0 8px 18px rgba(255, 31, 46, 0.35);
}
.plans-section .price-card.plan-tile .featured-crown {
  display: inline-flex;
}

/* Card head */
.price-card-head {
  margin: 0 0 .35rem;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}
.price-tag-badge {
  display: inline-flex;
  margin-bottom: .5rem;
  padding: .18rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(5, 150, 105, 0.3);
  background: var(--mint-soft);
  color: var(--mint);
  font-size: .65rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
}
.badge-violet { border-color: rgba(255, 61, 74, 0.35); background: var(--violet-soft); color: var(--violet); }
.badge-mint   { border-color: rgba(5, 150, 105, 0.35); background: var(--mint-soft); color: var(--mint); }
.badge-gold   { border-color: rgba(217, 119, 6, 0.4); background: var(--gold-soft); color: var(--gold); }

.price-card-head h3 {
  margin: 0;
  padding-right: 3rem;
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 200;
  letter-spacing: -.03em;
  line-height: 1.15;
  display: flex;
  align-items: center;
  align-content: flex-start;
  gap: .4rem .55rem;
  flex-wrap: wrap;
  color: var(--text);
}
.promo-gb-was {
  position: relative;
  display: inline-block;
  color: var(--text-3);
  -webkit-text-fill-color: var(--text-3);
  font-weight: 400;
  margin-right: .15em;
  text-decoration: none;
  background: none;
}
.price-card-head h3 .promo-gb-was {
  font-weight: 300;
}
.promo-gb-was::after {
  content: "";
  position: absolute;
  left: -0.05em;
  right: -0.05em;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  background: #e53935;
  border-radius: 1px;
  transform: rotate(-14deg);
  transform-origin: center center;
  pointer-events: none;
  z-index: 1;
}
.plans-section .price-card.plan-tile .price-card-head h3 {
  text-shadow: none;
  color: var(--text);
}
.plan-subtitle {
  margin: .45rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: .95rem;
  line-height: 1.45;
  font-weight: 400;
}
.plans-section .price-card.plan-tile .plan-subtitle {
  text-shadow: none;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: .95rem;
}

.glassy-desc {
  margin: .45rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: .95rem;
  line-height: 1.45;
}

.glassy-price {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  margin: 1.15rem 0 .35rem;
}
.glassy-amount {
  font-size: clamp(2.2rem, 4vw, 2.85rem);
  font-weight: 200;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--text);
}
.glassy-cur {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.glassy-divider {
  width: 100%;
  height: 1px;
  margin: .85rem 0 1rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.09) 20%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.09) 80%,
    transparent
  );
}

.glassy-features {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  flex: 1;
}
.glassy-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.35;
}
.glassy-features li::before {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background-color: #ff1f2e;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.glassy-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: auto;
  padding: .7rem 1rem;
  border-radius: .75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: .875rem;
  font-weight: 600;
  transition: background .2s ease, border-color .2s ease, transform .15s ease;
}
.price-card:hover .glassy-cta {
  background: rgba(255, 255, 255, 0.16);
}
.price-card--featured .glassy-cta {
  background: #ff1f2e;
  border-color: transparent;
  color: #fff;
}
.price-card--featured:hover .glassy-cta {
  background: #ff3d4a;
}

/* Validity badge */
.plan-validity-badge {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  font-family: inherit;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: .22rem .65rem;
  vertical-align: middle;
  white-space: normal;
  flex-shrink: 0;
  max-width: 100%;
  text-align: center;
  line-height: 1.2;
}
.plan-validity-badge::before {
  content: none;
}

/* Validity feature row */
.feat-validity {
  background: rgba(255, 31, 46, 0.1) !important;
  border-radius: 12px;
  padding: .45rem .65rem !important;
  font-weight: 600;
  color: #ff8a94 !important;
  border-color: rgba(255, 31, 46, 0.2) !important;
  width: 100%;
  max-width: 100%;
  align-self: stretch;
  box-sizing: border-box;
  white-space: normal !important;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.feat-validity::before { content: '📅' !important; font-size: .85rem; }
.feat-validity strong { color: #ff8a94 !important; font-weight: 800; }

/* Price number on detail pages */
.price-card-price {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  margin: 1rem 0 .25rem;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}
.price-card-price--promo {
  align-items: baseline;
  flex-wrap: wrap;
  gap: .35rem .65rem;
}
.price-amount--was {
  position: relative;
  display: inline-block;
  font-family: inherit;
  font-size: 1.45rem;
  font-weight: 300;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--text-3);
  text-decoration: none;
  -webkit-text-fill-color: var(--text-3);
  background: none;
}
.price-amount--was::after {
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  background: #e53935;
  border-radius: 1px;
  transform: rotate(-14deg);
  transform-origin: center center;
  pointer-events: none;
}
.price-amount--was sup { font-size: .72rem; vertical-align: super; }
.price-amount {
  font-family: inherit;
  font-size: clamp(2.2rem, 4vw, 2.85rem);
  font-weight: 200;
  letter-spacing: -.03em;
  line-height: 1;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  color: var(--text);
}
.price-amount.price-amount--was {
  font-size: 1.45rem;
  font-weight: 300;
  letter-spacing: -.03em;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: var(--text-3) !important;
  color: var(--text-3) !important;
}
.price-amount:not(.price-amount--was) {
  color: var(--text);
}
.price-card--featured .price-amount:not(.price-amount--was),
.price-card .btn-primary + .price-amount,
.price-card-price .price-amount:not(.price-amount--was) {
  color: var(--text);
}
.price-amount sup { font-size: 1.1rem; letter-spacing: 0; vertical-align: super; font-weight: 200; }
.price-amount.price-amount--was sup { font-size: .72rem; }
.price-cur { font-size: .9rem; font-weight: 500; color: rgba(255, 255, 255, 0.7); padding-bottom: 0; }

/* Features list — glassy checklist */
.price-features {
  list-style: none;
  margin: .85rem 0 1.15rem;
  padding: .85rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  flex: 1;
  border-radius: 0;
  border: 0;
  border-top: 1px solid transparent;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.09) 20%,
      rgba(255, 255, 255, 0.22) 50%,
      rgba(255, 255, 255, 0.09) 80%,
      transparent
    ) top / 100% 1px no-repeat;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: .35rem .5rem;
  padding: 0;
  font-size: .875rem;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 0;
  min-width: 0;
}
.price-features li.feat-data-promo {
  font-size: .82rem;
  line-height: 1.45;
}
.price-features li:last-child { border-bottom: 0; }
.price-features li::before {
  content: "";
  width: 14px;
  height: 14px;
  color: transparent;
  background-color: #ff1f2e;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  flex-shrink: 0;
  margin-top: .15em;
}
.price-features li strong { color: var(--text); font-weight: 600; }

.feat-highlight {
  background: rgba(255, 31, 46, 0.1);
  border-radius: 12px;
  padding: .45rem .65rem !important;
  font-weight: 700;
  color: #ff8a94 !important;
  border: 1px solid rgba(255, 31, 46, 0.22) !important;
  border-bottom-color: rgba(255, 31, 46, 0.22) !important;
}
.feat-highlight::before { background-color: #ff6b78 !important; }

/* Action button inside plan cards */
.price-card > .btn,
.price-card > .btn-primary,
.price-card .buy-button {
  margin: .25rem 0 0;
  height: auto;
  min-height: 44px;
  padding: .7rem 1rem;
  border-radius: .75rem;
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: none;
  background: #ff1f2e;
  border: 0;
  transition: background .2s ease, transform .15s ease;
}
.price-card > .btn:hover,
.price-card > .btn-primary:hover,
.price-card .buy-button:hover {
  background: #ff3d4a;
}
.price-card > .btn:active,
.price-card > .btn-primary:active,
.price-card .buy-button:active {
  transform: scale(0.98);
}

.feat-warn {
  color: var(--danger) !important;
  font-size: .8rem !important;
}
.feat-warn::before { content: '⚠' !important; color: var(--danger) !important; background: none !important; -webkit-mask: none !important; mask: none !important; width: auto !important; height: auto !important; }

/* Plan details accordion */
.plan-details { width: 100%; border: 0; background: none; }
.plan-details summary {
  cursor: pointer; font-size: .82rem; font-weight: 600;
  color: var(--text-3); list-style: none;
  display: flex; justify-content: space-between;
  user-select: none;
}
.plan-details summary:hover { color: var(--cyan); }
.plan-details summary::-webkit-details-marker { display: none; }
.plan-details summary::after { content: '+'; font-size: 1.1rem; }
.plan-details[open] summary::after { content: '−'; color: var(--cyan); }
.plan-details[open] summary { color: var(--cyan); }
.plan-details-body { padding-top: .6rem; }
.plan-details-body p { margin: .35rem 0; font-size: .82rem; color: var(--text-3); }

/* Plan detail pages */
.plan-detail-page { background: var(--page-bg); }
.plan-detail-card {
  max-width: 480px;
  margin: 0 auto;
}

/* Plans → reviews CTA */
.plans-review-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .9rem;
  text-align: center;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}
.plans-review-cta-lead {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.plans-review-cta-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  width: min(100%, 340px);
  padding: 1.15rem 1.35rem 1.25rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: var(--shadow-sm);
  transition: border-color .25s, background .25s, transform .25s, box-shadow .25s;
}
.plans-review-cta-btn:hover {
  border-color: rgba(255, 31, 46, 0.35);
  background: var(--surface);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.plans-review-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .2rem;
}
.plans-review-star {
  appearance: none;
  border: 0;
  background: transparent;
  padding: .15rem .2rem;
  margin: 0;
  font-size: 1.65rem;
  line-height: 1;
  color: #D1D5DB;
  cursor: pointer;
  transition: color .15s, transform .15s;
}
.plans-review-star:hover,
.plans-review-star.is-active,
.plans-review-star.is-preview {
  color: #F59E0B;
  transform: scale(1.12);
}
.plans-review-star:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 2px;
  border-radius: 6px;
}
.plans-review-cta-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .01em;
  color: #fff;
  text-decoration: none;
  padding: .55rem 1.1rem;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  background: var(--blue);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
  transition: border-color .2s, background .2s, color .2s, box-shadow .2s;
}
.plans-review-cta-action:hover {
  border-color: transparent;
  background: var(--blue-hover);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

/* Giveaway banner */
.giveaway-banner {
  margin-top: 3rem;
  display: grid; grid-template-columns: 1fr;
  gap: 0;
  border-radius: var(--r);
  border: 1px solid rgba(255, 31, 46, 0.3);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  position: relative;
}
.giveaway-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue);
}
.giveaway-img img { width: 100%; height: 220px; object-fit: cover; display: block; }
.giveaway-body { padding: 1.8rem; }
.giveaway-tag {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .25rem .7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 31, 46, 0.25);
  background: var(--cyan-soft);
  color: var(--cyan);
  font-size: .7rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: .8rem;
  animation: giveawayGlow 2.6s ease-in-out infinite;
}
@keyframes giveawayGlow {
  0%,100%{ box-shadow: 0 0 0 0 rgba(255, 31, 46, 0); }
  50%{ box-shadow: 0 0 0 4px rgba(255, 31, 46, 0.1); }
}
.giveaway-body h3 { margin: 0 0 .5rem; font-size: 1.45rem; letter-spacing: -.02em; color: var(--text); }
.giveaway-body p { margin: 0 0 .8rem; color: var(--text-2); font-size: .93rem; }
.giveaway-body ul { margin: 0 0 1rem; padding-left: 1.1rem; color: var(--text-2); font-size: .9rem; }
.giveaway-body li { margin: .3rem 0; }
.giveaway-body li::marker { color: var(--cyan); }
.giveaway-note {
  padding: .6rem .85rem;
  border-radius: var(--r-xs);
  border: 1px solid rgba(255, 31, 46, 0.2);
  background: var(--cyan-soft);
  color: var(--text-2);
  font-size: .88rem;
}
.giveaway-countdown {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
  margin: 0 0 1rem;
  padding: .65rem .9rem;
  border-radius: var(--r-xs);
  border: 1px solid rgba(217, 119, 6, 0.3);
  background: var(--gold-soft);
  color: var(--gold);
}
.giveaway-countdown strong { color: var(--text); }
.giveaway-countdown span { font-weight: 800; letter-spacing: .04em; color: var(--text); }
#giveawayCountdownLabel { font-weight: 700; color: var(--text); }
#giveawayCountdownValue { font-variant-numeric: tabular-nums; font-weight: 800; color: var(--text); }
.giveaway-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin: 0 0 1rem; }
.giveaway-actions .btn { min-width: 220px; justify-content: center; }
.giveaway-history {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.giveaway-history h4 {
  margin: 0 0 .65rem;
  font-size: 1rem;
  color: var(--text);
}
.giveaway-history p:last-child,
.giveaway-history ul:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS — STEPS
═══════════════════════════════════════════════════════════════ */
.steps-section { overflow: hidden; background: var(--surface); }

.steps-bg {
  display: none;
}

.steps-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

.steps-line {
  display: none;
  position: absolute;
  top: 2.5rem; left: 0; right: 0;
  height: 1px;
  background: var(--border);
  opacity: 1;
}

.step {
  display: flex; flex-direction: column;
  padding: 1.75rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-sl) var(--ease), box-shadow var(--t-sl), border-color var(--t-sl);
}
.step::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--blue);
  opacity: 0; transition: opacity .3s;
}
.step:hover::before { opacity: 1; }
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 31, 46, 0.3);
}

.step-num {
  position: absolute; top: 1.2rem; right: 1.4rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: 3.5rem; font-weight: 900;
  color: rgba(255, 31, 46, 0.06);
  line-height: 1;
  user-select: none; pointer-events: none;
  letter-spacing: -.05em;
}

.step-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t) var(--ease-b), box-shadow var(--t);
  flex-shrink: 0;
}
.step:hover .step-icon { transform: scale(1.06); box-shadow: var(--shadow); }

.step h3 { margin: 0 0 .5rem; font-size: 1.1rem; letter-spacing: -.01em; }
.step p  { margin: 0; color: var(--text-2); font-size: .93rem; }

/* ═══════════════════════════════════════════════════════════════
   WHY SECTION — BENEFITS
═══════════════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(220px,100%), 1fr));
  gap: 1rem;
}

.why-card {
  padding: 1.4rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
  transition: transform var(--t-sl) var(--ease), box-shadow var(--t-sl), border-color var(--t-sl);
}
.why-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--blue);
  opacity: 0; transition: opacity .3s;
}
.why-card:hover::after { opacity: 1; }
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 31, 46, 0.3);
}

.why-card:nth-child(3n+2):hover { border-color: rgba(255, 61, 74, 0.35); box-shadow: var(--shadow); }
.why-card:nth-child(3n+2)::after { background: var(--violet); }
.why-card:nth-child(3n+3):hover { border-color: rgba(5, 150, 105, 0.35); box-shadow: var(--shadow); }
.why-card:nth-child(3n+3)::after { background: var(--mint); }

.why-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-sm);
  background: var(--cyan-soft);
  border: 1px solid rgba(255, 31, 46, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan);
  margin-bottom: 1rem;
  transition: background var(--t), transform var(--t) var(--ease-b);
}
.why-card:hover .why-icon { transform: scale(1.06); background: rgba(255, 31, 46, 0.12); }

.why-card h3 { margin: 0 0 .4rem; font-size: 1rem; font-weight: 700; }
.why-card p  { margin: 0; color: var(--text-2); font-size: .87rem; line-height: 1.6; }

/* Speed proof */
.speed-proof {
  display: grid; grid-template-columns: 1fr;
  gap: 1rem; margin-top: 2.5rem;
}
.speed-card {
  padding: 1.4rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.speed-label {
  display: block; margin-bottom: 1rem;
  font-family: Inter, system-ui, sans-serif;
  font-size: .78rem; font-weight: 700;
  color: var(--text-3); text-transform: uppercase; letter-spacing: .06em;
}
.speed-bars { display: flex; flex-direction: column; gap: .7rem; }
.speed-bar-item {
  display: grid; grid-template-columns: 70px 1fr 72px;
  align-items: center; gap: .6rem;
}
.speed-val {
  font-family: Inter, system-ui, sans-serif;
  font-size: .88rem; font-weight: 700; color: var(--cyan); text-align: right;
}
.bar-wrap { height: 6px; border-radius: 999px; background: var(--ink-3); overflow: hidden; }
.bar-fill {
  height: 100%; width: var(--pct, 0%);
  border-radius: 999px;
  background: var(--blue);
  animation: barGrow .9s var(--ease) both;
}
.bar-fill--upload { background: var(--violet); }
@keyframes barGrow { from{width:0} to{width:var(--pct,0%)} }
.speed-type { font-size: .75rem; color: var(--text-3); }
.speed-ping { display: block; margin-top: .9rem; font-size: .82rem; color: var(--text-3); }
.speed-ping strong { color: var(--mint); }

/* ═══════════════════════════════════════════════════════════════
   COVERAGE
═══════════════════════════════════════════════════════════════ */
.coverage-section {
  background: var(--surface);
}

.country-cloud {
  display: flex; flex-wrap: wrap; gap: .55rem;
}
.country-pill {
  padding: .38rem .88rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  font-size: .87rem; color: var(--text-2);
  cursor: default;
  transition: border-color var(--t), background var(--t), color var(--t), transform var(--t);
  backdrop-filter: none;
}
.country-pill:hover {
  border-color: rgba(255, 31, 46, 0.35);
  background: var(--cyan-soft);
  color: var(--cyan);
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════
   COMPATIBILITY
═══════════════════════════════════════════════════════════════ */
.compat-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1.2rem;
}
.compat-card {
  padding: 1.6rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-sl) var(--ease), box-shadow var(--t-sl), border-color var(--t-sl);
}
.compat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: rgba(255, 31, 46, 0.3);
}
.compat-logo {
  width: 48px; height: 48px; border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan); margin-bottom: 1rem;
}
.compat-card h3 { margin: 0 0 .8rem; font-size: 1.1rem; }
.compat-card ul { margin: 0; padding-left: 1.1rem; color: var(--text-2); font-size: .9rem; line-height: 1.8; }
.compat-card li { margin: .2rem 0; }
.compat-card li::marker { color: var(--mint); }

/* ═══════════════════════════════════════════════════════════════
   APP SECTION — Android phone showcase
═══════════════════════════════════════════════════════════════ */
.app-section {
  background:
    radial-gradient(ellipse 70% 55% at 85% 40%, rgba(255, 31, 46, 0.08), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(14, 165, 233, 0.06), transparent 55%),
    var(--page-bg);
}
.app-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.app-copy .section-tag { margin-bottom: .9rem; }
.app-copy .section-title { margin-bottom: .8rem; }
.app-copy > p { color: var(--text-2); margin-bottom: 1.25rem; font-size: 1rem; line-height: 1.7; }
.app-note { margin-top: .8rem !important; font-size: .82rem !important; color: var(--text-3) !important; }

.app-features {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .7rem;
}
.app-features li {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .75rem .85rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}
.app-feature-icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  background: var(--cyan-soft);
  border: 1px solid rgba(255, 31, 46, 0.2);
}
.app-features strong {
  display: block;
  font-size: .95rem;
  color: var(--text);
  margin-bottom: .15rem;
}
.app-features span:not(.app-feature-icon) {
  display: block;
  font-size: .86rem;
  color: var(--text-3);
  line-height: 1.4;
}

.app-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
}

.android-phone {
  width: min(100%, 280px);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
}
.android-phone__bezel {
  position: relative;
  border-radius: 28px;
  padding: 10px 9px 12px;
  background: linear-gradient(160deg, #2a2f3a 0%, #12151c 45%, #0a0c10 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4);
}
.android-phone__camera {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0b0d12;
  box-shadow: inset 0 0 0 1.5px #1c2230, 0 0 0 1px rgba(255,255,255,0.08);
  z-index: 2;
}
.android-phone__camera::after {
  content: "";
  position: absolute;
  inset: 2.5px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #4a6a9a, #152033 70%);
}
.android-phone__screen {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #05070d;
  aspect-ratio: 9 / 19.5;
}
.android-phone__slides {
  position: absolute;
  inset: 0;
}
.android-phone__slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transform: translateX(12%);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.android-phone__slides img.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 1;
}
.android-phone__slides img.is-exit-left {
  opacity: 0;
  transform: translateX(-12%);
}
.android-phone__gesture {
  width: 96px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  margin: 8px auto 2px;
}

.app-carousel-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  width: 100%;
}
.app-carousel-btn {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  min-height: 44px;
  padding: .45rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.app-carousel-btn:hover,
.app-carousel-btn:focus-visible {
  border-color: rgba(255, 31, 46, 0.4);
  background: var(--cyan-soft);
  color: var(--cyan);
  outline: none;
}
.app-carousel-btn:disabled {
  opacity: .35;
  cursor: default;
}
.app-carousel-dots {
  display: flex;
  gap: .4rem;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.app-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.app-carousel-dot.is-active {
  background: var(--cyan);
  transform: scale(1.25);
}
.app-carousel-caption {
  margin: 0;
  text-align: center;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-2);
  min-height: 1.3em;
}

@media (min-width: 960px) {
  .app-inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 360px);
    gap: 3rem;
  }
  .app-showcase { margin-inline: 0 0; justify-self: end; }
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS / REVIEWS
═══════════════════════════════════════════════════════════════ */
.testimonial-row {
  display: flex; gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  cursor: grab;
  scrollbar-width: thin;
  scrollbar-color: var(--border-2) transparent;
}
.testimonial-row:active { cursor: grabbing; }
.testimonial-row::-webkit-scrollbar { height: 4px; }
.testimonial-row::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 9px; }

.testimonial-card {
  min-width: min(360px, 88vw);
  scroll-snap-align: start;
  margin: 0;
  padding: 1.5rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: .8rem;
  transition: transform var(--t-sl) var(--ease), border-color var(--t-sl), box-shadow var(--t-sl);
}
.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 31, 46, 0.3);
  box-shadow: var(--shadow);
}

.tc-stars { color: #F59E0B; font-size: 1rem; letter-spacing: .06em; }
.testimonial-card p { margin: 0; color: var(--text-2); font-style: italic; line-height: 1.65; font-size: .97rem; flex: 1; }
.testimonial-card cite { font-style: normal; font-size: .85rem; font-weight: 700; color: var(--cyan); }

.slider-nav { display: flex; gap: .5rem; justify-content: flex-end; margin-top: 1rem; }
.slf-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  background: var(--surface);
  color: var(--text-2);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), color var(--t);
}
.slf-btn:hover { background: var(--cyan-soft); border-color: rgba(255, 31, 46, 0.35); color: var(--cyan); }

/* Review form */
.review-form-wrap {
  margin-top: 2.5rem;
  padding: 1.75rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.review-form-wrap h3 { margin: 0 0 1.4rem; font-size: 1.25rem; }
.review-form { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }
.rf-row { display: flex; flex-direction: column; gap: .3rem; }
.rf-row--full { grid-column: 1/-1; }
.rf-row label { font-size: .82rem; font-weight: 600; color: var(--text-2); }
.rf-row input, .rf-row select, .rf-row textarea {
  border: 1px solid var(--border-2);
  border-radius: var(--r-xs);
  background: var(--surface);
  color: var(--text); padding: .6rem .75rem;
  font: inherit; font-size: .9rem;
  transition: border-color var(--t), box-shadow var(--t);
}
.rf-row textarea { resize: vertical; }
.rf-row input:focus-visible, .rf-row select:focus-visible, .rf-row textarea:focus-visible {
  outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(255, 31, 46, 0.12);
}
.rf-msg { grid-column: 1/-1; font-size: .85rem; color: var(--text-2); min-height: 1.2em; }

.trustpilot-cta {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1.2rem;
}
.trustpilot-cta__text {
  margin: 0;
  flex: 1 1 220px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.5;
}
.btn-trustpilot {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.7rem 1.1rem;
  border-radius: var(--r-sm);
  border: 1px solid rgba(0, 182, 122, 0.45);
  background: rgba(0, 182, 122, 0.12);
  color: #5dffc0;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background var(--t), border-color var(--t), color var(--t), transform var(--t);
}
.btn-trustpilot:hover {
  background: rgba(0, 182, 122, 0.2);
  border-color: rgba(0, 182, 122, 0.7);
  color: #9dffd9;
  transform: translateY(-1px);
}
.trustpilot-cta__star { flex-shrink: 0; }

.plans-review-trustpilot {
  display: inline-flex;
  align-items: center;
  margin-left: 0.35rem;
  color: #5dffc0;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.plans-review-trustpilot:hover { color: #9dffd9; }

/* Dynamic reviews */
.reviews-slider-outer { margin-top: 1.5rem; }
.reviews-slider-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: .8rem; gap: 1rem; }
.reviews-slider-label { font-weight: 700; font-size: .8rem; color: var(--text-3); text-transform: uppercase; letter-spacing: .06em; margin: 0; }
.reviews-list-slider {
  display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1rem; cursor: grab;
  scrollbar-width: thin; scrollbar-color: var(--border-2) transparent;
}
.reviews-list-slider:active { cursor: grabbing; }
.reviews-list-slider .review-card { min-width: 100%; width: 100%; flex-shrink: 0; scroll-snap-align: start; }
.review-card {
  display: grid; gap: .5rem; padding: 1.3rem;
  border-radius: var(--r); border: 1px solid var(--border); background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.review-card-head { display: flex; align-items: center; justify-content: space-between; gap: .6rem; font-size: .88rem; }
.review-stars { color: #F59E0B; letter-spacing: .05em; }
.review-comment { margin: 0; color: var(--text-2); font-size: .9rem; }
.review-date { color: var(--text-3); font-size: .8rem; }

/* ═══════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════ */
.faq-section { background: var(--surface); }

.faq-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
.faq-left p { color: var(--text-2); margin: .8rem 0 1.5rem; font-size: .97rem; line-height: 1.7; }

.faq-right { display: flex; flex-direction: column; gap: .6rem; }

.faq-item {
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color .3s;
}
.faq-item[open] { border-color: rgba(255, 31, 46, 0.35); }

.faq-item summary {
  padding: 1.15rem 1.3rem;
  font-weight: 700; font-family: Inter, system-ui, sans-serif;
  font-size: .95rem;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: .8rem;
  cursor: pointer;
  transition: color .25s;
  user-select: none;
  color: var(--text);
}
.faq-item summary:hover { color: var(--cyan); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid var(--border-2);
  color: var(--text-3); font-size: 1.1rem;
  transition: transform .3s var(--ease), background .25s, border-color .25s, color .25s;
}
.faq-item[open] summary { color: var(--cyan); }
.faq-item[open] summary::after {
  content: '−';
  background: var(--cyan-soft);
  border-color: rgba(255, 31, 46, 0.35);
  color: var(--cyan);
  transform: rotate(180deg);
}

.faq-body { padding: 0 1.3rem 1.3rem; color: var(--text-2); line-height: 1.7; font-size: .93rem; }

/* Activation */
.activation-head {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 1rem;
  margin: 3rem 0 2rem;
}
.copy-btn { border-radius: var(--r-sm); }

.activation-grid { display: grid; gap: 1.2rem; }

.activation-card {
  padding: 1.6rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.activation-card h3 { margin: 0 0 1rem; font-size: 1.1rem; color: var(--cyan); }
.activation-card ol { margin: 0; padding-left: 1.2rem; color: var(--text-2); font-size: .9rem; line-height: 1.8; }
.activation-card li { margin: .3rem 0; }
.activation-card li::marker { color: var(--cyan); font-weight: 700; }

.activation-notice {
  margin-top: 1.2rem;
  padding: 1.2rem 1.4rem;
  border-radius: var(--r);
  border: 1px solid rgba(255, 31, 46, 0.28);
  background: rgba(255, 31, 46, 0.1);
  display: flex; gap: 1rem; align-items: flex-start;
  color: var(--text-2);
}
.activation-notice svg { color: var(--cyan); flex-shrink: 0; margin-top: .15rem; }
.activation-notice strong { color: var(--text); }
.activation-notice ul { margin: .5rem 0 1rem; padding-left: 1.1rem; font-size: .9rem; line-height: 1.8; color: var(--text-2); }
.activation-notice li { margin: .2rem 0; color: var(--text-2); }
.activation-notice li::marker { color: var(--cyan); }

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--page-bg);
  padding: 3.5rem 0 0;
  position: relative;
}
.site-footer::before {
  display: none;
}

.footer-inner {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer-brand p { color: var(--text-3); font-size: .9rem; line-height: 1.65; margin-bottom: 1.2rem; max-width: 32ch; }
.footer-contact { display: flex; flex-direction: column; gap: .55rem; }
.ftr-link-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  color: var(--text-2); font-size: .88rem;
  transition: color var(--t);
}
.ftr-link-btn:hover { color: var(--cyan); }

.footer-col h4 {
  margin: 0 0 1rem; font-size: .88rem; font-weight: 700;
  color: var(--text); text-transform: uppercase; letter-spacing: .05em;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.footer-col li a { color: var(--text-3); font-size: .88rem; transition: color var(--t); }
.footer-col li a:hover { color: var(--cyan); }

.social-row { display: flex; gap: .55rem; flex-wrap: wrap; margin-bottom: .5rem; }
.social-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .5rem .9rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-2);
  font-size: .84rem; font-weight: 600;
  transition: border-color var(--t), background var(--t), color var(--t), box-shadow var(--t);
}
.social-btn:hover {
  border-color: rgba(255, 31, 46, 0.35);
  background: var(--cyan-soft);
  color: var(--cyan);
  box-shadow: var(--shadow-sm);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
  background: var(--surface);
}
.footer-bottom-inner { display: grid; gap: 1rem; justify-items: center; }
.footer-company-list { padding: 0; margin: 0; list-style: none; display: grid; gap: .35rem; max-width: 720px; }
.footer-company-list li { color: var(--text-3); font-size: .85rem; line-height: 1.5; }
.footer-company-list a { color: var(--text-2); text-decoration: none; transition: color var(--t); }
.footer-company-list a:hover { color: var(--cyan); }
.footer-bottom p { margin: 0; color: var(--text-3); font-size: .85rem; }

/* ═══════════════════════════════════════════════════════════════
   COOKIE CONSENT
═══════════════════════════════════════════════════════════════ */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 420;
  padding: 0 1rem 1rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity .35s ease, transform .35s ease;
}
.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cookie-consent__panel {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  backdrop-filter: none;
}
.cookie-consent__content { min-width: 0; }
.cookie-consent__title {
  display: block;
  margin-bottom: .45rem;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
}
.cookie-consent__message {
  margin: 0 0 .55rem;
  color: var(--text-3);
  font-size: .86rem;
  line-height: 1.55;
}
.cookie-consent__policy {
  color: var(--cyan);
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
}
.cookie-consent__policy:hover { text-decoration: underline; }
.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  align-items: center;
}
.cookie-consent__btn {
  appearance: none;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  padding: .62rem 1.1rem;
  font: inherit;
  font-size: .86rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color var(--t), background var(--t), color var(--t), box-shadow var(--t);
}
.cookie-consent__btn--reject {
  color: var(--text-2);
  border-color: var(--border-2);
  background: var(--surface);
}
.cookie-consent__btn--reject:hover {
  border-color: var(--border-2);
  color: var(--text);
  background: var(--surface-2);
}
.cookie-consent__btn--accept {
  color: #fff;
  border-color: transparent;
  background: var(--blue);
  box-shadow: var(--shadow-sm);
}
.cookie-consent__btn--accept:hover {
  background: var(--blue-hover);
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .cookie-consent__panel {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1.15rem 1.35rem;
  }
  .cookie-consent__actions { justify-content: flex-end; }
}

@media (max-width: 767px) {
  .cookie-consent { padding: 0 .75rem calc(.75rem + env(safe-area-inset-bottom)); }
  .cookie-consent__actions { width: 100%; }
  .cookie-consent__btn { flex: 1 1 calc(50% - .3rem); text-align: center; }
}

[dir="rtl"] .cookie-consent__panel { direction: rtl; text-align: right; }

/* ═══════════════════════════════════════════════════════════════
   FLOATING CHAT
═══════════════════════════════════════════════════════════════ */
.floating-btns {
  position: fixed; right: 1rem; bottom: 1rem;
  z-index: 380;
  display: flex; flex-direction: column; gap: .55rem;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  position: relative;
  transition: transform var(--t), filter var(--t), box-shadow var(--t);
}
.float-btn::before {
  content: '';
  position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid transparent;
  animation: floatPing 3s ease-in-out infinite;
  pointer-events: none;
}
.float-btn--wa {
  background: #22C55E;
  border: 1px solid rgba(34, 197, 94, 0.4);
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}
.float-btn--wa::before { border-color: rgba(34, 197, 94, 0.25); }
.float-btn--tg {
  background: #0EA5E9;
  border: 1px solid rgba(14, 165, 233, 0.4);
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.3);
  animation-delay: -1.4s;
}
.float-btn--tg::before { border-color: rgba(14, 165, 233, 0.25); animation-delay: -1.4s; }
.float-btn:hover { transform: translateY(-3px) scale(1.05); filter: brightness(1.05); }
@keyframes floatPing { 0%{transform:scale(1);opacity:.5} 50%{transform:scale(1.35);opacity:0} 100%{transform:scale(1);opacity:0} }

body.modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

.plan-modal-overlay[hidden] { display: none; }
.plan-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(17, 24, 39, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding:
    max(0.75rem, env(safe-area-inset-top, 0px))
    max(0.75rem, env(safe-area-inset-right, 0px))
    max(0.75rem, env(safe-area-inset-bottom, 0px))
    max(0.75rem, env(safe-area-inset-left, 0px));
  overscroll-behavior: contain;
}
.plan-modal-card {
  width: min(720px, 100%);
  max-height: calc(100vh - 1.5rem);
  max-height: calc(100dvh - 1.5rem);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 20, 32, 0.98);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 0;
}
.plan-modal-close {
  position: absolute;
  top: .7rem;
  right: .75rem;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-2);
  background: rgba(16, 20, 32, 0.95);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.plan-modal-close:hover {
  border-color: rgba(255, 31, 46, 0.35);
  background: var(--cyan-soft);
  color: var(--cyan);
}
.plan-modal-scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 1.15rem 1.15rem 0.85rem;
}
.plan-modal-head {
  padding-right: 2.6rem; /* keep clear of close button */
}
.plan-modal-actions {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: .85rem 1.15rem calc(.95rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(16, 20, 32, 0.98);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
}
.plan-modal-actions .btn {
  margin: 0;
}
.plan-modal-head .section-tag { margin-bottom: .7rem; }
.plan-modal-head .section-title { font-size: clamp(1.4rem, 4vw, 2rem); margin-bottom: .6rem; padding-right: 0; }
.plan-modal-head .section-desc { margin-bottom: 1rem; max-width: 70ch; }
.plan-modal-card .price-features {
  margin: 10px 0 0;
  padding: .85rem 1rem;
}
.plan-modal-tabs {
  display: flex;
  gap: .6rem;
  margin: .2rem 0 1rem;
  padding: .25rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
}
.plan-modal-tab {
  flex: 1;
  border-radius: var(--r-xs);
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-2);
  font-weight: 700;
  padding: .6rem .85rem;
  font-size: .9rem;
  -webkit-tap-highlight-color: transparent;
}
.plan-modal-tab.is-active {
  color: var(--cyan);
  border-color: rgba(255, 31, 46, 0.25);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.country-flag {
  display: inline-flex;
  width: 1.35em;
  justify-content: center;
  margin-right: .5rem;
}

@media (max-width: 767px) {
  .plan-modal-overlay {
    align-items: flex-end;
    padding:
      max(0.5rem, env(safe-area-inset-top, 0px))
      0
      0
      0;
  }
  .plan-modal-card {
    width: 100%;
    max-height: calc(100vh - env(safe-area-inset-top, 0px) - 0.5rem);
    max-height: calc(100dvh - env(safe-area-inset-top, 0px) - 0.5rem);
    border-radius: 20px 20px 0 0;
  }
  .plan-modal-scroll {
    padding: 1.1rem 1rem 0.75rem;
  }
  .plan-modal-actions {
    padding: .8rem 1rem calc(.9rem + env(safe-area-inset-bottom, 0px));
  }
  .plan-modal-close {
    top: .55rem;
    right: .55rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
═══════════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(2px);
  transition:
    opacity .7s var(--ease),
    transform .7s var(--ease),
    filter .6s ease;
  will-change: transform, opacity;
}
.reveal.visible { opacity: 1; transform: translateY(0); filter: blur(0); }

/* Stagger children */
.why-card:nth-child(1)  { transition-delay:  0ms }
.why-card:nth-child(2)  { transition-delay: 60ms }
.why-card:nth-child(3)  { transition-delay:120ms }
.why-card:nth-child(4)  { transition-delay:180ms }
.why-card:nth-child(5)  { transition-delay:240ms }
.why-card:nth-child(6)  { transition-delay:300ms }
.why-card:nth-child(7)  { transition-delay:360ms }
.why-card:nth-child(8)  { transition-delay:420ms }

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero { min-height: auto; padding: 2.5rem 0 2rem; }
  .hero-title { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stage {
    min-height: 420px;
    border-radius: 22px;
  }
  .hero-stage-copy { top: 1.25rem; }
  .hero-explore-btn {
    bottom: 1rem;
    width: calc(100% - 2rem);
    justify-content: center;
  }
  .hero-stats { gap: .75rem; }
  .stat-val { font-size: 1.2rem; }
  .review-form { grid-template-columns: 1fr; }
  .floating-btns { right: .7rem; bottom: .7rem; }
  .float-btn { width: 46px; height: 46px; }
  .plans-section .price-card.plan-tile .price-card-head {
    padding-right: 2.85rem;
  }
  .plans-section .price-card.plan-tile::after {
    width: 30px;
    height: 30px;
    right: 0.75rem;
  }
}

@media (max-width: 767px) {
  .section { padding: 3.5rem 0; }
  .hdr-right .btn-nav { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-grid--gb { grid-template-columns: 1fr; }
  .faq-inner { grid-template-columns: 1fr; }

  /* Plan cards — iOS/Android: no logo-over-text, no scale overflow */
  .plans-section .pricing-grid,
  .plans-section .pricing-grid--gb {
    gap: 1.25rem;
    padding-top: 1rem;
  }
  .plans-section .price-card.plan-tile {
    padding: 1.35rem 1.15rem 1.25rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }
  .price-card--featured,
  .price-card--featured:hover {
    transform: none;
  }
  .plans-section .price-card.plan-tile::after {
    width: 32px;
    height: 32px;
    right: 0.85rem;
    top: 1rem;
    border-radius: 9px;
  }
  .plans-section .price-card.plan-tile.price-card--featured::after {
    top: 2.15rem;
  }
  .plans-section .price-card.plan-tile .price-card-head {
    padding-right: 3rem;
  }
  .plans-section .price-card.plan-tile .price-card-head h3 {
    font-size: clamp(1.35rem, 5.5vw, 1.75rem);
  }
  .plans-section .price-card.plan-tile .plan-subtitle {
    font-size: .9rem;
    line-height: 1.5;
  }
  .featured-crown {
    right: 0.75rem;
    font-size: .68rem;
    padding: .24rem .65rem;
  }
}

@media (min-width: 700px) {
  .steps-track { grid-template-columns: repeat(3,1fr); }
  .steps-line { display: block; }
  .speed-proof { grid-template-columns: repeat(2,1fr); }
  .compat-grid { grid-template-columns: repeat(2,1fr); }
  .giveaway-banner { grid-template-columns: 300px 1fr; }
  .giveaway-img img { height: 100%; }
  .activation-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner { grid-template-columns: repeat(2,1fr); }
}

@media (min-width: 960px) {
  .hamburger { display: none; }
  .main-nav { display: flex; }
  .hdr-right { margin-left: 0; }
  .hero-inner { grid-template-columns: minmax(0, 1fr) minmax(480px, 560px); }
  .hero-sub { font-size: 1.12rem; }
  .faq-inner { grid-template-columns: 340px 1fr; }
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .pricing-grid { grid-template-columns: repeat(4,1fr); }
  .pricing-grid--gb {
    grid-template-columns: repeat(auto-fit, minmax(min(292px, 100%), 1fr));
  }
}

@media (min-width: 1200px) {
  .why-grid { grid-template-columns: repeat(4,1fr); }
  .pricing-grid { grid-template-columns: repeat(4,1fr); }
  .pricing-grid--gb {
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  }
}

/* ── Print ── */
@media print {
  * { animation: none !important; transition: none !important; }
  .floating-btns, .progress-bar, .site-header { display: none; }
  body { background: white; color: black; }
  .section-title, .hero-title { -webkit-text-fill-color: black; background: none; color: black; }
}

/* ── First-visit language gate ── */
html.lang-gate-pending,
html.lang-gate-pending body {
  overflow: hidden !important;
  height: 100%;
}
html.lang-gate-pending body > *:not(#langGate) {
  pointer-events: none !important;
  user-select: none;
}

.lang-gate {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}
.lang-gate.is-visible { opacity: 1; }
.lang-gate.is-leaving { opacity: 0; pointer-events: none; }

.lang-gate__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255, 31, 46, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(255, 31, 46, 0.08), transparent 50%),
    var(--page-bg);
}

.lang-gate__panel {
  position: relative;
  width: min(440px, 100%);
  max-height: min(92vh, 720px);
  overflow: auto;
  padding: 1.6rem 1.35rem 1.4rem;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: rgba(14, 18, 28, 0.94);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  -webkit-overflow-scrolling: touch;
}

.lang-gate__brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.25rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}
.lang-gate__logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.lang-gate__tag {
  display: inline-flex;
  margin: 0 0 0.55rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 31, 46, 0.14);
  color: #ff6b76;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lang-gate__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.55rem, 4vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  font-weight: 800;
}

.lang-gate__subtitle {
  margin: 0 0 1.25rem;
  color: var(--text-3);
  font-size: 0.88rem;
  line-height: 1.5;
}

.lang-gate__list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.lang-gate__option {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  min-height: 56px;
  padding: 0.75rem 0.9rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  background: rgba(18, 23, 35, 0.72);
  color: var(--text);
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: background var(--t), border-color var(--t), transform var(--t), box-shadow var(--t);
}
.lang-gate__option:hover,
.lang-gate__option:focus-visible {
  background: rgba(255, 31, 46, 0.12);
  border-color: rgba(255, 31, 46, 0.4);
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.lang-gate__option.is-suggested {
  border-color: rgba(255, 31, 46, 0.45);
  background: rgba(255, 31, 46, 0.1);
}
.lang-gate__flag {
  font-size: 1.45rem;
  line-height: 1;
  width: 1.75rem;
  text-align: center;
  flex-shrink: 0;
}
.lang-gate__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}
.lang-gate__name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.lang-gate__hint {
  font-size: 0.75rem;
  color: var(--text-3);
  font-weight: 500;
}
.lang-gate__option.is-suggested .lang-gate__hint {
  color: #ff8a93;
}
.lang-gate__chev {
  color: var(--text-3);
  display: inline-flex;
  flex-shrink: 0;
  transition: color var(--t), transform var(--t);
}
.lang-gate__option:hover .lang-gate__chev,
.lang-gate__option:focus-visible .lang-gate__chev {
  color: var(--brand);
  transform: translateX(2px);
}

@media (max-width: 420px) {
  .lang-gate__panel {
    padding: 1.25rem 1rem 1.1rem;
  }
  .lang-gate__option {
    min-height: 52px;
    padding: 0.65rem 0.75rem;
  }
}

/* —— Thank-you / post-purchase page —— */
.thankyou-section {
  background:
    radial-gradient(900px 420px at 12% -10%, rgba(255, 31, 46, 0.10), transparent 60%),
    radial-gradient(700px 380px at 95% 10%, rgba(255, 31, 46, 0.06), transparent 55%),
    var(--surface);
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
}
.thankyou-inner {
  max-width: 720px;
  margin: 0 auto;
}
.thankyou-panel {
  text-align: center;
  padding: 1.5rem 0 2rem;
}
.thankyou-icon {
  display: inline-flex;
  color: var(--cyan);
  margin-bottom: 1rem;
  filter: drop-shadow(0 8px 24px rgba(255, 31, 46, 0.25));
}
.thankyou-panel .section-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
}
.thankyou-panel .section-title {
  margin: 0 auto 0.75rem;
  max-width: 18ch;
}
.thankyou-sub {
  margin: 0 auto 1.5rem;
  max-width: 40ch;
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.55;
}
.thankyou-notice {
  text-align: left;
  margin: 0 auto 1.5rem;
  max-width: 560px;
}
.thankyou-notice p {
  margin: 0.4rem 0 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-2);
}
.thankyou-steps {
  list-style: none;
  margin: 0 auto 1.75rem;
  padding: 0;
  max-width: 480px;
  text-align: left;
  counter-reset: ty-step;
}
.thankyou-steps li {
  counter-increment: ty-step;
  position: relative;
  padding: 0.65rem 0.75rem 0.65rem 3rem;
  margin: 0.35rem 0;
  border-radius: 12px;
  background: var(--surface-2, #f7f8fb);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.45;
}
.thankyou-steps li::before {
  content: counter(ty-step);
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.thankyou-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}
@media (max-width: 560px) {
  .thankyou-panel .section-title {
    max-width: none;
    font-size: 1.55rem;
  }
  .thankyou-actions .btn {
    width: 100%;
  }
}
