/* ==========================================================================
   Clouding-IT — huisstijl
   Kleuren afgeleid van het Clouding-IT logo (donkerblauw → staalblauw)
   ========================================================================== */

:root {
  --navy-900: #0b2239;
  --navy-800: #10314f;
  --navy-700: #16436b;
  --blue-600: #1d5c8f;
  --blue-500: #2a74b0;
  --blue-400: #4a92c9;
  --sky-300: #8fc0e3;
  --sky-200: #c4dff1;
  --sky-100: #e4f1fa;
  --cloud-50: #f4f9fd;
  --white: #ffffff;
  --ink: #14283c;
  --ink-soft: #44607a;
  --accent: #ff9d45;
  --accent-deep: #e9802a;
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 9px;
  --shadow-soft: 0 18px 45px -18px rgba(13, 49, 79, 0.28);
  --shadow-card: 0 10px 30px -12px rgba(13, 49, 79, 0.18);
  --font-display: "Sora", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --max-w: 1160px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cloud-50);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--blue-600); text-decoration: none; }
a:hover { color: var(--blue-500); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  color: var(--navy-900);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 600; }

p + p { margin-top: 1em; }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-500);
  background: var(--sky-100);
  border: 1px solid var(--sky-200);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 18px;
}

/* wolkje vóór elk label, kleurt mee met de tekst */
.eyebrow::before {
  content: "";
  width: 18px;
  height: 11px;
  flex: none;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 70'%3E%3Cg fill='black'%3E%3Cellipse cx='34' cy='50' rx='34' ry='17'/%3E%3Ccircle cx='38' cy='32' r='20'/%3E%3Ccircle cx='64' cy='38' r='15'/%3E%3Cellipse cx='82' cy='52' rx='36' ry='15'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 70'%3E%3Cg fill='black'%3E%3Cellipse cx='34' cy='50' rx='34' ry='17'/%3E%3Ccircle cx='38' cy='32' r='20'/%3E%3Ccircle cx='64' cy='38' r='15'/%3E%3Cellipse cx='82' cy='52' rx='36' ry='15'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* --------------------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--blue-600), var(--blue-400));
  color: var(--white);
  box-shadow: 0 12px 26px -10px rgba(29, 92, 143, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); color: var(--white); box-shadow: 0 16px 32px -10px rgba(29, 92, 143, 0.6); }

.btn-ghost {
  background: transparent;
  color: var(--navy-800);
  border: 1.5px solid var(--sky-300);
}
.btn-ghost:hover { background: var(--sky-100); color: var(--navy-900); }

.btn-accent {
  background: linear-gradient(120deg, var(--accent-deep), var(--accent));
  color: #3a2206;
  box-shadow: 0 12px 26px -10px rgba(233, 128, 42, 0.5);
}
.btn-accent:hover { transform: translateY(-2px); color: #2c1903; }

.btn-light {
  background: var(--white);
  color: var(--navy-800);
  box-shadow: var(--shadow-card);
}
.btn-light:hover { transform: translateY(-2px); color: var(--blue-600); }

/* ---------------------------------------------------------------- header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(143, 192, 227, 0.35);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 52px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links > li { position: relative; }

.nav-links a {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-800);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}
.nav-links a:hover, .nav-links a.active { color: var(--blue-500); background: var(--sky-100); }

.dropdown .drop-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--sky-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  list-style: none;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.dropdown:hover .drop-menu,
.dropdown:focus-within .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-menu a { padding: 10px 14px; border-radius: 8px; font-weight: 500; }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy-800);
  white-space: nowrap;
}
.nav-cta .btn { padding: 10px 20px; font-size: 0.85rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy-800);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 85% -10%, rgba(74, 146, 201, 0.35), transparent 65%),
    radial-gradient(900px 480px at -10% 110%, rgba(143, 192, 227, 0.4), transparent 60%),
    linear-gradient(165deg, var(--navy-900) 0%, var(--navy-700) 55%, var(--blue-600) 100%);
  color: var(--sky-100);
  padding: 96px 0 130px;
}

.hero h1 { color: var(--white); margin: 18px 0 22px; max-width: 16ch; }
.hero .lead { color: var(--sky-200); max-width: 56ch; }
.hero .eyebrow { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.22); color: var(--sky-200); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

.hero-clouds { position: absolute; inset: 0; pointer-events: none; }
/* echte wolkvormen: pil met twee bollen erbovenop; opacity op de parent
   zorgt dat de overlappende delen niet donkerder worden */
.cloud {
  position: absolute;
  background: var(--white);
  border-radius: 999px;
  opacity: 0.1;
  animation: drift 26s linear infinite alternate;
}
.cloud::before,
.cloud::after {
  content: "";
  position: absolute;
  background: var(--white);
  border-radius: 50%;
}
.cloud::before { width: 48%; padding-top: 48%; left: 14%; bottom: 30%; }
.cloud::after { width: 30%; padding-top: 30%; right: 18%; bottom: 45%; }
.cloud.c1 { width: 320px; height: 90px; top: 14%; right: 6%; animation-duration: 30s; }
.cloud.c2 { width: 220px; height: 64px; top: 52%; right: 24%; animation-duration: 38s; }
.cloud.c3 { width: 420px; height: 110px; bottom: 8%; left: -4%; animation-duration: 44s; }

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(60px); }
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 70px; display: block; }

/* page hero (subpagina's) */
.page-hero { padding: 72px 0 96px; }
.page-hero h1 { max-width: 22ch; }

/* ------------------------------------------------------------------ stats */
.stats-band { margin-top: -58px; position: relative; z-index: 5; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 30px 36px;
}
.stat { text-align: center; padding: 8px; }
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-600);
}
.stat span { font-size: 0.92rem; color: var(--ink-soft); }

/* --------------------------------------------------------------- sections */
.section { padding: 88px 0; }
.section-tight { padding: 60px 0; }
.section-alt {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 70'%3E%3Cg fill='%23e4f1fa'%3E%3Cellipse cx='34' cy='50' rx='34' ry='17'/%3E%3Ccircle cx='38' cy='32' r='20'/%3E%3Ccircle cx='64' cy='38' r='15'/%3E%3Cellipse cx='82' cy='52' rx='36' ry='15'/%3E%3C/g%3E%3C/svg%3E") no-repeat right -70px top 48px / 340px auto,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 70'%3E%3Cg fill='%23eef6fc'%3E%3Cellipse cx='34' cy='50' rx='34' ry='17'/%3E%3Ccircle cx='38' cy='32' r='20'/%3E%3Ccircle cx='64' cy='38' r='15'/%3E%3Cellipse cx='82' cy='52' rx='36' ry='15'/%3E%3C/g%3E%3C/svg%3E") no-repeat left -90px bottom 56px / 420px auto,
    var(--white);
}
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* dienstenkaarten */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
  gap: 22px;
}

.card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--sky-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--sky-300); }

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--sky-100), var(--sky-200));
  color: var(--blue-600);
}
.card-icon svg { width: 28px; height: 28px; }

.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.97rem; color: var(--ink-soft); flex: 1; }
.card-link {
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue-600);
}
.card-link::after { content: " →"; transition: margin 0.18s ease; }
.card:hover .card-link::after { margin-left: 5px; }

/* afbeeldingen */
.img-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--sky-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.img-card img { width: 100%; height: auto; }
.figure-stack { display: grid; gap: 20px; }

/* checklist */
.check-list { list-style: none; display: grid; gap: 13px; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--sky-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d5c8f' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E") center / 12px no-repeat;
  border: 1px solid var(--sky-200);
}

/* split layout */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }

.panel {
  background: var(--white);
  border: 1px solid var(--sky-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-card);
}

.panel-navy {
  background: linear-gradient(160deg, var(--navy-800), var(--blue-600));
  border: 0;
  color: var(--sky-100);
}
.panel-navy h2, .panel-navy h3 { color: var(--white); }
.panel-navy .check-list li::before { background-color: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.25); }

/* feature rows */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--sky-200);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}
.feature h3 { font-size: 1.05rem; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.feature p { font-size: 0.94rem; color: var(--ink-soft); }
.feature .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(120deg, var(--blue-500), var(--sky-300));
  flex: none;
}

/* steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; counter-reset: step; }
.step {
  background: var(--white);
  border: 1px solid var(--sky-200);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
  margin-bottom: 16px;
}
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { font-size: 0.95rem; color: var(--ink-soft); }

/* pricing-achtige segmenten (telefonie) */
.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: 22px; }
.tier {
  background: var(--white);
  border: 1px solid var(--sky-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}
.tier.tier-featured { border: 2px solid var(--blue-500); position: relative; }
.tier-label {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-500);
}
.tier h3 { font-size: 1.35rem; margin: 6px 0 18px; }
.tier .check-list { margin-top: 8px; }

/* tabel */
.table-wrap { overflow-x: auto; }
table.data {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
table.data th, table.data td { padding: 13px 20px; text-align: left; font-size: 0.95rem; }
table.data th { background: var(--navy-800); color: var(--sky-100); font-family: var(--font-display); font-weight: 600; }
table.data tr:nth-child(even) td { background: var(--sky-100); }

/* CTA band */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(700px 320px at 90% 0%, rgba(143, 192, 227, 0.3), transparent 60%),
    linear-gradient(140deg, var(--navy-900), var(--blue-600));
  border-radius: var(--radius-lg);
  color: var(--sky-100);
  padding: 64px 56px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow-soft);
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -55px;
  width: 420px;
  height: 245px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 70'%3E%3Cg fill='white' opacity='0.08'%3E%3Cellipse cx='34' cy='50' rx='34' ry='17'/%3E%3Ccircle cx='38' cy='32' r='20'/%3E%3Ccircle cx='64' cy='38' r='15'/%3E%3Cellipse cx='82' cy='52' rx='36' ry='15'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); max-width: 22ch; }
.cta-band p { color: var(--sky-200); max-width: 50ch; margin-top: 10px; }

/* ----------------------------------------------------------------- forms */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }

label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 6px;
}

input, select, textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  background: var(--cloud-50);
  border: 1.5px solid var(--sky-200);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(42, 116, 176, 0.15);
}
textarea { resize: vertical; min-height: 140px; }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* contact info blok */
.contact-info { display: grid; gap: 18px; }
.contact-line { display: flex; gap: 16px; align-items: flex-start; }
.contact-line .ico {
  width: 44px; height: 44px; flex: none;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--sky-100);
  color: var(--blue-600);
}
.contact-line .ico svg { width: 22px; height: 22px; }
.contact-line strong { font-family: var(--font-display); display: block; font-size: 0.95rem; }
.contact-line a, .contact-line span { font-size: 0.97rem; color: var(--ink-soft); }

/* ---------------------------------------------------------------- footer */
.site-footer {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 70'%3E%3Cg fill='%2316436b' opacity='0.45'%3E%3Cellipse cx='34' cy='50' rx='34' ry='17'/%3E%3Ccircle cx='38' cy='32' r='20'/%3E%3Ccircle cx='64' cy='38' r='15'/%3E%3Cellipse cx='82' cy='52' rx='36' ry='15'/%3E%3C/g%3E%3C/svg%3E") no-repeat right -60px top 36px / 360px auto,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 70'%3E%3Cg fill='%2316436b' opacity='0.3'%3E%3Cellipse cx='34' cy='50' rx='34' ry='17'/%3E%3Ccircle cx='38' cy='32' r='20'/%3E%3Ccircle cx='64' cy='38' r='15'/%3E%3Cellipse cx='82' cy='52' rx='36' ry='15'/%3E%3C/g%3E%3C/svg%3E") no-repeat left -80px bottom 80px / 300px auto,
    var(--navy-900);
  color: var(--sky-200);
  margin-top: 88px;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-grid h4 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.footer-grid ul { list-style: none; display: grid; gap: 9px; }
.footer-grid a { color: var(--sky-300); font-size: 0.93rem; }
.footer-grid a:hover { color: var(--white); }
.footer-grid p { font-size: 0.93rem; color: var(--sky-300); }
.footer-logo {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: inline-block;
  margin-bottom: 18px;
}
.footer-logo img { height: 56px; }

.footer-bottom {
  border-top: 1px solid rgba(143, 192, 227, 0.18);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--sky-300);
}

/* --------------------------------------------------------------- reveals */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .cloud { animation: none; }
}

/* ------------------------------------------------------------- responsive */
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse > :first-child { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-phone { display: none; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--white);
    border-bottom: 1px solid var(--sky-200);
    box-shadow: var(--shadow-soft);
    padding: 14px 20px 20px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .dropdown .drop-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 16px;
  }
  .nav-cta .btn { display: none; }
  .stats-grid { grid-template-columns: 1fr; gap: 6px; padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 30px; }
  .hero { padding: 64px 0 110px; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
