/* ============================================================
   Stekly — design tokens
============================================================ */
:root {
  --aubergine: #3D2C5C;
  --aubergine-light: #6B5391;
  --ink: #1A0F2E;
  --mint: #7FE3C4;
  --mint-dark: #4FB89C;
  --paper: #FAF7F2;
  --text-2: #5A4F6B;
  --border: #E8E3D8;
  --border-strong: #d8d1c2;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(26, 15, 46, 0.04), 0 2px 8px rgba(26, 15, 46, 0.04);
  --shadow-md: 0 2px 4px rgba(26, 15, 46, 0.04), 0 12px 32px rgba(26, 15, 46, 0.08);
  --shadow-lg: 0 4px 12px rgba(26, 15, 46, 0.06), 0 30px 60px -20px rgba(26, 15, 46, 0.18);

  --container: 1200px;
  --gutter: clamp(20px, 4vw, 48px);

  --font-sans: 'General Sans', 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* ============================================================
   Typography helpers
============================================================ */
.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.005em;
  color: var(--text-2);
}

.eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--mint-dark), rgba(79, 184, 156, 0.2));
  flex-shrink: 0;
}

.eyebrow-dot {
  display: none;
}

/* ============================================================
   Buttons
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
  white-space: nowrap;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn-primary {
  background: var(--mint);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .5) inset, 0 6px 18px -6px rgba(79, 184, 156, 0.55);
}

.btn-primary:hover {
  background: #91ecd0;
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--aubergine);
  color: var(--paper);
}

.btn-dark:hover {
  background: var(--aubergine-light);
}

.btn-ghost {
  background: transparent;
  color: var(--aubergine);
  border-color: var(--border-strong);
}

.btn-ghost:hover {
  background: rgba(61, 44, 92, 0.04);
}

.link-arrow {
  color: var(--aubergine);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.link-arrow span {
  transition: transform .18s ease;
  display: inline-block;
}

.link-arrow:hover span {
  transform: translateX(3px);
}

.link-arrow::after {
  content: '';
  position: absolute;
  left: 0;
  right: 28px;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  opacity: 0.25;
}

.link-quiet {
  color: var(--text-2);
  font-size: 14px;
  font-weight: 500;
}

.link-quiet:hover {
  color: var(--ink);
}

/* ============================================================
   Nav
============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(232, 227, 216, 0.7);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--aubergine);
}

.logo-word {
  font-size: 20px;
}

.logo-mark {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--aubergine);
  display: inline-grid;
  place-items: center;
  box-shadow: 0 4px 10px -4px rgba(61, 44, 92, .5);
}

.logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.nav-links {
  display: flex;
  gap: 28px;
  justify-content: center;
}

.nav-links a {
  color: var(--text-2);
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--aubergine);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.is-active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-overlay a:not(.btn) {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 36px;
  color: var(--aubergine);
  transition: color 0.2s ease;
}

.mobile-menu-overlay a:not(.btn):hover {
  color: var(--mint-dark);
}

@media (max-width: 880px) {
  .nav-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-links, .nav-cta {
    display: none;
  }

  .hamburger-btn {
    display: block;
    grid-column: 3;
  }
}

/* ============================================================
   Hero
============================================================ */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) var(--gutter) clamp(72px, 10vw, 130px);
  background:
    radial-gradient(60% 70% at 80% 0%, rgba(127, 227, 196, 0.18) 0%, transparent 60%),
    radial-gradient(50% 60% at 0% 10%, rgba(107, 83, 145, 0.10) 0%, transparent 60%),
    #ffffff;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.hero-title {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 600;
  color: var(--aubergine);
  margin: 20px 0 24px;
  max-width: 18ch;
  text-wrap: balance;
}

.hero-title .serif {
  color: var(--ink);
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--text-2);
  max-width: 56ch;
  margin: 0 0 36px;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-fineprint {
  font-size: 14px;
  color: var(--text-2);
  margin: 14px 0 0;
}

.dot-sep {
  margin: 0 10px;
  opacity: .55;
}

/* ---- Hero wave divider ---- */
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  z-index: 2;
  pointer-events: none;
}

.hero-wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-wave .wave-fg {
  fill: var(--paper);
}

/* ---- Hero illustration ---- */
.hero-illu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.illu-browser {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--border);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(61, 44, 92, 0.03);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}

.illu-browser:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.illu-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(61, 44, 92, 0.03);
  border-bottom: 1px solid var(--border);
}

.illu-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.illu-dot-r { background: #ff6058; }
.illu-dot-y { background: #ffbd2e; }
.illu-dot-g { background: #27c93f; }

.illu-url-bar {
  margin-left: 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-2);
  background: rgba(61, 44, 92, 0.05);
  padding: 4px 12px;
  border-radius: 6px;
  flex: 1;
  letter-spacing: -0.01em;
}

.illu-browser-body {
  padding: 20px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.illu-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.illu-logo-block {
  width: 56px;
  height: 10px;
  border-radius: 4px;
  background: var(--aubergine);
  opacity: .7;
}

.illu-nav-links {
  display: flex;
  gap: 10px;
}

.illu-nav-links span {
  width: 32px;
  height: 6px;
  border-radius: 3px;
  background: var(--border-strong);
}

.illu-hero-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 0 8px;
}

.illu-heading-lg {
  width: 85%;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--aubergine), rgba(61, 44, 92, 0.4));
  opacity: .6;
}

.illu-heading-sm {
  width: 55%;
  height: 8px;
  border-radius: 3px;
  background: var(--border-strong);
}

.illu-btn-block {
  width: 80px;
  height: 22px;
  border-radius: 999px;
  background: var(--mint);
  margin-top: 6px;
  opacity: .9;
}

.illu-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 6px;
}

.illu-card-block {
  aspect-ratio: 1;
  border-radius: 8px;
  background: rgba(61, 44, 92, 0.04);
  border: 1px solid rgba(232, 227, 216, 0.6);
}

/* ---- Floating badges ---- */
.illu-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 10px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  font-size: 12px;
  font-weight: 600;
  color: var(--aubergine);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}

.illu-badge svg {
  flex-shrink: 0;
}

.illu-badge-speed {
  top: 8%;
  right: -14px;
  color: var(--mint-dark);
  animation-delay: 0s;
}

.illu-badge-live {
  bottom: 18%;
  left: -10px;
  animation-delay: -1.3s;
}

.illu-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #27c93f;
  box-shadow: 0 0 0 0 rgba(39, 201, 63, .4);
  animation: pulse 2.4s ease-in-out infinite;
}

.illu-badge-ssl {
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  color: var(--aubergine);
  animation-delay: -2.6s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.illu-badge-ssl {
  animation-name: float-ssl;
}

@keyframes float-ssl {
  0%, 100% { transform: translateY(-50%); }
  50% { transform: translateY(calc(-50% - 8px)); }
}

/* ---- Hero responsive ---- */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-illu {
    max-width: 380px;
    margin: 0 auto;
  }

  .illu-browser {
    transform: none;
  }

  .illu-browser:hover {
    transform: none;
  }

  .illu-badge-speed {
    right: -6px;
  }

  .illu-badge-ssl {
    right: -8px;
  }
}

@media (max-width: 768px) {
  .hero-illu {
    display: none;
  }
}

/* ============================================================
   Hero visual — Stekly membership card (single premium object)
============================================================ */
.hero-visual {
  position: relative;
  margin-top: clamp(48px, 7vw, 88px);
  isolation: isolate;
}

.stage {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0 60px;
  display: grid;
  place-items: center;
  perspective: 1600px;
}

/* large soft shadow under the card */
.card-shadow {
  position: absolute;
  bottom: 14px;
  left: 12%;
  right: 12%;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(61, 44, 92, 0.28) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
}

/* ---- the card itself ---- */
.sk-card {
  position: relative;
  width: min(560px, 92%);
  aspect-ratio: 1.586 / 1;
  /* credit-card ratio */
  border-radius: 22px;
  background:
    radial-gradient(120% 100% at 100% 0%, rgba(127, 227, 196, 0.10) 0%, transparent 55%),
    linear-gradient(155deg, #4A3470 0%, #3D2C5C 38%, #281A40 100%);
  color: var(--paper);
  padding: 32px 36px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 30px 60px -20px rgba(40, 26, 64, 0.55),
    0 12px 24px -12px rgba(26, 15, 46, 0.4);
  transform: rotate(-2deg);
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
  z-index: 1;
}

.sk-card:hover {
  transform: rotate(0deg) translateY(-3px);
}

/* foil / sheen overlay */
.sk-card-foil {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(115deg,
      transparent 30%,
      rgba(127, 227, 196, 0.10) 42%,
      rgba(250, 247, 242, 0.18) 48%,
      rgba(127, 227, 196, 0.12) 54%,
      transparent 68%);
  mix-blend-mode: screen;
  opacity: 0.9;
}

/* embossed corner mark — soft mint glow */
.sk-card-foil::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(127, 227, 196, 0.5), transparent 60%);
  filter: blur(8px);
}

/* subtle paper grain */
.sk-card-grain {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 1px;
  mix-blend-mode: overlay;
}

/* top row: brand + plan */
.sk-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sk-card-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sk-mark {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
}

.sk-mark span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px rgba(127, 227, 196, 0.7);
}

.sk-wordmark {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.sk-card-plan {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(127, 227, 196, 0.10);
  border: 1px solid rgba(127, 227, 196, 0.30);
  padding: 6px 12px;
  border-radius: 999px;
}

/* the big domain (hero of the card) */
.sk-card-domain {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: 8px;
}

.sk-card-url {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(40px, 5.4vw, 60px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  font-weight: 400;
  margin: 6px 0 0;
  color: var(--paper);
}

.sk-card-tld {
  color: var(--mint);
  font-style: italic;
}

/* grid of details */
.sk-card-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 12px;
}

.sk-card-grid>div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sk-card-label {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
}

.sk-card-value {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: -0.005em;
}

.sk-card-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--mint);
}

.sk-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(127, 227, 196, .55);
  animation: pulse 2.4s ease-in-out infinite;
}

/* foot: chip + signature */
.sk-card-foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sk-card-chip {
  width: 42px;
  height: 32px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, #d6c590 0%, #f0e0a5 40%, #b8a168 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  padding: 4px;
  gap: 3px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.sk-card-chip span {
  background: rgba(0, 0, 0, 0.12);
  border-radius: 1.5px;
}

.sk-card-sig {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sk-card-signature {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--paper);
  letter-spacing: -0.01em;
  line-height: 1;
}

/* ---- floating note (single, subtle accent) ---- */
.card-note {
  position: absolute;
  right: -8px;
  bottom: 30px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  z-index: 2;
  max-width: 240px;
  transform: rotate(3deg);
}

.card-note-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--ink);
}

.card-note-row b {
  font-weight: 600;
}

.card-note-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint-dark);
  box-shadow: 0 0 0 4px rgba(127, 227, 196, .22);
}

.card-note-line {
  font-size: 11.5px;
  color: var(--text-2);
  margin-top: 4px;
  font-family: ui-monospace, SF Mono, Menlo, monospace;
  letter-spacing: -0.005em;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(127, 227, 196, .55);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(127, 227, 196, 0);
  }
}

@media (max-width: 720px) {
  .stage {
    padding: 24px 0 40px;
  }

  .sk-card {
    width: 100%;
    transform: rotate(0deg);
    padding: 24px 24px 22px;
  }

  .sk-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .sk-card-grid>div:last-child {
    grid-column: 1 / -1;
  }

  .card-note {
    position: relative;
    right: auto;
    bottom: auto;
    transform: none;
    margin: 18px auto 0;
  }

  .card-shadow {
    display: none;
  }
}

/* ============================================================
   Section scaffolding
============================================================ */
.section {
  padding: clamp(72px, 9vw, 128px) var(--gutter);
  position: relative;
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section-head {
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 720px;
}

.section-head-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.005em;
  text-transform: none;
  color: var(--mint-dark);
  margin-bottom: 16px;
}

.kicker::before {
  content: '';
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--mint-dark), rgba(79, 184, 156, 0.2));
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.022em;
  font-weight: 600;
  color: var(--aubergine);
  margin: 0 0 18px;
  text-wrap: balance;
}

.section-title-light {
  color: var(--paper);
}

.section-lead {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
  max-width: 60ch;
  text-wrap: pretty;
}

.section-head-center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.section-lead-light {
  color: rgba(250, 247, 242, 0.72);
}

/* ============================================================
   Section 2 — Probleem
============================================================ */
.section-problem {
  background: var(--paper);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.problem-card {
  position: relative;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px 0;
  display: flex;
  flex-direction: column;
  min-height: 380px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.problem-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.problem-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--aubergine-light);
  margin-bottom: 18px;
}

.problem-card h3 {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  font-weight: 600;
  color: var(--aubergine);
  margin: 0 0 10px;
  text-wrap: balance;
}

.problem-card p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 24px;
}

.problem-illu {
  margin-top: auto;
  align-self: stretch;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 12px;
}

/* — Illustratie 1: oude window — */
.illu-window {
  position: relative;
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  padding: 10px 12px 18px;
  transform: rotate(-1.5deg) translateY(8px);
  box-shadow: 0 -4px 20px -10px rgba(26, 15, 46, .15);
}

.illu-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
}

.illu-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8d1c2;
}

.illu-rows {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.illu-rows i {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, #ece6d6, #f6f2e8);
}

.illu-rows i:nth-child(1) {
  width: 80%;
}

.illu-rows i:nth-child(2) {
  width: 60%;
}

.illu-rows i:nth-child(3) {
  width: 70%;
}

.illu-stamp {
  position: absolute;
  right: -8px;
  top: -10px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 24px;
  background: var(--aubergine);
  color: var(--mint);
  padding: 4px 12px;
  border-radius: 999px;
  transform: rotate(8deg);
  letter-spacing: -0.01em;
}

/* — Illustratie 2: bonnetje — */
.illu-receipt {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px 10px 0 0;
  padding: 18px 18px 22px;
  font-size: 13px;
  color: var(--text-2);
  position: relative;
  border-bottom: 0;
}

.illu-receipt::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 10px;
  background:
    radial-gradient(circle at 6px 0, transparent 5px, #fff 5.5px) repeat-x;
  background-size: 12px 10px;
}

.illu-line,
.illu-total {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
}

.illu-line+.illu-line {
  border-top: 1px dashed var(--border);
}

.illu-line-strong {
  color: var(--aubergine);
  font-weight: 600;
}

.illu-line-strong b {
  color: var(--aubergine);
}

.illu-total {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--ink);
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
}

/* — Illustratie 3: kalender — */
.illu-cal {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px 12px 0 0;
  padding: 14px 16px 20px;
  border-bottom: 0;
  position: relative;
}

.illu-cal-head {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 10px;
}

.illu-cal-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
  font-size: 12px;
  color: var(--text-2);
}

.illu-cal-row span {
  width: 22px;
}

.illu-cal-row i {
  display: block;
  height: 10px;
  border-radius: 3px;
}

.illu-cal-row i.b1 {
  width: 60%;
  background: rgba(61, 44, 92, .18);
}

.illu-cal-row i.b2 {
  width: 40%;
  background: rgba(61, 44, 92, .14);
}

.illu-cal-row i.b3 {
  width: 25%;
  background: rgba(127, 227, 196, .55);
}

.illu-cal-pin {
  position: absolute;
  right: -10px;
  top: 14px;
  background: var(--mint);
  color: var(--ink);
  padding: 6px 12px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  border-radius: 6px;
  transform: rotate(4deg);
  box-shadow: var(--shadow-sm);
}

.problem-foot {
  margin-top: 48px;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  color: var(--text-2);
  max-width: 60ch;
  text-wrap: balance;
}

.foot-strong {
  color: var(--ink);
  font-weight: 500;
}

@media (max-width: 880px) {
  .problem-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: auto;
  }
}

/* ============================================================
   Section 3 — Hoe het werkt (donker)
============================================================ */
.section-how {
  background:
    radial-gradient(60% 60% at 90% 0%, rgba(127, 227, 196, 0.08) 0%, transparent 60%),
    var(--ink);
  color: var(--paper);
  border-radius: clamp(24px, 4vw, 48px);
  margin: 0 var(--gutter);
  padding-left: clamp(40px, 6vw, 80px);
  padding-right: clamp(40px, 6vw, 80px);
}

.section-how .kicker {
  color: var(--mint);
}

.section-how .kicker::before {
  background: linear-gradient(90deg, var(--mint), rgba(127, 227, 196, 0.15));
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
}

.step {
  position: relative;
  padding: 36px 28px 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.step-rail {
  position: absolute;
  top: 28px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 227, 196, .35), transparent);
  pointer-events: none;
}

.step-dot {
  position: absolute;
  top: 50%;
  left: 28px;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(127, 227, 196, .18);
}

.step-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--mint);
  margin-bottom: 18px;
  display: inline-block;
}

.step-title {
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  font-weight: 600;
  color: var(--paper);
  margin: 0 0 10px;
  text-wrap: balance;
}

.step-text {
  color: rgba(250, 247, 242, .72);
  margin: 0 0 20px;
  font-size: 15.5px;
  line-height: 1.55;
}

.step-meta {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(127, 227, 196, .8);
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 14px;
}

@media (max-width: 880px) {
  .section-how {
    margin: 0;
    border-radius: 0;
  }

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

  .step-rail {
    display: none;
  }
}

/* ============================================================
   Section 4 — Pakketten
============================================================ */
.section-pricing {
  background: var(--paper);
}

/* billing toggle */
.billing-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 32px auto 0;
  padding: 5px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
}

.billing-opt {
  position: relative;
  z-index: 2;
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-2);
  padding: 10px 22px;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color .25s ease;
  white-space: nowrap;
  background: none;
  border: none;
  outline: none;
}

.billing-opt.is-active {
  color: var(--paper);
}

.billing-opt:hover:not(.is-active) {
  color: var(--ink);
}

.billing-save {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--mint);
  color: var(--ink);
  padding: 3px 9px;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease;
}

.billing-opt.is-active .billing-save {
  background: rgba(127, 227, 196, 0.95);
}

.billing-pill {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 5px;
  bottom: 5px;
  background: var(--aubergine);
  border-radius: 999px;
  transition: transform .35s cubic-bezier(.2, .8, .2, 1), width .35s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 8px 20px -8px rgba(61, 44, 92, 0.5);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-top: 56px;
}

.plan {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.plan:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-strong);
}

.plan-featured {
  background: var(--aubergine);
  border-color: var(--aubergine);
  color: var(--paper);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.plan-featured:hover {
  transform: translateY(-10px);
}

.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mint);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px -6px rgba(79, 184, 156, .6);
}

.plan-head {
  margin-bottom: 24px;
}

.plan-name {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--aubergine);
}

.plan-featured .plan-name {
  color: var(--mint);
}

.plan-tag {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-2);
  margin: 0;
}

.plan-featured .plan-tag {
  color: rgba(250, 247, 242, .72);
}

.plan-price {
  position: relative;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
  padding: 20px 0 22px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.plan-amount-num {
  display: inline-block;
  transition: opacity .2s ease, transform .35s cubic-bezier(.2, .8, .2, 1);
}

.plan-per {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.15;
}

.plan-per-main {
  font-size: 14px;
}

.plan-per-sub {
  font-size: 11px;
  color: var(--text-2);
  font-weight: 500;
  margin-top: 2px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity .25s ease;
}

.plan-featured .plan-per-sub {
  color: rgba(250, 247, 242, .6);
}

.plan-savings {
  position: absolute;
  left: 0;
  top: -14px;
  background: var(--mint);
  color: var(--ink);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity .3s ease, transform .35s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 6px 14px -6px rgba(79, 184, 156, .55);
}

.is-yearly .plan-per-main {
  display: none;
}

.is-yearly .plan-per-sub {
  opacity: 1;
  height: auto;
}

.is-yearly .plan-savings {
  opacity: 1;
  transform: translateY(0);
}

.is-yearly .plan-amount-num {
  animation: amount-flip .45s cubic-bezier(.2, .8, .2, 1);
}

@keyframes amount-flip {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.plan-featured .plan-price {
  border-color: rgba(255, 255, 255, .12);
}

.plan-amount {
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
}

.plan-featured .plan-amount {
  color: var(--paper);
}

.plan-per {
  font-size: 14px;
  color: var(--text-2);
}

.plan-featured .plan-per {
  color: rgba(250, 247, 242, .6);
}

.plan-feats {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.plan-feats li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.45;
  color: var(--ink);
}

.plan-featured .plan-feats li {
  color: rgba(250, 247, 242, .92);
}

.plan-feats li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--mint);
  background-image: linear-gradient(135deg, var(--mint), var(--mint-dark));
}

.plan-feats li::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 3px;
  border-left: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(-45deg);
}

.plan-cta {
  width: 100%;
}

.plan-featured .btn-ghost {
  color: var(--paper);
  border-color: rgba(255, 255, 255, .18);
}

.plan-featured .btn-ghost:hover {
  background: rgba(255, 255, 255, .06);
}

.pricing-foot {
  text-align: center;
  margin-top: 36px;
  color: var(--text-2);
  font-size: 14.5px;
}

.link-arrow-inline {
  margin-left: 6px;
}

.link-arrow-inline::after {
  display: none;
}

@media (max-width: 880px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .plan-featured {
    transform: none;
  }

  .plan-featured:hover {
    transform: translateY(-2px);
  }
}

/* ============================================================
   Section 5 — Wat zit erin
============================================================ */
.section-what {
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.feature {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: white;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(61, 44, 92, .07);
  color: var(--aubergine);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--aubergine);
  margin: 0 0 8px;
}

.feature p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}

@media (max-width: 880px) {
  .features {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Section 6 — Quote
============================================================ */
.section-quote {
  background: var(--paper);
}

.quote-inner {
  max-width: 880px;
  text-align: center;
  position: relative;
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 120px;
  line-height: 0.6;
  color: var(--mint);
  margin-bottom: 12px;
}

.quote {
  margin: 0 0 36px;
}

.quote p {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--aubergine);
  margin: 0;
  text-wrap: balance;
}

.quote-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--aubergine), var(--aubergine-light));
  color: var(--paper);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 18px;
}

.quote-name {
  font-weight: 600;
  color: var(--ink);
  text-align: left;
}

.quote-role {
  font-size: 14px;
  color: var(--text-2);
  text-align: left;
}

.quote-stat {
  margin-left: 24px;
  padding-left: 24px;
  border-left: 1px solid var(--border);
  text-align: left;
}

.quote-stat-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 28px;
  color: var(--mint-dark);
  line-height: 1;
}

.quote-stat-lbl {
  font-size: 12px;
  color: var(--text-2);
  margin-top: 4px;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .quote-stat {
    margin: 0;
    padding: 16px 0 0;
    border: 0;
    border-top: 1px solid var(--border);
    width: 100%;
    text-align: center;
  }
}

/* ============================================================
   Section 7 — FAQ
============================================================ */
.section-faq {
  background: var(--paper);
  border-top: 1px solid var(--border);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.faq-inner .section-head {
  margin-bottom: 0;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 4px 0;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--aubergine);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--aubergine);
  transition: transform .25s ease, opacity .25s ease;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1.5px;
  transform: translateY(-50%);
}

.faq-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1.5px;
  transform: translateX(-50%);
}

.faq-item[open] .faq-icon::after {
  opacity: 0;
  transform: translateX(-50%) rotate(90deg);
}

.faq-body {
  padding: 0 0 22px;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 60ch;
}

.faq-body p {
  margin: 0;
}

@media (max-width: 880px) {
  .faq-inner {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Section 8 — Final CTA
============================================================ */
.section-cta {
  background: var(--paper);
  padding-top: 0;
}

.cta-card {
  background:
    radial-gradient(70% 90% at 100% 100%, rgba(127, 227, 196, 0.18) 0%, transparent 55%),
    var(--aubergine);
  color: var(--paper);
  border-radius: clamp(24px, 4vw, 40px);
  padding: clamp(56px, 7vw, 88px) clamp(40px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 0% 0%, rgba(127, 227, 196, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: rgba(250, 247, 242, .7);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}

.cta-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--mint), rgba(127, 227, 196, 0.2));
  flex-shrink: 0;
}

.cta-eyebrow .eyebrow-dot {
  display: none;
}

.cta-title {
  position: relative;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--paper);
  text-wrap: balance;
}

.cta-title .serif {
  color: var(--mint);
}

.cta-sub {
  position: relative;
  color: rgba(250, 247, 242, .78);
  font-size: clamp(16px, 1.4vw, 19px);
  margin: 0 auto 32px;
  max-width: 56ch;
}

.cta-actions {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.link-arrow-light {
  color: var(--paper);
}

.link-arrow-light::after {
  background: rgba(250, 247, 242, .35);
}

/* ============================================================
   Footer
============================================================ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 72px var(--gutter) 32px;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand .logo-on-dark {
  color: var(--paper);
}

.footer-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--mint);
  margin: 16px 0 0;
  letter-spacing: -0.01em;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer-cols h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, .55);
  margin: 0 0 16px;
}

.footer-cols a,
.footer-meta {
  display: block;
  font-size: 14.5px;
  color: rgba(250, 247, 242, .82);
  padding: 4px 0;
}

.footer-cols a:hover {
  color: var(--mint);
}

.footer-meta {
  color: rgba(250, 247, 242, .5);
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(250, 247, 242, .5);
}

.footer-bottom span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-bottom span:last-child a {
  display: inline-flex;
  align-items: center;
}

.footer-bottom span:last-child img {
  display: inline-block;
  margin: 0;
  vertical-align: middle;
}

@media (max-width: 880px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 500px) {
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}