/* Import local fonts */
/* ========== Local Font Declarations ========== */
/* Variable fonts for optimal performance - single file handles all weights 400-700 */
/* Newsreader - Display Font */
@font-face {
  font-family: 'Newsreader';
  src: url('/fonts/Newsreader-VariableFont_opsz,wght.woff2') format('woff2'),
       url('/fonts/Newsreader-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Newsreader Italic */
@font-face {
  font-family: 'Newsreader';
  src: url('/fonts/Newsreader-Italic-VariableFont_opsz,wght.woff2') format('woff2'),
       url('/fonts/Newsreader-Italic-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-stretch: 75% 100%;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Inter - Body Font */
@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-VariableFont_opsz,wght.woff2') format('woff2'),
       url('/fonts/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-stretch: 75% 100%;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Inter Italic */
@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter-Italic-VariableFont_opsz,wght.woff2') format('woff2'),
       url('/fonts/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-stretch: 75% 100%;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  font-family: 'Inter', sans-serif;
  font-synthesis: none;
}
code {
  background-color: #F5F5F7;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}
@media (max-width: 1024px) {
  html {
    font-size: 14px;
  }
}

/* ========== Design System Variables ========== */
:root {
  /* Colors */
  --primary: #695AF2;
  --primary-dark: #503DD8;
  --white: #FFFFFF;
  --charcoal: #1A1C1D;
  --light-gray: #F5F5F7;
  --gray: #E2E2E2;
  --dark-gray: #474555;
  --surface: #F9F9FB;
  
  /* Typography */
  --font-display: 'Newsreader', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing (8px base unit) */
  --xs: 4px;
  --sm: 16px;
  --md: 32px;
  --lg: 60px;
  --xl: 128px;
  
  /* Sizes */
  --container-max: 1440px;
  --gutter: 24px;
  --margin-desktop: 80px;
  --margin-mobile: 20px;

  /* CTAs (.cta) */
  --cta-radius: 4px;
  --cta-pad-y: 12px;
  --cta-pad-x: 22px;
  --cta-font-size: 14px;
  --cta-font-size-lg: 15px;
  --cta-pad-y-lg: 14px;
  --cta-pad-x-lg: 32px;

  /* UI polish  text selection */
  --selection-bg: rgba(26, 28, 29, 0.1);
  --selection-color: var(--charcoal);
  --selection-bg-on-dark: rgba(255, 255, 255, 0.9);
  --selection-color-on-dark: var(--charcoal);
  --scrollbar-track: var(--white);
  --scrollbar-thumb: #c6c6c9;
  --scrollbar-thumb-hover: #9a9aa0;
}

/* ========== Route Loading State ========== */
.route-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  font-size: 16px;
  color: var(--dark-gray);
  font-family: var(--font-body);
}

.route-loading::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ========== Global UI polish ========== */
html {
  color-scheme: light;
  accent-color: var(--primary);
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

::-webkit-scrollbar-thumb {
  background-color: var(--scrollbar-thumb);
  border: 2px solid var(--scrollbar-track);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--scrollbar-thumb-hover);
}

::-webkit-scrollbar-corner {
  background: var(--scrollbar-track);
}

::selection {
  background-color: var(--selection-bg);
  color: var(--selection-color);
}

::-moz-selection {
  background-color: var(--selection-bg);
  color: var(--selection-color);
}

/*
 * Light text on charcoal  add .surface-dark to any block (CTAs, quotes, panels).
 * Legacy BEM suffixes below are covered until markup uses the utility consistently.
 */
.surface-dark ::selection,
.section-dark ::selection,
[class*='-final-cta'] ::selection,
[class$='-closing'] ::selection,
.home-philosophy ::selection,
.book-call-quote ::selection,
.results-spotlight__panel ::selection,
.specialty-proof__case ::selection,
.client-portal-soon ::selection {
  background-color: var(--selection-bg-on-dark);
  color: var(--selection-color-on-dark);
}

.surface-dark ::-moz-selection,
.section-dark ::-moz-selection,
[class*='-final-cta'] ::-moz-selection,
[class$='-closing'] ::-moz-selection,
.home-philosophy ::-moz-selection,
.book-call-quote ::-moz-selection,
.results-spotlight__panel ::-moz-selection,
.specialty-proof__case ::-moz-selection,
.client-portal-soon ::-moz-selection {
  background-color: var(--selection-bg-on-dark);
  color: var(--selection-color-on-dark);
}

::placeholder {
  color: var(--dark-gray);
  opacity: 0.85;
}

input,
textarea,
select,
[contenteditable='true'] {
  caret-color: var(--primary);
}

a,
button,
input,
textarea,
select,
summary,
[tabindex]:not([tabindex='-1']) {
  -webkit-tap-highlight-color: rgba(26, 28, 29, 0.08);
}

:where(a, button, input, textarea, select, summary, [tabindex]:not([tabindex='-1'])):focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

:where(a, button, input, textarea, select, summary, [tabindex]:not([tabindex='-1'])):focus:not(:focus-visible) {
  outline: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ========== Global Styles ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--navbar-height, 61px);
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--charcoal);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== Container & Layout ========== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400;
}

h1 {
  font-size: 72px;
  line-height: 80px;
  letter-spacing: -0.02em;
  margin-bottom: var(--md);
}

h2 {
  font-size: 48px;
  line-height: 56px;
  letter-spacing: -0.01em;
  margin-bottom: var(--lg);
  font-weight: 400;
}

h3 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 500;
  margin-bottom: var(--md);
}

p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: var(--sm);
}

/* ========== Buttons ========== */
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-transform: none;
  border: 1px solid var(--charcoal);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--charcoal);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  color: var(--white);
  border-color: var(--white);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--charcoal);
  border-color: var(--charcoal);
}

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

/* ========== Global CTAs (use on <a> or <button>) ========== */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  padding: var(--cta-pad-y) var(--cta-pad-x);
  font-family: var(--font-body);
  font-size: var(--cta-font-size);
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  text-align: center;
  border-radius: var(--cta-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
  width: fit-content;
  box-sizing: border-box;
}

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

.cta--lg {
  padding: var(--cta-pad-y-lg) var(--cta-pad-x-lg);
  font-size: var(--cta-font-size-lg);
}

/* Full-width CTA within a column (centered, capped width) */
.cta--block {
  width: 100%;
  max-width: 22rem;
  justify-content: center;
}

.cta--primary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.cta--primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(105, 90, 242, 0.2);
}

.cta--secondary {
  background-color: var(--white);
  color: var(--charcoal);
  border-color: var(--charcoal);
}

.cta--secondary:hover {
  background-color: var(--light-gray);
  border-color: var(--primary);
  color: var(--primary);
}

/* Solid light CTA on dark backgrounds (e.g. testimonial panels) */
.cta--inverse {
  background-color: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}

.cta--inverse:hover {
  background-color: var(--light-gray);
  border-color: var(--light-gray);
  color: var(--charcoal);
}

button.cta {
  appearance: none;
  margin: 0;
  font: inherit;
}

/* Navigation styles live in src/components/Navbar.css */

/* ========== Hero Section ========== */
.hero {
  padding: var(--margin-desktop) var(--gutter);
  background-color: var(--white);
  border-bottom: 1px solid var(--gray);
}

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

.hero-title {
  font-size: 72px;
  line-height: 80px;
  letter-spacing: -0.02em;
  margin-bottom: var(--md);
  color: var(--charcoal);
  font-weight: 400;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 28px;
  max-width: 800px;
  margin: 0 auto var(--lg);
  color: var(--dark-gray);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--lg);
  margin-top: var(--lg);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--xs);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  color: var(--primary);
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--dark-gray);
  text-transform: uppercase;
}

/* ========== Color Architecture Section ========== */
.color-architecture {
  padding: var(--margin-desktop) var(--gutter);
  background-color: var(--surface);
  border-bottom: 1px solid var(--gray);
}

.color-architecture h2 {
  text-align: center;
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--lg);
  margin-top: var(--lg);
}

.color-item {
  background-color: var(--white);
  border: 1px solid var(--gray);
  padding: var(--md);
}

.color-swatch {
  width: 100%;
  height: 120px;
  margin-bottom: var(--md);
  border: 1px solid var(--gray);
}

.color-swatch.primary {
  background-color: var(--primary);
}

.color-swatch.white {
  background-color: var(--white);
  border: 1px solid var(--charcoal);
}

.color-swatch.charcoal {
  background-color: var(--charcoal);
}

.color-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: var(--xs);
  font-family: var(--font-body);
}

.color-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--dark-gray);
  margin-bottom: var(--md);
}

.color-description {
  font-size: 14px;
  line-height: 22px;
  color: var(--dark-gray);
}

/* ========== Typography Section ========== */
.typography {
  padding: var(--margin-desktop) var(--gutter);
  background-color: var(--white);
  border-bottom: 1px solid var(--gray);
}

.typography h2 {
  text-align: center;
}

.typography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--lg);
  margin-top: var(--lg);
}

.typography-item {
  background-color: var(--surface);
  border: 1px solid var(--gray);
  padding: var(--md);
}

.type-display {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 400;
  line-height: 80px;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin-bottom: var(--md);
}

.type-headline {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: var(--md);
}

.type-body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--charcoal);
  margin-bottom: var(--md);
}

.type-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: var(--md);
}

.type-spec {
  font-size: 12px;
  color: var(--dark-gray);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: var(--sm);
}

.type-description {
  font-size: 14px;
  line-height: 22px;
  color: var(--dark-gray);
}

/* ========== Services Section ========== */
.services {
  padding: var(--margin-desktop) var(--gutter);
  background-color: var(--surface);
  border-bottom: 1px solid var(--gray);
}

.services h2 {
  text-align: center;
}

.section-subtitle {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--lg);
  font-size: 18px;
  color: var(--dark-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--md);
  margin-top: var(--lg);
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--gray);
  padding: var(--md);
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}

.service-number {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: var(--md);
}

.service-card h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: var(--md);
  color: var(--charcoal);
}

.service-card p {
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-gray);
}

/* Footer styles live in src/components/Footer.css */

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
    line-height: 44px;
  }

  h1 {
    font-size: 36px;
    line-height: 44px;
  }

  h2 {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--md);
  }

  .hero {
    padding: var(--margin-mobile) var(--gutter);
  }

  .color-architecture,
  .typography,
  .services {
    padding: var(--margin-mobile) var(--gutter);
  }

  .type-display {
    font-size: 48px;
  }

  .type-headline {
    font-size: 32px;
  }
}
:root {
  --navbar-height: 61px;
  /* Space between nav trigger and mega panel (Appnox-style “floating” menu) */
  --nav-dropdown-gap: 26px;
  --nav-dropdown-radius: 16px;
  --nav-dropdown-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

/* ========== Navigation ========== */
.navbar {
  background-color: var(--white);
  border-bottom: 1px solid var(--gray);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar--menu-open {
  z-index: 250;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--md) var(--gutter);
  position: relative;
}

.navbar .logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
  opacity: 1;
  width: auto;
}

.navbar .logo__mark {
  height: 50px;
  width: 50px;
  max-width: none;
  display: block;
}

.nav-links {
  display: flex;
  gap: var(--md);
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
}

.nav-item > a:hover {
  color: var(--primary);
}

.nav-item--active > a,
.nav-links > a.nav-link--active,
.nav-item > a.nav-link--active {
  color: var(--primary);
}

.dropdown-toggle svg {
  transition: transform 0.3s ease;
  stroke-width: 2;
}

.nav-item:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

/* Invisible hover bridge so the gap under the nav doesn’t close the menu */
.dropdown::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: calc(-1 * var(--nav-dropdown-gap));
  height: var(--nav-dropdown-gap);
}

/* Dropdown Menu */
.dropdown {
  position: absolute;
  top: calc(100% + var(--nav-dropdown-gap));
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background-color: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--nav-dropdown-radius);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  width: fit-content;
  max-width: min(920px, calc(100vw - 32px));
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
  pointer-events: none;
  box-shadow: var(--nav-dropdown-shadow);
  z-index: 1000;
  white-space: normal;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Services: align to trigger (avoids clipping when centered) + stable 3-col width */
.dropdown.dropdown-mega--services {
  left: 0;
  right: auto;
  transform: translateX(0) translateY(-8px);
  width: min(720px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nav-item:hover .dropdown.dropdown-mega--services {
  transform: translateX(0) translateY(0);
}

.dropdown-lg {
  position: absolute;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) translateY(-8px) !important;
  width: min(1120px, calc(100vw - 40px)) !important;
  max-width: min(1120px, calc(100vw - 40px)) !important;
  background-color: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--nav-dropdown-radius);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
  box-shadow: var(--nav-dropdown-shadow);
  z-index: 1000;
  white-space: normal;
  top: calc(100% + var(--nav-dropdown-gap));
  align-items: start;
}

.dropdown-lg.dropdown-mega--who {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: min(1280px, calc(100vw - 40px)) !important;
  max-width: min(1280px, calc(100vw - 40px)) !important;
}

.nav-item:hover .dropdown-lg {
  transform: translateX(-50%) translateY(0) !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.dropdown-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
}

/* Appnox-style pastel column headers */
.dropdown-mega__head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--charcoal);
  margin: 0;
}

.dropdown-mega__head-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--charcoal);
  opacity: 0.85;
}

.dropdown-mega__head-label {
  white-space: normal;
}

.dropdown-mega__head--accent-1 {
  background: #e5f7ef;
}

.dropdown-mega__head--accent-2 {
  background: #fde9e0;
}

.dropdown-mega__head--accent-3 {
  background: #eee8fc;
}

.dropdown-mega__head--accent-4 {
  background: #fdf3d9;
}

.dropdown-mega__head--accent-5 {
  background: #e8f2ff;
}

.dropdown-mega__more-btn {
  align-self: flex-start;
  margin-top: 2px;
  padding: 6px 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.dropdown-mega__more-btn:hover {
  color: var(--primary-dark);
}

.dropdown-mega__list--extra {
  margin-top: 4px;
  padding-top: 8px;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.dropdown-column h5 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--gray);
  padding-bottom: var(--sm);
}

.pillar-main {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: var(--sm) 0;
  transition: color 0.2s ease;
}

.pillar-main:hover {
  color: var(--primary-dark);
}

.dropdown-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dropdown-column ul li {
  margin: 0;
  padding: 0;
}

.dropdown-mega__list li a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.2s ease;
  padding: 2px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.dropdown-mega__link-label {
  flex: 1;
  min-width: 0;
}

.dropdown-mega__list li a .external-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  display: block;
  margin-left: 4px;
  transition: transform 0.2s ease, color 0.2s ease;
}

.dropdown-mega__list li a:hover .external-icon {
  transform: translate(1px, -1px);
}



.dropdown-mega__list li a:hover {
  color: var(--primary);
}

.dropdown-section--practice {
  min-width: 0;
}

/* Compact dropdown for single-column menus */
.dropdown--compact {
  padding: clamp(1rem, 2vw, 1.35rem);
  gap: 0;
  grid-template-columns: 1fr;
  min-width: min(280px, calc(100vw - 32px));
}

.dropdown--compact .dropdown-column ul {
  gap: 10px;
}

/* Dropdown sections for large dropdowns */
.dropdown-section {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  padding-bottom: 0;
  border-bottom: none;
}

.dropdown-section:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.dropdown-mega .dropdown-section h5 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: start;
}

.dropdown-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dropdown-section ul li {
  margin: 0;
  padding: 0;
}

.dropdown-section ul li a {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: color 0.2s ease;
  padding: 4px 0;
  display: block;
}

.dropdown-section ul li a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.dropdown-mega .dropdown-section ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 0;
  font-weight: 500;
}

.dropdown-mega .dropdown-section ul li a:hover {
  padding-left: 0;
}

/* Regular nav links (exclude .btn e.g. Book a call  keep App.css button colors) */
.nav-links > a:not(.btn) {
  color: var(--charcoal);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links > a:not(.btn):hover {
  color: var(--primary);
}

.portal-link {
  color: var(--primary);
  font-weight: 600;
}

.portal-link:hover {
  opacity: 0.8;
}

.btn-primary {
  padding: 10px 24px !important;
  font-size: 14px !important;
}

@media (max-width: 1200px) {
  .dropdown {
    max-width: min(920px, calc(100vw - 32px));
  }

  .dropdown-lg {
    width: min(1120px, calc(100vw - 32px)) !important;
    max-width: min(1120px, calc(100vw - 32px)) !important;
  }
}

@media (max-width: 1024px) {
  .nav-links {
    gap: var(--sm);
  }

  .nav-links > a:not(.btn) {
    font-size: 13px;
  }

  .dropdown {
    max-width: calc(100vw - 32px);
    gap: var(--md);
  }

  .dropdown-lg {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
  }

  .dropdown-lg.dropdown-mega--who {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dropdown-section--practice {
    grid-column: 1 / -1;
  }
}

/* ========== Mobile menu toggle ========== */
.navbar .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;
}

.nav-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 4px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease;
}

.nav-menu-toggle svg {
  width: 22px;
  height: 22px;
}

.nav-menu-toggle:hover {
  border-color: var(--charcoal);
}

.nav-menu-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.nav-overlay {
  display: none;
  position: fixed;
  top: var(--navbar-height, 57px);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(26, 28, 29, 0.45);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nav-overlay--visible {
  opacity: 1;
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  top: var(--navbar-height, 57px);
  right: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  width: min(100%, 380px);
  height: calc(100dvh - var(--navbar-height, 57px));
  max-height: calc(100dvh - var(--navbar-height, 57px));
  background: var(--white);
  border-left: 1px solid var(--gray);
  box-shadow: -8px 0 32px rgba(26, 28, 29, 0.12);
  transform: translateX(100%);
  visibility: hidden;
  transition:
    transform 0.3s ease,
    visibility 0.3s ease;
}

.mobile-nav--open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav__scroll {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: var(--sm, 16px) var(--gutter, 24px) var(--md, 32px);
  -webkit-overflow-scrolling: touch;
}

.mobile-nav__top-link {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--gray);
  transition: color 0.2s ease;
}

.mobile-nav__top-link:hover {
  color: var(--primary);
}

.mobile-nav__group {
  border-bottom: 1px solid var(--gray);
}

.mobile-nav__group-head {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.mobile-nav__group-link {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-nav__group-link:hover {
  color: var(--primary);
}

.mobile-nav__group-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  flex-shrink: 0;
  padding: 0;
  color: var(--charcoal);
  background: transparent;
  border: none;
  border-left: 1px solid var(--gray);
  cursor: pointer;
}

.mobile-nav__group-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 0.25s ease;
}

.mobile-nav__group--open .mobile-nav__group-toggle svg {
  transform: rotate(180deg);
}

.mobile-nav__group-panel {
  padding: 0 0 16px;
}

.mobile-nav__block {
  margin-bottom: 14px;
}

.mobile-nav__block:last-child {
  margin-bottom: 0;
}

.mobile-nav__block-title {
  margin: 0 0 8px;
  padding: 8px 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--charcoal);
  border-radius: 8px;
}

.mobile-nav__block-title--accent-1 {
  background: #e5f7ef;
}

.mobile-nav__block-title--accent-2 {
  background: #fde9e0;
}

.mobile-nav__block-title--accent-3 {
  background: #eee8fc;
}

.mobile-nav__block-title--accent-4 {
  background: #fdf3d9;
}

.mobile-nav__block-title--accent-5 {
  background: #e8f2ff;
}

.mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav__list--flat {
  padding-top: 4px;
}

.mobile-nav__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 4px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-nav__item:hover {
  color: var(--primary);
}

.mobile-nav__item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.6;
}

.mobile-nav__footer {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: var(--md, 32px) var(--gutter, 24px);
  padding-bottom: max(var(--md, 32px), env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--gray);
  background: var(--surface);
}

.mobile-nav__portal {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  text-align: center;
}

.mobile-nav__portal:hover {
  color: var(--primary-dark);
}

.mobile-nav__cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}

@media (max-width: 1023px) {
  :root {
    --navbar-height: 57px;
  }

  .nav-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px var(--gutter, 24px);
  }

  .navbar .logo__mark {
    height: 40px;
  }

  .nav-menu-toggle {
    display: flex;
  }

  .nav-overlay {
    display: block;
    pointer-events: none;
  }

  .nav-overlay--visible {
    pointer-events: auto;
  }

  .nav-links--desktop {
    display: none !important;
  }

  .nav-item:hover .dropdown,
  .nav-item:hover .dropdown-lg {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@media (min-width: 1024px) {
  .mobile-nav,
  .nav-overlay,
  .nav-menu-toggle {
    display: none !important;
  }

  .nav-links--desktop {
    display: flex;
  }
}
/* ========== Footer  light glass + soft neo, primary accent ========== */
.footer {
  padding: var(--sm) 8px 10px;
  background: transparent;
  color: var(--charcoal);
}

@media (min-width: 768px) {
  .footer {
    padding: var(--md) clamp(6px, 1.2vw, 14px) clamp(8px, 1.2vw, 18px);
  }
}

.footer__card {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0 auto;
  border-radius: clamp(26px, 3.5vw, 44px);
  overflow: hidden;
  isolation: isolate;
  /* Stronger “floating sheet” read: crisp edge + deep lift + soft brand halo */
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow:
    0 1px 2px rgba(26, 28, 29, 0.06),
    0 8px 24px rgba(26, 28, 29, 0.08),
    0 24px 56px -10px rgba(26, 28, 29, 0.22),
    0 36px 72px -20px rgba(105, 90, 242, 0.2),
    0 0 0 1px rgba(105, 90, 242, 0.14),
    -10px -10px 32px rgba(255, 255, 255, 0.75),
    inset 0 1px 0 rgba(255, 255, 255, 1),
    inset 0 -2px 8px rgba(105, 90, 242, 0.07);
  background:
    linear-gradient(
      155deg,
      rgba(255, 255, 255, 0.97) 0%,
      rgba(248, 246, 255, 0.99) 38%,
      rgba(237, 232, 252, 1) 72%,
      rgba(225, 218, 255, 0.98) 100%
    ),
    linear-gradient(
      200deg,
      rgba(105, 90, 242, 0.2) 0%,
      rgba(255, 255, 255, 0.68) 55%
    );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.footer__glass {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(
      90% 70% at 12% 8%,
      rgba(255, 255, 255, 0.65) 0%,
      transparent 45%
    ),
    radial-gradient(
      75% 60% at 95% 12%,
      rgba(105, 90, 242, 0.12) 0%,
      transparent 48%
    ),
    radial-gradient(
      80% 55% at 50% 100%,
      rgba(105, 90, 242, 0.08) 0%,
      transparent 55%
    );
}

.footer__inner {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 4vw, 48px) clamp(var(--gutter), 4vw, 48px)
    clamp(20px, 3vw, 36px);
}

/* Corner nails  dark “pin heads” so they read on the light panel */
.footer__nail {
  position: absolute;
  z-index: 3;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(145deg, #3d3f42 0%, #1a1b1d 55%, #0a0a0b 100%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.12),
    inset 0 -1px 2px rgba(0, 0, 0, 0.45),
    0 1px 3px rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.footer__nail--tl {
  top: clamp(16px, 2.5vw, 24px);
  left: clamp(16px, 2.5vw, 24px);
}

.footer__nail--tr {
  top: clamp(16px, 2.5vw, 24px);
  right: clamp(16px, 2.5vw, 24px);
}

.footer__nail--bl {
  bottom: clamp(16px, 2.5vw, 24px);
  left: clamp(16px, 2.5vw, 24px);
}

.footer__nail--br {
  bottom: clamp(16px, 2.5vw, 24px);
  right: clamp(16px, 2.5vw, 24px);
}

/* ========== Five-column grid ========== */
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 3.5vw, 44px);
  align-items: start;
  text-align: left;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: var(--sm);
  min-width: 0;
}

.footer__col-heading {
  margin: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.footer__logo-link {
  display: inline-block;
  line-height: 0;
  align-self: flex-start;
}

.footer__logo {
  height: 44px;
  width: auto;
  display: block;
}

.footer__tagline {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--dark-gray);
  max-width: 22rem;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 4px;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__social-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer__social-link:hover .footer__social-icon {
  opacity: 1;
  transform: translateY(-1px);
}

.footer__social-link:hover {
  color: var(--primary);
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__list a {
  color: var(--dark-gray);
  text-decoration: none;
  font-size: 14px;
  font-family: var(--font-body);
  transition: color 0.2s ease;
}

.footer__list a:hover {
  color: var(--primary);
}

.footer__link-em {
  font-weight: 600;
  color: var(--charcoal);
}

.footer__link-em:hover {
  color: var(--primary);
}

.footer__email {
  font-weight: 500;
  word-break: break-word;
  color: var(--primary);
}

.footer__email:hover {
  color: var(--primary-dark);
}

/* Sub-footer  single row */
.footer-sub {
  margin-top: clamp(var(--md), 4vw, var(--lg));
  padding-top: var(--md);
  border-top: 1px solid rgba(26, 28, 29, 0.1);
}

.footer-sub__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 4px;
  margin: 0;
  font-size: 12px;
  font-family: var(--font-body);
  color: rgba(71, 69, 85, 0.85);
  text-align: center;
  line-height: 1.5;
}

.footer-sub__row a {
  color: rgba(71, 69, 85, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-sub__row a:hover {
  color: var(--primary);
}

.footer-sub__sep {
  color: rgba(71, 69, 85, 0.45);
  user-select: none;
}

@media (max-width: 1199px) {
  .footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer__col--brand {
    grid-column: 1 / -1;
    max-width: 28rem;
  }
}

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

  .footer__col--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--md);
  }

  .footer__col--brand {
    grid-column: auto;
    max-width: none;
  }

  .footer__inner {
    padding: var(--md) var(--gutter) var(--sm);
  }
}
.homepage {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ========== Design System Variables ========== */
:root {
  --primary: #695AF2;
  --primary-dark: #503DD8;
  --white: #FFFFFF;
  --charcoal: #1A1C1D;
  --light-gray: #F5F5F7;
  --gray: #E2E2E2;
  --dark-gray: #474555;
  --surface: #F9F9FB;
  --font-display: 'Newsreader', serif;
  --font-body: 'Inter', sans-serif;
  --sm: 16px;
  --md: 32px;
  --lg: 64px;
  --navbar-height: 61px;
}

/* ========== Home Hero Section ========== */
.home-hero {
  display: flex;
  min-height: calc(100vh - var(--navbar-height));
  background: var(--white);
  font-family: var(--font-body);
  overflow: hidden;
}

/* Left Column - 55% */
.hero-left {
  flex: 0 0 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--lg);
  background: var(--white);
}

.hero-content {
  max-width: 550px;
  width: 100%;
}

/* Eyebrow */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-gray);
  margin: 0 0 var(--md) 0;
}

/* Headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 400;
  line-height: 1.08;
  color: var(--charcoal);
  margin: 0 0 var(--sm) 0;
  letter-spacing: -0.02em;
}

.hero-headline__line {
  display: block;
}

.hero-headline__stanza-break {
  display: block;
  height: 0.55em;
}

/* Sub-headline */
.hero-subheadline {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark-gray);
  margin: 0 0 var(--lg) 0;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: var(--lg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  width: fit-content;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(105, 90, 242, 0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}

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

/* Button Arrows */
.btn-arrow {
  width: 18px;
  height: 18px;
  margin-left: 8px;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.btn-arrow-right {
  transform: translateX(0);
}

.btn:hover .btn-arrow-right {
  transform: translateX(3px);
}

.btn-arrow-down {
  transform: translateY(0);
}

.btn:hover .btn-arrow-down {
  transform: translateY(3px);
}

/* Trust Line */
.trust-line {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--dark-gray);
  margin: 0;
  padding-top: var(--md);
  border-top: 1px solid var(--gray);
}

/* Right Column - 45% */
.hero-right {
  flex: 0 0 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--lg);
  background: var(--surface);
}

.proof-content {
  width: 100%;
  max-width: 480px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 36px;
  margin-bottom: var(--lg);
}

.stat-item {
  text-align: left;
  padding: 4px 0;
}

.stat-number {
  font-size: 48px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 12px;
  font-family: var(--font-display);
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--dark-gray);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

/* Trusted By Section */
.trusted-by {
  padding-top: var(--md);
  border-top: 1px solid var(--gray);
}

.trusted-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dark-gray);
  margin: 0 0 16px 0;
}

.practice-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.practice-pill {
  display: inline-block;
  background: var(--white);
  border: 1px solid var(--gray);
  border-radius: 20px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}

.practice-pill:hover {
  border-color: var(--primary);
  background: var(--light-gray);
}

/* External Link Icon */
.external-icon {
  width: 14px;
  height: 14px;
  margin-left: 6px;
  display: inline-block;
  vertical-align: -2px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.practice-pill:hover .external-icon {
  transform: translate(1px, -1px);
}

/* ========== Responsive Design ========== */
@media (max-width: 1200px) {
  .hero-left,
  .hero-right {
    padding: var(--md);
  }

  .hero-headline {
    font-size: 48px;
  }

  .stat-number {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .home-hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero-left,
  .hero-right {
    flex: 0 0 auto;
    width: 100%;
    padding: var(--lg) var(--sm);
  }

  .hero-headline {
    font-size: 40px;
  }

  .hero-subheadline {
    font-size: 16px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

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

  .stat-number {
    font-size: 36px;
  }

  .cta-buttons {
    margin-bottom: var(--md);
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-left,
  .hero-right {
    padding: var(--md) var(--sm);
  }

  .hero-headline {
    font-size: 32px;
  }

  .hero-subheadline {
    font-size: 15px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 13px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}
