/* ═══════════════════════════════════════════════════════
   BUSINESS OF THERAPY — Design System
   ═══════════════════════════════════════════════════════ */

/* ── FONTS ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Montserrat:wght@400;500;600;700&display=swap');

/* ── CSS VARIABLES ──────────────────────────────────────── */
:root {
  --font-head:   'Poppins', sans-serif;
  --font-body:   'Montserrat', sans-serif;
  --navy:        #454D70;
  --pink:        #F391DE;
  --cream:       #FBF8F3;
  --peach:       #FBE6CF;
  --yellow:      #F8E578;
  --radius-card: 32px;
  --radius-lg:   50px;
}

/* ── RESET / BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--cream);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

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

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.bot-head {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}
.bot-body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  color: var(--navy);
}

/* ── CONTAINERS ─────────────────────────────────────────── */
.bot-container    { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.bot-container-md { max-width: 960px;  margin: 0 auto; padding: 0 1.5rem; }
.bot-container-sm { max-width: 680px;  margin: 0 auto; padding: 0 1.5rem; }

/* ── BUTTON ─────────────────────────────────────────────── */
.bot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 220ms ease, transform 150ms ease;
  white-space: nowrap;
}
.bot-btn:hover  { background: #353a54; transform: translateY(-1px); color: #fff; }
.bot-btn:active { transform: translateY(0); }
.bot-btn-sm     { padding: 0.55rem 1.25rem; font-size: 0.875rem; }

/* ── INPUT ──────────────────────────────────────────────── */
.bot-input {
  width: 100%;
  padding: 0.8rem 1.25rem;
  border: 2px solid rgba(69,77,112,0.2);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: white;
  outline: none;
  transition: border-color 200ms;
}
.bot-input:focus { border-color: var(--pink); }

/* ── DECORATIVE TEXT ────────────────────────────────────── */
.bot-underline {
  text-decoration: underline;
  text-decoration-color: var(--pink);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}
.bot-circle {
  position: relative;
  display: inline-block;
}
.bot-circle::after {
  content: '';
  position: absolute;
  inset: -4px -10px;
  border: 3px solid var(--pink);
  border-radius: 50%;
  pointer-events: none;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
.bot-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251,248,243,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 250ms, box-shadow 250ms;
}
.bot-nav.scrolled {
  border-color: rgba(69,77,112,0.1);
  box-shadow: 0 2px 16px rgba(69,77,112,0.07);
}
.bot-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.bot-nav__logo { flex-shrink: 0; line-height: 0; }
nav[aria-label="Main navigation"] { flex: 1; }
.bot-nav__links {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.bot-nav__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: background 180ms;
  background: none;
}
.bot-nav__link:hover { background: rgba(69,77,112,0.07); color: var(--navy); }
.bot-nav__cta { flex-shrink: 0; }

/* Dropdown */
.bot-nav__dropdown { position: relative; }
.bot-nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(69,77,112,0.12);
  padding: 0.5rem;
  min-width: 200px;
  z-index: 10;
}
.bot-nav__dropdown:hover .bot-nav__dropdown-menu,
.bot-nav__dropdown button[aria-expanded="true"] + .bot-nav__dropdown-menu {
  display: flex;
  flex-direction: column;
}
.bot-nav__dropdown-link {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  transition: background 150ms;
}
.bot-nav__dropdown-link:hover { background: var(--cream); }

/* Hamburger */
.bot-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.bot-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 280ms ease, opacity 200ms ease;
}

/* Mobile menu */
.bot-nav__mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.5rem 1.5rem;
  background: var(--cream);
  border-top: 1px solid rgba(69,77,112,0.1);
}
.bot-nav__mobile.open { display: flex; }

@media (max-width: 767px) {
  .bot-nav__links, .bot-nav__cta, nav[aria-label="Main navigation"] { display: none; }
  .bot-nav__hamburger { display: flex; }
}

/* ── HERO ───────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: min(90svh, 680px);
  display: flex;
  align-items: center;
  background: linear-gradient(110deg, #FBE6CF 0%, #FBDCD0 40%, #FBD3E4 100%);
  overflow: hidden;
}
.hero-person {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: auto;
  max-width: 62%;
  object-fit: contain;
  object-position: bottom right;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  margin-right: 18vw;
}
.hero-content { position: relative; z-index: 2; }

/* ── WAVE DIVIDERS ──────────────────────────────────────── */
.bot-wave svg { height: 100px; }

/* ── TIMELINE ───────────────────────────────────────────── */
.tl-scroll { overflow-x: auto; padding-bottom: 1rem; }
.tl-track  { position: relative; display: flex; gap: 1.5rem; min-width: max-content; padding-top: 60px; }
.tl-rail   { position: absolute; top: 48px; left: 20px; right: 20px; height: 2px; background: #454D70; z-index: 0; }
.tl-col    { position: relative; flex: 0 0 250px; }
.tl-dot    { position: absolute; top: -24px; left: 28px; width: 18px; height: 18px; border-radius: 50%; background: #F391DE; z-index: 2; }
.tl-card {
  position: relative;
  height: 260px;
  background: #FBF8F3;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(69,77,112,0.08);
  text-align: left;
  overflow: hidden;
}
.tl-card::before {
  content: ""; position: absolute; top: -10px; left: 30px;
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid #FBF8F3;
}
.tl-card h4 { color: #F391DE; font-weight: 700; font-size: 1.25rem; margin-bottom: .5rem; font-family: var(--font-head); }
.tl-card p  { color: #454D70; font-size: .95rem; line-height: 1.5; font-family: var(--font-body); }
.tl-scroll::-webkit-scrollbar       { height: 8px; }
.tl-scroll::-webkit-scrollbar-thumb { background: rgba(69,77,112,.2); border-radius: 4px; }

/* ── MARQUEE ────────────────────────────────────────────── */
@keyframes botMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-3840px); }
}

/* ── FEATURED IN ────────────────────────────────────────── */
.press-cell { display: flex; align-items: center; justify-content: center; }
.press-cell img {
  width: auto; max-width: 160px; object-fit: contain;
  filter: grayscale(100%); opacity: 0.65;
  transition: filter 250ms ease, opacity 250ms ease;
}
.press-cell img:hover { filter: grayscale(0%); opacity: 1; }

/* ── FOOTER SOCIAL ──────────────────────────────────────── */
.bot-footer-social {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(69,77,112,0.08);
  color: var(--navy);
  text-decoration: none;
  transition: background 200ms;
}
.bot-footer-social:hover { background: rgba(69,77,112,0.18); }

/* ── SCROLL ANIMATIONS ──────────────────────────────────── */
[data-animation] {
  opacity: 0;
  transition: opacity 600ms ease, transform 600ms ease;
}
[data-animation="slide-up"]  { transform: translateY(28px); }
[data-animation="fade-in"]   { transform: none; }
[data-animation].is-visible  { opacity: 1; transform: none; }

[data-animation-delay="100"] { transition-delay: 100ms; }
[data-animation-delay="200"] { transition-delay: 200ms; }
[data-animation-delay="300"] { transition-delay: 300ms; }

[data-stagger] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}
[data-stagger].is-visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: 0ms; }
[data-stagger].is-visible > *:nth-child(2) { opacity:1; transform:none; transition-delay:120ms; }
[data-stagger].is-visible > *:nth-child(3) { opacity:1; transform:none; transition-delay:240ms; }

/* ── UTILITY ────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.focus\:not-sr-only:focus { position: fixed; width: auto; height: auto; }

/* ── NEVE OVERRIDES ─────────────────────────────────────── */
/* Reset Neve header/nav so our custom nav takes over */
.neve-main-nav-wrapper,
.hfg-row,
#header,
.site-header { display: none !important; }

.neve-main-content-container { padding: 0 !important; max-width: 100% !important; }
.container, .container-fluid { max-width: 100% !important; padding: 0 !important; }
.neve-page-content { padding: 0 !important; margin: 0 !important; }
main#content { padding: 0 !important; }
.site-main { padding: 0 !important; }
footer.site-footer { display: none !important; }

/* Grid helper */
.grid { display: grid; }
.md\:grid-cols-2 { grid-template-columns: 1fr; }
.md\:grid-cols-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:order-1 { order: 1; }
  .md\:order-2 { order: 2; }
}
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.items-center  { align-items: center; }
.items-start   { align-items: flex-start; }
.justify-center { justify-content: center; }
.flex { display: flex; }
.text-center { text-align: center; }
.order-1 { order: 1; }
.order-2 { order: 2; }
