/* ============================================================
   PRAISE BOOKKEEPING - Design System & Styles v2
   San Miguel-inspired: bold typography, image-driven, corporate
   ============================================================ */

:root {
  /* Brand Colors */
  --purple: #7B2D8E;
  --purple-light: #F5EDF8;
  --purple-mid: #E8D5EF;
  --purple-dark: #5A1F6A;
  --blue: #2847A4;
  --blue-light: #EDF0F9;
  --blue-dark: #1B1F6B;
  --crimson: #C41E56;
  --crimson-light: #FDE8EF;
  --crimson-dark: #8B1142;
  --navy: #1B1464;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F9F8FC;
  --gray-100: #F0EFF5;
  --gray-200: #E2E0EB;
  --gray-300: #C8C5D4;
  --gray-400: #9E9AB0;
  --gray-500: #706C84;
  --gray-600: #524E65;
  --gray-700: #3A3650;
  --gray-800: #252140;
  --gray-900: #1A1035;

  /* Semantic */
  --text-heading: var(--navy);
  --text-body: var(--gray-700);
  --text-secondary: var(--gray-500);
  --text-inverse: var(--white);
  --bg-primary: var(--white);
  --bg-secondary: var(--gray-50);
  --bg-dark: var(--navy);
  --accent: var(--crimson);
  --accent-hover: var(--crimson-dark);
  --link: var(--blue);
  --link-hover: var(--blue-dark);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: 2rem;
  --fs-3xl: 2.75rem;
  --fs-4xl: 3.5rem;
  --fs-5xl: 4.5rem;
  --lh-tight: 1.15;
  --lh-snug: 1.3;
  --lh-normal: 1.65;
  --lh-relaxed: 1.8;

  /* Spacing */
  --sp-xs: 0.25rem;
  --sp-sm: 0.5rem;
  --sp-md: 1rem;
  --sp-lg: 1.5rem;
  --sp-xl: 2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 4rem;
  --sp-4xl: 6rem;
  --sp-5xl: 8rem;
  --sp-6xl: 10rem;

  /* Layout */
  --max-w: 1200px;
  --max-w-narrow: 800px;
  --max-w-wide: 1400px;
  --header-h: 180px;
  --header-h-scrolled: 72px;
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(27,20,100,0.06);
  --shadow: 0 4px 12px rgba(27,20,100,0.08);
  --shadow-md: 0 8px 24px rgba(27,20,100,0.1);
  --shadow-lg: 0 16px 48px rgba(27,20,100,0.12);
  --shadow-xl: 0 24px 64px rgba(27,20,100,0.16);
  --shadow-card: 0 2px 8px rgba(27,20,100,0.06), 0 8px 24px rgba(27,20,100,0.04);
  --shadow-mega: 0 20px 60px rgba(27,20,100,0.15);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 150ms var(--ease);
  --t: 300ms var(--ease);
  --t-slow: 500ms var(--ease);
}


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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--link); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--link-hover); }

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}

button { font-family: inherit; font-size: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: var(--lh-tight);
  font-weight: 600;
}
h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
p + p { margin-top: var(--sp-md); }
::selection { background: var(--purple); color: var(--white); }


/* ===================== LAYOUT ===================== */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-xl); }
.container--narrow { max-width: var(--max-w-narrow); }
.container--wide { max-width: var(--max-w-wide); }

.section { padding: var(--sp-6xl) 0; }
.section--sm { padding: var(--sp-4xl) 0; }
.section--dark { background: var(--bg-dark); color: var(--text-inverse); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: var(--white); }
.section--alt { background: var(--gray-50); }
.section--purple { background: var(--purple); color: var(--white); }
.section--purple h2, .section--purple h3 { color: var(--white); }

.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }


/* ===================== HEADER ===================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: var(--header-h);
  transition: height var(--t), box-shadow var(--t), background var(--t);
}

.header.scrolled {
  height: var(--header-h-scrolled);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

.header__logo { display: flex; align-items: center; flex-shrink: 0; overflow: hidden; }
.header__logo img {
  height: 288px;
  width: auto;
  transition: height var(--t), margin var(--t);
  object-fit: cover;
  object-position: center;
  margin-top: -57px;
  margin-bottom: -57px;
}
.header.scrolled .header__logo img {
  height: 52px;
  margin-top: -10px;
  margin-bottom: -10px;
}

/* Desktop Nav */
.header__nav { display: none; }
@media (min-width: 1024px) {
  .header__nav { display: flex; align-items: center; }
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-base);
  font-weight: 500;
  color: var(--text-body);
  letter-spacing: 0.01em;
  padding: var(--sp-md) var(--sp-md);
  transition: color var(--t-fast);
  white-space: nowrap;
}

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

.nav-link__chevron {
  width: 14px; height: 14px;
  transition: transform var(--t-fast);
}

.nav-item--has-mega:hover .nav-link__chevron {
  transform: rotate(180deg);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: var(--sp-md); right: var(--sp-md);
  height: 2px;
  background: var(--purple);
  transform: scaleX(0);
  transition: transform var(--t);
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.header__actions {
  display: none;
  align-items: center;
  gap: var(--sp-lg);
}
@media (min-width: 1024px) {
  .header__actions { display: flex; }
}

.header__phone {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-body);
  display: none;
}
@media (min-width: 1280px) {
  .header__phone { display: block; }
}


/* ===================== MEGA MENU ===================== */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t), visibility var(--t);
  z-index: 100;
  padding-top: 0;
}

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

.mega-menu__panel {
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-mega);
  border-top: 3px solid var(--purple);
  overflow: hidden;
  min-width: 720px;
}

.mega-menu__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.mega-menu__group {
  padding: var(--sp-2xl) var(--sp-xl);
  border-right: 1px solid var(--gray-100);
}

.mega-menu__group:last-child {
  border-right: none;
}

.mega-menu__title {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--purple);
  margin-bottom: var(--sp-sm);
}

.mega-menu__desc {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  margin-bottom: var(--sp-lg);
  line-height: var(--lh-normal);
}

.mega-menu__links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-menu__links a {
  font-size: var(--fs-sm);
  color: var(--text-body);
  padding: 6px 0;
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: block;
}

.mega-menu__links a:hover {
  color: var(--purple);
  padding-left: 4px;
}

.mega-menu__cta-col {
  padding: var(--sp-2xl) var(--sp-xl);
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--sp-lg);
}

.mega-menu__cta-text {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
}

.mega-menu__all-link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Industries mega menu */
.mega-menu__grid--industries {
  grid-template-columns: repeat(3, 1fr);
  min-width: 660px;
}

.mega-menu__industry {
  display: block;
  padding: var(--sp-xl);
  border-right: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  transition: background var(--t-fast);
  text-decoration: none;
}

.mega-menu__industry:nth-child(3n) { border-right: none; }
.mega-menu__industry:nth-child(n+4) { border-bottom: none; }

.mega-menu__industry:hover {
  background: var(--purple-light);
}

.mega-menu__industry strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.mega-menu__industry span {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}

.mega-menu__bottom {
  padding: var(--sp-md) var(--sp-xl);
  background: var(--gray-50);
  text-align: right;
}

.mega-menu__bottom a {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--purple);
}

@media (max-width: 1023px) {
  .mega-menu { display: none; }
}


/* ===================== MOBILE NAV ===================== */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  color: var(--navy);
}
.menu-toggle svg { width: 24px; height: 24px; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

.mobile-nav {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 420px;
  background: var(--white);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  padding: var(--sp-2xl);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,16,53,0.6);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-slow);
}
.mobile-nav__overlay.open { opacity: 1; pointer-events: auto; }

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-3xl);
}

.mobile-nav__close {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.mobile-nav__close svg { width: 24px; height: 24px; }

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-xs);
}

.mobile-nav__link {
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--text-body);
  padding: var(--sp-md) 0;
  border-bottom: 1px solid var(--gray-100);
  transition: color var(--t-fast);
}
.mobile-nav__link:hover, .mobile-nav__link.active { color: var(--purple); }

/* Mobile sub-links */
.mobile-nav__sub-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: var(--fs-lg);
  font-weight: 500;
  color: var(--text-body);
  padding: var(--sp-md) 0;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-nav__sub-toggle svg {
  width: 18px; height: 18px;
  transition: transform var(--t);
}

.mobile-nav__sub-toggle.open svg { transform: rotate(180deg); }
.mobile-nav__sub-toggle.open { color: var(--purple); }

.mobile-nav__sub-links {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}

.mobile-nav__sub-links.open {
  max-height: 600px;
}

.mobile-nav__sub-links a {
  display: block;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  padding: 8px 0 8px var(--sp-lg);
  transition: color var(--t-fast);
}

.mobile-nav__sub-links a:hover { color: var(--purple); }

.mobile-nav__footer {
  margin-top: auto;
  padding-top: var(--sp-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.mobile-nav__contact {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}
.mobile-nav__contact a { color: var(--text-body); font-weight: 500; }

@media (min-width: 1024px) {
  .mobile-nav, .mobile-nav__overlay { display: none; }
}


/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-sm);
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all var(--t);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn--primary {
  background: var(--crimson);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--crimson-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196,30,86,0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--gray-300);
}
.btn--secondary:hover {
  border-color: var(--navy);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
}
.btn--white:hover {
  background: var(--gray-50);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,255,255,0.2);
}

.btn--lg { font-size: var(--fs-base); padding: 18px 40px; }
.btn--sm { font-size: var(--fs-xs); padding: 10px 20px; }
.btn--full { width: 100%; }


/* ===================== SECTION HEADINGS ===================== */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: var(--sp-md);
}

.section--dark .section-eyebrow,
.section--purple .section-eyebrow {
  color: rgba(255,255,255,0.6);
}

.section-heading { margin-bottom: var(--sp-lg); }

.section-sub {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: var(--text-secondary);
  max-width: 620px;
}

.section--dark .section-sub { color: rgba(255,255,255,0.7); }


/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,20,100,0.88) 0%, rgba(90,31,106,0.82) 50%, rgba(27,20,100,0.75) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3xl);
  align-items: center;
  padding: var(--sp-5xl) 0;
  color: var(--white);
}

@media (min-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; max-width: 720px; }
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--sp-lg);
}

.hero__title {
  font-size: var(--fs-3xl);
  color: var(--white);
  margin-bottom: var(--sp-xl);
}

@media (min-width: 768px) { .hero__title { font-size: var(--fs-4xl); } }
@media (min-width: 1024px) { .hero__title { font-size: var(--fs-5xl); } }

.hero__description {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  color: rgba(255,255,255,0.8);
  max-width: 540px;
  margin-bottom: var(--sp-2xl);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
  margin-bottom: var(--sp-2xl);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
  padding-top: var(--sp-lg);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__trust-icon {
  width: 20px; height: 20px;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.hero__trust-text {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* Hero right visual */
.hero__visual { display: none; }
@media (min-width: 1024px) { .hero__visual { display: block; } }

.hero__visual-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl);
}

.hero__visual-stat {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  padding: var(--sp-lg) 0;
}
.hero__visual-stat + .hero__visual-stat { border-top: 1px solid rgba(255,255,255,0.1); }

.hero__visual-stat-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.hero__visual-stat-icon svg { width: 24px; height: 24px; }

.hero__visual-stat-label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
  margin-bottom: 2px;
}

.hero__visual-stat-value {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  color: var(--white);
}

.hero__visual-badge {
  margin-top: var(--sp-lg);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  padding: var(--sp-md) var(--sp-lg);
  border-radius: var(--radius);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}


/* ===================== CREDENTIAL STRIP ===================== */
.credential-strip {
  padding: var(--sp-4xl) 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}

.credential-strip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-xl);
}
@media (min-width: 768px) { .credential-strip__inner { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .credential-strip__inner { grid-template-columns: repeat(5, 1fr); gap: var(--sp-2xl); } }

.credential-item { text-align: center; padding: var(--sp-lg); }
.credential-item__value {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  color: var(--navy);
  margin-bottom: var(--sp-sm);
}
.credential-item__label {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: var(--lh-snug);
}
.credential-item__disclaimer {
  color: var(--gray-400);
  font-size: var(--fs-xs);
  vertical-align: super;
}
.credential-strip__disclaimer {
  text-align: center;
  font-size: var(--fs-xs);
  color: var(--gray-400);
  margin-top: var(--sp-lg);
  line-height: var(--lh-relaxed);
}


/* ===================== IMAGE SECTIONS ===================== */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 500px;
}
@media (min-width: 1024px) {
  .split-section { grid-template-columns: 1fr 1fr; }
}

.split-section__image {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}
.split-section__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-4xl) var(--sp-2xl);
}
@media (min-width: 1024px) {
  .split-section__content { padding: var(--sp-5xl) var(--sp-4xl); }
}

.split-section--reverse .split-section__image { order: 2; }
@media (max-width: 1023px) {
  .split-section--reverse .split-section__image { order: 0; }
}

/* Full image banner */
.image-banner {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.image-banner__bg {
  position: absolute;
  inset: 0;
}
.image-banner__bg img,
.image-banner__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.image-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,20,100,0.85) 0%, rgba(90,31,106,0.75) 100%);
}
.image-banner__content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: var(--sp-5xl) 0;
}
.image-banner h2 { color: var(--white); }


/* ===================== PAIN / OUTCOME ===================== */
.pain-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4xl);
  align-items: center;
}
@media (min-width: 1024px) {
  .pain-section__grid { grid-template-columns: 1fr 1fr; }
}

.pain-list { display: flex; flex-direction: column; gap: var(--sp-lg); }

.pain-item { display: flex; gap: var(--sp-md); align-items: flex-start; }
.pain-item__icon { width: 24px; height: 24px; flex-shrink: 0; margin-top: 2px; color: var(--crimson); }
.pain-item__text { font-size: var(--fs-md); line-height: var(--lh-normal); }

.outcome-card {
  background: var(--purple);
  color: var(--white);
  padding: var(--sp-3xl);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}
.outcome-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.outcome-card h3 { color: var(--white); margin-bottom: var(--sp-xl); }
.outcome-list { display: flex; flex-direction: column; gap: var(--sp-md); }
.outcome-item { display: flex; gap: var(--sp-md); align-items: flex-start; }
.outcome-item__icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 3px; color: rgba(255,255,255,0.8); }
.outcome-item__text { font-size: var(--fs-base); color: rgba(255,255,255,0.9); line-height: var(--lh-normal); }


/* ===================== SERVICE CARDS ===================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2xl);
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }

.service-group {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.service-group:hover {
  border-color: var(--purple-mid);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.service-group__icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-lg);
}
.service-group__icon--purple { background: var(--purple-light); color: var(--purple); }
.service-group__icon--blue { background: var(--blue-light); color: var(--blue); }
.service-group__icon--crimson { background: var(--crimson-light); color: var(--crimson); }
.service-group__icon--navy { background: rgba(27,20,100,0.08); color: var(--navy); }
.service-group__icon svg { width: 24px; height: 24px; }

.service-group__title { font-size: var(--fs-xl); margin-bottom: var(--sp-md); }
.service-group__description {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: var(--sp-xl);
  line-height: var(--lh-relaxed);
}

.service-group__list { display: flex; flex-direction: column; gap: var(--sp-sm); }
.service-group__list-item {
  display: flex;
  gap: var(--sp-sm);
  align-items: flex-start;
  font-size: var(--fs-sm);
  color: var(--text-body);
  line-height: var(--lh-normal);
}
.service-group__list-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
  margin-top: 7px;
}

/* Image service card (for individual service pages) */
.service-card-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform var(--t), box-shadow var(--t);
}
.service-card-img:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card-img__image {
  height: 220px;
  overflow: hidden;
}
.service-card-img__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.service-card-img:hover .service-card-img__image img {
  transform: scale(1.05);
}
.service-card-img__content {
  padding: var(--sp-xl);
}
.service-card-img__title {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-sm);
}
.service-card-img__text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-lg);
}
.service-card-img__link {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--purple);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}


/* ===================== WHY CARDS ===================== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2xl);
}
@media (min-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  padding: var(--sp-2xl);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: transform var(--t), box-shadow var(--t);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.why-card__number {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  color: var(--purple-mid);
  margin-bottom: var(--sp-md);
  line-height: 1;
}
.why-card__title { font-size: var(--fs-xl); margin-bottom: var(--sp-md); }
.why-card__text {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}


/* ===================== ABOUT PREVIEW ===================== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3xl);
  align-items: center;
}
@media (min-width: 1024px) {
  .about-preview { grid-template-columns: 1fr 1.2fr; gap: var(--sp-4xl); }
}

.about-preview__image-wrap { position: relative; }

.about-preview__image {
  border-radius: var(--radius-xl);
  object-fit: cover;
  object-position: center 15%;
  width: 100%;
  max-width: 320px;
  box-shadow: var(--shadow-lg);
}

.about-preview__accent {
  position: absolute;
  bottom: -12px; right: -12px;
  width: 120px; height: 120px;
  background: var(--purple-light);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.about-preview__text {
  font-size: var(--fs-md);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-xl);
}

.about-preview__credentials {
  display: grid;
  grid-template-columns: repeat(2, auto);
  justify-content: start;
  gap: var(--sp-md);
  margin-bottom: var(--sp-2xl);
}

.about-preview__credential {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-sm);
  padding: var(--sp-sm) var(--sp-md);
  background: var(--gray-50);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-body);
}
.about-preview__credential svg { width: 16px; height: 16px; color: var(--purple); }


/* ===================== PROCESS STEPS ===================== */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
  counter-reset: process;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

/* Fix centering for 3-step process */
.process-grid--three {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .process-grid--three { grid-template-columns: repeat(3, 1fr); }
}

.process-step {
  text-align: center;
  padding: var(--sp-xl);
  position: relative;
}

.process-step__number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-lg);
}

.process-step__title { font-size: var(--fs-xl); margin-bottom: var(--sp-md); }
.process-step__text {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

@media (min-width: 1024px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 52px; right: -14px;
    width: 28px; height: 2px;
    background: var(--gray-200);
  }
}


/* ===================== INDUSTRY CARDS ===================== */
.industry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}
@media (min-width: 768px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .industry-grid { grid-template-columns: repeat(3, 1fr); } }

.industry-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-lg);
  padding: var(--sp-xl);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: border-color var(--t), box-shadow var(--t), transform var(--t);
  text-decoration: none;
}
.industry-card:hover {
  border-color: var(--purple-mid);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.industry-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius);
  background: var(--purple-light);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.industry-card__icon svg { width: 22px; height: 22px; }

.industry-card__title {
  font-size: var(--fs-base);
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--sp-xs);
}
.industry-card__text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-normal);
}

/* Image industry cards */
.industry-card-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: var(--white);
  transition: transform var(--t);
}
.industry-card-img:hover { transform: translateY(-4px); color: var(--white); }

.industry-card-img__bg {
  position: absolute;
  inset: 0;
}
.industry-card-img__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.industry-card-img:hover .industry-card-img__bg img {
  transform: scale(1.05);
}
.industry-card-img__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,20,100,0.85) 0%, transparent 60%);
}

.industry-card-img__content {
  position: relative;
  z-index: 1;
  padding: var(--sp-xl);
}
.industry-card-img__title {
  font-size: var(--fs-lg);
  font-family: var(--font-heading);
  color: var(--white);
  margin-bottom: var(--sp-xs);
}
.industry-card-img__text {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
}


/* ===================== VIRTUAL SECTION ===================== */
.virtual-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}
@media (min-width: 768px) { .virtual-features { grid-template-columns: repeat(2, 1fr); } }

.virtual-feature { display: flex; gap: var(--sp-md); align-items: flex-start; }

.virtual-feature__icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.virtual-feature__icon svg { width: 18px; height: 18px; }

.virtual-feature__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--white);
  margin-bottom: var(--sp-xs);
}
.virtual-feature__text {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.7);
  line-height: var(--lh-normal);
}


/* ===================== CTA SECTION ===================== */
.cta-section {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: var(--sp-6xl) 0;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
}

.cta-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,20,100,0.92) 0%, rgba(90,31,106,0.88) 100%);
}

/* Fallback when no image */
.cta-section--gradient {
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple-dark) 100%);
}

.cta-section__inner {
  position: relative;
  z-index: 1;
}

.cta-section h2 { color: var(--white); margin-bottom: var(--sp-lg); }

.cta-section__text {
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto var(--sp-2xl);
  line-height: var(--lh-relaxed);
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-md);
}

.cta-section__note {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.5);
  margin-top: var(--sp-xl);
}


/* ===================== FOOTER ===================== */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: var(--sp-4xl) 0 var(--sp-xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-3xl);
}
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer__brand-logo {
  height: 44px;
  width: auto;
  margin-bottom: var(--sp-lg);
  filter: brightness(0) invert(1);
}

.footer__brand-name {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  margin-bottom: var(--sp-lg);
  line-height: var(--lh-tight);
}
.footer__brand-name:hover { color: rgba(255,255,255,0.8); }

.footer__brand-text {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  max-width: 280px;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-lg);
}

.footer__links { display: flex; flex-direction: column; gap: var(--sp-sm); }

.footer__link {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--t-fast);
}
.footer__link:hover { color: var(--white); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-sm);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-md);
}
.footer__contact-item svg {
  width: 16px; height: 16px;
  flex-shrink: 0; margin-top: 3px;
  color: var(--purple); opacity: 0.7;
}
.footer__contact-item a { color: rgba(255,255,255,0.6); }
.footer__contact-item a:hover { color: var(--white); }

.footer__bottom {
  padding-top: var(--sp-xl);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

.footer__copyright { font-size: var(--fs-xs); color: rgba(255,255,255,0.4); }
.footer__legal { display: flex; gap: var(--sp-lg); }
.footer__legal a { font-size: var(--fs-xs); color: rgba(255,255,255,0.4); }
.footer__legal a:hover { color: rgba(255,255,255,0.7); }


/* ===================== PAGE HERO ===================== */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + var(--sp-4xl));
  padding-bottom: var(--sp-4xl);
  overflow: hidden;
}

.page-hero--image {
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}
.page-hero__bg img,
.page-hero__bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(27,20,100,0.7) 0%, rgba(27,20,100,0.85) 100%);
}

.page-hero--image .page-hero__inner,
.page-hero--image .page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__eyebrow {
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: var(--sp-md);
}
.page-hero--image .page-hero__eyebrow { color: rgba(255,255,255,0.6); }
.page-hero__title { margin-bottom: var(--sp-md); }
.page-hero--image .page-hero__title { color: var(--white); }

.page-hero--simple {
  background: linear-gradient(170deg, var(--gray-50) 0%, var(--purple-light) 100%);
}

.page-hero__breadcrumb {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: var(--sp-xl);
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  flex-wrap: wrap;
}
.page-hero--image .page-hero__breadcrumb { color: rgba(255,255,255,0.6); }
.page-hero__breadcrumb a { color: inherit; }
.page-hero__breadcrumb a:hover { color: var(--purple); }
.page-hero--image .page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__breadcrumb span { font-weight: 500; }
.page-hero--image .page-hero__breadcrumb span { color: var(--white); }

.page-hero--image h1 {
  color: var(--white);
  max-width: 700px;
  margin-bottom: var(--sp-lg);
}

.page-hero h1 { max-width: 700px; margin-bottom: var(--sp-lg); }

.page-hero__description {
  font-size: var(--fs-md);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: var(--lh-relaxed);
}
.page-hero--image .page-hero__description { color: rgba(255,255,255,0.8); }


/* ===================== CONTACT FORM ===================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3xl);
}
@media (min-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr 1.4fr; }
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  padding: var(--sp-lg) 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-info__icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--purple-light);
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg { width: 20px; height: 20px; }

.contact-info__label {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 4px;
}
.contact-info__value { font-size: var(--fs-base); color: var(--text-body); }
.contact-info__value a { color: var(--text-body); font-weight: 500; }
.contact-info__value a:hover { color: var(--purple); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: var(--sp-2xl);
}
@media (min-width: 768px) { .contact-form { padding: var(--sp-3xl); } }

.contact-form__title { font-size: var(--fs-xl); margin-bottom: var(--sp-xs); }
.contact-form__subtitle {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  margin-bottom: var(--sp-2xl);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}
@media (min-width: 768px) {
  .form-grid--two-col { grid-template-columns: repeat(2, 1fr); }
}

.form-group { display: flex; flex-direction: column; }
.form-group--full { grid-column: 1 / -1; }

.form-label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: var(--sp-sm);
}
.form-label .required, .form-required {
  color: var(--crimson);
  margin-left: 2px;
}

.form-input, .form-select, .form-textarea {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  color: var(--text-body);
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }
.form-input:hover, .form-select:hover, .form-textarea:hover { border-color: var(--gray-300); }

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(123,45,142,0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%239E9AB0' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 5.646a.5.5 0 0 1 .708 0L8 8.293l2.646-2.647a.5.5 0 0 1 .708.708l-3 3a.5.5 0 0 1-.708 0l-3-3a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

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

.form-radio-group { display: flex; flex-wrap: wrap; gap: var(--sp-md); }
.form-radio {
  display: flex; align-items: center; gap: var(--sp-sm);
  cursor: pointer; font-size: var(--fs-sm); color: var(--text-body);
}
.form-radio input[type="radio"] { accent-color: var(--purple); width: 18px; height: 18px; }

.form-submit { margin-top: var(--sp-md); }

.form-note {
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  margin-top: var(--sp-md);
}
.form-note a { color: var(--purple); }

.form-success, .form-error {
  padding: var(--sp-lg);
  border-radius: var(--radius);
  margin-bottom: var(--sp-xl);
  display: none;
}
.form-success.show, .form-error.show {
  display: flex; align-items: flex-start; gap: var(--sp-md);
}
.form-success { background: #E8F5E9; color: #2E7D32; border: 1px solid #C8E6C9; }
.form-error { background: #FFEBEE; color: #C62828; border: 1px solid #FFCDD2; }
.form-success svg, .form-error svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }


/* ===================== ABOUT PAGE ===================== */
.about-hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3xl);
  align-items: start;
}
@media (min-width: 1024px) {
  .about-hero-layout { grid-template-columns: 320px 1fr; gap: var(--sp-4xl); }
}

.about-photo {
  border-radius: var(--radius-xl);
  width: 100%; max-width: 300px;
  object-fit: cover;
  object-position: center 15%;
  box-shadow: var(--shadow-lg);
}

.about-timeline {
  display: flex; flex-direction: column; gap: var(--sp-2xl);
  position: relative; padding-left: var(--sp-2xl);
}
.about-timeline::before {
  content: '';
  position: absolute; left: 0; top: 8px; bottom: 8px;
  width: 2px; background: var(--gray-200);
}

.timeline-item { position: relative; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--sp-2xl) - 4px);
  top: 8px; width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--purple);
  border: 2px solid var(--white);
}

.timeline-item__period {
  font-size: var(--fs-xs); font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-xs);
}

.timeline-item__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--navy);
  margin-bottom: var(--sp-xs);
}
.timeline-item__org { font-size: var(--fs-sm); color: var(--text-secondary); margin-bottom: var(--sp-sm); }
.timeline-item__text { font-size: var(--fs-sm); color: var(--text-body); line-height: var(--lh-relaxed); }


/* ===================== CREDENTIALS ===================== */
.credentials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}
@media (min-width: 768px) { .credentials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .credentials-grid { grid-template-columns: repeat(4, 1fr); } }

.credential-card {
  text-align: center;
  padding: var(--sp-2xl) var(--sp-xl);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.credential-card__icon { width: 48px; height: 48px; margin: 0 auto var(--sp-md); color: var(--purple); }
.credential-card__icon svg { width: 48px; height: 48px; }
.credential-card__title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--navy);
  margin-bottom: var(--sp-xs);
}
.credential-card__text { font-size: var(--fs-sm); color: var(--text-secondary); }


/* ===================== FAQ ===================== */
.faq-list { max-width: var(--max-w-narrow); margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--gray-200); }

.faq-item__question {
  width: 100%; text-align: left;
  padding: var(--sp-xl) 0;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: 500;
  color: var(--navy);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--sp-md);
  transition: color var(--t-fast);
}
.faq-item__question:hover { color: var(--purple); }

.faq-item__icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  transition: transform var(--t);
  color: var(--gray-400);
}
.faq-item.open .faq-item__icon { transform: rotate(45deg); color: var(--purple); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow), padding var(--t-slow);
}
.faq-item.open .faq-item__answer { max-height: 400px; padding-bottom: var(--sp-xl); }

.faq-item__answer-text {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}


/* ===================== PRIVACY / LEGAL ===================== */
.legal-content { max-width: var(--max-w-narrow); margin: 0 auto; }
.legal-content h2 { font-size: var(--fs-xl); margin-top: var(--sp-3xl); margin-bottom: var(--sp-lg); }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--text-body);
  margin-bottom: var(--sp-md);
}
.legal-content ul { padding-left: var(--sp-xl); margin-bottom: var(--sp-md); }
.legal-content li {
  list-style: disc;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--text-body);
  margin-bottom: var(--sp-sm);
}
.legal-content a { color: var(--purple); }


/* ===================== SCROLL REVEAL ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}


/* ===================== UTILITIES ===================== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

.mt-lg { margin-top: var(--sp-lg); }
.mt-xl { margin-top: var(--sp-xl); }
.mt-2xl { margin-top: var(--sp-2xl); }
.mt-3xl { margin-top: var(--sp-3xl); }
.mb-0 { margin-bottom: 0; }


/* ===================== SERVICE / INDUSTRY DETAIL PAGES ===================== */

/* Breadcrumb */
.breadcrumb {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
  padding: var(--sp-sm) 0;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: var(--sp-xs);
  list-style: none;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  flex-wrap: wrap;
}
.breadcrumb__item a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb__item a:hover { color: var(--link-hover); }
.breadcrumb__item + .breadcrumb__item::before {
  content: '\203A';
  margin-right: var(--sp-xs);
  color: var(--gray-400);
}
.breadcrumb__item--active {
  color: var(--text-body);
  font-weight: 500;
}

/* Content wrap */
.content-wrap {
  max-width: 780px;
  margin: 0 auto;
}
.content-wide { max-width: 1000px; margin: 0 auto; }
.content-wrap h2, .content-wide h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  color: var(--text-heading);
  margin-bottom: var(--sp-lg);
}
.content-wrap p, .content-wide p {
  color: var(--text-body);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-md);
  font-size: var(--fs-md);
}

/* Styled check list */
.check-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: var(--sp-md);
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-md);
  font-size: var(--fs-md);
  color: var(--text-body);
  line-height: var(--lh-relaxed);
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  background: var(--purple);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.check-list--two-col {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) { .check-list--two-col { grid-template-columns: 1fr; } }

/* Feature grid (for "What's Included") */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
}
@media (min-width: 768px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md, 12px);
  padding: var(--sp-2xl);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 20, 100, 0.08);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-lg);
}
.feature-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}
.feature-card__icon--purple { background: var(--purple); }
.feature-card__icon--blue { background: var(--blue); }
.feature-card__icon--crimson { background: var(--crimson); }
.feature-card__icon--navy { background: var(--navy); }
.feature-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  color: var(--text-heading);
  margin-bottom: var(--sp-sm);
}
.feature-card__text {
  font-size: var(--fs-base);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* Audience / Who This Is For grid */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}
@media (min-width: 768px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .audience-grid { grid-template-columns: repeat(3, 1fr); } }

.audience-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-lg);
  padding: var(--sp-xl);
  background: var(--white);
  border-radius: var(--radius-md, 12px);
  border: 1px solid var(--gray-200);
}
.audience-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.audience-card__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--purple);
}
.audience-card__title {
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: var(--sp-xs);
  font-size: var(--fs-base);
}
.audience-card__text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* Related services */
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-xl);
}
@media (min-width: 768px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }

.related-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md, 12px);
  padding: var(--sp-2xl);
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(27, 20, 100, 0.08);
  border-color: var(--purple-mid);
}
.related-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-lg);
}
.related-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--purple);
}
.related-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-lg);
  color: var(--text-heading);
  margin-bottom: var(--sp-sm);
}
.related-card__text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}
.related-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-xs);
  margin-top: var(--sp-lg);
  color: var(--purple);
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: gap 0.2s;
}
.related-card:hover .related-card__arrow { gap: var(--sp-sm); }

/* Stat / highlight banner */
.stat-banner {
  background: var(--navy);
  padding: var(--sp-4xl) 0;
}
.stat-banner__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-2xl);
  text-align: center;
}
@media (min-width: 768px) {
  .stat-banner__inner { grid-template-columns: repeat(3, 1fr); }
}
.stat-banner__item {}
.stat-banner__value {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  color: var(--white);
  margin-bottom: var(--sp-xs);
}
.stat-banner__label {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.65);
  line-height: var(--lh-snug);
}

/* Service intro - split with image */
.service-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
}
@media (min-width: 1024px) {
  .service-intro { grid-template-columns: 1fr 1fr; }
}
.service-intro__image {
  position: relative;
  min-height: 350px;
  overflow: hidden;
}
.service-intro__image img,
.service-intro__image video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-intro__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-4xl) var(--sp-2xl);
}
@media (min-width: 1024px) {
  .service-intro__content { padding: var(--sp-5xl) var(--sp-4xl); }
}
.service-intro__content h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  color: var(--text-heading);
  margin-bottom: var(--sp-lg);
}
.service-intro__content p {
  color: var(--text-body);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-md);
  font-size: var(--fs-md);
}
.service-intro--reverse .service-intro__image {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  padding: var(--sp-2xl);
}
.service-intro--reverse .service-intro__image img,
.service-intro--reverse .service-intro__image video {
  position: static;
  width: 100%;
  height: auto;
  max-width: 420px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  object-position: center 15%;
}
@media (max-width: 1023px) {
  .service-intro--reverse .service-intro__image { order: 0; padding: var(--sp-xl); }
  .service-intro--reverse .service-intro__image img { max-width: 320px; }
}

/* Industry challenge / solution cards */
.challenge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-lg);
}
@media (min-width: 768px) { .challenge-grid { grid-template-columns: repeat(2, 1fr); } }

.challenge-card {
  padding: var(--sp-xl);
  border-radius: var(--radius-md, 12px);
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
}
.challenge-card--pain {
  background: var(--crimson-light);
  border-left: 4px solid var(--crimson);
}
.challenge-card--solution {
  background: var(--purple-light);
  border-left: 4px solid var(--purple);
}
.challenge-card__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}
.challenge-card--pain .challenge-card__icon { color: var(--crimson); }
.challenge-card--solution .challenge-card__icon { color: var(--purple); }
.challenge-card__title {
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: var(--sp-xs);
}
.challenge-card__text {
  font-size: var(--fs-sm);
  color: var(--text-body);
  line-height: var(--lh-relaxed);
}

/* About photo on detail pages */
.about-photo {
  width: 100%;
  max-width: 300px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  object-position: center 15%;
  box-shadow: var(--shadow-lg);
}


/* ===================== PAGE HERO CTA ===================== */
.page-hero__cta {
  margin-top: var(--sp-xl);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-md);
}

/* ===================== ABOUT QUOTE BLOCK ===================== */
.founder-quote {
  background: var(--white);
  border-left: 4px solid var(--purple);
  border-radius: var(--radius-lg);
  padding: var(--sp-3xl);
  box-shadow: var(--shadow-card);
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.founder-quote__text {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  color: var(--navy);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-xl);
}
.founder-quote__attribution {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
}
.founder-quote__photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.founder-quote__name {
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--navy);
}
.founder-quote__role {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

/* ===================== HOMEPAGE ANIMATIONS ===================== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(123,45,142,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(123,45,142,0); }
}
@keyframes countUp {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Animated hero visual cards */
.hero__visual-card { animation: fadeSlideUp 0.8s ease both 0.3s; }
.hero__visual-stat:nth-child(1) { animation: fadeSlideRight 0.6s ease both 0.5s; }
.hero__visual-stat:nth-child(2) { animation: fadeSlideRight 0.6s ease both 0.7s; }
.hero__visual-stat:nth-child(3) { animation: fadeSlideRight 0.6s ease both 0.9s; }
.hero__visual-badge { animation: pulse 2.5s ease infinite 1.2s; }

/* Floating credential items */
.credential-item.visible { animation: fadeSlideUp 0.5s ease both; }
.credential-item:nth-child(2).visible { animation-delay: 0.1s; }
.credential-item:nth-child(3).visible { animation-delay: 0.2s; }
.credential-item:nth-child(4).visible { animation-delay: 0.3s; }
.credential-item:nth-child(5).visible { animation-delay: 0.4s; }

/* Process steps stagger */
.process-step.visible { animation: fadeSlideUp 0.6s ease both; }
.process-step:nth-child(2).visible { animation-delay: 0.15s; }
.process-step:nth-child(3).visible { animation-delay: 0.3s; }
.process-step:nth-child(4).visible { animation-delay: 0.45s; }

/* Why cards stagger */
.why-card.visible { animation: fadeSlideUp 0.5s ease both; }
.why-card:nth-child(2).visible { animation-delay: 0.1s; }
.why-card:nth-child(3).visible { animation-delay: 0.2s; }
.why-card:nth-child(4).visible { animation-delay: 0.25s; }
.why-card:nth-child(5).visible { animation-delay: 0.3s; }
.why-card:nth-child(6).visible { animation-delay: 0.35s; }

/* Service card hover float */
.service-group.visible { animation: fadeSlideUp 0.6s ease both; }
.service-group:nth-child(2).visible { animation-delay: 0.12s; }
.service-group:nth-child(3).visible { animation-delay: 0.24s; }
.service-group:nth-child(4).visible { animation-delay: 0.36s; }

/* Industry card entrance */
.industry-card.visible { animation: fadeSlideUp 0.5s ease both; }
.industry-card:nth-child(2).visible { animation-delay: 0.08s; }
.industry-card:nth-child(3).visible { animation-delay: 0.16s; }
.industry-card:nth-child(4).visible { animation-delay: 0.20s; }
.industry-card:nth-child(5).visible { animation-delay: 0.24s; }
.industry-card:nth-child(6).visible { animation-delay: 0.28s; }

/* CTA shimmer accent line */
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  z-index: 2;
  background: linear-gradient(90deg, transparent, var(--purple), var(--crimson), transparent);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}

/* Animated gradient on section--dark */
.section--dark {
  background: linear-gradient(-45deg, var(--navy), #2a1a5e, #1b2864, var(--navy));
  background-size: 300% 300%;
  animation: gradientShift 12s ease infinite;
}

/* Hero content entrance */
.hero__content { animation: fadeSlideUp 0.8s ease both 0.1s; }
.hero__actions { animation: fadeSlideUp 0.6s ease both 0.6s; }
.hero__trust { animation: fadeSlideUp 0.5s ease both 0.8s; }

/* Stat banner counter pop */
.stat-banner__value.visible { animation: countUp 0.6s ease both; }
.stat-banner__item:nth-child(2) .stat-banner__value.visible { animation-delay: 0.15s; }
.stat-banner__item:nth-child(3) .stat-banner__value.visible { animation-delay: 0.3s; }

/* About preview float */
.about-preview__accent { animation: float 4s ease-in-out infinite; }

/* Inline link styling for content pages */
.content-link {
  color: var(--purple);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(123,45,142,0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--t-fast);
}
.content-link:hover {
  text-decoration-color: var(--purple);
  color: var(--purple-dark);
}

@media (prefers-reduced-motion: reduce) {
  .hero__visual-card, .hero__visual-stat, .hero__visual-badge,
  .credential-item.visible, .process-step.visible, .why-card.visible,
  .service-group.visible, .industry-card.visible, .stat-banner__value.visible,
  .hero__content, .hero__actions, .hero__trust {
    animation: none !important;
  }
  .about-preview__accent { animation: none !important; }
  .section--dark { animation: none !important; }
  .cta-section::before { animation: none !important; }
}


/* ===================== RESPONSIVE ===================== */
@media (max-width: 767px) {
  :root { --header-h: 80px; }
  .header__logo img { height: 150px; margin-top: -38px; margin-bottom: -38px; }
  .header.scrolled .header__logo img { height: 48px; margin-top: -10px; margin-bottom: -10px; }
  h1 { font-size: var(--fs-2xl); }
  h2 { font-size: var(--fs-2xl); }
  h3 { font-size: var(--fs-xl); }
  .section { padding: var(--sp-3xl) 0; }
  .container { padding: 0 var(--sp-md); }
  .hero { min-height: 70vh; }
  .hero__title { font-size: var(--fs-2xl); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .page-hero { padding-top: calc(var(--header-h) + var(--sp-xl)); padding-bottom: var(--sp-xl); min-height: auto; }
  .page-hero--image { min-height: 320px; }
  .page-hero h1 { font-size: var(--fs-2xl); max-width: 100%; }
  .page-hero__description { font-size: var(--fs-base); }
  .page-hero__cta { flex-direction: column; }
  .page-hero__cta .btn { width: 100%; text-align: center; }
  .cta-section { padding: var(--sp-3xl) 0; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .cta-section__actions .btn { width: 100%; max-width: 360px; text-align: center; }
  .cta-section__text { font-size: var(--fs-base); }
  .service-intro__image { min-height: 250px; }
  .service-intro__content { padding: var(--sp-2xl) var(--sp-md); }
  .service-intro__content h2 { font-size: var(--fs-xl); }
  .service-intro__content p { font-size: var(--fs-base); }
  .service-intro--reverse .service-intro__image { padding: var(--sp-lg); }
  .service-intro--reverse .service-intro__image img { max-width: 260px; }
  .split-section__content { padding: var(--sp-2xl) var(--sp-md); }
  .split-section__image { min-height: 280px; }
  .image-banner__content { padding: var(--sp-3xl) 0; }
  .about-preview__image { max-width: 260px; margin: 0 auto; }
  .about-photo { max-width: 240px; margin: 0 auto; }
  .about-hero-layout { gap: var(--sp-2xl); }
  .founder-quote { padding: var(--sp-xl); }
  .founder-quote__text { font-size: var(--fs-lg); }
  .footer__grid { gap: var(--sp-xl); }
  .footer__brand-text { max-width: 100%; }
  .btn--lg { font-size: var(--fs-sm); padding: 16px 28px; }
  .pain-section__grid { gap: var(--sp-2xl); }
  .industry-card { padding: var(--sp-lg); }
  .service-group { padding: var(--sp-xl); }
  .why-card { padding: var(--sp-lg); }
  .process-step { padding: var(--sp-lg); }
  .faq-item__question { font-size: var(--fs-base); padding: var(--sp-lg) 0; }
  .credential-strip { padding: var(--sp-2xl) 0; }
  .credential-item__value { font-size: var(--fs-2xl); }
  .credential-item__label { font-size: var(--fs-sm); }
  .why-card { padding: var(--sp-xl); }
  .why-card__number { font-size: var(--fs-3xl); }
  .why-card__title { font-size: var(--fs-lg); }
  .stat-banner { padding: var(--sp-2xl) 0; }
  .stat-banner__value { font-size: var(--fs-2xl); }
  .contact-form { padding: var(--sp-xl); }
  .form-grid { gap: var(--sp-md); }
}

@media (min-width: 768px) and (max-width: 1023px) {
  h1 { font-size: var(--fs-3xl); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-2xl); }
  .service-intro__content { padding: var(--sp-3xl) var(--sp-xl); }
}
