/* ===========================================
   TYPE DRIVEN - LANDING PAGE 2026
   Design System & Global Styles
   =========================================== */

/* Custom Fonts */

/* Manrope - Body font (self-hosted) */
@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Neue Machina - Heading font */
@font-face {
  font-family: "Neue Machina";
  src: url("assets/fonts/NeueMachina-PlainRegular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Neue Machina";
  src: url("assets/fonts/NeueMachina-PlainLight.otf") format("opentype");
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Neue Machina";
  src: url("assets/fonts/NeueMachina-PlainUltrabold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}

/* CSS Variables - Design Tokens */
:root {
  /* Colors */
  --color-bg: #000000;
  --color-bg-elevated: #0a0a0a;
  --color-bg-card: #111111;
  --color-text: #ffffff;
  --color-text-muted: rgba(255, 255, 255, 0.7);
  --color-text-subtle: rgba(255, 255, 255, 0.5);
  --color-border: rgba(255, 255, 255, 0.1);
  --color-border-hover: rgba(255, 255, 255, 0.2);

  /* Accent Colors */
  --color-primary: #4437FC;
  --color-secondary: #E676C0;
  --color-accent: #D0E1FD;

  /* Typography */
  --font-heading: "Neue Machina", sans-serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;

  /* Layout */
  --max-width: 1200px;
  --section-padding: 5rem 1.5rem;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  /* Benefits section uses wheel hijacking for horizontal card scroll */
}

@media (max-width: 768px) {
  main {
    scroll-snap-type: y mandatory;
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Utility Classes */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: var(--section-padding);
}

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

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-text);
  color: var(--color-bg);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  color: var(--color-bg);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  border-color: var(--color-text);
  background: var(--color-text);
  color: var(--color-bg);
}

/* Cards */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-4px);
}

/* Badge / Pill */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: var(--space-lg);
}

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

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

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

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  :root {
    --section-padding: 3rem 1rem;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Scroll reveal utility - elements start hidden */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger delays for children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* Floating animation for background elements */
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -40px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(20px, -20px) scale(1.02);
  }
}

/* Section-specific backgrounds */
.section-dark {
  background: var(--color-bg);
}

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

/* Divider */
.divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-xl) 0;
}

/* ========================================
   SECTION-SPECIFIC STYLES
   ======================================== */

/* Hero Section - Split layout with 3D video */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0 4rem;
  position: relative;
  z-index: 10;
  min-height: 100vh;
}

.hero-text {
  text-align: center;
  max-width: 700px;
  position: relative;
  padding: 3rem 4rem;
}

/* Dark orb behind text for readability */
.hero-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 160%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-text .btn {
  text-shadow: none;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: var(--space-lg);
  backdrop-filter: blur(10px);
}

.hero-tagline-divider {
  color: var(--color-text-subtle);
}

.hero-headline {
  font-size: clamp(3.5rem, 10vw, 7rem);
  line-height: 1.05;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.hero-subheadline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
}

.hero-clients {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-md) var(--space-xl);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  z-index: 10;
}

.hero-clients-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.hero-clients img {
  height: 36px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.hero-clients img:hover {
  opacity: 1;
}

/* Hero 3D Video */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  aspect-ratio: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--radius-lg);
}

.hero-video-fallback {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--color-primary) 0%, var(--color-secondary) 50%, transparent 70%);
  filter: blur(40px);
  opacity: 0.6;
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
  z-index: -1;
}

/* Video Reel Section */
.reel {
  padding: 0;
  overflow: hidden;
}

.reel-container {
  width: 100%;
  overflow: hidden;
  transform-origin: center center;
  will-change: transform, border-radius;
}

.reel-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Clients Section */
.clients {
  padding: var(--space-3xl) 0;
}

.clients-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  text-align: center;
}

.clients-wrapper h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xl);
}

.clients-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-md);
  max-width: 1000px;
  margin: 0 auto;
}

.clients-logos img {
  width: 100%;
  max-width: 100px;
  height: auto;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  filter: grayscale(100%);
  opacity: 0.8;
  transition: all var(--transition-base);
  margin: 0 auto;
}

.clients-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  border-color: var(--color-border-hover);
}

@media (max-width: 768px) {
  .clients-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-sm);
  }

  .clients-logos img {
    max-width: 80px;
    padding: var(--space-sm);
  }
}

/* Benefits Section - Horizontal scroll cards over content */
.benefits {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Background layer - text and image */
.benefits-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--space-lg);
  z-index: 1;
}

.benefits-text {
  max-width: 400px;
}

.benefits-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
}

.benefits-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Scroll indicator */
.benefits-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: benefits-hint-pulse 2s ease-in-out infinite;
}

.benefits-scroll-text {
  font-weight: 500;
}

.benefits-scroll-arrow {
  animation: benefits-arrow-bounce 1.5s ease-in-out infinite;
}

@keyframes benefits-hint-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes benefits-arrow-bounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

@media (max-width: 768px) {
  .benefits-bg {
    left: 0;
    transform: none;
    padding: 0 var(--space-md);
  }

  .benefits-scroll-hint {
    display: none;
  }
}

.benefits-image {
  width: 40%;
  max-width: 500px;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(168, 145, 158, 0.3), rgba(59, 92, 255, 0.2));
}

.benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Foreground layer - scrolling cards */
.benefits-cards-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 10;
  pointer-events: none;
}

.benefits-cards-track {
  display: flex;
  gap: var(--space-lg);
  padding-left: 100vw; /* Start off-screen right */
  will-change: transform;
}

/* Individual cards */
.benefits-card {
  width: 340px;
  min-height: 480px;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  pointer-events: auto;
}

/* Alternating askew rotations */
.benefits-card:nth-child(odd) {
  transform: rotate(-2deg);
}

.benefits-card:nth-child(even) {
  transform: rotate(2deg);
}

.benefits-card--dark {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.benefits-card--light-blue {
  background: #D0E1FE;
  color: #1a1a1a;
}

.benefits-card--light-blue .benefits-card-desc {
  color: #1a1a1a;
}

.benefits-card--blue {
  background: #3b5cff;
  color: #fff;
}

.benefits-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
}

.benefits-card--dark .benefits-card-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--color-border);
}

.benefits-card-title {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-top: auto;
  margin-bottom: var(--space-md);
}

.benefits-card-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

.benefits-card--dark .benefits-card-desc {
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .benefits {
    height: 100vh;
    position: relative;
    overflow: hidden;
  }

  .benefits-bg {
    position: absolute;
    inset: 0;
    flex-direction: column;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    padding-top: 8vh;
    z-index: 1;
    background: var(--color-bg);
  }

  .benefits-text {
    max-width: 100%;
  }

  .benefits-image {
    display: none;
  }

  .benefits-cards-wrapper {
    position: absolute;
    inset: 0;
    z-index: 10;
    pointer-events: none;
    overflow: hidden;
  }

  .benefits-cards-track {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    padding-left: 0;
    display: block;
    gap: 0;
  }

  .benefits-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 2rem);
    max-width: 320px;
    min-height: 400px;
    transform: translate(-50%, 200%);
    pointer-events: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
    opacity: 0;
  }

  .benefits-card:nth-child(odd),
  .benefits-card:nth-child(even) {
    transform: translate(-50%, 200%) rotate(0deg);
  }
}

/* Services Section - Scroll-driven video reveal with cards rising */
.services {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

/* Black base layer */
.services-black-bg {
  position: absolute;
  inset: 0;
  background: #000;
  z-index: 0;
}

/* Video layer - opacity controlled by scroll */
.services-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.services-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: opacity;
}

/* Content container */
.services-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  left: 0;
  right: 0;
  padding: var(--space-xl);
}

/* Header - positioned at top */
.services-header {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  padding: 0 var(--space-xl);
  will-change: transform, opacity;
}

.services-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.services-section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.03em;
}

.services-section-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* Cards wrapper - both rows positioned in same spot, below header */
.services-featured,
.services-others {
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -40%);
  width: calc(100% - var(--space-xl) * 2);
  max-width: 1100px;
  will-change: opacity;
}

/* Featured services - 2 cards row */
.services-featured {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

/* Other services - 4 cards row */
.services-others {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

/* ========================================
   EDITORIAL SERVICE CARDS
   ======================================== */

.services-card-ed {
  background: rgba(25, 25, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.services-card-ed:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  background: rgba(30, 30, 38, 0.98);
}

/* Highlight variant (for CTA card) */
.services-card-ed--highlight {
  border-color: rgba(230, 118, 192, 0.25);
}

.services-card-ed--highlight:hover {
  border-color: rgba(230, 118, 192, 0.5);
  box-shadow: 0 20px 50px rgba(230, 118, 192, 0.1);
}

/* Small cards (other services) */
.services-card-ed--small {
  min-height: auto;
  padding: var(--space-lg);
}

/* Label */
.services-card-ed-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-subtle);
  margin-bottom: var(--space-sm);
}

.services-card-ed--highlight .services-card-ed-label {
  color: var(--color-secondary);
}

/* Number for small cards */
.services-card-ed-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-subtle);
  margin-bottom: var(--space-sm);
}

/* Title */
.services-card-ed-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.services-card-ed--small .services-card-ed-title {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

/* Description */
.services-card-ed-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.services-card-ed--small .services-card-ed-desc {
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Features list */
.services-card-ed-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-md);
  font-size: 0.9rem;
}

.services-card-ed-features li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--color-text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.services-card-ed-features li:last-child {
  border-bottom: none;
}

.services-card-ed-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-text-subtle);
}

.services-card-ed--highlight .services-card-ed-features li::before {
  color: var(--color-secondary);
}

/* CTA button */
.services-card-ed-cta {
  margin-top: auto;
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 0.9rem;
}

.services-card--accent .services-card-cta:hover {
  background: #333;
  color: #fff;
}

/* Services Mobile */
@media (max-width: 768px) {
  .services {
    height: auto;
    min-height: auto;
  }

  .services-video-bg {
    opacity: 0.4;
  }

  .services-content {
    padding: var(--space-lg) var(--space-md);
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: var(--space-md);
  }

  /* Stack headers and cards in order on mobile */
  .services-header {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 0;
    text-align: center;
    width: 100%;
  }

  .services-header:nth-of-type(1) {
    order: 1;
  }

  .services-featured {
    order: 2;
  }

  .services-header:nth-of-type(2) {
    order: 3;
    margin-top: var(--space-lg);
  }

  .services-others {
    order: 4;
  }

  .services-section-title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .services-section-subtitle {
    font-size: 0.95rem;
  }

  .services-featured,
  .services-others {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  /* Editorial cards mobile */
  .services-card-ed {
    padding: var(--space-md);
  }

  .services-card-ed-title {
    font-size: 1.15rem;
  }

  .services-card-ed-desc {
    font-size: 0.875rem;
  }

  .services-card-ed-features {
    font-size: 0.8rem;
  }

  .services-card-ed--small {
    padding: var(--space-md);
  }

  .services-card-ed--small .services-card-ed-title {
    font-size: 1rem;
  }
}

/* ========================================
   PROBLEMS SECTION - EDITORIAL STYLE
   ======================================== */

.problems-ed {
  padding: var(--space-3xl) 0 var(--space-md);
  margin-top: var(--space-3xl);
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

/* Giant background text */
.problems-ed-bgtext {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

/* Container */
.problems-ed-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  position: relative;
  z-index: 1;
}

/* Header */
.problems-ed-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.problems-ed-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.problems-ed-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.problems-ed-title-accent {
  color: var(--color-secondary);
}

/* Card Stack */
.problems-ed-stack {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
}

/* Individual Cards */
.problems-ed-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-lg) var(--space-xl);
  background: var(--color-bg);
  transition: background 0.3s ease, transform 0.3s ease;
}

.problems-ed-card:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Featured card (first one) */
.problems-ed-card--featured {
  padding: var(--space-xl) var(--space-xl);
  background: linear-gradient(135deg, rgba(230, 118, 192, 0.08) 0%, var(--color-bg) 100%);
}

.problems-ed-card--featured:hover {
  background: linear-gradient(135deg, rgba(230, 118, 192, 0.12) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.problems-ed-card--featured .problems-ed-card-number {
  color: var(--color-secondary);
}

.problems-ed-card--featured .problems-ed-card-title {
  font-size: 1.5rem;
}

.problems-ed-card--featured .problems-ed-stat-value {
  color: var(--color-secondary);
}

/* Card number */
.problems-ed-card-number {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-subtle);
  width: 2.5rem;
}

/* Card main content */
.problems-ed-card-main {
  min-width: 0;
}

.problems-ed-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

.problems-ed-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Card stat */
.problems-ed-card-stat {
  text-align: right;
  min-width: 100px;
}

.problems-ed-stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.03em;
  line-height: 1;
}

.problems-ed-stat-label {
  font-size: 0.7rem;
  color: var(--color-text-subtle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Footer CTA */
.problems-ed-footer {
  text-align: center;
}

.problems-ed-footer-text {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.problems-ed-footer-text strong {
  color: var(--color-text);
  font-weight: 600;
}

.problems-ed-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--color-text);
  color: var(--color-bg);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.problems-ed-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
  color: var(--color-bg);
}

.problems-ed-cta svg {
  transition: transform 0.3s ease;
}

.problems-ed-cta:hover svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .problems-ed {
    padding: var(--space-2xl) 0;
  }

  .problems-ed-bgtext {
    display: none;
  }

  .problems-ed-card {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    padding: var(--space-lg);
  }

  .problems-ed-card-number {
    font-size: 0.75rem;
  }

  .problems-ed-card-stat {
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .problems-ed-stat-value {
    font-size: 1.5rem;
  }

  .problems-ed-card--featured .problems-ed-card-title {
    font-size: 1.25rem;
  }

  .problems-ed-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}

/* ========================================
   TRANSFORMATION SECTION
   ======================================== */

/* ========================================
   TRANSFORMATION SECTION - Clean Cards
   ======================================== */
.transform-section {
  padding: var(--space-3xl) var(--space-lg);
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(255, 255, 255, 0.02) 50%, var(--color-bg) 100%);
}

.transform-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.transform-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.transform-headline {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.transform-highlight {
  color: var(--color-secondary);
}

/* Cards Grid */
.transform-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
}

.transform-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  transition: all 0.3s ease;
}

.transform-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.transform-card-week {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-md);
}

.transform-card-week-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-subtle);
}

.transform-card-week-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1;
}

.transform-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}

.transform-card-outcome {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.transform-card-arrow {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--color-text-subtle);
  z-index: 1;
}

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

.btn-lg {
  padding: 1.25rem 2.5rem;
  font-size: 1.1rem;
}

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

  .transform-card-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .transform-cards {
    grid-template-columns: 1fr;
  }

  .transform-card {
    padding: var(--space-lg);
  }

  .transform-card-week-num {
    font-size: 2rem;
  }

  .transform-card-title {
    font-size: 1.25rem;
  }
}

/* Value Stack */
.value-stack {
  text-align: center;
}

.value-tier {
  padding: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.value-tier:last-child {
  border-bottom: none;
}

.value-tier-name {
  font-weight: 600;
  font-size: 1.1rem;
}

.value-tier-price {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text-subtle);
  text-decoration: line-through;
}

.value-total {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.value-total-label {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.value-total-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-accent);
}

/* Testimonials */
.testimonial-card {
  padding: var(--space-xl);
  text-align: left;
}

.testimonial-quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-border);
}

.testimonial-name {
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--color-text-subtle);
}

/* Transformation */
.transform-timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;
  padding-left: var(--space-xl);
}

.transform-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
}

.transform-step {
  position: relative;
}

.transform-step::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) - 6px);
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-text);
  border: 3px solid var(--color-bg);
}

.transform-step-label {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

.transform-step h3 {
  margin-bottom: var(--space-xs);
}

/* Secondary CTA */
.secondary-cta {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  background: var(--color-bg-elevated);
  border-radius: var(--radius-lg);
}

.cta-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(59, 92, 255, 0.15);
  color: #7B9FFF;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-lg);
}

.avatar-stack {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.avatar-stack-item {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid var(--color-bg);
  margin-left: -12px;
  background: var(--color-border);
}

.avatar-stack-item:first-child {
  margin-left: 0;
}

/* Legal Pages */
.legal-page {
  padding: 8rem 0 var(--space-3xl);
  min-height: 100vh;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-sm);
}

.legal-updated {
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xl);
}

.legal-section {
  margin-bottom: var(--space-xl);
}

.legal-section h2 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

.legal-section p,
.legal-section ul {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.legal-section ul {
  padding-left: var(--space-lg);
}

.legal-section li {
  margin-bottom: var(--space-sm);
}

.legal-section a {
  color: var(--color-text);
  text-decoration: underline;
}


/* MVP Journey Section */
.mvp-journey {
  padding: var(--space-3xl) 0;
  background: var(--color-bg-elevated);
  overflow: hidden;
}

.mvp-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.mvp-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--space-md);
}

.mvp-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.mvp-svg-wrapper {
  margin: var(--space-xl) 0 var(--space-sm);
  overflow: visible;
}

.mvp-svg {
  width: 100%;
  height: auto;
}

/* Path animations */
.mvp-path-fill,
.mvp-path-center,
.mvp-path-left,
.mvp-path-right,
.mvp-path-main {
  opacity: 0;
}

.mvp-path-center,
.mvp-path-left,
.mvp-path-right,
.mvp-path-main {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
}

.mvp-label {
  opacity: 0;
}

/* Animate when visible */
.mvp-animate .mvp-path-fill {
  animation: fadeIn 1s ease-out 0.2s forwards;
}

.mvp-animate .mvp-path-center {
  animation: drawPath 1s ease-out 0.5s forwards;
}

.mvp-animate .mvp-path-left {
  animation: drawPath 1.2s ease-out 0.8s forwards;
}

.mvp-animate .mvp-path-right {
  animation: drawPath 1.2s ease-out 1s forwards;
}

.mvp-animate .mvp-path-main {
  animation: drawPath 1.5s ease-out 1.2s forwards;
}

.mvp-animate .mvp-label-1 {
  animation: fadeIn 0.8s ease-out 1.8s forwards;
}

.mvp-animate .mvp-label-2 {
  animation: fadeIn 0.8s ease-out 2s forwards;
}

.mvp-animate .mvp-label-3 {
  animation: fadeIn 0.8s ease-out 2.2s forwards;
}

.mvp-animate .mvp-label-4 {
  animation: fadeIn 0.8s ease-out 2.4s forwards;
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* Timeline labels - positioned to align with graph */
.mvp-timeline-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 100%;
  margin: var(--space-sm) 0 var(--space-lg);
  text-align: center;
}

.mvp-timeline-label {
  font-size: 0.75rem;
  color: var(--color-text-subtle);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.mvp-timeline-label--accent {
  color: var(--color-secondary);
}

.mvp-timeline-label--highlight {
  color: var(--color-primary);
}

/* Step descriptions - card grid */
.mvp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 100%;
  margin: 0 0 var(--space-xl);
}

.mvp-step {
  padding: var(--space-lg);
  background: var(--color-bg);
  transition: background 0.3s ease;
}

.mvp-step:hover {
  background: rgba(255, 255, 255, 0.02);
}

.mvp-step-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--color-text);
  letter-spacing: -0.01em;
}

.mvp-step-desc {
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.mvp-cta {
  text-align: center;
  margin-top: var(--space-xl);
}

@media (max-width: 1024px) {
  .mvp-timeline-labels {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

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

@media (max-width: 768px) {
  .mvp-svg-wrapper {
    margin: var(--space-xl) -1rem;
  }

  .mvp-label text {
    font-size: 12px;
  }

  .mvp-timeline-labels {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .mvp-timeline-label {
    font-size: 0.65rem;
  }

  .mvp-steps {
    grid-template-columns: 1fr;
    gap: 1px;
    border-radius: var(--radius-md);
  }

  .mvp-step {
    padding: var(--space-md);
  }

  .mvp-step-title {
    font-size: 0.85rem;
  }

  .mvp-step-desc {
    font-size: 0.75rem;
  }
}

/* EAA Page */
.eaa-page {
  width: 100%;
  background-color: var(--color-bg);
}

.eaa-hero {
  background-color: var(--color-bg);
  padding: 8rem 1rem 4rem;
  text-align: center;
}

.eaa-hero__content {
  max-width: 900px;
  margin: 0 auto;
}

.eaa-hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.eaa-hero__subtitle-inline {
  font-size: 0.6em;
  opacity: 0.7;
  font-weight: 400;
  margin-left: 0.5rem;
}

.eaa-hero__deadline {
  margin-bottom: 1.5rem;
}

.eaa-hero__highlight {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  color: var(--color-text-muted);
  font-weight: 600;
}

.eaa-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--color-text-muted);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

.eaa-stats {
  background-color: var(--color-bg);
  padding: 4rem 1rem;
}

.eaa-stats__container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.eaa-stats__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 2rem;
}

.eaa-stats__grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.eaa-stat {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  flex: 1;
  max-width: 350px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eaa-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(208, 225, 253, 0.3);
}

.eaa-stat--danger {
  border-color: #E676C0;
}

.eaa-stat--danger:hover {
  box-shadow: 0 0 20px rgba(230, 118, 192, 0.3);
}

.eaa-stat__number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.eaa-stat__label {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.eaa-stats__warning {
  font-size: 1.1rem;
  color: var(--color-text);
}

.eaa-impact {
  background-color: var(--color-bg-elevated);
  padding: 4rem 1rem;
}

.eaa-impact__container {
  max-width: 1000px;
  margin: 0 auto;
}

.eaa-impact__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: 2rem;
}

.eaa-impact__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .eaa-impact__content {
    flex-direction: row;
    gap: 3rem;
  }
}

.eaa-impact__text {
  flex: 2;
}

.eaa-impact__text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.eaa-impact__list {
  list-style: none;
  padding: 0;
}

.eaa-impact__list li {
  padding: 0.75rem 0 0.75rem 2rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
  position: relative;
}

.eaa-impact__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D0E1FD;
  font-weight: bold;
}

.eaa-impact__list li:last-child {
  border-bottom: none;
}

.eaa-impact__standard {
  flex: 1;
}

.eaa-standard-box {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.3s ease;
}

.eaa-standard-box:hover {
  box-shadow: 0 0 20px rgba(208, 225, 253, 0.3);
}

.eaa-standard-box h3 {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.eaa-standard-box p {
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.eaa-expertise {
  background-color: var(--color-bg);
  padding: 4rem 1rem;
}

.eaa-expertise__container {
  max-width: 1100px;
  margin: 0 auto;
}

.eaa-expertise__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  margin-bottom: 2rem;
}

.eaa-expertise__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

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

.eaa-expertise__card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eaa-expertise__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(208, 225, 253, 0.3);
}

.eaa-expertise__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.eaa-expertise__card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.eaa-expertise__card p {
  color: var(--color-text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.eaa-cta {
  background-color: var(--color-bg-elevated);
  padding: 4rem 1rem;
  text-align: center;
}

.eaa-cta__container {
  max-width: 700px;
  margin: 0 auto;
}

.eaa-cta__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}

.eaa-cta__subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.eaa-cta__benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

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

.eaa-cta__benefit {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* Footer */
.footer {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
}

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

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

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

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.footer-social a:hover {
  border-color: var(--color-text);
  background: var(--color-text);
  color: var(--color-bg);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  /* Hero mobile - centered layout */
  .hero-container {
    justify-content: center;
    align-items: center;
    padding: 6rem 1.5rem 8rem;
    text-align: center;
    min-height: 100vh;
  }

  .hero-text {
    text-align: center;
    max-width: 100%;
  }

  .hero-subheadline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-clients {
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
  }

  .hero-clients-label {
    font-size: 0.8rem;
  }

  .hero-clients img {
    height: 24px;
  }

  .hero-visual {
    order: 1;
    margin-bottom: var(--space-lg);
  }

  .hero-video-wrapper {
    max-width: 320px;
    margin: 0 auto;
  }

  .transform-timeline {
    padding-left: var(--space-lg);
  }
}

/* Error Page */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl);
}

.error-page h1 {
  font-size: clamp(6rem, 20vw, 12rem);
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.error-page p {
  font-size: 1.25rem;
  margin-bottom: var(--space-xl);
}

/* ========================================
   NAVBAR
   ======================================== */

/* Desktop Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-xl);
  background: transparent;
  transition: background var(--transition-base);
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.navbar-logo img {
  height: 28px;
  width: auto;
  max-width: 150px;
}

.navbar-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
}

.navbar-links a {
  color: var(--color-text);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.navbar-links a:hover {
  color: var(--color-accent);
  transform: scale(1.05);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

.navbar-cta svg {
  transition: transform var(--transition-fast);
}

.navbar-cta:hover svg {
  transform: translateX(4px);
}

/* Mobile Navbar */
.navbar-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  overflow: hidden;
}

.navbar-mobile-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  background: transparent;
  width: 100%;
  box-sizing: border-box;
}

.navbar-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 10px;
}

.navbar-burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.navbar-burger.is-open .navbar-burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.navbar-burger.is-open .navbar-burger-line:nth-child(2) {
  opacity: 0;
}

.navbar-burger.is-open .navbar-burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.navbar-mobile-drawer {
  display: flex;
  flex-direction: column;
  padding: 0 var(--space-md) var(--space-lg);
  background: rgba(10, 10, 10, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-base), opacity var(--transition-base);
  width: 100%;
  box-sizing: border-box;
}

.navbar-mobile-drawer.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.navbar-mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-md) 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  width: 100%;
}

.navbar-mobile-links a {
  padding: var(--space-sm) 0;
  color: var(--color-text);
  border-bottom: 1px solid var(--color-border);
}

.navbar-mobile-cta {
  margin-top: var(--space-sm);
  justify-content: center;
  box-sizing: border-box;
}

/* Show/hide based on screen size */
@media (max-width: 768px) {
  .navbar {
    display: none;
  }

  .navbar-mobile {
    display: block;
  }
}
