/* ============================================
   DR. DAGMAR E. NUÑEZ — CONTENT PAGES
   Copied from neuropsychevalflorida.com design system
   Color palette: navy blue (azul marino)
   Updated: 2026-05-21
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1B3A8A;
  --navy-dark:  #142D6E;
  --navy-light: #2952B3;
  --navy-50:    #EEF2FB;
  --navy-100:   #D5E0FA;
  --white:      #FFFFFF;
  --dark:       #0F172A;
  --slate:      #334155;
  --muted:      #64748B;
  --border:     #E2E8F0;
  --font-head:  'Cormorant Garamond', Georgia, serif;
  --font-body:  'DM Sans', system-ui, sans-serif;
  --radius:     12px;
  --radius-sm:  8px;
  --pad-x:      clamp(20px, 6vw, 80px);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 13px 28px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  border-radius: 100px; cursor: pointer; border: none;
  transition: all 0.2s ease; white-space: nowrap;
  text-decoration: none;
}
.btn--primary {
  background: var(--navy); color: #fff;
}
.btn--primary:hover { background: var(--navy-dark); transform: translateY(-1px); }
.btn--ghost {
  background: transparent; color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--navy); color: var(--navy); }
.btn--full { width: 100%; }

/* ===== BADGES ===== */
.badge {
  display: inline-block;
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
  background: var(--navy-100); color: var(--navy);
  border: 1px solid rgba(27,58,138,0.2);
}
.badge--lg { padding: 6px 16px; font-size: 0.8rem; }
.badge--muted {
  background: var(--border); color: var(--muted);
  border-color: var(--border);
}

/* ===== SECTION LABELS ===== */
.section-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600; line-height: 1.1;
  color: var(--dark); margin-bottom: 24px;
}

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.nav--scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav__inner {
  max-width: none; margin: 0;
  padding: 0 var(--pad-x);
  height: 68px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex; flex-direction: column; gap: 1px;
  flex-shrink: 0; margin-right: auto;
}
.nav__brand-name {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 600;
  color: var(--dark); line-height: 1.1;
}
.nav__brand-title {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.nav__links {
  display: flex; align-items: center; gap: 32px;
}
.nav__links a {
  font-size: 0.875rem; font-weight: 400; color: var(--slate);
  transition: color 0.15s;
}
.nav__links a:hover,
.nav__links a.nav__link--active { color: var(--navy); }
.nav__link--active {
  font-weight: 500;
  border-bottom: 2px solid var(--navy);
  padding-bottom: 2px;
}
.nav__cta {
  background: var(--navy); color: #fff !important;
  padding: 9px 22px; border-radius: 100px; font-weight: 500 !important;
  transition: background 0.2s !important; border-bottom: none !important;
}
.nav__cta:hover { background: var(--navy-dark) !important; }

/* EN/ES lang pill — inside nav links */
.nav__lang-pill {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
  flex-shrink: 0;
}
.nav__lang-pill a {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 5px 12px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
  color: var(--muted);
  border-bottom: none !important;
  transition: background 0.18s, color 0.18s;
}
.nav__lang-pill a.active,
.nav__lang-pill a:hover {
  background: var(--navy);
  color: #fff !important;
}

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  flex-shrink: 0;
}
.nav__toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--dark); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav__toggle--open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav__toggle--open span:nth-child(2) { opacity: 0; }
.nav__toggle--open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: flex-start;
    padding: 16px var(--pad-x) 24px; gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .nav__links--open { display: flex; }
  .nav__links a { padding: 10px 0; font-size: 1rem; width: 100%; }
  .nav__cta { margin-top: 8px; text-align: center; width: 100%; }
  .nav__lang-pill { margin-top: 8px; }
  .nav__lang-pill a { padding: 7px 14px; }
}

/* ===== PAGE HERO (content pages — not full-viewport) ===== */
.page-hero {
  padding-top: calc(68px + clamp(48px, 8vw, 96px));
  padding-bottom: clamp(48px, 8vw, 80px);
  background: linear-gradient(135deg, var(--navy-50) 0%, #fff 60%, #f0f4ff 100%);
  position: relative; overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(27,58,138,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(41,82,179,0.05) 0%, transparent 50%);
}
.page-hero__inner {
  position: relative; z-index: 1;
}
.page-hero .section-label {
  margin-bottom: 14px;
}
.page-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600; line-height: 1.05;
  color: var(--dark); margin-bottom: 0;
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  padding: clamp(56px, 8vw, 96px) 0;
}
/* Tighten the last content section before the CTA band so it doesn't leave a big white gap */
.content-section:has(+ .cta-band) {
  padding-bottom: clamp(24px, 3vw, 36px);
}
.content-section--alt {
  background: var(--navy-50);
}
.content-section--border {
  border-top: 1px solid var(--border);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 820px) {
  .content-grid { grid-template-columns: 1fr; }
}

/* ===== SERVICES (reused from neuro site) ===== */
.services__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  margin-top: 40px;
}
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: clamp(20px, 3vw, 36px);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(27,58,138,0.12);
  transform: translateY(-2px);
}
.service-card__icon {
  width: 48px; height: 48px;
  background: var(--navy-100); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; color: var(--navy);
}
.service-card__icon svg { width: 24px; height: 24px; }
.service-card__title {
  font-family: var(--font-head); font-size: 1.4rem; font-weight: 600;
  color: var(--dark); margin-bottom: 4px;
}
.service-card__tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy);
  margin-bottom: 12px;
}
.service-card__desc {
  font-size: 0.9rem; color: var(--muted); line-height: 1.7;
  margin-bottom: 16px;
}
.service-card__note {
  font-style: italic; font-size: 0.82rem; color: var(--muted);
  border-left: 2px solid var(--border); padding-left: 12px; margin-top: 12px;
}
@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ===== FOCUS LIST ===== */
.focus-list {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 0;
}
.focus-list li {
  font-size: 1rem; line-height: 1.6; color: var(--slate);
  padding: 14px 0 14px 20px;
  border-bottom: 1px solid var(--border);
  border-left: 2px solid var(--navy);
  margin-left: 0; padding-left: 20px;
  position: relative;
}
.focus-list li:first-child { border-top: 1px solid var(--border); }

/* ===== INTRO BODY ===== */
.intro-body {
  font-size: 1.05rem; color: var(--slate); line-height: 1.8;
  margin-bottom: 24px;
  max-width: 680px;
}

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: clamp(20px, 3vw, 32px);
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card--coming {
  background: var(--navy-50);
  border-style: dashed;
}
.blog-card__status {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted);
}
.blog-card__title {
  font-family: var(--font-head); font-size: 1.25rem; font-weight: 600;
  color: var(--dark); line-height: 1.25;
}
.blog-card--coming .blog-card__title {
  color: var(--slate);
}
.blog-card__desc {
  font-size: 0.875rem; color: var(--muted); line-height: 1.7;
  flex: 1;
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* ===== EMPTY STATE ===== */
.empty-state {
  padding: clamp(48px, 8vw, 80px) 0;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.empty-state__icon {
  width: 56px; height: 56px;
  background: var(--navy-100); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--navy);
}
.empty-state__icon svg { width: 28px; height: 28px; }
.empty-state__title {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600; color: var(--dark);
  margin-bottom: 12px;
}
.empty-state__body {
  font-size: 0.95rem; color: var(--muted);
  line-height: 1.75; margin-bottom: 0;
}

/* ===== CTA BAND ===== */
.cta-band {
  padding: clamp(48px, 8vw, 72px) 0;
  background: var(--navy);
  text-align: center;
}
.cta-band__label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.cta-band__title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600; line-height: 1.1;
  color: #fff; margin-bottom: 24px;
}
.cta-band .btn--ghost {
  color: #fff; border-color: rgba(255,255,255,0.4);
}
.cta-band .btn--ghost:hover {
  border-color: #fff; background: rgba(255,255,255,0.08); color: #fff;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark); color: rgba(255,255,255,0.7);
  padding: clamp(40px, 6vw, 64px) 0 24px;
}
.footer__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
  align-items: start;
}
.footer__name {
  font-family: var(--font-head); font-size: 1.2rem;
  color: #fff; margin-bottom: 4px;
}
.footer__cred, .footer__address {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer__links {
  display: flex; flex-direction: column; gap: 10px; padding-top: 4px;
}
.footer__links a {
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer__links a:hover { color: #fff; }
.footer__bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
}
.footer__bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer__entity {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  margin-top: 4px; font-style: italic;
}
.footer__disclaimer {
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
  align-self: flex-end;
}
.footer__verification {
  margin-top: 24px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; justify-content: center; align-items: center;
}
.footer__verification .sx-verified-seal { display: inline-block; }
.footer__verification img { max-width: 220px; height: auto; }
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 6px; }
}

/* ===== APPROACH BLOCK ===== */
.approach-block {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: clamp(24px, 4vw, 40px);
}
.approach-block p {
  font-size: 1rem; color: var(--slate); line-height: 1.8;
}

/* ===== HONEST NOTE ===== */
.honest-note {
  font-style: italic; font-size: 0.88rem; color: var(--muted);
  border-left: 3px solid var(--navy-100);
  padding: 14px 18px;
  background: var(--navy-50);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 24px;
  line-height: 1.7;
}

/* ============================================
   BLOG ARTICLES (added 2026-06-10, v=2)
   ============================================ */

/* Make blog cards clickable links */
a.blog-card--live { cursor: pointer; text-decoration: none; }
a.blog-card--live:hover {
  box-shadow: 0 8px 32px rgba(27,58,138,0.12);
  transform: translateY(-2px);
  border-color: var(--navy-100);
}
.blog-card__cat {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy);
}
.blog-card__more {
  font-size: 0.8rem; font-weight: 600; color: var(--navy);
  margin-top: 4px;
}

/* ===== ARTICLE PAGE ===== */
.article-hero {
  padding-top: calc(68px + clamp(40px, 7vw, 80px));
  padding-bottom: clamp(28px, 4vw, 44px);
  background: linear-gradient(135deg, var(--navy-50) 0%, #fff 70%);
  position: relative; overflow: hidden;
}
.article-hero__inner { max-width: 760px; position: relative; z-index: 1; }
.article-breadcrumb {
  font-size: 0.78rem; color: var(--muted); margin-bottom: 18px;
}
.article-breadcrumb a { color: var(--navy); font-weight: 500; }
.article-breadcrumb a:hover { text-decoration: underline; }
.article-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 600; line-height: 1.08;
  color: var(--dark); margin: 8px 0 18px;
}
.article-meta {
  display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center;
  font-size: 0.82rem; color: var(--muted);
}
.article-meta__dot { width: 3px; height: 3px; border-radius: 50%; background: var(--muted); }

.article-body {
  max-width: 760px; margin: 0 auto;
  padding: clamp(36px, 6vw, 64px) var(--pad-x);
}
.article-body > * + * { margin-top: 22px; }
.article-body p {
  font-size: 1.08rem; line-height: 1.85; color: var(--slate);
}
.article-body h2 {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600; line-height: 1.15; color: var(--dark);
  margin-top: 48px;
}
.article-body h3 {
  font-family: var(--font-body);
  font-size: 1.15rem; font-weight: 600; color: var(--dark);
  margin-top: 32px;
}
.article-body ul, .article-body ol {
  padding-left: 22px; margin-left: 0;
}
.article-body ul li {
  list-style: disc; font-size: 1.05rem; line-height: 1.8;
  color: var(--slate); margin-bottom: 8px; padding-left: 4px;
}
.article-body ol li {
  list-style: decimal; font-size: 1.05rem; line-height: 1.8;
  color: var(--slate); margin-bottom: 8px; padding-left: 4px;
}
.article-body strong { color: var(--dark); font-weight: 600; }
.article-body a { color: var(--navy); font-weight: 500; text-decoration: underline; }

.article-lead {
  font-size: 1.2rem !important; line-height: 1.7 !important;
  color: var(--dark) !important; font-weight: 400;
}
.article-pull {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.3;
  color: var(--navy); font-weight: 500;
  border-left: 3px solid var(--navy); padding: 4px 0 4px 24px;
  margin: 40px 0;
}
.article-takeaways {
  background: var(--navy-50); border: 1px solid var(--navy-100);
  border-radius: var(--radius); padding: clamp(22px, 3vw, 32px);
  margin: 40px 0;
}
.article-takeaways__title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 14px;
}
.article-takeaways ul li {
  list-style: none; position: relative; padding-left: 26px; color: var(--slate);
}
.article-takeaways ul li::before {
  content: ""; position: absolute; left: 0; top: 11px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--navy);
}
.article-disclaimer {
  font-size: 0.85rem; font-style: italic; color: var(--muted);
  border-top: 1px solid var(--border); padding-top: 24px; margin-top: 48px;
}
.article-back {
  display: inline-block; margin-top: 28px;
  font-size: 0.9rem; font-weight: 600; color: var(--navy);
}
.article-back:hover { text-decoration: underline; }

/* Blog hero lead (added 2026-06-10, v=3) */
.page-hero__lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.7; color: var(--slate);
  max-width: 600px; margin-top: 18px;
}

/* Blog hero title — always one line, scales to fit any screen (v=4) */
.page-hero__title--fit {
  white-space: nowrap;
  font-size: clamp(0.9rem, 3.5vw, 2.7rem);
  line-height: 1.12;
}

/* Blog images (added 2026-06-10, v=7) */
.blog-card--live{ padding:0; gap:0; overflow:hidden; border-radius:var(--radius); }
.blog-card__img{ width:100%; aspect-ratio:16/9; object-fit:cover; display:block; background:var(--navy-50); border-radius:var(--radius) var(--radius) 0 0; }
.blog-card__body{ padding:clamp(20px,3vw,28px); display:flex; flex-direction:column; gap:10px; }
.article-feature{ max-width:1000px; margin:28px auto 0; padding:0 var(--pad-x); }
.article-feature img{ width:100%; aspect-ratio:16/9; object-fit:cover; border-radius:var(--radius); display:block; background:var(--navy-50); }

/* Magazine photo hero (added 2026-06-10, v=8) */
.article-hero--photo{ position:relative; min-height:84vh; display:flex; align-items:flex-end; overflow:hidden; padding:0; background:var(--navy-dark); }
.article-hero__bg{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.article-hero__scrim{ position:absolute; inset:0; z-index:1; background:linear-gradient(to top, rgba(13,22,45,.95) 0%, rgba(13,22,45,.55) 28%, rgba(13,22,45,.2) 58%, rgba(13,22,45,.06) 100%); }
.article-hero--photo > .container{ position:relative; z-index:2; padding-top:calc(68px + clamp(36px,6vw,72px)); padding-bottom:clamp(36px,5vw,60px); }
.article-hero--photo .article-breadcrumb{ color:rgba(255,255,255,.82); }
.article-hero--photo .article-breadcrumb a{ color:#fff; }
.article-hero--photo .article-hero__title{ color:#fff; }
.article-hero--photo .article-meta{ color:rgba(255,255,255,.85); }
.article-hero--photo .article-meta a{ color:#fff; }
.article-hero--photo .article-meta__dot{ background:rgba(255,255,255,.55); }
@media (max-width:768px){ .article-hero--photo{ min-height:66vh; } }

/* Split article title: main (serif) + subheader (sans) (v=10) */



/* Align article hero text with the body reading column (same 760 centered) */
.article-hero--photo .container{ max-width:none; }
.article-hero--photo .article-hero__inner{ max-width:none; margin:0; }

/* Blog landing photo hero (v=13) */
.page-hero--photo{ position:relative; min-height:62vh; display:flex; align-items:flex-end; overflow:hidden; padding:0; background:var(--navy-dark); }
.page-hero__img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; }
.page-hero--photo .page-hero__scrim{ position:absolute; inset:0; z-index:1; background:linear-gradient(to top, rgba(13,22,45,.95) 0%, rgba(13,22,45,.55) 30%, rgba(13,22,45,.2) 60%, rgba(13,22,45,.08) 100%); }
.page-hero--photo > .container{ position:relative; z-index:2; padding-top:calc(68px + clamp(40px,7vw,80px)); padding-bottom:clamp(36px,5vw,56px); }
.page-hero--photo .section-label{ color:rgba(255,255,255,.9); }
.page-hero--photo .page-hero__title{ color:#fff; }
.page-hero--photo .page-hero__lead{ color:rgba(255,255,255,.88); }
@media (max-width:768px){ .page-hero--photo{ min-height:52vh; } }

.article-hero--photo .article-hero__inner{ text-align:left; }

/* ===== THERAPY PAGE — 2-column hero (added 2026-06-11, v=20) ===== */
.therapy-hero{ padding-top:calc(68px + clamp(32px,5vw,60px)); padding-bottom:clamp(40px,6vw,72px); background:linear-gradient(135deg,var(--navy-50) 0%,#fff 62%); }
.therapy-hero__grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(32px,5vw,64px); align-items:center; }
.therapy-hero__title{ font-family:var(--font-head); font-size:clamp(2.2rem,4.6vw,3.4rem); line-height:1.08; color:var(--dark); margin:14px 0 18px; }
.therapy-hero__lead{ font-size:1.08rem; line-height:1.8; color:var(--slate); margin-bottom:28px; max-width:520px; }
.therapy-hero__media img{ width:100%; aspect-ratio:4/5; object-fit:cover; object-position:center 30%; border-radius:var(--radius); box-shadow:0 24px 60px rgba(27,58,138,.16); display:block; }
@media (max-width:820px){ .therapy-hero__grid{ grid-template-columns:1fr; gap:28px; } .therapy-hero__media{ max-width:380px; margin:0 auto; } }
.therapy-expect{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:40px; }
.therapy-expect__step{ background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:clamp(20px,3vw,28px); }
.therapy-expect__num{ font-family:var(--font-head); font-size:1.6rem; color:var(--navy); margin-bottom:8px; }
.therapy-expect__t{ font-weight:600; color:var(--dark); margin-bottom:6px; }
.therapy-expect__d{ font-size:.9rem; color:var(--muted); line-height:1.65; }
@media (max-width:760px){ .therapy-expect{ grid-template-columns:1fr; } }
