/* ============================================
   CSS CUSTOM PROPERTIES — Edit colors here
   ============================================ */
:root {
  /* Primary palette */
  --color-primary: #1D4ED8;        /* Blue — main brand color */
  --color-primary-dark: #1E3A8A;   /* Darker blue — hover states */
  --color-primary-light: #DBEAFE;  /* Light blue — subtle backgrounds */
  --color-primary-ultralight: #EFF6FF;

  /* Accent palette */
  --color-accent: #DC2626;         /* Red — accent / urgency */
  --color-accent-dark: #B91C1C;    /* Darker red — hover states */
  --color-accent-light: #FEE2E2;   /* Light red — subtle backgrounds */

  /* Neutrals */
  --color-white: #FFFFFF;
  --color-off-white: #F8FAFC;
  --color-gray-50: #F1F5F9;
  --color-gray-100: #E2E8F0;
  --color-gray-200: #CBD5E1;
  --color-gray-300: #B0BEC9;
  --color-gray-400: #94A3B8;
  --color-gray-500: #64748B;
  --color-gray-600: #475569;
  --color-gray-800: #1E293B;
  --color-gray-900: #0F172A;

  /* Typography */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-size-base: 16px;

  /* Spacing */
  --section-padding: 96px 0;
  --container-max: 1120px;

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
}


/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: var(--font-size-base);
  overflow-x: clip;
}

body {
  font-family: var(--font-family);
  color: var(--color-gray-800);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  padding-top: 72px;
}

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

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


/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}


/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

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

@keyframes pulse-soft {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Fade-in base (triggered by IntersectionObserver) */
.fade-in,
.fade-in-up {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up {
  transform: translateY(24px);
}
.fade-in.visible,
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.fade-delay-1 { transition-delay: 0.12s; }
.fade-delay-2 { transition-delay: 0.24s; }
.fade-delay-3 { transition-delay: 0.36s; }


/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 0.938rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 2px 8px rgba(29, 78, 216, 0.25);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-accent {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.25);
}
.btn-accent:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-gray-800);
  border-color: var(--color-gray-200);
}
.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-100);
  transition: transform 0.3s ease;
}
.navbar.navbar-hidden {
  transform: translateY(-100%);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: inline-flex;
  align-items: center;
}
.logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-white);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 6px;
}
.logo-text-accent {
  color: var(--color-primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-gray-600);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--color-gray-900);
}
.nav-links .btn {
  color: var(--color-white);
}
.nav-links .btn:hover {
  color: var(--color-white);
}

/* Mobile hamburger */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 110;
}
.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-gray-800);
  border-radius: 2px;
  transition: all 0.3s ease;
}


/* ============================================
   HERO
   ============================================ */
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero {
  padding: 100px 0 88px;
  text-align: center;
  background: var(--color-gray-900);
  position: relative;
  overflow: hidden;
}

/* Animated gradient mesh */
.hero-gradient-mesh {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(ellipse 60% 50% at 15% 25%, rgba(29, 78, 216, 0.14) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(220, 38, 38, 0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 45% at 55% 15%, rgba(29, 78, 216, 0.06) 0%, transparent 60%);
  animation: gradient-shift 25s ease-in-out infinite;
  background-size: 200% 200%;
  pointer-events: none;
  z-index: 0;
}

/* Subtle noise overlay for depth */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* Dot grid pattern */
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* Accent glow behind title */
.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(29, 78, 216, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  filter: blur(40px);
}

/* Gradient orbs for extra depth */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: float 10s ease-in-out infinite;
}
.hero-orb-2 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.09) 0%, transparent 70%);
  bottom: -180px;
  left: -120px;
  animation: float 13s ease-in-out infinite 3s;
}

/* Edge fades */
.hero-fade-top,
.hero-fade-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 120px;
  pointer-events: none;
  z-index: 1;
}
.hero-fade-top {
  top: 0;
  background: linear-gradient(to bottom, var(--color-gray-900) 20%, transparent);
}
.hero-fade-bottom {
  bottom: 0;
  background: linear-gradient(to top, var(--color-gray-900) 20%, transparent);
}

.hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Content group: title, divider, subtitle */
.hero-content {
  margin-bottom: 40px;
}

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--color-white);
  margin-bottom: 0;
  text-wrap: balance;
}

.hero-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  border-radius: 3px;
  margin: 28px auto 24px;
  opacity: 0.7;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--color-gray-300);
  margin-bottom: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Actions group: buttons, guarantee badge, email */
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-or {
  font-style: italic;
  font-weight: 500;
  color: var(--color-gray-400);
}

/* Larger primary CTA */
.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.hero-highlight {
  color: var(--color-accent);
  position: relative;
}
.hero-highlight::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: -2px;
  height: 12px;
  background: rgba(220, 38, 38, 0.18);
  border-radius: 4px;
  z-index: -1;
}

.hero-guarantee {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
}
.hero-guarantee svg {
  color: var(--color-accent);
  flex-shrink: 0;
  opacity: 0.8;
}

.hero-email {
  font-size: 0.85rem;
  color: var(--color-gray-400);
  margin-top: 0;
}
.hero-email a {
  color: var(--color-gray-400);
  transition: color 0.2s;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.15);
}
.hero-email a:hover {
  color: var(--color-white);
  text-decoration-color: rgba(255, 255, 255, 0.4);
}
.hero .btn-primary {
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.35), 0 1px 3px rgba(0, 0, 0, 0.2);
}
.hero .btn-outline {
  color: var(--color-gray-300);
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}
.hero .btn-outline:hover {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
}


/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 36px 0;
  border-top: 1px solid var(--color-gray-100);
  border-bottom: 1px solid var(--color-gray-100);
  background: var(--color-off-white);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar-text {
  font-size: 0.85rem;
  color: var(--color-gray-400);
  font-weight: 500;
  white-space: nowrap;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 40px;
}

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

.trust-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
}


/* ============================================
   SECTIONS — Shared
   ============================================ */
.section {
  padding: var(--section-padding);
  position: relative;
}
.section-light {
  background: var(--color-off-white);
}
.section-white {
  background: var(--color-white);
}

/* Decorative section accents */
.section-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: pulse-soft 6s ease-in-out infinite;
}
.section-decor-right {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.04) 0%, transparent 70%);
  top: 40px;
  right: -100px;
}
.section-decor-left {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.035) 0%, transparent 70%);
  bottom: 60px;
  left: -80px;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-gray-900);
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.section-title.text-left {
  text-align: left;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-gray-600);
  margin-top: -32px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}
.section-subtitle.text-left {
  text-align: left;
}


/* ============================================
   TEAM GRID
   ============================================ */
.team-intro {
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-gray-600);
  max-width: 600px;
  margin: -32px auto 48px;
  position: relative;
  z-index: 1;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.team-card {
  text-align: center;
  padding: 32px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-100);
}

.team-photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--color-gray-50);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-400);
  margin-bottom: 24px;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
}

.team-socials {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-gray-400);
}
.social-icon:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}


/* ============================================
   PROCESS
   ============================================ */
.process-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.process-left {
  position: sticky;
  top: 96px;
}
.process-left .section-title {
  margin-bottom: 24px;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--color-gray-100);
  align-items: flex-start;
  transition: background 0.3s ease;
}
.process-step:first-child {
  padding-top: 0;
}
.process-step:last-child,
.process-step:has(+ .process-guarantee-divider) {
  border-bottom: none;
}

.step-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.5;
  min-width: 22px;
  padding-top: 14px;
  letter-spacing: 0.04em;
}

.step-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-gray-900);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.step-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 100px;
  vertical-align: middle;
  line-height: 1.4;
}
.step-badge-green {
  background: #DCFCE7;
  color: #166534;
}
.step-badge-red {
  background: var(--color-accent-light);
  color: var(--color-accent-dark);
}
.step-badge-gray {
  background: var(--color-gray-100);
  color: var(--color-gray-600);
}

.step-content p {
  font-size: 0.9rem;
  color: var(--color-gray-600);
  line-height: 1.65;
}

/* Money-back guarantee divider between steps */
.process-guarantee-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
}

.guarantee-line {
  flex: 1;
  height: 1px;
  background: var(--color-accent);
  opacity: 0.25;
}

.guarantee-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  white-space: nowrap;
}


/* ============================================
   CASE STUDIES — V2
   ============================================ */
.cs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.cs-header .section-title {
  margin-bottom: 12px;
}

.cs-header .section-subtitle {
  margin-top: 0;
  margin-bottom: 0;
}

.case-studies-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

.case-card-v2 {
  display: flex;
  background: var(--color-white);
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s ease;
  position: relative;
}
.case-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.1), 0 4px 16px rgba(15, 23, 42, 0.06);
}

.case-card-v2-accent {
  width: 6px;
  min-width: 6px;
  background: var(--card-accent, var(--color-primary));
  flex-shrink: 0;
}

.case-card-v2-inner {
  padding: 36px 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-card-v2-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.case-card-v2-logo {
  display: flex;
  align-items: center;
}

.case-logo-img-v2 {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.case-card-v2-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gray-400);
  padding: 4px 12px;
  border: 1px solid var(--color-gray-100);
  border-radius: 100px;
}

.case-card-v2-title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--color-gray-900);
}

.case-card-v2-desc {
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--color-gray-600);
  max-width: 640px;
}

.case-card-v2-metrics {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 20px 0 4px;
  border-top: 1px solid var(--color-gray-100);
  margin-top: 4px;
}

.case-metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.case-metric-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-gray-900);
  letter-spacing: -0.01em;
}

.case-metric-label {
  font-size: 0.75rem;
  color: var(--color-gray-400);
  font-weight: 500;
}

.case-metric-divider {
  width: 1px;
  background: var(--color-gray-100);
  margin: 0 24px;
  align-self: stretch;
}

.case-card-v2-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 4px;
  transition: gap 0.25s ease;
}
.case-card-v2:hover .case-card-v2-cta {
  gap: 12px;
}


/* ============================================
   BOTTOM CTA
   ============================================ */
.section-cta {
  padding: 96px 0 96px;
  background: var(--color-white);
  text-align: center;
  position: relative;
}

/* Decorative for CTA */
.cta-decor {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-decor-1 {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.05) 0%, transparent 70%);
  top: 20px;
  left: -60px;
  animation: float 9s ease-in-out infinite;
}
.cta-decor-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(220, 38, 38, 0.04) 0%, transparent 70%);
  bottom: 120px;
  right: -40px;
  animation: float 7s ease-in-out infinite 1.5s;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--color-gray-900);
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1rem;
  color: var(--color-gray-600);
  line-height: 1.7;
  margin-bottom: 32px;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto 12px;
}

.cta-input {
  flex: 1;
  padding: 14px 18px;
  font-size: 0.938rem;
  font-family: var(--font-family);
  border: 1.5px solid var(--color-gray-200);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cta-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
}

.cta-disclaimer {
  font-size: 0.75rem;
  color: var(--color-gray-400);
  margin-bottom: 48px;
}

.cta-image-placeholder {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-primary-ultralight) 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gray-400);
  border: 1px solid var(--color-gray-100);
  border-bottom: none;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--color-gray-900);
  color: var(--color-gray-400);
  padding: 48px 0;
}

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

.footer-tagline {
  font-size: 0.85rem;
  color: var(--color-gray-400);
}

.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gray-400);
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--color-white);
}

.footer-email {
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-gray-400);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-email a {
  color: var(--color-primary-light);
  transition: color 0.2s;
}
.footer-email a:hover {
  color: var(--color-white);
}

.footer-copy {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: var(--color-gray-600);
  margin-top: 12px;
}


/* ============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .process-layout {
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
  }
}


/* ============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================ */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  /* Show hamburger, hide desktop links */
  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    align-items: stretch;
    padding: 88px 24px 32px;
    gap: 8px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    z-index: 105;
    visibility: hidden;
    opacity: 0;
  }
  .nav-links.nav-open {
    visibility: visible;
    opacity: 1;
  }
  .nav-links a {
    padding: 12px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--color-gray-100);
  }
  .nav-links .btn {
    margin-top: 12px;
    text-align: center;
    justify-content: center;
  }

  /* Hero */
  .hero {
    padding: 72px 0 56px;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-title br {
    display: none;
  }
  .hero-orb-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -80px;
  }
  .hero-orb-2 {
    width: 250px;
    height: 250px;
  }
  .hero-glow {
    width: 350px;
    height: 180px;
  }
  .hero-divider {
    width: 40px;
    margin: 20px auto 18px;
  }

  /* Trust bar */
  .trust-bar-inner {
    flex-direction: column;
    gap: 20px;
  }
  .trust-bar-text {
    white-space: normal;
    text-align: center;
  }
  .trust-logos {
    gap: 28px;
    align-items: center;
  }
  .trust-logo-img {
    height: auto;
    max-height: 28px;
    max-width: 120px;
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Process */
  .process-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .process-left {
    position: static;
    text-align: center;
  }
  .process-left .section-title {
    text-align: center;
  }
  .step-number {
    display: none;
  }

  /* Case studies */
  .case-card-v2-inner {
    padding: 28px 24px;
  }
  .case-card-v2-metrics {
    flex-wrap: wrap;
    gap: 16px;
  }
  .case-metric-divider {
    display: none;
  }
  .case-metric {
    flex: 0 0 auto;
    min-width: 100px;
  }
  .section-title.text-left,
  .section-subtitle.text-left {
    text-align: center;
  }
  .cs-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* CTA */
  .cta-form {
    flex-direction: column;
  }
  .section-cta {
    padding: 64px 24px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-copy {
    text-align: center;
  }

  .section-decor {
    display: none;
  }
}


/* ============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================ */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 1.6rem;
  }
  .hero-subtitle {
    font-size: 0.92rem;
  }
  .hero-content {
    margin-bottom: 28px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }
  .btn-lg {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .team-card {
    padding: 24px;
  }

  .case-card-v2-inner {
    padding: 24px 20px;
  }
  .case-card-v2-title {
    font-size: 1.15rem;
  }

  .trust-logos {
    flex-direction: column;
    gap: 24px;
  }
  .trust-logo-img {
    max-height: 24px;
    max-width: 100px;
  }
}


/* ============================================
   EXTRA LARGE SCREENS (min 1400px)
   ============================================ */
@media (min-width: 1400px) {
  .hero-orb-1 {
    width: 700px;
    height: 700px;
    right: -200px;
  }
  .hero-orb-2 {
    width: 600px;
    height: 600px;
    left: -200px;
  }
  .hero-glow {
    width: 800px;
    height: 400px;
  }
  .section-decor-right {
    width: 400px;
    height: 400px;
  }
  .section-decor-left {
    width: 360px;
    height: 360px;
  }
}


/* ============================================
   CONSULTATION MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.modal-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 680px;
  height: 85vh;
  max-height: 900px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
}
.modal-open .modal-content {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-gray-100);
  flex-shrink: 0;
}

.modal-header-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-gray-900);
}

.modal-close {
  background: none;
  border: 1px solid var(--color-gray-100);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  min-width: 36px;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--color-gray-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.modal-close:hover {
  background: var(--color-gray-50);
  color: var(--color-gray-900);
}

.modal-body {
  flex: 1;
  overflow: hidden;
}

.modal-body iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .modal-content {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }
  .modal-header {
    padding: 14px 16px;
  }
}
