/* ============================================================
   PaintIQ — landing page styles
   Palet:
     - Marineblauw primary:  #1E3A8A
     - Helder blauw:         #2563EB
     - Oranje accent:        #F97316
   ============================================================ */

:root {
  --navy: #1E3A8A;
  --navy-dark: #172554;
  --blue: #2563EB;
  --blue-light: #DBEAFE;
  --orange: #F97316;
  --orange-dark: #EA580C;
  --orange-light: #FED7AA;
  --slate-900: #0F172A;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50: #F8FAFC;
  --white: #FFFFFF;
  --max-w: 1440px;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px -8px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 24px 48px -16px rgba(30, 58, 138, 0.25);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  /* Fluid root font-size: scale from 15px (mobile) to 20px (4K) */
  font-size: clamp(15px, 0.5rem + 0.55vw, 20px);
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body { overflow-x: hidden; }

/* Wide-screen container scaling */
@media (min-width: 1700px) {
  :root { --max-w: 1600px; }
}
@media (min-width: 2400px) {
  :root { --max-w: 1800px; }
}

/* ============== Animations & motion ============== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: rotate(-1.5deg) translateY(0); }
  50%      { transform: rotate(-1.5deg) translateY(-12px); }
}
@keyframes blobShift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.1); }
  66%      { transform: translate(-30px, 40px) scale(0.95); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3); }
  50%      { box-shadow: 0 6px 24px rgba(249, 115, 22, 0.5); }
}
@keyframes drawLine {
  from { stroke-dashoffset: 100; }
  to   { stroke-dashoffset: 0; }
}

/* Scroll-reveal: items met deze class faden in zodra ze in beeld komen */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

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

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--slate-900);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.1; margin: 0 0 1.2rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); line-height: 1.2; margin: 0 0 0.6rem; }
h3 { font-size: 1.15rem; margin: 0 0 0.4rem; }

p { margin: 0 0 1rem; color: var(--slate-700); }

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

/* ============================ Buttons ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  font-family: inherit;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 14px 26px; font-size: 1rem; }
.btn-sm { padding: 8px 14px; font-size: 0.85rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
  position: relative;
  overflow: hidden;
}
.btn-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-accent:hover {
  background: var(--orange-dark);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(249, 115, 22, 0.5);
  transform: translateY(-2px);
}
.btn-accent:hover::before { transform: translateX(100%); }
.btn-accent.btn-lg {
  animation: pulse-glow 3s ease-in-out infinite;
}

.btn-ghost {
  background: transparent;
  color: var(--slate-700);
  border-color: var(--slate-300);
}
.btn-ghost:hover {
  background: var(--slate-50);
  color: var(--navy);
  border-color: var(--slate-400);
}

/* ============================ Top bar ============================ */
.topbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--slate-200);
  z-index: 50;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease;
}
.brand:hover { transform: scale(1.03); }
.brand img {
  height: 140px;
  width: auto;
  display: block;
}
.topnav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.topnav a:not(.btn) {
  color: var(--slate-700);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.topnav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.topnav a:not(.btn):hover { color: var(--navy); }
.topnav a:not(.btn):hover::after { transform: scaleX(1); }
.topnav a.btn { color: var(--white); }
.topnav a.btn:hover { color: var(--white); }
/* ghost-knop (zoals "Inloggen") moet leesbaar zijn op de lichte topbar */
.topnav a.btn-ghost { color: var(--slate-700); border-color: var(--slate-300); }
.topnav a.btn-ghost:hover { color: var(--navy); background: var(--slate-50); }

@media (max-width: 720px) {
  .topnav a:not(.btn) { display: none; }
}

/* ============================ Hero ============================ */
.hero {
  position: relative;
  padding: 100px 0 120px;
  background:
    radial-gradient(circle at 90% 10%, rgba(37, 99, 235, 0.08), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(249, 115, 22, 0.06), transparent 50%),
    linear-gradient(180deg, var(--white) 0%, var(--slate-50) 100%);
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35) 0%, transparent 70%);
  top: -120px;
  right: -120px;
  animation: blobShift 18s ease-in-out infinite;
}
.hero::after {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.28) 0%, transparent 70%);
  bottom: -180px;
  left: -100px;
  animation: blobShift 22s ease-in-out infinite reverse;
}
.hero > .container { position: relative; z-index: 1; }
.hero-text > * { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards; }
.hero-text > .eyebrow { animation-delay: 0.05s; }
.hero-text > h1 { animation-delay: 0.15s; }
.hero-text > .lede { animation-delay: 0.25s; }
.hero-text > .hero-cta { animation-delay: 0.35s; }
.hero-text > .hero-trust { animation-delay: 0.45s; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero { padding: 50px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}
.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  background: var(--blue-light);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}
.text-accent { color: var(--orange); }
.lede {
  font-size: 1.15rem;
  color: var(--slate-600);
  margin: 0 0 32px;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  color: var(--slate-600);
  font-size: 0.92rem;
}
.trust-item { display: flex; align-items: center; gap: 6px; }
.trust-item strong { color: var(--slate-900); }
.trust-item::before {
  content: "✓";
  color: var(--orange);
  font-weight: 700;
  margin-right: 4px;
}

/* Hero mockup (visuele aankondiger) */
.hero-visual {
  display: flex;
  justify-content: center;
  perspective: 1500px;
}
.mockup {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 460px;
  overflow: hidden;
  transform: rotate(-1.5deg);
  border: 1px solid var(--slate-200);
  animation: float 6s ease-in-out infinite, fadeUp 0.9s 0.3s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  transition: box-shadow 0.3s ease;
}
.mockup:hover { box-shadow: 0 32px 64px -20px rgba(30, 58, 138, 0.4); }
.mockup-bar {
  background: var(--slate-100);
  padding: 10px 14px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--slate-200);
}
.mockup-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--slate-300);
}
.mockup-content { padding: 18px 22px; }
.m-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--slate-700);
  padding: 6px 0;
}
.m-row-head {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--blue-light);
  padding-bottom: 10px;
  margin-bottom: 6px;
}
.m-row-head strong { color: var(--slate-900); font-size: 1rem; }
.m-sep { border-top: 1px dashed var(--slate-200); margin-top: 8px; padding-top: 10px; }
.m-row-total {
  border-top: 2px solid var(--orange);
  margin-top: 10px;
  padding-top: 12px;
  font-weight: 700;
  font-size: 1.05rem;
}
.m-row-total strong { color: var(--orange); }

/* ============================ Sections ============================ */
section { padding: 80px 0; }
section h2 {
  text-align: center;
}
.section-lede {
  text-align: center;
  font-size: 1.1rem;
  color: var(--slate-600);
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ============================ Features ============================ */
.features {
  background: var(--slate-50);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
}
.feature {
  background: var(--white);
  padding: 30px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--slate-200);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.feature:hover::before { transform: scaleX(1); }
.feature:hover .feature-icon { transform: scale(1.1) rotate(-3deg); }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg, var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 16px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.feature h3 { color: var(--navy); margin-bottom: 8px; }
.feature p { color: var(--slate-600); font-size: 0.95rem; margin: 0; }

/* ============================ How it works ============================ */
.how { background: var(--white); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-light), var(--orange-light));
  z-index: 0;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 54px;
  height: 54px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 20px;
  box-shadow: 0 6px 16px rgba(30, 58, 138, 0.35);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}
.step:hover .step-num {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 12px 28px rgba(30, 58, 138, 0.45);
}
.step:nth-child(2) .step-num { background: var(--blue); box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35); }
.step:nth-child(2):hover .step-num { box-shadow: 0 12px 28px rgba(37, 99, 235, 0.45); }
.step:nth-child(3) .step-num { background: var(--orange); box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35); }
.step:nth-child(3):hover .step-num { box-shadow: 0 12px 28px rgba(249, 115, 22, 0.5); }
.step h3 { color: var(--navy); margin-bottom: 10px; }
.step p { color: var(--slate-600); font-size: 0.95rem; max-width: 280px; margin: 0 auto; }

/* ============================ Pricing ============================ */
.pricing {
  background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
}
.price-card {
  max-width: 460px;
  margin: 40px auto 0;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px solid var(--navy);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px -16px rgba(30, 58, 138, 0.4);
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--blue), var(--orange), var(--blue), var(--navy));
  background-size: 200% 100%;
  animation: shimmer 5s linear infinite;
}
.price-card-head { text-align: center; }
.badge {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.price-card h3 { font-size: 1.4rem; color: var(--navy); }
.price {
  margin: 18px 0 8px;
}
.price-eur {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-period {
  color: var(--slate-500);
  font-size: 0.95rem;
  margin-left: 4px;
}
.price-note {
  color: var(--slate-500);
  font-size: 0.88rem;
  margin: 6px 0 24px;
}
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--slate-200);
  padding-top: 22px;
}
.price-features li {
  padding: 7px 0;
  color: var(--slate-700);
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features li::before {
  content: "✓";
  color: var(--orange);
  font-weight: 800;
  font-size: 1.05rem;
}

/* ============================ Waitlist ============================ */
.waitlist {
  background: var(--white);
}
.waitlist-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: var(--white);
  padding: 60px 48px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.waitlist-card::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--blue-light) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0.18;
  top: -160px;
  left: -160px;
  animation: blobShift 25s ease-in-out infinite;
}
.waitlist-card::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.18;
  bottom: -140px;
  right: -140px;
  animation: blobShift 28s ease-in-out infinite reverse;
}
.waitlist-card h2 { color: var(--white); position: relative; z-index: 1; }
.waitlist-card p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin: 12px auto 28px;
  position: relative;
  z-index: 1;
}
.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.waitlist-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-sm);
  font-family: inherit;
  outline: none;
}
.waitlist-form input::placeholder { color: var(--slate-400); }
.waitlist-form input:focus {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.25);
}
.waitlist-note {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  margin: 18px 0 0;
  position: relative;
  z-index: 1;
}

/* ============================ FAQ ============================ */
.faq { background: var(--slate-50); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 940px;
  margin: 40px auto 0;
}
@media (max-width: 720px) {
  .faq-grid { grid-template-columns: 1fr; }
}
.faq details {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.faq details[open] {
  border-color: var(--blue);
  box-shadow: var(--shadow-sm);
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.98rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--orange);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  margin: 12px 0 0;
  color: var(--slate-600);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ============================ Footer ============================ */
.footer {
  background: var(--slate-900);
  color: var(--slate-300);
  padding: 50px 0 40px;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  height: 140px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.92;
  margin-bottom: 14px;
}
.footer-tag {
  margin: 0;
  font-size: 0.92rem;
  color: var(--slate-400);
}
.footer-meta {
  text-align: right;
  font-size: 0.85rem;
  color: var(--slate-400);
}
.footer-meta p { margin: 4px 0; color: var(--slate-400); }
.footer-meta a { color: var(--slate-300); }
.footer-meta a:hover { color: var(--white); }
@media (max-width: 720px) {
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
}

/* ============================ Mobile polish (< 720px) ============================ */
@media (max-width: 720px) {
  /* Logo header was 140px → veel te groot mobiel */
  .brand img { height: 48px; }
  .topbar-inner { padding: 10px 16px; gap: 8px; }
  .topnav { gap: 6px; }
  .topnav a.btn { padding: 6px 10px; font-size: 0.78rem; }

  /* Sections: 80px verticaal werd te ruim op mobile */
  section { padding: 48px 0; }
  .hero { padding: 36px 0 56px; }

  /* H1 nog steeds clamp-aangedreven, maar lede + cta wat compacter */
  .lede { font-size: 1rem; margin-bottom: 24px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-trust { gap: 12px; font-size: 0.85rem; }

  /* Features-grid: 1 kolom op smal scherm */
  .feature-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 20px; }

  /* Waitlist / call-to-action card: buttons stacked */
  .waitlist-card { padding: 28px 20px; }
  .waitlist-form { flex-direction: column; gap: 10px; align-items: stretch; }
  .waitlist-form .btn { width: 100%; }

  /* Container marges */
  .container { padding-left: 16px; padding-right: 16px; }
}

/* Tussen tablet en phone (720–900px): kleinere logo + halve section-padding */
@media (max-width: 900px) and (min-width: 721px) {
  .brand img { height: 72px; }
  section { padding: 60px 0; }
}
