:root {
  --primary-color: #7c3aed;
  --primary-light: #ede9fe;
  --secondary-color: #7f22fe;
  --dark-bg: #111827;
  --light-bg: #f3f4f6;
  --light-gray-bg: #f9fafb;
  --text-dark: #1f2937;
  --text-light: #f3f4f6;
  --text-white: #ffffff;
  --text-black: #000000;
  --border-light: #e5e7eb;
  --border-medium: #d1d5db;
  --border-dark: #4b5563;
}

/* === Desktop main nav base === */
.main-nav > ul { display: flex; gap: 4px; list-style: none; margin: 0; padding: 0; }
.main-nav a, .main-nav .link {
  appearance: none; border: 0; background: none; font: inherit; color: inherit;
  text-decoration: none; padding: 10px 14px; border-radius: 10px; cursor: pointer;
}
.main-nav a:hover, .main-nav .link:hover { background: #f3f4f6; }
.has-dropdown { position: relative; }

/* === Mega dropdown (desktop) === */
.dropdown-menu {
  position: absolute; left: 50%; transform: translateX(-50%) translateY(8px); top: 100%;
  min-width: 680px; background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
  box-shadow: 0 30px 60px rgba(2,6,23,.15), 0 2px 6px rgba(2,6,23,.06);
  padding: 18px; display: none; z-index: 40;
}
.has-dropdown:focus-within > .dropdown-menu,
.has-dropdown:hover > .dropdown-menu { display: block; }

/* Layout inside the dropdown */
.dropdown-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.dropdown-section { border: 1px solid #f1f5f9; border-radius: 12px; padding: 12px; }
.dropdown-section h4 {
  margin: 0 0 8px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: #475569;
}
.dropdown-list { list-style: none; margin: 0; padding: 0; }
.dropdown-list li a {
  display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 10px;
  text-decoration: none; color: inherit;
}
.dropdown-list li a:hover { background: #f8fafc; }
.chip { font-size: 12px; padding: 2px 8px; border-radius: 999px; background: #f1f5f9; color: #334155; margin-left: auto; }

/* Ensure desktop-only behaviour */
@media (max-width: 991.98px) {
  .dropdown-menu { display: none !important; } /* mobile will use a different UI next step */
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: var(--text-white);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

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

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: 'Inter', sans-serif;
}

p, ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-white);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background-color: #6d28d9;
}

.btn-secondary {
  background-color: var(--text-white);
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
}

.section-title {
  text-align: center;
  margin-bottom: 64px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 500;
  color: var(--text-black);
  margin-bottom: 16px;
}

.section-title p {
  font-size: 18px;
  line-height: 28px;
  color: var(--text-black);
  max-width: 800px;
  margin: 0 auto;
}

/* ===== Shared layout: header, nav, footer ===== */

/* Header */
.site-header {
  background-color: var(--text-white);
  padding: 17px 0;
  box-shadow: 0 4px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img { width: 200px; height: auto; }

.main-nav { display: none; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-size: 18px;
  color: var(--text-black);
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a:hover { color: var(--primary-color); }

.dropdown-icon { width: 20px; height: 20px; }
.call-now-btn { display: none; }

.mobile-nav-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-black);
  margin: 5px 0;
  transition: all .3s;
}

@media (min-width: 992px) {
  .main-nav { display: block; }
  .call-now-btn { display: inline-flex; }
  .mobile-nav-toggle { display: none; }
}

/* highlight current page link */
.site-header .main-nav a.active { color: var(--primary-color); }

/* keep Treatments styled while its menu is open */
.has-dropdown > .link[aria-expanded="true"] {
  color: var(--primary-color);
  background: #f3f4f6;
}


/* Ensure 'Treatments' text matches other nav items */
.site-header .main-nav .link {
  font-size: 18px;
  line-height: 1.2;
  color: var(--text-black);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Footer */
.site-footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 64px 0 24px;
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin-bottom: 30px;
}
.footer-branding h3 { font-size: 32px; font-weight: 500; }
.footer-branding h4 {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-top: 0;
}
.footer-branding p {
  font-size: 16px;
  line-height: 24px;
  margin-top: 24px;
  max-width: 355px;
}

.footer-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer-links-col h5 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}
.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links-col a {
  font-size: 14px;
  line-height: 1.5;
}
.footer-links-col a:hover { text-decoration: underline; }

.footer-divider {
  border: none;
  height: 1px;
  background-color: var(--border-dark);
  margin: 0 0 30px;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  font-size: 14px;
}
.footer-bottom p { font-size: 16px; line-height: 1.2; }

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
  }
  .footer-links-wrapper {
    flex-direction: row;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* Small helpers used in your pages */
.section-padding { padding: 64px 0; }
.text-center { text-align: center; }

/* --- emergency override to force shared layout on desktop --- */
@media (min-width: 992px) {
  .header-container { display: flex !important; justify-content: space-between !important; align-items: center !important; }
  .main-nav { display: block !important; }
  .main-nav > ul { display: flex !important; gap: 32px !important; }
  .call-now-btn { display: inline-flex !important; }
}
@media (min-width: 768px) {
  .footer-top { flex-direction: row !important; justify-content: space-between !important; }
  .footer-links-wrapper { flex-direction: row !important; gap: 32px !important; }
  .footer-bottom { flex-direction: row !important; justify-content: space-between !important; text-align: left !important; }
}

/* ===== Mobile Navigation ===== */

/* Hide nav by default on small screens
.main-nav {
  display: none;
} */

/* When "open" class is added, show it as dropdown */
.main-nav.open {
  display: block;
  position: absolute;
  top: 70px;
  right: 24px;
  background: var(--text-white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 16px;
  z-index: 200;
}

.main-nav.open > ul {
  flex-direction: column;
  gap: 16px;
}

/* Animate hamburger into an "X" */
.mobile-nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

  /* Only the top-level list stacks vertically */
  .main-nav.open > ul { flex-direction: column; gap: 8px;
  }

  /* Submenu becomes inline under its parent item */
  .dropdown-menu {
    position: static;
    display: none;
    border: 0;
    box-shadow: none;
    padding: 0 0 8px 12px;  /* small indent */
    max-height: none;
    overflow: visible;
  }

  /* When JS toggles .open on the li, show submenu */
  .has-dropdown.open > .dropdown-menu { display: block; }
  .has-dropdown.open > a .dropdown-icon { transform: rotate(180deg); }
}

/* mobile: shown inside the opened drawer, stacked */
@media (max-width: 991.98px) {
  .main-nav.open { position: absolute; top: 70px; right: 24px; background: var(--text-white);
                   border: 1px solid var(--border-light); border-radius: 8px; padding: 16px; z-index: 200; }
  .main-nav.open ul { flex-direction: column; gap: 8px; }

  .dropdown-menu {
    position: static;
    display: none;
    border: 0;
    box-shadow: none;
    padding: 0 0 8px 12px; /* indent submenu a bit */
  }
  .has-dropdown.open > .dropdown-menu { display: block; }
  .has-dropdown.open > a .dropdown-icon { transform: rotate(180deg); }
}

/* 1) Keep the panel flush to the trigger (no vertical translate gap) */
.has-dropdown { position: relative; }

.dropdown-menu {
  /* previously: transform: translateX(-50%) translateY(8px); */
  transform: translateX(-50%) translateY(0);
  top: 100%;
  /* optional visual spacing—safe thanks to the hover bridge below */
  margin-top: 8px;
}

/* 2) Invisible hover bridge between the trigger and the dropdown
   so there's no 'dead zone' while moving the mouse down */
.has-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 12px;            /* bridge thickness */
  /* make sure it doesn't block clicks on the menu */
  pointer-events: none;
}

/* === DESKTOP MEGA DROPDOWN — single source of truth === */
@media (min-width: 992px) {
  .site-header { z-index: 1000; }
  .main-nav > ul > li { position: relative; }

  /* Keep the trigger's chevron anim if you want */
  .has-dropdown:hover > a .dropdown-icon { transform: rotate(180deg); }

  /* Centered, card-style menu. No vertical gap. */
  .has-dropdown > .dropdown-menu {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);   /* no translateY */
    margin-top: 0;                  /* no gap */
    min-width: 680px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(2,6,23,.15), 0 2px 6px rgba(2,6,23,.06);
    padding: 18px;
    display: none;
    z-index: 1100;
  }

  /* Show on hover/focus */
  .has-dropdown:hover > .dropdown-menu,
  .has-dropdown:focus-within > .dropdown-menu {
    display: block;
  }

  /* Hover bridge to remove the 'dead zone' between trigger and panel */
  .has-dropdown::after {
    content: "";
    position: absolute;
    left: -16px;
    right: -16px;
    top: 100%;
    height: 14px;          /* the bridge thickness */
    pointer-events: auto;  /* keeps :hover on the <li> while moving down */
    z-index: 1005;         /* below the menu panel (which is 1100) */
  }

  /* Inner layout (keep your existing mega styles) */
  .dropdown-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .dropdown-section { border: 1px solid #f1f5f9; border-radius: 12px; padding: 12px; }
  .dropdown-section h4 {
    margin: 0 0 8px; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: #475569;
  }
  .dropdown-list { list-style: none; margin: 0; padding: 0; }
  .dropdown-list li a {
    display: flex; align-items: center; gap: 10px; padding: 10px; border-radius: 10px; text-decoration: none; color: inherit;
  }
  .dropdown-list li a:hover { background: #f8fafc; }
  .chip { font-size: 12px; padding: 2px 8px; border-radius: 999px; background: #f1f5f9; color: #334155; margin-left: auto; }
}

/* MOBILE: we'll do the slide-over in the next step, so ensure desktop-only rules don't leak down */
@media (max-width: 991.98px) {
  .dropdown-menu { display: none !important; }
}

/* === Mobile slide-over === */
.mobile-sheet{
  position:fixed; inset:0;
  display:grid; grid-template-columns:1fr min(82vw,380px);
  pointer-events:none; z-index:1200;
}
.mobile-sheet .scrim{
  background:rgba(2,6,23,.45);
  opacity:0; transition:opacity .25s ease;
}
.mobile-panel{
  background:#0f172a; color:#fff;
  transform:translateX(100%); transition:transform .32s ease;
  display:flex; flex-direction:column;
}
.mobile-header{
  display:flex; align-items:center; justify-content:space-between;
  padding:16px 16px; border-bottom:1px solid rgba(148,163,184,.15);
}
.close-btn{
  appearance:none; border:1px solid rgba(148,163,184,.25);
  background:transparent; color:#fff; border-radius:10px; padding:8px 10px;
}

.mobile-menu{ padding:8px 10px 20px 10px; overflow:auto; }
.mobile-menu ul{ list-style:none; margin:0; padding:0; }
.mobile-item{ border-bottom:1px solid rgba(148,163,184,.12); }
.mobile-item > a{
  display:block; padding:16px 16px 16px 18px; color:#fff; text-decoration:none;
}
.mobile-item > a:hover{ background:rgba(255,255,255,.06); }

.accordion{
  width:100%; text-align:left; display:flex; align-items:center; gap:10px;
  padding:16px; border:0; background:none; color:#fff; font:inherit; cursor:pointer;
}
.caret{ margin-left:auto; transition:transform .25s ease; }
.mobile-item[aria-expanded="true"] .caret{ transform:rotate(180deg); }

.mobile-sub{
  max-height:0; overflow:hidden; transition:max-height .3s ease;
}
.mobile-sub a{
  display:block; padding:12px 16px 12px 40px; color:#cbd5e1; text-decoration:none;
}
.mobile-sub a:hover{ color:#fff; background:rgba(255,255,255,.06); }

.mobile-cta{
  margin:16px; border-top:1px solid rgba(148,163,184,.15); padding-top:16px; display:grid; gap:10px;
}
.mobile-cta a{
  display:inline-flex; justify-content:center; align-items:center; text-decoration:none;
  padding:12px 14px; border-radius:10px;
}
.btn-solid{ background:var(--primary-color); color:#fff; }
.btn-outline{ border:1px solid rgba(148,163,184,.35); color:#fff; }

/* open state */
.mobile-sheet[aria-hidden="false"]{ pointer-events:auto; }
.mobile-sheet[aria-hidden="false"] .scrim{ opacity:1; }
.mobile-sheet[aria-hidden="false"] .mobile-panel{ transform:none; }

/* Only show on mobile */
@media (min-width: 992px){
  .mobile-sheet{ display:none; }
}

/* Hide the old dropdown-on-mobile entirely (we're using the panel) */
@media (max-width: 991.98px){
  .main-nav{ display:none !important; }
}

/* ===== Keyboard focus rings ===== */

/* Light header/nav (on white) */
.site-header a:focus-visible,
.site-header button:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Items inside the desktop dropdown */
.dropdown-menu a:focus-visible,
.dropdown-menu button:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
  border-radius: 8px;
}

/* Dark mobile slide-over panel */
.mobile-panel a:focus-visible,
.mobile-panel button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
  border-radius: 8px;
}

/* Optional: make focused links in dark panel a touch clearer */
.mobile-sub a:focus-visible {
  background: rgba(255,255,255,.06);
}

/* Space between paragraphs in the Journey/About section */
.journey-text p + p { margin-top: 16px; }   /* increase to 20–24px if you like */

//* Scoped padding fix for pages using the --alt modifier */
.treatments-section > .container.treatments-container--alt {
  padding: 40px 24px;              /* top/bottom 40, left/right 24 */
}

@media (min-width: 768px){
  .treatments-section > .container.treatments-container--alt {
    padding: 48px 32px;
  }
}
@media (min-width: 1200px){
  .treatments-section > .container.treatments-container--alt {
    padding: 56px 48px;
  }
}

/* (Optional) ensure comfy spacing inside each card */
.treatment-card .card-content { padding: 24px; }

/* ===== Treatment card hover ===== */
.treatment-card{
  transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
  will-change: transform, box-shadow;
}

@media (hover: hover) and (pointer: fine){
  .treatment-card:hover{
    transform: translateY(-2px);
    box-shadow:
      0 14px 30px rgba(2, 6, 23, .12),
      0 4px 10px rgba(2, 6, 23, .06);
    border-color: var(--primary-light);
  }

  /* subtle image zoom on hover */
  .treatment-card .card-image{
    transition: transform .35s ease;
  }
  .treatment-card:hover .card-image{
    transform: scale(1.02);
  }
}

/* Keyboard users get the same affordance */
.treatment-card:focus-within{
  transform: translateY(-2px);
  box-shadow:
    0 14px 30px rgba(2, 6, 23, .12),
    0 4px 10px rgba(2, 6, 23, .06);
  border-color: var(--primary-light);
  outline: none; /* rely on your existing focus ring for links/buttons inside */
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce){
  .treatment-card,
  .treatment-card .card-image{
    transition: none;
  }
}
/* Slight press effect on click */
.treatment-card:active { transform: translateY(0); }

/* Pointer cursor so cards feel interactive */
.treatment-card { cursor: default; }
@media (hover: hover) and (pointer: fine){
  .treatment-card:hover { cursor: pointer; }
}

/* Philosophy card */
.philosophy-card{
  max-width: 760px;
  margin: 0 auto;
  background: var(--primary-light);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 6px 24px rgba(2,6,23,.06);
  text-align: center;
}

.philosophy-card h2{
  margin: 0 0 16px;
  font-size: 28px;           /* matches your section headings scale */
  line-height: 1.2;
  color: var(--text-black);
}

.philosophy-card blockquote{
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-black);
}
.philosophy-card blockquote::before,
.philosophy-card blockquote::after{ content: "“"; }
.philosophy-card blockquote::after{ content: "”"; }

.philosophy-card cite{
  display: block;
  margin-top: 20px;
  font-style: normal;
  color: var(--text-dark);
}

/* CTA under the card */
.philosophy-cta{
  text-align: center;
  margin-top: 20px;
}

/* small screens */
@media (max-width: 767.98px){
  .philosophy-card{ padding: 28px 20px; }
  .philosophy-card h2{ font-size: 24px; }
  .philosophy-card blockquote{ font-size: 16px; }
}


.cost-media img{
  width: 100%;
  display: block;
  border-radius: 20px;
  /* keep a pleasing height on desktop; relax on mobile automatically */
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: 0 8px 28px rgba(2,6,23,.10);
}

.cost-text{ max-width: 640px; }

.cost-heading{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-black);
  margin: 0 0 12px;
  font-size: clamp(28px, 4.2vw, 48px); /* big, but scales nicely */
  line-height: 1.15;
}

.cost-lead{
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-black);
}

/* ===== Metrics band (Non-Smoker page) ===== */
.metrics-section{
  background: var(--secondary-color);
  color: var(--text-white);
  padding: 72px 0 64px;
  text-align: center;
}

/* reuse your section title but make it light-on-dark */
.section-title--light h2,
.section-title--light p{ color: var(--text-white); }
.section-title--light{ margin-bottom: 28px; }

.metrics-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: start;
  justify-items: center;
}

.metric{
  padding: 8px 10px;
}

.metric-value{
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
  color: #fff;
}
.metric-value .unit{
  font-weight: 700;
}

.metric-label{
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.5;
  color: #e5e7eb;
}

/* 4-up layout on desktop */
@media (min-width: 992px){
  .metrics-grid{
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
  }
}

/* Split section image to the left text to the right */
.cost-split{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
  align-items:center;
}
@media (min-width:992px){
  .cost-split{ grid-template-columns:1.1fr 1fr; gap:48px; }
}

.cost-media img{
  width:100%;
  border-radius:20px;
  aspect-ratio:16/10;
  object-fit:cover;
  box-shadow:0 8px 28px rgba(2,6,23,.10);
}

.cost-heading{
  font-family:'Inter',sans-serif;
  font-weight:800;
  letter-spacing:-.02em;
  font-size:clamp(28px,4.2vw,48px);
  line-height:1.15;
  margin:0 0 12px;
  color:var(--text-black);
}
.cost-lead{
  font-size:18px;
  line-height:1.7;
  color:var(--text-black);
}

/* === Good news (dark band) === */
.good-news-section{
  background: var(--dark-bg);
  color: var(--text-white);
}

/* Centered heading on dark */
.good-news-title{ margin-bottom: 28px; }
.section-title--light h2,
.section-title--light p{ color: var(--text-white); }
.good-news-section .section-title p{ opacity: .9; }

/* Reuse the shared split layout; just ensure text is light on dark */
.good-news-section .about-content p{ color: #e5e7eb; }

/* Quote 'bubble' */
.good-news-quote{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(148,163,184,.20);           /* slate-300 on dark */
  border: 1px solid rgba(148,163,184,.30);
  color: #e5e7eb;
  box-shadow: 0 2px 8px rgba(2,6,23,.18);
}

/* Image styling matches other splits */
.good-news-section .split-media img{
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(2,6,23,.30);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.good-news-quote{ position: relative; padding-left: 18px; }
.good-news-quote::before{
  content:""; position:absolute; left:8px; top:12px; bottom:12px;
  width:3px; border-radius:6px; background: rgba(255,255,255,.55);
}

/* Transform checklist styles */
.check-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.check-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-black);
}
.check{
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  color: #22c55e;           /* green tick */
  margin-top: 2px;          /* align with first line of text */
}
.check svg{ width: 100%; height: 100%; display: block; }

/* Slightly tighter spacing under the centered subtitle */
.transform-section .section-title{ margin-bottom: 24px; }

/* === Shared split layout (image + text) === */
.section-split{
  display: grid;
  grid-template-columns: 1fr;   /* stack on mobile */
  gap: 24px;
  align-items: center;
}

.section-split .split-media img{
  width: 100%;
  display: block;
  border-radius: 20px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  box-shadow: 0 8px 28px rgba(2,6,23,.10);
}

.section-split .split-text .about-content{
  max-width: 640px;
  margin: 0;
}

@media (min-width: 992px){
  .section-split{
    grid-template-columns: 1.1fr 1fr;  /* image left, text right */
    gap: 48px;
  }
  /* flip sides when you add .section-split--reverse */
  .section-split--reverse .split-media{ grid-column: 2; }
  .section-split--reverse .split-text{  grid-column: 1; }
}

/* Space + left-align the CTA inside the Good News split */
.good-news-split .good-news-cta{
  margin-top: 20px;              /* add breathing room below the text/quote */
  display: inline-flex;          /* shrink to button width */
  justify-content: flex-start;   /* left align in the column */
  gap: 12px;
}

/* also give the quote a bit of bottom margin so they don't touch */
.good-news-split .good-news-quote{
  margin-bottom: 12px;
}

/* a touch more space on wider screens */
@media (min-width: 992px){
  .good-news-split .good-news-cta{ margin-top: 24px; }
}

/* Why wait band background */
.why-wait-section{
  background: var(--primary-light);
}

/* Centered card */
.final-cta-card{
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 8px 24px rgba(2,6,23,.08);
}

/* Title + copy inside the card */
.final-cta-card h3{
  margin: 0 0 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: clamp(22px, 3.2vw, 36px);
  color: var(--text-black);
}
.final-cta-card p{
  margin: 0 0 18px;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Buttons row with breathing room */
.final-cta-actions{
  margin-top: 8px;         /* space between text and buttons */
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Optional tiny lift on hover to match cards */
@media (hover:hover) and (pointer:fine){
  .final-cta-card:hover{
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(2,6,23,.12), 0 4px 10px rgba(2,6,23,.06);
  }
}

/* Compact centered CTA card spacing */
.cta-box{
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 24px;              /* inner breathing room */
}

.cta-box h2{
  margin: 0 0 14px;                /* space under heading */
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.2;
  color: var(--text-black);
}

.cta-box p{
  margin: 0 0 22px;                /* space above the button */
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
}

.cta-box .btn{
  margin-top: 2px;                 /* tiny gap so it doesn’t stick to the paragraph */
}

/* Want extra vertical room for this specific CTA? */
@media (min-width: 992px){
  .cta-section.section-padding{ padding: 80px 0; } /* bump from 64px to 80px on desktop */
}


/* === Shared Page Hero (matches About/Treatments) === */
.page-hero{
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  padding: 64px 0;
}

.page-hero--image{
  background: center/cover no-repeat var(--light-bg);
  background-image: var(--hero-img);
  min-height: 380px;
}
.page-hero--image::before{
  content:"";
  position:absolute; inset:0;
  background: rgba(0,0,0,.16);   /* subtle veil for contrast */
  z-index:-1;
}

.page-hero .container{ position: relative; z-index: 1; }

.page-hero-card{
  width: min(92vw, 1000px);
  margin: 0 auto;
  text-align: center;
  padding: 36px 28px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 16px 40px rgba(2,6,23,.14), 0 2px 8px rgba(2,6,23,.06);
}
.page-hero-card h1{
  margin: 0 0 12px;
  font-family: 'Inter',sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  color: var(--text-black);
}
.page-hero-card p{
  margin: 0 0 20px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: var(--text-dark);
}
.page-hero-card .btn{ margin-top: 4px; }

@media (max-width: 767.98px){
  .page-hero{ padding: 36px 0; }
  .page-hero-card{ padding: 22px 16px; border-radius: 14px; }
}

/* Journey prose: readable width + consistent spacing */
.journey-section .section-title{ margin-bottom: 20px; }

.about-content.journey-prose{
  max-width: 820px;          /* comfortable reading measure */
  margin: 0 auto;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.75;
  color: var(--text-black);
  display: grid;
  gap: 18px;                 /* space between paragraphs */
}

/* optional slightly wider on big screens */
@media (min-width: 1200px){
  .about-content.journey-prose{ max-width: 880px; }
}


/* === Shared Page Hero (use on About/Treatments/Non-Smoker, etc.) === */
.page-hero{
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  padding: 64px 0;
}

/* Image variant (set --hero-img inline) */
.page-hero--image{
  background: center/cover no-repeat var(--light-bg);
  background-image: var(--hero-img);
  min-height: 380px;
}
.page-hero--image::before{
  content:"";
  position:absolute; inset:0;
  background: rgba(0,0,0,.16); /* subtle veil */
  z-index:-1;
}

.page-hero .container{ position: relative; z-index: 1; }

.page-hero-card{
  width: min(92vw, 1000px);
  margin: 0 auto;
  text-align: center;
  padding: 36px 28px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: 0 16px 40px rgba(2,6,23,.14), 0 2px 8px rgba(2,6,23,.06);
}
.page-hero-card h1{
  margin: 0 0 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: -.02em;
  font-size: clamp(28px, 5vw, 48px);
  line-height: 1.15;
  color: var(--text-black);
}
.page-hero-card p{
  margin: 0 0 20px;
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  color: var(--text-dark);
}
.page-hero-card .btn{ margin-top: 4px; }

/* Size modifiers you can opt into per page */
.page-hero--short { min-height: 280px; }
.page-hero--tall  { min-height: 520px; }

@media (max-width: 767.98px){
  .page-hero{ padding: 36px 0; }
  .page-hero-card{ padding: 22px 16px; border-radius: 14px; }
}

/* === Unify section headers across the site ===
   Make .cost-heading match .section-title h2 (32px, weight 500) */
.cost-heading {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0; /* remove the tighter tracking */
}
