/* =========================================================
   Campaign: It Was Never Age
   Layout mirrors feel-like-yourself-again (hero grid, section
   heads, photo band, traditional panels) with cyan accent
   and accessibility overrides for adults 65+.
   ONE cyan accent element per section maximum.
   No scroll-triggered animation. No parallax. No autoplay media.
   ========================================================= */

.page-age {
  --age-accent: #7eb6ff;
  --age-accent-soft: #a8d0ff;
  --age-accent-glow: rgba(126, 182, 255, 0.28);
  --age-legal: #7a7d85;
  --age-text: #f5f5f7;
  --age-sticky-h: 4.25rem;
  --age-body-size: 1.25rem; /* 20px mobile */
  --age-body-lh: 1.7;
  --age-measure: 60ch;
}

@media (min-width: 768px) {
  .page-age {
    --age-body-size: 1.375rem; /* 22px desktop */
  }
}

/* ---------- Skip link ---------- */
.page-age .skip-link {
  position: absolute;
  left: 0.75rem;
  top: -100px;
  z-index: 400;
  padding: 0.75rem 1.1rem;
  min-height: 48px;
  background: var(--age-text);
  color: #000;
  font-weight: 600;
  border-radius: var(--radius-xs);
}

.page-age .skip-link:focus {
  top: 0.75rem;
  outline: 3px solid var(--age-accent);
  outline-offset: 2px;
}

/* ---------- Sticky phone bar — TOP of viewport (mobile) ---------- */
.page-age .age-sticky-phone {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  padding: 0.5rem 0.85rem;
  padding-top: calc(0.5rem + env(safe-area-inset-top, 0px));
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.page-age .age-sticky-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0.85rem 1rem;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  color: #000 !important;
  background: var(--age-text);
  border-radius: var(--radius-pill);
  text-decoration: none;
}

.page-age .age-sticky-phone-btn:hover,
.page-age .age-sticky-phone-btn:focus-visible {
  background: #fff;
  color: #000 !important;
  outline: 3px solid var(--age-accent);
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .page-age .age-sticky-phone {
    display: block;
  }

  .page-age .site-header {
    top: var(--age-sticky-h);
  }

  body.page-age {
    padding-top: var(--age-sticky-h);
    padding-bottom: 0 !important;
  }
}

.page-age .sticky-call {
  display: none !important;
}

html:has(body.page-age) {
  scroll-padding-top: calc(var(--header-h) + 20px);
}

@media (max-width: 720px) {
  html:has(body.page-age) {
    scroll-padding-top: calc(var(--header-h) + 4.25rem + 12px);
  }
}

/* ---------- Primary CTA (cyan — parallel to feel amber) ---------- */
.page-age .age-btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  min-width: 12rem;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  padding: 0.95rem 1.75rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  background: var(--age-accent);
  color: #0a0a0c !important;
  transition: transform 0.2s var(--ease), opacity 0.2s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 transparent;
  text-decoration: none;
}

.page-age .age-btn-call:hover {
  background: var(--age-accent-soft);
  color: #0a0a0c !important;
  opacity: 1;
  box-shadow: 0 8px 28px -8px var(--age-accent-glow);
}

.page-age .age-btn-call:active {
  transform: scale(0.98);
}

.page-age .age-btn-call.btn-block {
  width: 100%;
}

.page-age .age-btn-call-lg {
  min-height: 56px;
  padding: 1.15rem 2.25rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  width: 100%;
  max-width: 22rem;
}

/* Nav CTA stays site-standard white */
.page-age .nav-cta {
  color: #000 !important;
  background: var(--text) !important;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.page-age .header-phone {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--age-text);
}

.page-age .nav-toggle {
  min-width: 48px;
  min-height: 48px;
}

.page-age .nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

/* ---------- Body copy a11y ---------- */
.page-age .age-body,
.page-age .age-prose p,
.page-age .age-dash-list li,
.page-age .age-straight-list .age-body,
.page-age .age-credential-block,
.page-age .age-parent-cta,
.page-age .age-result-disclaimer,
.page-age .age-diff-row p,
.page-age .intake-copy .age-body {
  font-size: var(--age-body-size);
  line-height: var(--age-body-lh);
  color: var(--age-text);
  font-weight: 400;
  max-width: var(--age-measure);
  letter-spacing: -0.011em;
}

.page-age .age-prose p {
  margin: 0 0 1.35rem;
}

.page-age .age-prose p:last-child {
  margin-bottom: 0;
}

.page-age strong {
  font-weight: 700;
  color: #fff;
}

.page-age .section.age-section {
  padding: 5.5rem 0;
}

@media (min-width: 768px) {
  .page-age .section.age-section {
    padding: 7rem 0;
  }
}

.page-age .section-head {
  text-align: center;
  margin-bottom: 3rem;
}

.page-age .section-head h2 {
  max-width: 18em;
  margin-inline: auto;
  color: var(--age-text);
}

.page-age .age-section-head-left {
  text-align: left;
}

.page-age .age-section-head-left h2 {
  margin-inline: 0;
}

.page-age .age-section-lead {
  margin: 0.85rem auto 0;
  text-align: center;
}

.page-age .age-content-narrow {
  width: min(40rem, 100%);
  margin-inline: auto;
  margin-bottom: 2.5rem;
}

.page-age .age-narrow-feel {
  width: min(760px, calc(100% - 2.5rem));
  margin-inline: auto;
}

/* ---------- Hero (feel-page parallel) ---------- */
.page-age .age-hero {
  padding: 3rem 0 4rem;
}

.page-age .age-hero-layout {
  align-items: center;
  gap: 2.5rem 3.5rem;
}

.page-age .age-headline {
  font-size: clamp(2.15rem, 5.2vw, 3.45rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 1.5rem;
  color: var(--age-text);
}

/* Single accent in hero: italic “never” */
.page-age .age-never {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--age-accent);
  letter-spacing: -0.02em;
  text-shadow: none;
}

.page-age .age-subhead-lines {
  font-size: clamp(1.25rem, 2.8vw, 1.5rem);
  line-height: 1.55;
  font-weight: 500;
  color: var(--age-text);
  margin: 0 0 1.25rem;
  max-width: var(--age-measure);
}

.page-age .age-hero .hero-lead {
  margin-bottom: 2rem;
}

.page-age .age-hero .hero-lead .age-body {
  margin: 0;
}

.page-age .age-credential-line {
  margin: 1.25rem 0 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--age-text);
  opacity: 0.9;
  max-width: var(--age-measure);
}

.page-age .age-hero-portrait {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a0a0c;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    var(--shadow);
  max-width: 420px;
  margin-inline: auto;
  width: 100%;
}

.page-age .age-hero-portrait img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 15%;
}

.page-age .trust-strip li {
  color: var(--age-text);
  font-size: 0.82rem;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
}

/* ---------- Stat cards (misfiling) ---------- */
.page-age .age-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.page-age .age-stat {
  text-align: center;
  padding: 2rem 1.35rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
}

.page-age .age-stat-figure {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--age-text);
}

.page-age .age-stat-claim {
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--age-text);
  max-width: 16em;
  margin-inline: auto;
}

/* ---------- Pull statements ---------- */
.page-age .age-pull {
  margin: 0 auto;
  padding: 0;
  text-align: center;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--age-accent);
  max-width: 28em;
}

.page-age #really-about .age-pull {
  margin: 2.5rem auto 3rem;
}

.page-age #misfiling .age-pull {
  margin-top: 0.5rem;
}

/* ---------- Em-dash list ---------- */
.page-age .age-dash-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 36rem;
}

.page-age .age-dash-list li {
  position: relative;
  padding: 1.15rem 0 1.15rem 1.6rem;
  border-bottom: 1px solid var(--border);
  margin-inline: auto;
}

.page-age .age-dash-list li:first-child {
  border-top: 1px solid var(--border);
}

.page-age .age-dash-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--age-text);
  font-weight: 600;
}

/* ---------- Photo band (feel-page parallel) ---------- */
.page-age .age-photo-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0.85rem;
  align-items: stretch;
  margin-top: 0.5rem;
}

.page-age .age-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a0a0c;
  min-height: 0;
}

.page-age .age-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 4;
}

.page-age .age-photo-primary img {
  aspect-ratio: 3 / 4;
}

.page-age .age-imagery-caption {
  margin: 1.35rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--age-text);
  opacity: 0.75;
  letter-spacing: 0.01em;
  max-width: 42em;
  margin-inline: auto;
}

/* ---------- TMS mechanism rows ---------- */
.page-age .age-diff-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.page-age .age-diff-row {
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: minmax(140px, 0.36fr) 1fr;
  gap: 1rem 1.5rem;
  align-items: start;
}

.page-age .age-diff-row h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--age-text);
}

.page-age .age-diff-row p {
  margin: 0;
}

/* Single accent for TMS section */
.page-age .age-diff-accent h3 {
  color: var(--age-accent);
}

.page-age .age-accent-line {
  color: var(--age-text);
  font-weight: 600;
  border-left: 3px solid var(--age-accent);
  padding-left: 1rem;
  margin-top: 0.25rem;
}

/* ---------- Straight talk ---------- */
.page-age .age-straight-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.page-age .age-straight-list li {
  margin: 0;
  padding: 1.5rem 1.5rem 1.45rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
}

.page-age .age-straight-list li:first-child {
  border-top: 3px solid var(--age-accent);
}

.page-age .age-straight-list .age-body {
  margin: 0;
  max-width: none;
}

/* ---------- Out-of-pocket panel ---------- */
.page-age .age-oop-panel,
.page-age .age-final-panel {
  padding: 2.75rem 2.25rem 2.5rem;
}

.page-age .age-oop-panel .traditional-copy,
.page-age .age-final-panel .traditional-copy {
  text-align: left;
  max-width: 40rem;
}

.page-age .age-oop-panel h2,
.page-age .age-final-panel h2 {
  text-align: left;
  max-width: none;
  margin-bottom: 1.5rem;
}

.page-age .age-oop-panel .eyebrow,
.page-age .age-final-panel .eyebrow {
  justify-content: flex-start;
}

/* ---------- Proof ---------- */
.page-age .age-proof-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem 3rem;
  align-items: start;
  max-width: 960px;
  margin-inline: auto;
}

.page-age .age-testimonial {
  max-width: none;
  margin: 0;
}

.page-age .age-testimonial blockquote p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--age-text);
}

.page-age .age-result-disclaimer {
  margin: 0 0 1.75rem;
  font-size: 1.05rem !important;
  font-weight: 600;
  color: var(--age-text);
}

.page-age .age-credential-block {
  margin: 0 0 1.5rem;
  padding: 0;
  border: none;
}

.page-age .age-physician-creds {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

.page-age .age-physician-creds li {
  font-size: 0.82rem;
  font-weight: 550;
  letter-spacing: 0.02em;
  color: var(--age-text);
  padding: 0.5rem 0.9rem;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

/* ---------- Parent path split ---------- */
.page-age .age-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem 3.5rem;
  align-items: center;
}

.page-age .age-split-copy h2 {
  text-align: left;
  max-width: none;
  margin-bottom: 1.5rem;
}

.page-age .age-split-copy .eyebrow {
  justify-content: flex-start;
}

.page-age .age-split-photo {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0a0a0c;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    var(--shadow);
  max-width: 440px;
  margin-inline: auto;
  width: 100%;
}

.page-age .age-split-photo img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 20%;
}

.page-age .age-parent-cta {
  margin: 2rem 0 0;
}

.page-age .age-inline-phone {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.25rem 0.15rem;
  font-weight: 700;
  font-size: inherit;
  color: var(--age-accent);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.page-age .age-inline-phone:hover {
  color: #fff;
}

/* ---------- One call ---------- */
.page-age .age-final-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.1rem;
  margin: 2rem 0 2rem;
}

.page-age .age-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--age-text);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  background: none;
  border: none;
  padding: 0.25rem 0;
}

.page-age .age-text-link:hover {
  color: #fff;
}

.page-age .age-address {
  font-style: normal;
  font-size: var(--age-body-size);
  line-height: var(--age-body-lh);
  color: var(--age-text);
  margin: 0 0 2rem;
}

/* COMPLIANCE-LOCKED legal — mid-gray HERE ONLY */
.page-age .age-legal {
  margin: 0;
  max-width: var(--age-measure);
  font-size: 0.95rem;
  line-height: 1.65;
  font-weight: 400;
  color: var(--age-legal);
}

/* ---------- Intake ---------- */
.page-age .age-intake {
  border-top: 1px solid var(--border);
  padding-top: 5rem;
  padding-bottom: 6rem;
}

.page-age .age-intake .eyebrow {
  color: var(--age-text);
}

.page-age .age-intake h2 {
  text-align: left;
}

.page-age .intake-form label,
.page-age .intake-form .check,
.page-age .intake-form legend {
  font-size: 1rem;
  color: var(--age-text);
}

.page-age .intake-form input,
.page-age .intake-form textarea {
  min-height: 48px;
  font-size: 1.05rem;
  color: var(--age-text);
}

.page-age .intake-form textarea {
  min-height: 8rem;
}

.page-age .intake-form .btn {
  min-height: 48px;
}

.page-age .intake-form .check {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.page-age .site-footer .disclaimer {
  max-width: 36em;
  line-height: 1.55;
}

/* ---------- Focus ---------- */
.page-age .btn:focus-visible,
.page-age a:focus-visible,
.page-age button:focus-visible,
.page-age input:focus-visible,
.page-age textarea:focus-visible {
  outline: 3px solid var(--age-accent);
  outline-offset: 3px;
}

/* ---------- No scroll-triggered motion ---------- */
.page-age .reveal {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
  filter: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .page-age *,
  .page-age *::before,
  .page-age *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .page-age .pulse {
    box-shadow: none;
  }

  .page-age .age-btn-call {
    transition: none;
  }

  .page-age .age-btn-call:hover {
    box-shadow: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .page-age .age-photo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .page-age .age-photo-primary {
    grid-column: 1 / -1;
  }

  .page-age .age-photo-primary img {
    aspect-ratio: 16 / 11;
    object-position: center 30%;
  }

  .page-age .age-diff-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.35rem 0;
  }

  .page-age .age-proof-layout,
  .page-age .age-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-age .age-split-photo {
    max-width: 360px;
    order: -1;
  }
}

@media (max-width: 720px) {
  .page-age .age-hero {
    padding: 2.25rem 0 3rem;
  }

  .page-age .age-headline {
    font-size: clamp(1.95rem, 8.2vw, 2.5rem);
  }

  .page-age .age-hero-portrait {
    max-width: 320px;
    border-radius: 22px;
  }

  .page-age .section.age-section {
    padding: 4.5rem 0;
  }

  .page-age .age-stat-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .page-age .age-photo-grid {
    grid-template-columns: 1fr;
  }

  .page-age .age-photo-primary {
    grid-column: auto;
  }

  .page-age .age-photo-primary img,
  .page-age .age-photo img {
    aspect-ratio: 4 / 3;
  }

  .page-age .age-photo {
    border-radius: 14px;
  }

  .page-age .age-oop-panel,
  .page-age .age-final-panel {
    padding: 2rem 1.35rem 1.85rem;
  }

  .page-age .age-btn-call-lg {
    max-width: none;
  }

  .page-age .age-straight-list li {
    padding: 1.25rem 1.15rem;
  }
}

/* ---------- Print ---------- */
@media print {
  .page-age {
    background: #fff !important;
    color: #000 !important;
    padding: 0 !important;
    font-size: 12pt;
    line-height: 1.5;
  }

  .page-age .age-sticky-phone,
  .page-age .brand-cursor,
  .page-age .ambient,
  .page-age .site-header,
  .page-age .nav-toggle,
  .page-age .skip-link,
  .page-age .sticky-call,
  .page-age .age-intake,
  .page-age .age-photo-grid,
  .page-age .age-hero-portrait,
  .page-age .age-split-photo,
  .page-age .site-footer .footer-logos,
  .page-age .site-footer .footer-nav {
    display: none !important;
  }

  .page-age,
  .page-age main,
  .page-age .section,
  .page-age .container,
  .page-age .traditional-panel {
    background: #fff !important;
    color: #000 !important;
    width: 100% !important;
    max-width: none !important;
    box-shadow: none !important;
    border-color: #ccc !important;
  }

  .page-age h1,
  .page-age h2,
  .page-age h3,
  .page-age .age-body,
  .page-age .age-prose p,
  .page-age .age-dash-list li,
  .page-age .age-subhead-lines,
  .page-age .age-credential-line,
  .page-age .age-credential-block,
  .page-age .age-parent-cta,
  .page-age .age-result-disclaimer,
  .page-age .age-address,
  .page-age .age-pull,
  .page-age .age-accent-line,
  .page-age .age-stat-figure,
  .page-age .age-stat-claim,
  .page-age strong,
  .page-age .testimonial-slot blockquote p,
  .page-age .testimonial-attr,
  .page-age .testimonial-context,
  .page-age .age-never,
  .page-age .age-diff-accent h3 {
    color: #000 !important;
  }

  .page-age .age-legal {
    color: #333 !important;
    border-top: 1px solid #999;
    padding-top: 0.75rem;
    margin-top: 1rem;
  }

  .page-age .age-straight-list li,
  .page-age .age-stat,
  .page-age .testimonial-slot {
    border: 1px solid #ccc !important;
    background: #fff !important;
    break-inside: avoid;
  }

  .page-age .age-pull,
  .page-age .age-inline-phone {
    color: #000 !important;
  }

  .page-age .age-accent-line {
    border-left-color: #000;
  }

  .page-age .btn,
  .page-age .age-btn-call {
    display: none !important;
  }

  .page-age .age-final-actions::before {
    content: "Call 947-209-5202";
    display: block;
    font-size: 14pt;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.75rem;
  }

  .page-age .hero-actions::after {
    content: "Call 947-209-5202 · Paradigm Psychiatry · 32611 Franklin Rd, Unit A, Franklin, MI 48025";
    display: block;
    font-size: 11pt;
    font-weight: 600;
    color: #000;
    margin-top: 0.75rem;
  }

  .page-age .age-address {
    display: block !important;
    font-size: 11pt;
  }

  .page-age a[href^="tel:"] {
    color: #000 !important;
    text-decoration: none;
  }

  .page-age a[href^="tel:"]::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    font-weight: 600;
  }

  .page-age .site-footer {
    border-top: 1px solid #999;
    color: #000 !important;
    background: #fff !important;
  }

  .page-age .site-footer a,
  .page-age .site-footer p,
  .page-age .site-footer .disclaimer {
    color: #000 !important;
  }

  .page-age .section {
    padding: 1.25rem 0 !important;
  }

  .page-age .testimonial-media img {
    max-height: 160px;
    width: auto;
  }

  @page {
    margin: 0.75in;
  }
}

/* ---------- Brain Fitness Check pair (Attention + Working Memory) ---------- */
.page-age .age-brain-check {
  padding-top: 3.5rem;
  padding-bottom: 5.5rem;
}

.page-age .age-brain-check .section-lead {
  color: var(--age-text);
  max-width: 40em;
  margin-inline: auto;
  font-size: var(--age-body-size);
  line-height: var(--age-body-lh);
}

.page-age .age-brain-check-fine {
  margin-top: 0.85rem !important;
  font-size: 0.98rem !important;
  line-height: 1.55 !important;
  opacity: 0.88;
  max-width: 36em;
}

/* Side-by-side on wide screens; stack on tablet/phone */
.page-age .bf-modules-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2.25rem;
  align-items: start;
}

.page-age .bf-module {
  margin-top: 0;
  min-width: 0;
}

.page-age .bf-module + .bf-module {
  margin-top: 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.page-age .bf-module-head {
  margin-bottom: 1.35rem;
}

.page-age .bf-module-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--age-text);
  text-align: center;
}

.page-age .bf-module-head .section-lead {
  font-size: 0.98rem;
  line-height: 1.55;
  max-width: 32em;
}

.page-age .bf-module .cpt-shell {
  max-width: none;
  width: 100%;
}

/* Keep CPT shell touch targets generous on this page */
.page-age .cpt-shell .btn {
  min-height: 48px;
}

.page-age .cpt-follow-invite-actions .btn {
  min-height: 48px;
}

.page-age .wmc-key {
  min-height: 60px;
  font-size: 1.4rem;
}

@media (min-width: 1000px) {
  .page-age .bf-modules-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1.75rem;
  }

  .page-age .bf-module + .bf-module {
    padding-top: 0;
    border-top: none;
  }

  .page-age .bf-module-title {
    font-size: clamp(1.25rem, 1.6vw, 1.55rem);
  }

  .page-age .cpt-shell {
    padding: 1.5rem 1.25rem 1.35rem;
  }
}

@media (max-width: 720px) {
  .page-age .age-brain-check {
    padding-top: 2.75rem;
    padding-bottom: 4.5rem;
  }

  .page-age .bf-module + .bf-module {
    padding-top: 2.25rem;
  }
}

/* ---------- TMS stimulation video (between What TMS is & Straight talk) ---------- */
.page-age .age-tms-video {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.page-age .age-tms-media {
  max-width: 720px;
  margin-inline: auto;
}

.page-age .age-tms-media .video-heading {
  text-align: center;
  margin-bottom: 1rem;
}

.page-age .age-tms-media .video-caption {
  color: var(--age-text);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 36em;
}

.page-age .age-tms-media .video-caption-tags {
  color: var(--age-text);
  opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  .page-age .age-tms-video video {
    /* Browser may still honor muted autoplay; app.js starts play — pause if reduced motion */
  }
}

@media print {
  .page-age .age-tms-video {
    display: none !important;
  }
}
