/* ==========================================================================
   Blueway English — Design System
   Marca: azul océano, limpio y aireado. Tipografía redondeada (Quicksand)
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Brand blues (from app theme) */
  --blue-800: #0d2a43;   /* deep ocean / ink */
  --blue-700: #134063;
  --blue-650: #1e66a1;
  --blue-600: #257ebe;   /* PRIMARY */
  --blue-500: #3a93d1;
  --blue-400: #6eb4e0;
  --blue-300: #a7d3ee;
  --blue-200: #cfedff;
  --blue-100: #e0eefb;
  --blue-50:  #eef5fc;

  /* Teal / aqua */
  --teal-600: #1fa6bb;
  --teal-400: #38c2d6;
  --teal-300: #5fd3e6;
  --teal-100: #c8f1f8;

  /* Warm accent — used sparingly for energy */
  --coral:    #ff7a59;
  --coral-soft:#ffe6df;
  --gold:     #f9a825;

  /* Neutrals (cool-toned) */
  --ink:      #0e2233;
  --slate-700:#33505f;
  --slate-500:#5a7585;
  --slate-400:#7d96a4;
  --line:     #d9e6f0;
  --line-soft:#e9f1f8;
  --white:    #ffffff;
  --surface:  #f4f9fd;
  --surface-2:#eaf3fb;

  /* Typography */
  --font-display: 'Quicksand', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --r-pill: 999px;

  /* Shadows — soft, elevated */
  --sh-xs: 0 1px 2px rgba(13,42,67,.06);
  --sh-sm: 0 4px 14px rgba(13,42,67,.07);
  --sh-md: 0 14px 34px rgba(13,42,67,.10);
  --sh-lg: 0 30px 70px rgba(13,42,67,.16);
  --sh-blue: 0 16px 34px rgba(37,126,190,.30);

  /* Layout */
  --container: 1180px;
  --gutter: clamp(20px, 5vw, 48px);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--teal-400); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--blue-200); color: var(--blue-800); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; color: var(--blue-800); letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.65rem); }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--slate-700); line-height: 1.65; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: .8rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--blue-600);
  background: var(--blue-100); padding: 7px 15px; border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.eyebrow.on-dark { background: rgba(255,255,255,.1); color: var(--teal-300); }
.section-head p { margin-top: 16px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--blue-600); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 15px 28px; border-radius: var(--r-pill);
  background: var(--btn-bg); color: var(--btn-fg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s;
  white-space: nowrap; line-height: 1;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary {  }
.btn--primary:hover { background: var(--blue-650); }
.btn--coral { --btn-bg: var(--coral); box-shadow: 0 16px 30px rgba(255,122,89,.35); }
.btn--coral:hover { background: #ff6843; }
.btn--ghost { --btn-bg: transparent; --btn-fg: var(--blue-700); box-shadow: inset 0 0 0 2px var(--blue-200); }
.btn--ghost:hover { background: var(--blue-50); box-shadow: inset 0 0 0 2px var(--blue-300); }
.btn--ghost-teal { --btn-fg: var(--teal-600); box-shadow: inset 0 0 0 2px var(--teal-400); }
.btn--ghost-teal:hover { background: var(--teal-100); box-shadow: inset 0 0 0 2px var(--teal-600); }
.btn--white { --btn-bg: #fff; --btn-fg: var(--blue-700); box-shadow: var(--sh-md); }
.btn--white:hover { box-shadow: var(--sh-lg); }
.btn--lg { padding: 18px 34px; font-size: 1.08rem; }
.btn--block { display: flex; width: 100%; }
.btn:active { transform: translateY(-1px) scale(.99); }

.textlink { font-family: var(--font-display); font-weight: 700; color: var(--blue-600); display: inline-flex; align-items: center; gap: 7px; transition: gap .2s, color .2s; }
.textlink:hover { gap: 11px; color: var(--blue-700); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 14px;
  transition: background .3s, box-shadow .3s, padding .3s, backdrop-filter .3s;
}
.site-header.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 1px 0 rgba(13,42,67,.07), var(--sh-sm);
  padding-block: 9px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; color: var(--blue-800); }
.brand img { width: 40px; height: 40px; }
.brand b { color: var(--blue-600); font-weight: 700; }
.brandwrap { font-size: 1.28rem; line-height: 1; }
.brand .brandwrap span { font-weight: 600; color: var(--slate-500); font-size: .82em; letter-spacing: .02em; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-family: var(--font-display); font-weight: 600; font-size: .98rem; color: var(--slate-700);
  padding: 9px 14px; border-radius: var(--r-pill); transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--blue-50); color: var(--blue-700); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-contact-link { font-family: var(--font-display); font-weight: 600; font-size: .98rem; color: var(--slate-700); padding: 9px 14px; border-radius: var(--r-pill); transition: background .2s, color .2s; }
.nav-contact-link:hover { background: var(--blue-50); color: var(--blue-700); }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-md); align-items: center; justify-content: center; color: var(--blue-700); }
.nav-toggle:hover { background: var(--blue-50); }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 940px) {
  .nav-links, .nav-cta .btn, .nav-contact-link { display: none; }
  .nav-toggle { display: flex; }
}

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200; display: grid; grid-template-rows: auto 1fr auto;
  background: rgba(244,249,253,.98); backdrop-filter: blur(8px);
  padding: 20px var(--gutter) 40px;
  transform: translateY(-100%); opacity: 0; pointer-events: none;
  transition: transform .4s var(--ease), opacity .3s;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu .mm-top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 4px; margin-top: 30px; }
.mobile-menu nav a { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--blue-800); padding: 14px 6px; border-bottom: 1px solid var(--line-soft); }
.mobile-menu .mm-actions { display: grid; gap: 12px; }

/* ---------- Wave dividers ---------- */
.wave-top, .wave-bottom { position: absolute; left: 0; width: 100%; line-height: 0; z-index: 1; }
.wave-top { top: -1px; }
.wave-bottom { bottom: -1px; }
.wave-top svg, .wave-bottom svg { width: 100%; height: clamp(40px, 6vw, 90px); display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding-top: clamp(130px, 18vh, 200px); padding-bottom: clamp(60px, 8vw, 110px);
  background:
    radial-gradient(1100px 600px at 82% -8%, var(--blue-100), transparent 60%),
    radial-gradient(800px 500px at 0% 30%, var(--teal-100), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--surface) 100%);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 70px); align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700;
  font-size: .9rem; color: var(--blue-700); background: #fff; border: 1px solid var(--line);
  padding: 8px 16px 8px 9px; border-radius: var(--r-pill); box-shadow: var(--sh-xs); margin-bottom: 22px;
}
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal-600); box-shadow: 0 0 0 4px var(--teal-100); }
.hero h1 { margin-bottom: 20px; }
.hero h1 .hl { position: relative; color: var(--blue-600); white-space: nowrap; }
.hero h1 .hl::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: .06em; height: .28em; z-index: -1;
  background: var(--teal-300); border-radius: var(--r-pill); opacity: .55;
}
.hero .lead { max-width: 540px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 34px; }
.hero-trust .ht { display: flex; align-items: center; gap: 10px; font-size: .94rem; color: var(--slate-700); font-weight: 600; }
.hero-trust .ht svg { width: 20px; height: 20px; color: var(--teal-600); flex: none; }

/* Hero visual — floating app cards */
.hero-visual { position: relative; min-height: 460px; }
.hv-blob { position: absolute; inset: 6% -4% -6% 4%; background: linear-gradient(150deg, var(--blue-500), var(--teal-600)); border-radius: 42% 58% 56% 44% / 48% 42% 58% 52%; opacity: .14; filter: blur(2px); animation: blob 16s var(--ease) infinite; }
@keyframes blob { 0%,100%{border-radius:42% 58% 56% 44%/48% 42% 58% 52%;} 50%{border-radius:56% 44% 42% 58%/52% 58% 42% 48%;} }
.float { animation: floaty 6s ease-in-out infinite; }
.float.d1 { animation-delay: -1.5s; }
.float.d2 { animation-delay: -3s; }
.float.d3 { animation-delay: -4.2s; }
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-12px);} }

.app-card { position: absolute; background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-lg); border: 1px solid rgba(255,255,255,.7); }
.hv-main {
  inset: 4% 8% 8% 6%; padding: 22px; display: flex; flex-direction: column; gap: 16px;
}
.hv-main .mh { display: flex; align-items: center; gap: 12px; }
.hv-main .mh .av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-400), var(--blue-650)); flex: none; }
.hv-main .mh .mt { font-family: var(--font-display); font-weight: 700; color: var(--blue-800); font-size: 1.05rem; }
.hv-main .mh .ms { font-size: .82rem; color: var(--slate-500); }
.lesson-row { display: flex; align-items: center; gap: 13px; padding: 13px; border-radius: var(--r-md); background: var(--surface); }
.lesson-row .ic { width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #fff; flex: none; }
.lesson-row .lt { font-family: var(--font-display); font-weight: 700; font-size: .96rem; color: var(--blue-800); }
.lesson-row .lp { height: 7px; border-radius: 99px; background: var(--line); margin-top: 7px; overflow: hidden; }
.lesson-row .lp i { display: block; height: 100%; border-radius: 99px; background: var(--teal-600); }
.lesson-row .pct { font-family: var(--font-display); font-weight: 700; font-size: .85rem; color: var(--teal-600); flex: none; }
.lesson-row .grow { flex: 1; min-width: 0; }

.hv-chip { padding: 13px 18px; display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; color: var(--blue-800); font-size: .95rem; }
.hv-chip .badge-lvl { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; font-size: .82rem; }
.hv-speak { top: -2%; right: 0; }
.hv-streak { bottom: 2%; left: -3%; }
.hv-streak .num { font-size: 1.4rem; color: var(--coral); }

/* ---------- Logo strip / trust ---------- */
.marquee-wrap { padding-block: 34px; border-block: 1px solid var(--line-soft); background: #fff; }
.marquee-label { text-align: center; font-family: var(--font-display); font-weight: 700; color: var(--slate-400); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.cefr-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.cefr-pill { font-family: var(--font-display); font-weight: 700; padding: 8px 18px; border-radius: var(--r-pill); font-size: .95rem; color: #fff; box-shadow: var(--sh-sm); }

/* ---------- Value strip ---------- */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.value {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 28px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.value:hover { transform: translateY(-6px); box-shadow: var(--sh-md); border-color: transparent; }
.value .vic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 18px; color: #fff; }
.value .vic svg { width: 26px; height: 26px; }
.value h3 { font-size: 1.18rem; margin-bottom: 8px; }
.value p { font-size: .96rem; color: var(--slate-700); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; position: relative; }
.step { position: relative; text-align: left; }
.step .snum {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: #fff;
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-650)); box-shadow: var(--sh-blue); margin-bottom: 20px;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--slate-700); }
.step .sconn { position: absolute; top: 23px; left: 64px; right: -13px; height: 2px; background: repeating-linear-gradient(90deg, var(--blue-300) 0 8px, transparent 8px 16px); }
.steps .step:last-child .sconn { display: none; }

/* ---------- Features (split rows) ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(56px, 7vw, 104px); }
.feature-row.flip .feature-media { order: -1; }
.feature-copy .ficon { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; color: #fff; margin-bottom: 22px; box-shadow: var(--sh-sm); }
.feature-copy .ficon svg { width: 28px; height: 28px; }
.feature-copy h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 16px; }
.feature-copy p { color: var(--slate-700); margin-bottom: 20px; }
.feature-list { display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 600; color: var(--slate-700); }
.feature-list li svg { width: 22px; height: 22px; color: var(--teal-600); flex: none; margin-top: 2px; }

/* media mock */
.media-mock { position: relative; border-radius: var(--r-xl); padding: 18px; background: linear-gradient(160deg, var(--blue-50), var(--surface-2)); box-shadow: var(--sh-md); border: 1px solid var(--line-soft); }
.media-mock .screen { background: #fff; border-radius: var(--r-lg); box-shadow: var(--sh-sm); overflow: hidden; }
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 13px 16px; border-bottom: 1px solid var(--line-soft); }
.mock-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--line); }
.mock-bar i:nth-child(1){ background:#ffbcae;} .mock-bar i:nth-child(2){ background:#ffe08a;} .mock-bar i:nth-child(3){ background:#a9e6c0;}
.mock-body { padding: 20px; display: grid; gap: 14px; }

/* video mock */
.video-mock { aspect-ratio: 16/10; border-radius: var(--r-md); background: linear-gradient(135deg, var(--blue-700), var(--teal-600)); position: relative; display: grid; place-items: center; overflow: hidden; }
.video-mock::after { content:''; position:absolute; inset:0; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), transparent 50%); }
.video-mock .play { width: 70px; height: 70px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; box-shadow: var(--sh-md); z-index: 1; }
.video-mock .play svg { width: 30px; height: 30px; color: var(--blue-600); margin-left: 4px; }
.video-mock .vtime { position: absolute; bottom: 12px; left: 14px; right: 14px; height: 5px; border-radius: 99px; background: rgba(255,255,255,.3); z-index: 1; }
.video-mock .vtime i { display: block; width: 38%; height: 100%; border-radius: 99px; background: #fff; }

/* exercise mock */
.opt { display: flex; align-items: center; gap: 12px; padding: 13px 15px; border-radius: var(--r-md); border: 2px solid var(--line); font-family: var(--font-display); font-weight: 700; color: var(--blue-800); font-size: .95rem; transition: .2s; }
.opt .key { width: 26px; height: 26px; border-radius: 8px; background: var(--surface); display: grid; place-items: center; font-size: .8rem; color: var(--slate-500); flex: none; }
.opt.correct { border-color: var(--teal-400); background: var(--teal-100); }
.opt.correct .key { background: var(--teal-600); color: #fff; }
.q-label { font-family: var(--font-display); font-weight: 700; color: var(--slate-500); font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; }
.q-text { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--blue-800); }

/* chat mock */
.chat-line { display: flex; gap: 9px; align-items: flex-end; }
.chat-line.me { flex-direction: row-reverse; }
.bubble { max-width: 78%; padding: 11px 15px; border-radius: 16px; font-size: .92rem; font-weight: 600; }
.bubble.them { background: var(--surface); color: var(--slate-700); border-bottom-left-radius: 5px; }
.bubble.me-b { background: var(--blue-600); color: #fff; border-bottom-right-radius: 5px; }
.chat-av { width: 30px; height: 30px; border-radius: 50%; flex: none; background: linear-gradient(135deg, var(--coral), #ff9a7d); }
.chat-line.me .chat-av { background: linear-gradient(135deg, var(--blue-400), var(--blue-650)); }

/* ---------- Levels (CEFR) ---------- */
.levels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.level-card {
  position: relative; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 26px 24px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.level-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.level-card .lvl-tag { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; margin-bottom: 18px; box-shadow: var(--sh-sm); }
.level-card h3 { font-size: 1.2rem; margin-bottom: 7px; }
.level-card p { font-size: .94rem; color: var(--slate-700); }
.level-card .lvl-bar { position: absolute; top: 0; left: 0; height: 5px; width: 100%; }

/* ---------- Method (dark ocean band) ---------- */
.band-dark { position: relative; background: linear-gradient(160deg, var(--blue-800) 0%, #0a2438 60%, var(--blue-700) 100%); color: #fff; overflow: hidden; }
.band-dark h2, .band-dark h3 { color: #fff; }
.band-dark .lead { color: rgba(255,255,255,.78); }
.band-dark .bubbles-bg { position: absolute; inset: 0; pointer-events: none; opacity: .5; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 2; }
.method-card { background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg); padding: 30px 26px; backdrop-filter: blur(6px); transition: transform .3s var(--ease), background .3s; }
.method-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); }
.method-card .mic { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; background: rgba(95,211,230,.16); color: var(--teal-300); margin-bottom: 20px; }
.method-card .mic svg { width: 28px; height: 28px; }
.method-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.method-card p { color: rgba(255,255,255,.72); font-size: .97rem; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; position: relative; z-index: 2; }
.stat { text-align: center; }
.stat .sv { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem); color: #fff; line-height: 1; }
.stat .sv .u { color: var(--teal-300); }
.stat .sl { color: rgba(255,255,255,.7); font-weight: 600; margin-top: 8px; font-size: .95rem; }

/* ---------- Pricing / plan ---------- */
.plan-wrap { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: stretch; }
.plan-info { background: linear-gradient(160deg, var(--blue-50), var(--surface-2)); border: 1px solid var(--line-soft); border-radius: var(--r-xl); padding: clamp(30px, 4vw, 48px); }
.plan-info h2 { margin-bottom: 16px; }
.plan-list { display: grid; gap: 16px; margin-top: 26px; }
.plan-list .pi { display: flex; gap: 14px; align-items: flex-start; }
.plan-list .pi .pic { width: 42px; height: 42px; border-radius: 12px; background: #fff; display: grid; place-items: center; color: var(--blue-600); box-shadow: var(--sh-xs); flex: none; }
.plan-list .pi .pic svg { width: 22px; height: 22px; }
.plan-list .pi h4 { font-family: var(--font-display); font-size: 1.05rem; color: var(--blue-800); margin-bottom: 3px; }
.plan-list .pi p { font-size: .92rem; color: var(--slate-700); }
.plan-cta { background: linear-gradient(160deg, var(--blue-600), var(--blue-700)); color: #fff; border-radius: var(--r-xl); padding: clamp(30px, 4vw, 44px); display: flex; flex-direction: column; box-shadow: var(--sh-blue); position: relative; overflow: hidden; }
.plan-cta h3 { color: #fff; font-size: 1.5rem; margin-bottom: 12px; }
.plan-cta p { color: rgba(255,255,255,.82); }
.plan-cta .price { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; margin: 18px 0 4px; }
.plan-cta .price small { font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.7); }
.plan-cta .save-note { background: rgba(255,255,255,.14); border-radius: var(--r-md); padding: 13px 16px; font-weight: 700; font-size: .92rem; margin: 14px 0 22px; display: flex; gap: 10px; align-items: center; }
.plan-cta .save-note svg { width: 22px; height: 22px; color: var(--teal-300); flex: none; }
.plan-cta .btn { margin-top: auto; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; text-align: left; padding: 24px 4px; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.05rem, 1.7vw, 1.2rem); color: var(--blue-800); }
.faq-q .chev { width: 34px; height: 34px; border-radius: 50%; background: var(--blue-50); display: grid; place-items: center; color: var(--blue-600); flex: none; transition: transform .3s var(--ease), background .3s; }
.faq-q .chev svg { width: 20px; height: 20px; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--blue-600); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 4px 24px; color: var(--slate-700); }

/* ---------- CTA banner ---------- */
.cta-banner { position: relative; border-radius: var(--r-xl); padding: clamp(40px, 6vw, 72px); text-align: center; overflow: hidden; background: linear-gradient(150deg, var(--blue-600), var(--teal-600)); color: #fff; box-shadow: var(--sh-lg); }
.cta-banner h2 { color: #fff; max-width: 680px; margin: 0 auto 16px; }
.cta-banner p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 30px; font-size: 1.1rem; }
.cta-banner .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-banner .deco { position: absolute; border-radius: 50%; background: rgba(255,255,255,.1); }
.cta-banner .deco.a { width: 260px; height: 260px; top: -120px; right: -60px; }
.cta-banner .deco.b { width: 180px; height: 180px; bottom: -90px; left: -40px; }

/* ---------- Forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-xl); padding: clamp(26px, 4vw, 44px); box-shadow: var(--sh-md); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.col-2 { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 700; font-size: .92rem; color: var(--blue-800); }
.field label .req { color: var(--coral); }
.field .hint { font-size: .82rem; color: var(--slate-500); font-weight: 600; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border-radius: var(--r-md); border: 2px solid var(--line); background: var(--surface);
  transition: border-color .2s, background .2s, box-shadow .2s; width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a7585' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 20px; padding-right: 42px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-500); background: #fff; box-shadow: 0 0 0 4px var(--blue-100); }
.field input::placeholder, .field textarea::placeholder { color: var(--slate-400); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--coral); background: var(--coral-soft); }
.field .err { font-size: .82rem; color: #e0492b; font-weight: 700; display: none; }
.field.invalid .err { display: block; }

/* checkbox / radio cards */
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.check {
  display: flex; align-items: center; gap: 12px; padding: 13px 16px; border-radius: var(--r-md);
  border: 2px solid var(--line); background: var(--surface); cursor: pointer; transition: .2s; font-weight: 600; color: var(--slate-700);
}
.check:hover { border-color: var(--blue-300); }
.check input { width: 20px; height: 20px; accent-color: var(--blue-600); flex: none; }
.check:has(input:checked) { border-color: var(--blue-500); background: var(--blue-50); color: var(--blue-800); }

.consent { display: flex; gap: 12px; align-items: flex-start; padding: 16px; border-radius: var(--r-md); background: var(--surface); border: 2px solid var(--line); }
.consent input { width: 22px; height: 22px; accent-color: var(--blue-600); flex: none; margin-top: 1px; }
.consent label { font-weight: 600; font-size: .92rem; color: var(--slate-700); font-family: var(--font-body); }
.consent a { color: var(--blue-600); font-weight: 700; text-decoration: underline; }
.consent.invalid { border-color: var(--coral); background: var(--coral-soft); }

.form-status { display: none; padding: 14px 18px; border-radius: var(--r-md); font-weight: 700; margin-bottom: 18px; }
.form-status.show { display: flex; gap: 10px; align-items: center; }
.form-status.error { background: var(--coral-soft); color: #c23a1c; }
.form-status.success { background: #dcfce7; color: #166534; }
.form-status svg { width: 22px; height: 22px; flex: none; }

/* success screen */
.success-screen { display: none; text-align: center; padding: clamp(30px, 5vw, 60px) 20px; }
.success-screen.show { display: block; animation: pop .5s var(--ease); }
@keyframes pop { from { opacity: 0; transform: scale(.96) translateY(10px);} to { opacity:1; transform: none;} }
.success-screen .check-burst { width: 92px; height: 92px; border-radius: 50%; background: linear-gradient(135deg, var(--teal-400), var(--teal-600)); display: grid; place-items: center; margin: 0 auto 24px; box-shadow: 0 16px 34px rgba(31,166,187,.4); }
.success-screen .check-burst svg { width: 48px; height: 48px; color: #fff; }
.success-screen h2 { margin-bottom: 12px; }
.success-screen p { color: var(--slate-700); max-width: 460px; margin: 0 auto 26px; }

.spinner { width: 20px; height: 20px; border: 3px solid rgba(255,255,255,.4); border-top-color: #fff; border-radius: 50%; animation: spin .7s linear infinite; display: none; }
.btn.loading .spinner { display: block; }
.btn.loading .btn-label { opacity: .7; }
@keyframes spin { to { transform: rotate(360deg);} }

/* ---------- Contact info ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(28px, 4vw, 56px); align-items: start; }
.contact-info .ci-item { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line-soft); }
.contact-info .ci-item .cic { width: 50px; height: 50px; border-radius: 14px; background: var(--blue-50); color: var(--blue-600); display: grid; place-items: center; flex: none; }
.contact-info .ci-item .cic svg { width: 24px; height: 24px; }
.contact-info .ci-item h4 { font-family: var(--font-display); font-size: 1.02rem; color: var(--blue-800); margin-bottom: 3px; }
.contact-info .ci-item a, .contact-info .ci-item p { color: var(--slate-700); font-weight: 600; }
.contact-info .ci-item a:hover { color: var(--blue-600); }

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-800); color: rgba(255,255,255,.72); padding-top: clamp(60px, 8vw, 96px); position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand .brand b { color: var(--teal-300); }
.footer-brand .brand span { color: rgba(255,255,255,.55); }
.footer-brand p { font-size: .95rem; max-width: 300px; margin-bottom: 22px; }
.socials { display: flex; gap: 10px; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: #fff; transition: .25s; }
.socials a:hover { background: var(--teal-600); transform: translateY(-3px); }
.socials a svg { width: 20px; height: 20px; }
.footer-col h4 { font-family: var(--font-display); color: #fff; font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: .94rem; transition: color .2s; }
.footer-col a:hover { color: var(--teal-300); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 24px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; font-size: .86rem; }
.footer-bottom .legal { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom a:hover { color: #fff; }
.placeholder-flag { color: var(--gold); font-weight: 700; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; z-index: 300; left: 50%; bottom: 22px; transform: translate(-50%, 160%);
  width: min(720px, calc(100% - 32px)); background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: 20px 22px;
  display: grid; grid-template-columns: 1fr auto; gap: 16px 22px; align-items: center;
  transition: transform .5s var(--ease);
}
.cookie-banner.show { transform: translate(-50%, 0); }
.cookie-banner p { font-size: .9rem; color: var(--slate-700); }
.cookie-banner p strong { color: var(--blue-800); font-family: var(--font-display); }
.cookie-banner a { color: var(--blue-600); font-weight: 700; text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 11px 20px; font-size: .92rem; }
.btn--mini-ghost { box-shadow: inset 0 0 0 2px var(--line); --btn-fg: var(--slate-700); --btn-bg: transparent; }
.btn--mini-ghost:hover { background: var(--surface); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; padding-top: clamp(120px, 16vh, 170px); padding-bottom: clamp(40px, 6vw, 70px); text-align: center;
  background: radial-gradient(900px 460px at 50% -10%, var(--blue-100), transparent 62%), linear-gradient(180deg,#fff,var(--surface)); overflow: hidden; }
.page-hero .lead { max-width: 600px; margin: 16px auto 0; }
.breadcrumb { display: inline-flex; gap: 8px; align-items: center; flex-wrap: wrap; font-weight: 600; font-size: .9rem; color: var(--slate-500); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--blue-600); }

/* blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease); display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.blog-thumb { aspect-ratio: 16/10; position: relative; display: grid; place-items: center; overflow: hidden; }
.blog-thumb .ph-label { position: absolute; bottom: 10px; right: 12px; font-family: ui-monospace, monospace; font-size: .7rem; color: rgba(255,255,255,.9); background: rgba(13,42,67,.4); padding: 3px 8px; border-radius: 6px; }
.blog-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-tag { font-family: var(--font-display); font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--blue-600); margin-bottom: 10px; }
.blog-body h3 { font-size: 1.18rem; margin-bottom: 10px; }
.blog-body p { font-size: .94rem; color: var(--slate-700); margin-bottom: 16px; }
.blog-body .meta { margin-top: auto; font-size: .85rem; color: var(--slate-500); font-weight: 600; }
.soon-pill { display: inline-flex; align-items: center; gap: 7px; font-family: var(--font-display); font-weight: 700; font-size: .82rem; color: var(--gold); background: #fff6e3; padding: 6px 14px; border-radius: var(--r-pill); }

/* legal */
.legal-body { max-width: 760px; margin-inline: auto; }
.legal-body h2 { font-size: 1.5rem; margin: 36px 0 14px; }
.legal-body p, .legal-body li { color: var(--slate-700); margin-bottom: 12px; }
.legal-body ul { list-style: disc; padding-left: 22px; }
.legal-note { background: #fff6e3; border: 1px solid #ffe2a8; border-radius: var(--r-md); padding: 16px 18px; color: #8a6300; font-weight: 600; font-size: .92rem; margin-bottom: 30px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 380px; max-width: 480px; margin-inline: auto; width: 100%; }
  .values { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; gap: 30px; }
  .step .sconn { display: none; }
  .levels-grid, .method-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .plan-wrap, .contact-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 28px; }
  .feature-row.flip .feature-media { order: 0; }
}
@media (max-width: 600px) {
  .values, .levels-grid, .method-grid, .blog-grid, .form-grid, .check-grid { grid-template-columns: 1fr; }
  .cookie-banner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-actions .btn { flex: 1; }
}
