/* =========================================================
   FRSHLINE Schoonmaak — huisstijl
   Kleuren uitgelezen uit de flyer (foto mo 1.jpeg):
     Navy   #0B1829   (logo-achtergrond / footer)
     Lime   #9CC01E   ("LINE", vinkjes, iconen)
     Blauw  #2A78B4   (dak in het logo)
     Licht  #F4F4F4   (lichte band flyer)
   ========================================================= */

:root {
  --navy: #0B1829;
  --navy-soft: #14263C;
  --navy-line: #1E3550;
  --lime: #9CC01E;
  --lime-dark: #83A315;
  --lime-soft: #E8F2CC;
  --blue: #2A78B4;
  --blue-soft: #E3EEF7;

  --bg: #ffffff;
  --bg-soft: #F4F4F4;
  --bg-band: #EEF1F4;

  --text: #1B2430;
  --muted: #5A6674;
  --line: #DFE4EA;

  --shadow-sm: 0 2px 10px rgba(11, 24, 41, .06);
  --shadow: 0 14px 40px rgba(11, 24, 41, .10);
  --shadow-lg: 0 24px 60px rgba(11, 24, 41, .16);

  --radius: 10px;
  --radius-lg: 18px;
  --container: 1180px;

  --font-display: 'Poppins', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  overflow-wrap: break-word;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 .55em;
  font-weight: 700;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(1.75rem, 5.2vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.45rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }

p { margin: 0 0 1.05em; color: var(--muted); }
a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--navy); }

.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.hero-grid > *, .split > *, .card-grid > *, .steps > *, .compare > * { min-width: 0; }

/* ===== Knoppen ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-display);
  font-weight: 600; font-size: .97rem; line-height: 1;
  padding: 15px 26px; border-radius: var(--radius);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary { background: var(--lime); color: var(--navy); box-shadow: 0 8px 22px rgba(156,192,30,.32); }
.btn-primary:hover { background: var(--lime-dark); color: #fff; }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-soft); color: #fff; }

.btn-outline { border-color: var(--line); color: var(--navy); background: #fff; }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }

.btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; background: transparent; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

.btn-whatsapp { background: #25D366; color: #08331A; }
.btn-whatsapp:hover { background: #1FB855; color: #fff; }

/* ===== Header ===== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--navy);
  border-bottom: 1px solid var(--navy-line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; min-height: var(--header-h);
}
.logo { display: flex; align-items: center; }
.logo img { height: 52px; width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a, .nav .has-sub > button {
  font-family: var(--font-display);
  font-size: .95rem; font-weight: 500;
  color: #E7ECF2; padding: 10px 14px; border-radius: 8px;
  background: none; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s ease, background .2s ease;
}
.nav > a:hover, .nav .has-sub > button:hover { color: #fff; background: rgba(255,255,255,.07); }
.nav > a.active, .nav .has-sub.active > button { color: var(--lime); }
.nav .btn-nav {
  background: var(--lime); color: var(--navy); font-weight: 600;
  padding: 12px 20px; border-radius: 8px; margin-left: 10px;
}
.nav .btn-nav:hover { background: #fff; color: var(--navy); }
.nav .btn-nav.active { color: var(--navy); }

.has-sub { position: relative; }
.has-sub > button svg { width: 12px; height: 12px; transition: transform .2s ease; }
.has-sub:hover > button svg { transform: rotate(180deg); }
.submenu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 268px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.has-sub:hover .submenu, .has-sub:focus-within .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu a {
  display: block; padding: 10px 14px; border-radius: 7px;
  color: var(--navy); font-size: .93rem; font-weight: 500;
}
.submenu a:hover { background: var(--bg-soft); color: var(--navy); }
.submenu a span { display: block; font-size: .8rem; color: var(--muted); font-weight: 400; margin-top: 2px; }

.menu-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  color: #fff;
}
.menu-toggle svg { width: 28px; height: 28px; }

/* ===== Hero ===== */
.hero {
  position: relative; background: var(--navy); color: #fff;
  padding: clamp(56px, 8vw, 100px) 0 clamp(64px, 9vw, 110px);
  overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; right: -14%; top: -30%;
  width: 60vw; height: 130%;
  background: radial-gradient(closest-side, rgba(156,192,30,.16), transparent 72%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero h1 em { font-style: normal; color: var(--lime); }
.hero .lead { color: #C6D0DC; font-size: 1.12rem; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-size: .78rem; font-weight: 600;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--lime); margin-bottom: 18px;
  flex-wrap: wrap; max-width: 100%;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--lime); }
.eyebrow.dark { color: var(--lime-dark); }
.eyebrow.dark::before { background: var(--lime); }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5; object-fit: cover; object-position: center 12%;
}
.hero-badge {
  position: absolute; left: -18px; bottom: 26px;
  background: #fff; color: var(--navy); border-radius: var(--radius);
  padding: 14px 18px; box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px; max-width: 260px;
}
.hero-badge svg { width: 30px; height: 30px; color: var(--lime); flex: none; }
.hero-badge strong { font-family: var(--font-display); font-size: .95rem; display: block; }
.hero-badge span { font-size: .8rem; color: var(--muted); line-height: 1.4; display: block; }

/* Balk met kernwoorden */
.trust-bar { background: var(--navy-soft); border-top: 1px solid var(--navy-line); }
.trust-bar .container {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 46px;
  padding: 18px 0;
}
.trust-bar span {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: .85rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase; color: #D6DEE7;
}
.trust-bar span::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }

/* ===== Secties ===== */
section { padding: clamp(56px, 7vw, 96px) 0; }
.section-soft { background: var(--bg-soft); }
.section-band { background: var(--bg-band); }
.section-navy { background: var(--navy); color: #fff; }
.section-navy h2, .section-navy h3 { color: #fff; }
.section-navy p { color: #C6D0DC; }

.section-header { max-width: 720px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-header.center { margin-inline: auto; text-align: center; }
.section-header p { font-size: 1.05rem; margin-bottom: 0; }

/* ===== Dienstenkaarten ===== */
.card-grid { display: grid; gap: 22px; }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  display: flex; flex-direction: column;
}
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--lime); }
.card h3 { margin-bottom: .4em; }
.card p { font-size: .96rem; margin-bottom: 0; }
.card .card-link {
  margin-top: auto; padding-top: 16px;
  font-family: var(--font-display); font-weight: 600; font-size: .9rem; color: var(--navy);
  display: inline-flex; align-items: center; gap: 8px;
}
.card .card-link svg { width: 15px; height: 15px; transition: transform .2s ease; }
a.card:hover .card-link svg { transform: translateX(4px); }

.icon-badge {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--lime-soft); color: var(--lime-dark);
  display: grid; place-items: center; margin-bottom: 20px; flex: none;
}
.icon-badge svg { width: 27px; height: 27px; }
.icon-badge.blue { background: var(--blue-soft); color: var(--blue); }
.section-navy .icon-badge { background: rgba(156,192,30,.16); color: var(--lime); }

/* ===== Split (tekst + beeld) ===== */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 68px); align-items: center;
}
.split.reverse .split-media { order: 2; }
.split.form-split { grid-template-columns: 1.3fr .9fr; align-items: start; }
.split-media img {
  width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow);
  object-fit: cover;
}
.split-media.portrait img { aspect-ratio: 4 / 4.6; object-position: center 22%; }
.split-media.wide img { aspect-ratio: 4 / 3; }

.photo-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.photo-duo img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.photo-duo img:last-child { margin-top: 30px; }
@media (max-width: 640px) {
  .photo-duo img:last-child { margin-top: 0; }
}

/* ===== Lijsten met vinkjes ===== */
.check-list { list-style: none; padding: 0; margin: 0 0 1.4em; display: grid; gap: 12px; }
.check-list li {
  position: relative; padding-left: 34px; color: var(--muted); line-height: 1.6;
}
.check-list li::before {
  content: ''; position: absolute; left: 0; top: 3px;
  width: 21px; height: 21px; border-radius: 6px;
  background: var(--lime-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2383A315' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.section-navy .check-list li { color: #C6D0DC; }
.section-navy .check-list li::before { background-color: rgba(156,192,30,.18); }

.cross-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.cross-list li { position: relative; padding-left: 34px; color: var(--muted); }
.cross-list li::before {
  content: ''; position: absolute; left: 0; top: 3px;
  width: 21px; height: 21px; border-radius: 6px;
  background: #FDE8E8 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D14343' stroke-width='3.2' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ===== Voor / na ===== */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare figure { margin: 0; }
.compare img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.compare figcaption {
  margin-top: 14px; font-family: var(--font-display); font-weight: 600;
  color: var(--navy); display: flex; align-items: center; gap: 10px;
}
.compare .tag {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}
.compare .card-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
  font-family: var(--font-display); font-weight: 600; color: var(--navy);
}
.tag-voor { background: #FDE8E8; color: #B33A3A; }
.tag-na { background: var(--lime-soft); color: var(--lime-dark); }

/* ===== Stappen ===== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 12px; }
.step::before {
  counter-increment: step; content: counter(step);
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--lime); color: var(--navy);
  display: grid; place-items: center; margin-bottom: 18px;
}
.step h3 { font-size: 1.08rem; }
.step p { font-size: .95rem; margin-bottom: 0; }
.section-navy .step::before { background: var(--lime); color: var(--navy); }

/* ===== Quote / uitspraak Mo ===== */
.quote {
  border-left: 4px solid var(--lime); padding: 6px 0 6px 26px;
  font-family: var(--font-display); font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 500; line-height: 1.5; color: var(--navy);
}
.section-navy .quote { color: #fff; }
.quote-author { display: block; margin-top: 14px; font-size: .9rem; font-weight: 500; color: var(--muted); font-family: var(--font-body); }
.section-navy .quote-author { color: #9FB0C2; }

/* ===== CTA-blok ===== */
.cta-block {
  background: var(--navy); color: #fff; border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 58px); position: relative; overflow: hidden;
}
.cta-block::after {
  content: ''; position: absolute; right: -60px; top: -80px; width: 340px; height: 340px;
  background: radial-gradient(closest-side, rgba(156,192,30,.20), transparent 70%);
}
.cta-block > * { position: relative; z-index: 2; }
.cta-block h2 { color: #fff; }
.cta-block p { color: #C6D0DC; max-width: 60ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ===== Werkgebied ===== */
.region-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.region-list span {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 17px; font-size: .9rem; color: var(--navy);
  font-family: var(--font-display); font-weight: 500;
}
.region-list.secondary span { background: transparent; color: var(--muted); font-weight: 400; }

/* ===== Contactkaarten ===== */
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px 28px; text-align: center; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.contact-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-card .icon-badge { margin-inline: auto; }
.contact-card h3 { margin-bottom: .3em; }
.contact-card p { font-size: .95rem; }
.contact-card .value {
  font-family: var(--font-display); font-weight: 600; font-size: 1.05rem;
  color: var(--navy); display: block; margin-bottom: 14px;
}

/* ===== Formulier ===== */
.form-wrap {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 46px); box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display); font-weight: 600; font-size: .88rem; color: var(--navy);
}
.field label .opt { font-weight: 400; color: var(--muted); font-size: .82rem; }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .98rem; color: var(--text);
  padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; transition: border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(156,192,30,.18);
}
.field input[type="file"] { padding: 10px 12px; background: var(--bg-soft); cursor: pointer; }
.field .hint { font-size: .82rem; color: var(--muted); }
.checkbox-row { display: flex; align-items: flex-start; gap: 11px; }
.checkbox-row input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--lime-dark); }
.checkbox-row label { font-family: var(--font-body); font-weight: 400; font-size: .9rem; color: var(--muted); }
.form-actions { margin-top: 26px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.form-actions .hint { font-size: .86rem; color: var(--muted); }

.form-aside { display: grid; gap: 22px; align-content: start; }
.aside-card {
  background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 30px 28px;
}
.aside-card h3 { color: #fff; font-size: 1.15rem; }
.aside-card p { color: #C6D0DC; font-size: .95rem; }
.aside-card .check-list li { color: #C6D0DC; font-size: .95rem; }
.aside-card .check-list li::before { background-color: rgba(156,192,30,.18); }

/* ===== FAQ ===== */
.faq { display: grid; gap: 14px; max-width: 860px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 24px; box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 600; color: var(--navy);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; font-size: 1.5rem; font-weight: 400; color: var(--lime-dark); line-height: 1;
}
.faq details[open] summary::after { content: '–'; }
.faq details p { margin: 14px 0 0; font-size: .97rem; }

/* ===== Paginakop (binnenpagina's) ===== */
.page-head {
  background: var(--navy); color: #fff; position: relative; overflow: hidden;
  padding: clamp(48px, 6vw, 78px) 0 clamp(52px, 6.5vw, 84px);
}
.page-head::after {
  content: ''; position: absolute; right: -10%; top: -40%; width: 50vw; height: 160%;
  background: radial-gradient(closest-side, rgba(42,120,180,.22), transparent 72%);
}
.page-head .container { position: relative; z-index: 2; }
.page-head h1 { color: #fff; max-width: 20ch; }
.page-head p { color: #C6D0DC; max-width: 62ch; font-size: 1.08rem; margin-bottom: 0; }
.breadcrumb { font-size: .85rem; color: #8FA1B4; margin-bottom: 16px; }
.breadcrumb a { color: #B8C6D4; }
.breadcrumb a:hover { color: var(--lime); }

/* ===== Footer ===== */
.site-footer { background: var(--navy); color: #B8C6D4; padding: clamp(48px, 6vw, 72px) 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 40px;
  padding-bottom: 44px;
}
.site-footer h4 {
  color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer p { color: #93A3B5; font-size: .94rem; margin-bottom: .6em; }
.site-footer a { color: #B8C6D4; }
.site-footer a:hover { color: var(--lime); }
.footer-logo img { height: 78px; width: auto; margin-bottom: 12px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a { font-size: .94rem; }
.footer-bottom {
  border-top: 1px solid var(--navy-line); padding: 20px 0 26px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: .85rem; color: #7C8DA0;
}

/* ===== Zwevende WhatsApp-knop ===== */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(37,211,102,.4);
  transition: transform .2s ease;
}
.wa-float:hover { transform: scale(1.07); color: #fff; }
.wa-float svg { width: 30px; height: 30px; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { max-width: 460px; }
  .hero-badge { left: auto; right: 14px; }
  .split, .split.form-split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .cols-3, .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .menu-toggle { display: block; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--navy); border-bottom: 1px solid var(--navy-line);
    padding: 14px 20px 24px; display: none;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav.open { display: flex; }
  .nav > a, .nav .has-sub > button { padding: 13px 12px; width: 100%; justify-content: space-between; }
  .has-sub { width: 100%; }
  .submenu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; background: transparent; border: 0; padding: 0 0 8px 12px;
    display: none;
  }
  .has-sub.open .submenu { display: block; }
  .submenu a { color: #C6D0DC; padding: 10px 12px; }
  .submenu a:hover { background: rgba(255,255,255,.06); color: #fff; }
  .submenu a span { color: #8FA1B4; }
  .nav .btn-nav { margin: 10px 0 0; justify-content: center; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .trust-bar .container { gap: 10px 24px; }
  .trust-bar span { font-size: .76rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
