/* =============================================
   HEALTHKEEP — BRAND DESIGN SYSTEM
   Inspired by hims.com UX + medvi.org patterns
   Brand: terracotta/espresso/cream palette
   Fonts: Zodiak (display) + General Sans (body)
   ============================================= */

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

:root {
  /* Brand Colors */
  --bg-cream: #FAF7F2;
  --bg-surface: #F5F0E8;
  --bg-espresso: #2D1F0E;
  --bg-dark: #1A1208;
  --text-primary: #2B2318;
  --text-muted: #7A6E60;
  --text-light: #FAF7F2;
  --accent-terracotta: #C4623A;
  --accent-terracotta-hover: #A84E2A;
  --accent-gold: #C9920A;
  --accent-gold-light: #E8AA28;
  --border-warm: rgba(43, 35, 24, 0.12);

  /* Hims-style UI */
  --radius-card: 16px;
  --radius-pill: 9999px;
  --radius-badge: 20px;

  /* Shadows */
  --shadow-card: 0 2px 20px rgba(43, 35, 24, 0.08);
  --shadow-card-hover: 0 8px 40px rgba(43, 35, 24, 0.16);

  /* Typography */
  --font-display: 'Zodiak', Georgia, serif;
  --font-body: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Nav */
  --nav-height: 64px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-cream);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* -------- COMING SOON BANNER -------- */
.coming-soon-bar {
  background: var(--bg-espresso);
  color: var(--text-light);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 52px;
  position: relative;
  letter-spacing: 0.02em;
  line-height: 1.4;
  z-index: 1000;
}

.coming-soon-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-light);
  opacity: 0.6;
  padding: 4px;
  line-height: 1;
  transition: opacity 0.2s;
}

.coming-soon-close:hover {
  opacity: 1;
}

/* -------- ANNOUNCEMENT BANNER -------- */
.announcement-bar {
  background: #F2C9A3;
  color: var(--text-primary);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 10px 48px;
  position: relative;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.announcement-link {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announcement-link:hover {
  color: var(--accent-terracotta);
}

.announcement-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--text-primary);
  opacity: 0.6;
  padding: 4px;
  line-height: 1;
  transition: opacity 0.2s;
}

.announcement-close:hover {
  opacity: 1;
}

/* -------- NAVIGATION -------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-cream);
  border-bottom: 1px solid var(--border-warm);
  height: var(--nav-height);
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.nav--scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(43, 35, 24, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  color: var(--text-primary);
  transition: opacity 0.2s;
}

.nav-logo:hover {
  opacity: 0.8;
}

.logo-svg {
  height: 32px;
  width: auto;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-login {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.2s;
}

.nav-login:hover {
  color: var(--accent-terracotta);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
}

.ham-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.ham-line--short {
  width: 16px;
}

.hamburger.is-open .ham-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.hamburger.is-open .ham-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 24px;
}

/* -------- NAV PANEL -------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 35, 24, 0.4);
  backdrop-filter: blur(2px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(400px, 90vw);
  height: 100vh;
  background: var(--bg-cream);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -4px 0 40px rgba(43, 35, 24, 0.15);
}

.nav-panel.is-open {
  transform: translateX(0);
}

.nav-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border-warm);
}

.nav-panel-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.nav-panel-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text-muted);
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}

.nav-panel-close:hover {
  color: var(--text-primary);
}

.nav-panel-links {
  padding: 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.nav-panel-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-panel-category {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  padding: 0 0 8px 0;
  text-transform: uppercase;
}

.nav-panel-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-warm);
  transition: color 0.2s;
}

.nav-panel-link:hover {
  color: var(--accent-terracotta);
}

.nav-panel-link span {
  opacity: 0.5;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-panel-link:hover span {
  transform: translateX(4px);
  opacity: 1;
}

.nav-panel-cta {
  padding-top: 8px;
}

/* -------- BUTTONS -------- */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.btn-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 98, 58, 0.3);
}

.btn-pill--dark {
  background: var(--text-primary);
  color: var(--bg-cream);
  border-color: var(--text-primary);
}

.btn-pill--dark:hover {
  background: #1a110a;
  box-shadow: 0 4px 16px rgba(43, 35, 24, 0.3);
}

.btn-pill--light {
  background: var(--bg-cream);
  color: var(--text-primary);
  border-color: var(--bg-cream);
}

.btn-pill--light:hover {
  background: var(--bg-surface);
}

.btn-pill--cream {
  background: var(--bg-cream);
  color: var(--text-primary);
  border-color: transparent;
}

.btn-pill--cream:hover {
  background: var(--bg-surface);
}

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

.btn-pill--terracotta:hover {
  background: var(--accent-terracotta-hover);
  box-shadow: 0 4px 16px rgba(196, 98, 58, 0.4);
}

.btn-pill--xl {
  font-size: 1.05rem;
  padding: 16px 40px;
}

/* -------- EYEBROW LABELS -------- */
.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-terracotta);
  margin-bottom: 12px;
}

.eyebrow--light {
  color: rgba(250, 247, 242, 0.7);
}

/* -------- SECTION HEADLINES -------- */
.section-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-headline--light {
  color: var(--text-light);
}

.accent-word {
  color: var(--accent-terracotta);
}

.accent-word-gold {
  color: var(--accent-gold-light);
}

.section-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 28px;
}

.section-body--light {
  color: rgba(250, 247, 242, 0.75);
}

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

.feature-list {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  padding-left: 20px;
  position: relative;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-terracotta);
  font-weight: 700;
}

.feature-list--light li {
  color: rgba(250, 247, 242, 0.8);
}

.feature-list--light li::before {
  color: var(--accent-gold-light);
}

/* -------- HERO SECTION -------- */
.hero {
  background: var(--bg-cream);
  padding: 48px 24px 0;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-header {
  margin-bottom: 32px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-terracotta);
  margin-bottom: 12px;
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  max-width: 700px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  padding-bottom: 0;
}

/* Large cards take full row */
.hero-card--large {
  grid-column: span 1;
}

/* Small cards — 4 in a row */
.hero-card--small {
  grid-column: span 1;
}

/* Restructure: 2 large + 4 small below */
.hero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.hero-card--large {
  grid-column: span 2;
  min-height: 320px;
}

.hero-card--small {
  grid-column: span 1;
  min-height: 180px;
}

/* Card base */
.hero-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  text-decoration: none;
  color: inherit;
}

.hero-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

/* Dark card */
.hero-card--dark {
  background: #3A2A15;
  color: var(--bg-cream);
}

/* Warm card */
.hero-card--warm {
  background: #C4A882;
  color: var(--bg-espresso);
}

/* Small card default */
.hero-card--small {
  background: var(--bg-surface);
  color: var(--text-primary);
  border: 1px solid var(--border-warm);
}

.hero-card--small:hover {
  background: #EDE8DF;
  border-color: var(--accent-terracotta);
}

/* Card backgrounds decorative overlay */
.hero-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
  border-radius: inherit;
}

.hero-card-bg--olive {
  background: radial-gradient(ellipse at 70% 30%, #5C4A1E 0%, transparent 70%);
}

.hero-card-bg--caramel {
  background: radial-gradient(ellipse at 30% 70%, #9E7A4A 0%, transparent 70%);
}

.hero-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.hero-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 10px;
}

.hero-card-headline {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.hero-card-headline strong {
  font-weight: 800;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 24px;
}

.hero-card-sub {
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 500;
}

.hero-card-arrow {
  font-size: 1.4rem;
  font-weight: 300;
  opacity: 0.8;
  transition: transform 0.2s;
}

.hero-card:hover .hero-card-arrow {
  transform: translateX(4px);
}

/* Small card */
.hero-card--small {
  padding: 20px;
  justify-content: flex-start;
  gap: 8px;
}

.hero-card-headline-sm {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

.hero-card-arrow-sm {
  display: block;
  font-size: 1.1rem;
  margin-top: auto;
  color: var(--accent-terracotta);
  transition: transform 0.2s;
}

.hero-card--small:hover .hero-card-arrow-sm {
  transform: translateX(4px);
}

/* -------- TICKER / MARQUEE -------- */
.ticker-wrap {
  background: var(--text-primary);
  overflow: hidden;
  padding: 14px 0;
  margin-top: 40px;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  width: max-content;
}

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-wrap:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-item {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bg-cream);
  padding: 0 24px;
}

.ticker-sep {
  color: var(--accent-terracotta);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* -------- FADE-IN ANIMATION -------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------- FEATURE SECTION (dark, with journey path) -------- */
.feature-section--dark {
  background: var(--bg-espresso);
  padding: 96px 24px;
  color: var(--text-light);
}

.feature-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-section-inner .section-headline {
  color: var(--text-light);
}

.feature-section-inner .section-body {
  color: rgba(250, 247, 242, 0.7);
}

/* Journey Path */
.journey-path {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.journey-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.journey-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.3);
  border: 2px solid rgba(250, 247, 242, 0.4);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.journey-dot--active {
  background: var(--accent-terracotta);
  border-color: var(--accent-terracotta);
  box-shadow: 0 0 0 4px rgba(196, 98, 58, 0.25);
}

.journey-dot--gold {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(201, 146, 10, 0.25);
}

.journey-connector {
  width: 2px;
  height: 40px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(250, 247, 242, 0.3) 0px,
    rgba(250, 247, 242, 0.3) 4px,
    transparent 4px,
    transparent 10px
  );
  margin-left: 7px;
}

.journey-content {
  padding-bottom: 16px;
}

.journey-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
}

.journey-desc {
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.65);
  line-height: 1.5;
}

/* -------- SERVICE SECTIONS -------- */
.service-section {
  padding: 96px 24px;
}

.service-section--light {
  background: var(--bg-cream);
}

.service-section--surface {
  background: var(--bg-surface);
}

.service-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.service-section-inner--reverse {
  direction: rtl;
}

.service-section-inner--reverse > * {
  direction: ltr;
}

/* Service visuals */
.service-visual {
  border-radius: var(--radius-card);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-visual--glp1 {
  background: linear-gradient(135deg, #3A2A15 0%, #6B4C28 50%, #8B6540 100%);
}

.service-visual--hormone {
  background: linear-gradient(135deg, #F5ECD8 0%, #EDD9BB 100%);
}

.service-visual--coaching {
  background: linear-gradient(135deg, #FDF0E8 0%, #F5DCC8 100%);
}

/* Stat card (GLP-1) */
.stat-card {
  text-align: center;
  color: var(--bg-cream);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--bg-cream);
}

.stat-label {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(250, 247, 242, 0.8);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-source {
  font-size: 0.75rem;
  color: rgba(250, 247, 242, 0.5);
  margin-top: 8px;
}

/* Badge stack (hormones) */
.badge-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px;
  justify-content: center;
}

.badge-pill {
  background: white;
  color: var(--text-primary);
  border: 1.5px solid var(--border-warm);
  border-radius: var(--radius-badge);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 16px;
  letter-spacing: 0.01em;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.badge-pill:hover {
  background: var(--accent-terracotta);
  border-color: var(--accent-terracotta);
  color: white;
}

/* Coach card */
.coach-card {
  width: 100%;
  max-width: 360px;
  background: white;
  border-radius: var(--radius-card);
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.coach-avatar {
  width: 80px;
  height: 80px;
  background: rgba(196, 98, 58, 0.1);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coach-info {
  border-bottom: 1px solid var(--border-warm);
  padding-bottom: 16px;
}

.coach-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.coach-specialty {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.chat-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chat-bubble {
  border-radius: 16px;
  padding: 10px 14px;
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 85%;
}

.chat-bubble--coach {
  background: var(--bg-surface);
  color: var(--text-primary);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.chat-bubble--user {
  background: var(--accent-terracotta);
  color: white;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

/* -------- ARIA SECTION (dark) -------- */
.aria-section {
  background: var(--bg-dark);
  padding: 96px 24px;
  color: var(--text-light);
}

.aria-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Phone mockup */
.aria-phone {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 300px;
  background: #1C1814;
  border-radius: 44px;
  border: 3px solid rgba(250, 247, 242, 0.12);
  padding: 16px 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(250, 247, 242, 0.05);
  position: relative;
}

.phone-notch {
  width: 100px;
  height: 8px;
  background: rgba(250, 247, 242, 0.08);
  border-radius: 4px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: #2A1F12;
  border-radius: 32px;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.08);
  background: rgba(250, 247, 242, 0.04);
}

.phone-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.2;
}

.phone-status {
  font-size: 0.7rem;
  color: #5DB87A;
  font-weight: 500;
}

.phone-messages {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-msg {
  border-radius: 16px;
  padding: 10px 14px;
  font-size: 0.78rem;
  line-height: 1.45;
  max-width: 85%;
}

.phone-msg--aria {
  background: rgba(196, 98, 58, 0.25);
  color: rgba(250, 247, 242, 0.9);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.phone-msg--user {
  background: rgba(250, 247, 242, 0.12);
  color: rgba(250, 247, 242, 0.8);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.phone-input {
  padding: 12px 16px;
  background: rgba(250, 247, 242, 0.06);
  border-top: 1px solid rgba(250, 247, 242, 0.08);
  border-radius: 0 0 32px 32px;
}

.phone-input-text {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.3);
}

/* -------- PROVIDERS SECTION -------- */
.providers-section {
  background: var(--bg-surface);
  padding: 96px 24px;
}

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

.providers-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

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

.provider-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}

.provider-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.provider-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.provider-avatar--1 {
  background: linear-gradient(135deg, #C4623A, #9E4B2A);
}

.provider-avatar--2 {
  background: linear-gradient(135deg, #C9920A, #A37508);
}

.provider-avatar--3 {
  background: linear-gradient(135deg, #2D1F0E, #5C3D1E);
}

.provider-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.provider-specialty {
  font-size: 0.8rem;
  color: var(--accent-terracotta);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}

.provider-bio {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* -------- HOW IT WORKS -------- */
.how-section {
  background: var(--bg-cream);
  padding: 96px 24px;
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.how-header {
  margin-bottom: 64px;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.how-step {
  flex: 1;
  max-width: 300px;
}

.how-step-arrow {
  font-size: 2rem;
  color: var(--border-warm);
  padding: 0 16px;
  margin-top: 28px;
  flex-shrink: 0;
  color: var(--accent-terracotta);
  opacity: 0.5;
}

.how-step-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(196, 98, 58, 0.15);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}

.how-step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

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

.how-cta {
  text-align: center;
  margin-top: 56px;
}

/* -------- TESTIMONIALS -------- */
.testimonials-section {
  background: var(--bg-surface);
  padding: 96px 24px;
}

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

.testimonials-header {
  margin-bottom: 56px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-warm);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial-card--large {
  grid-row: span 2;
}

.testimonial-card--accent {
  background: var(--accent-terracotta);
  border-color: var(--accent-terracotta);
}

.testimonial-card--accent .testimonial-text,
.testimonial-card--accent .testimonial-name {
  color: white;
}

.testimonial-card--accent .testimonial-stars {
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-stars {
  color: var(--accent-gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  flex: 1;
}

.testimonial-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* -------- CTA SECTION (Two-color headline) -------- */
.cta-section {
  background: var(--bg-espresso);
  padding: 112px 24px;
  text-align: center;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.cta-headline--light {
  color: var(--text-light);
}

.cta-headline--accent {
  color: var(--accent-gold-light);
}

.cta-subtext {
  font-size: 1rem;
  color: rgba(250, 247, 242, 0.65);
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}

.cta-disclaimer {
  margin-top: 20px;
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.4);
  letter-spacing: 0.02em;
}

/* -------- EMAIL CAPTURE -------- */
.email-capture-section {
  background: var(--bg-cream);
  padding: 80px 24px;
  border-top: 1px solid var(--border-warm);
}

.email-capture-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.email-input-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.email-input {
  flex: 1;
  height: 52px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-warm);
  background: white;
  padding: 0 24px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s;
}

.email-input:focus {
  border-color: var(--accent-terracotta);
}

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

.email-submit {
  height: 52px;
  white-space: nowrap;
}

.email-privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  padding-left: 16px;
}

/* -------- FOOTER -------- */
.footer {
  background: var(--text-primary);
  color: var(--text-light);
  padding: 64px 24px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.logo-svg--footer {
  color: var(--bg-cream);
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(250, 247, 242, 0.5);
  margin-top: 12px;
  font-style: italic;
}

.footer-hipaa {
  font-size: 0.75rem;
  color: rgba(196, 98, 58, 0.8);
  margin-top: 8px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 0.88rem;
  color: rgba(250, 247, 242, 0.75);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--accent-terracotta);
}

.footer-address {
  font-size: 0.88rem;
  color: rgba(250, 247, 242, 0.45);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(250, 247, 242, 0.45);
}

.footer-legal-link {
  color: rgba(250, 247, 242, 0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.footer-legal-link:hover {
  color: var(--text-light);
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(250, 247, 242, 0.3);
  line-height: 1.6;
}

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

  .hero-card--large {
    grid-column: span 2;
    min-height: 260px;
  }

  .hero-card--small {
    grid-column: span 1;
  }

  .feature-section-inner,
  .service-section-inner,
  .aria-section-inner,
  .email-capture-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-section-inner--reverse {
    direction: ltr;
  }

  .service-visual {
    min-height: 280px;
  }

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

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

  .testimonial-card--large {
    grid-row: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

@media (max-width: 768px) {
  .hero {
    padding: 32px 16px 0;
  }

  .hero-headline {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-card--large {
    grid-column: span 1;
    min-height: 220px;
  }

  .hero-card--small {
    grid-column: span 1;
    min-height: 120px;
  }

  .section-headline {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }

  .feature-section--dark,
  .service-section,
  .aria-section,
  .providers-section,
  .how-section,
  .testimonials-section,
  .cta-section {
    padding: 64px 16px;
  }

  .how-steps {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }

  .how-step-arrow {
    display: none;
  }

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

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

  .cta-headline {
    font-size: clamp(2.4rem, 8vw, 3.5rem);
  }

  .email-capture-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .email-input-group {
    flex-direction: column;
    align-items: stretch;
  }

  .email-input,
  .email-submit {
    width: 100%;
  }

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

@media (max-width: 480px) {
  .announcement-bar {
    padding: 10px 40px 10px 16px;
    font-size: 0.82rem;
  }

  .nav-inner {
    padding: 0 16px;
  }

  .hero-card-headline {
    font-size: 1.25rem;
  }

  .phone-frame {
    width: 260px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
