/* Surfshark Mirror Site — style.v3.css */
/* Self-hosted Inter font */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/surfshark-com-wp-content-themes-surfshark-assets-fonts-inter-e4af272ccee01ff0-s-p-woff2-9a0278f143.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/surfshark-com-wp-content-themes-surfshark-assets-fonts-inter-21350d82a1f187e9-s-p-woff2-dd264d7325.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ─── Design tokens ─── */
:root {
  --c-text: #16191c;
  --c-text-secondary: #393e41;
  --c-text-muted: #5b6065;
  --c-footer-bg: #1e2327;
  --c-dark-card: #2c3236;
  --c-teal: #1ebfbf;
  --c-teal-deep: #178a9e;
  --c-teal-wash: #e8f7f8;
  --c-cta: #de2e4c;
  --c-cta-hover: #fa3556;
  --c-success: #00b065;
  --c-surface: #f5f5f6;
  --c-surface-alt: #f9f9f9;
  --c-border: #dadadd;
  --c-white: #ffffff;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --max-w: 1200px;
  --header-h: 64px;
  --side-pad: 24px;
  --shadow-sm: 0 1px 4px rgba(22,25,28,.08);
  --shadow-md: 0 4px 16px rgba(22,25,28,.12);
  --shadow-lg: 0 8px 32px rgba(22,25,28,.15);
  --transition: 0.18s ease;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', 'Inter Fallback', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Layout helpers ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--side-pad); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: 32px; font-weight: 600; line-height: 1.25; margin-bottom: 12px; }
.section-head p { font-size: 17px; color: var(--c-text-secondary); max-width: 560px; margin: 0 auto; }
section { padding: 80px 0; }

/* ─── Buttons ─── */
.btn-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--c-cta); color: var(--c-white);
  font-weight: 600; font-size: 14px; padding: 10px 20px;
  border-radius: var(--radius-sm); transition: background var(--transition), box-shadow var(--transition);
  white-space: nowrap; line-height: 1.2;
}
.btn-cta:hover { background: var(--c-cta-hover); box-shadow: 0 4px 12px rgba(222,46,76,.35); }
.btn-cta.btn-lg { font-size: 16px; padding: 14px 28px; border-radius: var(--radius-sm); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--c-text);
  font-weight: 600; font-size: 14px; padding: 10px 20px;
  border: 1.5px solid var(--c-border); border-radius: var(--radius-sm);
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover { border-color: var(--c-text); background: var(--c-surface); }
.btn-outline.btn-lg { font-size: 16px; padding: 14px 28px; }
.btn-teal {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--c-teal); color: var(--c-white);
  font-weight: 600; font-size: 14px; padding: 10px 20px;
  border-radius: var(--radius-sm); transition: background var(--transition);
}
.btn-teal:hover { background: var(--c-teal-deep); }
.btn-teal.btn-lg { font-size: 16px; padding: 14px 28px; }

/* ─── Header ─── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex; align-items: center; gap: 0;
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 var(--side-pad); height: var(--header-h);
}
.brand { flex-shrink: 0; }
.logo { height: 32px; width: auto; }
.logo-footer { height: 28px; width: auto; filter: brightness(0) invert(1); }

/* Desktop nav links */
.nav-links {
  display: flex; align-items: center; gap: 0;
  margin-left: 32px; flex: 1;
}
.nav-links > li { position: relative; }
.nav-links > li > a,
.nav-links > li > .nav-btn {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; font-size: 14px; font-weight: 500;
  color: var(--c-text-secondary); border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  line-height: 1;
}
.nav-links > li > a:hover,
.nav-links > li > .nav-btn:hover,
.nav-links > li.has-dropdown.open > .nav-btn { color: var(--c-text); background: var(--c-surface); }
.chevron { display: inline-block; font-size: 11px; margin-left: 2px; transition: transform var(--transition); }

/* Dropdown panel */
.dropdown-panel {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  min-width: 220px; padding: 12px; z-index: 200;
  animation: dropIn .15s ease;
}
.has-dropdown.open .dropdown-panel { display: block; }
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-panel a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 500; color: var(--c-text-secondary);
  transition: background var(--transition), color var(--transition);
}
.dropdown-panel a:hover { background: var(--c-surface); color: var(--c-text); }
.dropdown-panel .dp-icon { width: 32px; height: 32px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--c-teal-wash); display: flex; align-items: center; justify-content: center; }
.dropdown-panel .dp-icon img { width: 24px; height: 24px; object-fit: contain; }
.dropdown-panel .dp-info strong { display: block; font-weight: 600; color: var(--c-text); font-size: 13px; }
.dropdown-panel .dp-info span { font-size: 12px; color: var(--c-text-muted); }
.dp-section-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--c-text-muted); padding: 4px 12px 8px; margin-top: 4px; }
.dropdown-panel hr { border: none; border-top: 1px solid var(--c-border); margin: 8px 0; }

/* mega dropdown — 3 cols */
.mega-panel { min-width: 520px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 16px; }
.mega-col { display: flex; flex-direction: column; gap: 2px; }

/* Nav right */
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; font-size: 22px; padding: 6px; color: var(--c-text); }

/* ─── Hero ─── */
.hero {
  background: var(--c-teal);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}
.hero-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--side-pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end;
}
.hero-content { padding-bottom: 80px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.2); color: var(--c-white);
  font-size: 13px; font-weight: 600; padding: 6px 14px;
  border-radius: 100px; margin-bottom: 20px; backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: 56px; font-weight: 600; line-height: 1.1;
  color: var(--c-white); margin-bottom: 20px; letter-spacing: -1px;
}
.hero-sub { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 32px; line-height: 1.6; }
.hero-cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-guarantee { font-size: 13px; color: rgba(255,255,255,.75); display: flex; align-items: center; gap: 6px; }
.hero-guarantee::before { content: "✓"; font-weight: 700; }
.hero-image { position: relative; display: flex; align-items: flex-end; justify-content: center; }
.hero-image img { max-height: 440px; width: auto; object-fit: contain; border-radius: var(--radius-xl) var(--radius-xl) 0 0; }
/* decorative ring */
.hero-ring {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 480px; height: 480px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  pointer-events: none;
}
.hero-ring::after {
  content: ''; position: absolute; inset: 40px;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.1);
}

/* ─── Trust strip ─── */
.trust-strip {
  background: var(--c-white); padding: 32px 0;
  border-bottom: 1px solid var(--c-border);
}
.trust-strip .container { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item img { height: 28px; width: auto; }
.trust-item .stars { display: flex; gap: 2px; }
.trust-item .stars span { color: #ffc200; font-size: 16px; }
.trust-item .score { font-weight: 700; font-size: 15px; }
.trust-item .label { font-size: 13px; color: var(--c-text-muted); }
.trust-divider { width: 1px; height: 36px; background: var(--c-border); }

/* ─── Feature grid ─── */
.features { background: var(--c-white); }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--side-pad); }
.feature-card {
  background: var(--c-surface); border-radius: var(--radius-lg); padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-card .card-icon { width: 52px; height: 52px; margin-bottom: 16px; border-radius: var(--radius-sm); overflow: hidden; }
.feature-card .card-icon img { width: 100%; height: 100%; object-fit: contain; }
.feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }
.feature-card p { font-size: 15px; color: var(--c-text-secondary); line-height: 1.6; }

/* ─── Product mosaic ─── */
.product-mosaic { background: var(--c-surface-alt); }
.mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--side-pad);
}
.mosaic-card {
  background: var(--c-white); border-radius: var(--radius-xl); overflow: hidden;
  padding: 36px; position: relative;
  transition: box-shadow var(--transition);
}
.mosaic-card:hover { box-shadow: var(--shadow-lg); }
.mosaic-card.dark { background: var(--c-footer-bg); color: var(--c-white); }
.mosaic-card.teal { background: var(--c-teal); color: var(--c-white); }
.mosaic-card.span-2 { grid-column: span 2; }
.mosaic-card h3 { font-size: 24px; font-weight: 600; margin-bottom: 12px; }
.mosaic-card p { font-size: 15px; opacity: .85; line-height: 1.6; margin-bottom: 20px; }
.mosaic-card .card-img { width: 100%; border-radius: var(--radius-md); object-fit: cover; margin-top: 20px; }
.mosaic-card .stat { font-size: 40px; font-weight: 700; color: var(--c-teal); }
.mosaic-card.dark .stat { color: var(--c-teal); }
.mosaic-card.teal .stat { color: rgba(255,255,255,.9); }

/* ─── Split section ─── */
.split { background: var(--c-white); }
.split-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--side-pad);
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.split-inner.reverse { direction: rtl; }
.split-inner.reverse > * { direction: ltr; }
.split-text h2 { font-size: 36px; font-weight: 600; line-height: 1.2; margin-bottom: 16px; }
.split-text p { font-size: 16px; color: var(--c-text-secondary); margin-bottom: 20px; line-height: 1.7; }
.split-checks { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.split-check { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; }
.split-check::before { content: "✓"; color: var(--c-teal); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.split-image img { border-radius: var(--radius-xl); width: 100%; }

/* ─── Pricing ─── */
.pricing-section { background: var(--c-surface); }
.pricing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 40px;
  background: var(--c-white); border: 1.5px solid var(--c-border);
  border-radius: 100px; padding: 4px; width: fit-content; margin: 0 auto 40px;
}
.toggle-btn {
  padding: 8px 20px; border-radius: 100px; font-size: 14px; font-weight: 600;
  color: var(--c-text-secondary); transition: all var(--transition);
}
.toggle-btn.active { background: var(--c-text); color: var(--c-white); }
.plan-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--side-pad); }
.plan-card {
  background: var(--c-white); border: 1.5px solid var(--c-border);
  border-radius: var(--radius-xl); padding: 32px 28px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative; display: flex; flex-direction: column;
}
.plan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.plan-card.featured { border-color: var(--c-teal); box-shadow: 0 0 0 3px rgba(30,191,191,.15); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--c-teal); color: var(--c-white);
  font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 100px;
  white-space: nowrap;
}
.plan-name { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.plan-desc { font-size: 14px; color: var(--c-text-muted); margin-bottom: 20px; line-height: 1.5; }
.plan-price { margin-bottom: 24px; }
.price-amount { font-size: 36px; font-weight: 700; color: var(--c-text); }
.price-amount [data-period] { display: none; }
.price-amount [data-period].active { display: inline; }
.price-period { font-size: 14px; color: var(--c-text-muted); }
.price-discount { display: inline-block; background: var(--c-cta); color: var(--c-white); font-size: 12px; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-left: 8px; }
.plan-cta { width: 100%; text-align: center; justify-content: center; margin-bottom: 16px; }
.plan-guarantee { font-size: 12px; color: var(--c-text-muted); text-align: center; margin-bottom: 20px; }
.plan-features { border-top: 1px solid var(--c-border); padding-top: 20px; flex: 1; }
.plan-feature { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; padding: 5px 0; color: var(--c-text-secondary); }
.plan-feature.yes::before { content: "✓"; color: var(--c-teal); font-weight: 700; flex-shrink: 0; }
.plan-feature.no { opacity: .45; }
.plan-feature.no::before { content: "—"; color: var(--c-text-muted); flex-shrink: 0; }

/* ─── Page hero (inner pages) ─── */
.page-hero { background: var(--c-teal); padding: 72px 0; text-align: center; }
.page-hero-inner { max-width: 720px; margin: 0 auto; padding: 0 var(--side-pad); }
.page-hero h1 { font-size: 44px; font-weight: 600; color: var(--c-white); margin-bottom: 16px; line-height: 1.15; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 28px; line-height: 1.6; }
.page-hero .hero-cta { justify-content: center; }

/* ─── Download section ─── */
.platform-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--side-pad); }
.platform-card {
  background: var(--c-surface); border: 1.5px solid var(--c-border); border-radius: var(--radius-lg); padding: 24px;
  display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.platform-card:hover { box-shadow: var(--shadow-md); border-color: var(--c-teal); }
.platform-card img { width: 48px; height: 48px; object-fit: contain; }
.platform-card h3 { font-size: 15px; font-weight: 600; }
.platform-card p { font-size: 13px; color: var(--c-text-muted); }

/* ─── Steps ─── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--side-pad); }
.step-card { text-align: center; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--c-teal); color: var(--c-white); font-size: 20px; font-weight: 700; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.step-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.step-card p { font-size: 15px; color: var(--c-text-secondary); }

/* ─── FAQ ─── */
.faq { background: var(--c-footer-bg); }
.faq .section-head h2 { color: var(--c-white); }
.faq .section-head p { color: rgba(255,255,255,.65); }
.faq-list { max-width: 720px; margin: 0 auto; padding: 0 var(--side-pad); display: flex; flex-direction: column; gap: 2px; }
.faq-item { border-radius: var(--radius-md); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; font-size: 16px; font-weight: 600; color: var(--c-white);
  background: rgba(255,255,255,.06); gap: 12px;
  transition: background var(--transition);
}
.faq-q:hover { background: rgba(255,255,255,.1); }
.faq-q::after { content: "+"; font-size: 20px; font-weight: 400; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-q { background: rgba(255,255,255,.1); }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 22px 18px; background: rgba(255,255,255,.04); }
.faq-a p { font-size: 15px; color: rgba(255,255,255,.75); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ─── Prose (legal) ─── */
.prose { background: var(--c-white); }
.prose-inner { max-width: 760px; margin: 0 auto; padding: 0 var(--side-pad); }
.prose-inner h2 { font-size: 22px; font-weight: 600; margin: 36px 0 12px; }
.prose-inner h3 { font-size: 18px; font-weight: 600; margin: 24px 0 10px; }
.prose-inner p { font-size: 16px; color: var(--c-text-secondary); margin-bottom: 16px; line-height: 1.75; }
.prose-inner ul { padding-left: 24px; margin-bottom: 16px; }
.prose-inner li { font-size: 16px; color: var(--c-text-secondary); margin-bottom: 8px; line-height: 1.7; list-style: disc; }

/* ─── CTA band ─── */
.cta-band {
  background: var(--c-teal); padding: 72px 0; text-align: center;
}
.cta-band h2 { font-size: 36px; font-weight: 600; color: var(--c-white); margin-bottom: 16px; }
.cta-band p { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 32px; }
.cta-band .cta-group { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-band .btn-cta { background: var(--c-white); color: var(--c-cta); }
.cta-band .btn-cta:hover { background: var(--c-surface); }
.cta-band .guarantee { font-size: 14px; color: rgba(255,255,255,.75); }

/* ─── Badge strip ─── */
.badge-strip { background: var(--c-surface); padding: 48px 0; }
.badge-strip .container { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
.badge-item { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; }
.badge-item img { height: 60px; width: auto; }
.badge-item span { font-size: 13px; font-weight: 600; color: var(--c-text-secondary); }

/* ─── Footer ─── */
.site-footer { background: var(--c-footer-bg); color: rgba(255,255,255,.65); padding: 64px 0 0; }
.footer-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--side-pad);
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px;
}
.footer-brand .logo-footer { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); }
.footer-col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.9); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--c-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 24px var(--side-pad);
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,.4); transition: color var(--transition); }
.footer-legal a:hover { color: var(--c-white); }

/* ─── Stats bar ─── */
.stats-bar { background: var(--c-teal-wash); padding: 48px 0; }
.stats-bar .container { display: flex; align-items: center; justify-content: center; gap: 64px; flex-wrap: wrap; }
.stat-item { text-align: center; }
.stat-item .num { font-size: 40px; font-weight: 700; color: var(--c-text); margin-bottom: 4px; }
.stat-item .lbl { font-size: 14px; color: var(--c-text-secondary); }

/* ─── Image section ─── */
.img-section { background: var(--c-surface-alt); }
.img-section .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.img-card { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.img-card img { width: 100%; height: 100%; object-fit: cover; }

/* ─── Mobile ─── */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-cards { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .img-section .container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --side-pad: 16px; --header-h: 56px; }
  section { padding: 56px 0; }
  .section-head h2 { font-size: 26px; }
  .section-head { margin-bottom: 32px; }

  /* §11: hamburger flush to far-right (within 12px of header right edge) */
  .nav { padding-right: 8px; }

  /* §14: CTA buttons must be centered in body sections on mobile */
  .split-text .btn-cta,
  .split-text .btn-outline,
  .split-text .btn-teal { display: block !important; width: max-content !important; margin: 0 auto !important; }
  .cta-band .cta-group { flex-direction: column; align-items: center; }

  /* §11: hide header CTA on mobile (accessible via hamburger) and push toggle to far-right */
  .nav-right { display: none; }
  .nav-toggle { margin-left: auto; }

  /* Header mobile */
  .nav-links {
    display: none; position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--c-white); padding: 16px;
    flex-direction: column; align-items: flex-start; gap: 2px;
    border-bottom: 1px solid var(--c-border); box-shadow: var(--shadow-md);
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a, .nav-links > li > .nav-btn { width: 100%; padding: 12px 16px; font-size: 16px; }
  .dropdown-panel { position: static; box-shadow: none; border: none; padding: 0 0 0 16px; margin-top: 4px; }
  .has-dropdown.open .dropdown-panel { display: block; }
  .nav-toggle { display: block; }
  .nav-right .btn-cta { font-size: 13px; padding: 8px 14px; }
  .mobile-lang { display: block !important; }

  /* Hero mobile */
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero h1 { font-size: 36px; }
  .hero-sub { font-size: 16px; }
  .hero-cta { flex-direction: column; align-items: center; justify-content: center; }
  .hero-image { display: none; }
  .hero { padding: 56px 0 56px; }
  .hero-content { padding-bottom: 0; }

  /* Mosaic */
  .mosaic-grid { grid-template-columns: 1fr; }
  .mosaic-card.span-2 { grid-column: span 1; }

  /* Split */
  .split-inner, .split-inner.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .split-text h2 { font-size: 26px; }

  /* Platform: single column so each CTA is centered */
  .platform-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }

  /* Features */
  .feature-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-bar .container { gap: 32px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* Trust strip */
  .trust-strip .container { gap: 20px; }
  .trust-divider { display: none; }

  /* Page hero */
  .page-hero h1 { font-size: 30px; }
  .page-hero p { font-size: 16px; }

  /* CTA band */
  .cta-band h2 { font-size: 26px; }
  .cta-band p { font-size: 16px; }

  /* Img section */
  .img-section .container { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .plan-cards { max-width: 100%; }
}

/* ─── Overflow protection ─── */
html { overflow-x: hidden; }
body { overflow-x: hidden; }

/* ─── Misc utility ─── */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
