/* ============================================================
   VideoRep — Main Stylesheet
   Font: Plus Jakarta Sans (400 500 700 800 only)
   Mobile-first, CSS custom properties for all colors
   ============================================================ */

/* ------------------------------------------------------------
   1. CSS Custom Properties
   ------------------------------------------------------------ */
:root {
  /* Brand */
  --brand: #1e71e7;
  --brand-hover: #1555b8;
  --brand-light: #f0f7ff;
  --brand-dark: #0f3d7f;
  --brand-text: #1a65cc;

  /* Backgrounds */
  --bg-primary: #fafbfc;
  --bg-white: #FFFFFF;
  --bg-dark: #1A202C;
  --bg-dark-card: #252d3d;
  --bg-dark-border: rgba(255, 255, 255, 0.08);

  /* Text */
  --text-primary: #1A202C;
  --text-secondary: #4A5568;
  --text-muted: #6B7280;
  --text-white: #FFFFFF;
  --text-white-muted: rgba(255, 255, 255, 0.75);

  /* Status */
  --success: #059669;
  --success-text: #047857;
  --success-light: #F0FDF4;
  --warning: #D97706;
  --warning-light: #FFFBEB;
  --danger: #DC2626;
  --danger-light: #FEF2F2;
  --star: #f59e0b;

  /* Borders */
  --border: #E2E8F0;
  --border-dark: rgba(255, 255, 255, 0.1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
  --shadow-btn: 0 1px 3px rgba(30, 113, 231, 0.2), 0 1px 2px rgba(30, 113, 231, 0.12);
  --shadow-nav: 0 1px 3px rgba(0, 0, 0, 0.06);

  /* Border Radius */
  --r-sm: 8px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-pill: 999px;

  /* Spacing */
  --section-padding: 100px;
  --section-padding-mobile: 60px;
  --container-max: 1200px;
  --container-padding: 40px;
  --container-padding-mobile: 20px;
  --gap-card: 24px;

  /* Z-Index */
  --z-base: 1;
  --z-card: 10;
  --z-sticky: 100;
  --z-nav: 1000;
  --z-modal: 2000;
  --z-toast: 3000;

  /* Font Family */
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Font Sizes (clamp for fluid scaling) */
  --fs-h1: clamp(36px, 5vw, 56px);
  --fs-h2: clamp(28px, 4vw, 40px);
  --fs-h3: clamp(20px, 3vw, 24px);
  --fs-h4: 20px;
  --fs-body: clamp(16px, 2vw, 18px);
  --fs-small: 14px;
  --fs-eyebrow: 12px;
  --fs-nav: 15px;
  --fs-btn: 16px;

  /* Font Weights — 400 500 700 800 ONLY */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-extra-bold: 800;

  /* Line Heights */
  --lh-tight: 1.15;
  --lh-heading: 1.2;
  --lh-normal: 1.5;
  --lh-relaxed: 1.7;

  /* Letter Spacing */
  --ls-tight: -0.02em;
  --ls-normal: 0;
  --ls-relaxed: 0.12em;

  /* Brand Gradient & Navy (v2 redesign) */
  --brand-gradient: linear-gradient(135deg, #1e71e7 0%, #0ea5e9 100%);
  --bg-navy: #18181b;
  --bg-navy-card: #27272a;
  --bg-navy-border: rgba(255, 255, 255, 0.08);
}


/* ------------------------------------------------------------
   2. Base Reset & Typography
   ------------------------------------------------------------ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

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

a:hover {
  color: var(--brand-hover);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-tight);
  color: var(--text-primary);
}

h1 {
  font-size: var(--fs-h1);
  font-weight: var(--fw-extra-bold);
  line-height: var(--lh-tight);
}

h2 {
  font-size: var(--fs-h2);
}

h3 {
  font-size: var(--fs-h3);
}

h4 {
  font-size: var(--fs-h4);
  font-weight: var(--fw-medium);
}

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

small {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

label {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  margin-bottom: 6px;
}

.eyebrow {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-relaxed);
  text-transform: uppercase;
  color: var(--brand-text);
  margin-bottom: 12px;
}

.text-secondary {
  color: var(--text-secondary);
}

.text-muted {
  color: var(--text-muted);
}


/* ------------------------------------------------------------
   3. Container & Section Layout
   ------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding-mobile);
  padding-right: var(--container-padding-mobile);
}

.section {
  padding-top: var(--section-padding-mobile);
  padding-bottom: var(--section-padding-mobile);
}

.section--dark {
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--text-white);
}

.section--dark p {
  color: var(--text-white-muted);
}

.section--white {
  background-color: var(--bg-white);
}

.section__header {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.section__header h2 {
  margin-bottom: 8px;
}

.section__header p {
  margin-top: 12px;
}


/* ------------------------------------------------------------
   4. Navigation
   ------------------------------------------------------------ */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background-color: var(--bg-white);
  box-shadow: var(--shadow-nav);
  transition: box-shadow 0.2s ease;
}

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

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: var(--fw-extra-bold);
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: var(--ls-tight);
}

.nav__logo:hover {
  color: var(--text-primary);
}

.nav__logo img {
  height: 32px;
  width: auto;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.nav__link:hover,
.nav__link--active {
  color: var(--brand);
}

.nav__cta {
  display: none;
  margin-left: 8px;
}

@media (min-width: 1024px) {
  .nav__cta {
    display: block;
  }
}

/* Hamburger — supports both button.nav__hamburger>span and button.nav__toggle>span.nav__hamburger */
.nav__hamburger,
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span,
.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1),
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger[aria-expanded="true"] span:nth-child(2),
.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger[aria-expanded="true"] span:nth-child(3),
.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-card);
  padding: 16px var(--container-padding-mobile) 24px;
  z-index: var(--z-nav);
}

.nav__mobile-menu.is-open {
  display: block;
}

.nav__mobile-menu .nav__link {
  display: block;
  padding: 12px 0;
  font-size: var(--fs-body);
  border-bottom: 1px solid var(--border);
}

.nav__mobile-menu .nav__link:last-of-type {
  border-bottom: none;
}

.nav__mobile-menu .btn {
  margin-top: 16px;
  width: 100%;
}

/* nav__sticky wrapper used on some pages */
.nav__sticky {
  position: sticky;
  top: 0;
  background-color: var(--bg-white);
  z-index: var(--z-nav);
}

/* nav__menu alternative for mobile menu */
.nav__menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-card);
  padding: 16px var(--container-padding-mobile) 24px;
  z-index: var(--z-nav);
}

.nav__menu[aria-hidden="false"] {
  display: block;
}

.nav__menu.is-open {
  display: block;
}

.nav__menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav__menu-link {
  display: block;
  padding: 12px 0;
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: color 0.15s ease;
}

.nav__menu-link:hover {
  color: var(--brand);
}

.nav__menu .btn {
  margin-top: 16px;
  width: 100%;
}

/* nav__ctas plural (some pages use this) */
.nav__ctas {
  display: none;
  gap: 16px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .nav__ctas {
    display: flex;
  }
}

/* Minimal nav variant (e.g. /ads page) */
.nav--minimal .nav__links,
.nav--minimal .nav__hamburger,
.nav--minimal .nav__toggle {
  display: none;
}

.nav--minimal .nav__inner {
  justify-content: center;
}


/* ------------------------------------------------------------
   5. Buttons
   ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: var(--fs-btn);
  font-weight: var(--fw-bold);
  line-height: 1;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--r-md);
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

/* Primary */
.btn--primary {
  background-color: var(--brand);
  color: var(--text-white);
  border-color: var(--brand);
  box-shadow: var(--shadow-btn);
}

.btn--primary:hover {
  background-color: var(--brand-hover);
  border-color: var(--brand-hover);
  color: var(--text-white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(30, 113, 231, 0.3);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn--primary:disabled,
.btn--primary.is-disabled {
  background-color: var(--border);
  border-color: var(--border);
  color: var(--text-muted);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.btn--primary.is-loading {
  color: transparent;
  pointer-events: none;
}

.btn--primary.is-loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--text-white);
  border-right-color: transparent;
  border-radius: 50%;
  animation: btn-spin 0.6s linear infinite;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

/* Secondary */
.btn--secondary {
  background-color: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn--secondary:hover {
  background-color: var(--brand-light);
  color: var(--brand-hover);
  border-color: var(--brand-hover);
}

.btn--secondary:active {
  background-color: var(--brand);
  color: var(--text-white);
}

/* Ghost */
.btn--ghost {
  background-color: transparent;
  color: var(--brand);
  border-color: transparent;
  padding-left: 4px;
  padding-right: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btn--ghost:hover {
  color: var(--brand-hover);
  text-decoration-color: var(--brand-hover);
}

/* Success — ONLY for guarantee CTA */
.btn--success {
  background-color: var(--success);
  color: var(--text-white);
  border-color: var(--success);
}

.btn--success:hover {
  background-color: var(--success-text);
  border-color: var(--success-text);
  color: var(--text-white);
  transform: translateY(-1px);
}

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

/* Size variants */
.btn--large {
  font-size: 18px;
  padding: 18px 36px;
  border-radius: var(--r-lg);
}

.btn--small {
  font-size: var(--fs-small);
  padding: 10px 20px;
  border-radius: var(--r-sm);
}

.btn--block {
  display: flex;
  width: 100%;
}


/* ------------------------------------------------------------
   6. Cards
   ------------------------------------------------------------ */
.card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-light);
  border-radius: var(--r-md);
  margin-bottom: 20px;
  color: var(--brand);
  font-size: 24px;
}

.card__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  margin-bottom: 12px;
}

.card__text {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* Dark card */
.card--dark {
  background-color: var(--bg-dark-card);
  border-color: var(--bg-dark-border);
}

.card--dark .card__title {
  color: var(--text-white);
}

.card--dark .card__text {
  color: var(--text-white-muted);
}

.card--dark .card__icon {
  background-color: rgba(30, 113, 231, 0.15);
}

/* Stat card */
.card--stat {
  text-align: center;
  padding: 24px 20px;
}

.card--stat .card__number {
  font-size: var(--fs-h2);
  font-weight: var(--fw-extra-bold);
  color: var(--brand);
  line-height: var(--lh-tight);
  margin-bottom: 8px;
}

.card--stat .card__label {
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}


/* ------------------------------------------------------------
   7. Guarantee Badge
   ------------------------------------------------------------ */
.guarantee-badge {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--success-light);
  border: 2px solid var(--success);
  border-radius: var(--r-lg);
  padding: 24px;
}

.guarantee-badge__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--success);
  border-radius: 50%;
  color: var(--text-white);
  font-size: 20px;
}

.guarantee-badge__title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--success-text);
  margin-bottom: 4px;
}

.guarantee-badge__text {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

.guarantee-badge .checkmark {
  color: var(--success);
}


/* ------------------------------------------------------------
   8. Forms
   ------------------------------------------------------------ */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  margin-bottom: 6px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: var(--fs-body);
  font-family: var(--font-sans);
  font-weight: var(--fw-regular);
  color: var(--text-primary);
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(30, 113, 231, 0.15);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-muted);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

/* Validation states */
.form-group--error input,
.form-group--error select,
.form-group--error textarea {
  border-color: var(--danger);
}

.form-group--error input:focus,
.form-group--error select:focus,
.form-group--error textarea:focus {
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.form-error {
  display: block;
  font-size: var(--fs-eyebrow);
  color: var(--danger);
  margin-top: 4px;
  font-weight: var(--fw-medium);
}

.form-group--success input,
.form-group--success select,
.form-group--success textarea {
  border-color: var(--success);
}

.form-hint {
  display: block;
  font-size: var(--fs-eyebrow);
  color: var(--text-muted);
  margin-top: 4px;
}


/* ------------------------------------------------------------
   9. Footer
   ------------------------------------------------------------ */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-white-muted);
  padding: 64px 0 32px;
}

.footer__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--bg-dark-border);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-white-muted);
}

.footer__trust span::before {
  content: '\2713 ';
  color: var(--success);
  margin-right: 4px;
}

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

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: var(--fw-extra-bold);
  color: var(--text-white);
  text-decoration: none;
  margin-bottom: 12px;
}

.footer__logo:hover {
  color: var(--text-white);
}

.footer__logo svg {
  flex-shrink: 0;
}

.footer__tagline {
  font-size: var(--fs-small);
  color: var(--text-white-muted);
}

.footer__brand-name {
  font-size: 20px;
  font-weight: var(--fw-extra-bold);
  color: var(--text-white);
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: var(--fs-small);
  color: var(--text-white-muted);
  line-height: var(--lh-relaxed);
}

.footer__heading {
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: var(--ls-relaxed);
  margin-bottom: 16px;
}

.footer__link {
  display: block;
  font-size: var(--fs-small);
  color: var(--text-white-muted);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.15s ease;
}

.footer__link:hover {
  color: var(--text-white);
}

.footer__bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: var(--fs-eyebrow);
  color: var(--text-white-muted);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  color: var(--text-white-muted);
  text-decoration: none;
  font-size: var(--fs-eyebrow);
}

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


/* ------------------------------------------------------------
   10. FAQ Accordion
   ------------------------------------------------------------ */
.faq-list {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.faq-question,
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  text-align: left;
  gap: 16px;
}

.faq-question:hover,
.faq-item__question:hover {
  color: var(--brand);
}

.faq-question:focus-visible,
.faq-item__question:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.faq-icon,
.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-icon,
.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-answer,
.faq-item__answer {
  padding-bottom: 20px;
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

.faq-item__answer[hidden] {
  display: none;
}

.faq-answer__inner {
  padding-bottom: 20px;
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

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

/* Dark section FAQ */
.section--dark .faq-item {
  border-color: var(--border-dark);
}

.section--dark .faq-question {
  color: var(--text-white);
}

.section--dark .faq-question:hover {
  color: var(--brand-light);
}

.section--dark .faq-answer__inner {
  color: var(--text-white-muted);
}


/* ------------------------------------------------------------
   11. Hero Section
   ------------------------------------------------------------ */
.hero {
  padding-top: var(--section-padding-mobile);
  padding-bottom: var(--section-padding-mobile);
  text-align: center;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-primary) 100%);
}

.hero__content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.hero__title {
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* Video container */
.hero__video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero__video-container video,
.hero__video-container iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
}

.hero__video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background 0.2s ease;
}

.hero__video-overlay:hover {
  background: rgba(0, 0, 0, 0.2);
}

.hero__play-btn {
  width: 72px;
  height: 72px;
  background-color: var(--brand);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 4px 20px rgba(30, 113, 231, 0.4);
}

.hero__play-btn:hover {
  transform: scale(1.08);
  background-color: var(--brand-hover);
}

/* Dark hero variant */
.hero--dark {
  background-color: var(--bg-dark);
}

.hero--dark .hero__title {
  color: var(--text-white);
}

.hero--dark .hero__subtitle {
  color: var(--text-white-muted);
}


/* ------------------------------------------------------------
   12. Social Proof / Logo Bar
   ------------------------------------------------------------ */
.logo-bar {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background-color: var(--bg-white);
}

.logo-bar__label {
  text-align: center;
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-relaxed);
  color: var(--text-muted);
  margin-bottom: 24px;
}

.logo-bar__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 40px;
}

.logo-bar__logo {
  height: 28px;
  width: auto;
  opacity: 0.5;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.logo-bar__logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Dark variant */
.logo-bar--dark {
  background-color: var(--bg-dark);
  border-color: var(--border-dark);
}

.logo-bar--dark .logo-bar__label {
  color: var(--text-white-muted);
}

.logo-bar--dark .logo-bar__logo {
  filter: grayscale(100%) brightness(2);
  opacity: 0.4;
}

.logo-bar--dark .logo-bar__logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}


/* ------------------------------------------------------------
   13. Testimonial Cards
   ------------------------------------------------------------ */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-card);
}

.testimonial-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--warning);
  font-size: 16px;
}

.testimonial-card__quote {
  font-size: var(--fs-body);
  color: var(--text-primary);
  font-weight: var(--fw-medium);
  line-height: var(--lh-relaxed);
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
}

.testimonial-card__role {
  font-size: var(--fs-eyebrow);
  color: var(--text-muted);
}

/* Dark variant */
.testimonial-card--dark {
  background-color: var(--bg-dark-card);
  border-color: var(--bg-dark-border);
}

.testimonial-card--dark .testimonial-card__quote {
  color: var(--text-white);
}

.testimonial-card--dark .testimonial-card__name {
  color: var(--text-white);
}

.testimonial-card--dark .testimonial-card__role {
  color: var(--text-white-muted);
}


/* ------------------------------------------------------------
   14. Photo Placeholder
   ------------------------------------------------------------ */
.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--brand);
  color: var(--text-white);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.photo-placeholder--large {
  width: 64px;
  height: 64px;
  font-size: 18px;
}

.photo-placeholder--small {
  width: 32px;
  height: 32px;
  font-size: var(--fs-eyebrow);
}


/* ------------------------------------------------------------
   15. Cookie Consent Banner
   ------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-toast);
  background-color: var(--bg-dark);
  color: var(--text-white-muted);
  padding: 16px var(--container-padding-mobile);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner,
.cookie-banner__content {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.cookie-banner__text {
  font-size: var(--fs-small);
  line-height: var(--lh-relaxed);
  color: var(--text-white-muted);
}

.cookie-banner__text a {
  color: var(--text-white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}


/* ------------------------------------------------------------
   16. Skip Navigation
   ------------------------------------------------------------ */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: calc(var(--z-nav) + 1);
  background-color: var(--brand);
  color: var(--text-white);
  padding: 12px 24px;
  border-radius: var(--r-sm);
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-nav:focus {
  top: 16px;
  color: var(--text-white);
}


/* ------------------------------------------------------------
   17. Utility Classes
   ------------------------------------------------------------ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}


/* ============================================================
   18. Responsive Media Queries
   ============================================================ */

/* ---- Tablet (min-width: 768px) ---- */
@media (min-width: 768px) {
  .container {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }

  .section {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  /* Nav */
  .nav__hamburger,
  .nav__toggle {
    display: none;
  }

  .nav__links {
    display: flex;
  }

  .nav__mobile-menu,
  .nav__menu {
    display: none !important;
  }

  /* Hero */
  .hero {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .hero__actions {
    flex-direction: row;
    justify-content: center;
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  /* Cookie banner */
  .cookie-banner__inner,
.cookie-banner__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }
}


/* ---- Desktop (min-width: 1024px) ---- */
@media (min-width: 1024px) {
  .section {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
  }

  /* Nav */
  .nav__inner {
    height: 72px;
  }

  /* Hero */
  .hero {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
  }

  .hero__play-btn {
    width: 88px;
    height: 88px;
    font-size: 32px;
  }

  /* Testimonials */
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  /* Logo bar */
  .logo-bar__logos {
    gap: 48px;
  }

  .logo-bar__logo {
    height: 32px;
  }
}


/* ---- Large Desktop (min-width: 1200px) ---- */
@media (min-width: 1200px) {
  .hero__video-container {
    max-width: 960px;
  }

  .nav__links {
    gap: 40px;
  }
}


/* ---- Print ---- */
@media print {
  .nav,
  .cookie-banner,
  .skip-nav {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .section {
    padding: 20px 0;
  }
}


/* ============================================================
   ADDITIONAL COMPONENTS — Matching HTML class names
   ============================================================ */

/* --- Hero sub-components --- */
.hero__text {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero__text h1 {
  margin-bottom: 20px;
}

.hero__subheadline {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.hero__video {
  max-width: 800px;
  margin: 40px auto 0;
}

/* --- Video container --- */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background-color: var(--bg-dark);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-container--showcase {
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-card);
}

/* --- Video showcase (multi-video grid) --- */
.video-showcase {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .video-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
}

.video-showcase__item {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.video-showcase__item:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.video-showcase__label {
  padding: 16px 20px;
  background-color: var(--bg-white);
}

.video-showcase__type {
  display: block;
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: 2px;
}

.video-showcase__detail {
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.video-showcase__item .video-container {
  border-radius: 0;
}

/* --- Social proof bar --- */
.social-proof-bar {
  margin-top: 48px;
  text-align: center;
}

.social-proof-bar__label {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-relaxed);
  margin-bottom: 20px;
}

.social-proof-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.social-proof-bar__logos img {
  height: 28px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease;
  object-fit: contain;
}

.social-proof-bar__logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

.logo-placeholder {
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}

/* --- Guide layout --- */
.guide-layout {
  display: grid;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.guide-layout__content p {
  margin-bottom: 16px;
}

.guide-layout__content p:last-of-type {
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .guide-layout {
    grid-template-columns: 320px 1fr;
    gap: 48px;
    align-items: center;
  }
}

.guide-layout__photo {
  display: flex;
  justify-content: center;
}

.guide-layout__photo .photo-placeholder {
  width: 180px;
  height: 180px;
  font-size: 48px;
  border-radius: var(--r-xl);
}

.guide-layout__img {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 3 / 4;
  border-radius: var(--r-xl);
  object-fit: cover;
  object-position: center top;
  box-shadow: var(--shadow-card);
}

/* --- Stats bar --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
}

.stat-badge {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px 16px;
  text-align: center;
}

.stat-badge__number {
  display: block;
  font-size: clamp(24px, 4vw, 32px);
  font-weight: var(--fw-extra-bold);
  color: var(--brand);
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-badge__label {
  display: block;
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}

/* --- Steps grid --- */
.steps-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
}

.step-card h3 {
  margin-bottom: 12px;
}

.step-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--brand);
  color: var(--text-white);
  font-size: 20px;
  font-weight: var(--fw-extra-bold);
  margin-bottom: 20px;
}

/* --- Services grid --- */
.services-grid {
  display: grid;
  gap: var(--gap-card);
  margin-top: 48px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

/* Service card */
.service-card {
  display: flex;
  flex-direction: column;
  position: relative;
  text-align: left;
  padding: 36px 28px 28px;
  border-left: 3px solid var(--border);
  transition: box-shadow 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  border-left-color: var(--brand);
}

/* Featured service card */
.service-card--featured {
  border-left-color: var(--brand);
  box-shadow: var(--shadow-card-hover);
}

.service-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}

/* Badge */
.service-card__badge {
  display: inline-block;
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--brand);
  color: var(--text-white);
  font-size: 11px;
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}

/* Icon */
.service-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--brand-light);
  border-radius: var(--r-md);
  margin-bottom: 20px;
  color: var(--brand);
}

.service-card--featured .service-card__icon {
  background-color: var(--brand);
  color: var(--text-white);
}

/* Service card content */
.service-card h3 {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-card p {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 20px;
}

/* Feature list */
.service-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.service-card__features li {
  position: relative;
  padding-left: 24px;
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.8;
}

.service-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: var(--fw-bold);
}

/* CTA at bottom */
.service-card .btn {
  margin-top: auto;
}

/* --- Case study grid --- */
.case-study-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .case-study-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-study-card {
  position: relative;
  overflow: hidden;
}

.case-study-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--brand);
}

.case-study-card__label {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-relaxed);
  margin-bottom: 12px;
}

.case-study-card__logo {
  height: 28px;
  width: auto;
  margin-bottom: 12px;
  object-fit: contain;
}

.case-study-card__brand {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.case-study-card__metric {
  margin-bottom: 16px;
}

.case-study-card__metric-number {
  display: block;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: var(--fw-extra-bold);
  color: var(--brand);
  line-height: 1.1;
}

.case-study-card__metric-label {
  display: block;
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}

.case-study-card__results {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}

.case-study-card__results li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: var(--fs-small);
  color: var(--text-secondary);
  margin-left: 0;
}

.case-study-card__results li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--success);
}

/* --- Guarantee section --- */
.guarantee-section {
  background: linear-gradient(180deg, var(--success-light) 0%, #e6f9f0 100%);
  border-top: 3px solid var(--success);
  border-bottom: 3px solid var(--success);
}

.guarantee-content {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-content__icon {
  color: var(--success);
  margin-bottom: 20px;
}

.guarantee-content h2 {
  color: var(--success-text);
}

.guarantee-content__text {
  font-size: var(--fs-body);
  color: var(--text-primary);
  line-height: var(--lh-relaxed);
  margin-bottom: 16px;
}

.guarantee-content .btn--success {
  margin-top: 16px;
}

/* --- FAQ --- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

/* --- Testimonials grid --- */
.testimonials-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Timeline --- */
.timeline {
  position: relative;
  max-width: 640px;
  margin: 0 auto 48px;
  padding-left: 100px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border);
}

.timeline__item {
  position: relative;
  margin-bottom: 32px;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__marker {
  position: absolute;
  left: -100px;
  top: 0;
  min-width: 80px;
  padding: 6px 14px;
  border-radius: var(--r-pill);
  background-color: var(--brand);
  color: var(--text-white);
  font-size: 13px;
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  z-index: 1;
}

.timeline__content h3 {
  margin-bottom: 8px;
}

.timeline__content p {
  color: var(--text-secondary);
}

/* --- Deliverables --- */
.deliverables {
  background-color: var(--brand-light);
  border-radius: var(--r-lg);
  padding: 32px;
  max-width: 640px;
  margin: 0 auto;
}

.deliverables h3 {
  margin-bottom: 20px;
}

.deliverables-grid {
  display: grid;
  gap: 12px;
}

.deliverable-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-body);
  color: var(--text-primary);
}

.deliverable-item svg {
  flex-shrink: 0;
  color: var(--success);
}

/* --- 511 Funnel section --- */
.funnel-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .funnel-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.funnel-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.funnel-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.funnel-card__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--brand);
  color: var(--text-white);
  font-size: 24px;
  font-weight: var(--fw-extra-bold);
  margin-bottom: 16px;
}

.funnel-card h3 {
  margin-bottom: 4px;
}

.funnel-card__where {
  font-size: var(--fs-small);
  color: var(--brand-text);
  font-weight: var(--fw-medium);
  margin-bottom: 8px;
}

.funnel-card__goal {
  font-size: var(--fs-small);
  color: var(--success);
  font-weight: var(--fw-medium);
  margin-bottom: 12px;
}

.funnel-card > p:last-of-type {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  text-align: left;
}

.funnel-extras {
  max-width: 640px;
  margin: 0 auto 8px;
  text-align: center;
}

.funnel-extras__label {
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: 12px;
}

.funnel-extras__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.funnel-extras__items span::before {
  content: '\2713 ';
  color: var(--success);
}

/* --- Final CTA (dark section) --- */
.final-cta {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.final-cta h2 {
  color: var(--text-white);
}

.final-cta p {
  color: var(--text-white-muted);
}

.final-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 24px;
}

.final-cta .btn--secondary {
  border-color: rgba(255,255,255,0.3);
  color: var(--text-white);
}

.final-cta .btn--secondary:hover {
  border-color: rgba(255,255,255,0.6);
  background-color: rgba(255,255,255,0.1);
  color: var(--text-white);
}

.final-cta__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  font-size: var(--fs-small);
  color: var(--text-white-muted);
}

.final-cta__trust span::before {
  content: '\2713 ';
  color: var(--success);
}

/* --- Section variants --- */
.section--alt {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section__body {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.section__body p + p {
  margin-top: 20px;
}

.section__body--narrow {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section__cta {
  text-align: center;
  margin-top: 32px;
}

/* --- Link arrow --- */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: var(--fw-medium);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.link-arrow:hover {
  gap: 12px;
  color: var(--brand-hover);
}

.link-arrow__arrow {
  transition: transform 0.2s ease;
}

/* --- Float badge --- */
.float-badge {
  animation: float 3s infinite ease-in-out;
}

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

/* --- Skip link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: var(--z-toast);
  background-color: var(--brand);
  color: var(--text-white);
  padding: 12px 24px;
  border-radius: var(--r-md);
  text-decoration: none;
  font-weight: var(--fw-bold);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* --- Guarantee badge inline --- */
.guarantee-badge--inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--success-text);
  background-color: var(--success-light);
  border: 1px solid var(--success);
  padding: 8px 16px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}

.guarantee-badge--inline svg {
  color: var(--success);
}

/* --- Testimonial stars --- */
.testimonial-card__stars {
  display: flex;
  gap: 2px;
  color: var(--star);
  margin-bottom: 12px;
}

.testimonial-card__quote {
  border: none;
  padding: 0;
  margin: 0 0 16px;
  background: none;
  font-style: normal;
}

.testimonial-card__quote p {
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--text-primary);
}

.testimonial-card__attribution {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--brand);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

.testimonial-card__attribution strong {
  display: block;
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
}

.testimonial-card__attribution span {
  display: block;
  font-size: var(--fs-small);
  color: var(--text-muted);
}

/* --- Stats bar grid (results page) --- */
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: center;
}

.stats-bar__item {
  padding: 16px 8px;
}

.stats-bar__number {
  display: block;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: var(--fw-extra-bold);
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stats-bar__label {
  display: block;
  font-size: var(--fs-small);
  color: var(--text-white-muted);
  font-weight: var(--fw-medium);
}

@media (min-width: 768px) {
  .stats-bar__grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
  }
}

/* --- Brand grid --- */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.brand-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  min-height: 72px;
}

.brand-grid__item img {
  max-height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.brand-grid__item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.brand-grid__item--placeholder {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .brand-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- Filter tabs --- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-tab {
  font-family: var(--font-sans);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 8px 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-tab:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.filter-tab--active {
  background-color: var(--brand);
  border-color: var(--brand);
  color: var(--text-white);
}

.filter-tab--active:hover {
  background-color: var(--brand-hover);
  border-color: var(--brand-hover);
  color: var(--text-white);
}

/* --- Success story cards (OpenSend-style) --- */
.stories-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.story-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.story-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.story-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.story-card__logo-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--r-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.story-card__logo-wrap img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.story-card__tag {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-relaxed);
  text-transform: uppercase;
  color: var(--brand-text);
  background-color: var(--brand-light);
  padding: 4px 12px;
  border-radius: var(--r-pill);
}

.story-card__quote {
  border: none;
  padding: 0;
  margin: 0 0 20px;
  background: none;
  font-style: normal;
  flex-grow: 1;
}

.story-card__quote p {
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--text-primary);
}

.story-card__person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.story-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--brand);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  flex-shrink: 0;
}

.story-card__avatar img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.story-card__name {
  font-size: var(--fs-body);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  line-height: 1.3;
}

.story-card__title {
  font-size: var(--fs-small);
  color: var(--text-muted);
  line-height: 1.3;
}

.story-card__company {
  font-size: var(--fs-small);
  color: var(--brand-text);
  font-weight: var(--fw-medium);
  line-height: 1.3;
}

.story-card__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.story-card__metric {
  text-align: center;
  padding: 12px 8px;
  background-color: var(--bg-primary);
  border-radius: var(--r-sm);
}

.story-card__metric-value {
  display: block;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: var(--fw-extra-bold);
  color: var(--brand);
  line-height: 1.1;
  margin-bottom: 4px;
}

.story-card__metric-label {
  display: block;
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  line-height: 1.3;
}

.story-card__btn {
  margin-top: auto;
}

.story-card__coming-soon {
  display: block;
  text-align: center;
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
  padding: 10px;
  margin-top: auto;
}

/* --- Case study detail page --- */
.cs-hero {
  text-align: center;
  padding-top: 40px;
}

.cs-hero__logo {
  width: 80px;
  height: 80px;
  border-radius: var(--r-lg);
  object-fit: contain;
  margin: 0 auto 16px;
}

.cs-hero__tag {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-relaxed);
  text-transform: uppercase;
  color: var(--brand-text);
  background-color: var(--brand-light);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}

.cs-metrics-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cs-metrics-bar {
    grid-template-columns: repeat(4, 1fr);
  }
}

.cs-metric {
  text-align: center;
  padding: 20px 12px;
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.cs-metric__value {
  display: block;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: var(--fw-extra-bold);
  color: var(--brand);
  line-height: 1.1;
  margin-bottom: 4px;
}

.cs-metric__label {
  display: block;
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}

.cs-body {
  max-width: 720px;
  margin: 0 auto;
}

.cs-body h3 {
  margin-top: 40px;
  margin-bottom: 12px;
}

.cs-body p {
  margin-bottom: 16px;
}

.cs-quote {
  border-left: 4px solid var(--brand);
  padding: 20px 24px;
  margin: 32px 0;
  background-color: var(--brand-light);
  border-radius: 0 var(--r-md) var(--r-md) 0;
}

.cs-quote p {
  font-size: var(--fs-body);
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 8px;
}

.cs-quote cite {
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-style: normal;
  font-weight: var(--fw-medium);
}

.cs-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* --- Footer sub-sections (used across pages) --- */
.footer__links h4,
.footer__contact h4 {
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: var(--ls-relaxed);
  margin-bottom: 16px;
}

.footer__links ul {
  list-style: none;
  padding: 0;
}

.footer__links a {
  display: block;
  font-size: var(--fs-small);
  color: var(--text-white-muted);
  text-decoration: none;
  padding: 6px 0;
  transition: color 0.15s ease;
}

.footer__links a:hover {
  color: var(--text-white);
}

.footer__contact {
  font-size: var(--fs-small);
}

.footer__contact .btn {
  margin-bottom: 12px;
}

.footer__contact p {
  color: var(--text-white-muted);
  font-size: var(--fs-small);
}

.footer__contact a {
  color: var(--text-white-muted);
  transition: color 0.15s ease;
}

.footer__contact a:hover {
  color: var(--text-white);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  color: var(--text-white-muted);
  text-decoration: none;
  font-size: var(--fs-eyebrow);
}

.footer__legal a:hover {
  color: var(--text-white);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* --- Video wrapper --- */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  background-color: var(--bg-dark);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- FAQ trigger (alternative class used on some pages) --- */
.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  text-align: left;
  transition: color 0.15s ease;
}

.faq-item__trigger:hover {
  color: var(--brand);
}

.faq-item__trigger[aria-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
}

/* --- About page: Principles grid --- */
.principles-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .principles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.principle-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.principle-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.principle-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--brand);
  color: var(--text-white);
  font-size: 18px;
  font-weight: var(--fw-extra-bold);
  margin-bottom: 16px;
}

.principle-card h3 {
  margin-bottom: 8px;
}

/* --- About page: Lanes grid --- */
.lanes-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .lanes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lane-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}

.lane-card h3 {
  margin-bottom: 8px;
}

.lane-card__label {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  letter-spacing: var(--ls-relaxed);
  text-transform: uppercase;
  color: var(--brand-text);
  background-color: var(--brand-light);
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}

/* --- About page: Stats grid --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.stat-badge__detail {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* --- About page: Content block --- */
.content-block {
  max-width: 720px;
  margin: 0 auto;
}

.content-block p + p {
  margin-top: 16px;
}

/* --- Coaching page: Fit grid --- */
.fit-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .fit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.fit-card {
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 2px solid var(--border);
}

.fit-card--yes {
  background-color: var(--success-light);
  border-color: var(--success);
}

.fit-card--no {
  background-color: var(--danger-light);
  border-color: var(--danger);
}

.fit-card h3 {
  margin-bottom: 16px;
}

.fit-list {
  list-style: none;
  padding: 0;
}

.fit-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: var(--fs-body);
  color: var(--text-secondary);
}

.fit-card--yes .fit-list li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: var(--fw-bold);
}

.fit-card--no .fit-list li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: var(--danger);
  font-weight: var(--fw-bold);
}

/* --- Coaching page: Case studies grid --- */
.case-studies-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.case-study-card__header {
  margin-bottom: 16px;
}

.case-study-card__body {
  margin-bottom: 20px;
}

.case-study-card__before,
.case-study-card__after {
  margin-bottom: 16px;
}

.case-study-card__before h4,
.case-study-card__after h4 {
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-relaxed);
  margin-bottom: 8px;
}

.case-study-card__before h4 {
  color: var(--danger);
}

.case-study-card__after h4 {
  color: var(--success);
}

.case-study-card__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.case-study-stat {
  text-align: center;
  padding: 12px 8px;
  background-color: var(--bg-primary);
  border-radius: var(--r-sm);
}

.case-study-stat__number {
  display: block;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: var(--fw-extra-bold);
  color: var(--brand);
  line-height: 1.1;
  margin-bottom: 4px;
}

.case-study-stat__label {
  display: block;
  font-size: 11px;
  font-weight: var(--fw-medium);
  color: var(--text-muted);
}

/* --- Coaching page: Sessions grid --- */
.sessions-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .sessions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.session-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px;
}

.session-card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--brand);
  color: var(--text-white);
  font-size: 16px;
  font-weight: var(--fw-extra-bold);
  margin-bottom: 12px;
}

.session-card h3 {
  margin-bottom: 8px;
}

/* --- Coaching page: Package details --- */
.package-details {
  background-color: var(--bg-white);
  border: 2px solid var(--brand);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  max-width: 720px;
  margin: 0 auto;
}

.package-details h3 {
  margin-bottom: 20px;
}

.package-includes {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.package-includes li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: var(--fs-body);
  color: var(--text-secondary);
}

.package-includes li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: var(--fw-bold);
}

.package-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.package-meta__item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.package-meta__label {
  display: block;
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
  margin-bottom: 4px;
}

.package-meta__value {
  display: block;
  font-size: var(--fs-h3);
  font-weight: var(--fw-extra-bold);
  color: var(--brand);
}

/* --- Ads page: Lead form --- */
.form-container {
  max-width: 720px;
  margin: 0 auto;
}

.lead-form {
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 32px;
}

.lead-form__grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .lead-form__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lead-form__field {
  display: flex;
  flex-direction: column;
}

.lead-form__field--full {
  grid-column: 1 / -1;
}

.lead-form__label {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
  margin-bottom: 6px;
}

.lead-form__optional {
  font-weight: var(--fw-regular);
  color: var(--text-muted);
  font-size: var(--fs-eyebrow);
}

.lead-form__input,
.lead-form__select {
  width: 100%;
  padding: 12px 16px;
  font-size: var(--fs-body);
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.lead-form__input:focus,
.lead-form__select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(30, 113, 231, 0.15);
}

.lead-form__submit {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.lead-form__disclaimer {
  grid-column: 1 / -1;
  font-size: var(--fs-eyebrow);
  color: var(--text-muted);
  text-align: center;
  margin-top: 8px;
}

.lead-form__success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.lead-form__success.is-visible {
  display: block;
}

.lead-form__error {
  display: none;
  color: var(--danger);
  font-size: var(--fs-small);
  text-align: center;
  margin-top: 12px;
}

.lead-form__error.is-visible {
  display: block;
}

/* --- Ads page: Checklist --- */
.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: var(--fs-body);
  color: var(--text-secondary);
}

.checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: var(--fw-bold);
}

.checklist--problems li::before {
  content: '\2717';
  color: var(--danger);
}

/* --- Ads page: Callout box --- */
.callout-box {
  background-color: var(--brand-light);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.callout-box p {
  color: var(--text-primary);
}

/* --- Ads page: Guarantee badge large --- */
.guarantee-badge--large {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--success-light);
  border: 2px solid var(--success);
  border-radius: var(--r-lg);
  padding: 32px;
  max-width: 720px;
  margin: 0 auto;
}

/* --- Ads page: Step card extras --- */
.step-card__goal {
  font-size: var(--fs-small);
  color: var(--success);
  font-weight: var(--fw-medium);
  margin-bottom: 8px;
}

.step-card__stat {
  font-size: var(--fs-small);
  color: var(--brand-text);
  font-weight: var(--fw-bold);
  margin-top: 8px;
}

/* --- Footer minimal (ads landing page) --- */
.footer--minimal {
  padding: 40px 0 24px;
  text-align: center;
}

.footer--minimal .footer__trust {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 24px;
}

/* --- Reduced motion for float --- */
@media (prefers-reduced-motion: reduce) {
  .float-badge {
    animation: none;
  }
  .skip-link {
    transition: none;
  }
  .story-card:hover {
    transform: none;
  }
}

/* ==================== FUNNEL SHOWCASE (tabbed full-funnel demos) ==================== */
.funnel-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.funnel-tab {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--border);
  border-radius: 100px;
  background: var(--white);
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.funnel-tab:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.funnel-tab--active {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.funnel-showcase__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .funnel-showcase__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.funnel-showcase__results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

@media (min-width: 768px) {
  .funnel-showcase__results {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem;
  }
}

.funnel-showcase__stat {
  text-align: center;
}

.funnel-showcase__stat-number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 0.25rem;
}

.funnel-showcase__stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.funnel-showcase__item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.funnel-showcase__label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}

.funnel-showcase__step {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: var(--white);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.8125rem;
  flex-shrink: 0;
}

.funnel-showcase__type {
  font-weight: 700;
  color: var(--text);
  font-size: 0.9375rem;
}

.funnel-showcase__detail {
  color: var(--text-secondary);
  font-size: 0.8125rem;
  margin-left: auto;
}

/* ==================== VIDEO TESTIMONIALS GRID ==================== */
.video-testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .video-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.video-testimonial {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

/* ==================== 511 FUNNEL INFOGRAPHIC ==================== */
.funnel-infographic {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.funnel-infographic__flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

@media (min-width: 768px) {
  .funnel-infographic__flow {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }
}

.funnel-infographic__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  flex: 1;
  position: relative;
}

.funnel-infographic__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-light, #e8f0fe);
  border-radius: 16px;
  margin-bottom: 1rem;
  color: var(--brand);
}

.funnel-infographic__count {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 0.25rem;
}

.funnel-infographic__name {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
  font-size: 0.9375rem;
}

.funnel-infographic__desc {
  color: var(--text-secondary);
  font-size: 0.8125rem;
}

.funnel-infographic__arrow {
  display: none;
  color: var(--brand);
  font-size: 1.5rem;
  padding: 0 0.5rem;
}

@media (min-width: 768px) {
  .funnel-infographic__arrow {
    display: flex;
    align-items: center;
  }
}

.funnel-infographic__arrow--mobile {
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
  color: var(--brand);
}

@media (min-width: 768px) {
  .funnel-infographic__arrow--mobile {
    display: none;
  }
}

/* ==================== QUALIFICATION FORM MODAL ==================== */
.qual-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Hide everything behind modal when open */
body.qual-open .nav,
body.qual-open .nav__mobile-menu,
body.qual-open .footer,
body.qual-open #hs-eu-cookie-confirmation-inner,
body.qual-open #hs-eu-cookie-confirmation,
body.qual-open .hs-cookie-notification-position-bottom,
body.qual-open #hubspot-messages-iframe-container {
  visibility: hidden !important;
  pointer-events: none !important;
}

.qual-overlay--visible {
  opacity: 1;
  visibility: visible;
}

.qual-form {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2001;
}

.qual-overlay--visible .qual-form {
  transform: translateY(0);
}

.qual-form__header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.qual-form__header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.qual-form__header p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.qual-form__group {
  margin-bottom: 1.25rem;
}

.qual-form__label {
  display: block;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.qual-form__select,
.qual-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.qual-form__select:focus,
.qual-form__input:focus {
  outline: none;
  border-color: var(--brand);
}

.qual-form__radio-group {
  display: flex;
  gap: 0.75rem;
}

.qual-form__radio {
  flex: 1;
  position: relative;
}

.qual-form__radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.qual-form__radio label {
  display: block;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.qual-form__radio input:checked + label {
  border-color: var(--brand);
  background: var(--brand-light, #e8f0fe);
  color: var(--brand);
}

.qual-form__investment {
  background: var(--surface);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.qual-form__investment p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.qual-form__investment strong {
  color: var(--text);
}

.qual-form__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.qual-form__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.qual-form__close:hover {
  background: var(--surface);
}

.qual-form__not-fit {
  text-align: center;
  padding: 2rem;
}

.qual-form__not-fit h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.qual-form__not-fit p {
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

/* ==================== BRAND LOGOS ==================== */
.brand-logo {
  height: 28px;
  width: auto;
  opacity: 0.55;
  transition: opacity 0.2s ease;
  filter: grayscale(100%);
}

.brand-logo:hover {
  opacity: 0.85;
}

.brand-logo--icon {
  height: 24px;
}

@media (max-width: 767px) {
  .brand-logo {
    height: 22px;
  }
  .brand-logo--icon {
    height: 20px;
  }
}


/* ============================================================
   V2 HOMEPAGE REDESIGN — Premium B2B Brand Page
   All new styles below. Existing rules left untouched above.
   ============================================================ */

/* ------------------------------------------------------------
   NAV — Mega Menu (v2)
   ------------------------------------------------------------ */
.nav--mega {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav--mega .nav__link--dropdown {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-sans);
  font-size: var(--fs-nav);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  padding: 0;
  margin: 0;
  white-space: nowrap;
  line-height: 1;
  vertical-align: middle;
}

.nav--mega .nav__link--dropdown:hover,
.nav--mega .nav__link--dropdown:focus-visible {
  color: var(--brand);
}

.nav__dropdown-chevron {
  transition: transform 0.2s ease;
}

.nav__link--dropdown[aria-expanded="true"] .nav__dropdown-chevron {
  transform: rotate(180deg);
}

.nav__dropdown {
  position: relative;
}

.nav__mega-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  padding: 20px;
  min-width: 380px;
  flex-direction: column;
  gap: 8px;
  display: none;
  pointer-events: none;
}

.nav__mega-panel--open {
  display: flex;
  pointer-events: auto;
}

.mega-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--r-md);
  text-decoration: none;
  transition: background 0.15s ease;
}

.mega-card:hover {
  background: var(--brand-light);
}

.mega-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mega-card__icon--blue {
  background: rgba(30, 113, 231, 0.1);
  color: var(--brand);
}

.mega-card__icon--teal {
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
}

.mega-card__icon--green {
  background: rgba(5, 150, 105, 0.1);
  color: var(--success);
}

.mega-card strong {
  display: block;
  font-size: 15px;
  font-weight: var(--fw-bold);
  color: var(--text-primary);
  margin-bottom: 2px;
}

.mega-card span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Mobile nav section label */
.nav__mobile-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav__mobile-label {
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-relaxed);
  color: var(--text-muted);
  padding: 8px 0 4px;
}

.nav__mobile-section .nav__link {
  padding-left: 12px;
}


/* ------------------------------------------------------------
   HERO — Split Layout (v2)
   ------------------------------------------------------------ */
.hero--split {
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 60%, #e0efff 100%);
  padding: var(--section-padding-mobile) 0;
  overflow: hidden;
}

.hero-split__grid {
  display: flex;
  flex-direction: column-reverse;
  gap: 40px;
  align-items: center;
}

.hero-split__text {
  max-width: 600px;
}

.hero-split__text h1 {
  margin-top: 16px;
  margin-bottom: 20px;
}

.hero-split__sub {
  font-size: var(--fs-body);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: 32px;
}

.hero-split__trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-muted);
  flex-wrap: wrap;
}

.hero-split__trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

.hero-split__image {
  width: 100%;
  max-width: 480px;
}

.hero-split__image img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: 0 0 60px rgba(30, 113, 231, 0.15);
  object-fit: cover;
}

@media (min-width: 1024px) {
  .hero--split {
    padding: var(--section-padding) 0;
  }

  .hero-split__grid {
    flex-direction: row;
    gap: 60px;
  }

  .hero-split__text {
    flex: 0 0 55%;
  }

  .hero-split__image {
    flex: 0 0 45%;
    max-width: none;
  }

  .hero-split__image img {
    max-height: 580px;
  }
}


/* ------------------------------------------------------------
   LOGO BAR — Dark Strip (v2)
   ------------------------------------------------------------ */
.logo-bar {
  background: var(--bg-navy);
  padding: 40px 0;
}

.logo-bar__label {
  text-align: center;
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-relaxed);
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.logo-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.logo-bar__img {
  height: 26px;
  width: auto;
  opacity: 0.7;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}

.logo-bar__img:hover {
  opacity: 1;
}

@media (max-width: 767px) {
  .logo-bar__logos {
    gap: 20px;
  }

  .logo-bar__img {
    height: 20px;
  }
}


/* ------------------------------------------------------------
   SERVICES — Three Cards on Light Blue (v2)
   ------------------------------------------------------------ */
.services-section {
  background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
}

.services-v2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-card);
}

.service-v2-card {
  position: relative;
  background: var(--bg-white);
  border-radius: 24px;
  padding: 40px 32px 32px;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-v2-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.service-v2-card--blue {
  border-top: 4px solid #1e71e7;
}

.service-v2-card--teal {
  border-top: 4px solid #0ea5e9;
}

.service-v2-card--green {
  border-top: 4px solid #059669;
}

.service-v2-card__badge {
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--brand);
  color: var(--text-white);
  font-size: 12px;
  font-weight: var(--fw-bold);
  padding: 4px 14px;
  border-radius: var(--r-pill);
  letter-spacing: 0.02em;
}

.service-v2-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-v2-card__icon--blue {
  background: rgba(30, 113, 231, 0.1);
  color: var(--brand);
}

.service-v2-card__icon--teal {
  background: rgba(14, 165, 233, 0.1);
  color: #0ea5e9;
}

.service-v2-card__icon--green {
  background: rgba(5, 150, 105, 0.1);
  color: var(--success);
}

.service-v2-card h3 {
  margin-bottom: 12px;
}

.service-v2-card > p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: var(--lh-relaxed);
}

.service-v2-card__features {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-v2-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
}

.service-v2-card__features li svg {
  flex-shrink: 0;
  color: var(--success);
}

@media (min-width: 768px) {
  .services-v2-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ------------------------------------------------------------
   MEET ERIC — Dark Cinematic Split (v2)
   ------------------------------------------------------------ */
.meet-eric {
  background: var(--bg-navy);
}

.meet-eric__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.meet-eric__photo {
  max-width: 400px;
  width: 100%;
}

.meet-eric__photo img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg);
  box-shadow: 0 0 60px rgba(30, 113, 231, 0.15);
  object-fit: cover;
}

.meet-eric__content h2 {
  color: var(--text-white);
  margin-bottom: 20px;
}

.text-white {
  color: var(--text-white) !important;
}

.text-white-muted {
  color: var(--text-white-muted) !important;
}

.meet-eric__content p {
  margin-bottom: 16px;
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.5) !important;
}

.link-arrow--light {
  color: var(--text-white) !important;
}

.link-arrow--light:hover {
  color: #0ea5e9 !important;
}

.meet-eric__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
  width: 100%;
}

.meet-eric__stat {
  text-align: center;
  padding: 20px 16px;
  background: var(--bg-navy-card);
  border: 1px solid var(--bg-navy-border);
  border-radius: var(--r-md);
}

.meet-eric__stat-number {
  display: block;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: var(--fw-extra-bold);
  color: #0ea5e9;
  line-height: 1.2;
  margin-bottom: 4px;
}

.meet-eric__stat-label {
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: var(--text-white-muted);
}

@media (min-width: 768px) {
  .meet-eric__stats {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 1024px) {
  .meet-eric__grid {
    flex-direction: row;
    gap: 60px;
    align-items: flex-start;
  }

  .meet-eric__photo {
    flex: 0 0 40%;
  }

  .meet-eric__content {
    flex: 0 0 60%;
  }
}


/* ------------------------------------------------------------
   HOW IT WORKS — Connected Steps (v2)
   ------------------------------------------------------------ */
.how-it-works {
  background: var(--bg-white);
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  padding-left: 48px;
}

/* Vertical connecting line (mobile) */
.hiw-steps::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 19px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand) 0%, #0ea5e9 100%);
  border-radius: 2px;
}

.hiw-step {
  position: relative;
}

.hiw-step__number {
  position: absolute;
  left: -48px;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--text-white);
  font-size: 18px;
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hiw-step h3 {
  margin-bottom: 10px;
}

.hiw-step p {
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

@media (min-width: 1024px) {
  .hiw-steps {
    flex-direction: row;
    gap: 48px;
    padding-left: 0;
  }

  /* Horizontal connecting line (desktop) */
  .hiw-steps::before {
    top: 19px;
    bottom: auto;
    left: 60px;
    right: 60px;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, var(--brand) 0%, #0ea5e9 100%);
  }

  .hiw-step {
    flex: 1;
    text-align: center;
    padding-top: 64px;
  }

  .hiw-step__number {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
}


/* ------------------------------------------------------------
   CASE STUDIES — Light Gradient with Accent Bar (v2)
   ------------------------------------------------------------ */
.case-studies-section {
  background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 100%);
}

.case-v2-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-card);
}

.case-v2-card {
  display: flex;
  background: var(--bg-white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.case-v2-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}

.case-v2-card__accent {
  flex-shrink: 0;
  width: 4px;
  background: var(--brand);
}

.case-v2-card__body {
  padding: 28px 28px 28px 24px;
}

.case-v2-card__label,
.case-v2-card__brand {
  display: block;
  font-size: var(--fs-eyebrow);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--ls-relaxed);
  color: var(--text-muted);
  margin-bottom: 12px;
}

.case-v2-card__metric {
  margin-bottom: 16px;
}

.case-v2-card__metric-number {
  display: block;
  font-size: clamp(32px, 4vw, 44px);
  font-weight: var(--fw-extra-bold);
  color: var(--brand);
  line-height: 1.1;
}

.case-v2-card__metric-label {
  font-size: var(--fs-small);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}

.case-v2-card__body > p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: var(--lh-relaxed);
  font-size: 15px;
}

.case-v2-card__results {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.case-v2-card__results li {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--success-text);
  padding-left: 20px;
  position: relative;
}

.case-v2-card__results li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

@media (min-width: 768px) {
  .case-v2-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* ------------------------------------------------------------
   TESTIMONIALS — Dark Navy (v2)
   ------------------------------------------------------------ */
.testimonials-dark {
  background: var(--bg-navy);
}

.testimonials-dark .section__header {
  text-align: center;
}

.td-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-card);
  margin-bottom: 40px;
}

.td-video-wrap {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.td-written-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.td-card {
  background: var(--bg-white);
  border-radius: var(--r-lg);
  padding: 28px;
  border-left: 4px solid var(--brand);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.td-card__stars {
  margin-bottom: 12px;
  font-size: 16px;
}

.td-card__quote p {
  color: var(--text-primary);
  font-size: 15px;
  line-height: var(--lh-relaxed);
  font-style: italic;
  margin-bottom: 16px;
}

.td-card__attribution {
  display: flex;
  align-items: center;
  gap: 12px;
}

.td-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand);
  font-weight: var(--fw-bold);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.td-card__attribution strong {
  display: block;
  font-size: 14px;
  font-weight: var(--fw-bold);
  color: var(--text-primary);
}

.td-card__attribution span {
  font-size: 13px;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .td-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (min-width: 1200px) {
  .td-written-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* span the last 2 across 2 and 3 */
  .td-written-grid .td-card:nth-child(4) {
    grid-column: 1 / 2;
  }

  .td-written-grid .td-card:nth-child(5) {
    grid-column: 2 / 3;
  }
}


/* ------------------------------------------------------------
   FINAL CTA — Blue Gradient (v2)
   ------------------------------------------------------------ */
.final-cta-gradient {
  background: var(--brand-gradient);
  text-align: center;
}

.final-cta-gradient__inner {
  max-width: 680px;
  margin: 0 auto;
}

.final-cta-gradient__inner h2 {
  color: var(--text-white);
  margin-bottom: 16px;
}

.final-cta-gradient__inner p {
  margin-bottom: 12px;
}

.final-cta-gradient__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  align-items: center;
}

.btn--white {
  background: var(--bg-white);
  color: var(--brand);
  font-weight: var(--fw-bold);
  border: 2px solid var(--bg-white);
  padding: 14px 32px;
  border-radius: var(--r-pill);
  font-size: var(--fs-btn);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn--white:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand);
  transform: translateY(-1px);
}

.btn--white-outline {
  background: transparent;
  color: var(--text-white);
  font-weight: var(--fw-medium);
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 14px 32px;
  border-radius: var(--r-pill);
  font-size: var(--fs-btn);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn--white-outline:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
}

.final-cta-gradient__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.final-cta-gradient__trust span {
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
  .final-cta-gradient__buttons {
    flex-direction: row;
    justify-content: center;
  }
}
