/* =============================================
  Fast Fiche – Stylesheet
   ============================================= */

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

:root {
  --primary: #166534;
  --primary-dark: #14532d;
  --primary-light: #ecfdf5;
  --green: #166534;
  --green-light: #dcfce7;
  --purple: #4b5563;
  --purple-light: #f3f4f6;
  --orange: #4b5563;
  --orange-light: #f3f4f6;
  --teal: #374151;
  --teal-light: #e5e7eb;
  --red: #4b5563;
  --red-light: #f3f4f6;
  --dark: #1C1917;
  --gray-800: #292524;
  --gray-600: #57534e;
  --gray-400: #a8a29e;
  --gray-200: #e7e5e4;
  --gray-100: #f5f5f4;
  --gray-50: #fafaf9;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.06);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.14);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn-sm  { font-size: 14px; padding: 8px 18px; }
.btn-lg  { font-size: 16px; padding: 14px 28px; border-radius: 12px; }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22,101,52,.35);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--gray-200);
}
.btn-outline:hover {
  background: var(--gray-50);
  border-color: var(--gray-400);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.18);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, box-shadow .25s;
}
.navbar.scrolled {
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--gray-200);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

/* Transparante staat: witte teksten over groene hero */
.navbar:not(.scrolled) .logo {
  color: #ffffff;
}
.navbar:not(.scrolled) .logo-badge {
  background: rgba(255,255,255,.18);
  box-shadow: none;
}
.navbar:not(.scrolled) .nav-links a {
  color: rgba(255,255,255,.85);
}
.navbar:not(.scrolled) .nav-links a:hover {
  color: #ffffff;
  background: rgba(255,255,255,.12);
}
.navbar:not(.scrolled) .nav-toggle span {
  background: #ffffff;
}
/* Nav-CTA: wit met groene tekst bovenaan; groen met witte tekst na scrollen */
.navbar:not(.scrolled) .nav-cta.btn-primary {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: #ffffff;
}
.navbar:not(.scrolled) .nav-cta.btn-primary:hover {
  background: #f0fdf4;
  border-color: #f0fdf4;
  box-shadow: 0 4px 14px rgba(0,0,0,.20);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 18px;
  color: var(--dark);
}
.logo-badge {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.logo-image {
  display: block;
}
.logo-image-header {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.logo-image-footer {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 6px 14px;
  border-radius: 8px;
  transition: all .15s;
}
.nav-links a:hover {
  color: var(--dark);
  background: var(--gray-100);
}
.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .2s;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0 80px;
  background: linear-gradient(160deg, #166534 0%, #15803d 55%, #14532d 100%);
}
.hero-bg-shape {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.12;
  color: #ffffff;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.highlight {
  position: relative;
  color: #86efac;
}
.highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #86efac, #4ade80);
  border-radius: 4px;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.60);
  margin-bottom: 10px;
}

/* Hero-scoped button overrides */
.hero .btn-primary {
  background: #ffffff;
  color: var(--primary-dark);
  border-color: #ffffff;
}
.hero .btn-primary:hover {
  background: #f0fdf4;
  border-color: #f0fdf4;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
}
.hero .btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
}
.hero .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
}

/* Browser Mockup */
.hero-visual { width: 100%; max-width: 760px; }
.browser-mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,.06);
  overflow: hidden;
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}
.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dot.red    { background: #86efac; }
.dot.yellow { background: #4ade80; }
.dot.green  { background: #166534; }
.url-bar {
  flex: 1;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 5px 16px;
  font-size: 13px;
  color: var(--gray-600);
  margin-left: 8px;
}
.browser-content {
  height: 320px;
  background: linear-gradient(135deg, #ecfdf5 0%, #dcfce7 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  overflow: hidden;
}
.browser-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 39px,
    rgba(0,0,0,.04) 39px,
    rgba(0,0,0,.04) 40px
  ),
  repeating-linear-gradient(
    90deg,
    transparent,
    transparent 119px,
    rgba(0,0,0,.04) 119px,
    rgba(0,0,0,.04) 120px
  );
}
.mockup-overlay {
  position: relative;
  z-index: 1;
}
.ext-popup {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 260px;
  padding: 16px;
  border: 1px solid var(--gray-200);
}
.ext-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.ext-icon { font-size: 18px; }
.ext-field {
  margin-bottom: 10px;
  padding: 8px 10px;
  border-radius: 8px;
}
.ext-field.filled { background: var(--primary-light); border: 1px solid rgba(22,101,52,.2); }
.ext-field label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 3px;
}
.field-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
}
.ext-submit {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  transition: background .15s;
}
.ext-submit:hover { background: var(--primary-dark); }
.ext-savings {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 8px;
  justify-content: center;
}

/* ===================== SOCIAL PROOF ===================== */
.social-proof {
  background: var(--dark);
  padding: 40px 0;
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 48px;
}
.stat strong {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}
.stat span {
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.12);
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 96px 0;
}
.section-alt {
  background: var(--gray-50);
}
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid rgba(22,101,52,.22);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--dark);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 600px;
  margin-bottom: 56px;
}

/* ===================== PAIN CARDS ===================== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: box-shadow .2s, transform .2s;
}
.pain-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.pain-icon {
  font-size: 32px;
  margin-bottom: 14px;
}
.pain-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.pain-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ===================== FEATURES GRID ===================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.feature-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  margin-bottom: 16px;
}
.feature-icon-wrap.blue   { background: var(--primary-light); color: var(--primary); }
.feature-icon-wrap.green  { background: var(--gray-100);       color: var(--dark); }
.feature-icon-wrap.purple { background: var(--primary-light);  color: var(--primary-dark); }
.feature-icon-wrap.orange { background: var(--primary-light);  color: var(--primary); }
.feature-icon-wrap.teal   { background: var(--gray-100);       color: var(--dark); }
.feature-icon-wrap.red    { background: var(--gray-200);       color: var(--dark); }

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}

/* ===================== PRICING ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.pricing-card-free {
  background: linear-gradient(180deg, #ffffff 0%, var(--gray-50) 100%);
}
.pricing-card-pro {
  border-color: rgba(22,101,52,.28);
  box-shadow: 0 8px 28px rgba(22,101,52,.12);
}
.pricing-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: var(--primary-light);
  color: var(--primary-dark);
  border: 1px solid rgba(22,101,52,.2);
  padding: 4px 10px;
  border-radius: 100px;
}
.pricing-plan {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.pricing-price {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 12px;
}
.pricing-price span {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
}
.pricing-note {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 18px;
}
.pricing-list {
  list-style: none;
  margin-bottom: 24px;
}
.pricing-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--gray-800);
  line-height: 1.5;
}
.pricing-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 800;
}

/* ===================== HOW IT WORKS ===================== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 6px 0;
}
.step-main {
  display: flex;
  align-items: flex-start;
  padding: 10px 4px;
}
.step:nth-child(even) .step-main {
  order: 2;
}
.step:nth-child(even) .step-media {
  order: 1;
}
.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(22,101,52,.3);
}
.step-content {
  padding: 0 0 0 16px;
  flex: 1;
}
.step-content h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  padding-top: 10px;
}
.step-content p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}
.step-media {
  display: flex;
}
.step-video-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  width: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.step-video-header {
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.step-video-thumb {
  padding: 0;
  background: #000;
}
.step-video {
  display: flex;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}
.video-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--gray-100);
  color: var(--gray-400);
  font-size: 15px;
  font-weight: 500;
  gap: 8px;
  border-radius: 0 0 var(--radius) var(--radius);
  letter-spacing: .01em;
}

/* ===================== DEMO ===================== */
.demo-request-wrap {
  max-width: 860px;
  margin: 0 auto 36px;
}
.demo-request-box {
  background: linear-gradient(180deg, #ffffff 0%, var(--gray-50) 100%);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.demo-request-box:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.demo-request-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.demo-request-list {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-bottom: 18px;
}
.demo-request-list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.65;
}
.demo-request-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--primary);
  font-weight: 800;
}
.demo-request-note {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--primary-light);
  border: 1px solid rgba(22,101,52,.2);
  border-radius: 100px;
  padding: 6px 12px;
}
.demo-cta {
  text-align: center;
  margin-top: 2px;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: box-shadow .2s, transform .2s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.stars {
  color: var(--primary);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card > p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.testimonial-author span {
  font-size: 12px;
  color: var(--gray-400);
}

/* ===================== CTA SECTION ===================== */
.cta-section {
  background: var(--white);
  padding: 96px 0;
}
.cta-box {
  background: linear-gradient(135deg, #14532d 0%, #166534 100%);
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 100px;
  padding: 5px 18px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.cta-box h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}
.cta-box > p {
  font-size: 17px;
  opacity: .85;
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.cta-reassurance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  opacity: .65;
  position: relative;
  z-index: 1;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--dark);
  padding: 64px 0 0;
  color: var(--gray-400);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { max-width: 320px; }
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-400);
}
.footer-links {
  display: flex;
  gap: 48px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 14px;
  color: var(--gray-400);
  transition: color .15s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ===================== ANIMATIONS ===================== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta   { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    gap: 4px;
  }
  .nav-links.open a { padding: 10px 16px; }
  .nav-links.open + .nav-cta { display: inline-flex; position: absolute; top: 120px; right: 24px; }

  .hero { padding: 120px 0 60px; }
  .hero-title { font-size: 32px; }

  .stats-row { gap: 0; }
  .stat { padding: 16px 24px; }
  .stat-divider { display: none; }

  .steps { gap: 20px; }
  .step {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .step:nth-child(even) .step-main,
  .step:nth-child(even) .step-media {
    order: unset;
  }
  .step-video-thumb { min-height: 140px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }

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

  .browser-content { height: 220px; padding: 16px; }
  .ext-popup { width: 220px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
}
