﻿/* Custom typography and design tokens */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Font Family */
  --font-headline: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* HSL Palette Colors (Light Mode Default) */
  --color-surface: #f9f9fc;
  --color-surface-tint: #a14000;
  --color-surface-dim: #dadadc;
  --color-on-error: #ffffff;
  --color-error-container: #ffdad6;
  --color-secondary-fixed: #ffdbcc;
  --color-surface-variant: #e2e2e5;
  --color-on-surface: #1a1c1e;
  --color-on-background: #1a1c1e;
  --color-secondary: #954920;
  --color-inverse-surface: #2f3133;
  --color-surface-container-highest: #e2e2e5;
  --color-on-primary-container: #521d00;
  --color-on-secondary: #ffffff;
  --color-tertiary-fixed-dim: #9dcaff;
  --color-tertiary-fixed: #d1e4ff;
  --color-inverse-on-surface: #f0f0f3;
  --color-secondary-container: #fc9b6b;
  --color-tertiary: #0061a2;
  --color-on-tertiary-fixed-variant: #00497c;
  --color-on-primary-fixed: #351000;
  --color-on-tertiary: #ffffff;
  --color-tertiary-container: #009afc;
  --color-error: #ba1a1a;
  --color-on-tertiary-container: #003053;
  --color-on-surface-variant: #594136;
  --color-background: #f9f9fc;
  --color-primary-container: #f96802;
  --color-surface-container: #eeeef0;
  --color-surface-container-lowest: #ffffff;
  --color-primary-fixed: #ffdbcc;
  --color-secondary-fixed-dim: #ffb694;
  --color-primary: #a14000;
  --color-on-error-container: #93000a;
  --color-outline-variant: #e2bfb1;
  --color-on-primary: #ffffff;
  --color-surface-container-high: #e8e8ea;
  --color-on-tertiary-fixed: #001d35;
  --color-surface-container-low: #f3f3f6;
  --color-primary-fixed-dim: #ffb694;
  --color-on-secondary-fixed-variant: #77320a;
  --color-on-secondary-fixed: #351000;
  --color-on-primary-fixed-variant: #7b2f00;
  --color-inverse-primary: #ffb694;
  --color-surface-bright: #f9f9fc;
  --color-on-secondary-container: #753108;
  --color-outline: #8e7164;

  --color-header-bg: rgba(255, 255, 255, 0.8);
  --color-nav-link: #334155;
  --color-nav-link-hover: #f96802;
  --color-nav-link-active: #f96802;

  --color-card-border: rgba(142, 113, 100, 0.15);
  --color-card-shadow: rgba(0, 0, 0, 0.04);
}

/* Dark Mode Variables Override */
.dark {
  --color-surface: #0a0e17;
  --color-surface-tint: #ffb694;
  --color-surface-dim: #0f172a;
  --color-on-error: #600008;
  --color-error-container: #93000a;
  --color-secondary-fixed: #351000;
  --color-surface-variant: #1e293b;
  --color-on-surface: #f3f4f6;
  --color-on-background: #f3f4f6;
  --color-secondary: #fc9b6b;
  --color-inverse-surface: #e2e2e5;
  --color-surface-container-highest: #334155;
  --color-on-primary-container: #ffdbcc;
  --color-on-secondary: #521d00;
  --color-tertiary-fixed-dim: #00497c;
  --color-tertiary-fixed: #003053;
  --color-inverse-on-surface: #1a1c1e;
  --color-secondary-container: #954920;
  --color-tertiary: #9dcaff;
  --color-on-tertiary-fixed-variant: #d1e4ff;
  --color-on-primary-fixed: #ffdbcc;
  --color-on-tertiary: #003053;
  --color-tertiary-container: #0061a2;
  --color-error: #ffb4ab;
  --color-on-tertiary-container: #d1e4ff;
  --color-on-surface-variant: #cbd5e1;
  --color-background: #0a0e17;
  --color-primary-container: #f96802;
  --color-surface-container: #111827;
  --color-surface-container-lowest: #0d131f;
  --color-primary-fixed: #521d00;
  --color-secondary-fixed-dim: #77320a;
  --color-primary: #ffb694;
  --color-on-error-container: #ffdad6;
  --color-outline-variant: #334155;
  --color-on-primary: #0a0e17;
  --color-surface-container-high: #1e293b;
  --color-on-tertiary-fixed: #d1e4ff;
  --color-surface-container-low: #0f172a;
  --color-primary-fixed-dim: #7b2f00;
  --color-on-secondary-fixed-variant: #ffb694;
  --color-on-secondary-fixed: #ffdbcc;
  --color-on-primary-fixed-variant: #ffb694;
  --color-inverse-primary: #a14000;
  --color-surface-bright: #0f172a;
  --color-on-secondary-container: #ffdbcc;
  --color-outline: #94a3b8;

  --color-header-bg: rgba(10, 14, 23, 0.85);
  --color-nav-link: #cbd5e1;
  --color-nav-link-hover: #ffb694;
  --color-nav-link-active: #f96802;

  --color-card-border: rgba(255, 255, 255, 0.08);
  --color-card-shadow: rgba(0, 0, 0, 0.3);
}

/* Base resets and smooth behavior */
html {
  scroll-behavior: smooth;
}

body {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

/* Signature Gradient glow classes */
.signature-glow {
  background: linear-gradient(135deg, #f96802 0%, #a14000 100%);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.signature-glow::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ff8c37 0%, #c44e00 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.signature-glow:hover::after {
  opacity: 1;
}

.signature-glow > * {
  position: relative;
  z-index: 2;
}

/* Glassmorphic header */
.glass-header {
  background-color: var(--color-header-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--color-card-border);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.site-logo {
  width: auto;
  height: 54px;
  object-fit: contain;
  display: block;
}

@media (max-width: 640px) {
  .site-logo {
    height: 44px;
  }
}

/* Hide scrollbar utility */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Process step number styles */
.step-number {
  -webkit-text-stroke: 1.5px #f96802;
  color: transparent;
  font-family: var(--font-headline);
  transition: -webkit-text-stroke 0.3s ease;
}

.dark .step-number {
  -webkit-text-stroke: 1.5px #ffb694;
}

/* Custom premium hover cards */
.premium-card {
  border: 1px solid var(--color-card-border);
  background-color: var(--color-surface-container-lowest);
  box-shadow: 0 4px 20px -2px var(--color-card-shadow);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s ease, 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s ease;
}

.premium-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary-container);
  box-shadow: 0 20px 30px -10px rgba(249, 104, 2, 0.15);
}

/* 3D SEO network and dashboard treatment */
.seo-network-lab {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: 3rem;
  perspective: 1100px;
}

.seo-network-viewport {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid rgba(249, 104, 2, 0.22);
  border-radius: 0.75rem;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98)),
    radial-gradient(circle at 55% 45%, rgba(249, 104, 2, 0.18), transparent 42%);
  box-shadow:
    0 34px 75px -42px rgba(0, 0, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: rotateX(2deg) rotateY(-7deg);
  transform-style: preserve-3d;
}

#seo-network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.seo-network-fallback {
  position: absolute;
  inset: auto 1.25rem 1.25rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  color: rgba(249, 104, 2, 0.7);
  border: 1px solid rgba(249, 104, 2, 0.25);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
}

.seo-network-fallback .material-symbols-outlined {
  font-size: 2rem;
}

.seo-network-copy {
  transform: translateZ(24px);
}

.seo-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.seo-signal-grid span {
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.8rem 0.9rem;
  color: var(--color-on-surface);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--color-card-border);
  border-radius: 0.5rem;
  background: var(--color-surface-container-lowest);
  box-shadow: 0 16px 34px -28px rgba(0, 0, 0, 0.55);
}

.roi-dashboard-3d {
  perspective: 1200px;
  transform-style: preserve-3d;
  isolation: isolate;
}

.dashboard-depth-grid {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: rotateX(64deg) translateY(32px) scale(1.18);
  transform-origin: center bottom;
  pointer-events: none;
}

.dashboard-depth-line {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 104, 2, 0.55), transparent);
  pointer-events: none;
}

.dashboard-depth-line-a {
  top: 28%;
  transform: translateZ(30px);
}

.dashboard-depth-line-b {
  bottom: 24%;
  transform: translateZ(16px);
}

.dashboard-card-3d {
  position: relative;
  transform: translateZ(22px) rotateX(2deg);
  box-shadow:
    0 26px 45px -32px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  backdrop-filter: blur(12px);
}

.dashboard-card-3d-raised {
  transform: translateZ(46px) rotateX(2deg) translateY(-10px);
}

.dashboard-card-3d::before {
  content: "";
  position: absolute;
  inset: 0.65rem;
  border: 1px solid rgba(249, 104, 2, 0.12);
  border-radius: 0.85rem;
  pointer-events: none;
}

.roi-dashboard-3d:hover .dashboard-card-3d {
  transform: translateZ(34px) rotateX(0deg) translateY(-4px);
  border-color: rgba(249, 104, 2, 0.32);
  box-shadow: 0 32px 65px -34px rgba(249, 104, 2, 0.28);
}

.roi-dashboard-3d:hover .dashboard-card-3d-raised {
  transform: translateZ(58px) rotateX(0deg) translateY(-16px);
}

@media (max-width: 1023px) {
  .seo-network-lab {
    grid-template-columns: 1fr;
  }

  .seo-network-viewport {
    transform: none;
  }

  .dashboard-card-3d,
  .dashboard-card-3d-raised,
  .roi-dashboard-3d:hover .dashboard-card-3d,
  .roi-dashboard-3d:hover .dashboard-card-3d-raised {
    transform: none;
  }
}

@media (max-width: 640px) {
  .seo-network-viewport {
    min-height: 300px;
  }

  .seo-signal-grid {
    grid-template-columns: 1fr;
  }
}

/* Problems to outcomes premium section */
.problem-outcome-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, var(--color-surface) 0%, var(--color-surface-container-lowest) 52%, var(--color-surface) 100%);
}

.problem-outcome-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(249, 104, 2, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249, 104, 2, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 78%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 78%, transparent);
  transform: perspective(900px) rotateX(62deg) translateY(-8rem) scale(1.2);
  transform-origin: center top;
}

.problem-outcome-section::after {
  content: none;
}

.problem-outcome-intro {
  position: relative;
}

.problem-outcome-intro::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.25rem;
  width: 7rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary-container), transparent);
  transform: translateX(-50%);
}

.problem-outcome-grid {
  position: relative;
  perspective: 1400px;
}

.problem-outcome-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 1.5rem;
  box-shadow:
    0 22px 55px -42px rgba(15, 23, 42, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transform: none;
  transition:
    transform 0.26s ease,
    border-color 0.32s ease,
    box-shadow 0.32s ease;
}

.problem-outcome-card-problem {
  color: #ffffff;
  border-color: rgba(248, 113, 113, 0.22) !important;
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98)),
    radial-gradient(circle at top left, rgba(185, 28, 28, 0.22), transparent 40%) !important;
}

.problem-outcome-card-outcome {
  border-color: rgba(249, 104, 2, 0.32) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(255, 247, 237, 0.96)),
    radial-gradient(circle at top right, rgba(249, 104, 2, 0.12), transparent 42%) !important;
}

.dark .problem-outcome-card-problem {
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98)),
    radial-gradient(circle at top left, rgba(185, 28, 28, 0.22), transparent 40%) !important;
}

.dark .problem-outcome-card-outcome {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(255, 247, 237, 0.96)),
    radial-gradient(circle at top right, rgba(249, 104, 2, 0.12), transparent 42%) !important;
}

.problem-outcome-card-problem h3,
.problem-outcome-card-problem li,
.problem-outcome-card-problem li span:not(.material-symbols-outlined) {
  color: rgba(255, 255, 255, 0.84) !important;
}

.problem-outcome-card-problem h3 {
  color: #ffffff !important;
}
.problem-heading-accent {
  display: inline;
}

.problem-heading-accent-problem {
  color: #fca5a5;
}

.problem-heading-accent-outcome {
  color: var(--color-primary-container);
}

.dark .problem-outcome-card-problem h3,
.dark .problem-outcome-card-problem li,
.dark .problem-outcome-card-problem li span:not(.material-symbols-outlined) {
  color: rgba(255, 255, 255, 0.84) !important;
}

.dark .problem-outcome-card-problem h3 {
  color: #ffffff !important;
}

.problem-outcome-card-outcome h3,
.problem-outcome-card-outcome li,
.problem-outcome-card-outcome li span:not(.material-symbols-outlined) {
  color: var(--color-on-surface) !important;
}

.dark .problem-outcome-card {
  box-shadow:
    0 34px 74px -50px rgba(0, 0, 0, 0.9),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.problem-outcome-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 0;
  height: 3px;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.problem-outcome-card::after {
  content: none;
}

.problem-outcome-card > * {
  position: relative;
  z-index: 1;
}

.problem-outcome-card-problem::before {
  background: linear-gradient(90deg, #b91c1c, rgba(185, 28, 28, 0));
}

.problem-outcome-card-outcome::before {
  background: linear-gradient(90deg, #f96802, rgba(249, 104, 2, 0));
}

.problem-outcome-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 28px 62px -46px rgba(15, 23, 42, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.problem-outcome-card:hover::before {
  opacity: 1;
}

.problem-outcome-card-problem:hover {
  border-color: rgba(248, 113, 113, 0.34) !important;
  box-shadow: 0 30px 70px -48px rgba(2, 6, 23, 0.82);
}

.problem-outcome-card-outcome:hover {
  border-color: rgba(249, 104, 2, 0.48) !important;
  box-shadow: 0 30px 70px -48px rgba(249, 104, 2, 0.34);
}
.problem-outcome-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0;
}

.problem-outcome-index {
  color: rgba(15, 23, 42, 0.1);
  font-family: var(--font-headline);
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1;
}

.dark .problem-outcome-index {
  color: rgba(255, 255, 255, 0.1);
}

.problem-outcome-card-problem .problem-outcome-index {
  color: rgba(255, 255, 255, 0.1);
}

.problem-outcome-card-outcome .problem-outcome-index {
  color: rgba(249, 104, 2, 0.18);
}


.problem-outcome-chip {
  display: inline-flex;
  align-items: center;
  min-height: 1.55rem;
  margin-bottom: 0;
  padding: 0.36rem 0.68rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.problem-outcome-chip-problem {
  color: #fecaca;
  border: 1px solid rgba(248, 113, 113, 0.28);
  background: rgba(127, 29, 29, 0.28);
}

.problem-outcome-chip-outcome {
  color: #9a3412;
  border: 1px solid rgba(249, 104, 2, 0.24);
  background: rgba(249, 104, 2, 0.08);
}

.dark .problem-outcome-chip-outcome {
  color: #ffdbcc;
}

.problem-outcome-icon {
  position: relative;
  flex: 0 0 auto;
  box-shadow: 0 14px 28px -18px currentColor;
  transition: transform 0.34s ease, box-shadow 0.34s ease;
}

.problem-outcome-icon-problem {
  background: rgba(127, 29, 29, 0.34) !important;
  color: #f87171 !important;
  border: 1px solid rgba(248, 113, 113, 0.24);
}

.problem-outcome-icon-outcome {
  background: rgba(249, 104, 2, 0.1) !important;
  color: #f96802 !important;
  border: 1px solid rgba(249, 104, 2, 0.2);
}

.problem-outcome-icon::after {
  content: none;
}

.problem-outcome-card:hover .problem-outcome-icon {
  transform: none;
  box-shadow: 0 18px 34px -16px currentColor;
}

.problem-outcome-list li {
  position: relative;
  min-height: 1.65rem;
  padding: 0.28rem 0.35rem;
  border-radius: 0.55rem;
  opacity: 0;
  transform: translateY(8px);
  font-size: 0.92rem;
  line-height: 1.35;
}

.problem-outcome-list li::after {
  content: "";
  position: absolute;
  left: 2rem;
  right: 0;
  bottom: -0.2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(142, 113, 100, 0.2), transparent);
}

.problem-outcome-card-problem .problem-outcome-list li::after {
  background: linear-gradient(90deg, rgba(248, 113, 113, 0.18), transparent);
}

.problem-outcome-card-outcome .problem-outcome-list li::after {
  background: linear-gradient(90deg, rgba(249, 104, 2, 0.18), transparent);
}

.problem-outcome-list li .material-symbols-outlined {
  transition: transform 0.28s ease, filter 0.28s ease, background-color 0.24s ease;
}

.problem-outcome-card-problem .problem-outcome-list li:hover {
  background: rgba(255, 255, 255, 0.045);
}

.problem-outcome-card-outcome .problem-outcome-list li:hover {
  background: rgba(249, 104, 2, 0.045);
}

.problem-outcome-list li:hover .material-symbols-outlined {
  transform: none;
  filter: none;
}

.scroll-reveal.revealed .problem-outcome-list li {
  animation: problem-outcome-item-in 0.62s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.scroll-reveal.revealed .problem-outcome-list li:nth-child(1) { animation-delay: 0.04s; }
.scroll-reveal.revealed .problem-outcome-list li:nth-child(2) { animation-delay: 0.08s; }
.scroll-reveal.revealed .problem-outcome-list li:nth-child(3) { animation-delay: 0.12s; }
.scroll-reveal.revealed .problem-outcome-list li:nth-child(4) { animation-delay: 0.16s; }
.scroll-reveal.revealed .problem-outcome-list li:nth-child(5) { animation-delay: 0.2s; }
.scroll-reveal.revealed .problem-outcome-list li:nth-child(6) { animation-delay: 0.24s; }
.scroll-reveal.revealed .problem-outcome-list li:nth-child(7) { animation-delay: 0.28s; }
.scroll-reveal.revealed .problem-outcome-list li:nth-child(8) { animation-delay: 0.32s; }
.scroll-reveal.revealed .problem-outcome-list li:nth-child(9) { animation-delay: 0.36s; }
.scroll-reveal.revealed .problem-outcome-list li:nth-child(10) { animation-delay: 0.4s; }
.scroll-reveal.revealed .problem-outcome-list li:nth-child(11) { animation-delay: 0.44s; }

@media (min-width: 768px) {
  .problem-outcome-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .problem-outcome-card-problem,
  .problem-outcome-card-outcome {
    border-radius: 1.5rem;
  }
}

@media (max-width: 640px) {
  .problem-outcome-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .problem-outcome-card {
    border-radius: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .problem-outcome-card,
  .problem-outcome-card::after,
  .problem-outcome-icon,
  .problem-outcome-icon::after,
  .problem-outcome-list li {
    animation: none !important;
    transition: none !important;
  }

  .problem-outcome-list li {
    opacity: 1;
    transform: none;
  }
}

/* Custom Modal style framework */
.modal-overlay {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  transform: scale(0.95) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

/* Custom success checkmark animation */
.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #22c55e;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #22c55e;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #22c55e;
  }
}

@keyframes problem-outcome-item-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll Fade In Animations */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Floating back-to-top button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Custom Responsive Hero Banner Styling */
#hero {
  background-image: url('hero-banner.png');
  background-size: contain;
  background-position: right center;
  background-repeat: no-repeat;
  background-color: #16151a; /* Exact color of the banner image left edge */
  min-height: 576px;
}

@media (max-width: 1023px) {
  #hero {
    background-image: url('hero-banner.png');
    background-size: cover;
    background-position: center center;
  }
}

/* Reel showcase */
.results-compact {
  display: grid;
  align-items: center;
  gap: 2rem;
}

.reel-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  max-width: 720px;
  margin: 0 auto;
  min-height: 360px;
  perspective: 1200px;
}

.reel-card {
  position: relative;
  display: block;
  width: min(23vw, 195px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 6px solid #ffffff;
  border-radius: 1.5rem;
  background: #020617;
  box-shadow: 0 24px 55px -34px rgba(0, 0, 0, 0.65);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.82);
  transition: transform 0.34s ease, opacity 0.34s ease, box-shadow 0.34s ease, filter 0.34s ease;
}

.reel-card.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.reel-card.is-hidden {
  display: none;
}

.dark .reel-card {
  border-color: #1e293b;
}

.reel-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.48), rgba(2, 6, 23, 0.82));
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.reel-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 28px 65px -30px rgba(249, 104, 2, 0.35);
}

.reel-card.is-active {
  order: 2;
  width: min(25vw, 230px);
  max-width: 230px;
  opacity: 1;
  pointer-events: auto;
  filter: none;
  transform: scale(1);
  z-index: 3;
}

.reel-card.is-side {
  max-width: 195px;
  filter: grayscale(1) contrast(0.95);
  opacity: 0.82;
  z-index: 2;
}

.reel-card.is-side::after {
  opacity: 1;
}

.reel-card.is-prev {
  order: 1;
  transform: rotateY(5deg) scale(0.94);
}

.reel-card.is-next {
  order: 3;
  transform: rotateY(-5deg) scale(0.94);
}

.reel-card.is-side:hover {
  filter: grayscale(0.65) contrast(1);
  opacity: 1;
}

.reel-card.is-prev:hover,
.reel-card.is-next:hover {
  transform: translateY(-4px) scale(0.97);
}

.reel-media,
.reel-bg,
.reel-inline-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.reel-bg {
  display: block;
  background-position: center;
  background-size: cover;
  opacity: 0.82;
  transition: filter 0.34s ease, transform 0.34s ease;
}

.reel-card.is-side .reel-bg {
  transform: scale(1.04);
}

.reel-inline-player {
  z-index: 4;
  border: 0;
  background: #000000;
}

.reel-card.is-playing .reel-bg,
.reel-card.is-playing .reel-play-button,
.reel-card.is-playing .reel-copy,
.reel-card.is-playing::after {
  opacity: 0;
  pointer-events: none;
}

.reel-play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 4.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--color-primary-container);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(249, 104, 2, 0.35);
  transition: transform 0.35s ease;
  z-index: 2;
}

.reel-play-button .material-symbols-outlined {
  font-size: 2.75rem;
}

.reel-card.is-side .reel-play-button {
  width: 3.25rem;
  height: 3.25rem;
}

.reel-card.is-side .reel-play-button .material-symbols-outlined {
  font-size: 2rem;
}

.reel-card:hover .reel-play-button {
  transform: scale(1.08);
}

.reel-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1.25rem;
  text-align: left;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.68), transparent);
}

.reel-copy-featured {
  padding: 1.5rem;
}

.reel-card.is-side .reel-copy {
  padding: 1.1rem;
}

.reel-kicker {
  color: var(--color-primary-container);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.reel-title {
  color: #ffffff;
  font-family: var(--font-headline);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.15;
}

.reel-card.is-active .reel-title {
  font-size: 1.35rem;
}

.reel-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  font-weight: 600;
}

.reel-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
}

@media (max-width: 767px) {
  .results-compact {
    display: block;
  }

  .reel-showcase {
    justify-content: flex-start;
    overflow-x: auto;
    min-height: 360px;
    padding: 0 1rem 0.75rem;
    scroll-snap-type: x mandatory;
  }

  .reel-card {
    flex: 0 0 58vw;
    width: 58vw;
    scroll-snap-align: center;
  }

  .reel-card.is-active {
    flex-basis: 66vw;
    width: 66vw;
  }

  .reel-card.is-prev,
  .reel-card.is-next {
    transform: scale(0.9);
  }
}

@media (min-width: 768px) {
  .results-compact {
    grid-template-columns: minmax(260px, 0.78fr) minmax(520px, 1.22fr);
  }
}

/* Client logo marquee */
.client-logo-section {
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.client-logo-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 10%, #000 90%, transparent);
}

.client-logo-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: client-logo-scroll 28s linear infinite;
}

.client-logo-marquee:hover .client-logo-track {
  animation-play-state: paused;
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 86px;
  flex: 0 0 auto;
  border: 1px solid var(--color-card-border);
  border-radius: 0.5rem;
  background: var(--color-surface-container-lowest);
  color: var(--color-on-surface-variant);
  font-family: var(--font-headline);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px -18px rgba(0, 0, 0, 0.35);
}

.client-logo-wide {
  width: 230px;
}

.client-logo-card img {
  max-width: 142px;
  max-height: 50px;
  object-fit: contain;
  opacity: 0.86;
  transition: filter 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

.client-logo-wide img {
  max-width: 188px;
}

.logo-force-black img {
  filter: brightness(0) saturate(100%);
}

.client-logo-card:hover img {
  opacity: 1;
  transform: scale(1.04);
}

.logo-force-black:hover img {
  filter: brightness(0) saturate(100%);
}

@keyframes client-logo-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@media (max-width: 767px) {
  .client-logo-card {
    width: 148px;
    height: 72px;
  }

  .client-logo-track {
    animation-duration: 22s;
  }
}

/* Desktop density tuning: matches the preferred slightly zoomed-out feel. */
@media (min-width: 768px) {
  html {
    font-size: 90%;
  }

  .site-logo {
    height: 48px;
  }

  #hero {
    min-height: 520px;
  }

  #hero .h-\[550px\] {
    height: 500px;
  }

  .reel-showcase {
    min-height: 325px;
  }

  .client-logo-card {
    height: 78px;
  }

  .seo-network-viewport {
    min-height: 350px;
  }
}

/* Large screen layout: let sections breathe on LED and wide desktop displays. */
@media (min-width: 1536px) {
  .max-w-7xl {
    max-width: min(86vw, 1640px);
  }

  .max-w-5xl {
    max-width: min(74vw, 1200px);
  }

  #hero {
    min-height: clamp(620px, 70vh, 760px);
    background-size: auto 100%;
  }

  #hero .h-\[550px\] {
    height: clamp(500px, 58vh, 640px);
  }
}

/* Premium services card system */
#services .grid > div {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 100%;
  border-color: rgba(142, 113, 100, 0.14) !important;
  background:
    linear-gradient(180deg, var(--color-surface-container-lowest), rgba(255, 247, 237, 0.62)),
    linear-gradient(135deg, rgba(249, 104, 2, 0.08), transparent 42%);
  box-shadow:
    0 24px 65px -48px rgba(15, 23, 42, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  transform: translateY(0);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.32s ease,
    background-color 0.28s ease;
}

.dark #services .grid > div {
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.98), rgba(17, 24, 39, 0.98)),
    linear-gradient(135deg, rgba(249, 104, 2, 0.12), transparent 42%);
  box-shadow:
    0 26px 72px -50px rgba(0, 0, 0, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

#services .grid > div::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  z-index: -1;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary-container), rgba(249, 104, 2, 0));
}

#services .grid > div::after {
  position: absolute;
  top: 1.4rem;
  right: 1.55rem;
  z-index: -1;
  color: rgba(15, 23, 42, 0.06);
  font-family: var(--font-headline);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
}

.dark #services .grid > div::after {
  color: rgba(255, 255, 255, 0.06);
}

#services .grid > div:nth-child(1)::after { content: "01"; }
#services .grid > div:nth-child(2)::after { content: "02"; }
#services .grid > div:nth-child(3)::after { content: "03"; }
#services .grid > div:nth-child(4)::after { content: "04"; }
#services .grid > div:nth-child(5)::after { content: "05"; }
#services .grid > div:nth-child(6)::after { content: "06"; }

#services .grid > div:hover {
  transform: translateY(-5px);
  border-color: rgba(249, 104, 2, 0.42) !important;
  box-shadow:
    0 34px 78px -50px rgba(249, 104, 2, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

#services .grid > div > div:first-child {
  width: 3.75rem;
  height: 3.75rem;
  margin-bottom: 1.6rem;
  border: 1px solid rgba(249, 104, 2, 0.18);
  background: rgba(249, 104, 2, 0.08) !important;
  box-shadow: 0 18px 34px -26px rgba(249, 104, 2, 0.7);
}

#services .grid > div:hover > div:first-child {
  background: var(--color-primary-container) !important;
  border-color: rgba(249, 104, 2, 0.4);
}

#services .grid > div h3 {
  max-width: 82%;
  line-height: 1.15;
}

#services .grid > div p {
  margin-bottom: 1.5rem;
}

#services .grid > div ul {
  padding-top: 1rem;
  border-top: 1px solid rgba(142, 113, 100, 0.14);
}

.dark #services .grid > div ul {
  border-top-color: rgba(255, 255, 255, 0.08);
}

#services .grid > div li {
  min-height: 2rem;
  padding: 0.2rem 0;
}

@media (max-width: 767px) {
  #services .grid > div::after {
    font-size: 3.25rem;
  }

  #services .grid > div h3 {
    max-width: 100%;
  }
}

/* Bento layout for services: varied card sizes instead of equal old-school cards. */
@media (min-width: 1024px) {
  #services .service-bento-grid {
    grid-auto-rows: minmax(218px, auto);
  }

  #services .service-bento-card-1 {
    grid-column: span 4 / span 4;
    grid-row: span 2 / span 2;
    padding: 3rem !important;
  }

  #services .service-bento-card-2,
  #services .service-bento-card-3,
  #services .service-bento-card-4,
  #services .service-bento-card-5,
  #services .service-bento-card-6 {
    grid-column: span 2 / span 2;
  }

  #services .service-bento-card-1 h3 {
    max-width: 70%;
    font-size: 2.35rem;
    line-height: 1.05;
  }

  #services .service-bento-card-1 p {
    max-width: 42rem;
    font-size: 1.05rem;
  }

  #services .service-bento-card-1 ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 1rem;
    margin-top: auto;
  }

  #services .service-bento-card-2,
  #services .service-bento-card-3 {
    padding: 2rem !important;
  }

  #services .service-bento-card-2 > div:first-child,
  #services .service-bento-card-3 > div:first-child,
  #services .service-bento-card-4 > div:first-child,
  #services .service-bento-card-5 > div:first-child,
  #services .service-bento-card-6 > div:first-child {
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 1.25rem;
  }

  #services .service-bento-card-2 h3,
  #services .service-bento-card-3 h3,
  #services .service-bento-card-4 h3,
  #services .service-bento-card-5 h3,
  #services .service-bento-card-6 h3 {
    max-width: 88%;
    font-size: 1.45rem;
  }

  #services .service-bento-card-2 p,
  #services .service-bento-card-3 p,
  #services .service-bento-card-4 p,
  #services .service-bento-card-5 p,
  #services .service-bento-card-6 p {
    margin-bottom: 1.1rem;
    font-size: 0.92rem;
  }

  #services .service-bento-card-4,
  #services .service-bento-card-5,
  #services .service-bento-card-6 {
    padding: 2rem !important;
  }
}

/* Service odyssey: premium 3D scroll stage. */
.service-odyssey {
  --service-orange: #f96802;
  --service-cyan: #38bdf8;
  --service-ink: #050711;
  --service-panel: rgba(9, 13, 24, 0.78);
  --service-line: rgba(255, 255, 255, 0.12);
  --mx: 0;
  --my: 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 9rem) 0;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(249, 104, 2, 0.16), transparent 26%),
    linear-gradient(245deg, rgba(56, 189, 248, 0.13), transparent 28%),
    linear-gradient(180deg, #050711 0%, #090d18 48%, #050711 100%);
}

.service-odyssey::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 78%, transparent);
  opacity: 0.45;
}

.service-odyssey::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(105deg, transparent 8%, rgba(249, 104, 2, 0.14) 24%, transparent 42%),
    linear-gradient(255deg, transparent 12%, rgba(56, 189, 248, 0.1) 30%, transparent 52%);
  opacity: 0.72;
  transform: translate3d(calc(var(--mx) * 18px), calc(var(--my) * 18px), 0);
  transition: transform 0.18s ease-out;
}

.service-odyssey-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.service-grid-plane {
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -17rem;
  height: 34rem;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, rgba(249, 104, 2, 0.14) 0 1px, transparent 1px 80px);
  transform: perspective(760px) rotateX(64deg) translateY(calc(var(--stage-progress, 0) * -28px));
  transform-origin: bottom center;
  mask-image: linear-gradient(180deg, transparent 0%, #000 20%, #000 68%, transparent 100%);
  opacity: 0.34;
}

.service-orbit {
  position: absolute;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(249, 104, 2, 0.24);
  border-radius: 50%;
  transform: rotateX(68deg) rotateZ(18deg);
  opacity: 0.55;
}

.service-orbit-one {
  top: 4%;
  right: -10rem;
  animation: serviceRingDrift 16s linear infinite;
}

.service-orbit-two {
  left: -12rem;
  bottom: 4rem;
  width: 30rem;
  height: 30rem;
  border-color: rgba(56, 189, 248, 0.18);
  animation: serviceRingDrift 20s linear infinite reverse;
}

.service-odyssey-inner {
  position: relative;
  z-index: 1;
}

.service-odyssey-header {
  max-width: 64rem;
}

.service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(249, 104, 2, 0.36);
  border-radius: 8px;
  background: rgba(249, 104, 2, 0.1);
  color: #ffd5bf;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-kicker::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--service-orange);
  box-shadow: 0 0 24px rgba(249, 104, 2, 0.88);
}

.service-odyssey-header h2 {
  max-width: 58rem;
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 5.6rem);
  letter-spacing: 0;
}

.service-odyssey-header h2 span {
  display: block;
  color: var(--service-orange);
}

.service-odyssey-header p {
  max-width: 45rem;
  margin-top: 1.35rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.8;
}

.service-odyssey-layout {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: start;
  margin-top: clamp(3.5rem, 6vw, 6.5rem);
}

.service-command-panel {
  position: sticky;
  top: 7.2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: clamp(1.4rem, 2.5vw, 2.25rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025)),
    var(--service-panel);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px);
  transform:
    perspective(1100px)
    rotateX(calc(var(--my) * -2deg))
    rotateY(calc(var(--mx) * 3deg));
  transform-style: preserve-3d;
  transition: transform 0.18s ease-out, border-color 0.24s ease, box-shadow 0.24s ease;
}

.service-command-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(249, 104, 2, 0.28), transparent 34%),
    linear-gradient(315deg, rgba(56, 189, 248, 0.18), transparent 42%);
  opacity: 0.48;
  pointer-events: none;
}

.service-command-panel::after {
  content: "";
  position: absolute;
  inset: auto 1rem 1rem 1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 104, 2, 0.65), rgba(56, 189, 248, 0.45), transparent);
  opacity: 0.7;
}

.service-command-panel > * {
  position: relative;
  z-index: 1;
}

.service-command-eyebrow {
  width: max-content;
  margin-bottom: 1.25rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: #ffbc99;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-command-panel h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-headline);
  font-size: clamp(1.9rem, 3vw, 3.15rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.service-command-panel p {
  margin: 1.2rem 0 1.7rem;
  color: rgba(255, 255, 255, 0.67);
  line-height: 1.75;
}

.service-signal-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.service-signal-board div {
  min-height: 6.1rem;
  padding: 1rem 0.8rem;
  background: rgba(2, 6, 23, 0.54);
}

.service-signal-board strong {
  display: block;
  color: #ffffff;
  font-family: var(--font-headline);
  font-size: clamp(1.7rem, 2.3vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
}

.service-signal-board span {
  display: block;
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.service-depth-stack {
  position: relative;
  display: grid;
  gap: clamp(1.1rem, 2.2vw, 1.75rem);
  padding: 0.4rem 0 4rem;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.service-depth-stack::before {
  content: "";
  position: absolute;
  top: -2rem;
  bottom: 2rem;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(249, 104, 2, 0.6), rgba(56, 189, 248, 0.38), transparent);
  transform: translateX(-50%);
  opacity: 0.45;
}

.service-depth-stack::after {
  content: "";
  position: absolute;
  top: calc(var(--stage-progress, 0) * 100%);
  left: calc(50% - 0.36rem);
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow:
    0 0 0 8px rgba(249, 104, 2, 0.12),
    0 0 30px rgba(249, 104, 2, 0.82);
  opacity: 0.8;
  transform: translateY(-50%);
}

.service-depth-card {
  --card-active: 0.2;
  --card-offset: 0;
  position: relative;
  max-width: 42rem;
  will-change: transform, opacity, filter;
  opacity: calc(0.52 + (var(--card-active) * 0.48));
  filter: saturate(calc(0.74 + (var(--card-active) * 0.26))) brightness(calc(0.84 + (var(--card-active) * 0.16)));
  transform:
    perspective(1300px)
    translate3d(0, calc(var(--card-offset) * -20px), calc(var(--card-active) * 72px))
    rotateX(calc((var(--card-offset) * -5deg) + (var(--my) * -3deg)))
    rotateY(calc(var(--mx) * 6deg))
    scale(calc(0.955 + (var(--card-active) * 0.045)));
  transform-style: preserve-3d;
  transition: filter 0.18s ease-out, opacity 0.18s ease-out;
}

.service-depth-card:nth-child(odd) {
  justify-self: start;
  margin-right: clamp(1rem, 7vw, 6rem);
}

.service-depth-card:nth-child(even) {
  justify-self: end;
  margin-left: clamp(1rem, 7vw, 6rem);
}

.service-depth-card-feature {
  max-width: 50rem;
  margin-left: clamp(-1rem, -2vw, -0.25rem);
}

.service-card-shell {
  position: relative;
  overflow: hidden;
  min-height: 20rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: clamp(1.35rem, 2.65vw, 2.35rem);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035) 48%, rgba(249, 104, 2, 0.08)),
    rgba(8, 12, 23, 0.9);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  transform: translateZ(0);
  transform-style: preserve-3d;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.service-card-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(249, 104, 2, 0.74), rgba(56, 189, 248, 0.32), transparent 62%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: calc(0.2 + (var(--card-active) * 0.48));
  pointer-events: none;
}

.service-card-shell::after {
  content: "";
  position: absolute;
  left: -18%;
  right: -18%;
  top: 24%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(249, 104, 2, 0.68), rgba(56, 189, 248, 0.44), transparent);
  opacity: calc(0.08 + (var(--card-active) * 0.5));
  transform: translateZ(42px) rotate(-5deg);
  animation: serviceScanLine 5.5s ease-in-out infinite;
  animation-delay: calc(var(--service-index) * -0.55s);
}

.service-depth-card:hover .service-card-shell {
  border-color: rgba(249, 104, 2, 0.45);
  box-shadow:
    0 38px 95px rgba(0, 0, 0, 0.48),
    0 0 52px rgba(249, 104, 2, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateZ(34px);
}

.service-card-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: clamp(1.6rem, 3vw, 2.5rem);
}

.service-number {
  position: absolute;
  top: -0.55rem;
  right: -0.25rem;
  z-index: -1;
  color: rgba(255, 255, 255, 0.075);
  font-family: var(--font-headline);
  font-size: clamp(3.2rem, 6vw, 6.4rem);
  font-weight: 900;
  line-height: 0.8;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.45rem 0.72rem;
  border: 1px solid rgba(249, 104, 2, 0.3);
  border-radius: 8px;
  background: rgba(249, 104, 2, 0.1);
  color: #ffbf9f;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 4.2rem;
  height: 4.2rem;
  margin-bottom: 1.35rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(249, 104, 2, 0.24), rgba(56, 189, 248, 0.08)),
    rgba(255, 255, 255, 0.055);
  color: #ffffff;
  box-shadow: 0 20px 44px rgba(249, 104, 2, 0.12);
  transform: translateZ(36px);
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.service-card-icon span {
  font-size: 2.1rem;
}

.service-depth-card:hover .service-card-icon {
  border-color: rgba(249, 104, 2, 0.45);
  background:
    linear-gradient(135deg, rgba(249, 104, 2, 0.9), rgba(255, 147, 74, 0.72));
  transform: translateZ(58px) scale(1.05);
}

.service-card-shell h3 {
  position: relative;
  z-index: 1;
  max-width: 24rem;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-headline);
  font-size: clamp(2rem, 3.2vw, 3.15rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  transform: translateZ(30px);
}

.service-card-shell p {
  position: relative;
  z-index: 1;
  max-width: 33rem;
  margin: 1rem 0 1.35rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.98rem;
  line-height: 1.75;
  transform: translateZ(24px);
}

.service-card-shell ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  list-style: none;
  transform: translateZ(28px);
}

.service-card-shell li {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.35;
}

.service-card-shell li span {
  color: var(--service-orange);
  font-size: 1.18rem;
}

.service-depth-card-feature .service-card-shell {
  min-height: 25rem;
  padding: clamp(1.7rem, 3.5vw, 3rem);
  background:
    linear-gradient(135deg, rgba(249, 104, 2, 0.24), transparent 34%),
    linear-gradient(315deg, rgba(56, 189, 248, 0.15), transparent 38%),
    rgba(8, 12, 23, 0.92);
}

.service-depth-card-feature .service-card-shell h3 {
  font-size: clamp(2.8rem, 5vw, 5rem);
}

.service-depth-card-feature .service-card-shell p {
  font-size: 1.08rem;
}

@keyframes serviceScanLine {
  0%,
  100% {
    top: 18%;
    opacity: 0.12;
  }

  48% {
    top: 76%;
    opacity: 0.62;
  }
}

@keyframes serviceRingDrift {
  from {
    transform: rotateX(68deg) rotateZ(0deg);
  }

  to {
    transform: rotateX(68deg) rotateZ(360deg);
  }
}

@media (min-width: 1536px) {
  .service-odyssey-layout {
    grid-template-columns: minmax(20rem, 0.66fr) minmax(0, 1.34fr);
  }

  .service-depth-card {
    max-width: 48rem;
  }

  .service-depth-card-feature {
    max-width: 58rem;
  }
}

@media (max-width: 1023px) {
  .service-odyssey {
    padding: 5rem 0;
  }

  .service-odyssey-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }

  .service-command-panel {
    position: relative;
    top: auto;
  }

  .service-depth-card,
  .service-depth-card:nth-child(odd),
  .service-depth-card:nth-child(even),
  .service-depth-card-feature {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    justify-self: stretch;
  }

  .service-depth-stack::before,
  .service-depth-stack::after {
    left: 1.2rem;
  }
}

@media (max-width: 640px) {
  .service-odyssey-header h2 {
    font-size: clamp(2.2rem, 12vw, 3.45rem);
  }

  .service-signal-board {
    grid-template-columns: 1fr;
  }

  .service-signal-board div {
    min-height: auto;
  }

  .service-card-shell,
  .service-depth-card-feature .service-card-shell {
    min-height: auto;
  }

  .service-card-topline {
    margin-bottom: 1.7rem;
  }

  .service-card-shell h3,
  .service-depth-card-feature .service-card-shell h3 {
    font-size: clamp(2rem, 12vw, 3rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-odyssey::after,
  .service-command-panel,
  .service-grid-plane,
  .service-depth-card,
  .service-card-shell,
  .service-card-icon {
    transform: none !important;
    transition: none !important;
  }

  .service-card-shell::after,
  .service-orbit {
    animation: none !important;
  }
}
/* Option 1: sticky service deck override. */
.service-odyssey {
  --deck-sticky-top: clamp(6.4rem, 12vh, 8.4rem);
  --deck-surface: rgba(8, 12, 24, 0.9);
  padding: clamp(5rem, 8vw, 8rem) 0 clamp(5rem, 9vw, 9rem);
  background:
    linear-gradient(135deg, rgba(249, 104, 2, 0.15), transparent 26%),
    linear-gradient(225deg, rgba(56, 189, 248, 0.09), transparent 30%),
    linear-gradient(180deg, #050711 0%, #080d18 48%, #050711 100%);
}

.service-odyssey::after {
  opacity: 0.42;
  transform: translate3d(calc(var(--mx) * 10px), calc(var(--my) * 10px), 0);
}

.service-grid-plane {
  bottom: -20rem;
  opacity: 0.22;
  transform: perspective(860px) rotateX(66deg) translateY(calc(var(--stage-progress, 0) * -18px));
}

.service-orbit {
  opacity: 0.18;
  animation-duration: 32s;
}

.service-odyssey-layout {
  grid-template-columns: minmax(18rem, 0.52fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 6rem);
}

.service-command-panel {
  top: var(--deck-sticky-top);
  transform: translate3d(calc(var(--mx) * 5px), calc(var(--my) * 5px), 0);
}

.service-depth-stack {
  display: block;
  gap: 0;
  min-height: auto;
  padding: 0 0 clamp(18rem, 42vh, 32rem);
  perspective: none;
  transform-style: flat;
}

.service-depth-stack::before {
  top: 0;
  bottom: clamp(12rem, 36vh, 24rem);
  left: -1.1rem;
  transform: none;
  opacity: 0.34;
}

.service-depth-stack::after {
  top: calc(var(--stage-progress, 0) * 78%);
  left: calc(-1.1rem - 0.36rem);
  transition: top 0.18s ease-out;
}

.service-depth-card,
.service-depth-card:nth-child(odd),
.service-depth-card:nth-child(even),
.service-depth-card-feature {
  --deck-active: 0.65;
  --deck-distance: 0;
  --deck-progress: 0;
  --deck-scale: 0.985;
  --deck-opacity: 0.86;
  position: relative;
  max-width: none;
  margin: 0 0 clamp(1.25rem, 4.8vh, 3.1rem) 0;
  justify-self: stretch;
  opacity: var(--deck-opacity);
  filter: saturate(calc(0.84 + (var(--deck-active) * 0.16))) brightness(calc(0.9 + (var(--deck-active) * 0.1)));
  transform: translateY(calc(var(--deck-distance) * -8px)) scale(var(--deck-scale));
  transform-origin: center top;
  transition:
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-depth-card:nth-child(1) { --deck-top-offset: 0rem; z-index: 11; }
.service-depth-card:nth-child(2) { --deck-top-offset: 0.52rem; z-index: 12; }
.service-depth-card:nth-child(3) { --deck-top-offset: 1.04rem; z-index: 13; }
.service-depth-card:nth-child(4) { --deck-top-offset: 1.56rem; z-index: 14; }
.service-depth-card:nth-child(5) { --deck-top-offset: 2.08rem; z-index: 15; }
.service-depth-card:nth-child(6) { --deck-top-offset: 2.6rem; z-index: 16; }

.service-card-shell,
.service-depth-card-feature .service-card-shell {
  min-height: clamp(20rem, 45vh, 28rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-color: rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045) 42%, rgba(249, 104, 2, 0.075)),
    linear-gradient(180deg, rgba(8, 12, 24, 0.96), rgba(5, 7, 17, 0.96));
  box-shadow:
    0 24px 68px rgba(0, 0, 0, 0.34),
    0 0 calc(16px + (var(--deck-active) * 28px)) rgba(249, 104, 2, calc(0.05 + (var(--deck-active) * 0.08))),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transform: none;
  transition:
    border-color 0.28s ease,
    box-shadow 0.34s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.34s ease;
}

.service-card-shell::before {
  opacity: calc(0.18 + (var(--deck-active) * 0.52));
}

.service-card-shell::after {
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(249, 104, 2, 0.1), rgba(249, 104, 2, 0.85), rgba(56, 189, 248, 0.56), rgba(255, 255, 255, 0));
  opacity: calc(0.24 + (var(--deck-active) * 0.5));
  transform: none;
  animation: none;
}

.service-depth-card:hover .service-card-shell {
  transform: none;
  border-color: rgba(249, 104, 2, 0.5);
  box-shadow:
    0 32px 82px rgba(0, 0, 0, 0.42),
    0 0 48px rgba(249, 104, 2, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.service-card-topline {
  margin-bottom: auto;
}

.service-number {
  top: -0.4rem;
  right: 0;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(4.4rem, 9vw, 8.8rem);
}

.service-pill {
  background: rgba(249, 104, 2, calc(0.08 + (var(--deck-active) * 0.08)));
  border-color: rgba(249, 104, 2, calc(0.24 + (var(--deck-active) * 0.2)));
}

.service-card-icon {
  margin-top: clamp(3rem, 8vw, 6rem);
  transform: none;
}

.service-depth-card:hover .service-card-icon {
  transform: translateY(-3px);
}

.service-card-shell h3,
.service-depth-card-feature .service-card-shell h3 {
  max-width: 34rem;
  font-size: clamp(2.35rem, 4.6vw, 4.75rem);
  transform: none;
}

.service-card-shell p,
.service-depth-card-feature .service-card-shell p {
  max-width: 40rem;
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  transform: none;
}

.service-card-shell ul {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem 1rem;
  transform: none;
}

@media (min-width: 1024px) {
  .service-depth-card,
  .service-depth-card:nth-child(odd),
  .service-depth-card:nth-child(even),
  .service-depth-card-feature {
    position: sticky;
    top: calc(var(--deck-sticky-top) + var(--deck-top-offset, 0rem));
  }
}

@media (min-width: 1536px) {
  .service-card-shell,
  .service-depth-card-feature .service-card-shell {
    min-height: clamp(22rem, 42vh, 31rem);
  }
}

@media (max-width: 1023px) {
  .service-depth-stack {
    padding-bottom: 0;
  }

  .service-depth-stack::before,
  .service-depth-stack::after {
    display: none;
  }

  .service-depth-card,
  .service-depth-card:nth-child(odd),
  .service-depth-card:nth-child(even),
  .service-depth-card-feature {
    position: relative;
    top: auto;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .service-card-shell,
  .service-depth-card-feature .service-card-shell {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .service-card-shell ul {
    grid-template-columns: 1fr;
  }

  .service-card-icon {
    margin-top: 2.5rem;
  }
}
.service-odyssey.scroll-reveal,
.service-odyssey.scroll-reveal.revealed {
  opacity: 1;
  transform: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
/* Smooth compact services deck: no side panel, no laggy scroll transforms. */
.service-odyssey {
  --deck-sticky-top: clamp(5.8rem, 10vh, 7.2rem);
  padding: clamp(4.5rem, 7vw, 7rem) 0 clamp(4rem, 7vw, 6.5rem);
}

.service-odyssey-header {
  max-width: 58rem;
  margin-inline: auto;
  text-align: center;
}

.service-odyssey-header h2 {
  max-width: 54rem;
  margin-inline: auto;
  font-size: clamp(2.25rem, 4.2vw, 4.35rem);
}

.service-odyssey-header p {
  max-width: 42rem;
  margin-inline: auto;
  font-size: clamp(0.96rem, 1.1vw, 1.08rem);
  line-height: 1.7;
}

.service-odyssey-layout {
  display: block;
  max-width: min(100%, 960px);
  margin: clamp(2.75rem, 5vw, 4.75rem) auto 0;
}

.service-command-panel {
  display: none !important;
}

.service-depth-stack {
  display: block;
  padding: 0 0 clamp(7rem, 18vh, 11rem);
  perspective: none;
  transform: none;
}

.service-depth-stack::before,
.service-depth-stack::after {
  display: none;
}

.service-depth-card,
.service-depth-card:nth-child(odd),
.service-depth-card:nth-child(even),
.service-depth-card-feature {
  --deck-active: 1;
  --deck-distance: 0;
  --deck-progress: 1;
  --deck-scale: 1;
  --deck-opacity: 1;
  max-width: 100%;
  margin: 0 0 clamp(1rem, 4vh, 2rem) 0;
  opacity: 1;
  filter: none;
  transform: translateZ(0);
  will-change: auto;
  transition: none;
}

.service-depth-card:nth-child(1) { --deck-top-offset: 0rem; z-index: 11; }
.service-depth-card:nth-child(2) { --deck-top-offset: 0.42rem; z-index: 12; }
.service-depth-card:nth-child(3) { --deck-top-offset: 0.84rem; z-index: 13; }
.service-depth-card:nth-child(4) { --deck-top-offset: 1.26rem; z-index: 14; }
.service-depth-card:nth-child(5) { --deck-top-offset: 1.68rem; z-index: 15; }
.service-depth-card:nth-child(6) { --deck-top-offset: 2.1rem; z-index: 16; }

.service-card-shell,
.service-depth-card-feature .service-card-shell {
  min-height: clamp(14.5rem, 31vh, 20rem);
  padding: clamp(1rem, 2vw, 1.7rem);
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035) 44%, rgba(249, 104, 2, 0.065)),
    rgba(7, 11, 22, 0.96);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateZ(0);
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

.service-card-shell::before {
  opacity: 0.32;
}

.service-card-shell::after {
  height: 2px;
  opacity: 0.42;
}

.service-depth-card:hover .service-card-shell {
  border-color: rgba(249, 104, 2, 0.42);
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.32),
    0 0 24px rgba(249, 104, 2, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.service-card-topline {
  margin-bottom: auto;
}

.service-number {
  top: -0.25rem;
  right: 0;
  font-size: clamp(3.2rem, 6.5vw, 6.25rem);
}

.service-pill {
  min-height: 1.75rem;
  padding: 0.36rem 0.62rem;
  font-size: 0.64rem;
}

.service-card-icon {
  width: 3.35rem;
  height: 3.35rem;
  margin-top: clamp(1.4rem, 4vw, 3rem);
  margin-bottom: 0.95rem;
  box-shadow: 0 12px 26px rgba(249, 104, 2, 0.08);
  transform: none;
}

.service-card-icon span {
  font-size: 1.65rem;
}

.service-depth-card:hover .service-card-icon {
  transform: none;
}

.service-card-shell h3,
.service-depth-card-feature .service-card-shell h3 {
  max-width: 30rem;
  font-size: clamp(1.85rem, 3.35vw, 3.2rem);
  line-height: 1.02;
}

.service-card-shell p,
.service-depth-card-feature .service-card-shell p {
  max-width: 37rem;
  margin: 0.75rem 0 1rem;
  font-size: clamp(0.9rem, 1vw, 0.98rem);
  line-height: 1.6;
}

.service-card-shell ul {
  gap: 0.55rem 0.9rem;
  padding-top: 0.78rem;
}

.service-card-shell li {
  font-size: 0.82rem;
}

@media (min-width: 1024px) {
  .service-depth-card,
  .service-depth-card:nth-child(odd),
  .service-depth-card:nth-child(even),
  .service-depth-card-feature {
    position: sticky;
    top: calc(var(--deck-sticky-top) + var(--deck-top-offset, 0rem));
  }
}

@media (max-width: 640px) {
  .service-odyssey-layout {
    margin-top: 2.25rem;
  }

  .service-card-shell,
  .service-depth-card-feature .service-card-shell {
    min-height: auto;
  }
}
/* Performance polish for smoother native sticky scrolling. */
.service-odyssey .service-orbit,
.service-odyssey .service-card-shell::before {
  animation: none !important;
}

.service-odyssey .service-card-shell::before {
  content: none;
}

.service-odyssey .service-grid-plane {
  transform: none;
}
/* Minimal luxury services cards: staggered, light, and smooth. */
.service-odyssey {
  padding: clamp(4.5rem, 7vw, 7rem) 0;
  background:
    linear-gradient(140deg, rgba(249, 104, 2, 0.11), transparent 27%),
    linear-gradient(220deg, rgba(56, 189, 248, 0.065), transparent 31%),
    linear-gradient(180deg, #050711 0%, #080d18 52%, #050711 100%);
}

.service-odyssey::before {
  opacity: 0.18;
}

.service-odyssey::after,
.service-odyssey-bg,
.service-grid-plane,
.service-orbit {
  display: none !important;
}

.service-odyssey-header {
  max-width: 58rem;
  margin-inline: auto;
  text-align: center;
}

.service-odyssey-header h2 {
  max-width: 53rem;
  margin-inline: auto;
  font-size: clamp(2.2rem, 4vw, 4.15rem);
}

.service-odyssey-header p {
  max-width: 42rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.96rem, 1.1vw, 1.06rem);
  line-height: 1.72;
}

.service-odyssey-layout {
  display: block !important;
  max-width: min(100%, 1180px);
  margin: clamp(2.75rem, 5vw, 4.8rem) auto 0;
}

.service-depth-stack {
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(1rem, 1.8vw, 1.45rem);
  padding: 0 !important;
  perspective: none !important;
  transform: none !important;
}

.service-depth-stack::before,
.service-depth-stack::after {
  display: none !important;
}

.service-depth-card,
.service-depth-card:nth-child(odd),
.service-depth-card:nth-child(even),
.service-depth-card-feature {
  --card-rise: 0px;
  --service-enter-x: 72px;
  --service-enter-rotate: 1.25deg;
  --magnet-x: 0;
  --magnet-y: 0;
  position: relative !important;
  top: auto !important;
  grid-column: span 2;
  max-width: none !important;
  margin: 0 !important;
  opacity: 1;
  filter: none !important;
  transform: translateY(var(--card-rise)) !important;
  z-index: auto !important;
  will-change: transform, opacity, filter;
  transition:
    opacity 0.7s ease-out,
    filter 0.75s ease-out,
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-depth-card:nth-child(odd) {
  --service-enter-x: -72px;
  --service-enter-rotate: -1.25deg;
}

.service-depth-card:nth-child(1) {
  grid-column: span 4;
}

.service-depth-card:nth-child(2) {
  grid-column: span 2;
  --card-rise: 1.7rem;
}

.service-depth-card:nth-child(3) {
  --card-rise: 0.4rem;
}

.service-depth-card:nth-child(4) {
  --card-rise: 1.55rem;
}

.service-depth-card:nth-child(5) {
  --card-rise: 0.85rem;
}

.service-depth-card:nth-child(6) {
  grid-column: 2 / span 4;
  --card-rise: 1.2rem;
}

.service-odyssey.js-services-ready .service-depth-card {
  opacity: 0;
  filter: blur(6px) saturate(0.85) !important;
  transform:
    translate3d(var(--service-enter-x), calc(var(--card-rise) + 26px), 0)
    rotate(var(--service-enter-rotate)) !important;
}

.service-odyssey.js-services-ready .service-depth-card.is-service-visible {
  opacity: 1;
  filter: blur(0) saturate(1) !important;
  transform: translate3d(0, var(--card-rise), 0) rotate(0) !important;
}

.service-odyssey.js-services-ready .service-depth-card:nth-child(1) { transition-delay: 0.04s; }
.service-odyssey.js-services-ready .service-depth-card:nth-child(2) { transition-delay: 0.12s; }
.service-odyssey.js-services-ready .service-depth-card:nth-child(3) { transition-delay: 0.2s; }
.service-odyssey.js-services-ready .service-depth-card:nth-child(4) { transition-delay: 0.28s; }
.service-odyssey.js-services-ready .service-depth-card:nth-child(5) { transition-delay: 0.36s; }
.service-odyssey.js-services-ready .service-depth-card:nth-child(6) { transition-delay: 0.44s; }

.service-card-shell,
.service-depth-card-feature .service-card-shell {
  position: relative;
  min-height: clamp(15rem, 27vw, 19rem) !important;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(1.15rem, 2vw, 1.75rem) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 8px !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035) 48%, rgba(249, 104, 2, 0.055)),
    rgba(7, 11, 22, 0.94) !important;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
  transform: translate3d(calc(var(--magnet-x) * 1px), calc(var(--magnet-y) * 1px), 0) !important;
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background-color 0.24s ease;
}

.service-odyssey .service-card-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(300deg, rgba(249, 104, 2, 0.11), transparent 42%);
  -webkit-mask: none;
  mask: none;
  opacity: 0.72;
  pointer-events: none;
}

.service-odyssey .service-card-shell::after {
  content: "";
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(249, 104, 2, 0.78), rgba(255, 255, 255, 0.36), transparent);
  opacity: 0.58;
  transform: none;
  animation: none;
}

.service-depth-card:hover .service-card-shell {
  border-color: rgba(249, 104, 2, 0.42) !important;
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.32),
    0 0 34px rgba(249, 104, 2, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.16) !important;
}

.service-card-topline {
  position: relative;
  z-index: 1;
  margin-bottom: auto !important;
}

.service-number {
  top: -0.2rem !important;
  right: 0 !important;
  color: rgba(255, 255, 255, 0.075) !important;
  font-size: clamp(3rem, 6vw, 5.9rem) !important;
}

.service-pill {
  min-height: 1.7rem;
  padding: 0.34rem 0.62rem;
  border-color: rgba(249, 104, 2, 0.24) !important;
  background: rgba(249, 104, 2, 0.08) !important;
  color: #ffbf9f;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.service-card-icon {
  position: relative;
  z-index: 1;
  width: 3.15rem !important;
  height: 3.15rem !important;
  margin-top: clamp(1.8rem, 4vw, 3rem) !important;
  margin-bottom: 0.85rem !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.055) !important;
  box-shadow: none !important;
  transform: none !important;
}

.service-card-icon span {
  font-size: 1.55rem !important;
}

.service-depth-card:hover .service-card-icon {
  background: rgba(249, 104, 2, 0.16) !important;
  transform: none !important;
}

.service-card-shell h3,
.service-depth-card-feature .service-card-shell h3 {
  position: relative;
  z-index: 1;
  max-width: 29rem;
  font-size: clamp(1.75rem, 3vw, 2.9rem) !important;
  line-height: 1.03;
  transform: none !important;
}

.service-card-shell p,
.service-depth-card-feature .service-card-shell p {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  margin: 0.72rem 0 1rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem !important;
  line-height: 1.62;
  transform: none !important;
}

.service-card-shell ul {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.85rem;
  padding-top: 0.8rem;
  border-top-color: rgba(255, 255, 255, 0.1);
  transform: none !important;
}

.service-card-shell li {
  font-size: 0.8rem;
  line-height: 1.35;
}

.service-card-shell li span {
  font-size: 1.05rem;
}

@media (max-width: 1023px) {
  .service-depth-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-depth-card,
  .service-depth-card:nth-child(1),
  .service-depth-card:nth-child(2),
  .service-depth-card:nth-child(3),
  .service-depth-card:nth-child(4),
  .service-depth-card:nth-child(5),
  .service-depth-card:nth-child(6) {
    grid-column: span 1;
    --card-rise: 0px;
  }

  .service-depth-card:nth-child(1),
  .service-depth-card:nth-child(6) {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .service-depth-stack {
    grid-template-columns: 1fr;
  }

  .service-depth-card:nth-child(1) { order: 1; }
  .service-depth-card:nth-child(2) { order: 2; }
  .service-depth-card:nth-child(3) { order: 6; }
  .service-depth-card:nth-child(4) { order: 3; }
  .service-depth-card:nth-child(5) { order: 4; }
  .service-depth-card:nth-child(6) { order: 5; }

  .service-odyssey.js-services-ready .service-depth-card:nth-child(1) { transition-delay: 0.04s; }
  .service-odyssey.js-services-ready .service-depth-card:nth-child(2) { transition-delay: 0.12s; }
  .service-odyssey.js-services-ready .service-depth-card:nth-child(4) { transition-delay: 0.2s; }
  .service-odyssey.js-services-ready .service-depth-card:nth-child(5) { transition-delay: 0.28s; }
  .service-odyssey.js-services-ready .service-depth-card:nth-child(6) { transition-delay: 0.36s; }
  .service-odyssey.js-services-ready .service-depth-card:nth-child(3) { transition-delay: 0.44s; }

  .service-number {
    font-size: 0 !important;
  }

  .service-number::after {
    content: attr(data-mobile-number);
    font-size: clamp(3rem, 16vw, 5.9rem);
  }

  .service-depth-card,
  .service-depth-card:nth-child(1),
  .service-depth-card:nth-child(6) {
    grid-column: span 1;
  }

  .service-card-shell,
  .service-depth-card-feature .service-card-shell {
    min-height: auto !important;
  }

  .service-card-shell ul {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-odyssey.js-services-ready .service-depth-card,
  .service-odyssey.js-services-ready .service-depth-card.is-service-visible,
  .service-card-shell,
  .service-depth-card:hover .service-card-shell {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
/* Balanced services palette: bright section with dark premium anchor cards. */
.service-odyssey {
  background:
    linear-gradient(135deg, rgba(249, 104, 2, 0.12), transparent 28%),
    linear-gradient(225deg, rgba(56, 189, 248, 0.09), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fff8f3 52%, #f8fafc 100%) !important;
  color: #0f172a;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.service-odyssey::before {
  display: block !important;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  opacity: 0.42;
}

.service-kicker {
  border-color: rgba(249, 104, 2, 0.28);
  background: rgba(249, 104, 2, 0.08);
  color: #9a3412;
}

.service-odyssey-header h2 {
  color: #0f172a !important;
}

.service-odyssey-header h2 span {
  color: #f96802 !important;
}

.service-odyssey-header p {
  color: #475569 !important;
}

.service-card-shell,
.service-depth-card-feature .service-card-shell {
  border-color: rgba(15, 23, 42, 0.09) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 247, 237, 0.78) 54%, rgba(255, 255, 255, 0.96)),
    #ffffff !important;
  box-shadow:
    0 18px 46px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.85) !important;
}

.service-odyssey .service-card-shell::before {
  background:
    linear-gradient(120deg, rgba(249, 104, 2, 0.09), transparent 38%),
    linear-gradient(300deg, rgba(15, 23, 42, 0.035), transparent 42%);
  opacity: 1;
}

.service-odyssey .service-card-shell::after {
  background: linear-gradient(90deg, transparent, rgba(249, 104, 2, 0.72), rgba(15, 23, 42, 0.16), transparent);
  opacity: 0.58;
}

.service-card-shell h3,
.service-depth-card-feature .service-card-shell h3 {
  color: #111827 !important;
}

.service-card-shell p,
.service-depth-card-feature .service-card-shell p {
  color: #5b6678 !important;
}

.service-card-shell ul {
  border-top-color: rgba(15, 23, 42, 0.08) !important;
}

.service-card-shell li {
  color: #243041 !important;
}

.service-card-shell li span {
  color: #f96802 !important;
}

.service-number {
  color: rgba(15, 23, 42, 0.08) !important;
}

.service-pill {
  border-color: rgba(249, 104, 2, 0.2) !important;
  background: rgba(249, 104, 2, 0.07) !important;
  color: #9a3412 !important;
}

.service-card-icon {
  border-color: rgba(249, 104, 2, 0.14) !important;
  background: rgba(249, 104, 2, 0.075) !important;
  color: #f96802 !important;
}

.service-depth-card:hover .service-card-shell {
  border-color: rgba(249, 104, 2, 0.34) !important;
  box-shadow:
    0 24px 58px rgba(15, 23, 42, 0.12),
    0 0 34px rgba(249, 104, 2, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

.service-depth-card:nth-child(1) .service-card-shell,
.service-depth-card:nth-child(4) .service-card-shell,
.service-depth-card:nth-child(6) .service-card-shell {
  border-color: rgba(255, 255, 255, 0.13) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035) 48%, rgba(249, 104, 2, 0.08)),
    linear-gradient(180deg, #0b1020 0%, #060913 100%) !important;
  box-shadow:
    0 22px 54px rgba(15, 23, 42, 0.22),
    0 0 34px rgba(249, 104, 2, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12) !important;
}

.service-depth-card:nth-child(1) .service-card-shell::before,
.service-depth-card:nth-child(4) .service-card-shell::before,
.service-depth-card:nth-child(6) .service-card-shell::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(300deg, rgba(249, 104, 2, 0.12), transparent 42%);
}

.service-depth-card:nth-child(1) .service-card-shell::after,
.service-depth-card:nth-child(4) .service-card-shell::after,
.service-depth-card:nth-child(6) .service-card-shell::after {
  background: linear-gradient(90deg, transparent, rgba(249, 104, 2, 0.8), rgba(255, 255, 255, 0.34), transparent);
}

.service-depth-card:nth-child(1) .service-card-shell h3,
.service-depth-card:nth-child(4) .service-card-shell h3,
.service-depth-card:nth-child(6) .service-card-shell h3 {
  color: #ffffff !important;
}

.service-depth-card:nth-child(1) .service-card-shell p,
.service-depth-card:nth-child(4) .service-card-shell p,
.service-depth-card:nth-child(6) .service-card-shell p {
  color: rgba(255, 255, 255, 0.68) !important;
}

.service-depth-card:nth-child(1) .service-card-shell li,
.service-depth-card:nth-child(4) .service-card-shell li,
.service-depth-card:nth-child(6) .service-card-shell li {
  color: rgba(255, 255, 255, 0.86) !important;
}

.service-depth-card:nth-child(1) .service-card-shell ul,
.service-depth-card:nth-child(4) .service-card-shell ul,
.service-depth-card:nth-child(6) .service-card-shell ul {
  border-top-color: rgba(255, 255, 255, 0.1) !important;
}

.service-depth-card:nth-child(1) .service-number,
.service-depth-card:nth-child(4) .service-number,
.service-depth-card:nth-child(6) .service-number {
  color: rgba(255, 255, 255, 0.08) !important;
}

.service-depth-card:nth-child(1) .service-pill,
.service-depth-card:nth-child(4) .service-pill,
.service-depth-card:nth-child(6) .service-pill {
  border-color: rgba(249, 104, 2, 0.28) !important;
  background: rgba(249, 104, 2, 0.1) !important;
  color: #ffbf9f !important;
}

.service-depth-card:nth-child(1) .service-card-icon,
.service-depth-card:nth-child(4) .service-card-icon,
.service-depth-card:nth-child(6) .service-card-icon {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
}

/* Why choose me: editorial bento layout. */
#why-choose-me {
  position: relative;
  isolation: isolate;
  color: #0f172a;
  background:
    radial-gradient(circle at 88% 12%, rgba(249, 104, 2, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fffaf6 52%, #f8fafc 100%) !important;
  border-block: 1px solid rgba(15, 23, 42, 0.07);
}

#why-choose-me::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 84%, transparent);
}

#why-choose-me > div {
  position: relative;
  z-index: 1;
}

#why-choose-me > div > .text-center {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  grid-template-areas:
    "kicker copy"
    "heading copy";
  column-gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  max-width: none !important;
  text-align: left !important;
}

#why-choose-me > div > .text-center > span { grid-area: kicker; }

#why-choose-me > div > .text-center > h2 {
  grid-area: heading;
  max-width: 48rem;
  margin-bottom: 0;
  color: #0f172a;
  font-size: clamp(2.45rem, 5vw, 5rem);
  letter-spacing: -0.045em;
}

#why-choose-me > div > .text-center > p {
  grid-area: copy;
  max-width: 34rem !important;
  margin: 0 0 0.35rem !important;
  color: #526071 !important;
}

#why-choose-me > div > .grid {
  counter-reset: why-card;
  display: grid !important;
  grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
  gap: clamp(1rem, 1.8vw, 1.45rem) !important;
}

#why-choose-me article {
  counter-increment: why-card;
  position: relative;
  grid-column: span 4;
  min-height: 18rem;
  overflow: hidden;
  padding: clamp(1.4rem, 2.5vw, 2.2rem) !important;
  border: 1px solid rgba(15, 23, 42, 0.09) !important;
  border-radius: 10px !important;
  color: #111827;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 237, 0.78)),
    #ffffff !important;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.09);
}

#why-choose-me article:nth-child(1) { grid-column: span 7; min-height: 23rem; }
#why-choose-me article:nth-child(2) { grid-column: span 5; }
#why-choose-me article:nth-child(3) { grid-column: span 4; }
#why-choose-me article:nth-child(4) { grid-column: span 8; }
#why-choose-me article:nth-child(5),
#why-choose-me article:nth-child(6) { grid-column: span 6; }

#why-choose-me article {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition:
    opacity 0.65s ease,
    transform 0.75s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

#why-choose-me article::before {
  content: '0' counter(why-card);
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  color: rgba(15, 23, 42, 0.055);
  font-family: var(--font-headline);
  font-size: clamp(4.5rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.08em;
}

#why-choose-me article > * {
  position: relative;
  z-index: 1;
}

#why-choose-me article > div:first-child {
  width: 3.5rem !important;
  height: 3.5rem !important;
  margin-bottom: auto !important;
  border: 1px solid rgba(249, 104, 2, 0.16);
  border-radius: 10px !important;
  color: #f96802;
  background: rgba(249, 104, 2, 0.08) !important;
}

#why-choose-me article > div:first-child span {
  color: inherit !important;
}

#why-choose-me article h3 {
  max-width: 30rem;
  margin: clamp(3rem, 7vw, 6rem) 0 0.75rem !important;
  color: #111827;
  font-size: clamp(1.55rem, 2.6vw, 2.5rem) !important;
  line-height: 1.05;
}

#why-choose-me article p {
  max-width: 36rem;
  margin: 0 !important;
  color: #5b6678 !important;
  font-size: 0.95rem;
}

#why-choose-me article:nth-child(1),
#why-choose-me article:nth-child(6) {
  border-color: rgba(255, 255, 255, 0.13) !important;
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.025) 48%, rgba(249, 104, 2, 0.1)),
    linear-gradient(180deg, #0b1020 0%, #060913 100%) !important;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.2);
}

#why-choose-me article:nth-child(4) {
  border-color: rgba(249, 104, 2, 0.28) !important;
  color: #ffffff;
  background: linear-gradient(135deg, #f96802 0%, #ff7f2a 58%, #e95500 100%) !important;
  box-shadow: 0 22px 54px rgba(249, 104, 2, 0.22);
}

#why-choose-me article:nth-child(1)::before,
#why-choose-me article:nth-child(4)::before,
#why-choose-me article:nth-child(6)::before {
  color: rgba(255, 255, 255, 0.075);
}

#why-choose-me article:nth-child(1) h3,
#why-choose-me article:nth-child(4) h3,
#why-choose-me article:nth-child(6) h3 {
  color: #ffffff !important;
}

#why-choose-me article:nth-child(1) h3,
#why-choose-me article:nth-child(4) h3 {
  font-size: clamp(2.15rem, 4vw, 3.65rem) !important;
}

#why-choose-me article:nth-child(1) p,
#why-choose-me article:nth-child(4) p,
#why-choose-me article:nth-child(6) p {
  color: rgba(255, 255, 255, 0.72) !important;
}

#why-choose-me article:nth-child(1) > div:first-child,
#why-choose-me article:nth-child(6) > div:first-child {
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07) !important;
}

#why-choose-me article:nth-child(4) > div:first-child {
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14) !important;
}

@media (prefers-reduced-motion: no-preference) {
  #why-choose-me.scroll-reveal article {
    opacity: 0;
    transform: translateY(28px) scale(0.985);
  }

  #why-choose-me.scroll-reveal.revealed article {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  #why-choose-me.scroll-reveal.revealed article:nth-child(1) { transition-delay: 0.04s; }
  #why-choose-me.scroll-reveal.revealed article:nth-child(2) { transition-delay: 0.1s; }
  #why-choose-me.scroll-reveal.revealed article:nth-child(3) { transition-delay: 0.16s; }
  #why-choose-me.scroll-reveal.revealed article:nth-child(4) { transition-delay: 0.22s; }
  #why-choose-me.scroll-reveal.revealed article:nth-child(5) { transition-delay: 0.28s; }
  #why-choose-me.scroll-reveal.revealed article:nth-child(6) { transition-delay: 0.34s; }

  #why-choose-me.scroll-reveal.revealed article:hover {
    transform: translateY(-7px) scale(1);
  }
}

#why-choose-me article:hover {
  border-color: rgba(249, 104, 2, 0.34) !important;
  box-shadow: 0 26px 62px rgba(15, 23, 42, 0.14);
}

@media (max-width: 900px) {
  #why-choose-me > div > .text-center {
    display: block;
  }

  #why-choose-me > div > .text-center > h2 {
    max-width: 42rem;
  }

  #why-choose-me > div > .text-center > p {
    max-width: 38rem !important;
    margin-top: 1.25rem !important;
  }

  #why-choose-me > div > .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  #why-choose-me article,
  #why-choose-me article:nth-child(2),
  #why-choose-me article:nth-child(3),
  #why-choose-me article:nth-child(5),
  #why-choose-me article:nth-child(6) {
    grid-column: span 1;
    min-height: 19rem;
  }

  #why-choose-me article:nth-child(1),
  #why-choose-me article:nth-child(4) {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  #why-choose-me {
    padding-block: 4.5rem !important;
  }

  #why-choose-me > div > .text-center {
    margin-bottom: 2.5rem !important;
  }

  #why-choose-me > div > .text-center > h2 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  #why-choose-me > div > .grid {
    grid-template-columns: 1fr !important;
  }

  #why-choose-me article,
  #why-choose-me article:nth-child(1),
  #why-choose-me article:nth-child(4) {
    grid-column: span 1;
    min-height: 18rem;
  }

  #why-choose-me article h3 {
    font-size: clamp(1.65rem, 8vw, 2.25rem) !important;
  }
}

/* Why choose me: compact reasons layout. */
#why-choose-me {
  padding-block: clamp(4rem, 7vw, 6rem) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

#why-choose-me::before {
  display: none !important;
}

#why-choose-me > div > .text-center {
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  column-gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  margin-bottom: clamp(2.25rem, 4vw, 3.5rem) !important;
}

#why-choose-me > div > .text-center > h2 {
  max-width: 42rem;
  font-size: clamp(2.35rem, 4.2vw, 4.1rem);
}

#why-choose-me > div > .grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0.9rem !important;
}

#why-choose-me > div > .grid > article {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 0.9rem;
  align-items: start;
  grid-column: span 1 !important;
  min-height: 0 !important;
  padding: 1.25rem !important;
  border: 1px solid rgba(15, 23, 42, 0.09) !important;
  border-radius: 12px !important;
  color: #111827 !important;
  background: #ffffff !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.055) !important;
  will-change: transform, opacity;
  transition:
    opacity 0.55s ease-out,
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease !important;
}

#why-choose-me > div > .grid > article::before {
  display: none;
}

#why-choose-me > div > .grid > article::after {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  left: 0;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f96802, rgba(249, 104, 2, 0.12));
}

#why-choose-me > div > .grid > article > div:first-child {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 2.75rem !important;
  height: 2.75rem !important;
  margin: 0 !important;
  border-color: rgba(249, 104, 2, 0.14) !important;
  border-radius: 9px !important;
  color: #f96802 !important;
  background: rgba(249, 104, 2, 0.075) !important;
}

#why-choose-me > div > .grid > article h3 {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 0.38rem !important;
  color: #111827 !important;
  font-size: 1.1rem !important;
  line-height: 1.25;
}

#why-choose-me > div > .grid > article p {
  grid-column: 2;
  grid-row: 2;
  margin: 0 !important;
  color: #64748b !important;
  font-size: 0.84rem;
  line-height: 1.55;
}

@media (prefers-reduced-motion: no-preference) {
  #why-choose-me.scroll-reveal > div > .grid > article {
    opacity: 0;
    transform: scale(0.96);
  }

  #why-choose-me.scroll-reveal.revealed > div > .grid > article {
    opacity: 1;
    transform: scale(1);
  }

  #why-choose-me.scroll-reveal.revealed > div > .grid > article:hover {
    transform: translateX(4px);
  }
}

#why-choose-me > div > .grid > article:hover {
  border-color: rgba(249, 104, 2, 0.26) !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08) !important;
}

@media (max-width: 900px) {
  #why-choose-me > div > .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  #why-choose-me {
    padding-block: 4rem !important;
  }

  #why-choose-me > div > .text-center > h2 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  #why-choose-me > div > .grid {
    grid-template-columns: 1fr !important;
  }

  #why-choose-me > div > .grid > article {
    padding: 1rem !important;
  }
}

/* Card-level reveal keeps the scale effect visible until each card is onscreen. */
@media (prefers-reduced-motion: no-preference) {
  #why-choose-me.js-why-ready > div > .grid > article {
    opacity: 0;
    transform: scale(0.9);
    transform-origin: center;
  }

  #why-choose-me.js-why-ready > div > .grid > article.is-why-visible {
    opacity: 1;
    transform: scale(1);
    animation: why-card-scale-in 0.72s cubic-bezier(0.16, 1, 0.3, 1) backwards;
    transition-delay: 0s !important;
  }

  #why-choose-me.js-why-ready > div > .grid > article:nth-child(1) { animation-delay: 0.02s; }
  #why-choose-me.js-why-ready > div > .grid > article:nth-child(2) { animation-delay: 0.1s; }
  #why-choose-me.js-why-ready > div > .grid > article:nth-child(3) { animation-delay: 0.18s; }
  #why-choose-me.js-why-ready > div > .grid > article:nth-child(4) { animation-delay: 0.26s; }
  #why-choose-me.js-why-ready > div > .grid > article:nth-child(5) { animation-delay: 0.34s; }
  #why-choose-me.js-why-ready > div > .grid > article:nth-child(6) { animation-delay: 0.42s; }
}

@keyframes why-card-scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

#why-choose-me > div > .grid > article::after,
#why-choose-me > div > .grid > article > div:first-child {
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  #why-choose-me.js-why-ready > div > .grid > article.is-why-visible:hover {
    transform: translateY(-6px) scale(1.012);
    border-color: rgba(249, 104, 2, 0.3) !important;
    box-shadow:
      0 18px 38px rgba(15, 23, 42, 0.11),
      0 8px 22px rgba(249, 104, 2, 0.08) !important;
  }

  #why-choose-me > div > .grid > article:hover::after {
    transform: scaleY(1.12);
    background: #f96802;
    box-shadow: 0 0 18px rgba(249, 104, 2, 0.38);
  }

  #why-choose-me > div > .grid > article:hover > div:first-child {
    transform: translateY(-2px) scale(1.08);
    background: rgba(249, 104, 2, 0.13) !important;
    box-shadow: 0 8px 20px rgba(249, 104, 2, 0.13);
  }
}

/* Search-to-sales growth pathway. */
.lead-growth-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 8rem) 0;
  color: #172033;
  background:
    radial-gradient(circle at 8% 12%, rgba(249, 104, 2, 0.14), transparent 30%),
    radial-gradient(circle at 92% 88%, rgba(37, 99, 235, 0.08), transparent 32%),
    linear-gradient(145deg, #fffaf6 0%, #f7f8fb 48%, #edf1f7 100%);
}

.lead-growth-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
}

.lead-growth-section > div {
  position: relative;
  z-index: 1;
}

.lead-growth-header {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: end;
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.lead-growth-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: #ff9b5a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.lead-growth-kicker > span {
  display: inline-grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border: 1px solid rgba(249, 104, 2, 0.26);
  border-radius: 999px;
  color: #f96802;
  background: rgba(249, 104, 2, 0.08);
  font-size: 0.58rem;
  letter-spacing: 0;
  box-shadow: 0 8px 20px rgba(249, 104, 2, 0.1);
}

.lead-growth-header h2 {
  max-width: 50rem;
  margin: 0 auto;
  color: #111827;
  font-size: clamp(2.55rem, 5vw, 5.35rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.lead-growth-header h2 span {
  display: block;
  color: #f96802;
}

.lead-growth-header h2 em {
  position: relative;
  z-index: 0;
  color: #111827;
  font-style: normal;
  white-space: nowrap;
}

.lead-growth-header h2 em::after {
  content: "";
  position: absolute;
  right: -0.04em;
  bottom: 0.02em;
  left: -0.04em;
  z-index: -1;
  height: 0.16em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(249, 104, 2, 0.25), #f96802);
  transform: rotate(-1deg);
  transform-origin: left center;
}

.lead-growth-path {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2rem minmax(0, 1fr) 2rem minmax(0, 1fr) 2rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: stretch;
}

.lead-growth-step {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 20rem;
  overflow: hidden;
  padding: clamp(1.25rem, 2vw, 1.65rem);
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.9)),
    #ffffff;
  box-shadow:
    0 20px 46px rgba(15, 23, 42, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.lead-growth-step::after {
  content: "";
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(249, 104, 2, 0.8), transparent);
  opacity: 0.65;
}

.lead-growth-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.4rem;
}

.lead-growth-number {
  color: rgba(15, 23, 42, 0.12);
  font-family: var(--font-headline);
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1;
}

.lead-growth-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid rgba(249, 104, 2, 0.25);
  border-radius: 10px;
  color: #ff9b5a;
  background: rgba(249, 104, 2, 0.1);
}

.lead-growth-label {
  width: fit-content;
  margin-bottom: 0.7rem;
  color: #ff9b5a;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lead-growth-step h3 {
  margin: 0 0 0.75rem;
  color: #111827;
  font-family: var(--font-headline);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.1;
}

.lead-growth-step > p {
  margin: 0;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.6;
}

.lead-growth-step ul {
  display: grid;
  gap: 0.55rem;
  margin: auto 0 0;
  padding: 1.2rem 0 0;
  list-style: none;
}

.lead-growth-step li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.4;
}

.lead-growth-step li span {
  flex: 0 0 auto;
  color: #f96802;
  font-size: 1rem;
}

.lead-growth-connector {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(15, 23, 42, 0.38);
}

.lead-growth-connector::before {
  content: "";
  position: absolute;
  left: -0.45rem;
  right: -0.45rem;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(249, 104, 2, 0.18), rgba(249, 104, 2, 0.7), rgba(249, 104, 2, 0.18));
}

.lead-growth-connector span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border: 1px solid rgba(249, 104, 2, 0.28);
  border-radius: 999px;
  color: #ff9b5a;
  background: #f8fafc;
  font-size: 1rem;
}

.lead-growth-section .lead-growth-step:nth-of-type(even) {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    #111827;
  box-shadow:
    0 22px 54px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.lead-growth-section .lead-growth-step:nth-of-type(even) .lead-growth-number {
  color: rgba(255, 255, 255, 0.12);
}

.lead-growth-section .lead-growth-step:nth-of-type(even) h3 {
  color: #ffffff;
}

.lead-growth-section .lead-growth-step:nth-of-type(even) > p {
  color: rgba(255, 255, 255, 0.64);
}

.lead-growth-section .lead-growth-step:nth-of-type(even) li {
  color: rgba(255, 255, 255, 0.8);
}
.lead-growth-step-result {
  border-color: rgba(249, 104, 2, 0.35);
  background:
    linear-gradient(145deg, rgba(249, 104, 2, 0.24), rgba(249, 104, 2, 0.045) 58%),
    #111827;
  box-shadow:
    0 24px 58px rgba(15, 23, 42, 0.2),
    0 0 34px rgba(249, 104, 2, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.lead-growth-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.lead-growth-footer p {
  max-width: 46rem;
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
}

.lead-growth-footer strong { color: #111827; }

.lead-growth-footer a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex: 0 0 auto;
  padding: 0.9rem 1.2rem;
  border-radius: 9px;
  color: #ffffff;
  background: #f96802;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(249, 104, 2, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .lead-growth-step:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 104, 2, 0.34);
    box-shadow:
      0 28px 62px rgba(15, 23, 42, 0.16),
      0 0 30px rgba(249, 104, 2, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.11);
  }

  .lead-growth-footer a:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(249, 104, 2, 0.3);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .lead-growth-section.scroll-reveal .lead-growth-step {
    --lead-growth-entry-x: -3.5rem;
    --lead-growth-entry-rotate: -0.8deg;
    opacity: 0;
    transform: translate3d(var(--lead-growth-entry-x), 1.25rem, 0) rotate(var(--lead-growth-entry-rotate)) scale(0.975);
    will-change: transform, opacity;
  }

  .lead-growth-section.scroll-reveal .lead-growth-step:nth-of-type(even) {
    --lead-growth-entry-x: 3.5rem;
    --lead-growth-entry-rotate: 0.8deg;
  }

  .lead-growth-section.scroll-reveal.revealed .lead-growth-step {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
    animation: lead-growth-card-drag-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  }

  .lead-growth-section.scroll-reveal.revealed .lead-growth-step:nth-of-type(1) { animation-delay: 0.05s; }
  .lead-growth-section.scroll-reveal.revealed .lead-growth-step:nth-of-type(2) { animation-delay: 0.13s; }
  .lead-growth-section.scroll-reveal.revealed .lead-growth-step:nth-of-type(3) { animation-delay: 0.21s; }
  .lead-growth-section.scroll-reveal.revealed .lead-growth-step:nth-of-type(4) { animation-delay: 0.29s; }
  .lead-growth-section.scroll-reveal.revealed .lead-growth-step:nth-of-type(5) { animation-delay: 0.37s; }
  .lead-growth-section.scroll-reveal.revealed .lead-growth-step:nth-of-type(6) { animation-delay: 0.45s; }
}

@keyframes lead-growth-card-drag-in {
  from {
    opacity: 0;
    transform: translate3d(var(--lead-growth-entry-x), 1.25rem, 0) rotate(var(--lead-growth-entry-rotate)) scale(0.975);
    filter: blur(3px);
  }

  72% {
    opacity: 1;
    transform: translate3d(0, -0.18rem, 0) rotate(0) scale(1.006);
    filter: blur(0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
    filter: blur(0);
  }
}

@media (max-width: 1100px) {
  .lead-growth-path {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .lead-growth-connector { display: none; }
  .lead-growth-step { min-height: 18rem; }
}

@media (max-width: 800px) {
  .lead-growth-header {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .lead-growth-header h2 { font-size: clamp(2.4rem, 9vw, 4.25rem); }
  .lead-growth-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .lead-growth-section { padding: 4.5rem 0; }
  .lead-growth-header h2 em { white-space: normal; }

  .lead-growth-path {
    grid-template-columns: 1fr;
  }

  .lead-growth-step {
    min-height: 0;
    padding: 1.2rem;
  }

  .lead-growth-step-top { margin-bottom: 1.6rem; }
  .lead-growth-step ul { margin-top: 1.4rem; }
  .lead-growth-footer a { width: 100%; justify-content: center; }
}

/* Process layout: alternating zigzag journey. */
.lead-growth-section .lead-growth-path {
  position: relative;
  grid-template-columns: minmax(0, 1fr) 5rem minmax(0, 1fr);
  gap: 1.4rem 0;
  max-width: 68rem;
  margin-inline: auto;
  align-items: center;
}

.lead-growth-section .lead-growth-path::before {
  content: "";
  position: absolute;
  top: 2rem;
  bottom: 2rem;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(249, 104, 2, 0.72) 12%, rgba(249, 104, 2, 0.3) 88%, transparent);
  box-shadow: 0 0 22px rgba(249, 104, 2, 0.16);
}

.lead-growth-section .lead-growth-connector {
  display: none !important;
}

.lead-growth-section .lead-growth-step {
  grid-column: auto;
  min-height: 0;
  width: min(100%, 31rem);
  overflow: visible;
  padding: 1.35rem 1.45rem;
}

.lead-growth-section .lead-growth-step:nth-of-type(1) {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.lead-growth-section .lead-growth-step:nth-of-type(2) {
  grid-column: 3;
  grid-row: 2;
  justify-self: start;
}

.lead-growth-section .lead-growth-step:nth-of-type(3) {
  grid-column: 1;
  grid-row: 3;
  justify-self: end;
}

.lead-growth-section .lead-growth-step:nth-of-type(4) {
  grid-column: 3;
  grid-row: 4;
  justify-self: start;
}

.lead-growth-section .lead-growth-step:nth-of-type(5) {
  grid-column: 1;
  grid-row: 5;
  justify-self: end;
}

.lead-growth-section .lead-growth-step:nth-of-type(6) {
  grid-column: 3;
  grid-row: 6;
  justify-self: start;
}

.lead-growth-section .lead-growth-step::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(249, 104, 2, 0.18), #f96802);
}

.lead-growth-section .lead-growth-step:nth-of-type(odd)::before {
  right: -2.5rem;
}

.lead-growth-section .lead-growth-step:nth-of-type(even)::before {
  left: -2.5rem;
  transform: rotate(180deg);
}

.lead-growth-section .lead-growth-step-top {
  margin-bottom: 1.35rem;
}

.lead-growth-section .lead-growth-step ul {
  margin-top: 1.2rem;
}

@media (max-width: 900px) {
  .lead-growth-section .lead-growth-path {
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: 1.1rem 0;
    max-width: 42rem;
  }

  .lead-growth-section .lead-growth-path::before {
    left: 1.25rem;
    transform: none;
  }

  .lead-growth-section .lead-growth-step,
  .lead-growth-section .lead-growth-step:nth-of-type(1),
  .lead-growth-section .lead-growth-step:nth-of-type(2),
  .lead-growth-section .lead-growth-step:nth-of-type(3),
  .lead-growth-section .lead-growth-step:nth-of-type(4),
  .lead-growth-section .lead-growth-step:nth-of-type(5),
  .lead-growth-section .lead-growth-step:nth-of-type(6) {
    grid-column: 2;
    width: 100%;
    justify-self: stretch;
  }

  .lead-growth-section .lead-growth-step:nth-of-type(1) { grid-row: 1; }
  .lead-growth-section .lead-growth-step:nth-of-type(2) { grid-row: 2; }
  .lead-growth-section .lead-growth-step:nth-of-type(3) { grid-row: 3; }
  .lead-growth-section .lead-growth-step:nth-of-type(4) { grid-row: 4; }
  .lead-growth-section .lead-growth-step:nth-of-type(5) { grid-row: 5; }
  .lead-growth-section .lead-growth-step:nth-of-type(6) { grid-row: 6; }

  .lead-growth-section .lead-growth-step:nth-of-type(odd)::before,
  .lead-growth-section .lead-growth-step:nth-of-type(even)::before {
    right: auto;
    left: -1.5rem;
    width: 1.5rem;
    transform: none;
  }
}

@media (max-width: 640px) {
  .lead-growth-section .lead-growth-path {
    grid-template-columns: 2rem minmax(0, 1fr);
  }

  .lead-growth-section .lead-growth-path::before {
    left: 0.85rem;
  }

  .lead-growth-section .lead-growth-step {
    padding: 1.1rem;
  }

  .lead-growth-section .lead-growth-step:nth-of-type(odd)::before,
  .lead-growth-section .lead-growth-step:nth-of-type(even)::before {
    left: -1.15rem;
    width: 1.15rem;
  }
}

/* Keep the primary section H2s consistent while preserving the original
   typography used by the Clients and Results sections. */
main > section:not(#clients):not(#results) h2 {
  font-size: 2.25rem !important;
}

@media (min-width: 768px) {
  main > section:not(#clients):not(#results) h2 {
    font-size: 3rem !important;
  }
}
/* Sticky search-to-sales story. */
.story-sticky {
  overflow: clip;
}

@media (min-width: 901px) {
  .story-sticky .lead-growth-story-grid {
    display: grid;
    grid-template-columns: minmax(20rem, 0.82fr) minmax(28rem, 1.18fr);
    column-gap: clamp(4rem, 8vw, 9rem);
    align-items: start;
  }

  .story-sticky .lead-growth-header {
    position: sticky;
    top: 7.5rem;
    grid-column: 1;
    justify-items: start;
    align-self: start;
    margin: 0;
    padding-bottom: 3rem;
    text-align: left;
  }

  .story-sticky .lead-growth-header h2 {
    max-width: 36rem;
    margin: 0;
  }

  .story-sticky .lead-growth-path {
    grid-column: 2;
    grid-template-columns: 2.75rem minmax(0, 1fr);
    gap: clamp(3rem, 6vw, 5rem) 0;
    width: 100%;
    max-width: 42rem;
    margin: 0;
    padding: 2.5rem 0 4rem;
  }

  .story-sticky .lead-growth-path::before {
    top: 0;
    bottom: 0;
    left: 1rem;
    transform: none;
  }

  .story-sticky .lead-growth-step,
  .story-sticky .lead-growth-step:nth-of-type(1),
  .story-sticky .lead-growth-step:nth-of-type(2),
  .story-sticky .lead-growth-step:nth-of-type(3),
  .story-sticky .lead-growth-step:nth-of-type(4),
  .story-sticky .lead-growth-step:nth-of-type(5),
  .story-sticky .lead-growth-step:nth-of-type(6) {
    grid-column: 2;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
    padding: 1.6rem 1.7rem;
  }

  .story-sticky .lead-growth-step:nth-of-type(odd)::before,
  .story-sticky .lead-growth-step:nth-of-type(even)::before {
    right: auto;
    left: -1.75rem;
    width: 1.75rem;
    transform: none;
  }

  .story-sticky .lead-growth-footer {
    grid-column: 1 / -1;
    margin-top: clamp(3rem, 6vw, 6rem);
  }
}

.story-sticky.js-story-ready .lead-growth-step {
  opacity: 0.32;
  filter: saturate(0.68);
  transform: translate3d(0, 2rem, 0) scale(0.97);
  transition:
    opacity 0.55s ease,
    filter 0.55s ease,
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.story-sticky.js-story-ready .lead-growth-step.is-story-visible {
  opacity: 0.58;
  transform: translate3d(0, 0, 0) scale(0.985);
}

.story-sticky.js-story-ready .lead-growth-step.is-story-active {
  z-index: 2;
  opacity: 1;
  filter: saturate(1);
  transform: translate3d(-0.55rem, 0, 0) scale(1.015);
  border-color: rgba(249, 104, 2, 0.42);
  box-shadow:
    0 28px 64px rgba(15, 23, 42, 0.16),
    0 0 34px rgba(249, 104, 2, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

@media (max-width: 900px) {
  .story-sticky .lead-growth-header {
    position: static;
  }

  .story-sticky.js-story-ready .lead-growth-step.is-story-active {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-sticky.js-story-ready .lead-growth-step,
  .story-sticky.js-story-ready .lead-growth-step.is-story-visible,
  .story-sticky.js-story-ready .lead-growth-step.is-story-active {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}
/* Guided timeline option; Option 2 remains available via .story-sticky. */
.story-guided .lead-growth-header {
  justify-items: center;
  margin-bottom: clamp(4rem, 7vw, 6rem);
  text-align: center;
}

.story-guided .lead-growth-header h2 {
  max-width: 54rem;
  margin-inline: auto;
}

.story-guided .lead-growth-path {
  gap: clamp(1.75rem, 4vw, 2.5rem) 0;
}

.story-guided .lead-growth-path::before {
  transform: translateX(-50%) scaleY(0);
  transform-origin: top center;
  transition: transform 1.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-guided.is-guided-started .lead-growth-path::before {
  transform: translateX(-50%) scaleY(1);
}

.story-guided.js-guided-ready .lead-growth-header {
  opacity: 0;
  transform: translate3d(0, 1.25rem, 0);
  transition:
    opacity 0.7s ease,
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-guided.js-guided-ready.is-guided-started .lead-growth-header {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.story-guided.js-guided-ready .lead-growth-step {
  --guided-entry-x: -3.5rem;
  --guided-entry-rotate: -0.7deg;
  opacity: 0;
  filter: blur(3px);
  transform: translate3d(var(--guided-entry-x), 1.25rem, 0) rotate(var(--guided-entry-rotate)) scale(0.975);
  will-change: opacity, filter, transform;
}

.story-guided.js-guided-ready .lead-growth-step:nth-of-type(even) {
  --guided-entry-x: 3.5rem;
  --guided-entry-rotate: 0.7deg;
}

.story-guided.js-guided-ready .lead-growth-step.is-guided-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) rotate(0) scale(1);
  animation: guided-card-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.story-guided .lead-growth-step-result.is-guided-visible::after {
  animation: guided-result-pulse 1.8s ease-in-out 0.55s 2;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .story-guided.js-guided-ready .lead-growth-step.is-guided-visible:hover {
    transform: translate3d(0, -6px, 0) scale(1.01);
  }
}

@media (max-width: 900px) {
  .story-guided .lead-growth-path::before {
    transform: scaleY(0);
    transform-origin: top center;
  }

  .story-guided.is-guided-started .lead-growth-path::before {
    transform: scaleY(1);
  }

  .story-guided.js-guided-ready .lead-growth-step,
  .story-guided.js-guided-ready .lead-growth-step:nth-of-type(even) {
    --guided-entry-x: 1.75rem;
    --guided-entry-rotate: 0.35deg;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-guided .lead-growth-path::before,
  .story-guided.is-guided-started .lead-growth-path::before {
    transform: translateX(-50%) scaleY(1);
    transition: none;
  }

  .story-guided.js-guided-ready .lead-growth-header,
  .story-guided.js-guided-ready.is-guided-started .lead-growth-header,
  .story-guided.js-guided-ready .lead-growth-step,
  .story-guided.js-guided-ready .lead-growth-step.is-guided-visible {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
    transition: none;
  }
}

@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
  .story-guided .lead-growth-path::before,
  .story-guided.is-guided-started .lead-growth-path::before {
    transform: scaleY(1);
  }
}

@keyframes guided-card-in {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translate3d(var(--guided-entry-x), 1.25rem, 0) rotate(var(--guided-entry-rotate)) scale(0.975);
  }

  72% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, -0.2rem, 0) rotate(0) scale(1.006);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }
}

@keyframes guided-result-pulse {
  0%,
  100% {
    opacity: 0.65;
    box-shadow: 0 0 0 rgba(249, 104, 2, 0);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 22px rgba(249, 104, 2, 0.5);
  }
}
/* Bento journey option; Options 1 and 2 remain available via their classes. */
.story-bento .lead-growth-header {
  justify-items: center;
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
  text-align: center;
}

.story-bento .lead-growth-header h2 {
  max-width: 56rem;
  margin-inline: auto;
}

.story-bento .lead-growth-path {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  width: 100%;
  max-width: 76rem;
  margin-inline: auto;
}

.story-bento .lead-growth-path::before {
  display: none;
}

.story-bento .lead-growth-step,
.story-bento .lead-growth-step:nth-of-type(1),
.story-bento .lead-growth-step:nth-of-type(2),
.story-bento .lead-growth-step:nth-of-type(3),
.story-bento .lead-growth-step:nth-of-type(4),
.story-bento .lead-growth-step:nth-of-type(5),
.story-bento .lead-growth-step:nth-of-type(6) {
  grid-row: auto;
  justify-self: stretch;
  width: 100%;
  min-height: 19rem;
  overflow: hidden;
  padding: clamp(1.4rem, 2.4vw, 2rem);
}

.story-bento .lead-growth-step:nth-of-type(1),
.story-bento .lead-growth-step:nth-of-type(4),
.story-bento .lead-growth-step:nth-of-type(6) {
  grid-column: span 7;
}

.story-bento .lead-growth-step:nth-of-type(2),
.story-bento .lead-growth-step:nth-of-type(3),
.story-bento .lead-growth-step:nth-of-type(5) {
  grid-column: span 5;
}

.story-bento .lead-growth-step:nth-of-type(1),
.story-bento .lead-growth-step:nth-of-type(4) {
  min-height: 22rem;
}

.story-bento .lead-growth-step:nth-of-type(1) h3,
.story-bento .lead-growth-step:nth-of-type(4) h3,
.story-bento .lead-growth-step:nth-of-type(6) h3 {
  max-width: 30rem;
  font-size: clamp(1.65rem, 2.5vw, 2.3rem);
}

.story-bento .lead-growth-step::before,
.story-bento .lead-growth-step:nth-of-type(odd)::before,
.story-bento .lead-growth-step:nth-of-type(even)::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  background: radial-gradient(
    circle at var(--bento-glow-x, 50%) var(--bento-glow-y, 50%),
    rgba(249, 104, 2, 0.18),
    transparent 38%
  );
  opacity: 0;
  transform: none;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.story-bento .lead-growth-step > * {
  position: relative;
  z-index: 1;
}

.story-bento .lead-growth-step:hover::before {
  opacity: 1;
}

.story-bento.js-bento-ready .lead-growth-header {
  opacity: 0;
  transform: translate3d(0, 1.2rem, 0);
  transition:
    opacity 0.7s ease,
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-bento.js-bento-ready.is-bento-started .lead-growth-header {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.story-bento.js-bento-ready .lead-growth-step {
  opacity: 0;
  filter: blur(3px);
  transform: translate3d(0, 2.5rem, 0) scale(0.94);
  will-change: opacity, filter, transform;
}

.story-bento.js-bento-ready .lead-growth-step.is-bento-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
  animation: bento-card-wave 0.85s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

.story-bento.js-bento-ready .lead-growth-step:nth-of-type(even).is-bento-visible {
  animation-delay: 0.1s;
}

.story-bento .lead-growth-step-result.is-bento-visible::after {
  animation: bento-result-scan 2.2s ease-in-out 0.7s 2;
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  .story-bento.js-bento-ready .lead-growth-step.is-bento-visible:hover {
    transform: translate3d(0, -7px, 0) scale(1.012);
  }
}

@media (max-width: 900px) {
  .story-bento .lead-growth-path {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .story-bento .lead-growth-step,
  .story-bento .lead-growth-step:nth-of-type(1),
  .story-bento .lead-growth-step:nth-of-type(2),
  .story-bento .lead-growth-step:nth-of-type(3),
  .story-bento .lead-growth-step:nth-of-type(4),
  .story-bento .lead-growth-step:nth-of-type(5),
  .story-bento .lead-growth-step:nth-of-type(6) {
    grid-column: 1;
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-bento.js-bento-ready .lead-growth-header,
  .story-bento.js-bento-ready.is-bento-started .lead-growth-header,
  .story-bento.js-bento-ready .lead-growth-step,
  .story-bento.js-bento-ready .lead-growth-step.is-bento-visible {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
    transition: none;
  }
}

@keyframes bento-card-wave {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translate3d(0, 2.5rem, 0) scale(0.94);
  }

  72% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, -0.25rem, 0) scale(1.008);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes bento-result-scan {
  0%,
  100% {
    opacity: 0.65;
    transform: translateX(-30%);
  }

  50% {
    opacity: 1;
    transform: translateX(30%);
    box-shadow: 0 0 24px rgba(249, 104, 2, 0.55);
  }
}
/* Compact industries Bento. */
.industry-bento-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 7.5rem) 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(249, 104, 2, 0.12), transparent 28%),
    radial-gradient(circle at 92% 82%, rgba(37, 99, 235, 0.07), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #fffaf6 100%);
}

.industry-bento-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 23, 42, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
}

.industry-bento-header {
  max-width: 58rem;
  margin: 0 auto clamp(2.75rem, 5vw, 4.5rem);
  text-align: center;
}

.industry-bento-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #f96802;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.industry-bento-header h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.industry-bento-header h2 span {
  color: #f96802;
}

.industry-bento-header p {
  max-width: 43rem;
  margin: 1.25rem auto 0;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.75;
}

.industry-bento-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
  max-width: 76rem;
  margin-inline: auto;
}

.industry-bento-card {
  --industry-glow-x: 50%;
  --industry-glow-y: 50%;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-column: span 3;
  min-height: 11.5rem;
  padding: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow:
    0 18px 42px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.industry-bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(
    circle at var(--industry-glow-x) var(--industry-glow-y),
    rgba(249, 104, 2, 0.18),
    transparent 42%
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.industry-bento-card > * {
  position: relative;
  z-index: 1;
}

.industry-bento-card:nth-child(3),
.industry-bento-card:nth-child(6) {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), transparent),
    #111827;
}

.industry-bento-card:nth-child(1),
.industry-bento-card:nth-child(8) {
  grid-column: span 4;
}

.industry-bento-card:nth-child(2),
.industry-bento-card:nth-child(7) {
  grid-column: span 2;
}

.industry-bento-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.industry-bento-card-top > span:first-child {
  display: inline-grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  border-radius: 10px;
  color: #f96802;
  background: rgba(249, 104, 2, 0.1);
  font-size: 1.3rem;
}

.industry-bento-card-top > span:last-child {
  color: rgba(15, 23, 42, 0.16);
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 900;
}

.industry-bento-card:nth-child(3) .industry-bento-card-top > span:last-child,
.industry-bento-card:nth-child(6) .industry-bento-card-top > span:last-child {
  color: rgba(255, 255, 255, 0.16);
}

.industry-bento-card h3 {
  margin: 0 0 0.55rem;
  color: #111827;
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
}

.industry-bento-card:nth-child(3) h3,
.industry-bento-card:nth-child(6) h3 {
  color: #ffffff;
}

.industry-bento-card p {
  margin: 0;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.55;
}

.industry-bento-card:nth-child(3) p,
.industry-bento-card:nth-child(6) p {
  color: rgba(255, 255, 255, 0.64);
}

.industry-bento-section.js-industry-ready .industry-bento-card {
  opacity: 0;
  filter: blur(3px);
  transform: translate3d(0, 2rem, 0) scale(0.95);
}

.industry-bento-section.js-industry-ready .industry-bento-card.is-industry-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
  animation: industry-card-wave 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
  animation-delay: var(--industry-delay, 0ms);
}

@media (hover: hover) and (pointer: fine) {
  .industry-bento-section.js-industry-ready .industry-bento-card.is-industry-visible:hover {
    transform: translateY(-6px);
    border-color: rgba(249, 104, 2, 0.35);
    box-shadow:
      0 24px 52px rgba(15, 23, 42, 0.12),
      0 8px 24px rgba(249, 104, 2, 0.08);
  }

  .industry-bento-card:hover::before {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .industry-bento-card,
  .industry-bento-card:nth-child(1),
  .industry-bento-card:nth-child(2),
  .industry-bento-card:nth-child(7),
  .industry-bento-card:nth-child(8) {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .industry-bento-section {
    padding: 4.5rem 0;
  }

  .industry-bento-grid {
    grid-template-columns: 1fr;
  }

  .industry-bento-card,
  .industry-bento-card:nth-child(1),
  .industry-bento-card:nth-child(2),
  .industry-bento-card:nth-child(7),
  .industry-bento-card:nth-child(8) {
    grid-column: 1;
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .industry-bento-section.js-industry-ready .industry-bento-card,
  .industry-bento-section.js-industry-ready .industry-bento-card.is-industry-visible {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }
}

@keyframes industry-card-wave {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translate3d(0, 2rem, 0) scale(0.95);
  }

  72% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, -0.2rem, 0) scale(1.008);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}
/* Expanded industries directory. */
.industry-bento-grid {
  grid-template-columns: repeat(auto-fit, minmax(10.5rem, 1fr));
  gap: 0.75rem;
}

.industry-bento-section .industry-bento-card,
.industry-bento-section .industry-bento-card:nth-child(1),
.industry-bento-section .industry-bento-card:nth-child(2),
.industry-bento-section .industry-bento-card:nth-child(7),
.industry-bento-section .industry-bento-card:nth-child(8) {
  grid-column: auto;
  display: flex;
  flex-direction: column;
  min-height: 6.75rem;
  padding: 0.9rem 1rem;
  color: #111827;
  border-color: rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.9);
}

.industry-bento-section .industry-bento-card-top {
  margin-bottom: 0.75rem;
}

.industry-bento-section .industry-bento-card-top > span:first-child {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 8px;
  font-size: 1.08rem;
}

.industry-bento-section .industry-bento-card-top > span:last-child {
  color: rgba(15, 23, 42, 0.15);
  font-size: 0.78rem;
}

.industry-bento-section .industry-bento-card:nth-child(3) .industry-bento-card-top > span:last-child,
.industry-bento-section .industry-bento-card:nth-child(6) .industry-bento-card-top > span:last-child {
  color: rgba(15, 23, 42, 0.15);
}

.industry-bento-section .industry-bento-card h3,
.industry-bento-section .industry-bento-card:nth-child(3) h3,
.industry-bento-section .industry-bento-card:nth-child(6) h3 {
  margin: auto 0 0;
  color: #111827;
  font-size: 0.95rem;
  line-height: 1.25;
}

.industry-bento-section .industry-bento-card:nth-child(8n + 4) {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), transparent),
    #111827;
}

.industry-bento-section .industry-bento-card:nth-child(8n + 4) h3 {
  color: #ffffff;
}

.industry-bento-section .industry-bento-card:nth-child(8n + 4) .industry-bento-card-top > span:last-child {
  color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 640px) {
  .industry-bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-bento-section .industry-bento-card,
  .industry-bento-section .industry-bento-card:nth-child(1),
  .industry-bento-section .industry-bento-card:nth-child(2),
  .industry-bento-section .industry-bento-card:nth-child(7),
  .industry-bento-section .industry-bento-card:nth-child(8) {
    grid-column: auto;
  }
}

@media (max-width: 390px) {
  .industry-bento-grid {
    grid-template-columns: 1fr;
  }
}
/* Compact industry descriptions. */
.industry-bento-section .industry-bento-card,
.industry-bento-section .industry-bento-card:nth-child(1),
.industry-bento-section .industry-bento-card:nth-child(2),
.industry-bento-section .industry-bento-card:nth-child(7),
.industry-bento-section .industry-bento-card:nth-child(8) {
  min-height: 10rem;
}

.industry-bento-section .industry-bento-card h3,
.industry-bento-section .industry-bento-card:nth-child(3) h3,
.industry-bento-section .industry-bento-card:nth-child(6) h3 {
  margin: 0;
}

.industry-bento-section .industry-bento-card p,
.industry-bento-section .industry-bento-card:nth-child(3) p,
.industry-bento-section .industry-bento-card:nth-child(6) p {
  display: block;
  margin: 0.48rem 0 0;
  color: #64748b;
  font-size: 0.74rem;
  line-height: 1.45;
}

.industry-bento-section .industry-bento-card:nth-child(8n + 4) p {
  color: rgba(255, 255, 255, 0.64);
}
/* Hover-only dark industry cards. */
.industry-bento-section .industry-bento-card,
.industry-bento-section .industry-bento-card:nth-child(8n + 4) {
  color: #111827;
  border-color: rgba(148, 163, 184, 0.22);
  background: rgba(255, 255, 255, 0.9);
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.3s ease,
    background-color 0.35s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.industry-bento-section .industry-bento-card:nth-child(8n + 4) h3 {
  color: #111827;
}

.industry-bento-section .industry-bento-card:nth-child(8n + 4) p {
  color: #64748b;
}

.industry-bento-section .industry-bento-card:nth-child(8n + 4) .industry-bento-card-top > span:last-child {
  color: rgba(15, 23, 42, 0.15);
}

.industry-bento-section .industry-bento-card h3,
.industry-bento-section .industry-bento-card p,
.industry-bento-section .industry-bento-card .industry-bento-card-top > span:last-child {
  transition: color 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .industry-bento-section.js-industry-ready .industry-bento-card.is-industry-visible:hover {
    color: #ffffff;
    border-color: rgba(249, 104, 2, 0.34);
    background-color: #111827;
  }

  .industry-bento-section.js-industry-ready .industry-bento-card.is-industry-visible:hover h3 {
    color: #ffffff;
  }

  .industry-bento-section.js-industry-ready .industry-bento-card.is-industry-visible:hover p {
    color: rgba(255, 255, 255, 0.68);
  }

  .industry-bento-section.js-industry-ready .industry-bento-card.is-industry-visible:hover .industry-bento-card-top > span:last-child {
    color: rgba(255, 255, 255, 0.2);
  }
}
/* AI answer simulator. */
.ai-simulator-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8.5rem) 0;
  background:
    radial-gradient(circle at 9% 18%, rgba(249, 104, 2, 0.12), transparent 27%),
    radial-gradient(circle at 91% 82%, rgba(56, 189, 248, 0.09), transparent 30%),
    linear-gradient(145deg, #fffaf6 0%, #f8fafc 52%, #eef2f7 100%);
}

.ai-simulator-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(15, 23, 42, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, transparent, #000 16%, #000 84%, transparent);
}

.ai-simulator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(32rem, 1.18fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.ai-simulator-copy {
  max-width: 37rem;
}

.ai-simulator-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #f96802;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.ai-simulator-copy h2 {
  margin: 0;
  color: #111827;
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.ai-simulator-copy h2 span {
  color: #f96802;
}

.ai-simulator-copy > p {
  margin: 1.35rem 0 0;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.75;
}

.ai-platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.75rem;
}

.ai-platform-list span {
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 999px;
  color: #475569;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
}

.ai-answer-simulator {
  position: relative;
  overflow: hidden;
  min-height: 31rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 1.1rem;
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 10%, rgba(56, 189, 248, 0.12), transparent 28%),
    radial-gradient(circle at 12% 92%, rgba(249, 104, 2, 0.15), transparent 32%),
    #0d1423;
  box-shadow:
    0 38px 90px rgba(15, 23, 42, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.ai-answer-toolbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.55rem 0.35rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-answer-dots {
  display: flex;
  gap: 0.3rem;
}

.ai-answer-dots span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.ai-answer-dots span:first-child {
  background: #f96802;
}

.ai-answer-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #a7f3d0;
}

.ai-answer-status i {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 14px rgba(52, 211, 153, 0.7);
  animation: ai-status-pulse 1.6s ease-in-out infinite;
}

.ai-answer-prompt {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.1rem 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.055);
}

.ai-answer-prompt > span {
  color: #ff9b5a;
  font-size: 1.2rem;
}

.ai-answer-prompt p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
}

.ai-answer-response {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.9rem;
  padding: 1.15rem;
  border: 1px solid rgba(249, 104, 2, 0.22);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.42);
}

.ai-answer-avatar {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(145deg, #f96802, #ff9b5a);
  box-shadow: 0 10px 24px rgba(249, 104, 2, 0.24);
}

.ai-answer-avatar span {
  font-size: 1.2rem;
}

.ai-answer-label {
  display: block;
  margin: 0.15rem 0 0.75rem;
  color: #ff9b5a;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ai-answer-copy {
  display: grid;
  gap: 0.55rem;
}

.ai-answer-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.55;
}

.ai-trust-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 0.8rem;
}

.ai-trust-signal-grid article {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.045);
}

.ai-trust-signal-grid article > span {
  flex: 0 0 auto;
  color: #f96802;
  font-size: 1.1rem;
}

.ai-trust-signal-grid strong,
.ai-trust-signal-grid small {
  display: block;
}

.ai-trust-signal-grid strong {
  color: #ffffff;
  font-size: 0.72rem;
}

.ai-trust-signal-grid small {
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.57rem;
  line-height: 1.35;
}

@media (prefers-reduced-motion: no-preference) {
  .ai-simulator-section .ai-simulator-copy,
  .ai-simulator-section .ai-answer-simulator {
    opacity: 0;
    transform: translateY(2rem);
  }

  .ai-simulator-section.revealed .ai-simulator-copy {
    animation: ai-simulator-enter 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .ai-simulator-section.revealed .ai-answer-simulator {
    animation: ai-simulator-enter 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.12s forwards;
  }

  .ai-simulator-section .ai-answer-copy span,
  .ai-simulator-section .ai-trust-signal-grid article {
    opacity: 0;
    transform: translateY(0.6rem);
  }

  .ai-simulator-section.revealed .ai-answer-copy span,
  .ai-simulator-section.revealed .ai-trust-signal-grid article {
    animation: ai-answer-line 0.55s ease forwards;
  }

  .ai-simulator-section.revealed .ai-answer-copy span:nth-child(1) { animation-delay: 0.65s; }
  .ai-simulator-section.revealed .ai-answer-copy span:nth-child(2) { animation-delay: 0.85s; }
  .ai-simulator-section.revealed .ai-answer-copy span:nth-child(3) { animation-delay: 1.05s; }
  .ai-simulator-section.revealed .ai-trust-signal-grid article:nth-child(1) { animation-delay: 1.2s; }
  .ai-simulator-section.revealed .ai-trust-signal-grid article:nth-child(2) { animation-delay: 1.32s; }
  .ai-simulator-section.revealed .ai-trust-signal-grid article:nth-child(3) { animation-delay: 1.44s; }
}

@media (max-width: 900px) {
  .ai-simulator-layout {
    grid-template-columns: 1fr;
  }

  .ai-simulator-copy {
    max-width: 48rem;
    margin-inline: auto;
    text-align: center;
  }

  .ai-platform-list {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .ai-simulator-section {
    padding: 4.5rem 0;
  }

  .ai-answer-simulator {
    min-height: 0;
    padding: 0.8rem;
  }

  .ai-answer-toolbar {
    grid-template-columns: auto 1fr;
  }

  .ai-answer-toolbar > span:nth-child(2) {
    display: none;
  }

  .ai-trust-signal-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes ai-simulator-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ai-answer-line {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ai-status-pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}
/* Centered two-path growth CTA. */
.growth-path-cta {
  position: relative;
  overflow: hidden;
  padding: clamp(5rem, 8vw, 7.5rem) 0;
  background: radial-gradient(circle at 50% 12%, rgba(249, 104, 2, 0.12), transparent 34%), linear-gradient(180deg, #fff, #f8fafc);
}

.growth-path-shell {
  max-width: 68rem;
  margin-inline: auto;
  text-align: center;
}

.growth-path-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #f96802;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.growth-path-shell h2 {
  max-width: 58rem;
  margin: 0 auto;
  color: #111827;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.growth-path-shell h2 span { color: #f96802; }

.growth-path-shell > p {
  max-width: 44rem;
  margin: 1.25rem auto 0;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.75;
}

.growth-path-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  text-align: left;
}

.growth-path-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 10rem;
  padding: 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 16px;
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.growth-path-option-primary {
  color: #111827;
  background: linear-gradient(145deg, rgba(249, 104, 2, 0.1), transparent 48%), #fff;
}

.growth-path-option-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 90% 12%, rgba(56, 189, 248, 0.12), transparent 32%), #111827;
}

.growth-path-icon {
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 11px;
  color: #f96802;
  background: rgba(249, 104, 2, 0.11);
  font-size: 1.4rem;
}

.growth-path-option-secondary .growth-path-icon { color: #ff9b5a; background: rgba(249, 104, 2, 0.13); }
.growth-path-option-copy small, .growth-path-option-copy strong, .growth-path-option-copy em { display: block; }

.growth-path-option-copy small {
  margin-bottom: 0.4rem;
  color: #f96802;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.growth-path-option-copy strong {
  color: inherit;
  font-family: var(--font-headline);
  font-size: 1.15rem;
  line-height: 1.2;
}

.growth-path-option-copy em {
  margin-top: 0.45rem;
  color: #64748b;
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.5;
}

.growth-path-option-secondary em { color: rgba(255, 255, 255, 0.6); }
.growth-path-arrow { color: #f96802; font-size: 1.25rem; transition: transform 0.3s ease; }

.growth-path-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.growth-path-proof i { width: 0.25rem; height: 0.25rem; border-radius: 50%; background: #f96802; }

@media (hover: hover) and (pointer: fine) {
  .growth-path-option:hover {
    transform: translateY(-7px);
    border-color: rgba(249, 104, 2, 0.36);
    box-shadow: 0 26px 58px rgba(15, 23, 42, 0.13), 0 10px 26px rgba(249, 104, 2, 0.08);
  }
  .growth-path-option:hover .growth-path-arrow { transform: translateX(5px); }
}

@media (prefers-reduced-motion: no-preference) {
  .growth-path-cta .growth-path-kicker, .growth-path-cta h2, .growth-path-cta .growth-path-shell > p, .growth-path-cta .growth-path-option, .growth-path-cta .growth-path-proof {
    opacity: 0;
    transform: translateY(1.2rem);
  }
  .growth-path-cta.revealed .growth-path-kicker, .growth-path-cta.revealed h2, .growth-path-cta.revealed .growth-path-shell > p, .growth-path-cta.revealed .growth-path-option, .growth-path-cta.revealed .growth-path-proof {
    animation: growth-path-enter 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
  .growth-path-cta.revealed h2 { animation-delay: 0.08s; }
  .growth-path-cta.revealed .growth-path-shell > p { animation-delay: 0.16s; }
  .growth-path-cta.revealed .growth-path-option:nth-child(1) { animation-delay: 0.26s; }
  .growth-path-cta.revealed .growth-path-option:nth-child(2) { animation-delay: 0.36s; }
  .growth-path-cta.revealed .growth-path-proof { animation-delay: 0.46s; }
}

@media (max-width: 760px) {
  .growth-path-cta { padding: 4.5rem 0; }
  .growth-path-options { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .growth-path-option { grid-template-columns: auto minmax(0, 1fr); }
  .growth-path-arrow { display: none; }
}

@keyframes growth-path-enter {
  to { opacity: 1; transform: translateY(0); }
}
/* Proven SEO strategy flywheel. */
.seo-flywheel-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8.5rem) 0;
  background: radial-gradient(circle at 50% 48%, rgba(249, 104, 2, 0.1), transparent 30%), linear-gradient(180deg, #fff, #f8fafc);
}

.seo-flywheel-header {
  max-width: 56rem;
  margin: 0 auto clamp(3.5rem, 6vw, 5rem);
  text-align: center;
}

.seo-flywheel-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  color: #f96802;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.seo-flywheel-header h2 { margin: 0; color: #111827; font-weight: 900; line-height: 1.02; letter-spacing: -0.045em; }
.seo-flywheel-header h2 span { color: #f96802; }
.seo-flywheel-header p { max-width: 44rem; margin: 1.25rem auto 0; color: #64748b; font-size: 1rem; line-height: 1.75; }

.seo-flywheel-visual {
  position: relative;
  width: min(100%, 64rem);
  height: 38rem;
  margin-inline: auto;
}

.seo-flywheel-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(66%, 39rem);
  height: 25rem;
  border: 1px solid rgba(249, 104, 2, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 60px rgba(249, 104, 2, 0.06);
}

.seo-flywheel-ring::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(from 0deg, transparent 0 12%, #f96802 18%, transparent 24% 45%, rgba(56, 189, 248, 0.8) 52%, transparent 60% 78%, #f96802 86%, transparent 94%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: seo-flywheel-spin 16s linear infinite;
}

.seo-flywheel-node {
  position: absolute;
  z-index: 2;
  width: 15rem;
  min-height: 8.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  transition: transform 0.32s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.seo-flywheel-node > span { display: inline-grid; width: 2.4rem; height: 2.4rem; place-items: center; border-radius: 9px; color: #f96802; background: rgba(249, 104, 2, 0.1); font-size: 1.2rem; }
.seo-flywheel-node > small { position: absolute; top: 1rem; right: 1rem; color: rgba(15, 23, 42, 0.16); font-size: 0.68rem; font-weight: 900; }
.seo-flywheel-node h3 { margin: 0.8rem 0 0.35rem; color: #111827; font-family: var(--font-headline); font-size: 1rem; font-weight: 800; line-height: 1.2; }
.seo-flywheel-node p { margin: 0; color: #64748b; font-size: 0.72rem; line-height: 1.45; }
.seo-flywheel-node-1 { top: 0; left: 50%; transform: translateX(-50%); }
.seo-flywheel-node-2 { top: 20%; right: 0; }
.seo-flywheel-node-3 { right: 5%; bottom: 8%; }
.seo-flywheel-node-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.seo-flywheel-node-5 { bottom: 8%; left: 5%; }
.seo-flywheel-node-6 { top: 20%; left: 0; }

.seo-flywheel-core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 13rem;
  height: 13rem;
  place-content: center;
  place-items: center;
  border: 1px solid rgba(249, 104, 2, 0.34);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  background: radial-gradient(circle at 30% 20%, rgba(249, 104, 2, 0.25), transparent 42%), #111827;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24), 0 0 36px rgba(249, 104, 2, 0.12);
  transform: translate(-50%, -50%);
}

.seo-flywheel-core > span { color: #f96802; font-size: 2rem; }
.seo-flywheel-core strong { max-width: 8rem; margin-top: 0.45rem; font-family: var(--font-headline); font-size: 1.2rem; line-height: 1.1; }
.seo-flywheel-core small { margin-top: 0.5rem; color: rgba(255, 255, 255, 0.55); font-size: 0.58rem; font-weight: 800; }

@media (hover: hover) and (pointer: fine) {
  .seo-flywheel-node:hover { border-color: rgba(249, 104, 2, 0.4); box-shadow: 0 24px 54px rgba(15, 23, 42, 0.13), 0 8px 22px rgba(249, 104, 2, 0.08); }
  .seo-flywheel-node-1:hover, .seo-flywheel-node-4:hover { transform: translateX(-50%) translateY(-6px); }
  .seo-flywheel-node-2:hover, .seo-flywheel-node-3:hover, .seo-flywheel-node-5:hover, .seo-flywheel-node-6:hover { transform: translateY(-6px); }
}

@media (prefers-reduced-motion: no-preference) {
  .seo-flywheel-section .seo-flywheel-header, .seo-flywheel-section .seo-flywheel-node, .seo-flywheel-section .seo-flywheel-core { opacity: 0; filter: blur(3px); }
  .seo-flywheel-section.revealed .seo-flywheel-header, .seo-flywheel-section.revealed .seo-flywheel-node, .seo-flywheel-section.revealed .seo-flywheel-core { animation: seo-flywheel-enter 0.72s ease forwards; }
  .seo-flywheel-section.revealed .seo-flywheel-node-1 { animation-delay: 0.15s; }
  .seo-flywheel-section.revealed .seo-flywheel-node-2 { animation-delay: 0.25s; }
  .seo-flywheel-section.revealed .seo-flywheel-node-3 { animation-delay: 0.35s; }
  .seo-flywheel-section.revealed .seo-flywheel-node-4 { animation-delay: 0.45s; }
  .seo-flywheel-section.revealed .seo-flywheel-node-5 { animation-delay: 0.55s; }
  .seo-flywheel-section.revealed .seo-flywheel-node-6 { animation-delay: 0.65s; }
  .seo-flywheel-section.revealed .seo-flywheel-core { animation-delay: 0.38s; }
}

@media (max-width: 900px) {
  .seo-flywheel-visual { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); height: auto; gap: 1rem; }
  .seo-flywheel-ring { display: none; }
  .seo-flywheel-node, .seo-flywheel-node-1, .seo-flywheel-node-2, .seo-flywheel-node-3, .seo-flywheel-node-4, .seo-flywheel-node-5, .seo-flywheel-node-6 { position: relative; inset: auto; width: 100%; min-height: 0; transform: none; }
  .seo-flywheel-core { position: relative; top: auto; left: auto; grid-column: 1 / -1; grid-row: 1; width: 100%; height: auto; min-height: 8rem; border-radius: 16px; transform: none; }
  .seo-flywheel-visual .seo-flywheel-node:hover { transform: translateY(-6px); }
}

@media (max-width: 560px) {
  .seo-flywheel-section { padding: 4.5rem 0; }
  .seo-flywheel-visual { grid-template-columns: 1fr; }
  .seo-flywheel-core { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) { .seo-flywheel-ring::before { animation: none; } }
@keyframes seo-flywheel-spin { to { transform: rotate(360deg); } }
@keyframes seo-flywheel-enter { from { opacity: 0; filter: blur(3px); } to { opacity: 1; filter: blur(0); } }
/* Guided clockwise flywheel activation. */
.seo-flywheel-ring { border-color: rgba(249, 104, 2, 0.08); }
.seo-flywheel-ring::before { display: none; }

.seo-flywheel-ring svg {
  position: absolute;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  overflow: visible;
}

.seo-flywheel-path {
  fill: none;
  stroke: url("#seo-flywheel-gradient");
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  vector-effect: non-scaling-stroke;
}

@media (prefers-reduced-motion: no-preference) {
  .seo-flywheel-section.revealed .seo-flywheel-path {
    animation: seo-flywheel-draw 2.15s cubic-bezier(0.65, 0, 0.35, 1) 0.08s forwards;
  }

  .seo-flywheel-section.revealed .seo-flywheel-node {
    animation: seo-flywheel-activate 0.58s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }

  .seo-flywheel-section.revealed .seo-flywheel-node-1 { animation-delay: 0.3s; }
  .seo-flywheel-section.revealed .seo-flywheel-node-2 { animation-delay: 0.58s; }
  .seo-flywheel-section.revealed .seo-flywheel-node-3 { animation-delay: 0.86s; }
  .seo-flywheel-section.revealed .seo-flywheel-node-4 { animation-delay: 1.14s; }
  .seo-flywheel-section.revealed .seo-flywheel-node-5 { animation-delay: 1.42s; }
  .seo-flywheel-section.revealed .seo-flywheel-node-6 { animation-delay: 1.7s; }

  .seo-flywheel-section.revealed .seo-flywheel-core {
    animation: seo-flywheel-core-pulse 0.85s cubic-bezier(0.16, 1, 0.3, 1) 2.08s forwards;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seo-flywheel-path { stroke-dashoffset: 0; }
}

@keyframes seo-flywheel-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes seo-flywheel-activate {
  0% {
    opacity: 0;
    filter: blur(3px);
    border-color: rgba(148, 163, 184, 0.24);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  }
  65% {
    opacity: 1;
    filter: blur(0);
    border-color: rgba(249, 104, 2, 0.62);
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.12), 0 0 28px rgba(249, 104, 2, 0.2);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    border-color: rgba(148, 163, 184, 0.24);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  }
}

@keyframes seo-flywheel-core-pulse {
  0% {
    opacity: 0;
    filter: blur(3px);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24), 0 0 0 rgba(249, 104, 2, 0);
  }
  60% {
    opacity: 1;
    filter: blur(0);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.26), 0 0 0 14px rgba(249, 104, 2, 0.09), 0 0 48px rgba(249, 104, 2, 0.28);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24), 0 0 36px rgba(249, 104, 2, 0.12);
  }
}
/* Continuous energy-flow flywheel option. */
.flywheel-energy .seo-flywheel-path {
  stroke-dashoffset: 0;
  opacity: 0.42;
}

.seo-flywheel-energy-dot {
  fill: #f96802;
  stroke: #ffffff;
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(249, 104, 2, 0.9));
}

@media (prefers-reduced-motion: no-preference) {
  .flywheel-energy.revealed .seo-flywheel-path {
    animation: none;
  }

  .flywheel-energy.revealed .seo-flywheel-node {
    animation:
      seo-flywheel-enter 0.7s ease forwards,
      seo-flywheel-node-energy 9s linear var(--energy-delay, 0s) infinite;
  }

  .flywheel-energy .seo-flywheel-node-1 { --energy-delay: 0s; }
  .flywheel-energy .seo-flywheel-node-2 { --energy-delay: 1.5s; }
  .flywheel-energy .seo-flywheel-node-3 { --energy-delay: 3s; }
  .flywheel-energy .seo-flywheel-node-4 { --energy-delay: 4.5s; }
  .flywheel-energy .seo-flywheel-node-5 { --energy-delay: 6s; }
  .flywheel-energy .seo-flywheel-node-6 { --energy-delay: 7.5s; }

  .flywheel-energy.revealed .seo-flywheel-core {
    animation:
      seo-flywheel-enter 0.7s ease 0.3s forwards,
      seo-flywheel-core-breathe 3.2s ease-in-out 1s infinite;
  }
}

@media (prefers-reduced-motion: reduce) {
  .seo-flywheel-energy-dot {
    display: none;
  }
}

@keyframes seo-flywheel-node-energy {
  0%,
  11% {
    border-color: rgba(249, 104, 2, 0.62);
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.12), 0 0 28px rgba(249, 104, 2, 0.22);
  }

  18%,
  100% {
    border-color: rgba(148, 163, 184, 0.24);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
  }
}

@keyframes seo-flywheel-core-breathe {
  0%,
  100% {
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.24), 0 0 28px rgba(249, 104, 2, 0.1);
  }

  50% {
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.26), 0 0 48px rgba(249, 104, 2, 0.24);
  }
}
/* Scroll-focused half flywheel. */
.flywheel-focus {
  min-height: 430vh;
  overflow: clip;
  padding-bottom: 0;
}

.flywheel-focus > .max-w-7xl { min-height: 420vh; }

.flywheel-focus .seo-flywheel-header {
  position: sticky;
  top: 6rem;
  z-index: 5;
  margin-bottom: 0;
  transition:
    opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.flywheel-focus .seo-flywheel-visual {
  position: sticky;
  top: 19rem;
  display: block;
  height: calc(100vh - 21rem);
  min-height: 28rem;
  overflow: hidden;
  margin-top: 2rem;
}

.flywheel-focus .seo-flywheel-ring {
  display: block;
  top: 74%;
  width: min(84%, 50rem);
  height: 22rem;
  border-color: rgba(249, 104, 2, 0.2);
  clip-path: inset(0 0 50% 0);
}

.flywheel-focus .seo-flywheel-ring svg,
.flywheel-focus .seo-flywheel-ring::before { display: none; }

.flywheel-focus .seo-flywheel-node,
.flywheel-focus .seo-flywheel-node-1,
.flywheel-focus .seo-flywheel-node-2,
.flywheel-focus .seo-flywheel-node-3,
.flywheel-focus .seo-flywheel-node-4,
.flywheel-focus .seo-flywheel-node-5,
.flywheel-focus .seo-flywheel-node-6 {
  position: absolute;
  top: 34%;
  right: auto;
  bottom: auto;
  left: 50%;
  width: min(30rem, 62vw);
  min-height: 16rem;
  padding: 1.6rem;
  pointer-events: none;
  opacity: 0;
  filter: blur(10px);
  transform: translate(-50%, -50%) scale(0.72);
  transition: left 0.75s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.55s ease, filter 0.65s ease, transform 0.75s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.flywheel-focus .seo-flywheel-node > span { width: 3.2rem; height: 3.2rem; font-size: 1.55rem; }
.flywheel-focus .seo-flywheel-node > small { font-size: 0.78rem; }
.flywheel-focus .seo-flywheel-node h3 { margin-top: 1.2rem; font-size: clamp(1.45rem, 2.4vw, 2rem); }
.flywheel-focus .seo-flywheel-node p { max-width: 24rem; margin-top: 0.65rem; font-size: 0.9rem; line-height: 1.65; }

.flywheel-focus .seo-flywheel-node.is-focus-active,
.flywheel-focus:not(.js-focus-ready) .seo-flywheel-node-1 {
  left: 50%;
  z-index: 4;
  pointer-events: auto;
  opacity: 1;
  filter: blur(0);
  transform: translate(-50%, -50%) scale(1);
  border-color: rgba(249, 104, 2, 0.38);
  box-shadow: 0 30px 72px rgba(15, 23, 42, 0.18), 0 0 32px rgba(249, 104, 2, 0.1);
}

.flywheel-focus .seo-flywheel-node.is-focus-previous {
  left: 0;
  z-index: 2;
  opacity: 0.34;
  filter: blur(6px);
  transform: translate(-50%, -50%) scale(0.82);
}

.flywheel-focus .seo-flywheel-node.is-focus-next,
.flywheel-focus:not(.js-focus-ready) .seo-flywheel-node-2 {
  left: 100%;
  z-index: 2;
  opacity: 0.34;
  filter: blur(6px);
  transform: translate(-50%, -50%) scale(0.82);
}

.flywheel-focus .seo-flywheel-core {
  position: absolute;
  top: auto;
  bottom: 0.25rem;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 12rem;
  min-height: 0;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  opacity: 1;
  filter: none;
  transform: translateX(-50%);
}

.flywheel-focus .seo-flywheel-core > span { display: none; }
.flywheel-focus .seo-flywheel-core strong { font-size: 0.9rem; }
.flywheel-focus .seo-flywheel-core small { margin-top: 0.25rem; }

@media (prefers-reduced-motion: no-preference) {
  .flywheel-focus.revealed .seo-flywheel-node,
  .flywheel-focus.revealed .seo-flywheel-core { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  .flywheel-focus .seo-flywheel-node,
  .flywheel-focus .seo-flywheel-header { transition: none; }
}

@media (max-width: 760px) {
  .flywheel-focus { min-height: 390vh; }
  .flywheel-focus > .max-w-7xl { min-height: 380vh; }
  .flywheel-focus .seo-flywheel-header { top: 5.5rem; }
  .flywheel-focus .seo-flywheel-visual { top: 18rem; height: calc(100vh - 19rem); min-height: 24rem; }
  .flywheel-focus .seo-flywheel-node,
  .flywheel-focus .seo-flywheel-node-1,
  .flywheel-focus .seo-flywheel-node-2,
  .flywheel-focus .seo-flywheel-node-3,
  .flywheel-focus .seo-flywheel-node-4,
  .flywheel-focus .seo-flywheel-node-5,
  .flywheel-focus .seo-flywheel-node-6 { width: 82vw; min-height: 15rem; padding: 1.25rem; }
  .flywheel-focus .seo-flywheel-node,
  .flywheel-focus .seo-flywheel-node-1,
  .flywheel-focus .seo-flywheel-node-2,
  .flywheel-focus .seo-flywheel-node-3,
  .flywheel-focus .seo-flywheel-node-4,
  .flywheel-focus .seo-flywheel-node-5,
  .flywheel-focus .seo-flywheel-node-6 { top: 31%; }
  .flywheel-focus .seo-flywheel-core { min-width: 10rem; padding: 0.65rem 1rem; }
}
/* Unified sticky flywheel stage. */
.flywheel-focus .seo-flywheel-focus-stage {
  position: sticky;
  top: 5rem;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  height: calc(100vh - 5rem);
}

.flywheel-focus .seo-flywheel-header {
  position: relative;
  top: auto;
  margin: 0 auto 1.5rem;
}

.flywheel-focus .seo-flywheel-visual {
  position: relative;
  top: auto;
  align-self: stretch;
  height: auto;
  min-height: 0;
  margin-top: 0;
}

@media (max-width: 760px) {
  .flywheel-focus .seo-flywheel-focus-stage {
    top: 4.75rem;
    height: calc(100vh - 4.75rem);
  }
}
/* Accessible FAQ accordion. */
.faq-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  background: radial-gradient(circle at 8% 14%, rgba(249, 104, 2, 0.1), transparent 28%), linear-gradient(180deg, #f8fafc, #fff);
}

.faq-header { max-width: 54rem; margin: 0 auto clamp(3rem, 5vw, 4.5rem); text-align: center; }
.faq-kicker { display: inline-flex; margin-bottom: 1rem; color: #f96802; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; }
.faq-header h2 { margin: 0; color: #111827; font-weight: 900; line-height: 1.02; letter-spacing: -0.045em; }
.faq-header h2 span { color: #f96802; }
.faq-header p { max-width: 42rem; margin: 1.2rem auto 0; color: #64748b; font-size: 1rem; line-height: 1.75; }

.faq-list { display: grid; gap: 0.75rem; max-width: 58rem; margin-inline: auto; }

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.055);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.is-open { border-color: rgba(249, 104, 2, 0.34); box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08), 0 8px 24px rgba(249, 104, 2, 0.06); }

.faq-question {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  width: 100%;
  padding: 1.2rem 1.3rem;
  border: 0;
  color: #111827;
  text-align: left;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.faq-question > span:last-child {
  display: inline-grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 8px;
  color: #f96802;
  background: rgba(249, 104, 2, 0.08);
  font-size: 1.15rem;
  transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}

.faq-item.is-open .faq-question > span:last-child { color: #fff; background: #f96802; transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.38s cubic-bezier(0.16, 1, 0.3, 1); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 50rem; margin: 0; padding: 0 1.3rem 1.25rem; color: #64748b; font-size: 0.88rem; line-height: 1.7; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-question:focus-visible { outline: 3px solid rgba(249, 104, 2, 0.28); outline-offset: -3px; }

@media (prefers-reduced-motion: no-preference) {
  .faq-section .faq-header, .faq-section .faq-item { opacity: 0; transform: translateY(1.25rem); }
  .faq-section.revealed .faq-header, .faq-section.revealed .faq-item { animation: faq-enter 0.65s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
  .faq-section.revealed .faq-item:nth-child(1) { animation-delay: 0.08s; }
  .faq-section.revealed .faq-item:nth-child(2) { animation-delay: 0.12s; }
  .faq-section.revealed .faq-item:nth-child(3) { animation-delay: 0.16s; }
  .faq-section.revealed .faq-item:nth-child(4) { animation-delay: 0.2s; }
  .faq-section.revealed .faq-item:nth-child(5) { animation-delay: 0.24s; }
  .faq-section.revealed .faq-item:nth-child(6) { animation-delay: 0.28s; }
  .faq-section.revealed .faq-item:nth-child(7) { animation-delay: 0.32s; }
  .faq-section.revealed .faq-item:nth-child(8) { animation-delay: 0.36s; }
  .faq-section.revealed .faq-item:nth-child(9) { animation-delay: 0.4s; }
  .faq-section.revealed .faq-item:nth-child(10) { animation-delay: 0.44s; }
}

@media (max-width: 640px) {
  .faq-section { padding: 4.5rem 0; }
  .faq-question { padding: 1rem; font-size: 0.92rem; }
  .faq-answer p { padding: 0 1rem 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer, .faq-question > span:last-child { transition: none; }
}

@keyframes faq-enter { to { opacity: 1; transform: translateY(0); } }
/* Horizontal success-story carousel. */
.success-carousel-section {
  position: relative;
  overflow: hidden;
  padding: clamp(5.5rem, 9vw, 8rem) 0;
  background: radial-gradient(circle at 88% 14%, rgba(249, 104, 2, 0.11), transparent 28%), linear-gradient(180deg, #fff, #f8fafc);
}

.success-carousel-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.success-carousel-header > div:first-child { max-width: 52rem; }
.success-carousel-kicker { display: inline-flex; margin-bottom: 1rem; color: #f96802; font-size: 0.72rem; font-weight: 900; letter-spacing: 0.2em; text-transform: uppercase; }
.success-carousel-header h2 { margin: 0; color: #111827; font-weight: 900; line-height: 1.02; letter-spacing: -0.045em; }
.success-carousel-header h2 span { color: #f96802; }
.success-carousel-header p { max-width: 44rem; margin: 1.15rem 0 0; color: #64748b; font-size: 1rem; line-height: 1.7; }

.success-carousel-controls { display: flex; align-items: center; gap: 0.6rem; }
.success-carousel-count { display: flex; align-items: center; gap: 0.5rem; margin-right: 0.5rem; color: #94a3b8; font-size: 0.7rem; font-weight: 900; }
.success-carousel-count span:first-child { color: #f96802; }
.success-carousel-count i { width: 1.8rem; height: 1px; background: rgba(148, 163, 184, 0.45); }
.success-carousel-controls button { display: inline-grid; width: 2.8rem; height: 2.8rem; place-items: center; border: 1px solid rgba(148, 163, 184, 0.25); border-radius: 10px; color: #111827; background: #fff; cursor: pointer; box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07); transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, background-color 0.25s ease; }
.success-carousel-controls button span { font-size: 1.2rem; }
.success-carousel-controls button:disabled { opacity: 0.35; cursor: not-allowed; box-shadow: none; }

.success-carousel-viewport { position: relative; }
.success-carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0.5rem max(1.5rem, calc((100vw - 80rem) / 2)) 2rem;
  scroll-padding-inline: max(1.5rem, calc((100vw - 80rem) / 2));
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pan-y;
}
.success-carousel-track::-webkit-scrollbar { display: none; }
.success-carousel-track.is-dragging { cursor: grabbing; scroll-snap-type: none; user-select: none; }
.success-carousel-track:focus-visible { outline: 3px solid rgba(249, 104, 2, 0.28); outline-offset: -3px; }

.success-story-card {
  position: relative;
  flex: 0 0 min(78vw, 42rem);
  min-height: 25rem;
  overflow: hidden;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  color: #111827;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 58px rgba(15, 23, 42, 0.1);
  scroll-snap-align: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.success-story-card-featured,
.success-story-card-outcome {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at 90% 8%, rgba(249, 104, 2, 0.2), transparent 34%), #111827;
}

.success-story-card-warm { background: linear-gradient(145deg, #fff7ed, #fff); border-color: rgba(249, 104, 2, 0.22); }
.success-story-topline { display: flex; justify-content: space-between; gap: 1rem; align-items: center; margin-bottom: 1.6rem; }
.success-story-topline > span { color: #f96802; font-size: 0.68rem; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.success-story-topline small { color: rgba(15, 23, 42, 0.14); font-size: 1rem; font-weight: 900; }
.success-story-card-featured .success-story-topline small, .success-story-card-outcome .success-story-topline small { color: rgba(255, 255, 255, 0.16); }
.success-story-icon { display: grid; width: 3rem; height: 3rem; place-items: center; border-radius: 11px; color: #f96802; background: rgba(249, 104, 2, 0.11); }
.success-story-icon span { font-size: 1.45rem; }
.success-story-card h3 { max-width: 31rem; margin: 1.2rem 0 0.75rem; color: inherit; font-family: var(--font-headline); font-size: clamp(1.65rem, 3vw, 2.55rem); font-weight: 900; line-height: 1.05; }
.success-story-card > p { max-width: 36rem; margin: 0; color: #64748b; font-size: 0.9rem; line-height: 1.7; }
.success-story-card-featured > p, .success-story-card-outcome > p { color: rgba(255, 255, 255, 0.66); }

.success-story-metrics { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
.success-story-metrics > div { min-width: 9rem; padding: 0.9rem 1rem; border: 1px solid rgba(148, 163, 184, 0.18); border-radius: 11px; background: rgba(248, 250, 252, 0.7); }
.success-story-card-featured .success-story-metrics > div { border-color: rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.055); }
.success-story-metrics strong, .success-story-metrics span { display: block; }
.success-story-metrics strong { color: #f96802; font-family: var(--font-headline); font-size: 1.35rem; font-weight: 900; }
.success-story-metrics span { margin-top: 0.2rem; color: #64748b; font-size: 0.62rem; font-weight: 800; text-transform: uppercase; }
.success-story-card-featured .success-story-metrics span { color: rgba(255, 255, 255, 0.5); }

.success-story-highlight { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid rgba(148, 163, 184, 0.2); }
.success-story-highlight strong, .success-story-highlight span { display: block; }
.success-story-highlight strong { color: #f96802; font-family: var(--font-headline); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 900; line-height: 1; }
.success-story-highlight span { margin-top: 0.45rem; color: #64748b; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; }
.success-story-card-outcome .success-story-highlight { border-color: rgba(255, 255, 255, 0.12); }
.success-story-card-outcome .success-story-highlight span { color: rgba(255, 255, 255, 0.5); }
.success-story-tag { display: inline-flex; margin-top: 1.5rem; padding: 0.45rem 0.65rem; border-radius: 999px; color: #f96802; background: rgba(249, 104, 2, 0.09); font-size: 0.62rem; font-weight: 900; text-transform: uppercase; }
.success-story-action { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.6rem; padding: 0.75rem 0.95rem; border: 0; border-radius: 9px; color: #111827; background: #fff; cursor: pointer; font-weight: 800; }
.success-story-action span { font-size: 1rem; transition: transform 0.25s ease; }

.success-carousel-hint { display: flex; align-items: center; justify-content: center; gap: 0.45rem; margin-top: 0.25rem; color: #94a3b8; font-size: 0.68rem; font-weight: 800; text-transform: uppercase; }
.success-carousel-hint span { color: #f96802; font-size: 1rem; }

@media (hover: hover) and (pointer: fine) {
  .success-carousel-controls button:hover { color: #fff; border-color: #f96802; background: #f96802; transform: translateY(-2px); }
  .success-carousel-section.revealed .success-story-card:hover { transform: translateY(-6px); border-color: rgba(249, 104, 2, 0.36); box-shadow: 0 30px 70px rgba(15, 23, 42, 0.15); }
  .success-story-action:hover span { transform: translateX(4px); }
}

@media (prefers-reduced-motion: no-preference) {
  .success-carousel-section .success-carousel-header, .success-carousel-section .success-story-card { opacity: 0; transform: translateY(1.4rem); }
  .success-carousel-section.revealed .success-carousel-header { opacity: 1; transform: none; animation: success-card-in 0.7s ease backwards; }
  .success-carousel-section.revealed .success-story-card { opacity: 1; transform: none; animation: success-card-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) backwards; }
  .success-carousel-section.revealed .success-story-card:nth-child(1) { animation-delay: 0.12s; }
  .success-carousel-section.revealed .success-story-card:nth-child(2) { animation-delay: 0.2s; }
  .success-carousel-section.revealed .success-story-card:nth-child(3) { animation-delay: 0.28s; }
  .success-carousel-section.revealed .success-story-card:nth-child(4) { animation-delay: 0.36s; }
}

@media (max-width: 760px) {
  .success-carousel-section { padding: 4.5rem 0; }
  .success-carousel-header { grid-template-columns: 1fr; align-items: start; }
  .success-carousel-controls { justify-content: space-between; }
  .success-story-card { flex-basis: 86vw; min-height: 27rem; }
  .success-carousel-track { padding-inline: 1.5rem; scroll-padding-inline: 1.5rem; }
}

@keyframes success-card-in { from { opacity: 0; transform: translateY(1.4rem) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.reel-video-preview {
  object-fit: cover;
}

