/* ============================================================
   FORTE AD AGENCY — PREMIUM DESIGN SYSTEM
   Award-Winning Creative Agency Aesthetic
   Black × Lemon Yellow × Glass × Organic Shapes
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Core Colors */
  --black: #000000;
  --black-soft: #0a0a0a;
  --black-card: #111111;
  --black-elevated: #171717;
  --black-border: #222222;
  --gray-900: #1a1a1a;
  --gray-700: #2e2e2e;
  --gray-500: #5a5a5a;
  --gray-400: #888888;
  --gray-200: #c8c8c8;
  --gray-100: #f0f0f0;
  --white: #ffffff;

  /* Brand Accent */
  --yellow: #f7ee8a;
  --yellow-dim: #c8d926;
  --yellow-glow: rgba(226, 243, 43, 0.25);
  --yellow-subtle: rgba(226, 243, 43, 0.06);
  --yellow-border: rgba(226, 243, 43, 0.2);

  /* Light Section */
  --light-bg: #ffffff;
  --light-text: #111111;
  --light-sub: #444444;
  --light-border: #eaeaea;

  /* Glass System */
  --glass-dark: rgba(255, 255, 255, 0.04);
  --glass-dark-border: rgba(255, 255, 255, 0.08);
  --glass-light: rgba(255, 255, 255, 0.72);
  --glass-light-border: rgba(255, 255, 255, 0.9);
  --blur: blur(24px);
  --blur-sm: blur(12px);

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Manrope', sans-serif;

  /* Spacing Scale */
  --s1: 0.25rem;
  --s2: 0.5rem;
  --s3: 0.75rem;
  --s4: 1rem;
  --s5: 1.25rem;
  --s6: 1.5rem;
  --s8: 2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;
  --s32: 8rem;

  /* Border Radius — Organic & Rounded */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --r-2xl: 56px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.15);
  --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 40px 100px rgba(0, 0, 0, 0.6);
  --shadow-yellow: 0 0 40px rgba(226, 243, 43, 0.3), 0 8px 24px rgba(226, 243, 43, 0.15);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);

  /* Easing */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 0.18s;
  --t-base: 0.28s;
  --t-slow: 0.45s;

  /* Layout */
  --container: 1200px;
  --nav-h: 72px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */

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

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}

svg {
  flex-shrink: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6);
}

.section-dark {
  background: var(--black);
}

.section-black {
  background: var(--black-soft);
}

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

/* Section padding utilities */
.sec-pad {
  padding: var(--s24) 0;
}

.sec-pad-lg {
  padding: var(--s32) 0;
}

.sec-pad-sm {
  padding: var(--s16) 0;
}

/* ============================================================
   TYPOGRAPHY SYSTEM
   ============================================================ */

.display-1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.display-2 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.heading-1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.heading-2 {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--yellow);
  border-radius: 2px;
}

.eyebrow.dark {
  color: var(--gray-500);
}

.eyebrow.dark::before {
  background: var(--gray-500);
}

/* Color utilities */
.text-yellow {
  color: var(--yellow);
}

.text-gray {
  color: var(--gray-400);
}

.text-dark {
  color: var(--light-text);
}

/* Gradient text */
.text-gradient {
  background: linear-gradient(120deg, var(--yellow) 0%, #fff0a0 50%, var(--yellow) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BUTTONS — Premium Variants
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.875rem 2rem;
  border-radius: var(--r-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background var(--t-fast);
}

.btn:hover::before {
  background: rgba(255, 255, 255, 0.06);
}

/* Primary — Yellow */
.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  box-shadow: 0 4px 20px rgba(226, 243, 43, 0.15);
}

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

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

/* Ghost on dark */
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

/* Ghost white variant */
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
}

.btn-ghost-white:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  transform: translateY(-2px);
}

/* Dark on light */
.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-dark:hover {
  background: var(--black-card);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Sizes */
.btn-lg {
  font-size: 1rem;
  padding: 1.0625rem 2.375rem;
}

.btn-sm {
  font-size: 0.875rem;
  padding: 0.625rem 1.375rem;
}

/* Glow variant */
.btn-glow {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  box-shadow: var(--shadow-yellow);
}

.btn-glow:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 0 60px rgba(226, 243, 43, 0.45), 0 12px 32px rgba(226, 243, 43, 0.2);
}

/* Focus ring */
.btn:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 4px;
}

/* ============================================================
   GLASS COMPONENTS
   ============================================================ */

.glass-dark {
  background: var(--glass-dark);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-dark-border);
  box-shadow: var(--shadow-glass);
}

.glass-dark-sm {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.glass-light {
  background: var(--glass-light);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid var(--glass-light-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* ============================================================
   ANIMATIONS & KEYFRAMES
   ============================================================ */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(226, 243, 43, 0.5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(226, 243, 43, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(226, 243, 43, 0);
  }
}

@keyframes drift {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -20px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 15px) rotate(240deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes shimmer {
  from {
    background-position: -200% center;
  }

  to {
    background-position: 200% center;
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Utility animation classes */
.anim-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s var(--ease-out) forwards;
}

.anim-fade-in {
  opacity: 0;
  animation: fadeIn 0.6s var(--ease-out) forwards;
}

.anim-float {
  animation: float 6s ease-in-out infinite;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.22s;
}

.delay-3 {
  animation-delay: 0.36s;
}

.delay-4 {
  animation-delay: 0.5s;
}

.delay-5 {
  animation-delay: 0.65s;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

  .anim-fade-up,
  .anim-fade-in,
  .reveal {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .anim-float {
    animation: none;
  }
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.88);
  border-bottom-color: rgba(226, 243, 43, 0.12);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
  height: 100%;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s8);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-forte {
  font-family: var(--font-display);
  font-size: 1.3125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--white);
}

.logo-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  flex-shrink: 0;
  animation: pulse-ring 2.5s ease-in-out infinite;
}

.logo-sub {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--gray-400);
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s6);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-400);
  position: relative;
  padding: 4px 0;
  transition: color var(--t-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--yellow);
  border-radius: 2px;
  transition: width var(--t-base) var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Nav CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--black);
  background: var(--yellow);
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-full);
  flex-shrink: 0;
  transition: all var(--t-base) var(--ease-out);
  letter-spacing: 0.01em;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-yellow);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-base);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

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

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

/* ============================================================
   SECTION HEADER SYSTEM
   ============================================================ */

.sec-header {
  margin-bottom: var(--s16);
}

.sec-header.centered {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--s16);
}

.sec-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-top: var(--s3);
  margin-bottom: var(--s4);
}

.sec-headline.dark {
  color: var(--light-text);
}

.sec-sub {
  font-size: 1.0625rem;
  color: var(--gray-400);
  line-height: 1.75;
  max-width: 580px;
}

.sec-sub.dark {
  color: var(--light-sub);
}

.centered .sec-sub {
  margin: 0 auto;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + var(--s16)) 0 var(--s20);
  overflow: hidden;
  background: var(--black);
}

/* Ambient background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 800px;
  height: 800px;
  top: -25%;
  right: -10%;
  background: radial-gradient(circle, rgba(226, 243, 43, 0.08) 0%, transparent 65%);
  animation: drift 30s ease-in-out infinite;
}

.hero-orb-2 {
  width: 500px;
  height: 500px;
  bottom: -10%;
  left: -5%;
  background: radial-gradient(circle, rgba(226, 243, 43, 0.05) 0%, transparent 65%);
  animation: drift 40s ease-in-out infinite reverse;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(226, 243, 43, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 243, 43, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 40%, black 30%, transparent 100%);
}

/* Hero split layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: var(--s12);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yellow);
  background: var(--yellow-subtle);
  border: 1px solid var(--yellow-border);
  padding: 0.45rem 1rem;
  border-radius: var(--r-full);
  width: fit-content;
}

.badge-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse-ring 2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
}

.hero-headline .line-accent {
  display: block;
  color: var(--yellow);
}

.hero-sub {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
  margin-top: var(--s2);
}

.hero-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--s3);
}

.platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.375rem 0.875rem;
  border-radius: var(--r-full);
  transition: all var(--t-base);
}

.platform-chip:hover {
  border-color: var(--yellow-border);
  color: var(--yellow);
}

/* Hero right — image frame */
.hero-right {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  max-height: 620px;
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease-in-out;
}

.hero-img-wrap:hover img {
  transform: scale(1.03);
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(226, 243, 43, 0.06) 0%,
      transparent 40%,
      rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

/* Floating stat badges */
.hero-stat-badge {
  position: absolute;
  border-radius: var(--r-lg);
  padding: var(--s4) var(--s5);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-stat-badge.badge-bl {
  bottom: var(--s6);
  left: calc(-1 * var(--s8));
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: var(--blur);
  -webkit-backdrop-filter: var(--blur);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-glass);
}

.hero-stat-badge.badge-tr {
  top: var(--s8);
  right: calc(-1 * var(--s6));
  background: var(--yellow);
  box-shadow: var(--shadow-yellow);
}

.badge-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  color: var(--yellow);
}

.badge-tr .badge-num {
  color: var(--black);
}

.badge-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-tr .badge-label {
  color: rgba(0, 0, 0, 0.6);
}

/* ============================================================
   MARQUEE / TICKER BAR
   ============================================================ */

.ticker-bar {
  background: var(--yellow);
  padding: 0.75rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  gap: 0;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: 0 var(--s8);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.ticker-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

/* ============================================================
   STATS / KPI SECTION
   ============================================================ */

.kpi-section {
  background: var(--black-card);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
  padding: var(--s16) 0;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--black-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.kpi-item {
  background: var(--black-card);
  padding: var(--s8) var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  transition: background var(--t-base);
}

.kpi-item:hover {
  background: var(--black-elevated);
}

.kpi-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.02em;
}

.kpi-label {
  font-size: 0.875rem;
  color: var(--gray-400);
  font-weight: 500;
  line-height: 1.4;
}

/* ============================================================
   WHO WE HELP SECTION
   ============================================================ */

.who-section {
  background: var(--black);
  padding: var(--s24) 0;
  overflow: hidden;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
}

.who-left {
  display: flex;
  flex-direction: column;
  gap: var(--s6);
}

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-top: var(--s4);
}

.industry-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-200);
  background: var(--black-card);
  border: 1px solid var(--black-border);
  padding: 0.45rem 0.875rem;
  border-radius: var(--r-full);
  transition: all var(--t-base);
  cursor: default;
}

.industry-pill:hover {
  border-color: var(--yellow-border);
  color: var(--yellow);
  background: var(--yellow-subtle);
}

.industry-pill.cta-pill {
  background: var(--yellow-subtle);
  border-color: var(--yellow-border);
  color: var(--yellow);
  cursor: pointer;
}

.industry-pill.cta-pill:hover {
  background: var(--yellow);
  color: var(--black);
}

/* Who right — image with overlap */
.who-right {
  position: relative;
}

.who-img-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}

.who-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.who-img-frame:hover img {
  transform: scale(1.04);
}

.who-img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
  pointer-events: none;
}

.who-img-caption {
  position: absolute;
  bottom: var(--s6);
  left: var(--s6);
  right: var(--s6);
  z-index: 2;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.who-img-caption span {
  color: var(--yellow);
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */

.services-section {
  background: var(--black-soft);
  padding: var(--s24) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s4);
  margin-top: var(--s12);
}

.service-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-xl);
  padding: var(--s8);
  position: relative;
  overflow: hidden;
  transition: all var(--t-base) var(--ease-out);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow-border), transparent);
  opacity: 0;
  transition: opacity var(--t-base);
}

.service-card:hover {
  border-color: rgba(226, 243, 43, 0.18);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card.wide {
  grid-column: 1 / -1;
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: var(--yellow-subtle);
  border: 1px solid var(--yellow-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  margin-bottom: var(--s5);
  transition: all var(--t-base);
}

.service-card:hover .service-icon-wrap {
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow-yellow);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--s3);
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: var(--s5);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.875rem;
  color: var(--gray-200);
  font-weight: 500;
}

.service-features li svg {
  color: var(--yellow);
  flex-shrink: 0;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: var(--s4);
}

.tag {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-200);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.3rem 0.875rem;
  border-radius: var(--r-full);
  transition: all var(--t-base);
}

.tag:hover {
  border-color: var(--yellow-border);
  color: var(--yellow);
}

/* ============================================================
   PROCESS / HOW IT WORKS
   ============================================================ */

.process-section {
  background: var(--black);
  padding: var(--s24) 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: var(--s12);
}

.process-step {
  padding: var(--s6);
  position: relative;
}

.step-connector {
  position: absolute;
  top: 28px;
  right: -20%;
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, var(--yellow-border), transparent);
  z-index: 0;
}

.step-num-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1.5px solid var(--yellow-border);
  background: var(--yellow-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s5);
  position: relative;
  z-index: 1;
  transition: all var(--t-base);
}

.process-step:hover .step-num-wrap {
  border-color: var(--yellow);
  background: var(--yellow);
  box-shadow: var(--shadow-yellow);
}

.step-num {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--yellow);
  transition: color var(--t-base);
}

.process-step:hover .step-num {
  color: var(--black);
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--s2);
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-section {
  background: var(--white);
  padding: var(--s24) 0;
  position: relative;
}

/* Curved top transition from dark */
.testimonials-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

/* Featured insurance testimonial */
.featured-testi {
  background: var(--black);
  border-radius: var(--r-2xl);
  padding: var(--s12) var(--s12);
  margin-bottom: var(--s12);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--black-border);
}

.featured-testi::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 243, 43, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 0.3rem 0.875rem;
  border-radius: var(--r-full);
  margin-bottom: var(--s6);
}

.featured-quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.7;
  color: var(--yellow);
  opacity: 0.4;
  display: block;
  margin-bottom: var(--s4);
}

.featured-quote {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: var(--s6);
  max-width: 800px;
}

.featured-quote strong {
  color: var(--yellow);
}

.featured-attrib {
  font-size: 0.9rem;
  color: var(--gray-400);
}

.featured-company-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  margin-right: 8px;
  vertical-align: middle;
}

/* Testimonial grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s5);
}

.testimonial-card {
  background: var(--glass-light);
  backdrop-filter: var(--blur-sm);
  -webkit-backdrop-filter: var(--blur-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--r-xl);
  padding: var(--s8);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  transition: all var(--t-base) var(--ease-out);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.testi-stars {
  display: flex;
  gap: 3px;
}

.testi-quote {
  font-size: 0.9375rem;
  color: var(--light-sub);
  line-height: 1.75;
  font-weight: 500;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-top: auto;
  padding-top: var(--s4);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(226, 243, 43, 0.3);
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--light-text);
}

.testi-role {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ============================================================
   PRICING SECTION
   ============================================================ */

.pricing-section {
  background: var(--black-card);
  padding: var(--s24) 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s12);
  align-items: start;
}

.pricing-card {
  border-radius: var(--r-xl);
  padding: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s5);
  position: relative;
  transition: all var(--t-base) var(--ease-out);
}

/* Standard card */
.pricing-card:not(.pricing-card-featured):not(.pricing-card-jv) {
  background: var(--black-elevated);
  border: 1px solid var(--black-border);
}

/* Featured card */
.pricing-card-featured {
  background: var(--black);
  border: 1.5px solid var(--yellow-border);
  box-shadow: 0 0 0 1px rgba(226, 243, 43, 0.1), 0 24px 80px rgba(226, 243, 43, 0.1), 0 8px 32px rgba(0, 0, 0, 0.5);
  transform: translateY(-8px);
}

/* JV card */
.pricing-card-jv {
  background: var(--black-elevated);
  border: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
}

.pricing-card-jv::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226, 243, 43, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: var(--r-full);
  white-space: nowrap;
  box-shadow: var(--shadow-yellow);
}

.pricing-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-400);
}

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}

.price-zero {
  color: var(--yellow);
}

.price-period {
  font-size: 1rem;
  color: var(--gray-500);
  font-weight: 500;
}

.pricing-tagline {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.pricing-divider {
  height: 1px;
  background: var(--black-border);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  flex: 1;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: var(--s2);
  font-size: 0.9rem;
  color: var(--gray-200);
  line-height: 1.5;
}

.pricing-features li svg {
  color: var(--yellow);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-best {
  font-size: 0.8125rem;
  color: var(--gray-500);
  line-height: 1.5;
  font-style: italic;
}

.pricing-btn {
  width: 100%;
  justify-content: center;
}

.jv-how {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--r-lg);
  padding: var(--s5);
}

.jv-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--s3);
}

.jv-text {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* Comparison table */
.pricing-compare {
  margin-top: var(--s16);
}

.compare-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin-bottom: var(--s8);
  letter-spacing: -0.02em;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.compare-table th {
  padding: var(--s4) var(--s5);
  background: var(--black-elevated);
  color: var(--gray-400);
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid var(--black-border);
  font-family: var(--font-display);
}

.compare-table th:not(:first-child) {
  text-align: center;
  color: var(--white);
}

.compare-table td {
  padding: var(--s4) var(--s5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--gray-400);
  vertical-align: middle;
}

.compare-table td:not(:first-child) {
  text-align: center;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.check-y {
  color: var(--yellow);
  font-size: 1rem;
  font-weight: 700;
}

.dash-g {
  color: var(--gray-700);
}

.th-featured {
  color: var(--yellow) !important;
}

/* Pricing CTA block */
.pricing-cta-block {
  text-align: center;
  margin-top: var(--s16);
  padding: var(--s12);
  background: var(--yellow-subtle);
  border: 1px solid var(--yellow-border);
  border-radius: var(--r-xl);
}

.pricing-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.375rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: var(--s4);
}

.pricing-cta-sub {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto var(--s8);
}

.pricing-phone-display {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-400);
  margin-top: var(--s4);
}

/* ============================================================
   FAQ SECTION
   ============================================================ */

.faq-section {
  background: var(--black);
  padding: var(--s24) 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  max-width: 800px;
  margin: var(--s12) auto 0;
}

.faq-item {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-base);
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--yellow-border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--s5) var(--s6);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  gap: var(--s4);
  transition: color var(--t-base);
  letter-spacing: -0.01em;
}

.faq-question:hover {
  color: var(--yellow);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform var(--t-base) var(--ease-out);
  color: var(--gray-500);
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--yellow);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 var(--s6) var(--s5);
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.75;
}

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: var(--black-soft);
  padding: var(--s24) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(226, 243, 43, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s6);
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
}

.cta-sub {
  font-size: 1.0625rem;
  color: var(--gray-400);
  line-height: 1.75;
  max-width: 540px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--s2);
}

.cta-phone-number {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-400);
  transition: color var(--t-base);
  letter-spacing: -0.01em;
}

.cta-phone-number:hover {
  color: var(--yellow);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--black);
  border-top: 1px solid var(--black-border);
  padding: var(--s16) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s8);
  padding-bottom: var(--s12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 280px;
}

.footer-phone {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--yellow);
  transition: opacity var(--t-base);
  letter-spacing: -0.01em;
}

.footer-phone:hover {
  opacity: 0.8;
}

.footer-nav h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--s5);
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--gray-500);
  transition: color var(--t-base);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.footer-contact p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.footer-cta {
  align-self: flex-start;
}

.footer-bottom {
  border-top: 1px solid var(--black-border);
  padding: var(--s5) 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  flex-wrap: wrap;
}

.footer-bottom-inner p {
  font-size: 0.8125rem;
  color: var(--gray-700);
}

.footer-legal-link {
  font-size: 0.8125rem;
  color: var(--gray-700);
  transition: color var(--t-base);
}

.footer-legal-link:hover {
  color: var(--gray-400);
}

/* ============================================================
   PAGE HEROES (Inner pages)
   ============================================================ */

.page-hero {
  background: var(--black);
  padding: calc(var(--nav-h) + var(--s16)) 0 var(--s20);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 30%, rgba(226, 243, 43, 0.06), transparent 70%),
    linear-gradient(rgba(226, 243, 43, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 243, 43, 0.025) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.page-hero-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: var(--s4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--yellow);
  border-radius: 2px;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--s5);
}

.page-hero-sub {
  font-size: 1.125rem;
  color: var(--gray-400);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: var(--s8);
}

/* Split page hero */
.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: end;
}

.page-hero-text {
  padding-bottom: var(--s12);
}

.page-hero-img {
  position: relative;
  height: 500px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden;
}

.page-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 8s ease;
}

.page-hero-img:hover img {
  transform: scale(1.03);
}

.page-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--black) 100%);
  pointer-events: none;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.mission-section {
  background: var(--white);
  padding: var(--s24) 0;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s12);
  align-items: center;
}

.mission-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--s4);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mission-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--gray-500);
  border-radius: 2px;
}

.mission-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 800;
  color: var(--light-text);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: var(--s5);
}

.mission-body {
  font-size: 1rem;
  color: var(--light-sub);
  line-height: 1.8;
}

.mission-body+.mission-body {
  margin-top: var(--s4);
}

.mission-visual {
  background: var(--black);
  border-radius: var(--r-xl);
  padding: var(--s10);
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}

.mission-stat-item {
  border-bottom: 1px solid var(--black-border);
  padding-bottom: var(--s5);
}

.mission-stat-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.mission-stat-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.03em;
}

.mission-stat-desc {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-top: 4px;
  line-height: 1.5;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: var(--s12);
  background: var(--light-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--light-border);
}

.stat-block {
  background: var(--white);
  padding: var(--s6) var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  transition: background var(--t-base);
}

.stat-block:hover {
  background: var(--gray-100);
}

.stat-block-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--light-text);
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-block-num.accent {
  color: var(--black);
}

.stat-block-label {
  font-size: 0.875rem;
  color: var(--light-sub);
  line-height: 1.5;
}

/* Values section */
.values-section {
  background: var(--black);
  padding: var(--s24) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s4);
  margin-top: var(--s12);
}

.value-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-xl);
  padding: var(--s8);
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  transform: scaleX(0);
  transition: transform var(--t-base) var(--ease-out);
}

.value-card:hover {
  border-color: rgba(226, 243, 43, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.value-card:hover::after {
  transform: scaleX(1);
}

.value-icon {
  width: 52px;
  height: 52px;
  background: var(--yellow-subtle);
  border: 1px solid var(--yellow-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  margin-bottom: var(--s5);
  transition: all var(--t-base);
}

.value-card:hover .value-icon {
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow-yellow);
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--s2);
  letter-spacing: -0.01em;
}

.value-desc {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.7;
}

/* Why section */
.why-section {
  background: var(--white);
  padding: var(--s24) 0;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin-top: var(--s12);
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
}

.why-item {
  display: flex;
  gap: var(--s5);
  background: var(--white);
  border: 1px solid var(--light-border);
  border-radius: var(--r-lg);
  padding: var(--s5) var(--s6);
  align-items: flex-start;
  transition: all var(--t-base);
}

.why-item:hover {
  border-color: #ccc;
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.why-num {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--gray-200);
  flex-shrink: 0;
  line-height: 1;
  min-width: 28px;
  transition: color var(--t-base);
}

.why-item:hover .why-num {
  color: var(--light-text);
}

.why-text-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--light-text);
  margin-bottom: 4px;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.why-text-desc {
  font-size: 0.9rem;
  color: var(--light-sub);
  line-height: 1.65;
}

/* Team section */
.team-section {
  background: var(--black-card);
  padding: var(--s24) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s5);
  margin-top: var(--s12);
}

.team-card {
  background: var(--black);
  border: 1px solid var(--black-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-base) var(--ease-out);
}

.team-card:hover {
  border-color: rgba(226, 243, 43, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.team-photo {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--black-card);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.team-card:hover .team-photo img {
  transform: scale(1.06);
}

.team-info {
  padding: var(--s6);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.team-role {
  font-size: 0.8125rem;
  color: var(--yellow);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: var(--s3);
}

.team-bio {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.65;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-section {
  background: var(--black-card);
  padding: var(--s24) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--s12);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--s8);
}

.contact-block {
  background: var(--black-elevated);
  border: 1px solid var(--black-border);
  border-radius: var(--r-xl);
  padding: var(--s8);
}

.contact-block-icon {
  width: 48px;
  height: 48px;
  background: var(--yellow-subtle);
  border: 1px solid var(--yellow-border);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  margin-bottom: var(--s4);
}

.contact-block-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--s2);
}

.contact-block-value {
  font-size: 1rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.contact-phone-cta {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: -0.02em;
  transition: opacity var(--t-base);
}

.contact-phone-cta:hover {
  opacity: 0.8;
}

/* Contact form */
.contact-form-wrap {
  background: var(--black-elevated);
  border: 1px solid var(--black-border);
  border-radius: var(--r-xl);
  padding: var(--s10);
}

.contact-form-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--s2);
  letter-spacing: -0.02em;
}

.contact-form-wrap>p {
  font-size: 0.9375rem;
  color: var(--gray-400);
  margin-bottom: var(--s8);
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.form-group label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-200);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  padding: 0.875rem var(--s4);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--white);
  outline: none;
  transition: border-color var(--t-base), box-shadow var(--t-base);
  width: 100%;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-700);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--yellow-border);
  box-shadow: 0 0 0 3px rgba(226, 243, 43, 0.08);
}

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

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--black-card);
  color: var(--white);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s5);
  margin-top: var(--s12);
}

.service-page-card {
  background: var(--black-card);
  border: 1px solid var(--black-border);
  border-radius: var(--r-xl);
  padding: var(--s10);
  transition: all var(--t-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-page-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow-border), transparent);
  transform: scaleX(0);
  transition: transform var(--t-base);
}

.service-page-card:hover {
  border-color: rgba(226, 243, 43, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
}

.service-page-card:hover::before {
  transform: scaleX(1);
}

.platform-icon-large {
  width: 64px;
  height: 64px;
  border-radius: var(--r-lg);
  background: var(--yellow-subtle);
  border: 1px solid var(--yellow-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  margin-bottom: var(--s6);
  transition: all var(--t-base);
}

.service-page-card:hover .platform-icon-large {
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow-yellow);
}

.service-page-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--s3);
  letter-spacing: -0.02em;
}

.service-page-desc {
  font-size: 0.9375rem;
  color: var(--gray-400);
  line-height: 1.75;
  margin-bottom: var(--s6);
}

.service-page-features {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.service-page-features li {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.9rem;
  color: var(--gray-200);
  font-weight: 500;
}

.service-page-features li svg {
  color: var(--yellow);
  flex-shrink: 0;
}

/* Full campaign card */
.service-page-card.full-width {
  grid-column: 1 / -1;
}

/* ============================================================
   GUARANTEE / TRUST STRIP
   ============================================================ */

.guarantee-strip {
  background: var(--yellow-subtle);
  border: 1px solid var(--yellow-border);
  border-radius: var(--r-lg);
  padding: var(--s5) var(--s6);
  display: flex;
  align-items: center;
  gap: var(--s5);
  margin-bottom: var(--s10);
  flex-wrap: wrap;
}

.guarantee-icon {
  color: var(--yellow);
  flex-shrink: 0;
}

.guarantee-text {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.6;
}

.guarantee-text strong {
  color: var(--white);
}

/* ============================================================
   PHONE CTA STRIP
   ============================================================ */

.phone-strip {
  background: var(--yellow);
  padding: var(--s3) 0;
  text-align: center;
}

.phone-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s5);
  flex-wrap: wrap;
  padding: 0 var(--s5);
}

.phone-strip-text {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--black);
}

.phone-strip-num {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.01em;
  transition: opacity var(--t-base);
}

.phone-strip-num:hover {
  opacity: 0.75;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

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

.sec-cta-center {
  display: flex;
  justify-content: center;
  margin-top: var(--s12);
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */

@media (max-width: 1024px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .hero-left {
    align-items: flex-start;
  }

  .hero-headline {
    font-size: clamp(2.75rem, 8vw, 4.5rem);
  }

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

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

  .who-right {
    display: none;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--s6);
  }

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

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

  .pricing-card-featured {
    transform: none;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--s8);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    font-size: 1.25rem;
  }

  .nav-cta {
    display: none;
  }

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

  .service-card.wide {
    grid-column: auto;
  }

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

  .process-steps {
    grid-template-columns: 1fr;
  }

  .step-connector {
    display: none;
  }

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

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

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

  .why-list {
    max-width: 100%;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-img {
    height: 280px;
    border-radius: var(--r-lg);
  }

  .page-hero-text {
    padding-bottom: var(--s6);
  }

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

  .services-page-grid {
    grid-template-columns: 1fr;
  }

  .service-page-card.full-width {
    grid-column: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .stats-row {
    grid-template-columns: 1fr;
  }

  .cta-phone-number {
    font-size: 1.25rem;
  }

  .featured-testi {
    padding: var(--s8);
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

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

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

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}