/* ========================================
   Geertjan.net — Premium 2026 Redesign
   Bento grid · Editorial typography · Glassy surfaces · Micro-interactions
   ======================================== */

/* --- Reset & Custom Properties --- */
:root {
  --bg: #07090f;
  --bg-surface: #0d1117;
  --bg-elevated: #151b26;
  --text: #f0f2f5;
  --text-secondary: #a0aec0;
  --text-muted: #64748b;
  --accent: #6c63ff;
  --accent-light: #a78bfa;
  --accent-glow: rgba(108, 99, 255, 0.25);
  --accent2: #22d3ee;
  --accent2-glow: rgba(34, 211, 238, 0.2);
  --warm: #f59e0b;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-bg-hover: rgba(255, 255, 255, 0.06);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.14);
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px rgba(108, 99, 255, 0.12);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.3s var(--ease);
  --container: 1200px;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
ul { list-style: none; }

/* --- Container --- */
.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: var(--text);
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }
h3 { font-size: 1.25rem; margin-bottom: 8px; }

h1 em, h2 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-light), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

p {
  color: var(--text-secondary);
  line-height: 1.75;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

/* --- Eyebrow --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 16px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-sans);
  text-decoration: none;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 4px 24px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-primary:hover {
  box-shadow: 0 8px 40px var(--accent-glow), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: var(--card-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}


/* ========================================
   Header
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0;
  transition: all 0.4s var(--ease);
}

.site-header.scrolled {
  background: rgba(7, 9, 15, 0.85);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}

.nav-logo span {
  color: var(--accent-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

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

.nav-cta {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 8px 20px !important;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: all var(--transition) !important;
}

.nav-cta:hover {
  background: var(--card-bg-hover) !important;
  border-color: var(--glass-border-hover) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ========================================
   Hero — Oversized statement + floating cards
   ======================================== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(108, 99, 255, 0.12), transparent 70%),
    radial-gradient(ellipse 40% 40% at 70% 30%, rgba(34, 211, 238, 0.08), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 12px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Floating hero cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 20px;
}

.hero-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  transition: all 0.4s var(--ease);
}

.hero-card:hover {
  background: var(--card-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateX(-8px);
  box-shadow: var(--shadow-md);
}

.hero-card-1 { transform: translateX(0); }
.hero-card-2 { transform: translateX(24px); }
.hero-card-3 { transform: translateX(8px); }

.hero-card-1:hover { transform: translateX(-8px); }
.hero-card-2:hover { transform: translateX(16px); }
.hero-card-3:hover { transform: translateX(0); }

.hero-card-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(108, 99, 255, 0.1);
  flex-shrink: 0;
}

.hero-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 700;
}

.hero-card span {
  font-size: 0.85rem;
  color: var(--text-muted);
}


/* ========================================
   Trust Strip
   ======================================== */
.trust {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.trust-number {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--text) 30%, var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border-strong);
}


/* ========================================
   Sections — shared
   ======================================== */
.section {
  padding: 120px 0;
}

.section-dark {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  max-width: 640px;
  margin-bottom: 64px;
}

.section-intro {
  font-size: 1.1rem;
  margin-top: 16px;
}


/* ========================================
   Bento Grid — Diensten
   ======================================== */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
}

.bento-item {
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease);
  overflow: hidden;
  position: relative;
}

.bento-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 30% 0%, rgba(108, 99, 255, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.bento-item:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.bento-item:hover::before {
  opacity: 1;
}

.bento-inner {
  padding: 32px;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.bento-lg {
  grid-column: span 2;
}

.bento-lg .bento-inner {
  padding: 40px;
}

.bento-lg h3 {
  font-size: 1.5rem;
}

.bento-lg p {
  font-size: 1.05rem;
  max-width: 540px;
}

.bento-accent {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.12), rgba(34, 211, 238, 0.08));
  border-color: rgba(108, 99, 255, 0.2);
}

.bento-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(108, 99, 255, 0.1);
  font-size: 1.4rem;
  margin-bottom: 20px;
  transition: transform 0.4s var(--ease-spring);
}

.bento-item:hover .bento-icon {
  transform: scale(1.08) rotate(-3deg);
}

.bento-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 20px;
}

.bento-tags li {
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}


/* ========================================
   Statement / Pull quote
   ======================================== */
.statement {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.statement-quote {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.statement-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  font-style: italic;
}

.statement-quote em {
  background: linear-gradient(135deg, var(--accent-light), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}


/* ========================================
   Process / Werkwijze
   ======================================== */
.process {
  max-width: 680px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 32px;
}

.step-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.step-line {
  width: 2px;
  flex: 1;
  min-height: 32px;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  opacity: 0.3;
}

.step-body {
  padding-bottom: 48px;
}

.process-step:last-child .step-body {
  padding-bottom: 0;
}

.step-body h3 {
  color: var(--text);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.step-body p {
  font-size: 0.95rem;
  line-height: 1.8;
}


/* ========================================
   About — Values grid
   ======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: start;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin: 20px 0 16px;
}

.about-main > p:last-of-type {
  margin-top: 0;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  transition: all 0.4s var(--ease);
}

.value-card:hover {
  border-color: var(--glass-border-hover);
  background: var(--card-bg-hover);
  transform: translateX(4px);
}

.value-icon {
  color: var(--accent-light);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.value-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.value-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}


/* ========================================
   Offer / Value section
   ======================================== */
.offer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 72px;
  align-items: center;
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.offer-list li {
  padding-left: 24px;
  border-left: 2px solid var(--accent);
  transition: border-color var(--transition);
}

.offer-list li:hover {
  border-color: var(--accent2);
}

.offer-list strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.offer-list span {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.offer-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer-card {
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: all 0.4s var(--ease);
}

.offer-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.offer-card-number {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.offer-card p {
  font-size: 0.9rem;
}

.offer-card-highlight {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(34, 211, 238, 0.06));
  border-color: rgba(108, 99, 255, 0.2);
}


/* ========================================
   CTA
   ======================================== */
.cta-section {
  padding: 120px 0;
  position: relative;
}

.cta-box {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  padding: 72px 48px;
  border-radius: var(--radius-xl);
  background: var(--glass);
  border: 1px solid var(--glass-border);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 120%;
  background:
    radial-gradient(ellipse 40% 40% at 40% 60%, rgba(108, 99, 255, 0.1), transparent),
    radial-gradient(ellipse 30% 30% at 65% 50%, rgba(34, 211, 238, 0.06), transparent);
  pointer-events: none;
}

.cta-box h2 {
  margin-bottom: 16px;
  position: relative;
}

.cta-box > p {
  font-size: 1.08rem;
  margin-bottom: 32px;
  position: relative;
}

.cta-box .eyebrow {
  position: relative;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  position: relative;
  margin-bottom: 24px;
}

.cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
}


/* ========================================
   Footer
   ======================================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  background: var(--bg-surface);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 300px;
}

.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-credit {
  font-style: italic;
}


/* ========================================
   Micro-interactions: Fade-in on scroll
   ======================================== */
.fade-target {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-target.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger bento items */
.bento-item.fade-target:nth-child(1) { transition-delay: 0s; }
.bento-item.fade-target:nth-child(2) { transition-delay: 0.08s; }
.bento-item.fade-target:nth-child(3) { transition-delay: 0.16s; }
.bento-item.fade-target:nth-child(4) { transition-delay: 0.24s; }
.bento-item.fade-target:nth-child(5) { transition-delay: 0.32s; }
.bento-item.fade-target:nth-child(6) { transition-delay: 0.4s; }

/* Stagger process steps */
.process-step.fade-target:nth-child(1) { transition-delay: 0s; }
.process-step.fade-target:nth-child(2) { transition-delay: 0.1s; }
.process-step.fade-target:nth-child(3) { transition-delay: 0.2s; }
.process-step.fade-target:nth-child(4) { transition-delay: 0.3s; }

/* Stagger value cards */
.value-card.fade-target:nth-child(1) { transition-delay: 0s; }
.value-card.fade-target:nth-child(2) { transition-delay: 0.1s; }
.value-card.fade-target:nth-child(3) { transition-delay: 0.2s; }

/* Stagger offer cards */
.offer-card.fade-target:nth-child(1) { transition-delay: 0s; }
.offer-card.fade-target:nth-child(2) { transition-delay: 0.1s; }
.offer-card.fade-target:nth-child(3) { transition-delay: 0.2s; }


/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    padding-left: 0;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-card {
    flex: 1;
    min-width: 180px;
  }

  .hero-card-1,
  .hero-card-2,
  .hero-card-3 {
    transform: none;
  }

  .hero-card-1:hover,
  .hero-card-2:hover,
  .hero-card-3:hover {
    transform: translateY(-4px);
  }

  .about-grid,
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--container), calc(100% - 32px));
  }

  .section {
    padding: 80px 0;
  }

  .hero {
    padding: 120px 0 64px;
  }

  /* Mobile nav */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 72px 0 0;
    background: rgba(7, 9, 15, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease);
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.2rem;
  }

  .nav-cta {
    padding: 12px 28px !important;
  }

  /* Bento grid */
  .bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento-lg {
    grid-column: span 2;
  }

  /* Trust */
  .trust-strip {
    flex-wrap: wrap;
    gap: 24px;
  }

  .trust-divider {
    display: none;
  }

  .trust-item {
    flex: 1;
    min-width: 120px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 540px) {
  h1 { font-size: 2.4rem; }

  .hero {
    padding: 110px 0 56px;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .hero-visual {
    flex-direction: column;
  }

  .hero-card {
    min-width: unset;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  /* Bento single col */
  .bento {
    grid-template-columns: 1fr;
  }

  .bento-lg {
    grid-column: span 1;
  }

  /* Process */
  .process-step {
    gap: 20px;
  }

  .step-num {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }

  /* CTA */
  .cta-box {
    padding: 48px 24px;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
  }

  /* Offer */
  .offer-card-stack {
    flex-direction: column;
  }

  /* Statement */
  .statement {
    padding: 56px 0;
  }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .fade-target {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}
