/* iKuuu VPN — style.css (design tokens mirrored from the source site) */
@import url('/assets/css/inter.css');

:root {
  --primary: #006bff;
  --primary-ho: #0063ec;
  --black: #181c31;
  --black-ho: #2c3149;
  --blacksection: #1c2136;
  --btndark: #292e45;
  --hoverdark: #252a42;
  --strokedark: #2d2f40;
  --titlebgdark: #46495a;
  --waterloo: #757693;
  --manatee: #999aa1;
  --zumthor: #edf5ff;
  --stroke: #eeeeee;
  --white: #ffffff;
  --alabaster: #fbfbfb;
  --green: #22ad5c;
  --amber: #f5a623;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 28px;

  --shadow-solid-l: 0 8px 24px rgba(24, 28, 49, 0.06);
  --shadow-solid-m: 0 12px 34px rgba(24, 28, 49, 0.10);
  --shadow-solid-s: 0 2px 10px rgba(24, 28, 49, 0.05);

  --container: 1170px;
  --sp-xs: 8px;
  --sp-sm: 16px;
  --sp-md: 28px;
  --sp-lg: 56px;
  --sp-xl: 92px;
  --transition: .25s ease;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC',
          'Hiragino Sans GB', 'Microsoft YaHei', 'Noto Sans SC', Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
body {
  font-family: var(--font);
  font-size: 16px; line-height: 1.7;
  color: var(--waterloo); background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-ho); }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5 { margin-top: 0; line-height: 1.22; color: var(--black); font-weight: 700; letter-spacing: -.01em; }
h1 { font-size: 46px; font-weight: 800; }
h2 { font-size: 36px; font-weight: 800; }
h3 { font-size: 20px; }
p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

.wrap { max-width: var(--container); margin: 0 auto; padding: 0 24px; width: 100%; }

/* ───────────────────────── HEADER ───────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--stroke);
}
.nav {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; gap: 20px;
  padding: 0 24px; height: 76px; position: relative;
}
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; order: 1; }
.brand:hover { color: inherit; }
img.logo { height: 38px; width: 38px; object-fit: contain; }
.brand-name { font-weight: 800; font-size: 20px; color: var(--black); letter-spacing: -.02em; white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: 28px; order: 2; }
.nav-links > li > a {
  display: block; color: var(--waterloo); font-size: 15px; font-weight: 500;
  padding: 9px 14px; border-radius: var(--radius-sm); transition: var(--transition); white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--primary); background: var(--zumthor); }
.nav-links > li > a.active { color: var(--primary); }

.nav-right { display: flex; align-items: center; gap: 14px; margin-left: auto; flex-shrink: 0; order: 3; }
.mobile-lang, .mobile-cta { display: none; }

/* language switcher (desktop dropdown) */
.dropdown { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 7px;
  background: none; border: 1px solid var(--stroke); color: var(--black);
  font-family: var(--font); font-size: 14px; font-weight: 500;
  padding: 8px 13px; border-radius: var(--radius-sm); cursor: pointer;
  transition: var(--transition); white-space: nowrap;
}
.lang-btn:hover { border-color: var(--primary); color: var(--primary); }
.lang-btn .ic { width: 15px; height: 15px; flex-shrink: 0; }
.lang-btn .caret { width: 10px; height: 10px; opacity: .6; }
.dropdown-panel {
  position: absolute; top: 100%; right: 0; padding-top: 10px;
  display: none; min-width: 168px; z-index: 950;
}
.dropdown-panel-inner {
  background: var(--white); border: 1px solid var(--stroke);
  border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-solid-m);
}
.dropdown.open .dropdown-panel, .dropdown:hover .dropdown-panel, .dropdown:focus-within .dropdown-panel { display: block; }
.dropdown-panel a {
  display: block; padding: 11px 18px; color: var(--black); font-size: 14.5px;
  transition: var(--transition); white-space: nowrap;
}
.dropdown-panel a:hover { background: var(--zumthor); color: var(--primary); }

.nav-toggle {
  display: none; margin-left: auto; order: 4;
  background: none; border: 0; cursor: pointer; padding: 8px;
  width: 42px; height: 42px; color: var(--black);
}
.nav-toggle svg { width: 26px; height: 26px; }
.nav-toggle .ic-close { display: none; }
.nav-toggle.is-open .ic-close { display: block; }
.nav-toggle.is-open .ic-open { display: none; }

/* ───────────────────────── BUTTONS ───────────────────────── */
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--black); color: var(--white);
  padding: 12px 24px; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 600; white-space: nowrap;
  transition: var(--transition); border: 1px solid var(--black);
}
.btn-cta:hover { background: var(--black-ho); border-color: var(--black-ho); color: var(--white); }
.btn-cta.primary { background: var(--primary); border-color: var(--primary); }
.btn-cta.primary:hover { background: var(--primary-ho); border-color: var(--primary-ho); }
.btn-cta.ghost { background: transparent; color: var(--black); border-color: var(--stroke); }
.btn-cta.ghost:hover { background: var(--zumthor); color: var(--primary); border-color: var(--primary); }
.btn-cta.on-dark { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-cta.on-dark:hover { background: var(--zumthor); color: var(--primary); border-color: var(--zumthor); }
.btn-cta.btn-lg { padding: 15px 32px; font-size: 16px; }
.btn-cta .ic { width: 17px; height: 17px; flex-shrink: 0; }

/* ───────────────────────── HERO ───────────────────────── */
.hero {
  position: relative; overflow: hidden;
  padding: 88px 0 96px;
  background:
    radial-gradient(60% 90% at 82% 8%, rgba(0, 107, 255, .10) 0%, rgba(0, 107, 255, 0) 60%),
    linear-gradient(180deg, var(--zumthor) 0%, rgba(237, 245, 255, .35) 45%, var(--white) 100%);
}
.hero-inner {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.hero-copy { min-width: 0; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid #d6e6ff; color: var(--black);
  border-radius: 999px; padding: 7px 16px; font-size: 13.5px; font-weight: 600;
  box-shadow: var(--shadow-solid-s); margin-bottom: 22px;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.hero h1 { margin-bottom: 20px; }
.hero p { font-size: 18px; margin-bottom: 26px; }
.hero-list { display: grid; gap: 11px; margin: 0 0 30px; }
.hero-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 15.5px; color: var(--black); font-weight: 500; }
.hero-list .ic { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; color: var(--primary); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-art { display: flex; justify-content: center; align-items: center; min-width: 0; }
.hero-art img { width: 100%; max-width: 520px; }

.platforms { margin-top: 34px; }
.platforms-label { font-size: 13.5px; font-weight: 600; color: var(--manatee); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .06em; }
.platform-row { display: flex; flex-wrap: wrap; gap: 10px; }
.platform-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--stroke); color: var(--black);
  padding: 9px 15px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-solid-s); transition: var(--transition);
}
.platform-chip:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.platform-chip .ic { width: 17px; height: 17px; flex-shrink: 0; }

.rating { display: flex; align-items: center; gap: 10px; margin-top: 26px; flex-wrap: wrap; }
.rating .stars { display: flex; gap: 2px; }
.rating .stars .ic { width: 17px; height: 17px; color: var(--amber); }
.rating .score { font-weight: 700; color: var(--black); }
.rating .note { font-size: 14px; }

/* page hero (sub-pages) */
.page-hero {
  padding: 72px 0 60px; text-align: center;
  background: linear-gradient(180deg, var(--zumthor) 0%, var(--white) 100%);
  border-bottom: 1px solid var(--stroke);
}
.page-hero-inner { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.page-hero h1 { font-size: 40px; margin-bottom: 16px; }
.page-hero .lede { font-size: 17.5px; margin-bottom: 0; }
.page-hero .hero-cta { justify-content: center; margin-top: 28px; }

/* ───────────────────────── SECTIONS ───────────────────────── */
section { position: relative; }
.sec { padding: var(--sp-xl) 0; }
.sec.tint { background: var(--alabaster); }
.sec.blue { background: linear-gradient(180deg, var(--zumthor) 0%, var(--white) 100%); }
.sec.dark { background: var(--blacksection); }
.sec.dark h2, .sec.dark h3, .sec.dark h4 { color: var(--white); }
.sec.dark p, .sec.dark li { color: var(--manatee); }

.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-head .eyebrow {
  display: inline-block; background: var(--zumthor); color: var(--primary);
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.sec.dark .section-head .eyebrow { background: var(--titlebgdark); color: var(--white); }
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 17px; margin-bottom: 0; }

/* feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature-card {
  background: var(--white); border: 1px solid var(--stroke); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: var(--shadow-solid-l); transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-solid-m); transform: translateY(-4px); }
.feature-card .icon-box {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--zumthor); color: var(--primary);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.feature-card .icon-box .ic { width: 27px; height: 27px; }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 15.5px; margin-bottom: 0; }
.sec.dark .feature-card { background: var(--btndark); border-color: var(--strokedark); }
.sec.dark .feature-card .icon-box { background: var(--titlebgdark); color: var(--white); }

/* split rows (numbered) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split + .split { margin-top: 80px; }
.split.rev .split-art { order: -1; }
.split-art img { width: 100%; max-width: 480px; margin: 0 auto; }
.split-visual {
  border-radius: var(--radius-lg); padding: 40px 34px;
  background: linear-gradient(135deg, var(--zumthor) 0%, #dbe9ff 100%);
  border: 1px solid #d6e6ff; box-shadow: var(--shadow-solid-l);
}
.split-visual ul { display: grid; gap: 14px; }
.split-visual li { display: flex; align-items: flex-start; gap: 11px; color: var(--black); font-weight: 500; font-size: 15.5px; }
.split-visual .ic { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; margin-top: 3px; }
.numbered { display: grid; gap: 30px; }
.num-item { display: flex; gap: 18px; }
.num-badge {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: var(--radius-md);
  background: var(--primary); color: var(--white); font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.num-item h3 { margin-bottom: 8px; }
.num-item p { font-size: 15.5px; margin-bottom: 0; }

/* pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px; max-width: 900px; margin: 0 auto; }
.price-card {
  position: relative; background: var(--white); border: 1px solid var(--stroke);
  border-radius: var(--radius-lg); padding: 40px 34px; box-shadow: var(--shadow-solid-l);
  display: flex; flex-direction: column;
}
.price-card.featured { border-color: var(--primary); box-shadow: 0 16px 44px rgba(0, 107, 255, .16); }
.price-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--white); font-size: 12.5px; font-weight: 700;
  padding: 6px 16px; border-radius: 999px; white-space: nowrap;
}
.price-card h3 { font-size: 22px; margin-bottom: 10px; }
.price-card .blurb { font-size: 15px; margin-bottom: 22px; }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 24px; }
.price-amount .amt { font-size: 42px; font-weight: 800; color: var(--black); line-height: 1; }
.price-amount .per { font-size: 15px; color: var(--manatee); }
.price-card ul { display: grid; gap: 12px; margin-bottom: 30px; }
.price-card li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--black); }
.price-card li .ic { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; margin-top: 4px; }
.price-card .btn-cta { margin-top: auto; width: 100%; }

/* comparison table */
.cmp-wrap { max-width: 900px; margin: 0 auto; overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.cmp { width: 100%; border-collapse: collapse; background: var(--white);
  border: 1px solid var(--stroke); border-radius: var(--radius-lg); overflow: hidden; }
table.cmp th, table.cmp td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--stroke); font-size: 15px; }
table.cmp thead th { background: var(--black); color: var(--white); font-weight: 600; }
table.cmp tbody th { color: var(--black); font-weight: 600; }
table.cmp td { color: var(--waterloo); }
table.cmp tbody tr:last-child th, table.cmp tbody tr:last-child td { border-bottom: 0; }
table.cmp tbody tr:nth-child(even) { background: var(--alabaster); }
.yes { color: var(--green); font-weight: 700; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.stat-item .stat-num { font-size: 46px; font-weight: 800; color: var(--white); line-height: 1.1; }
.stat-item .stat-label { font-size: 15px; color: var(--manatee); margin-top: 6px; }
.sec:not(.dark) .stat-item .stat-num { color: var(--black); }
.sec:not(.dark) .stat-item .stat-label { color: var(--waterloo); }

/* logos strip */
.logo-strip { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 44px; }
.logo-strip img { height: 30px; width: auto; opacity: .55; filter: grayscale(1); transition: var(--transition); }
.logo-strip img:hover { opacity: 1; filter: none; }

/* testimonials */
.tsm-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.tsm-card {
  background: var(--white); border: 1px solid var(--stroke); border-radius: var(--radius-lg);
  padding: 32px 30px; box-shadow: var(--shadow-solid-l);
}
.tsm-card .stars { display: flex; gap: 2px; margin-bottom: 16px; }
.tsm-card .stars .ic { width: 16px; height: 16px; color: var(--amber); }
.tsm-card blockquote { margin: 0 0 22px; font-size: 16px; color: var(--black); line-height: 1.75; }
.tsm-who { display: flex; align-items: center; gap: 13px; }
.tsm-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--zumthor); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0;
}
.tsm-who .name { font-weight: 700; color: var(--black); font-size: 15px; }
.tsm-who .role { font-size: 13.5px; color: var(--manatee); }

/* download cards */
.dl-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.dl-card {
  background: var(--white); border: 1px solid var(--stroke); border-radius: var(--radius-lg);
  padding: 32px 26px; text-align: center; box-shadow: var(--shadow-solid-l); transition: var(--transition);
}
.dl-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-solid-m); }
.dl-card .icon-box {
  width: 60px; height: 60px; border-radius: var(--radius-md); background: var(--zumthor); color: var(--primary);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.dl-card .icon-box .ic { width: 30px; height: 30px; }
.dl-card h3 { margin-bottom: 6px; }
.dl-card .req { font-size: 14px; color: var(--manatee); margin-bottom: 20px; }
.dl-card .btn-cta { width: 100%; }

/* FAQ */
.faq-list { max-width: 840px; margin: 0 auto; display: grid; gap: 16px; }
.faq-item { background: var(--white); border: 1px solid var(--stroke); border-radius: var(--radius-md); box-shadow: var(--shadow-solid-s); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font); font-size: 16.5px; font-weight: 600; color: var(--black);
  padding: 20px 56px 20px 24px; position: relative; line-height: 1.5;
}
.faq-q::after {
  content: ""; position: absolute; right: 24px; top: 50%; width: 10px; height: 10px;
  border-right: 2px solid var(--manatee); border-bottom: 2px solid var(--manatee);
  transform: translateY(-70%) rotate(45deg); transition: var(--transition);
}
.faq-item.open .faq-q::after { transform: translateY(-30%) rotate(-135deg); }
.faq-item.open .faq-q { color: var(--primary); }
.faq-a { display: none; padding: 0 24px 22px; }
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 15.5px; margin-bottom: 12px; }
.faq-sub { max-width: 840px; margin: 0 auto 22px; }
.faq-sub h3 { font-size: 22px; margin-bottom: 0; }
.faq-sub + .faq-list { margin-bottom: 48px; }

/* CTA band */
.cta-band { background: var(--blacksection); padding: 76px 0; text-align: center; }
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: var(--manatee); font-size: 17px; max-width: 640px; margin: 0 auto 30px; }
.cta-band .hero-cta { justify-content: center; }

/* prose (legal + article pages) */
.prose { padding: var(--sp-xl) 0; }
.prose-inner { max-width: 840px; margin: 0 auto; padding: 0 24px; }
.prose-inner h2 { font-size: 27px; margin: 46px 0 16px; }
.prose-inner h2:first-child { margin-top: 0; }
.prose-inner h3 { font-size: 19px; margin: 30px 0 12px; }
.prose-inner p { font-size: 16px; }
.prose-inner ul { display: grid; gap: 10px; margin: 0 0 20px; }
.prose-inner ul li { position: relative; padding-left: 26px; font-size: 16px; }
.prose-inner ul li::before {
  content: ""; position: absolute; left: 6px; top: 11px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--primary);
}
.note-box {
  background: var(--zumthor); border: 1px solid #d6e6ff; border-left: 4px solid var(--primary);
  border-radius: var(--radius-md); padding: 22px 24px; margin: 26px 0;
}
.note-box p { margin-bottom: 0; font-size: 15.5px; }

/* checklist */
.check-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; max-width: 840px; margin: 0 auto; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15.5px; color: var(--black); font-weight: 500; }
.check-list .ic { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 3px; }
.sec.dark .check-list li { color: var(--white); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.step {
  background: var(--white); border: 1px solid var(--stroke); border-radius: var(--radius-lg);
  padding: 30px 26px; box-shadow: var(--shadow-solid-l);
}
.step .num-badge { margin-bottom: 18px; }
.step h3 { margin-bottom: 8px; }
.step p { font-size: 15.5px; margin-bottom: 0; }

/* ───────────────────────── FOOTER ───────────────────────── */
.site-footer { background: var(--blacksection); color: var(--manatee); padding: 76px 0 0; }
.footer-grid {
  max-width: var(--container); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px;
}
.footer-brand .brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-brand .brand-row .brand-name { color: var(--white); }
.logo-footer { height: 38px; width: 38px; object-fit: contain; }
.footer-brand p { font-size: 15px; color: var(--manatee); max-width: 320px; }
.footer-col h4 { color: var(--white); font-size: 16px; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: var(--manatee); font-size: 15px; transition: var(--transition); }
.footer-col a:hover { color: var(--white); }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: var(--radius-sm); background: var(--btndark);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); }
.footer-social img { width: 17px; height: 17px; }
.footer-bottom {
  max-width: var(--container); margin: 56px auto 0; padding: 26px 24px;
  border-top: 1px solid var(--strokedark);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-bottom p { font-size: 14.5px; margin: 0; }
.footer-bottom ul { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-bottom a { color: var(--manatee); font-size: 14.5px; }
.footer-bottom a:hover { color: var(--white); }

/* ───────────────────────── RESPONSIVE ───────────────────────── */
@media (max-width: 1024px) {
  h1 { font-size: 38px; }
  h2 { font-size: 31px; }
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-art { order: -1; }
  .hero-art img { max-width: 380px; }
  .feature-grid, .dl-grid, .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .split.rev .split-art { grid-template-columns: 1fr; order: 0; }
  .split { gap: 38px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links { margin-left: 14px; }
  .nav-links > li > a { padding: 9px 10px; font-size: 14.5px; }
}

@media (max-width: 768px) {
  h1 { font-size: 31px; }
  h2 { font-size: 26px; }
  h3 { font-size: 18.5px; }
  body { font-size: 15.5px; }
  .sec { padding: 56px 0; }
  .hero { padding: 48px 0 56px; text-align: center; }
  .hero p, .hero h1 { text-align: center; }
  .hero-list { justify-items: center; }
  .hero-list li { text-align: left; max-width: 340px; }
  .hero-cta, .platform-row, .rating, .logo-strip { justify-content: center; }
  .platforms-label { text-align: center; }
  .page-hero { padding: 48px 0 40px; }
  .page-hero h1 { font-size: 29px; }

  .nav { height: 64px; padding: 0 16px; gap: 10px; }
  .nav-right { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; margin-right: -8px; }
  .brand-name { font-size: 17px; }
  img.logo { height: 32px; width: 32px; }

  /* full-width stacked panel dropping BELOW the header */
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0; width: 100%;
    margin: 0; padding: 12px 16px 22px;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--white); border-bottom: 1px solid var(--stroke);
    box-shadow: var(--shadow-solid-m);
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; }
  .nav-links > li > a { display: block; width: 100%; text-align: center; padding: 13px 12px; font-size: 16px; }

  .mobile-lang { display: block; border-top: 1px solid var(--stroke); margin-top: 10px; padding-top: 14px; }
  .mobile-lang .lang-row { display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: nowrap; }
  .mobile-lang .lang-row a {
    display: inline-block; padding: 6px 14px; border-radius: var(--radius-sm);
    border: 1px solid var(--stroke); color: var(--black); font-size: 14.5px; font-weight: 600;
    white-space: nowrap; line-height: 2.1;
  }
  .mobile-lang .lang-row a.active { border-color: var(--primary); color: var(--primary); background: var(--zumthor); }
  .mobile-cta { display: block; margin-top: 14px; }

  /* [§14] every CTA centered on mobile */
  .btn-cta { display: flex; width: fit-content; max-width: 100%; margin-left: auto; margin-right: auto; }
  .price-card .btn-cta, .dl-card .btn-cta, .mobile-cta .btn-cta { width: 100%; }

  .feature-grid, .dl-grid, .steps, .pricing-grid, .tsm-grid, .stats, .check-list { grid-template-columns: 1fr; gap: 20px; }
  .feature-card, .price-card, .tsm-card, .dl-card, .step { padding: 26px 22px; }
  .split-visual { padding: 28px 22px; }
  .split + .split { margin-top: 48px; }
  .section-head { margin-bottom: 36px; }
  .stat-item .stat-num { font-size: 38px; }
  .logo-strip { gap: 28px; }
  .logo-strip img { height: 24px; }
  .cta-band { padding: 56px 0; }
  .prose { padding: 52px 0; }
  .prose-inner h2 { font-size: 23px; margin-top: 36px; }
  .faq-q { font-size: 15.5px; padding: 17px 48px 17px 18px; }
  .faq-a { padding: 0 18px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-brand .brand-row, .footer-social { justify-content: center; }
  .site-footer { padding-top: 52px; }
  .footer-bottom { justify-content: center; text-align: center; flex-direction: column; margin-top: 40px; }
  .cmp-wrap { margin: 0 -8px; padding: 0 8px; }
  table.cmp th, table.cmp td { padding: 12px 14px; font-size: 14px; }
}

@media (max-width: 400px) {
  .mobile-lang .lang-row a { padding: 6px 10px; font-size: 13.5px; }
  .platform-chip { font-size: 13px; padding: 8px 12px; }
}
