﻿/* MARKETING OS â€” Landing Page Styles */

:root {
  --color-blue: #2563EB;
  --color-violet: #7C3AED;
  --color-bg-dark: #0b0f19;
  --color-bg-mid: #111827;
  --color-bg-darkest: #0d1117;
  --color-bg-light: #f8fafc;
  --color-text-light: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-text-dark: #0f172a;
  --color-text-muted-light: #64748b;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Space Grotesk', sans-serif;
  --radius-card: 16px;
  --radius-btn: 10px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--color-bg-dark); color: var(--color-text-light); -webkit-font-smoothing: antialiased; }
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 9999; padding: 8px 16px; background: #2563EB; color: #fff; border-radius: 4px; }
.skip-link:focus { left: 8px; }

/* === NAVBAR === */
/* ── Reset / base ──────────────────────────────────────────── */
  .nav-root *,
  .nav-root *::before,
  .nav-root *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* ── Fixed header shell ────────────────────────────────────── */
  .nav-root {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition:
      background 0.35s ease,
      backdrop-filter 0.35s ease,
      border-color 0.35s ease,
      box-shadow 0.35s ease;
  }

  /* Scrolled state — glassmorphism */
  .nav-root.nav-scrolled {
    background: rgba(11, 15, 25, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
  }

  /* ── Inner layout ──────────────────────────────────────────── */
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 68px;
    gap: 1.5rem;
  }

  /* ── Brand / logo ──────────────────────────────────────────── */
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
  }

  .nav-brand-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .nav-brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
  }

  .nav-brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    white-space: nowrap;
    letter-spacing: -0.01em;
  }

  .nav-brand-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.6875rem;
    color: #94a3b8;
    white-space: nowrap;
    letter-spacing: 0.01em;
  }

  /* ── Center nav links ──────────────────────────────────────── */
  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
  }

  .nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 1.5rem);
    height: 2px;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
    border-radius: 2px;
    transition: transform 0.25s ease;
  }

  .nav-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-links a:hover::after {
    transform: translateX(-50%) scaleX(1);
  }

  /* ── Right CTA group ───────────────────────────────────────── */
  .nav-ctas {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  /* Ghost / outline button */
  .nav-btn-ghost {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2563EB;
    background: transparent;
    border: 1.5px solid #2563EB;
    border-radius: 8px;
    padding: 0.5rem 1.125rem;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition:
      color 0.2s ease,
      background 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease;
  }

  .nav-btn-ghost:hover {
    background: rgba(37, 99, 235, 0.1);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
  }

  /* Primary gradient button */
  .nav-btn-primary {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    border: none;
    border-radius: 8px;
    padding: 0.5625rem 1.25rem;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: opacity 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    box-shadow: 0 2px 16px rgba(37, 99, 235, 0.35);
  }

  .nav-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .nav-btn-primary:hover::before {
    opacity: 1;
  }

  .nav-btn-primary:hover {
    box-shadow: 0 4px 24px rgba(37, 99, 235, 0.5);
    transform: translateY(-1px);
  }

  .nav-btn-primary:active {
    transform: translateY(0);
  }

  .nav-btn-primary span {
    position: relative;
    z-index: 1;
  }

  /* ── Hamburger button ──────────────────────────────────────── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background 0.2s ease;
  }

  .nav-hamburger:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.05);
  }

  .nav-hamburger-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
  }

  /* Hamburger → X animation */
  .nav-hamburger[aria-expanded="true"] .nav-hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-hamburger[aria-expanded="true"] .nav-hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-hamburger[aria-expanded="true"] .nav-hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* ── Mobile overlay ────────────────────────────────────────── */
  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(11, 15, 25, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    /* Hidden state */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 0.35s ease,
      visibility 0.35s ease,
      transform 0.35s ease;
  }

  .nav-overlay.nav-overlay-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  /* Decorative gradient blob in overlay */
  .nav-overlay::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(
      ellipse at center,
      rgba(37, 99, 235, 0.12) 0%,
      rgba(124, 58, 237, 0.08) 50%,
      transparent 70%
    );
    pointer-events: none;
  }

  .nav-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    width: 100%;
    padding: 2rem 1.5rem;
    position: relative;
    z-index: 1;
  }

  /* Close button (×) inside overlay */
  .nav-overlay-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #94a3b8;
    font-size: 1.25rem;
    line-height: 1;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  }

  .nav-overlay-close:hover {
    border-color: rgba(255, 255, 255, 0.35);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
  }

  /* Overlay nav links list */
  .nav-overlay-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    width: 100%;
  }

  .nav-overlay-links a {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #94a3b8;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 10px;
    display: block;
    width: 100%;
    text-align: center;
    transition: color 0.2s ease, background 0.2s ease;
    letter-spacing: -0.01em;
  }

  .nav-overlay-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
  }

  /* Divider between links and CTAs */
  .nav-overlay-divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
  }

  /* Overlay CTA group */
  .nav-overlay-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
  }

  .nav-overlay-ctas .nav-btn-ghost,
  .nav-overlay-ctas .nav-btn-primary {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    border-radius: 10px;
  }

  /* Staggered entrance animation for overlay items */
  .nav-overlay.nav-overlay-open .nav-overlay-links li,
  .nav-overlay.nav-overlay-open .nav-overlay-ctas,
  .nav-overlay.nav-overlay-open .nav-overlay-divider {
    animation: navItemFadeUp 0.4s ease forwards;
  }

  .nav-overlay.nav-overlay-open .nav-overlay-links li:nth-child(1) { animation-delay: 0.05s; opacity: 0; }
  .nav-overlay.nav-overlay-open .nav-overlay-links li:nth-child(2) { animation-delay: 0.10s; opacity: 0; }
  .nav-overlay.nav-overlay-open .nav-overlay-links li:nth-child(3) { animation-delay: 0.15s; opacity: 0; }
  .nav-overlay.nav-overlay-open .nav-overlay-links li:nth-child(4) { animation-delay: 0.20s; opacity: 0; }
  .nav-overlay.nav-overlay-open .nav-overlay-divider { animation-delay: 0.25s; opacity: 0; }
  .nav-overlay.nav-overlay-open .nav-overlay-ctas { animation-delay: 0.30s; opacity: 0; }

  @keyframes navItemFadeUp {
    from {
      opacity: 0;
      transform: translateY(14px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* ── Responsive breakpoints ────────────────────────────────── */

  /* Tablet — tighten spacing */
  @media (max-width: 1024px) {
    .nav-inner {
      padding: 0 1.5rem;
      gap: 1rem;
    }

    .nav-links a {
      padding: 0.4rem 0.5rem;
      font-size: 0.8125rem;
    }
  }

  /* Mobile — hide links & CTAs, show hamburger */
  @media (max-width: 767px) {
    .nav-links,
    .nav-ctas {
      display: none;
    }

    .nav-hamburger {
      display: flex;
    }

    .nav-brand-tagline {
      display: none;
    }

    .nav-brand-name {
      font-size: 0.9375rem;
    }
  }

  /* Very small screens */
  @media (max-width: 380px) {
    .nav-inner {
      padding: 0 1rem;
    }
  }

  /* Prevent body scroll when overlay is open */
  body.nav-no-scroll {
    overflow: hidden;
  }

/* === HERO === */
/* ── Reset & base scoping ─────────────────────────────────── */
.hero-section *,
.hero-section *::before,
.hero-section *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Section shell ────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: #0b0f19;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}

/* ── Canvas particle background ───────────────────────────── */
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ── Radial ambient glow behind content ───────────────────── */
.hero-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(37, 99, 235, 0.14) 0%,
    rgba(124, 58, 237, 0.10) 40%,
    transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ── Container ────────────────────────────────────────────── */
.hero-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  padding: 60px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* ── Entry animation keyframes ────────────────────────────── */
@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.hero-enter {
  opacity: 0;
  animation: hero-fade-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.hero-enter-1 { animation-delay: 0.05s; }
.hero-enter-2 { animation-delay: 0.15s; }
.hero-enter-3 { animation-delay: 0.28s; }
.hero-enter-4 { animation-delay: 0.40s; }
.hero-enter-5 { animation-delay: 0.52s; }
.hero-enter-6 { animation-delay: 0.64s; }
.hero-enter-7 { animation-delay: 0.76s; }
.hero-enter-8 { animation-delay: 0.86s; }

/* ── Eyebrow badge ────────────────────────────────────────── */
.hero-eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #c4b5fd;
  letter-spacing: 0.02em;
  position: relative;
  margin-bottom: 28px;
  background: rgba(124, 58, 237, 0.08);
}

.hero-eyebrow-badge::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  padding: 1px;
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.hero-eyebrow-badge .hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  flex-shrink: 0;
  animation: hero-dot-pulse 2s ease-in-out infinite;
}

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

/* ── Social proof pills ───────────────────────────────────── */
.hero-social-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.hero-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: #cbd5e1;
  white-space: nowrap;
  transition: border-color 0.2s, background 0.2s;
}

.hero-social-pill:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.20);
}

.hero-social-pill .hero-pill-star {
  color: #FBBF24;
  font-size: 13px;
}

.hero-social-pill strong {
  color: #e2e8f0;
  font-weight: 600;
}

/* ── H1 title ─────────────────────────────────────────────── */
.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(38px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.12;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-title-line1 {
  display: block;
  color: #f1f5f9;
}

.hero-typewriter-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.hero-typewriter-text {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-cursor {
  display: inline-block;
  width: 3px;
  height: 1em;
  background: linear-gradient(180deg, #2563EB, #7C3AED);
  border-radius: 2px;
  margin-left: 4px;
  vertical-align: middle;
  animation: hero-blink 1s step-end infinite;
}

@keyframes hero-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* ── Subheadline ──────────────────────────────────────────── */
.hero-subtext {
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.65;
  color: #94a3b8;
  max-width: 680px;
  margin: 0 auto 40px;
}

/* ── CTA row ──────────────────────────────────────────────── */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

/* Primary glow button */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: visible;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.5), 0 0 60px rgba(124, 58, 237, 0.25);
  animation: hero-glow-pulse 3s ease-in-out infinite;
}

@keyframes hero-glow-pulse {
  0%, 100% {
    box-shadow: 0 0 24px rgba(37, 99, 235, 0.5),
                0 0 60px rgba(124, 58, 237, 0.25);
  }
  50% {
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.75),
                0 0 80px rgba(124, 58, 237, 0.45);
  }
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  animation-play-state: paused;
  box-shadow: 0 0 48px rgba(37, 99, 235, 0.85),
              0 0 100px rgba(124, 58, 237, 0.55);
}

.hero-btn-primary:active {
  transform: translateY(0);
}

/* Secondary outline button */
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 12px;
  background: transparent;
  color: #e2e8f0;
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: color 0.2s, background 0.2s;
}

.hero-btn-secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1.5px;
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.hero-btn-secondary svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.hero-btn-primary svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* ── Prompt bar widget ────────────────────────────────────── */
.hero-prompt-wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 24px;
}

.hero-prompt-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 20px 20px 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.hero-prompt-card:focus-within {
  border-color: rgba(37, 99, 235, 0.5);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10),
              0 8px 40px rgba(0, 0, 0, 0.4);
}

.hero-prompt-textarea {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  resize: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #e2e8f0;
  min-height: 64px;
  caret-color: #60a5fa;
}

.hero-prompt-textarea::placeholder {
  color: #475569;
}

.hero-prompt-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.hero-prompt-tools {
  display: flex;
  align-items: center;
  gap: 4px;
}

.hero-tool-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #94a3b8;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.hero-tool-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
}

.hero-tool-btn:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.16);
}

.hero-tool-divider {
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.10);
  margin: 0 4px;
  flex-shrink: 0;
}

.hero-tool-label {
  display: inline;
}

.hero-prompt-submit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.hero-prompt-submit svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}

.hero-prompt-submit:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.hero-prompt-submit:not(:disabled):hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.5);
}

/* ── Suggestion chips ─────────────────────────────────────── */
.hero-suggestions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

.hero-suggestions-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-chips-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #94a3b8;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
}

.hero-chip:hover {
  background: rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.35);
  color: #93c5fd;
  transform: translateY(-1px);
}

.hero-chip svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  opacity: 0.7;
}

/* ── Divider ──────────────────────────────────────────────── */
.hero-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 680px;
  margin: 0 auto 32px;
}

.hero-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
}

.hero-divider-text {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #475569;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── Integration logos row ────────────────────────────────── */
.hero-integrations {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.hero-int-card {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'Inter', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: #94a3b8;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
}

.hero-int-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #cbd5e1;
  transform: translateY(-2px);
}

.hero-int-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* Brand accent colors for icons */
.hero-int-card[data-brand="google"]  .hero-int-icon { background: #fff; color: #4285F4; }
.hero-int-card[data-brand="meta"]    .hero-int-icon { background: #1877F2; color: #fff; }
.hero-int-card[data-brand="shopify"] .hero-int-icon { background: #96BF48; color: #fff; }
.hero-int-card[data-brand="mailchimp"] .hero-int-icon { background: #FFE01B; color: #000; }
.hero-int-card[data-brand="hubspot"] .hero-int-icon { background: #FF7A59; color: #fff; }
.hero-int-card[data-brand="active"]  .hero-int-icon { background: #356AE6; color: #fff; }
.hero-int-card[data-brand="klaviyo"] .hero-int-icon { background: #1A1A1A; color: #6BFF92; border: 1px solid rgba(107,255,146,0.4); }

/* ── Responsive tweaks ────────────────────────────────────── */
@media (max-width: 640px) {
  .hero-container {
    padding: 40px 20px 60px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .hero-cta-row {
    flex-direction: column;
    width: 100%;
  }

  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .hero-prompt-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-prompt-submit {
    width: 100%;
    justify-content: center;
  }

  .hero-tool-label {
    display: none;
  }

  .hero-integrations {
    gap: 8px;
  }
}

/* === SOCIAL PROOF STRIP === */
/* ============================================================
     SOCIAL PROOF STRIP — .strip- namespace
     ============================================================ */

  #social-proof-strip {
    background: linear-gradient(180deg, #0b0f19 0%, #111827 100%);
    padding: 64px 0 56px;
    overflow: hidden;
    position: relative;
  }

  /* ── Stats Row ─────────────────────────────────────────────── */

  .strip-stats-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .strip-stats-row {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 56px;
  }

  .strip-stat-item {
    flex: 1 1 220px;
    min-width: 180px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    position: relative;
  }

  /* Vertical dividers between items (not after the last) */
  .strip-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 48px;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
  }

  .strip-stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
  }

  .strip-stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.4;
    letter-spacing: 0.01em;
  }

  /* ── Logos Strip ────────────────────────────────────────────── */

  .strip-logos-outer {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  /* Fade masks on left and right edges */
  .strip-logos-outer::before,
  .strip-logos-outer::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }

  .strip-logos-outer::before {
    left: 0;
    background: linear-gradient(
      to right,
      #0b0f19 0%,
      rgba(11, 15, 25, 0) 100%
    );
  }

  .strip-logos-outer::after {
    right: 0;
    background: linear-gradient(
      to left,
      #111827 0%,
      rgba(17, 24, 39, 0) 100%
    );
  }

  /* Scrolling track — pause on hover */
  .strip-logos-track {
    display: flex;
    align-items: center;
    gap: 12px;
    width: max-content;
    animation: strip-scroll 30s linear infinite;
    padding: 4px 0;
  }

  .strip-logos-outer:hover .strip-logos-track {
    animation-play-state: paused;
  }

  @keyframes strip-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* Individual logo pill */
  .strip-logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 8px 16px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
    cursor: default;
  }

  .strip-logo-pill:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.2);
  }

  .strip-logo-pill-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .strip-logo-pill-icon svg {
    width: 20px;
    height: 20px;
  }

  .strip-logo-pill-name {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.01em;
  }

  /* ── Responsive ─────────────────────────────────────────────── */

  @media (max-width: 640px) {
    #social-proof-strip {
      padding: 48px 0 44px;
    }

    .strip-stats-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      max-width: 380px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 44px;
    }

    .strip-stat-item {
      max-width: 100%;
      flex: unset;
    }

    /* Remove all after pseudo dividers on mobile; use border-based grid lines */
    .strip-stat-item::after {
      display: none !important;
    }

    /* Top-left cell */
    .strip-stat-item:nth-child(1) {
      border-right: 1px solid rgba(255, 255, 255, 0.1);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Top-right cell */
    .strip-stat-item:nth-child(2) {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Bottom-left cell */
    .strip-stat-item:nth-child(3) {
      border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
  }

/* === TESTIMONIALS === */
/* =============================================
     TESTIMONIALS SECTION — MARKETING OS
     Prefix: .testimonials-
  ============================================= */

  .testimonials-section {
    position: relative;
    background: #0b0f19;
    padding: 120px 24px;
    overflow: hidden;
  }

  /* --- Animated background blobs --- */
  .testimonials-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  .testimonials-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.06;
    animation: testimonials-float linear infinite;
    will-change: transform;
  }

  .testimonials-blob--blue {
    width: 560px;
    height: 560px;
    background: #2563EB;
    top: -120px;
    left: -80px;
    animation-duration: 22s;
    animation-direction: alternate;
  }

  .testimonials-blob--violet {
    width: 480px;
    height: 480px;
    background: #7C3AED;
    bottom: -100px;
    right: -60px;
    animation-duration: 28s;
    animation-direction: alternate-reverse;
  }

  .testimonials-blob--blue2 {
    width: 320px;
    height: 320px;
    background: #2563EB;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 18s;
    animation-direction: alternate;
  }

  @keyframes testimonials-float {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(24px, -18px) scale(1.04); }
    66%  { transform: translate(-16px, 22px) scale(0.97); }
    100% { transform: translate(12px, -8px) scale(1.02); }
  }

  /* --- Dot grid overlay --- */
  .testimonials-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.15) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.45;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }

  /* --- Inner container --- */
  .testimonials-inner {
    position: relative;
    z-index: 1;
    max-width: 1160px;
    margin: 0 auto;
  }

  /* --- Section header --- */
  .testimonials-header {
    text-align: center;
    margin-bottom: 72px;
  }

  .testimonials-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2563EB;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.3);
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
  }

  .testimonials-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
  }

  .testimonials-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 620px;
    margin: 0 auto;
  }

  /* --- Cards grid --- */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
  }

  /* --- Individual card --- */
  .testimonials-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 36px 32px 32px;
    transition:
      border-color 0.35s ease,
      box-shadow 0.35s ease,
      transform 0.35s ease;
    /* Scroll-reveal initial state */
    opacity: 0;
    transform: translateY(32px);
  }

  .testimonials-card.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.6s ease,
      transform 0.6s ease,
      border-color 0.35s ease,
      box-shadow 0.35s ease;
  }

  .testimonials-card:hover {
    border-color: transparent;
    box-shadow:
      0 0 0 1.5px rgba(37, 99, 235, 0.6),
      0 0 0 1.5px rgba(124, 58, 237, 0.4),
      0 20px 48px rgba(0, 0, 0, 0.4),
      0 8px 24px rgba(37, 99, 235, 0.12);
    transform: translateY(-4px);
    background: linear-gradient(#111827, #111827) padding-box,
                linear-gradient(135deg, #2563EB, #7C3AED) border-box;
    border: 1.5px solid transparent;
  }

  /* --- Quote mark --- */
  .testimonials-quote-mark {
    font-family: 'Outfit', sans-serif;
    font-size: 80px;
    line-height: 0.8;
    font-weight: 700;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    user-select: none;
    display: block;
  }

  /* --- Quote text --- */
  .testimonials-quote-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #ffffff;
    flex: 1;
    margin: 0 0 20px;
  }

  /* --- Impact badge --- */
  .testimonials-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
    padding: 5px 12px;
    border-radius: 999px;
    margin-bottom: 24px;
    width: fit-content;
    letter-spacing: 0.02em;
  }

  .testimonials-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    flex-shrink: 0;
  }

  /* --- Divider --- */
  .testimonials-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
  }

  /* --- Author --- */
  .testimonials-author {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .testimonials-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
    letter-spacing: 0.03em;
  }

  .testimonials-author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .testimonials-author-name {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
  }

  .testimonials-author-role {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1;
  }

  /* --- Responsive --- */
  @media (max-width: 900px) {
    .testimonials-grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  @media (max-width: 600px) {
    .testimonials-section {
      padding: 80px 20px;
    }

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

    .testimonials-header {
      margin-bottom: 48px;
    }

    .testimonials-card {
      padding: 28px 24px 24px;
    }
  }

/* === PROBLEM SOLUTION === */
/* ============================================================
     PROBLEM / SOLUTION — .problem- namespace
     ============================================================ */

  /* --- Section shell --- */
  .problem-section {
    position: relative;
    background: #0b0f19;
    overflow: hidden;
    padding: 96px 24px;
  }

  /* --- Tech-grid background --- */
  .problem-grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }

  .problem-grid-bg::before,
  .problem-grid-bg::after {
    content: "";
    position: absolute;
    inset: 0;
  }

  /* Vertical lines */
  .problem-grid-bg::before {
    background-image: repeating-linear-gradient(
      to right,
      rgba(255, 255, 255, 0.06) 0px,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 80px
    );
    background-size: 80px 100%;
    animation: problem-grid-drift-x 24s linear infinite;
  }

  /* Horizontal lines */
  .problem-grid-bg::after {
    background-image: repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.06) 0px,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 80px
    );
    background-size: 100% 80px;
    animation: problem-grid-drift-y 32s linear infinite;
  }

  @keyframes problem-grid-drift-x {
    from { background-position: 0 0; }
    to   { background-position: 80px 0; }
  }
  @keyframes problem-grid-drift-y {
    from { background-position: 0 0; }
    to   { background-position: 0 80px; }
  }

  /* Radial vignette over the grid so it fades at edges */
  .problem-grid-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 50%, transparent 30%, #0b0f19 100%);
    pointer-events: none;
    z-index: 1;
  }

  /* --- Layout container --- */
  .problem-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* --- Section header --- */
  .problem-header {
    text-align: center;
    margin-bottom: 72px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

  .problem-header.problem-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .problem-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #2563EB;
    margin-bottom: 16px;
    padding: 5px 14px;
    border: 1px solid rgba(37, 99, 235, 0.35);
    border-radius: 100px;
    background: rgba(37, 99, 235, 0.08);
  }

  .problem-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    max-width: 760px;
    margin: 0 auto 20px;
    letter-spacing: -0.02em;
  }

  .problem-h2-highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .problem-h2-highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
    border-radius: 2px;
  }

  .problem-subtext {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
  }

  /* --- Two-column layout --- */
  .problem-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }

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

  /* ============================================================
     PART A — Pain Points
     ============================================================ */
  .problem-col-left {
    opacity: 0;
    transform: translateX(-32px);
    transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
  }

  .problem-col-left.problem-visible {
    opacity: 1;
    transform: translateX(0);
  }

  .problem-col-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ef4444;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .problem-col-label::before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: #ef4444;
    border-radius: 2px;
  }

  .problem-col-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.25;
  }

  .problem-pain-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .problem-pain-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.12);
    border-radius: 12px;
    transition: border-color 0.25s, background 0.25s;
  }

  .problem-pain-item:hover {
    border-color: rgba(239, 68, 68, 0.28);
    background: rgba(239, 68, 68, 0.08);
  }

  .problem-pain-dot {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.15);
    border: 1.5px solid rgba(239, 68, 68, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
  }

  .problem-pain-dot svg {
    width: 13px;
    height: 13px;
    color: #ef4444;
    stroke: #ef4444;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .problem-pain-text {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: #cbd5e1;
    line-height: 1.55;
  }

  .problem-pain-text strong {
    color: #f1f5f9;
    font-weight: 600;
    display: block;
    margin-bottom: 3px;
  }

  /* ============================================================
     PART B — Solution Pipeline
     ============================================================ */
  .problem-col-right {
    opacity: 0;
    transform: translateX(32px);
    transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
  }

  .problem-col-right.problem-visible {
    opacity: 1;
    transform: translateX(0);
  }

  .problem-sol-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #2563EB;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .problem-sol-label::before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: #2563EB;
    border-radius: 2px;
  }

  .problem-sol-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(20px, 2.5vw, 26px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 32px;
    line-height: 1.25;
  }

  /* Pipeline wrapper */
  .problem-pipeline {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .problem-pipeline-row {
    display: flex;
    align-items: center;
    gap: 0;
  }

  /* Each step card */
  .problem-step {
    flex: 1;
    position: relative;
    padding: 16px 12px;
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: border-color 0.3s, box-shadow 0.3s;
  }

  .problem-step.problem-step-active {
    border-color: rgba(37, 99, 235, 0.6);
    box-shadow: 0 0 18px rgba(37, 99, 235, 0.25), 0 0 40px rgba(37, 99, 235, 0.08);
  }

  .problem-step-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
  }

  .problem-step.problem-step-active .problem-step-icon {
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.5);
  }

  .problem-step-icon svg {
    width: 18px;
    height: 18px;
    stroke: #94a3b8;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
  }

  .problem-step.problem-step-active .problem-step-icon svg {
    stroke: #60a5fa;
  }

  .problem-step-number {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.05em;
    line-height: 1;
    transition: color 0.3s;
  }

  .problem-step.problem-step-active .problem-step-number {
    color: rgba(96, 165, 250, 0.8);
  }

  .problem-step-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    line-height: 1.2;
    transition: color 0.3s;
  }

  .problem-step.problem-step-active .problem-step-label {
    color: #e2e8f0;
  }

  /* Connector between steps */
  .problem-connector {
    width: 28px;
    flex-shrink: 0;
    height: 2px;
    background: rgba(255,255,255,0.07);
    position: relative;
    overflow: hidden;
    border-radius: 2px;
  }

  .problem-connector-fill {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #2563EB, #7C3AED);
    border-radius: 2px;
    transition: none;
  }

  .problem-connector.problem-connector-lit .problem-connector-fill {
    animation: problem-flow 0.5s ease forwards;
  }

  @keyframes problem-flow {
    from { left: -100%; opacity: 0; }
    to   { left: 0;     opacity: 1; }
  }

  /* Row connector (vertical, between pipeline rows) */
  .problem-row-connector {
    display: flex;
    justify-content: center;
    padding: 0 0;
  }

  .problem-row-connector-line {
    width: 2px;
    height: 20px;
    background: rgba(255,255,255,0.07);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }

  .problem-row-connector-fill {
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #2563EB, #7C3AED);
    border-radius: 2px;
  }

  .problem-row-connector-line.problem-connector-lit .problem-row-connector-fill {
    animation: problem-flow-v 0.4s ease forwards;
  }

  @keyframes problem-flow-v {
    from { top: -100%; opacity: 0; }
    to   { top: 0;     opacity: 1; }
  }

  /* Solution tagline */
  .problem-sol-tagline {
    margin-top: 28px;
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    text-align: center;
  }

  .problem-sol-tagline p {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0;
    line-height: 1.4;
  }

  .problem-sol-tagline span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
    color: #64748b;
    margin-top: 4px;
  }

  /* Mobile adjustments */
  @media (max-width: 640px) {
    .problem-section {
      padding: 72px 20px;
    }

    .problem-connector {
      width: 12px;
    }

    .problem-step {
      padding: 12px 6px;
    }

    .problem-step-label {
      font-size: 10px;
    }

    .problem-step-icon {
      width: 30px;
      height: 30px;
    }

    .problem-step-icon svg {
      width: 14px;
      height: 14px;
    }
  }

/* === FEATURES === */
/* ============================================================
     FEATURES SECTION — .features-* namespace
     ============================================================ */

  .features-section {
    background: #111827;
    padding: 96px 0 112px;
    overflow: hidden;
    position: relative;
  }

  /* subtle radial glow behind the grid */
  .features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
    pointer-events: none;
  }

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

  /* ── Section header ────────────────────────────────────────── */
  .features-header {
    text-align: center;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .features-header.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .features-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2563EB;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.25);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 20px;
  }

  .features-eyebrow::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2563EB;
  }

  .features-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
  }

  .features-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: #94a3b8;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
  }

  /* ── Grid ──────────────────────────────────────────────────── */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  /* Row 1 — hero card full width */
  .features-card--hero {
    grid-column: 1 / -1;
  }

  /* ── Card base ─────────────────────────────────────────────── */
  .features-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    cursor: default;
    /* 3D tilt reset */
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1);
    transition:
      transform 0.12s ease-out,
      border-color 0.25s ease,
      box-shadow 0.25s ease;
    will-change: transform;

    /* scroll-reveal start state */
    opacity: 0;
    translate: 0 32px;
  }

  .features-card.is-visible {
    opacity: 1;
    translate: 0 0;
    transition:
      opacity 0.55s ease,
      translate 0.55s ease,
      transform 0.12s ease-out,
      border-color 0.25s ease,
      box-shadow 0.25s ease;
  }

  .features-card:hover {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow:
      0 0 0 1px rgba(37, 99, 235, 0.12),
      0 8px 32px rgba(37, 99, 235, 0.15),
      0 2px 8px rgba(0, 0, 0, 0.4);
  }

  /* inner shimmer on hover */
  .features-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(37, 99, 235, 0.07) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .features-card:hover::after {
    opacity: 1;
  }

  /* Hero card extra treatment */
  .features-card--hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 48px;
    background: rgba(255, 255, 255, 0.04);
  }

  .features-card--hero .features-card__body {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .features-card--hero .features-card__visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* ── Card inner components ─────────────────────────────────── */
  .features-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .features-card__icon-wrap {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  }

  .features-card__icon-wrap svg {
    width: 22px;
    height: 22px;
    color: #ffffff;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .features-card__number {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(148, 163, 184, 0.45);
  }

  .features-card__headline {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0 0 8px;
    letter-spacing: -0.01em;
  }

  .features-card--hero .features-card__headline {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .features-card__subheadline {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0 0 20px;
  }

  .features-card--hero .features-card__subheadline {
    font-size: 15px;
    margin-bottom: 24px;
  }

  /* Benefits list */
  .features-card__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .features-card__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.5;
  }

  .features-card__benefits li::before {
    content: '';
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    margin-top: 1px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='8' fill='rgba(37,99,235,0.18)'/%3E%3Cpath d='M4.5 8.25L6.75 10.5L11.5 5.5' stroke='%232563EB' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
  }

  /* Microcopy */
  .features-card__microcopy {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-style: italic;
    color: rgba(148, 163, 184, 0.6);
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  /* ── Hero card visual area ─────────────────────────────────── */
  .features-hero-visual {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 4/3;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(124, 58, 237, 0.12) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .features-hero-visual__nodes {
    position: absolute;
    inset: 0;
  }

  .features-hero-visual__node {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2563EB;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.8);
  }

  .features-hero-visual__node:nth-child(1) { top: 20%; left: 15%; width: 10px; height: 10px; background: #7C3AED; box-shadow: 0 0 14px rgba(124,58,237,0.8); }
  .features-hero-visual__node:nth-child(2) { top: 55%; left: 50%; }
  .features-hero-visual__node:nth-child(3) { top: 25%; right: 20%; width: 6px; height: 6px; background: #7C3AED; box-shadow: 0 0 10px rgba(124,58,237,0.8); }
  .features-hero-visual__node:nth-child(4) { bottom: 25%; left: 30%; width: 12px; height: 12px; }
  .features-hero-visual__node:nth-child(5) { bottom: 20%; right: 18%; width: 6px; height: 6px; background: #7C3AED; }
  .features-hero-visual__node:nth-child(6) { top: 70%; left: 70%; width: 8px; height: 8px; }

  .features-hero-visual__lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .features-hero-visual__center-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 32px rgba(37, 99, 235, 0.4), 0 0 64px rgba(124, 58, 237, 0.2);
    z-index: 1;
    animation: features-pulse 2.8s ease-in-out infinite;
  }

  .features-hero-visual__center-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  @keyframes features-pulse {
    0%, 100% { box-shadow: 0 0 24px rgba(37, 99, 235, 0.4), 0 0 48px rgba(124, 58, 237, 0.15); }
    50% { box-shadow: 0 0 40px rgba(37, 99, 235, 0.6), 0 0 80px rgba(124, 58, 237, 0.3); }
  }

  /* ── Responsive ────────────────────────────────────────────── */
  @media (max-width: 900px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .features-card--hero {
      grid-column: 1 / -1;
      grid-template-columns: 1fr;
      padding: 32px;
    }

    .features-card--hero .features-card__visual {
      display: none;
    }
  }

  @media (max-width: 600px) {
    .features-section {
      padding: 64px 0 80px;
    }

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

    .features-card--hero {
      padding: 28px;
    }

    .features-card--hero .features-card__headline {
      font-size: 22px;
    }

    .features-header {
      margin-bottom: 48px;
    }
  }

/* === COMPARISON === */
/* =============================================
     COMPARISON SECTION — MARKETING OS
     Prefix: .compare-
  ============================================= */

  .compare-section {
    position: relative;
    background: #f8fafc;
    padding: 120px 24px 100px;
    overflow: hidden;
  }

  /* Subtle decorative blobs — very light, won't compete with content */
  .compare-bg-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
  }

  .compare-bg-blob--blue {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    top: -160px;
    right: -160px;
  }

  .compare-bg-blob--violet {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    bottom: -120px;
    left: -120px;
  }

  /* ---- Container ---- */
  .compare-container {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
  }

  /* ---- Section header ---- */
  .compare-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .compare-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.18);
    color: #2563EB;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
  }

  .compare-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin: 0 0 16px;
  }

  .compare-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto;
  }

  /* ---- Table wrapper ---- */
  .compare-table-wrap {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
    background: #fff;
  }

  /* ---- Column headers ---- */
  .compare-col-label {
    grid-column: 1;
    grid-row: 1;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    padding: 20px 24px;
    min-height: 80px;
  }

  .compare-col-header-trad {
    grid-column: 2;
    grid-row: 1;
    background: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    border-left: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    text-align: center;
    min-height: 80px;
  }

  .compare-col-header-ai {
    grid-column: 3;
    grid-row: 1;
    background: linear-gradient(135deg, #1d4ed8 0%, #2563EB 45%, #7C3AED 100%);
    border-bottom: 4px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 24px;
    text-align: center;
    min-height: 80px;
    position: relative;
  }

  .compare-col-header-ai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    border-radius: 0;
  }

  .compare-header-title {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 0.02em;
    line-height: 1.3;
  }

  .compare-header-title-ai {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
    line-height: 1.3;
  }

  .compare-badge-recommended {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.28);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 100px;
    margin-top: 6px;
  }

  /* ---- Row label column ---- */
  .compare-row-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.825rem;
    font-weight: 700;
    color: #0f172a;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    background: #fff;
    transition: background 0.2s ease;
    letter-spacing: 0.01em;
  }

  /* ---- Row cells ---- */
  .compare-cell-trad,
  .compare-cell-ai {
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid #f1f5f9;
    border-left: 1px solid #f1f5f9;
    transition: background 0.2s ease;
  }

  /* Alternating row backgrounds */
  .compare-row-even .compare-row-label,
  .compare-row-even .compare-cell-trad,
  .compare-row-even .compare-cell-ai {
    background: #fafbfc;
  }

  .compare-row-odd .compare-row-label,
  .compare-row-odd .compare-cell-trad,
  .compare-row-odd .compare-cell-ai {
    background: #fff;
  }

  /* Hover highlight — target all 3 cells in a row via JS class */
  .compare-row-hover .compare-row-label,
  .compare-row-hover .compare-cell-trad,
  .compare-row-hover .compare-cell-ai {
    background: #f0f4ff !important;
  }

  /* Last row — no bottom border */
  .compare-row-last .compare-row-label,
  .compare-row-last .compare-cell-trad,
  .compare-row-last .compare-cell-ai {
    border-bottom: none;
  }

  /* ---- Cell icon ---- */
  .compare-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 800;
    margin-top: 1px;
  }

  .compare-icon--negative {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
  }

  .compare-icon--positive {
    background: rgba(37, 99, 235, 0.12);
    color: #2563EB;
  }

  /* ---- Cell text ---- */
  .compare-cell-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.825rem;
    line-height: 1.55;
  }

  .compare-cell-trad .compare-cell-text {
    color: #64748b;
  }

  .compare-cell-ai .compare-cell-text {
    color: #1e3a8a;
    font-weight: 500;
  }

  /* AI column accent border */
  .compare-cell-ai {
    border-left: 1px solid rgba(37, 99, 235, 0.12);
  }

  .compare-col-header-ai,
  .compare-cell-ai {
    position: relative;
  }

  /* ---- Animation states ---- */
  .compare-row-label,
  .compare-cell-trad,
  .compare-cell-ai {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease, background 0.2s ease;
  }

  .compare-row-label.is-visible,
  .compare-cell-trad.is-visible,
  .compare-cell-ai.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* Header cells always visible */
  .compare-col-label,
  .compare-col-header-trad,
  .compare-col-header-ai {
    opacity: 1;
    transform: none;
  }

  /* ---- CTA block ---- */
  .compare-cta-block {
    margin-top: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease 0.6s, transform 0.45s ease 0.6s;
  }

  .compare-cta-block.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .compare-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    letter-spacing: 0.01em;
  }

  .compare-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(37, 99, 235, 0.45);
  }

  .compare-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
  }

  .compare-cta-btn svg {
    transition: transform 0.2s ease;
  }

  .compare-cta-btn:hover svg {
    transform: translateX(3px);
  }

  .compare-cta-note {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: #94a3b8;
    letter-spacing: 0.01em;
  }

  /* ---- MOBILE — stack into 2 cards ---- */
  @media (max-width: 680px) {
    .compare-section {
      padding: 80px 16px 72px;
    }

    .compare-table-wrap {
      display: flex;
      flex-direction: column;
      gap: 20px;
      background: transparent;
      box-shadow: none;
      overflow: visible;
      border-radius: 0;
    }

    .compare-col-label,
    .compare-col-header-trad,
    .compare-col-header-ai,
    .compare-row-label,
    .compare-cell-trad,
    .compare-cell-ai {
      display: none; /* hide individual grid cells — replaced by cards */
    }

    /* Mobile cards */
    .compare-mobile-card {
      display: block;
      border-radius: 14px;
      overflow: hidden;
      box-shadow: 0 1px 4px rgba(0,0,0,0.06), 0 6px 20px rgba(0,0,0,0.08);
    }

    .compare-mobile-card-header {
      padding: 18px 20px;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
    }

    .compare-mobile-card--trad .compare-mobile-card-header {
      background: #f1f5f9;
      color: #475569;
      border-bottom: 1px solid #e2e8f0;
    }

    .compare-mobile-card--ai .compare-mobile-card-header {
      background: linear-gradient(135deg, #1d4ed8 0%, #2563EB 45%, #7C3AED 100%);
      color: #fff;
      border-top: 4px solid rgba(255,255,255,0.25);
    }

    .compare-mobile-card-header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .compare-mobile-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px 20px;
      border-bottom: 1px solid #f1f5f9;
    }

    .compare-mobile-row:last-child {
      border-bottom: none;
    }

    .compare-mobile-card--trad .compare-mobile-row {
      background: #fff;
    }

    .compare-mobile-card--trad .compare-mobile-row:nth-child(even) {
      background: #fafbfc;
    }

    .compare-mobile-card--ai .compare-mobile-row {
      background: #fff;
    }

    .compare-mobile-card--ai .compare-mobile-row:nth-child(even) {
      background: #f8faff;
    }

    .compare-mobile-row-label {
      font-family: 'Inter', sans-serif;
      font-size: 0.75rem;
      font-weight: 700;
      color: #0f172a;
      min-width: 90px;
      padding-top: 1px;
    }

    .compare-mobile-row-content {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      flex: 1;
    }

    .compare-mobile-row-text {
      font-family: 'Inter', sans-serif;
      font-size: 0.8rem;
      line-height: 1.5;
    }

    .compare-mobile-card--trad .compare-mobile-row-text {
      color: #64748b;
    }

    .compare-mobile-card--ai .compare-mobile-row-text {
      color: #1e3a8a;
      font-weight: 500;
    }
  }

  @media (min-width: 681px) {
    .compare-mobile-card {
      display: none;
    }
  }

/* === EXTENDED TESTIMONIALS === */
/* =============================================
     Extended Testimonials — .ext-test- namespace
     ============================================= */

  .ext-test-section {
    position: relative;
    background-color: #111827;
    padding: 100px 24px 112px;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
  }

  /* --- Background blobs --- */
  .ext-test-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
  }

  .ext-test-blob--1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.14) 0%, transparent 70%);
    top: -160px;
    left: -140px;
    animation: ext-test-blob-drift-1 10s ease-in-out infinite alternate;
  }

  .ext-test-blob--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    bottom: -100px;
    right: -120px;
    animation: ext-test-blob-drift-2 12s ease-in-out infinite alternate;
  }

  .ext-test-blob--3 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    top: 40%;
    left: 55%;
    animation: ext-test-blob-drift-3 9s ease-in-out infinite alternate;
  }

  @keyframes ext-test-blob-drift-1 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 40px) scale(1.08); }
  }

  @keyframes ext-test-blob-drift-2 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-25px, -35px) scale(1.06); }
  }

  @keyframes ext-test-blob-drift-3 {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(20px, -28px) scale(1.05); }
  }

  /* --- Layout container --- */
  .ext-test-container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
  }

  /* --- Section header --- */
  .ext-test-header {
    text-align: center;
    margin-bottom: 64px;
  }

  .ext-test-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #7C3AED;
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 100px;
    background: rgba(124, 58, 237, 0.08);
  }

  .ext-test-h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .ext-test-h2 span {
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* --- Featured testimonial card --- */
  .ext-test-featured {
    max-width: 800px;
    margin: 0 auto 56px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 48px 52px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
      0 0 0 1px rgba(37, 99, 235, 0.08),
      0 24px 60px rgba(0, 0, 0, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .ext-test-featured.ext-test-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .ext-test-quote-mark {
    font-family: 'Outfit', sans-serif;
    font-size: 96px;
    line-height: 0.6;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 20px;
    user-select: none;
  }

  .ext-test-featured-text {
    font-size: 19px;
    line-height: 1.7;
    color: #e2e8f0;
    font-style: italic;
    margin: 0 0 36px;
  }

  .ext-test-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
  }

  .ext-test-star {
    color: #F59E0B;
    font-size: 18px;
    line-height: 1;
  }

  .ext-test-author {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .ext-test-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
  }

  .ext-test-avatar--sofia {
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  }

  .ext-test-avatar--daniel {
    background: linear-gradient(135deg, #7C3AED 0%, #2563EB 100%);
  }

  .ext-test-avatar--carla {
    background: linear-gradient(135deg, #059669 0%, #2563EB 100%);
  }

  .ext-test-avatar--miguel {
    background: linear-gradient(135deg, #DC2626 0%, #7C3AED 100%);
  }

  .ext-test-avatar--ana {
    background: linear-gradient(135deg, #D97706 0%, #2563EB 100%);
  }

  .ext-test-avatar--ricardo {
    background: linear-gradient(135deg, #0891B2 0%, #7C3AED 100%);
  }

  .ext-test-author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .ext-test-author-name {
    font-weight: 700;
    font-size: 15px;
    color: #ffffff;
  }

  .ext-test-author-role {
    font-size: 13px;
    color: #94a3b8;
  }

  /* --- Grid of smaller cards --- */
  .ext-test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
  }

  .ext-test-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 28px 28px 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease,
      border-color 0.3s ease;
    cursor: default;
    opacity: 0;
    transform: translateY(24px);
    /* transition already set above — visibility transition added via .ext-test-visible */
  }

  .ext-test-card.ext-test-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .ext-test-card:hover {
    transform: translateY(-5px);
    box-shadow:
      0 0 0 1px rgba(124, 58, 237, 0.35),
      0 20px 48px rgba(0, 0, 0, 0.45);
    border-color: rgba(124, 58, 237, 0.3);
  }

  .ext-test-card-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
  }

  .ext-test-card-star {
    color: #F59E0B;
    font-size: 14px;
    line-height: 1;
  }

  .ext-test-card-text {
    font-size: 14px;
    line-height: 1.65;
    color: #cbd5e1;
    font-style: italic;
    margin: 0 0 24px;
  }

  .ext-test-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .ext-test-card-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
  }

  .ext-test-card-author-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }

  .ext-test-card-name {
    font-weight: 700;
    font-size: 13px;
    color: #ffffff;
  }

  .ext-test-card-role {
    font-size: 12px;
    color: #94a3b8;
  }

  /* --- Trust badges row --- */
  .ext-test-trust {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

  .ext-test-trust.ext-test-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .ext-test-trust-label {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
    letter-spacing: 0.03em;
  }

  .ext-test-trust-badges {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ext-test-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
  }

  .ext-test-trust-badge-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
  }

  .ext-test-trust-badge-icon--g2 {
    background: linear-gradient(135deg, #FF492C, #FF8C00);
    color: #ffffff;
  }

  .ext-test-trust-badge-icon--capterra {
    background: linear-gradient(135deg, #FF6B00, #FF9500);
    color: #ffffff;
  }

  .ext-test-trust-count {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
  }

  /* --- Divider dot --- */
  .ext-test-trust-divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
  }

  /* --- Responsive --- */
  @media (max-width: 900px) {
    .ext-test-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 640px) {
    .ext-test-section {
      padding: 72px 16px 88px;
    }

    .ext-test-featured {
      padding: 32px 24px;
    }

    .ext-test-featured-text {
      font-size: 16px;
    }

    .ext-test-quote-mark {
      font-size: 72px;
    }

    .ext-test-grid {
      grid-template-columns: 1fr;
    }

    .ext-test-trust-badges {
      gap: 12px;
    }
  }

/* === FAQ === */
/* ===== FAQ SECTION ===== */
  .faq-section {
    background: #f8fafc;
    padding: 96px 24px;
  }

  .faq-container {
    max-width: 720px;
    margin: 0 auto;
  }

  /* Header */
  .faq-header {
    text-align: center;
    margin-bottom: 56px;
  }

  .faq-eyebrow {
    display: inline-block;
    background: #eff6ff;
    color: #2563EB;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid #bfdbfe;
    margin-bottom: 20px;
  }

  .faq-heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px;
    line-height: 1.2;
  }

  .faq-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
  }

  /* Search */
  .faq-search-wrapper {
    position: relative;
    margin-bottom: 32px;
  }

  .faq-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    display: flex;
    align-items: center;
  }

  .faq-search {
    width: 100%;
    box-sizing: border-box;
    padding: 14px 16px 14px 44px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #0f172a;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .faq-search::placeholder {
    color: #94a3b8;
  }

  .faq-search:focus {
    border-color: #2563EB;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  }

  /* Accordion */
  .faq-accordion {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .faq-item[aria-hidden="true"] {
    display: none;
  }

  .faq-item:hover:not(.faq-item--open) {
    background: #f1f5f9;
  }

  .faq-item--open {
    border-left: 3px solid #2563EB;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.08);
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    gap: 16px;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
  }

  .faq-question-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    transition: color 0.2s;
    line-height: 1.5;
  }

  .faq-item--open .faq-question-text {
    color: #2563EB;
  }

  .faq-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: transform 0.3s ease, color 0.2s;
  }

  .faq-item--open .faq-icon {
    transform: rotate(180deg);
    color: #2563EB;
  }

  .faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .faq-item--open .faq-answer-wrapper {
    max-height: 500px;
  }

  .faq-answer {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    padding: 0 24px 20px;
  }

  /* No results */
  .faq-no-results {
    display: none;
    text-align: center;
    padding: 40px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #94a3b8;
  }

  /* CTA Card */
  .faq-cta-card {
    margin-top: 48px;
    background: #ffffff;
    border: 1px solid #bfdbfe;
    border-radius: 16px;
    padding: 36px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .faq-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2563EB, #7C3AED);
  }

  .faq-cta-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
  }

  .faq-cta-sub {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #64748b;
    margin: 0 0 24px;
  }

  .faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #2563EB;
    background: transparent;
    border: 2px solid #2563EB;
    border-radius: 10px;
    padding: 12px 24px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.15s, box-shadow 0.2s;
  }

  .faq-cta-btn:hover {
    background: #2563EB;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
  }

  .faq-cta-btn:active {
    transform: translateY(0);
  }

  /* Responsive */
  @media (max-width: 600px) {
    .faq-section {
      padding: 72px 16px;
    }

    .faq-question {
      padding: 18px 20px;
    }

    .faq-answer {
      padding: 0 20px 18px;
    }

    .faq-cta-card {
      padding: 28px 20px;
    }
  }

/* === CTA FINAL === */
/* ── Scoped reset ───────────────────────────────────────────── */
  .cta-final-section *,
  .cta-final-section *::before,
  .cta-final-section *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  /* ── Section shell ──────────────────────────────────────────── */
  .cta-final-section {
    position: relative;
    width: 100%;
    padding: 120px 2rem;
    background-color: #0b0f19;
    overflow: hidden;
    isolation: isolate;
  }

  /* ── Aurora blobs ───────────────────────────────────────────── */
  /* Each blob is a pseudo-element of a dedicated div so we avoid
     stacking-context conflicts with the content layer. */
  .cta-final-aurora {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }

  .cta-final-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    will-change: transform, opacity;
  }

  /* Blob 1 — large blue, top-left quadrant */
  .cta-final-blob--1 {
    width: 680px;
    height: 480px;
    top: -120px;
    left: -160px;
    background: radial-gradient(ellipse at center, rgba(37,99,235,0.45) 0%, transparent 70%);
    animation: cta-final-drift1 14s ease-in-out infinite alternate;
  }

  /* Blob 2 — violet, top-right */
  .cta-final-blob--2 {
    width: 560px;
    height: 560px;
    top: -80px;
    right: -120px;
    background: radial-gradient(ellipse at center, rgba(124,58,237,0.40) 0%, transparent 70%);
    animation: cta-final-drift2 11s ease-in-out infinite alternate;
  }

  /* Blob 3 — deep blue, bottom-center */
  .cta-final-blob--3 {
    width: 720px;
    height: 380px;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, rgba(37,99,235,0.30) 0%, transparent 70%);
    animation: cta-final-drift3 15s ease-in-out infinite alternate;
  }

  /* Blob 4 — violet accent, bottom-left */
  .cta-final-blob--4 {
    width: 420px;
    height: 340px;
    bottom: -60px;
    left: 5%;
    background: radial-gradient(ellipse at center, rgba(124,58,237,0.28) 0%, transparent 70%);
    animation: cta-final-drift4 12s ease-in-out infinite alternate;
  }

  @keyframes cta-final-drift1 {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.75; }
    50%  { transform: translate(40px, 30px) scale(1.08); opacity: 1; }
    100% { transform: translate(-20px, 50px) scale(0.95); opacity: 0.7; }
  }

  @keyframes cta-final-drift2 {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50%  { transform: translate(-50px, 20px) scale(1.06); opacity: 1; }
    100% { transform: translate(20px, 40px) scale(0.92); opacity: 0.65; }
  }

  @keyframes cta-final-drift3 {
    0%   { transform: translateX(-50%) scale(1); opacity: 0.6; }
    50%  { transform: translateX(-52%) scale(1.1); opacity: 0.9; }
    100% { transform: translateX(-48%) scale(0.95); opacity: 0.55; }
  }

  @keyframes cta-final-drift4 {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.55; }
    50%  { transform: translate(30px, -20px) scale(1.12); opacity: 0.85; }
    100% { transform: translate(-10px, 30px) scale(0.9); opacity: 0.5; }
  }

  /* ── Grain / noise overlay ──────────────────────────────────── */
  /* SVG fractalNoise rendered into a pseudo-element at low opacity */
  .cta-final-section::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.038;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 200px 200px;
  }

  /* ── Content wrapper ────────────────────────────────────────── */
  .cta-final-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  /* ── Eyebrow ────────────────────────────────────────────────── */
  .cta-final-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(248,250,252,0.55);
    margin-bottom: 1.25rem;
    padding: 0.375rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
  }

  .cta-final-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    flex-shrink: 0;
    animation: cta-final-pulse-dot 2.4s ease-in-out infinite;
  }

  @keyframes cta-final-pulse-dot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(124,58,237,0.5); }
    50%       { box-shadow: 0 0 0 5px rgba(124,58,237,0); }
  }

  /* ── Headline ───────────────────────────────────────────────── */
  .cta-final-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.125rem, 5.5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #f8fafc;
    margin-bottom: 1.375rem;
  }

  /* Gradient accent on last word cluster */
  .cta-final-headline-accent {
    background: linear-gradient(90deg, #60a5fa 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* ── Subheadline ────────────────────────────────────────────── */
  .cta-final-sub {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(248,250,252,0.68);
    margin-bottom: 2.5rem;
    max-width: 580px;
  }

  /* ── CTA row ────────────────────────────────────────────────── */
  .cta-final-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  /* PRIMARY — Glow button (blue/violet gradient fill) */
  .cta-final-btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    box-shadow:
      0 0 18px rgba(37, 99, 235, 0.55),
      0 0 36px rgba(124, 58, 237, 0.30);
    animation: cta-final-glow-pulse 3s ease-in-out infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    white-space: nowrap;
  }

  /* Shimmer layer */
  .cta-final-btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      105deg,
      transparent 35%,
      rgba(255,255,255,0.18) 50%,
      transparent 65%
    );
    background-size: 250% 100%;
    background-position: -100% 0;
    transition: background-position 0.5s ease;
    border-radius: inherit;
  }

  .cta-final-btn-primary:hover::before {
    background-position: 200% 0;
  }

  .cta-final-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
      0 0 28px rgba(37, 99, 235, 0.75),
      0 0 56px rgba(124, 58, 237, 0.45),
      0 8px 24px rgba(0,0,0,0.4);
  }

  .cta-final-btn-primary:active {
    transform: translateY(0);
  }

  @keyframes cta-final-glow-pulse {
    0%, 100% {
      box-shadow:
        0 0 18px rgba(37, 99, 235, 0.55),
        0 0 36px rgba(124, 58, 237, 0.30);
    }
    50% {
      box-shadow:
        0 0 30px rgba(37, 99, 235, 0.80),
        0 0 60px rgba(124, 58, 237, 0.50);
    }
  }

  .cta-final-btn-primary svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }

  .cta-final-btn-primary:hover svg {
    transform: translateX(3px);
  }

  /* SECONDARY — Gradient border button */
  .cta-final-btn-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #f8fafc;
    text-decoration: none;
    background: rgba(11, 15, 25, 0.6);
    border: none;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
    /* We paint the gradient border via a pseudo element */
    isolation: isolate;
  }

  .cta-final-btn-secondary::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
    background-size: 200% 200%;
    animation: cta-final-border-shift 4s ease alternate infinite;
    z-index: -1;
  }

  .cta-final-btn-secondary::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    background: #0b0f19;
    z-index: -1;
  }

  @keyframes cta-final-border-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }

  .cta-final-btn-secondary:hover {
    background: rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
  }

  .cta-final-btn-secondary:active {
    transform: translateY(0);
  }

  /* ── Trust microcopy ────────────────────────────────────────── */
  .cta-final-trust {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(248,250,252,0.38);
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.25rem 0.75rem;
  }

  .cta-final-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
  }

  .cta-final-trust-check {
    color: #34d399;
    font-style: normal;
    flex-shrink: 0;
  }

  .cta-final-trust-sep {
    color: rgba(248,250,252,0.18);
    user-select: none;
  }

  /* ── Responsive ─────────────────────────────────────────────── */
  @media (max-width: 640px) {
    .cta-final-section {
      padding: 80px 1.25rem;
    }

    .cta-final-headline {
      font-size: 2.125rem;
    }

    .cta-final-sub {
      font-size: 1rem;
    }

    .cta-final-buttons {
      flex-direction: column;
      width: 100%;
    }

    .cta-final-btn-primary,
    .cta-final-btn-secondary {
      width: 100%;
      max-width: 320px;
      justify-content: center;
    }

    .cta-final-blob--1 { width: 380px; height: 280px; }
    .cta-final-blob--2 { width: 320px; height: 320px; }
    .cta-final-blob--3 { width: 400px; height: 240px; }
    .cta-final-blob--4 { width: 260px; height: 220px; }
  }

/* === FOOTER === */
/* ===== FOOTER ===== */
  .footer-root {
    background: #0d1117;
    color: #64748b;
    font-family: 'Inter', sans-serif;
    padding: 72px 0 0;
  }

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

  /* ── Top grid ── */
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }

  /* ── Brand column ── */
  .footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 16px;
  }

  .footer-brand-logo svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .footer-brand-name {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
  }

  .footer-brand-tagline-logo {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #64748b;
    line-height: 1;
    margin-top: 2px;
  }

  .footer-brand-desc {
    font-size: 14px;
    line-height: 1.65;
    color: #64748b;
    margin-bottom: 24px;
  }

  /* Social icons */
  .footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
  }

  .footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
  }

  .footer-social-link:hover {
    color: #2563EB;
    background: rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.35);
  }

  .footer-social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  /* Newsletter */
  .footer-newsletter-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
  }

  .footer-newsletter-form {
    display: flex;
    gap: 8px;
  }

  .footer-newsletter-input {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 9px 14px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }

  .footer-newsletter-input::placeholder {
    color: #475569;
  }

  .footer-newsletter-input:focus {
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
  }

  .footer-newsletter-btn {
    flex-shrink: 0;
    padding: 9px 16px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
  }

  .footer-newsletter-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
  }

  .footer-newsletter-btn:active {
    transform: translateY(0);
    opacity: 1;
  }

  /* ── Nav columns ── */
  .footer-nav-heading {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 20px;
  }

  .footer-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-nav-list a {
    font-size: 14px;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-nav-list a:hover {
    color: #fff;
  }

  /* ── Divider ── */
  .footer-divider {
    height: 1px;
    background: linear-gradient(to right, #2563EB, #7C3AED);
    margin: 56px 0 0;
    opacity: 0.5;
  }

  /* ── Bottom bar ── */
  .footer-bottom {
    padding: 20px 0 28px;
  }

  .footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }

  .footer-copyright {
    font-size: 13px;
    color: #475569;
  }

  .footer-legal-links {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .footer-legal-links a {
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-legal-links a:hover {
    color: #2563EB;
  }

  .footer-legal-sep {
    color: #334155;
    font-size: 13px;
    padding: 0 4px;
    user-select: none;
  }

  /* ── Feedback message ── */
  .footer-newsletter-msg {
    margin-top: 8px;
    font-size: 12px;
    min-height: 16px;
    transition: opacity 0.3s;
  }

  .footer-newsletter-msg.success { color: #34d399; }
  .footer-newsletter-msg.error   { color: #f87171; }

  /* ── Responsive ── */
  @media (max-width: 900px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
  }

  @media (max-width: 560px) {
    .footer-root {
      padding-top: 48px;
    }

    .footer-grid {
      grid-template-columns: 1fr;
      gap: 36px;
    }

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

    .footer-newsletter-form {
      flex-direction: column;
    }

    .footer-newsletter-btn {
      width: 100%;
    }
  }


/* === SCROLL PROGRESS BAR === */
#mkt-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #2563EB 0%, #7C3AED 100%);
  z-index: 9999;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* === LANGUAGE TOGGLE === */
.nav-lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 5px 10px;
  cursor: pointer;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #94a3b8;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.nav-lang-toggle:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.22);
}
.nav-lang-opt {
  color: #64748b;
  transition: color 0.2s;
}
.nav-lang-opt.nav-lang-active {
  color: #2563EB;
}
.nav-lang-sep {
  color: rgba(255,255,255,0.2);
  font-weight: 400;
}
.nav-lang-toggle--mobile {
  width: 100%;
  justify-content: center;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 10px;
  margin-bottom: 4px;
}


/* =============================================
   PRICING SECTION -- MARKETING OS
   Prefix: .pricing-
   ============================================= */

.pricing-section {
  position: relative;
  background: #0b0f19;
  padding: 112px 0 96px;
  overflow: hidden;
}

/* -- Background decorative glows -- */
.pricing-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pricing-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.pricing-bg-glow--blue {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.18) 0%, transparent 70%);
  top: -180px;
  left: -120px;
  animation: pricing-drift-blue 18s ease-in-out infinite alternate;
}

.pricing-bg-glow--violet {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.14) 0%, transparent 70%);
  bottom: -160px;
  right: -100px;
  animation: pricing-drift-violet 22s ease-in-out infinite alternate;
}

@keyframes pricing-drift-blue {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.12); }
}

@keyframes pricing-drift-violet {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-50px, -40px) scale(1.1); }
}

/* -- Container -- */
.pricing-container {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* -- Section header -- */
.pricing-header {
  text-align: center;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.pricing-header.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2563EB;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.28);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 22px;
}

.pricing-eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2563EB;
  animation: pricing-dot-pulse 2.4s ease-in-out infinite;
}

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

.pricing-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  color: #f8fafc;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin: 0 0 18px;
}

.pricing-h2-accent {
  background: linear-gradient(90deg, #2563EB 0%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  color: #94a3b8;
  line-height: 1.65;
  max-width: 480px;
  margin: 0 auto 36px;
}

/* -- Toggle -- */
.pricing-toggle-wrap {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 4px;
}

.pricing-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #94a3b8;
  background: transparent;
  border: none;
  border-radius: 100px;
  padding: 8px 20px;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

.pricing-toggle-btn--active {
  color: #f8fafc;
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
}

.pricing-toggle-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #16a34a;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 100px;
  padding: 2px 7px;
  letter-spacing: 0.04em;
}

/* -- Cards grid -- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 40px;
}

/* -- Card base -- */
.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s ease;
  opacity: 0;
  transform: translateY(36px);
}

.pricing-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.pricing-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
}

.pricing-card[data-stagger="0"].is-visible { transition-delay: 0ms; }
.pricing-card[data-stagger="1"].is-visible { transition-delay: 120ms; }
.pricing-card[data-stagger="2"].is-visible { transition-delay: 240ms; }

/* -- Featured card (Pro) -- */
.pricing-card--featured {
  border-color: transparent;
  background: rgba(17, 24, 39, 0.95);
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.5),
    0 0 40px rgba(37, 99, 235, 0.12),
    0 0 80px rgba(124, 58, 237, 0.08);
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.8) 0%, rgba(124, 58, 237, 0.8) 100%);
  z-index: -1;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.pricing-card--featured:hover::before {
  opacity: 1;
}

.pricing-card--featured:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(37, 99, 235, 0.7),
    0 30px 60px rgba(37, 99, 235, 0.2),
    0 0 100px rgba(124, 58, 237, 0.12);
}

/* "Mais popular" badge */
.pricing-card__popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  border-radius: 100px;
  padding: 5px 16px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

/* -- Card header -- */
.pricing-card__header {
  margin-bottom: 24px;
}

.pricing-card__plan-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.pricing-card__plan-badge--starter {
  color: #94a3b8;
  background: rgba(148, 163, 184, 0.1);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.pricing-card__plan-badge--pro {
  color: #60a5fa;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
}

.pricing-card__plan-badge--agency {
  color: #c084fc;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.25);
}

.pricing-card__plan-name {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.4;
  margin: 0 0 20px;
}

/* Price display */
.pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 6px;
}

.pricing-card__currency {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #94a3b8;
  line-height: 1;
  align-self: flex-start;
  margin-top: 6px;
}

.pricing-card__amount {
  font-family: 'Outfit', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.03em;
  line-height: 1;
  transition: all 0.3s ease;
}

.pricing-card--featured .pricing-card__amount {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-card__period {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  margin-left: 2px;
  padding-bottom: 6px;
}

.pricing-card__billing-note {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #475569;
  line-height: 1.4;
  min-height: 18px;
  transition: opacity 0.2s ease;
}

/* -- CTA button -- */
.pricing-card__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  padding: 13px 20px;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease,
    box-shadow 0.2s ease;
  margin-bottom: 24px;
}

.pricing-card__cta:active {
  transform: scale(0.97);
}

.pricing-card__cta--primary {
  color: #fff;
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  border: 1px solid transparent;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
}

.pricing-card__cta--primary:hover {
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.5);
  transform: translateY(-1px);
}

.pricing-card__cta--ghost {
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card__cta--ghost:hover {
  color: #f8fafc;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

/* -- Divider -- */
.pricing-card__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin-bottom: 24px;
}

.pricing-card--featured .pricing-card__divider {
  background: rgba(255, 255, 255, 0.12);
}

/* -- Features list -- */
.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  line-height: 1.5;
}

.pricing-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-top: 1px;
}

.pricing-feature__icon svg {
  width: 14px;
  height: 14px;
}

.pricing-feature--yes {
  color: #cbd5e1;
}

.pricing-feature--yes .pricing-feature__icon {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.pricing-feature--no {
  color: #475569;
}

.pricing-feature--no .pricing-feature__icon {
  background: rgba(255, 255, 255, 0.05);
  color: #4b5563;
}

.pricing-card--featured .pricing-feature--yes {
  color: #e2e8f0;
}

.pricing-card--featured .pricing-feature--yes .pricing-feature__icon {
  background: rgba(37, 99, 235, 0.15);
  color: #60a5fa;
}

/* -- Guarantee strip -- */
.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #64748b;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.4s, transform 0.6s ease 0.4s;
}

.pricing-guarantee.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.pricing-guarantee__item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.pricing-guarantee__icon {
  width: 14px;
  height: 14px;
  color: #22c55e;
  flex-shrink: 0;
}

.pricing-guarantee__sep {
  color: #334155;
  font-size: 16px;
  line-height: 1;
}

/* -- Price flip animation -- */
@keyframes pricing-flip-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.pricing-card__amount.is-flipping {
  animation: pricing-flip-in 0.25s ease forwards;
}

/* -- Responsive -- */
@media (max-width: 1024px) {
  .pricing-grid {
    gap: 16px;
  }

  .pricing-card {
    padding: 28px 22px 24px;
  }

  .pricing-card__amount {
    font-size: 46px;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 80px 0 72px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card--featured {
    order: -1;
  }

  .pricing-h2 {
    font-size: clamp(28px, 7vw, 40px);
  }
}

@media (max-width: 480px) {
  .pricing-toggle-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-bg-glow,
  .pricing-eyebrow-dot {
    animation: none;
  }

  .pricing-header,
  .pricing-card,
  .pricing-guarantee {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}


/* ── Pricing featured card: gradient border fix (mask technique) ── */
.pricing-card--featured {
  border: none;
  background: #111827;
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.75;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.pricing-card--featured:hover::before {
  opacity: 1;
}
