/* Breakwater Psychology — Site Styles */
/* Fonts: Montserrat (headings/nav), IBM Plex Sans (body) */

:root {
  --navy: #172b4c;
  --salmon: #d9a88c;
  --salmon-hover: #c4946f;
  --forest: #4e6858;
  --forest-hover: #3d5446;
  --green-light: #e9f0ed;
  --green-light-hover: #d4e5dc;
  --coral-light: #f5ebe5;
  --coral-light-hover: #edded5;
  --cream: #FDF8F4;
  --slate: #5c6c7d;
  --blue: #518fec;
  --blue-light: #e0ebfc;
  --bg: #FDF8F4;
  --white: #ffffff;
  --lavender: #EFEFFD;
  --border: #e4e6ef;
  --radius: 10px;
  --radius-sm: 5px;
  --shadow: 0 3px 5px 1px rgba(0,0,0,0.05);
  --max-width: 1140px;
  --nav-height: 72px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'IBM Plex Sans', sans-serif;
  color: var(--navy);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--forest); text-decoration: none; transition: color .2s; }
a:hover { color: var(--salmon-hover); }

h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.3; }
h1 { font-size: 2.4rem; font-weight: 500; margin-bottom: 20px; }
h2 { font-size: 1.7rem; font-weight: 500; margin-bottom: 16px; }
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
p { margin-bottom: 16px; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--green-light);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--forest);
  color: var(--white);
}
/* Ensure nav Book Now keeps white text on hover (overrides .nav-links a:hover) */
.nav-links .btn-primary:hover { color: var(--white); }
.btn-outline {
  background: var(--coral-light);
  color: var(--navy);
  border-color: transparent;
}
.btn-outline:hover {
  background: var(--coral-light-hover);
  color: var(--navy);
}
.btn-green {
  background: var(--green-light);
  color: var(--navy);
  border-color: transparent;
}
.btn-green:hover {
  background: var(--forest);
  color: var(--white);
}
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-lg { padding: 18px 48px; font-size: 1.1rem; }

/* ─── NAV ─── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo img { height: 52px; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  padding: 6px 0;
}
.nav-links a:hover { color: var(--salmon); }
.nav-links a.active { color: var(--salmon); font-weight: 600; }
.nav-links .btn { padding: 10px 24px; }

/* Services dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' \25BE'; font-size: 0.7em; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -12px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  min-width: 220px;
  padding: 8px 0;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
}
.dropdown-menu a:hover { background: var(--cream); }

/* Mega dropdown — two columns */
.dropdown-mega {
  min-width: 420px;
  display: none;
  padding: 16px 0;
}
.nav-dropdown:hover .dropdown-mega,
.nav-dropdown.open .dropdown-mega { display: flex; }
.dropdown-column { flex: 1; }
.dropdown-heading {
  display: block;
  padding: 6px 20px 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate);
}

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: transform .2s, opacity .2s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO ─── */
.hero {
  padding: 56px 0 48px;
  background: var(--white);
}
.hero h1 { max-width: 700px; }
.hero p { max-width: 640px; font-size: 1.1rem; color: var(--slate); margin-bottom: 28px; }
.hero-actions { display: flex; gap: 16px; align-items: center; }
.hero-actions .btn { flex: 1; min-width: 0; text-align: center; }
.hero-actions a:not(.btn) { font-weight: 500; }

/* Hero split — text left, image right */
.hero-split .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-split .hero-image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: contain;
}
/* Hero cover — full-width background image */
.hero-cover {
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.hero-cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(23,43,76,0.82) 0%, rgba(23,43,76,0.55) 100%);
  z-index: 1;
}
.hero-cover .container { position: relative; z-index: 2; max-width: 700px; margin-left: 5%; }
.hero-cover .hero-content { text-align: left; }
.hero-cover .hero-actions { justify-content: flex-start; }
.hero-cover .hero-actions .btn { flex: 0 0 auto; }
.hero-cover h1 { color: var(--white); }
.hero-cover p { color: rgba(255,255,255,0.88); }
.hero-cover .hero-note { color: rgba(255,255,255,0.7); }
.hero-cover .btn-primary { background: var(--green-light); color: var(--navy); }
.hero-cover .btn-outline { background: var(--coral-light); color: var(--navy); border-color: transparent; }
.hero-cover .btn-outline:hover { background: var(--coral-light-hover); color: var(--navy); }
.hero-cover.hero-center .container { margin-left: auto; margin-right: auto; max-width: 800px; }
.hero-cover.hero-center .hero-content { text-align: center; }
.hero-cover.hero-center .hero-actions { justify-content: center; }

.hero-note {
  font-size: 0.85rem;
  color: var(--slate);
  margin-top: 8px;
  margin-bottom: 0;
  text-align: center;
}

/* ─── SECTIONS ─── */
.section { padding: 72px 0; }
.section-alt { background: var(--white); }
.section-cream { background: var(--cream); }
.section-green { background: var(--green-light); }
.section-lavender { background: var(--lavender); }
.section-header { text-align: center; max-width: 740px; margin: 0 auto 48px; }
.section p, .col-grid p, .card p { max-width: 720px; }

/* ─── CARDS ─── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.card h3 { color: var(--navy); }
.card p { color: var(--slate); font-size: 0.95rem; }
.card-features {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
}
.card-features li {
  font-size: 0.9rem;
  color: var(--slate);
  padding: 4px 0;
}
.card .card-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--salmon);
}
.card .card-link:hover { color: var(--salmon-hover); }
.card .card-link::after { content: ' \2192'; }

/* Icon circles for cards — positioned top-right */
.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  position: absolute;
  top: 20px;
  right: 20px;
}
.card-icon.salmon { background: rgba(217,168,140,0.15); color: var(--salmon); }
.card-icon.forest { background: rgba(78,104,88,0.15); color: var(--forest); }
.card-icon.blue { background: rgba(81,143,236,0.15); color: var(--blue); }

/* ─── CONDITION GRID ─── */
.condition-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}
.condition-card {
  width: calc(25% - 1.5rem);
  color: var(--navy);
  text-align: center;
  display: block;
}
.condition-card img {
  width: 152px;
  height: 152px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}
.condition-card img:hover {
  transform: translateY(-4px);
}
.condition-card span {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
}
.condition-desc {
  font-size: 0.85rem;
  color: var(--slate);
  margin: 8px 0 10px;
  line-height: 1.5;
}
.condition-card .card-link {
  display: inline-block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--blue);
  text-decoration: none;
}
.condition-card .card-link:hover { color: var(--forest); }
.condition-card .card-link::after { content: ' \2192'; }

/* ─── IMAGE BREAK ─── */
.image-break {
  padding: 0;
}
.image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 48px 0;
}
.image-row img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ─── COLUMNS ─── */
.col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ─── ABOUT / TEAM ─── */
.team-block {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 0;
}
.team-photo {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  object-fit: cover;
}
.team-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--slate);
  margin-bottom: 16px;
}
.credentials-list { list-style: none; padding: 0; margin-top: 16px; }
.credentials-list li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--slate);
  border-bottom: 1px solid var(--border);
}
.credentials-list li:last-child { border-bottom: none; }

/* ─── STEPS / PROCESS ─── */
.steps { counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  margin-bottom: 32px;
  align-items: start;
}
.step-num {
  counter-increment: step;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--salmon);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-content h3 { margin-bottom: 4px; }
.step-content p { color: var(--slate); font-size: 0.95rem; margin-bottom: 0; }

/* ─── TRUST BAR ─── */
.section-cream.section-trust { padding: 24px 0; }
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 32px;
  padding: 0;
}
.trust-pill {
  display: inline-block;
  padding: 8px 20px;
  background: var(--white);
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  transition: background .2s;
}
a.trust-pill:hover {
  background: var(--border);
  color: var(--navy);
}

/* ─── TESTIMONIALS ─── */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--salmon);
  margin-bottom: 24px;
}
.testimonial blockquote { font-style: italic; font-size: 1.05rem; color: var(--navy); margin-bottom: 12px; }
.testimonial cite { font-size: 0.85rem; color: var(--slate); font-style: normal; }

/* ─── PRICING TABLE ─── */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pricing-table th {
  background: var(--navy);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 16px 24px;
  text-align: left;
  font-size: 0.9rem;
}
.pricing-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table td:last-child { font-weight: 600; color: var(--forest); }

/* ─── FAQ ACCORDION ─── */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question:hover { color: var(--salmon); }
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-question::after { content: '\2212'; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ─── CTA SECTION ─── */
.cta-section {
  text-align: center;
  padding: 72px 0;
  background: var(--navy);
  color: var(--white);
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: var(--cream); max-width: 560px; margin: 0 auto 28px; font-size: 1.05rem; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--blue-light);
  color: var(--navy);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 24px;
  align-items: start;
}
.footer-brand { align-self: center; }
.footer-brand .tagline {
  color: var(--forest);
  font-style: italic;
  margin: 0 0 0 0;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.2;
}
.footer-brand { text-align: center; }
.footer-brand img { height: 260px; margin: 0 auto 0; }
.site-footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--salmon);
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer ul a { color: var(--navy); font-size: 0.9rem; }
.site-footer ul a:hover { color: var(--salmon-hover); }
.footer-legal {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding: 20px 0;
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.6;
  text-align: center;
}
.footer-legal a { color: var(--forest); }
.footer-legal a:hover { color: var(--salmon-hover); }
.footer-legal p { margin-bottom: 0; }

.footer-bottom {
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--slate);
}
.footer-bottom a { color: var(--slate); }
.footer-bottom a:hover { color: var(--salmon-hover); }

/* ─── MOBILE STICKY CTA ─── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  z-index: 90;
  text-align: center;
}
.mobile-cta .btn { width: 100%; }

/* ─── RESPONSIVE ─── */

/* Tablet landscape / small desktop */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 28px; }
  .condition-card { width: calc(25% - 1.5rem); }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .nav-logo img { height: 48px; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .hero-split .container { grid-template-columns: 1fr; }
  .hero-split .hero-image { order: -1; max-width: 100%; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand img { height: 160px; }
  .team-block { grid-template-columns: 1fr; text-align: center; }
  .team-photo { max-width: 280px; margin: 0 auto; }
  .image-row { grid-template-columns: 1fr 1fr; }
  .image-row img { height: 220px; }
  .col-grid { grid-template-columns: 1fr 1fr; }
  .condition-card { width: calc(33.33% - 1rem); }
  .condition-card img { width: 120px; height: 120px; }
  .card { padding: 28px 24px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.05rem; }

  .container { padding: 0 20px; }
  .hero { padding: 36px 0 32px; }
  .section { padding: 40px 0; }

  /* Nav */
  .nav-logo img { height: 44px; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px 20px;
    gap: 0;
    overflow-y: auto;
    z-index: 200;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links .btn { margin-top: 16px; text-align: center; border-bottom: none; }
  .nav-toggle { display: block; }

  /* Dropdown on mobile */
  .dropdown-menu,
  .dropdown-mega {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    min-width: 0 !important;
    flex-direction: column;
    width: 100%;
  }
  .nav-dropdown > a::after { content: ''; }
  .nav-dropdown .dropdown-menu,
  .nav-dropdown .dropdown-mega { display: flex; }
  .dropdown-menu a { padding: 10px 0; border-bottom: 1px solid var(--border); }
  .dropdown-heading { padding: 12px 0 4px; }

  /* Hero */
  .hero-cover { min-height: 320px; }
  .hero h1 { max-width: 100%; }
  .hero p { max-width: 100%; font-size: 0.95rem; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; padding: 12px 16px; font-size: 0.95rem; }
  .hero-note { white-space: normal; font-size: 0.8rem; overflow-wrap: break-word; }
  .hero-split .hero-image { max-width: 100%; }
  .hero-split .hero-image img { width: 100%; border-radius: var(--radius); }

  /* Cards */
  .card-grid { grid-template-columns: 1fr; }
  .card { padding: 24px; }
  .card-icon { position: static; margin-bottom: 12px; }
  .col-grid { grid-template-columns: 1fr; }
  .cta-duo { grid-template-columns: 1fr; }

  /* Condition grid */
  .condition-grid { gap: 1rem; }
  .condition-card { width: calc(33.33% - 0.75rem); }
  .condition-card img { width: 80px; height: 80px; }
  .condition-card span { font-size: 0.8rem; }
  .condition-desc { font-size: 0.78rem; }

  /* Steps */
  .step { grid-template-columns: 40px 1fr; gap: 14px; }
  .step-num { width: 40px; height: 40px; font-size: 0.95rem; }

  /* Image break */
  .image-row { grid-template-columns: 1fr; gap: 1rem; padding: 32px 0; }
  .image-row img { height: 200px; }

  /* Pricing table */
  .pricing-table { font-size: 0.85rem; }
  .pricing-table th,
  .pricing-table td { padding: 12px 14px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-brand img { height: 120px; }
  .site-footer ul { display: inline-block; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Buttons */
  .btn { padding: 12px 24px; font-size: 0.9rem; }
  .btn-lg { padding: 14px 32px; font-size: 1rem; }
  .btn-sm { padding: 8px 20px; font-size: 0.82rem; }

  /* CTA section */
  .cta-section { padding: 48px 0; }
  .cta-section p { font-size: 0.95rem; }

  /* Testimonials */
  .testimonial { padding: 24px; }
  .testimonial blockquote { font-size: 0.95rem; }

  /* FAQ */
  .faq-question { padding: 16px 20px; font-size: 0.9rem; }
  .faq-answer-inner { padding: 0 20px 16px; font-size: 0.9rem; }

  /* Mobile sticky CTA */
  .mobile-cta { display: block; }
  body { padding-bottom: 68px; }
}

/* Small phones */
@media (max-width: 480px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.15rem; }

  .container { padding: 0 16px; }
  .hero { padding: 24px 0 20px; }
  .hero-cover { min-height: 280px; }
  .section { padding: 32px 0; }

  /* Condition cards 2-col on tiny screens */
  .condition-card { width: calc(50% - 0.5rem); }
  .condition-card img { width: 64px; height: 64px; }

  /* Team block */
  .team-block { gap: 24px; }
  .team-photo { max-width: 200px; }

  /* Pricing table horizontal scroll */
  .pricing-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  /* Footer */
  .footer-brand img { height: 80px; }
  .footer-bottom { font-size: 0.75rem; }

  /* Steps */
  .step { grid-template-columns: 36px 1fr; gap: 12px; margin-bottom: 24px; }
  .step-num { width: 36px; height: 36px; font-size: 0.85rem; }

  /* Trust bar stacks on small phones */
  .trust-bar { gap: 10px; flex-direction: column; align-items: center; }
  .trust-pill { font-size: 0.78rem; padding: 6px 16px; }

  /* Horizontal timeline fix */
  .htl-step { min-width: auto; }
}

/* ─── CTA DUO ─── */
.cta-duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 700px;
  margin: 0 auto;
}
.cta-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  text-align: center;
}
.cta-card svg {
  margin-bottom: 16px;
}
.cta-card p {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.cta-card .btn {
  width: 100%;
}

/* Override SimplePractice default widget styles */
.spwidget-button-wrapper { text-align: center !important; }
.spwidget-button.btn { color: var(--navy) !important; background: none; border: none; }

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-0 { margin-bottom: 0; }
.mb-32 { margin-bottom: 32px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* ─── LISTS IN CONTENT ─── */
.content-list { margin: 16px 0 24px 24px; }
.content-list li { margin-bottom: 8px; font-size: 0.95rem; color: var(--slate); }

/* ─── HERO VARIANTS ─── */
.btn-hero {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.btn-hero:hover {
  background: var(--green-light);
  color: var(--navy);
}
.hero-img-circle {
  border-radius: 50% !important;
  aspect-ratio: 1/1;
  object-fit: cover !important;
}

/* ─── SERVICE ACCORDION ─── */
.svc-acc-item {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
}
.svc-acc-btn {
  width: 100%;
  text-align: left;
  background: var(--white);
  border: none;
  padding: 18px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: inherit;
  transition: background .2s;
}
.svc-acc-btn:hover,
.svc-acc-btn.open {
  background: var(--acc-tint, var(--green-light));
}
.svc-acc-btn .svc-acc-icon {
  font-size: 1.3rem;
  transition: transform .3s ease;
}
.svc-acc-btn.open .svc-acc-icon {
  transform: rotate(45deg);
}
.svc-acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  background: var(--white);
}
.svc-acc-body.open {
  max-height: 500px;
}
.svc-acc-inner {
  padding: 0 24px 20px;
  color: var(--slate);
  font-size: .95rem;
  line-height: 1.7;
}
.svc-acc-inner a {
  color: var(--forest);
  text-decoration: underline;
}

/* ─── HORIZONTAL TIMELINE ─── */
.htl {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  padding-top: 40px;
  gap: 0;
}
.htl::before {
  content: "";
  position: absolute;
  top: 58px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: var(--htl-line, var(--lavender));
  border-radius: 2px;
}
.htl-step {
  flex: 1;
  text-align: center;
  position: relative;
  max-width: 280px;
  padding: 0 16px;
}
.htl-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--htl-dot, var(--lavender));
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.htl-step h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.htl-step p {
  color: var(--slate);
  font-size: .9rem;
  line-height: 1.6;
}
@media(max-width:700px) {
  .htl { flex-direction: column; align-items: center; gap: 24px; padding-top: 0; }
  .htl::before { display: none; }
  .htl-step { max-width: 100%; }
}

/* ─── HORIZONTAL TABS ─── */
.htabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.htab {
  padding: 12px 22px;
  font-size: .95rem;
  font-weight: 600;
  color: var(--slate);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}
.htab:hover { color: var(--navy); }
.htab.active {
  color: var(--navy);
  border-bottom-color: var(--tab-accent, var(--salmon));
}
.htab-panel {
  display: none;
  color: var(--slate);
  font-size: .97rem;
  line-height: 1.7;
  max-width: 680px;
}
.htab-panel.active { display: block; }
.htab-panel h3 { color: var(--navy); margin-bottom: 8px; }
.htab-panel a { color: var(--forest); text-decoration: underline; }

/* ─── PILL TABS ─── */
.pill-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.pill-tab {
  padding: 10px 22px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--slate);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  transition: all .2s;
}
.pill-tab:hover {
  color: var(--navy);
  border-color: var(--navy);
}
.pill-tab.active {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}
.pill-pane {
  display: none;
  max-width: 680px;
  margin: 0 auto;
}
.pill-pane.active { display: block; }
.pill-pane h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 10px; }
.pill-pane p { color: var(--slate); font-size: .97rem; line-height: 1.7; }

/* ─── PILL ROTATOR (inline, colored pills) ─── */
.pill-rotator {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}
.pill-rotator-btn {
  padding: 10px 24px;
  border-radius: 50px;
  border: 2px solid var(--forest);
  background: transparent;
  color: var(--forest);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}
.pill-rotator-btn.active {
  background: var(--forest);
  color: var(--white);
}
.pill-rotator-panel {
  display: none;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  max-width: 760px;
  margin: 0 auto;
}
.pill-rotator-panel.active { display: block; }
.pill-rotator-panel h3 { color: var(--forest); margin-bottom: 12px; }
.pill-rotator-panel p { color: var(--slate); font-size: 1rem; margin-bottom: 0; }

/* ─── STATS GRID ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  text-align: center;
}
.stat-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--navy);
}
.stat-label {
  color: var(--navy);
  font-size: .93rem;
  margin: 6px 0 0;
  opacity: .8;
}
@media(max-width:600px) {
  .stats-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ─── COLOR CARD GRID ─── */
.color-card-grid {
  display: grid;
  gap: 20px;
}
.color-card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.color-card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.color-card {
  border-radius: var(--radius);
  padding: 28px;
}
.color-card h3 { color: var(--navy); margin-bottom: 8px; }
.color-card p { color: var(--navy); font-size: .93rem; line-height: 1.6; margin: 0; opacity: .85; }
@media(max-width:768px) {
  .color-card-grid.cols-3,
  .color-card-grid.cols-2 { grid-template-columns: 1fr; }
}

/* ─── BORDER CARD GRID ─── */
.border-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.border-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--forest);
}
.border-card h3 { margin-bottom: 8px; }
.border-card p { color: var(--slate); font-size: 0.9rem; margin: 0; }
@media(max-width:768px) {
  .border-card-grid { grid-template-columns: 1fr; }
}

/* ─── ICON GRID (life transitions 3x3) ─── */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.icon-grid-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.icon-grid-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.icon-grid-card h3 { font-size: 1rem; margin-bottom: 4px; }
.icon-grid-card p { color: var(--slate); font-size: 0.85rem; margin: 0; }
@media(max-width:768px) {
  .icon-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:480px) {
  .icon-grid { grid-template-columns: 1fr; }
}

/* ─── FLIP CARDS ─── */
.reveal-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.reveal-card {
  perspective: 800px; min-height: 220px; cursor: pointer;
}
.reveal-card-inner {
  position: relative; width: 100%; height: 100%; min-height: 220px;
  transition: transform 0.6s; transform-style: preserve-3d;
}
.reveal-card:hover .reveal-card-inner { transform: rotateY(180deg); }
.reveal-card-front, .reveal-overlay {
  position: absolute; inset: 0; backface-visibility: hidden;
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  padding: 36px 28px;
}
.reveal-card-front h3 {
  font-size: 1.15rem; color: var(--navy); text-align: center; margin: 0;
}
.reveal-overlay {
  background: var(--white); color: var(--navy); box-shadow: var(--shadow);
  font-size: 1.02rem; line-height: 1.7; text-align: center;
  transform: rotateY(180deg);
}
@media(max-width:768px) {
  .reveal-grid { grid-template-columns: 1fr; }
  .reveal-card, .reveal-card-inner { min-height: 180px; }
}

/* ─── VERTICAL TABS ─── */
.vtabs { display: flex; gap: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.vtabs-nav { display: flex; flex-direction: column; min-width: 220px; border-right: 1px solid var(--border); background: var(--white); }
.vtab-btn {
  padding: 20px 24px; border: none; background: none; text-align: left; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 500;
  color: var(--slate); border-left: 3px solid transparent; transition: all 0.2s;
}
.vtab-btn:hover { color: var(--navy); }
.vtab-btn.active { background: var(--blue-light); color: var(--navy); border-left-color: var(--blue); font-weight: 600; }
.vtab-btn .vtab-abbr { display: block; font-size: 0.75rem; color: var(--slate); font-weight: 400; margin-top: 2px; opacity: 0.7; }
.vtab-btn.active .vtab-abbr { color: var(--forest); opacity: 0.8; }
.vtabs-content { flex: 1; padding: 40px; display: flex; flex-direction: column; justify-content: center; min-height: 320px; }
.vtab-panel { display: none; animation: vtabFade 0.3s ease; }
.vtab-panel.active { display: block; }
.vtab-panel h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 6px; }
.vtab-panel .vtab-label { font-size: 0.85rem; color: var(--salmon); font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 16px; }
.vtab-panel p { font-size: 1.05rem; line-height: 1.7; color: var(--slate); margin: 0; }
@keyframes vtabFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 768px) {
  .vtabs { flex-direction: column; }
  .vtabs-nav { flex-direction: column; min-width: unset; border-right: none; border-bottom: 1px solid var(--border); }
  .vtab-btn { border-left: none; border-bottom: 1px solid var(--border); padding: 16px 20px; }
  .vtab-btn.active { border-left: none; border-bottom-color: var(--forest); }
  .vtab-btn .vtab-abbr { display: inline; margin-top: 0; margin-left: 6px; }
  .vtabs-content { padding: 24px 20px; min-height: unset; }
}

/* ─── STICKY SPLIT LIST ─── */
.for-you-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.for-you-sticky { position: sticky; top: 100px; }
.for-you-list { display: flex; flex-direction: column; }
.for-you-item { padding: 20px 0; border-bottom: 1px solid var(--border); display: flex; align-items: baseline; gap: 14px; font-size: 1.05rem; line-height: 1.7; }
.for-you-marker { flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--salmon); margin-top: 8px; }
@media(max-width:768px) {
  .for-you-layout { grid-template-columns: 1fr; gap: 24px; }
  .for-you-sticky { position: static; }
}

/* ─── CHECKLIST ─── */
.check-list { max-width: 720px; margin: 0 auto; }
.check-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.check-item p { margin: 0; font-size: 1.05rem; color: var(--navy); }

/* ─── CAROUSEL ─── */
.carousel { position: relative; max-width: 640px; margin: 0 auto; }
.carousel-track { overflow: hidden; border-radius: var(--radius); }
.carousel-inner { display: flex; transition: transform 0.45s ease; }
.carousel-slide {
  min-width: 100%;
  padding: 40px 48px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--navy);
}
.carousel-slide .carousel-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--coral-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.carousel-arrows { display: flex; justify-content: space-between; position: absolute; top: 50%; left: -20px; right: -20px; transform: translateY(-50%); pointer-events: none; }
.carousel-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  box-shadow: var(--shadow); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  pointer-events: auto; transition: background 0.2s;
}
.carousel-arrow:hover { background: var(--coral-light); }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.carousel-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); border: none; cursor: pointer;
  transition: background 0.2s;
}
.carousel-dot.active { background: var(--salmon); }
@media(max-width:768px) {
  .carousel-slide { padding: 28px 24px; font-size: 1rem; }
  .carousel-arrows { left: -10px; right: -10px; }
  .carousel-arrow { width: 34px; height: 34px; }
}

/* ─── COMPARISON TABLE ─── */
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 0.93rem;
}
.compare-table thead th {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 18px 24px;
  text-align: left;
}
.compare-table thead th:first-child {
  background: var(--cream);
  color: var(--navy);
  width: 28%;
}
.compare-table thead th:nth-child(2) {
  background: var(--coral-light);
  color: var(--navy);
}
.compare-table thead th:nth-child(3) {
  background: var(--green-light);
  color: var(--navy);
}
.compare-table td {
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.6;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:first-child {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
  background: var(--white);
  box-shadow: 2px 0 8px rgba(0,0,0,0.06);
  position: relative;
  z-index: 1;
}
.compare-table td:nth-child(2) { background: rgba(245,235,229,0.18); }
.compare-table td:nth-child(3) { background: rgba(233,240,237,0.18); }
@media(max-width:768px) {
  .compare-table { font-size: 0.82rem; }
  .compare-table thead th,
  .compare-table td { padding: 10px 14px; }
}

/* ─── FOOTER SPACING FIX ─── */
.site-footer .footer-h4-mt { margin-top: 24px; }

/* ─── TRUST BAR SELECTOR FIX ─── */
.section-trust { padding: 24px 0; }
