/* MedYouNeed — Premium dental tourism brand
   Navy + medical blue + turquoise wave + gold accent. Poppins + Inter.
*/
:root {
  --navy: #0A4878;
  --navy-700: #073A62;
  --navy-900: #052944;
  --blue: #0C4681;
  --blue-600: #0A3B6E;
  --turq: #6CC6D9;
  --turq-300: #A0DEEA;
  --gold: #C9B01C;
  --gold-700: #A89316;
  --white: #FFFFFF;
  --gray-50: #F7FAFC;
  --gray-100: #F2F5F7;
  --gray-200: #E4EAEF;
  --gray-300: #CBD5DC;
  --gray-500: #6B7B88;
  --gray-700: #2D3D4B;
  --ink: #0E2233;
  --whatsapp: #25D366;
  --whatsapp-700: #1EB055;
  --shadow-card: 0 1px 1px rgba(11,61,109,.04), 0 12px 32px rgba(11,61,109,.08);
  --shadow-card-hover: 0 1px 1px rgba(11,61,109,.05), 0 22px 48px rgba(11,61,109,.14);
  --shadow-cta: 0 1px 1px rgba(11,61,109,.06), 0 14px 28px rgba(21,119,166,.28);
  --grad-wave: linear-gradient(135deg, #0A4878 0%, #0C4681 50%, #6CC6D9 100%);
  --grad-wave-soft: linear-gradient(135deg, #E8F2F8 0%, #DCEFF4 100%);
  --grad-text: linear-gradient(120deg, #0A4878 0%, #0C4681 45%, #6CC6D9 100%);
  --grad-bg-hero: linear-gradient(180deg, #F7FBFD 0%, #FFFFFF 100%);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--gray-700);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
}
img, svg, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }
a { color: inherit; text-decoration: none; }

/* layout — responsive container ladder
   ≥1100 → 1240 max with 56px gutter
    900..1099 → 100% - 48px
    600..899  → 100% - 32px
    <600      → 100% - 24px
*/
.container { width: min(1240px, 100% - 56px); margin-inline: auto; }
@media (max-width: 1099px) { .container { width: min(1240px, 100% - 48px); } }
@media (max-width: 899px)  { .container { width: min(1240px, 100% - 32px); } }
@media (max-width: 599px)  { .container { width: min(1240px, 100% - 24px); } }
@media (max-width: 380px)  { .container { width: min(1240px, 100% - 16px); } }

/* type — clamps tuned so 320–360px phones are never overcrowded */
.poppins { font-family: 'Poppins', system-ui, sans-serif; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.h1 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(34px, 5.6vw, 68px); line-height: 1.05; letter-spacing: -0.025em; color: var(--ink); margin: 0; }
.h2 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(26px, 4.2vw, 48px); line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); margin: 0; }
.h3 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: clamp(18px, 2vw, 22px); line-height: 1.3; letter-spacing: -0.01em; color: var(--ink); margin: 0; }
.lead { font-size: clamp(14.5px, 1.05vw, 18px); color: var(--gray-500); line-height: 1.65; max-width: 60ch; }
.grad-text { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* utilities for hiding/showing per breakpoint */
.only-desktop { display: initial; }
.only-tablet  { display: none; }
.only-mobile  { display: none; }
@media (max-width: 1099px) { .only-desktop { display: none; } .only-tablet { display: initial; } }
@media (max-width: 720px)  { .only-tablet  { display: none; } .only-mobile { display: initial; } }

/* eyebrow */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue);
  background: rgba(0,198,215,.08); padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(0,198,215,.18);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--turq); }

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px; padding: 0 26px; border-radius: 999px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14.5px;
  letter-spacing: 0.01em; white-space: nowrap;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  border: 1.5px solid transparent;
}
.btn-primary { background: var(--grad-wave); color: var(--white); box-shadow: var(--shadow-cta); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 1px rgba(11,61,109,.06), 0 22px 40px rgba(21,119,166,.36); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); box-shadow: 0 1px 1px rgba(0,0,0,.08), 0 12px 26px rgba(37,211,102,.32); }
.btn-whatsapp:hover { background: var(--whatsapp-700); transform: translateY(-2px); }
.btn-ghost { background: var(--white); color: var(--navy); border-color: var(--gray-200); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-700); transform: translateY(-1px); }
.btn-sm { height: 42px; padding: 0 18px; font-size: 13.5px; }
.btn-lg { height: 60px; padding: 0 32px; font-size: 16px; }

/* cards */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow: var(--shadow-card);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: rgba(0,198,215,.4); }
.card-flat { background: var(--white); border: 1px solid var(--gray-200); border-radius: 20px; padding: 28px; }
.card-soft { background: var(--gray-100); border-radius: 20px; padding: 28px; }

/* section spacing — denser on mobile so users see more content per scroll */
.sec { padding: clamp(56px, 8vw, 120px) 0; position: relative; }
.sec-tight { padding: clamp(32px, 5vw, 80px) 0; }
@media (max-width: 599px) {
  .sec       { padding: 56px 0; }
  .sec-tight { padding: 32px 0; }
}
.bg-soft { background: var(--gray-100); }
.bg-deep { background: var(--navy-900); color: rgba(255,255,255,.92); }

/* placeholder image — branded gradient with wave */
.ph {
  position: relative; overflow: hidden;
  border-radius: 16px; border: 1px solid var(--gray-200);
  background:
    repeating-linear-gradient(135deg, #DDEEF6 0 12px, #CFE5F0 12px 24px);
  display: flex; align-items: center; justify-content: center;
}
.ph::after {
  content: ''; position: absolute; left: -2%; right: -2%; bottom: 0; height: 38%;
  background: linear-gradient(135deg, rgba(11,61,109,.85), rgba(21,119,166,.75) 50%, rgba(0,198,215,.55));
  -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 240' preserveAspectRatio='none'><path d='M0,120 C200,40 400,200 600,120 C800,40 1000,200 1200,120 L1200,240 L0,240 Z' fill='black'/></svg>");
  mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 240' preserveAspectRatio='none'><path d='M0,120 C200,40 400,200 600,120 C800,40 1000,200 1200,120 L1200,240 L0,240 Z' fill='black'/></svg>");
  -webkit-mask-size: 100% 100%; mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  pointer-events: none; opacity: .9;
}
.ph .ph-tag {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.92); padding: 8px 14px; border-radius: 999px;
  font-family: 'Poppins', sans-serif; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 600; color: var(--navy);
  border: 1px solid var(--gray-200);
}
.ph-dark { background: linear-gradient(135deg, #0B3D6D 0%, #1577A6 100%); border-color: var(--navy-700); }
.ph-dark::after { opacity: .55; background: linear-gradient(135deg, rgba(0,198,215,.7), rgba(110,224,234,.4)); }
.ph-dark .ph-tag { background: rgba(255,255,255,.12); color: rgba(255,255,255,.95); border-color: rgba(255,255,255,.2); backdrop-filter: blur(8px); }

/* form */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: 'Poppins', sans-serif; font-size: 11.5px;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); font-weight: 600;
}
.input, .select {
  height: 50px; border-radius: 12px; border: 1.5px solid var(--gray-200);
  padding: 0 16px; background: var(--white); color: var(--ink);
  outline: none; transition: border-color .15s ease, box-shadow .15s ease;
}
.input:focus, .select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(21,119,166,.12); }
.input.on-dark, .select.on-dark {
  background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.18); color: var(--white);
}
.input.on-dark::placeholder { color: rgba(255,255,255,.55); }

/* reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* chip */
.chip {
  display: inline-flex; align-items: center; gap: 6px; height: 30px; padding: 0 12px;
  border-radius: 999px; background: rgba(0,198,215,.1); color: var(--blue);
  font-size: 12.5px; font-weight: 600;
}

/* divider wave */
.wave-divider { position: relative; line-height: 0; }
.wave-divider svg { width: 100%; height: 80px; display: block; }

/* accordion */
details.faq {
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: var(--white);
  margin-bottom: 12px;
  transition: box-shadow .2s, border-color .2s;
}
details.faq:hover { border-color: rgba(0,198,215,.3); }
details.faq[open] { box-shadow: var(--shadow-card); border-color: rgba(21,119,166,.25); }
details.faq summary {
  list-style: none; cursor: pointer;
  display: flex; gap: 16px; align-items: center;
  padding: 22px 26px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 17px; color: var(--ink);
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary .plus {
  margin-left: auto; flex: none; width: 32px; height: 32px; border-radius: 999px;
  background: var(--gray-100); color: var(--blue);
  display: grid; place-items: center; transition: transform .25s ease, background .25s ease, color .25s ease;
}
details.faq[open] summary .plus { background: var(--blue); color: var(--white); transform: rotate(45deg); }
details.faq .a { padding: 0 26px 24px 26px; color: var(--gray-500); line-height: 1.7; max-width: 70ch; }

/* horizontal scroller */
.scroll-x { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 4px 4px 16px; margin: 0 -4px; }
.scroll-x > * { scroll-snap-align: start; flex: 0 0 auto; }
.scroll-x::-webkit-scrollbar { height: 6px; }
.scroll-x::-webkit-scrollbar-track { background: transparent; }
.scroll-x::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }

/* mobile bar */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0;
  display: none; z-index: 60;
  padding: 10px 12px max(10px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(14px);
  border-top: 1px solid var(--gray-200);
  gap: 10px;
}
.mobile-bar .btn { flex: 1; height: 46px; font-size: 13px; padding: 0 12px; }
@media (max-width: 720px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 76px; }
  .wa-fab { display: none !important; }
}

/* nav */
.nav-link {
  position: relative; padding: 10px 14px; font-size: 14.5px; font-weight: 500;
  color: var(--gray-700); border-radius: 8px; transition: color .2s;
  font-family: 'Poppins', sans-serif;
}
.nav-link:hover { color: var(--blue); }

/* hero floating wave background svg sizing */
.hero-wave-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.hero-wave-bg svg { position: absolute; }

/* stat */
.stat-num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(36px, 4vw, 52px); line-height: 1; color: var(--navy); letter-spacing: -0.02em; }
.stat-lbl { font-size: 13px; color: var(--gray-500); margin-top: 6px; font-weight: 500; }

/* timeline node */
.tl-node { width: 44px; height: 44px; border-radius: 999px; background: var(--white); border: 2px solid var(--turq); display: grid; place-items: center; font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--navy); }
.tl-node.active { background: var(--grad-wave); color: var(--white); border-color: transparent; }

/* gold accent line */
.gold-line { width: 36px; height: 3px; background: var(--gold); border-radius: 999px; }

/* savings comparison table */
.savings-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 18px; box-shadow: var(--shadow-card); border: 1px solid var(--gray-200); }
.savings-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.savings-table thead tr { background: var(--grad-wave); }
.savings-table thead th { padding: 16px 20px; font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .06em; color: rgba(255,255,255,.9); text-align: left; }
.savings-table thead th:not(:first-child) { text-align: center; }
.savings-table tbody tr { transition: background .15s; }
.savings-table tbody tr:nth-child(even) { background: var(--gray-50); }
.savings-table tbody tr:hover { background: rgba(0,198,215,.06); }
.savings-table td { padding: 15px 20px; font-size: 14px; color: var(--gray-700); border-bottom: 1px solid var(--gray-200); }
.savings-table td:not(:first-child) { text-align: center; }
.savings-table .save-cell { font-family: 'Poppins', sans-serif; font-weight: 700; color: #1A9A6E; background: rgba(26,154,110,.08); border-radius: 8px; padding: 4px 10px; display: inline-block; }
.savings-table tbody tr:last-child td { border-bottom: none; }

/* trust signal badges */
.trust-badge { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border-radius: 12px; background: var(--white); border: 1px solid var(--gray-200); box-shadow: 0 1px 4px rgba(11,61,109,.06); font-size: 13.5px; font-weight: 500; color: var(--gray-700); }
.trust-badge strong { color: var(--ink); font-family: 'Poppins', sans-serif; font-weight: 700; }

/* stats cell responsive */
@media (max-width: 640px) {
  .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .stats-cell { border-right: none !important; border-bottom: 1px solid var(--gray-200); }
  .stats-cell:nth-child(odd) { border-right: 1px solid var(--gray-200) !important; }
  .stats-cell:nth-last-child(-n+2) { border-bottom: none; }
}

/* ─────────────── Accessibility ─────────────── */
/* Visible focus rings (keyboard only) */
:focus { outline: none; }
:focus-visible {
  outline: 3px solid #6CC6D9;
  outline-offset: 2px;
  border-radius: 6px;
  transition: outline-offset .12s ease;
}
a:focus-visible, button:focus-visible,
.btn:focus-visible, .nav-link:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible,
details.faq summary:focus-visible {
  outline: 3px solid #6CC6D9;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(108,198,217,.18);
}
.input:focus-visible, .select:focus-visible {
  border-color: var(--blue);
  outline: 3px solid rgba(108,198,217,.7);
  outline-offset: 2px;
}
.input.on-dark::placeholder, .select.on-dark::placeholder { color: rgba(255,255,255,.7); }

/* Skip-link, hidden until focused */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 1000;
  background: var(--navy); color: #fff; padding: 10px 16px;
  border-radius: 8px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  .wa-fab { animation: none !important; }
}

/* High contrast mode */
@media (forced-colors: active) {
  .btn-primary, .btn-whatsapp, .btn-gold { border: 2px solid CanvasText !important; }
  .ph { border: 1px solid CanvasText !important; }
}

/* Touch slider helper */
.ba-slider { touch-action: none; user-select: none; -webkit-user-select: none; }

/* WhatsApp FAB nudge bubble */
.wa-nudge {
  position: fixed; right: 96px; bottom: 30px; z-index: 54;
  background: var(--white); color: var(--ink); border-radius: 14px;
  padding: 12px 16px 12px 14px; font-family: 'Inter', sans-serif; font-size: 13.5px;
  box-shadow: 0 18px 40px rgba(11,29,54,.25), 0 0 0 1px var(--gray-200);
  max-width: 260px; opacity: 0; transform: translateX(8px);
  transition: opacity .35s ease, transform .35s ease;
  pointer-events: none;
}
.wa-nudge.show { opacity: 1; transform: none; pointer-events: auto; }
.wa-nudge::after {
  content: ''; position: absolute; right: -7px; top: 50%;
  width: 14px; height: 14px; background: var(--white);
  border-right: 1px solid var(--gray-200); border-top: 1px solid var(--gray-200);
  transform: translateY(-50%) rotate(45deg);
}
.wa-nudge .close {
  position: absolute; top: 4px; right: 6px; width: 22px; height: 22px; border-radius: 999px;
  display: grid; place-items: center; color: var(--gray-500); font-size: 16px; line-height: 1;
  background: transparent;
}
.wa-nudge .close:hover { background: var(--gray-100); color: var(--ink); }
.wa-nudge strong { display: block; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 13px; color: var(--blue); margin-bottom: 2px; }
@media (max-width: 720px) {
  .wa-nudge { display: none !important; }
}

/* Savings sticky banner */
.savings-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 49;
  background: linear-gradient(90deg, #073A62 0%, #0C4681 50%, #1577A6 100%);
  color: #fff; padding: 9px 0;
  transform: translateY(-100%); transition: transform .35s ease;
  font-family: 'Poppins', sans-serif; font-size: 13.5px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.savings-banner.show { transform: none; }
.savings-banner .container { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.savings-banner b { color: #FFD45A; font-weight: 700; }
.savings-banner .cta { background: var(--gold); color: var(--navy-900); padding: 5px 14px; border-radius: 999px; font-size: 12.5px; font-weight: 700; }
.savings-banner .cta:hover { background: var(--gold-700); color: #fff; }
.savings-banner .x { margin-left: auto; opacity: .7; }
.savings-banner .x:hover { opacity: 1; }
@media (max-width: 540px) {
  .savings-banner { font-size: 12px; padding: 8px 0; }
  .savings-banner .container { gap: 8px; padding-inline: 12px; }
}

/* ─────────────────────────────────────────────────────────────
   RESPONSIVE OVERHAUL — phone (≤599) / tablet (600–959) / desktop
   ───────────────────────────────────────────────────────────── */

/* prevent any element from causing horizontal scroll */
html, body { overflow-x: hidden; max-width: 100%; }
img, svg, video { max-width: 100%; height: auto; }
.scroll-x { overflow-x: auto; max-width: 100%; }

/* buttons — full-width on very narrow phones */
@media (max-width: 480px) {
  .btn-lg { height: 54px; padding: 0 22px; font-size: 15px; }
  .btn    { font-size: 14px; }
  .btn-sm { font-size: 12.5px; height: 38px; padding: 0 14px; }
  /* When buttons sit in a row with gap, let them flex to wrap nicely */
  .btn { min-width: 0; }
}

/* CTA row wrappers — already use flex-wrap, but ensure children can full-width */
@media (max-width: 420px) {
  /* full-width primary CTAs in hero etc. */
  section .btn-lg { width: 100%; justify-content: center; }
}

/* card — denser padding on phones */
@media (max-width: 599px) {
  .card, .card-flat, .card-soft { padding: 22px; border-radius: 16px; }
}
@media (max-width: 380px) {
  .card, .card-flat, .card-soft { padding: 18px; border-radius: 14px; }
}

/* eyebrow + chip readable on phones */
@media (max-width: 480px) {
  .eyebrow { font-size: 11.5px; padding: 7px 14px; }
  .chip    { font-size: 12px; height: 28px; padding: 0 10px; }
}

/* form inputs/selects — larger touch targets on phone */
@media (max-width: 599px) {
  .input, .select { height: 52px; border-radius: 12px; font-size: 16px; /* prevents iOS zoom on focus */ }
  .field label   { font-size: 11px; }
}

/* FAQ accordion paddings tighter on phone */
@media (max-width: 599px) {
  details.faq summary { padding: 18px 18px; font-size: 15px; gap: 12px; }
  details.faq .a      { padding: 0 18px 18px; font-size: 14px; line-height: 1.6; }
}

/* mobile bottom bar — already 46px tall, ensure body padding when WhatsApp + nudge active */
@media (max-width: 720px) {
  .wa-fab { width: 56px; height: 56px; right: 18px; bottom: max(80px, calc(env(safe-area-inset-bottom) + 80px)); }
  .wa-fab svg { width: 28px; height: 28px; }
  .scroll-top-btn { bottom: max(150px, calc(env(safe-area-inset-bottom) + 150px)) !important; }
}

/* timeline node smaller on phone (Journey section) */
@media (max-width: 599px) {
  .tl-node { width: 38px; height: 38px; font-size: 14px; }
}

/* stats counter — improve label sizing */
@media (max-width: 599px) {
  .stat-num { font-size: 30px; }
  .stat-lbl { font-size: 12px; }
}

/* savings table — switch to card list on phones for legibility */
@media (max-width: 640px) {
  .savings-wrap table, .savings-wrap thead, .savings-wrap tbody, .savings-wrap tr, .savings-wrap th, .savings-wrap td { display: block; }
  .savings-wrap thead { display: none; }
  .savings-wrap tr { padding: 16px; border-bottom: 1px solid var(--gray-200); background: var(--white); }
  .savings-wrap tr:nth-child(even) { background: var(--gray-50); }
  .savings-wrap td { border: 0; text-align: left !important; padding: 6px 0 !important; display: grid; grid-template-columns: 130px 1fr; gap: 8px; align-items: center; font-size: 13.5px !important; }
  .savings-wrap td:first-child { font-weight: 700; font-family: 'Poppins', sans-serif; color: var(--ink); padding-bottom: 10px !important; border-bottom: 1px solid var(--gray-200); margin-bottom: 8px; grid-template-columns: 1fr; }
  .savings-wrap td:first-child::before { content: 'Treatment'; display: none; }
  .savings-wrap td:nth-child(2)::before { content: 'UK avg.'; color: var(--gray-500); font-size: 11.5px; font-family: 'Poppins', sans-serif; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
  .savings-wrap td:nth-child(3)::before { content: 'EU avg.'; color: var(--gray-500); font-size: 11.5px; font-family: 'Poppins', sans-serif; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
  .savings-wrap td:nth-child(4)::before { content: 'Istanbul'; color: var(--blue); font-size: 11.5px; font-family: 'Poppins', sans-serif; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .savings-wrap td:nth-child(5)::before { content: 'You save'; color: #8A6A00; font-size: 11.5px; font-family: 'Poppins', sans-serif; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .savings-wrap td:nth-child(4) { background: rgba(108,198,217,.07); border-radius: 8px; padding: 8px 12px !important; }
  .savings-wrap td:nth-child(5) { background: rgba(201,176,28,.08); border-radius: 8px; padding: 8px 12px !important; }
}

/* reviews scroller — snap pads better on phone, narrower cards */
@media (max-width: 720px) {
  .scroll-x { scroll-padding-left: 16px; padding: 4px 16px 16px; margin: 0 -16px; }
  #rv-scr .card { width: 320px !important; min-width: 280px; padding: 22px !important; }
}

/* gallery — taller hero tile on phone so it reads as feature */
@media (max-width: 480px) {
  .gl-grid { gap: 10px !important; }
  .gl-tile { aspect-ratio: 4/5 !important; }
}

/* counter strip — make 4 cells fit nicely on tablet */
@media (max-width: 960px) and (min-width: 641px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr) !important; }
  .stats-cell { padding: 8px 14px !important; }
}

/* TrustStrip — 6 → 3 → 2 with comfortable spacing */
@media (max-width: 960px) { .trust-strip-grid { grid-template-columns: repeat(3, 1fr) !important; } .trust-strip-grid > * { padding: 18px 12px !important; } }
@media (max-width: 540px) { .trust-strip-grid { grid-template-columns: repeat(2, 1fr) !important; } .trust-strip-grid > * { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.08); } .trust-strip-grid > *:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08) !important; } .trust-strip-grid > *:nth-last-child(-n+2) { border-bottom: none; } }

/* QuickBar form: collapse to 2 then 1 cols cleanly */
@media (max-width: 1099px) and (min-width: 721px) {
  .qb-form { grid-template-columns: 1fr 1fr 1fr 1.1fr auto !important; }
  .qb-form > *:first-child { grid-column: span 5 !important; padding-left: 4px !important; }
}
@media (max-width: 720px) {
  .qb-form { grid-template-columns: 1fr 1fr !important; gap: 10px !important; padding: 14px !important; }
  .qb-form > *:first-child { grid-column: span 2 !important; padding-left: 4px !important; }
  .qb-form > button[type=submit] { grid-column: span 2 !important; width: 100%; }
}
@media (max-width: 460px) {
  .qb-form { grid-template-columns: 1fr !important; }
  .qb-form > *:first-child, .qb-form > *:last-child { grid-column: 1 !important; }
}

/* cookie banner: stack on phones */
@media (max-width: 600px) {
  .cookie-banner .container { flex-direction: column !important; align-items: stretch !important; }
  .cookie-banner .container > div:last-child { display: flex; gap: 8px; }
  .cookie-banner .container > div:last-child > button { flex: 1; }
}

/* Section header: ensure max width adapts to container on phones */
@media (max-width: 599px) {
  .lead { font-size: 14.5px; line-height: 1.6; }
}

/* WizardModal: full-screen-feel on phones with safer margins */
@media (max-width: 600px) {
  .wizard-modal-inner { border-radius: 20px !important; padding: 24px !important; max-height: calc(100vh - 24px) !important; }
}

/* Stack hero CTAs full-width on very small phones */
@media (max-width: 420px) {
  .hero-ctas { display: flex; flex-direction: column; gap: 10px !important; }
  .hero-ctas > .btn { width: 100%; }
}

/* Hide pulse ring on phones (visual noise + performance) */
@media (max-width: 600px) {
  .wa-fab > span[style*="wapulsering"] { display: none; }
}

/* Footer: tighter on phones */
@media (max-width: 540px) {
  footer { padding-top: 48px !important; }
  .ft-grid { gap: 28px !important; }
}

/* Hero rating + plans chips: on tablet portrait, override absolute positioning to flow */
@media (max-width: 980px) {
  .hide-sm { display: none !important; }
}

/* Counter strip gap on phone */
@media (max-width: 599px) {
  .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .stats-cell { padding: 18px 12px !important; }
}

/* Reviews horizontal scroll: nicer fade edges on desktop */
@media (min-width: 900px) {
  #rv-scr { padding-bottom: 24px; }
}

/* Section header center text never overflows */
.eyebrow, .h1, .h2, .h3, .lead { overflow-wrap: anywhere; word-break: normal; hyphens: auto; }
.h1, .h2 { hyphens: manual; }

/* Modal: extra side padding on phones (Wizard) so close button isn't crammed */
@media (max-width: 480px) {
  .wizard-modal-inner { padding: 22px !important; }
  .wizard-modal-inner > button[aria-label="Close"] { top: 10px !important; right: 10px !important; }
}

/* Buttons hover should not transform on touch devices (sticky hover bug) */
@media (hover: none) {
  .btn:hover, .card:hover { transform: none !important; }
}

/* Long FAQ summary text wraps cleanly on small phones */
@media (max-width: 380px) {
  details.faq summary { padding: 16px 14px !important; font-size: 14.5px !important; gap: 10px !important; }
  details.faq summary .plus { width: 28px; height: 28px; }
  details.faq .a { padding: 0 14px 14px !important; font-size: 13.5px !important; }
}

/* Pricing currency toggle scrollable on very narrow */
@media (max-width: 360px) {
  [role="radiogroup"] { padding: 3px !important; }
  [role="radiogroup"] > button { padding: 6px 10px !important; font-size: 12px !important; }
}
