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

:root {
  --navy: #1a2744;
  --blue: #2e75b6;
  --blue-light: #d6e8f4;
  --teal: #0a8f7f;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --gray-100: #f0f2f5;
  --gray-200: #e2e5ea;
  --gray-500: #6b7280;
  --gray-700: #3b4252;
  --gray-900: #1e1e2e;
  --red-accent: #c0392b;
  --green-accent: #27ae60;
  --purple: #5b3a7a;
  --senior-green: #2e5e4e;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-900);
  line-height: 1.65;
  font-size: 16px;
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: var(--blue); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26, 39, 68, 0.97);
  backdrop-filter: blur(8px);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
nav .logo-area { display: flex; align-items: center; gap: 1rem; }
nav .logo-area img { height: 32px; width: auto; }
nav .logo-area .sep { width: 1px; height: 28px; background: rgba(255,255,255,0.25); }
nav .logo-area .product-name {
  color: var(--white); font-size: 1.15rem; font-weight: 600;
  letter-spacing: 0.02em; text-decoration: none;
}
nav .nav-links { display: flex; gap: 1.5rem; align-items: center; }
nav .nav-links a {
  color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
nav .nav-links a:hover { color: var(--white); }
nav .nav-links a.active { color: #5ec4b6; }
nav .nav-links .cta-btn {
  background: var(--teal); color: var(--white) !important; padding: 0.5rem 1.2rem;
  border-radius: 6px; font-weight: 600; transition: background 0.2s;
}
nav .nav-links .cta-btn:hover { background: #0b7a6d; }

/* Mobile hamburger */
.nav-toggle-checkbox { display: none; }
.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; transition: 0.3s; }

/* ── HERO ── */
.hero {
  margin-top: 64px;
  background: linear-gradient(160deg, var(--navy) 0%, #243b63 50%, var(--blue) 100%);
  color: var(--white);
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
}
.hero .tagline {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 0.4rem 1.4rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.9);
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto 1rem;
}
.hero h1 span { color: #5ec4b6; }
.hero .subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.hero .hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Hero color variants for segment pages */
.hero.hero-hospital { background: linear-gradient(160deg, #1a2744 0%, #1e3a5f 50%, #2e75b6 100%); }
.hero.hero-senior { background: linear-gradient(160deg, #1a3a2e 0%, #2e5e4e 50%, #3a8a6e 100%); }
.hero.hero-daycare { background: linear-gradient(160deg, #3a1a5e 0%, #5b3a7a 50%, #7b5a9a 100%); }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--teal); color: var(--white); padding: 0.85rem 2rem;
  border-radius: 8px; font-weight: 600; font-size: 1rem; text-decoration: none;
  transition: background 0.2s, transform 0.15s; display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { background: #0b7a6d; transform: translateY(-1px); }
.btn-secondary {
  background: transparent; color: var(--white); padding: 0.85rem 2rem;
  border-radius: 8px; font-weight: 600; font-size: 1rem; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.4); transition: border-color 0.2s, background 0.2s;
  display: inline-block; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-outline {
  background: transparent; color: var(--navy); padding: 0.75rem 1.8rem;
  border-radius: 8px; font-weight: 600; font-size: 0.95rem; text-decoration: none;
  border: 2px solid var(--navy); transition: all 0.2s; display: inline-block; cursor: pointer;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  text-transform: uppercase; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  color: var(--teal); margin-bottom: 0.5rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: var(--navy);
  margin-bottom: 1rem; line-height: 1.25;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--gray-500); max-width: 640px; line-height: 1.65;
  margin-bottom: 2.5rem;
}

/* ── PROBLEM / SOLUTION ── */
.problem { background: var(--off-white); }
.problem-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  align-items: start;
}
.problem-card {
  background: var(--white); border-radius: 12px; padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid var(--gray-200);
}
.problem-card.highlight { border-color: var(--teal); border-width: 2px; }
.problem-card h3 { font-size: 1.15rem; margin-bottom: 1rem; color: var(--navy); }
.problem-card ul { list-style: none; padding: 0; }
.problem-card ul li {
  padding: 0.5rem 0; padding-left: 1.5rem; position: relative;
  font-size: 0.95rem; color: var(--gray-700);
}
.problem-card ul li::before {
  position: absolute; left: 0; top: 0.55rem; font-size: 0.85rem;
}
.problem-card.old ul li::before { content: '\2717'; color: var(--red-accent); }
.problem-card.highlight ul li::before { content: '\2713'; color: var(--green-accent); }

/* ── HOW IT WORKS ── */
.how-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 2rem;
}
.step {
  text-align: center; padding: 2rem 1.5rem;
  background: var(--white); border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05); border: 1px solid var(--gray-200);
}
.step-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.2rem;
  margin: 0 auto 1rem;
}
.step h3 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; color: var(--gray-500); }

/* ── BENEFITS ── */
.benefits { background: var(--off-white); }
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.benefit {
  padding: 2rem; background: var(--white); border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05); border: 1px solid var(--gray-200);
}
.benefit-icon {
  width: 52px; height: 52px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1rem;
}
.benefit-icon.blue { background: var(--blue-light); }
.benefit-icon.teal { background: #d1f0ec; }
.benefit-icon.navy { background: #d3dae6; }
.benefit h3 { font-size: 1rem; color: var(--navy); margin-bottom: 0.4rem; }
.benefit p { font-size: 0.9rem; color: var(--gray-500); }

/* ── SEGMENTS ── */
.segments-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.segment-card {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); border: 1px solid var(--gray-200);
  background: var(--white); text-decoration: none; color: inherit;
  transition: transform 0.2s, box-shadow 0.2s; display: block;
}
.segment-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.segment-card .card-header {
  padding: 1.5rem 1.5rem 1rem;
  background: var(--navy); color: var(--white);
}
.segment-card .card-header .icon { font-size: 2rem; margin-bottom: 0.5rem; }
.segment-card .card-header h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.segment-card .card-header p { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.segment-card .card-body { padding: 1.5rem; }
.segment-card .card-body p { font-size: 0.9rem; color: var(--gray-700); margin-bottom: 1rem; }
.segment-card .card-body .value-prop {
  background: var(--off-white); border-left: 3px solid var(--teal);
  padding: 0.75rem 1rem; border-radius: 0 6px 6px 0;
  font-size: 0.88rem; font-style: italic; color: var(--gray-700);
  margin-bottom: 1rem;
}
.card-link {
  display: inline-block; color: var(--teal); font-weight: 600; font-size: 0.9rem;
}

/* ── STATS ── */
.stats {
  background: linear-gradient(160deg, var(--navy) 0%, #243b63 100%);
  color: var(--white); text-align: center;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.stat .num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #5ec4b6; }
.stat .label { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-top: 0.25rem; }

/* ── SPECS TABLE ── */
.specs { background: var(--off-white); }
.specs-table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.specs-table th {
  background: var(--navy); color: var(--white);
  padding: 0.85rem 1.25rem; text-align: left; font-size: 0.9rem; font-weight: 600;
}
.specs-table td {
  padding: 0.75rem 1.25rem; font-size: 0.9rem; color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}
.specs-table tr:last-child td { border-bottom: none; }
.specs-table tr:nth-child(even) td { background: var(--off-white); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, #0a7a6d 100%);
  color: var(--white); text-align: center;
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 0.75rem; }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-white {
  background: var(--white); color: var(--navy); padding: 0.85rem 2.2rem;
  border-radius: 8px; font-weight: 700; font-size: 1rem; text-decoration: none;
  display: inline-block; transition: transform 0.15s, box-shadow 0.2s; border: none; cursor: pointer;
}
.cta-banner .btn-white:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }

/* ── VIDEO ── */
.video-section { background: var(--off-white); }
.video-wrapper { margin-top: 2rem; }

/* ── HERO PATTERN ── */
.hero-pattern {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='92'%3E%3Cpolygon points='40,2 78,22 78,62 40,82 2,62 2,22' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1.5'/%3E%3Ccircle cx='40' cy='2' r='2.5' fill='rgba(255,255,255,0.12)'/%3E%3Ccircle cx='78' cy='22' r='2.5' fill='rgba(255,255,255,0.12)'/%3E%3Ccircle cx='78' cy='62' r='2.5' fill='rgba(255,255,255,0.12)'/%3E%3Ccircle cx='40' cy='82' r='2.5' fill='rgba(255,255,255,0.12)'/%3E%3Ccircle cx='2' cy='62' r='2.5' fill='rgba(255,255,255,0.12)'/%3E%3Ccircle cx='2' cy='22' r='2.5' fill='rgba(255,255,255,0.12)'/%3E%3C/svg%3E");
  background-size: 80px 92px;
  opacity: 1;
}
.hero .container { position: relative; z-index: 1; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--navy);
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-bar .trust-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.65); font-size: 0.82rem; font-weight: 500;
  white-space: nowrap;
}
.trust-item svg { opacity: 0.7; flex-shrink: 0; }
.trust-divider {
  width: 1px; height: 24px; background: rgba(255,255,255,0.15);
}

/* ── PROCESS ICON ── */
.step-icon {
  width: 72px; height: 72px; margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, var(--navy) 0%, #2e75b6 100%);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(26,39,68,0.25);
}
.step-icon svg { width: 36px; height: 36px; }

/* ── PODCAST PLAYER ── */
.podcast-section { background: var(--navy); color: var(--white); padding: 4rem 2rem; }
.podcast-card {
  max-width: 800px; margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 2.5rem;
  backdrop-filter: blur(8px);
}
.podcast-header {
  display: flex; gap: 1.5rem; align-items: center; margin-bottom: 2rem;
}
.podcast-artwork {
  width: 80px; height: 80px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--teal) 0%, #0a6f61 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.podcast-meta { flex: 1; }
.podcast-meta .pod-label {
  text-transform: uppercase; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; color: #5ec4b6; margin-bottom: 0.25rem;
}
.podcast-meta h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.2rem; line-height: 1.3; }
.podcast-meta p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.audio-player { width: 100%; }
.player-controls {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem;
}
.play-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--teal); border: none; cursor: pointer; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.15s;
  color: var(--white);
}
.play-btn:hover { background: #0b7a6d; transform: scale(1.05); }
.play-btn svg { width: 20px; height: 20px; }
.player-progress-wrap { flex: 1; }
.player-progress {
  width: 100%; height: 5px; background: rgba(255,255,255,0.15);
  border-radius: 3px; cursor: pointer; appearance: none; -webkit-appearance: none;
  outline: none;
}
.player-progress::-webkit-slider-thumb {
  -webkit-appearance: none; width: 14px; height: 14px;
  border-radius: 50%; background: #5ec4b6; cursor: pointer;
  margin-top: -4.5px;
}
.player-progress::-webkit-slider-runnable-track {
  height: 5px; border-radius: 3px;
  background: linear-gradient(to right, #5ec4b6 var(--progress, 0%), rgba(255,255,255,0.15) var(--progress, 0%));
}
.player-progress::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%;
  background: #5ec4b6; cursor: pointer; border: none;
}
.player-progress::-moz-range-track {
  height: 5px; border-radius: 3px; background: rgba(255,255,255,0.15);
}
.player-time {
  display: flex; justify-content: space-between;
  font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 0.3rem;
}
.player-volume-wrap {
  display: flex; align-items: center; gap: 0.5rem;
  flex-shrink: 0;
}
.player-volume-wrap svg { width: 16px; height: 16px; opacity: 0.6; }
.player-volume {
  width: 70px; height: 4px; background: rgba(255,255,255,0.2);
  border-radius: 2px; cursor: pointer; appearance: none; -webkit-appearance: none;
}
.player-volume::-webkit-slider-thumb {
  -webkit-appearance: none; width: 12px; height: 12px;
  border-radius: 50%; background: rgba(255,255,255,0.8); cursor: pointer;
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-up.visible { opacity: 1; transform: none; }

/* ── STAT COUNTER ── */
.stat .num { cursor: default; }

/* ── CERT BADGES ── */
.cert-badges {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem;
}
.cert-badge {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--off-white); border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 0.5rem 1rem;
  font-size: 0.8rem; font-weight: 600; color: var(--navy);
}
.cert-badge svg { color: var(--teal); }

/* ── FOOTER ── */
footer {
  background: var(--gray-900); color: rgba(255,255,255,0.6);
  padding: 3rem 2rem 2rem; font-size: 0.85rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: start;
  flex-wrap: wrap; gap: 2rem;
}
.footer-inner .brand p { margin-top: 0.5rem; max-width: 320px; line-height: 1.6; }
.footer-inner .links h4 { color: var(--white); margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-inner .links a { display: block; color: rgba(255,255,255,0.55); text-decoration: none; padding: 0.2rem 0; }
.footer-inner .links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px; margin: 2rem auto 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.4);
}

/* ── CONTENT SECTIONS (segment pages) ── */
.content-section { padding: 5rem 2rem; }
.content-section:nth-child(even) { background: var(--off-white); }

.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start;
}

.feature-list { list-style: none; padding: 0; }
.feature-list li {
  padding: 0.6rem 0 0.6rem 1.8rem; position: relative;
  font-size: 0.95rem; color: var(--gray-700);
}
.feature-list li::before {
  content: '\2713'; position: absolute; left: 0; top: 0.65rem;
  color: var(--green-accent); font-weight: 700;
}

/* ── ROI CALCULATOR ── */
.calculator-card {
  background: var(--white); border-radius: 16px; padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08); border: 2px solid var(--blue-light);
  max-width: 900px; margin: 0 auto;
}
.calc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  margin-bottom: 2rem;
}
.calc-input-group { margin-bottom: 1.25rem; }
.calc-input-group label {
  display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy);
  margin-bottom: 0.35rem;
}
.calc-input-group input, .calc-input-group select {
  width: 100%; padding: 0.6rem 0.8rem; border: 1px solid var(--gray-200);
  border-radius: 8px; font-size: 0.95rem; font-family: var(--font);
  transition: border-color 0.2s;
}
.calc-input-group input:focus, .calc-input-group select:focus {
  outline: none; border-color: var(--blue);
}
.calc-input-group .hint {
  font-size: 0.75rem; color: var(--gray-500); margin-top: 0.2rem;
}
.calc-results {
  background: linear-gradient(135deg, var(--navy) 0%, #243b63 100%);
  border-radius: 12px; padding: 2rem; color: var(--white);
}
.calc-results h3 { font-size: 1.1rem; margin-bottom: 1.25rem; color: #5ec4b6; }
.result-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0; border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}
.result-row:last-child { border-bottom: none; }
.result-row .result-label { color: rgba(255,255,255,0.8); }
.result-row .result-value { font-weight: 700; color: var(--white); font-size: 1rem; }
.result-row.highlight .result-value { color: #5ec4b6; font-size: 1.15rem; }
.result-row.savings .result-value { color: #2ecc71; }

/* ── DAYCARE LOCATOR ── */
.locator-card {
  background: var(--white); border-radius: 16px; padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08); border: 2px solid #e8d5f5;
  max-width: 800px; margin: 0 auto;
}
.locator-search {
  display: flex; gap: 0.75rem; margin-bottom: 1.5rem;
}
.locator-search input {
  flex: 1; padding: 0.75rem 1rem; border: 1px solid var(--gray-200);
  border-radius: 8px; font-size: 1rem; font-family: var(--font);
}
.locator-search input:focus { outline: none; border-color: var(--purple); }
.locator-search button {
  padding: 0.75rem 1.5rem; background: var(--purple); color: var(--white);
  border: none; border-radius: 8px; font-weight: 600; cursor: pointer;
  transition: background 0.2s; font-family: var(--font); font-size: 0.95rem;
}
.locator-search button:hover { background: #4a2d66; }
.locator-results { margin-top: 1rem; }
.locator-result {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem; border: 1px solid var(--gray-200); border-radius: 10px;
  margin-bottom: 0.75rem; transition: border-color 0.2s;
}
.locator-result:hover { border-color: var(--purple); }
.locator-result .loc-info h4 { font-size: 1rem; color: var(--navy); margin-bottom: 0.2rem; }
.locator-result .loc-info p { font-size: 0.85rem; color: var(--gray-500); }
.locator-result .loc-badge {
  background: #f0e6f6; color: var(--purple); padding: 0.3rem 0.8rem;
  border-radius: 50px; font-size: 0.75rem; font-weight: 600;
  white-space: nowrap;
}

/* ── EMAIL TEMPLATE ── */
.email-template-card {
  background: var(--white); border-radius: 16px; padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08); border: 2px solid #e8d5f5;
  max-width: 800px; margin: 0 auto;
}
.email-preview {
  background: var(--off-white); border-radius: 8px; padding: 1.5rem;
  font-size: 0.9rem; color: var(--gray-700); line-height: 1.7;
  border: 1px solid var(--gray-200); margin: 1rem 0;
  white-space: pre-line;
}
.email-preview .email-field {
  font-weight: 600; color: var(--navy);
}

/* ── TESTIMONIAL / QUOTE ── */
.quote-block {
  background: var(--off-white); border-left: 4px solid var(--teal);
  padding: 1.5rem 2rem; border-radius: 0 12px 12px 0;
  margin: 2rem 0; font-style: italic; font-size: 1.05rem;
  color: var(--gray-700); max-width: 700px;
}
.quote-block cite {
  display: block; margin-top: 0.75rem; font-style: normal;
  font-size: 0.85rem; font-weight: 600; color: var(--navy);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .problem-grid, .how-steps, .benefits-grid, .segments-grid, .stats-grid,
  .two-col, .calc-grid {
    grid-template-columns: 1fr;
  }
  nav { padding: 0 1rem; }
  nav .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: 64px; left: 0; right: 0; background: var(--navy);
    padding: 1rem 2rem; gap: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  }
  .nav-toggle-checkbox:checked ~ .nav-links { display: flex; }
  .nav-hamburger { display: flex; }
  .locator-search { flex-direction: column; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .segments-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
