/* =========================================================================
   ELEVARE v2 — MAIN STYLESHEET

   Architecture:
   • Color tokens (--navy, --accent, --steel, etc.)
   • Typography (responsive clamp scales)
   • Base reset & normalization
   • Layout helpers & grid utilities
   • Component library (buttons, cards, sections)
   • Page layouts (hero, footer, forms, etc.)
   • Mobile-first responsive design
   • Smooth transitions & interactions

   Font: Inter (sans-serif), Playfair (display headings in logos)
   Palette: Navy (#0b1f3b) primary, steel (#71849e) secondary, accent blue (#316fc6)
   ========================================================================= */

/* =========================================================================
   1. CSS VARIABLES & DESIGN TOKENS
   ========================================================================= */

:root {
  /* Primary Colors */
  --navy: #0b1f3b;
  --navy-mid: #142d51;
  --navy-light: #26436d;

  /* Secondary Colors */
  --steel: #71849e;
  --steel-light: #9cabbf;

  /* Neutral Palette */
  --white: #FFFFFF;
  --off-white: #F4F6F8;
  --gray-100: #EDF0F3;
  --gray-400: #8fa0b7;
  --gray-600: #55647a;

  /* Interactive */
  --accent: #316fc6;

  /* Borders & Subtle Elements */
  --border: rgba(113, 132, 158, 0.20);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Layout */
  --max-w: 1120px;
  --section-pad: 120px 32px;
  --radius: 6px;

  /* Motion */
  --transition: 0.22s ease;
}

/* =========================================================================
   2. RESET & BASE STYLES
   ========================================================================= */

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

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

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  overflow-x: hidden;
}

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

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

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

ul {
  list-style: none;
}

/* =========================================================================
   3. TYPOGRAPHY
   ========================================================================= */

h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--navy);
}

h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

h4 {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
}

p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--steel-light);
}

em {
  color: var(--steel-light);
  font-style: italic;
  font-weight: 500;
}

strong {
  font-weight: 700;
  color: var(--navy);
}

/* =========================================================================
   4. LAYOUT HELPERS & CONTAINER
   ========================================================================= */

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

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

section h2 {
  margin-bottom: 2.5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 2rem 0;
}

/* =========================================================================
   5. BUTTONS
   ========================================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

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

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

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

.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
}

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

.btn-accent:hover {
  background: #2558b0;
  border-color: #2558b0;
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline--light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline--light:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-arrow::after {
  content: '→';
  margin-left: 8px;
  font-weight: 400;
  transition: margin-left 0.18s ease;
}

.btn-arrow:hover::after {
  margin-left: 12px;
}

/* =========================================================================
   6. NAVIGATION
   ========================================================================= */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 31, 59, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(113, 132, 158, 0.1);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  z-index: 10;
}

.nav__logo-img {
  height: 44px;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}

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

.nav__cta {
  margin-left: 2rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: all var(--transition);
}

.nav--open .nav__hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.nav--open .nav__hamburger span:nth-child(2) {
  opacity: 0;
}

.nav--open .nav__hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Nav Overlay */
.nav__mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 31, 59, 0.98);
  backdrop-filter: blur(8px);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99;
  padding: 120px 24px 40px;
  gap: 2rem;
}

.nav--open .nav__mobile-menu {
  display: flex;
}

.nav__mobile-menu a {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  text-align: center;
}

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

/* =========================================================================
   7. HERO SECTION
   ========================================================================= */

.hero {
  position: relative;
  background: var(--navy);
  background-image:
    radial-gradient(circle at 15% 50%, rgba(49, 111, 198, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(49, 111, 198, 0.04) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(113, 132, 158, 0.03) 20px, rgba(113, 132, 158, 0.03) 21px);
  color: var(--white);
  padding: 120px 24px 100px;
  overflow: hidden;
}

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.hero__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(49, 111, 198, 0.12);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero h1 em {
  color: var(--steel-light);
  display: block;
  font-size: 0.85em;
  font-weight: 400;
  font-style: italic;
  margin-top: 0.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 4rem;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(113, 132, 158, 0.2);
  margin-top: 3rem;
}

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

.hero__proof-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
}

.hero__proof-label {
  font-size: 0.85rem;
  color: var(--steel-light);
  font-weight: 500;
}

/* =========================================================================
   8. SECTION VARIANTS
   ========================================================================= */

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p {
  color: var(--steel-light);
}

.section--navy-mid {
  background: var(--navy-mid);
  color: var(--white);
}

.section--navy-mid h2,
.section--navy-mid h3,
.section--navy-mid h4 {
  color: var(--white);
}

.section--navy-mid p {
  color: var(--steel-light);
}

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

.section--gray {
  background: var(--gray-100);
}

/* =========================================================================
   9. GRID LAYOUTS
   ========================================================================= */

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

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

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

/* =========================================================================
   10. CARDS
   ========================================================================= */

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: 0 8px 24px rgba(11, 31, 59, 0.1);
  transform: translateY(-4px);
}

.card--dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy-light);
}

.card--dark h3,
.card--dark h4 {
  color: var(--white);
}

.card--dark p {
  color: var(--steel-light);
}

.card__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.card--dark .card__number {
  background: var(--accent);
}

.card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: inline-block;
}

.card__tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(49, 111, 198, 0.1);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.card--dark .card__tag {
  background: rgba(49, 111, 198, 0.25);
  color: #7ba3f5;
}

/* =========================================================================
   11. SERVICE CARDS
   ========================================================================= */

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--transition);
}

.service-card:hover {
  box-shadow: 0 12px 40px rgba(11, 31, 59, 0.1);
  transform: translateY(-4px);
}

.service-card:hover::before {
  background: var(--accent);
}

.service-card--featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.service-card--featured h3 {
  color: var(--white);
}

.service-card--featured p {
  color: var(--steel-light);
}

.service-card--featured::before {
  background: var(--accent);
}

/* =========================================================================
   12. SYMPTOM GRID
   ========================================================================= */

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

.symptom-item {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 1.5rem;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.symptom-item strong {
  display: block;
  color: var(--navy);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

/* =========================================================================
   13. PROOF GRID
   ========================================================================= */

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.proof-item strong {
  display: block;
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.proof-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* =========================================================================
   14. CASE STUDY CARDS
   ========================================================================= */

.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
}

.case-card:hover {
  box-shadow: 0 12px 40px rgba(11, 31, 59, 0.1);
  transform: translateY(-4px);
}

.case-card__header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 2rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.case-card__header h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.case-card__header p {
  color: var(--steel-light);
  font-size: 0.9rem;
}

.case-card__body {
  padding: 2rem;
}

.case-card__stat {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.case-card__stat:last-child {
  border-bottom: none;
}

.case-card__stat-label {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
}

.case-card__stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

/* =========================================================================
   15. BIO & ABOUT BLOCKS
   ========================================================================= */

.bio-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.bio-image {
  position: sticky;
  top: 100px;
}

.bio-image__photo {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(11, 31, 59, 0.12);
}

.bio-content h2 {
  margin-bottom: 1.5rem;
}

.bio-content p {
  margin-bottom: 1.2rem;
}

/* =========================================================================
   16. ARTICLE LIST
   ========================================================================= */

.article-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article-item {
  padding: 1.5rem;
  border-left: 3px solid var(--accent);
  background: var(--off-white);
  border-radius: 4px;
  transition: all var(--transition);
}

.article-item:hover {
  padding-left: 2rem;
  background: var(--gray-100);
}

.article-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.article-item p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.article-item a {
  font-size: 0.85rem;
  font-weight: 600;
}

/* =========================================================================
   17. CTA BANNER
   ========================================================================= */

.cta-banner {
  position: relative;
  background: var(--navy);
  background-image: radial-gradient(circle at 20% 50%, rgba(49, 111, 198, 0.08) 0%, transparent 50%);
  color: var(--white);
  padding: 4rem 2rem;
  border-radius: 8px;
  text-align: center;
  overflow: hidden;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--steel-light);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================================================
   18. FOOTER
   ========================================================================= */

.footer {
  background: #080f18;
  color: var(--white);
  padding: 60px 24px 40px;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(113, 132, 158, 0.2);
}

.footer__brand {
  grid-column: 1;
}

.footer__logo-img {
  height: 44px;
  width: auto;
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.footer__brand p {
  font-size: 0.85rem;
  color: var(--steel-light);
  line-height: 1.6;
}

.footer__col-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer__col-links a {
  font-size: 0.85rem;
  color: var(--steel-light);
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* =========================================================================
   19. PAGE HEADERS
   ========================================================================= */

.page-header {
  position: relative;
  background: var(--navy);
  background-image: radial-gradient(circle at 85% 20%, rgba(49, 111, 198, 0.08) 0%, transparent 50%);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  color: var(--steel-light);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
}

/* =========================================================================
   20. CALLOUT
   ========================================================================= */

.callout {
  padding: 2rem;
  border-left: 4px solid var(--accent);
  background: rgba(49, 111, 198, 0.04);
  border-radius: 4px;
}

.callout h4 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.callout p {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 0;
}

/* =========================================================================
   21. CHECKLIST
   ========================================================================= */

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.checklist li::before {
  content: '→';
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist--check li::before {
  content: '✓';
  font-weight: 700;
  color: #10b981;
}

/* =========================================================================
   22. TAG CHIPS
   ========================================================================= */

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  background: var(--gray-100);
  color: var(--navy);
  border-radius: 20px;
  transition: all var(--transition);
}

.tag:hover {
  background: var(--accent);
  color: var(--white);
}

/* =========================================================================
   23. PROCESS STEPS
   ========================================================================= */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.step h4 {
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* =========================================================================
   24. TIMELINE
   ========================================================================= */

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
}

.timeline-step__dot {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border: 3px solid var(--white);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 0 4px rgba(49, 111, 198, 0.1);
}

.timeline-step h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.timeline-step p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* =========================================================================
   25. INLINE CTA
   ========================================================================= */

.inline-cta {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 1rem 0;
}

/* =========================================================================
   26. PULL QUOTE
   ========================================================================= */

.pull-quote {
  position: relative;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid var(--accent);
  background: var(--off-white);
  border-radius: 4px;
}

.pull-quote p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 1rem;
}

.pull-quote__author {
  font-size: 0.85rem;
  color: var(--gray-600);
  font-weight: 500;
}

.pull-quote__author::before {
  content: '— ';
}

/* =========================================================================
   27. CREDIBILITY BLOCK
   ========================================================================= */

.credibility-block {
  padding: 3rem 2rem;
  background: var(--off-white);
  border-radius: 8px;
}

.credibility-block h3 {
  text-align: center;
  margin-bottom: 2rem;
}

.credibility-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.credibility-stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.credibility-stat p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* =========================================================================
   28. FAQ ACCORDION
   ========================================================================= */

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

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 16px;
}

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--steel);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer__inner {
  padding: 0 0 24px;
}

.faq-answer__inner p {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.faq-answer__inner p:last-child {
  margin-bottom: 0;
}

/* =========================================================================
   29. OFFER LADDER
   ========================================================================= */

.offer-ladder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.offer-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 40px 36px;
  background: var(--white);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background var(--transition);
}

.offer-card:hover::before {
  background: var(--accent);
}

.offer-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.09);
  transform: translateY(-3px);
}

.offer-card--primary {
  background: var(--navy);
  border-color: transparent;
  color: var(--white);
}

.offer-card--primary::before {
  background: var(--accent);
}

.offer-card--primary h3 {
  color: var(--white);
}

.offer-card--primary p {
  color: var(--steel-light);
}

.offer-card__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 12px;
}

.offer-card--primary .offer-card__label {
  color: var(--steel-light);
}

.offer-card__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(59, 130, 246, 0.18);
  color: #6ba3f5;
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 16px;
}

.offer-card--primary .offer-card__badge {
  background: rgba(49, 111, 198, 0.3);
  color: #a3c7ff;
}

/* =========================================================================
   30. INTAKE FORM
   ========================================================================= */

.intake-page {
  min-height: 100vh;
  background: var(--off-white);
  padding: 80px 24px 120px;
}

.intake-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 14px;
  padding: 56px 52px;
  box-shadow: 0 4px 40px rgba(18, 24, 48, 0.1);
}

.intake-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.intake-card h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}

.intake-sub {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}

.form-label {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #d4d8e8;
  border-radius: 7px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--navy);
  background: #fafbfd;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23717a9e' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

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

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(79, 114, 227, 0.12);
  background: var(--white);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #a0a8c0;
}

.btn-submit {
  width: 100%;
  padding: 17px 24px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  margin-top: 8px;
}

.btn-submit:hover {
  background: var(--navy-mid);
  transform: translateY(-1px);
}

.trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 22px;
  font-size: 0.8rem;
  color: var(--gray-400);
  text-align: center;
}

.trust-note::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 0 20px;
}

.form-success .success-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.form-success h2 {
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-success p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */

/* Tablet: 960px and down */
@media (max-width: 960px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .bio-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .bio-image {
    position: static;
  }

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

  .offer-ladder {
    grid-template-columns: 1fr;
  }

  .offer-card--primary {
    order: -1;
  }

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

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

/* Mobile: 720px and down */
@media (max-width: 720px) {
  :root {
    --section-pad: 60px 24px;
  }

  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 80px 24px 60px;
  }

  .hero__proof {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .page-header {
    padding: 60px 24px;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

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

  .steps::before {
    content: '';
    display: none;
  }

  .step__number {
    margin-left: 0;
  }

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

  .timeline::before {
    content: '';
    display: none;
  }

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

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

  .service-card,
  .case-card,
  .card {
    padding: 1.5rem;
  }

  .intake-card {
    padding: 40px 28px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }
}

/* Mobile: 640px and down - Form optimizations */
@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    font-size: 16px;
  }

  .intake-card {
    border-radius: 10px;
  }
}

/* Small mobile: 480px and down */
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1rem;
  }

  .btn {
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding: 60px 20px 40px;
  }

  .section {
    padding: 50px 20px;
  }
}

/* =========================================================================
   ADDITIONAL COMPONENT STYLES - MISSING CLASS DEFINITIONS
   ========================================================================= */

/* =========================================================================
   SECTION COMPONENTS - Section wrappers and label styles
   ========================================================================= */

.section__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section__label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section__lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--steel);
  margin-bottom: 2.5rem;
  max-width: 700px;
}

.section--white {
  background: var(--white);
  color: var(--navy);
}

.section--light {
  background: var(--off-white);
  color: var(--navy);
}

.section--gray {
  background: var(--gray-100);
  color: var(--navy);
}

.section--dark {
  background: var(--navy);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark p {
  color: var(--white);
}

.section--dark a {
  color: var(--accent);
}

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

.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero__inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  text-align: left;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero__inner--split .hero__heading {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.hero__inner--split .hero__lead {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.hero__inner--split .hero__ctas {
  justify-content: flex-start;
}

.hero__inner--split .hero__proof-stats {
  grid-template-columns: repeat(3, auto);
  gap: 2rem;
  justify-content: flex-start;
}

.hero__inner--split .proof-stat {
  text-align: left;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__tag-pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__heading {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.hero__lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero__ctas {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero__proof-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* =========================================================================
   PROOF/STAT COMPONENTS
   ========================================================================= */

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

.proof-stat__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.proof-stat__label {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.proof-item {
  text-align: center;
  padding: 1.5rem 0;
}

.proof-item__value {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.proof-item__label {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--gray-600);
}

.proof-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

/* =========================================================================
   ICP CARD COMPONENTS
   ========================================================================= */

.icp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
}

.icp-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(49, 111, 198, 0.1);
}

.icp-card__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.icp-card__spec {
  font-size: 0.85rem;
  color: var(--steel);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.icp-card__problems {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.problem-item {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
}

.problem-item::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* =========================================================================
   OFFER CARD COMPONENTS
   ========================================================================= */

.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.offer-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(49, 111, 198, 0.08);
}

.offer-card--primary {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
  color: var(--white);
  transform: scaleY(1.02);
}

.offer-card--primary h3,
.offer-card--primary p {
  color: var(--white);
}

.offer-card__badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  width: fit-content;
}

.offer-card__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 0.75rem;
}

.offer-card--primary .offer-card__label {
  color: rgba(255, 255, 255, 0.7);
}

.offer-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.offer-card--primary .offer-card__title {
  color: var(--white);
}

.offer-card__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.offer-card--primary .offer-card__desc {
  color: rgba(255, 255, 255, 0.9);
}

.offer-ladder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

/* =========================================================================
   CASE STUDY COMPONENTS
   ========================================================================= */

.case-study {
  background: var(--white);
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.case-study:last-child {
  border-bottom: none;
}

.case-study--alternate {
  background: var(--off-white);
}

.case-study__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.case-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.case-header__info {
  flex: 1;
}

.case-header__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1rem;
}

.case-header__title {
  font-size: clamp(1.75rem, 4.5vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}

.case-header__subhead {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--steel);
  font-weight: 500;
}

.case-header__metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.case-metric {
  text-align: center;
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius);
}

.case-metric__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.case-metric__label {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--gray-600);
}

.case-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.case-column {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.case-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.case-section__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.case-section p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.case-outcomes {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1rem;
}

.case-outcomes__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

.case-outcomes .checklist {
  margin: 0;
}

.case-quote {
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
  font-style: italic;
  line-height: 1.8;
  font-size: 1rem;
}

.case-quote p {
  color: var(--white);
  margin-bottom: 1rem;
}

.case-quote p:last-child {
  margin-bottom: 0;
}

.case-quote__attribution {
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
  margin-top: 1rem;
}

/* =========================================================================
   BIO BLOCK COMPONENTS
   ========================================================================= */

.bio-block {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.bio-block__left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bio-image__wrapper {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.bio-image__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio-quick-facts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--off-white);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.quick-fact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.quick-fact__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
}

.quick-fact__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
}

.bio-quick-facts a {
  color: var(--accent);
  font-weight: 600;
}

.bio-block__right {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.bio-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bio-content h2 {
  font-size: clamp(1.75rem, 4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
}

.bio-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 0.5rem;
}

.bio-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.bio-role {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.bio-role h3 {
  margin: 0;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
}

.bio-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =========================================================================
   PATTERN CARD COMPONENTS
   ========================================================================= */

.pattern-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.section--dark .pattern-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

.pattern-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(49, 111, 198, 0.1);
}

.section--dark .pattern-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(49, 111, 198, 0.2);
}

.pattern-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section--dark .pattern-card__title {
  color: var(--white);
}

.pattern-card__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-600);
}

.section--dark .pattern-card__desc {
  color: rgba(255, 255, 255, 0.8);
}

/* =========================================================================
   SERVICE CARD & CALLOUT COMPONENTS
   ========================================================================= */

.service-card__heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.service-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.service-card--highlight {
  background: var(--off-white);
  border-color: var(--accent);
}

.service-callout {
  background: var(--off-white);
  border-left: 3px solid var(--accent);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

.service-callout__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0;
}

.service-trust-note {
  font-size: 0.8rem;
  color: var(--steel);
  font-weight: 500;
  margin-top: 1rem;
  text-align: center;
}

/* =========================================================================
   PROCESS STEPS COMPONENTS
   ========================================================================= */

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

.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.process-step__number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.process-step__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.process-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

.process-step__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-600);
}

/* =========================================================================
   SERVICE SUBNAV COMPONENTS
   ========================================================================= */

.service-subnav {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 50;
}

.service-subnav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 2rem;
}

.service-subnav__link {
  padding: 1rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--steel);
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.service-subnav__link:hover,
.service-subnav__link.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.service-subnav__link--active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* =========================================================================
   RESULTS OVERVIEW COMPONENTS
   ========================================================================= */

.results-overview {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 3rem 24px;
}

.results-overview__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.results-overview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
}

.results-overview__stat {
  text-align: center;
  padding: 1rem 0;
}

.results-overview__value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.results-overview__label {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

/* =========================================================================
   BUTTON VARIANTS
   ========================================================================= */

.btn-full {
  width: 100%;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-outline--dark {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.btn-outline--dark:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-outline--light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}

.btn-outline--light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-arrow::after {
  content: "→";
  font-weight: 700;
}

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

.btn-accent:hover {
  background: #2860ab;
}

/* =========================================================================
   WORK WITH CTA SECTION
   ========================================================================= */

.work-with-cta {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.work-with-cta h2 {
  font-size: clamp(1.75rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
}

.work-with-cta p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.work-with-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.work-with-trust {
  font-size: 0.85rem;
  color: var(--steel);
  font-weight: 500;
  margin-top: 1rem;
}

/* =========================================================================
   FORM COMPONENTS
   ========================================================================= */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.form-trust-note {
  font-size: 0.8rem;
  color: var(--steel);
  font-weight: 500;
  text-align: center;
}

/* =========================================================================
   INTAKE PAGE COMPONENTS
   ========================================================================= */

.intake-card {
  background: var(--white);
  color: var(--navy);
  border-radius: var(--radius);
  padding: 3rem;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(11, 31, 59, 0.2);
}

.intake-card__header {
  margin-bottom: 2rem;
  text-align: center;
}

.intake-card__heading {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.intake-card__sub {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0;
}

/* =========================================================================
   CREDIBILITY COMPONENTS
   ========================================================================= */

.credibility-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.credibility-block__heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}

.credibility-block__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
}

.credibility-block__summary {
  background: var(--off-white);
  border-left: 3px solid var(--accent);
  padding: 1.5rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 1rem 0;
}

.credibility-stat {
  text-align: center;
  padding: 1.5rem;
}

.credibility-stat__value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.credibility-stat__label {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--gray-600);
}

.credibility-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

/* =========================================================================
   TIMELINE & STEP COMPONENTS
   ========================================================================= */

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.timeline-step__marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0 auto 1rem;
}

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

.timeline-step__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.timeline-step__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-600);
}

.timeline-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

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

.divider {
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 2rem auto;
  display: block;
}

.inline-cta {
  background: var(--off-white);
  border-left: 3px solid var(--accent);
  padding: 2rem;
  border-radius: var(--radius);
  margin: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.inline-cta p {
  margin: 0;
  font-weight: 500;
  color: var(--navy);
}

.checklist--check li::before {
  content: "✓";
}

/* =========================================================================
   PAGE HEADER COMPONENTS
   ========================================================================= */

.page-header {
  background: var(--off-white);
  padding: 80px 24px;
}

.page-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.page-header__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1rem;
}

.page-header__heading {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.page-header__lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--steel);
  max-width: 700px;
  margin: 0 auto;
}

/* =========================================================================
   SECTION SUBHEADING VARIANTS
   ========================================================================= */

.section-subheading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 1.5rem;
}

.section-subheading--spaced {
  margin-top: 2rem;
}

/* =========================================================================
   PULL QUOTE COMPONENTS
   ========================================================================= */

.pull-quote {
  background: var(--off-white);
  border-left: 4px solid var(--accent);
  padding: 2rem;
  border-radius: var(--radius);
  margin: 2.5rem 0;
  text-align: center;
}

.pull-quote__text {
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--navy);
  margin-bottom: 1rem;
}

.pull-quote__attribution {
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 600;
  color: var(--steel);
  margin: 0;
}

/* =========================================================================
   STEPS COMPONENT (Case study steps)
   ========================================================================= */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  padding: 2rem 0;
  margin: 2rem 0;
}

.steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 auto 1rem;
}

.step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin: 0;
}

.step__text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-600);
  text-align: center;
  margin: 0;
}

.step__content {
  text-align: center;
}

/* =========================================================================
   SYMPTOM GRID
   ========================================================================= */

.symptom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.symptom-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
}

.symptom-item:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(49, 111, 198, 0.08);
  transform: translateY(-4px);
}

.symptom-item__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.symptom-item__desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray-600);
  margin: 0;
}

/* =========================================================================
   REMAINING FOOTER & CTA CLASSES
   ========================================================================= */

.footer__brand-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.footer__brand-logo {
  margin-bottom: 1rem;
}

.footer__copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__legal {
  display: flex;
  gap: 2rem;
}

.footer__legal a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.cta-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.cta-banner__heading {
  font-size: clamp(1.75rem, 4vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-banner__text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
}

.cta-banner__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.intake-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.success-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.success-message {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray-600);
}

.badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.active {
  color: var(--accent);
  font-weight: 600;
}

/* =========================================================================
   UTILITY & ACCESSIBILITY
   ========================================================================= */

.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;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- Autopsy Page Details ---------- */
.autopsy-details {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.autopsy-detail {
  font-size: 0.92rem;
  color: var(--gray-600);
  margin: 0;
}

.autopsy-detail strong {
  color: var(--navy);
  font-weight: 700;
}

/* ---------- Checklist items as divs ---------- */
.checklist-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.55;
  padding: 6px 0;
}

.checklist-item::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.checklist--check .checklist-item::before {
  content: '✓';
}

/* =========================================================================
   END STYLESHEET
   ========================================================================= */
