/* ============================================================
   OliviaApp — Marketing Site Stylesheet
   ============================================================ */

/* --- Variables --- */
:root {
  --dark:        #352a44;
  --dark-mid:    #4a3d5c;
  --mint:        #e9fff4;
  --mint-deep:   #c5f0da;
  --bg:          #fffefd;
  --bg-soft:     #f7f5f2;
  --accent:      #7c5cbf;
  --accent-light:#ede8f7;
  --gold:        #f0c060;
  --text:        #2a2535;
  --text-muted:  #7a7585;
  --white:       #ffffff;
  --radius:      14px;
  --radius-lg:   24px;
  --radius-pill: 100px;
  --shadow-sm:   0 2px 10px rgba(53,42,68,.07);
  --shadow-md:   0 6px 28px rgba(53,42,68,.11);
  --shadow-lg:   0 16px 56px rgba(53,42,68,.14);
  --transition:  .25s ease;
  --font-head:   'Fraunces', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* --- Typography --- */
.heading-serif {
  font-family: var(--font-head);
  font-weight: 400;
  line-height: 1.15;
}
.heading-serif em {
  font-style: italic;
  color: var(--accent);
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 400; line-height: 1.2; }

.label-tag {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
}

/* --- Buttons --- */
.btn-olivia {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.6rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-olivia i { font-size: .85em; }

.btn-dark {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark-mid);
  border-color: var(--dark-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-mint {
  background: var(--mint);
  color: var(--dark);
  border-color: var(--mint-deep);
}
.btn-mint:hover {
  background: var(--mint-deep);
  color: var(--dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn-outline-dark:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
}

.btn-lg-olivia {
  padding: .9rem 2.2rem;
  font-size: 1rem;
}

/* --- Navbar --- */
.olivia-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}
.olivia-nav.scrolled {
  background: rgba(255,254,253,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(53,42,68,.08);
  padding: .7rem 0;
}
.nav-brand {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -.01em;
}
.nav-brand span { color: var(--accent); }

.nav-links { list-style: none; display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }

/* --- Hero --- */
.hero-section {
  min-height: 100vh;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
}
.blob-1 {
  width: 600px; height: 600px;
  background: var(--mint);
  top: -120px; right: -80px;
}
.blob-2 {
  width: 420px; height: 420px;
  background: var(--accent-light);
  bottom: -60px; left: -100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--mint);
  border: 1px solid var(--mint-deep);
  border-radius: var(--radius-pill);
  padding: .35rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 1.5rem;
  letter-spacing: .04em;
}
.hero-eyebrow .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #3dbb7b;
  display: inline-block;
}

.hero-h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--dark);
  margin-bottom: 1.4rem;
  max-width: 780px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 2.2rem;
  font-weight: 400;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 2.8rem;
  font-size: .85rem;
  color: var(--text-muted);
}
.avatar-stack { display: flex; }
.avatar-stack img {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
  object-fit: cover;
}
.avatar-stack img:first-child { margin-left: 0; }
.proof-stars { color: #f5c842; letter-spacing: -.1em; font-size: .9rem; }

/* Hero visual */
.hero-card-wrap {
  position: relative;
  padding: 1.5rem;
}

.hero-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 540px;
  object-position: center top;
}
.hero-dash-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.dash-topbar {
  background: var(--dark);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dash-topbar .brand-dot {
  font-family: var(--font-head);
  color: var(--white);
  font-size: 1rem;
}
.dash-topbar .brand-dot span { color: var(--mint-deep); }
.dash-dots { display: flex; gap: 5px; }
.dash-dots i { color: rgba(255,255,255,.3); font-size: .7rem; }

.dash-body { padding: 1.4rem; display: flex; flex-direction: column; gap: 1rem; }

.dash-stat-row { display: flex; gap: .75rem; }
.dash-stat {
  flex: 1;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: .85rem 1rem;
}
.dash-stat .stat-label { font-size: .72rem; color: var(--text-muted); font-weight: 500; }
.dash-stat .stat-val {
  font-size: 1.4rem;
  font-family: var(--font-head);
  color: var(--dark);
  font-weight: 600;
  line-height: 1.1;
}
.dash-stat.mint-stat { background: var(--mint); }
.dash-stat.mint-stat .stat-label { color: #3a9968; }
.dash-stat.mint-stat .stat-val { color: #1d6645; }

.dash-appt-row {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: .85rem 1rem;
  display: flex;
  align-items: center;
  gap: .9rem;
}
.appt-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: var(--accent);
  flex-shrink: 0;
}
.appt-info { flex: 1; }
.appt-name { font-weight: 600; font-size: .88rem; color: var(--dark); }
.appt-time { font-size: .77rem; color: var(--text-muted); }
.appt-badge {
  font-size: .7rem;
  font-weight: 600;
  padding: .2rem .65rem;
  border-radius: var(--radius-pill);
  background: var(--mint);
  color: #1d6645;
}
.appt-badge.pending {
  background: #fff6e0;
  color: #9a6800;
}

.mini-chart-row {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 46px;
  padding: .5rem 1rem .5rem;
  background: var(--bg-soft);
  border-radius: var(--radius);
}
.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--accent-light);
  transition: var(--transition);
}
.chart-bar.active { background: var(--accent); }

/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: .65rem 1rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--dark);
  white-space: nowrap;
}
.float-badge .fb-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
}
.fb-green { background: var(--mint); color: #1d6645; }
.fb-purple { background: var(--accent-light); color: var(--accent); }
.badge-tl { top: 0; left: -10px; }
.badge-br { bottom: 30px; right: -10px; }

/* --- Logos strip --- */
.logos-section {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(53,42,68,.06);
  border-bottom: 1px solid rgba(53,42,68,.06);
  background: var(--bg-soft);
}
.logos-label {
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.logos-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.logo-pill {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1.1rem;
  border: 1px solid rgba(53,42,68,.1);
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.logo-pill i { color: var(--accent); }

/* --- Section shared --- */
.section-pad { padding: 6rem 0; }
.section-pad-sm { padding: 4rem 0; }

.section-header { margin-bottom: 3.5rem; }
.section-header p.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 560px;
}
.section-header.centered { text-align: center; }
.section-header.centered p.lead { margin: .75rem auto 0; }

.section-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--dark);
  margin-top: .5rem;
  margin-bottom: .6rem;
}

/* --- Feature pills --- */
.feature-pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 1.8rem;
}
.feature-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-pill);
  padding: .3rem .9rem;
  font-size: .8rem;
  font-weight: 500;
}
.feature-pill i { font-size: .75rem; }

/* --- Pillar cards (3 tools) --- */
.pillar-card {
  background: var(--white);
  border: 1px solid rgba(53,42,68,.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--mint-deep));
  opacity: 0;
  transition: var(--transition);
}
.pillar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.pillar-card:hover::before { opacity: 1; }

.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.3rem;
}
.icon-purple { background: var(--accent-light); color: var(--accent); }
.icon-mint   { background: var(--mint); color: #1d7850; }
.icon-gold   { background: #fff8e0; color: #9a6800; }

.pillar-card h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: .6rem;
}
.pillar-card p { font-size: .92rem; color: var(--text-muted); }

.pillar-list {
  list-style: none;
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.pillar-list li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .88rem;
  color: var(--text);
}
.pillar-list li i {
  color: var(--accent);
  margin-top: .15rem;
  font-size: .8rem;
  flex-shrink: 0;
}

/* --- Feature split sections --- */
.feature-split { padding: 5rem 0; }
.feature-split.alt-bg { background: var(--bg-soft); }
.feature-split.mint-bg { background: var(--mint); }

.feature-text-col h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark);
  margin: .5rem 0 1rem;
}
.feature-text-col p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.feature-check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-bottom: 1.8rem;
}
.feature-check-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .93rem;
  color: var(--text);
}
.feature-check-list li .check-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--mint);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}
.feature-check-list li .check-icon i {
  font-size: .6rem;
  color: #1d7850;
}

/* Feature visual mockup cards */
.feat-mockup {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(53,42,68,.06);
}
.feat-mockup-header {
  background: var(--dark);
  padding: .8rem 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.mock-dots { display: flex; gap: 5px; }
.mock-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.dot-r { background: #ff6b6b; }
.dot-y { background: #ffd06b; }
.dot-g { background: #6bff9e; }
.mock-title { font-size: .78rem; color: rgba(255,255,255,.5); }

.feat-mockup-body { padding: 1.4rem; }

/* Booking mockup */
.booking-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  margin-top: .8rem;
}
.slot-btn {
  padding: .5rem;
  border-radius: 8px;
  border: 1.5px solid rgba(53,42,68,.12);
  text-align: center;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}
.slot-btn.selected {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.slot-btn.taken {
  background: var(--bg-soft);
  color: var(--text-muted);
  text-decoration: line-through;
}

.therapist-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .8rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  margin-bottom: .5rem;
  transition: var(--transition);
}
.therapist-row:hover,
.therapist-row.active {
  border-color: var(--accent);
  background: var(--accent-light);
}
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.t-name { font-size: .88rem; font-weight: 600; color: var(--dark); }
.t-spec { font-size: .76rem; color: var(--text-muted); }
.t-check { margin-left: auto; color: var(--accent); font-size: .85rem; opacity: 0; }
.therapist-row.active .t-check { opacity: 1; }

/* Marketing mockup */
.email-preview {
  border: 1.5px solid rgba(53,42,68,.1);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: .82rem;
}
.email-head {
  background: var(--bg-soft);
  padding: .7rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.email-subject { font-weight: 600; color: var(--dark); }
.email-tag {
  font-size: .7rem;
  padding: .15rem .6rem;
  border-radius: var(--radius-pill);
  background: var(--mint);
  color: #1d7850;
  font-weight: 600;
}
.email-body { padding: .8rem 1rem; color: var(--text-muted); line-height: 1.5; }

.metric-chips {
  display: flex;
  gap: .6rem;
  margin-top: .8rem;
  flex-wrap: wrap;
}
.metric-chip {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: .6rem .9rem;
  text-align: center;
  min-width: 72px;
}
.metric-chip .mc-val {
  font-size: 1.1rem;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--dark);
}
.metric-chip .mc-label { font-size: .7rem; color: var(--text-muted); }

/* Website mockup */
.website-frame {
  border: 1.5px solid rgba(53,42,68,.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.website-nav-mock {
  background: var(--dark);
  padding: .6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wnav-brand {
  font-family: var(--font-head);
  font-size: .9rem;
  color: var(--white);
}
.wnav-brand span { color: var(--mint-deep); }
.wnav-links { display: flex; gap: .75rem; }
.wnav-links span { width: 30px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.2); }
.website-hero-mock {
  background: linear-gradient(135deg, var(--mint) 0%, #d8f5ea 100%);
  padding: 1.5rem 1rem;
  text-align: center;
}
.wmock-h { font-family: var(--font-head); font-size: 1rem; color: var(--dark); margin-bottom: .4rem; }
.wmock-sub { font-size: .72rem; color: var(--text-muted); margin-bottom: .8rem; }
.wmock-btn {
  display: inline-block;
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-pill);
  padding: .3rem .9rem;
  font-size: .72rem;
  font-weight: 500;
}
.website-services-mock {
  padding: .8rem 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}
.ws-card {
  background: var(--bg-soft);
  border-radius: 8px;
  padding: .65rem .5rem;
  text-align: center;
}
.ws-card i { font-size: .9rem; color: var(--accent); margin-bottom: .2rem; }
.ws-card span { display: block; font-size: .68rem; color: var(--text); font-weight: 500; }

/* --- Commitment/Streak section --- */
.streak-section {
  background: var(--dark);
  color: var(--white);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.streak-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(124,92,191,.15);
  pointer-events: none;
}
.streak-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin: .5rem 0 1rem;
}
.streak-h2 em { color: var(--mint-deep); font-style: italic; }
.streak-p { color: rgba(255,255,255,.65); font-size: 1rem; margin-bottom: 2rem; }

.streak-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.tier-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.tier-row:last-child { border-bottom: none; }
.tier-badge {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.tier-bronze { background: rgba(205,127,50,.2); color: #cd7f32; }
.tier-silver { background: rgba(180,180,180,.2); color: #c0c0c0; }
.tier-gold   { background: rgba(240,192,96,.2);  color: var(--gold); }
.tier-plat   { background: rgba(124,92,191,.25); color: #c9b8f0; }
.tier-info { flex: 1; }
.tier-name { font-size: .9rem; font-weight: 600; color: var(--white); }
.tier-desc { font-size: .78rem; color: rgba(255,255,255,.45); }
.tier-discount {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--mint-deep);
}

/* --- Pricing --- */
.pricing-section { background: var(--bg-soft); padding: 6rem 0; }

.price-card {
  background: var(--white);
  border: 1.5px solid rgba(53,42,68,.08);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.price-card:hover { box-shadow: var(--shadow-md); }
.price-card.featured {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.price-badge {
  display: inline-block;
  background: var(--mint);
  color: #1d7850;
  border-radius: var(--radius-pill);
  padding: .2rem .8rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.price-card.featured .price-badge {
  background: var(--mint-deep);
  color: #0f4028;
}

.price-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .3rem;
}
.price-card.featured .price-name { color: var(--white); }

.price-amount {
  display: flex;
  align-items: flex-end;
  gap: .2rem;
  margin: .8rem 0 1.2rem;
  line-height: 1;
}
.price-amount .currency { font-size: 1.2rem; color: var(--text-muted); align-self: flex-start; margin-top: .4rem; }
.price-amount .amount {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 600;
  color: var(--dark);
}
.price-card.featured .price-amount .amount { color: var(--white); }
.price-card.featured .price-amount .currency { color: rgba(255,255,255,.5); }
.price-amount .period { font-size: .85rem; color: var(--text-muted); margin-bottom: .3rem; }
.price-card.featured .price-amount .period { color: rgba(255,255,255,.45); }

.price-divider {
  height: 1px;
  background: rgba(53,42,68,.08);
  margin: 1.2rem 0;
}
.price-card.featured .price-divider { background: rgba(255,255,255,.1); }

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 1.8rem;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text);
}
.price-card.featured .price-features li { color: rgba(255,255,255,.75); }
.price-features li i {
  color: var(--accent);
  margin-top: .15rem;
  font-size: .8rem;
  flex-shrink: 0;
}
.price-card.featured .price-features li i { color: var(--mint-deep); }
.price-features li.dim { color: var(--text-muted); }
.price-features li.dim i { color: rgba(53,42,68,.25); }

/* --- Testimonials --- */
.testimonials-section { padding: 6rem 0; }
.testimonial-card {
  background: var(--white);
  border: 1.5px solid rgba(53,42,68,.07);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.t-stars { color: var(--gold); letter-spacing: .05em; font-size: .95rem; margin-bottom: 1rem; }
.t-quote {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.55;
  margin-bottom: 1.4rem;
}
.t-author { display: flex; align-items: center; gap: .75rem; }
.t-author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
  font-weight: 600;
}
.t-author-name { font-size: .88rem; font-weight: 600; color: var(--dark); }
.t-author-role { font-size: .78rem; color: var(--text-muted); }

/* --- CTA Banner --- */
.cta-section {
  background: var(--dark);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 400px;
  border-radius: 50%;
  background: rgba(233,255,244,.06);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-section h2 em { color: var(--mint-deep); font-style: italic; }
.cta-section p { color: rgba(255,255,255,.6); font-size: 1.05rem; max-width: 480px; margin: 0 auto 2rem; }

/* --- Footer --- */
.olivia-footer {
  background: #1f1929;
  color: rgba(255,255,255,.6);
  padding: 4rem 0 2rem;
}
.footer-brand {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: .6rem;
}
.footer-brand span { color: var(--mint-deep); }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.35); margin-bottom: 1.5rem; }
.footer-col h6 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.55); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  color: rgba(255,255,255,.35);
  font-size: 1rem;
  transition: color var(--transition);
}
.footer-socials a:hover { color: var(--white); }

/* --- Utilities --- */
.text-accent  { color: var(--accent) !important; }
.text-mint    { color: #1d7850 !important; }
.bg-mint      { background: var(--mint) !important; }
.bg-dark-ol   { background: var(--dark) !important; }

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .hero-section { padding: 7rem 0 4rem; min-height: auto; }
  .hero-card-wrap { margin-top: 3rem; }
  .float-badge { display: none; }
  .price-card.featured { transform: none; }
}

@media (max-width: 767.98px) {
  .nav-links { display: none; }
  .hero-h1 { font-size: 2.4rem; }
  .section-pad { padding: 4rem 0; }
  .feature-split { padding: 3.5rem 0; }
  .streak-card { margin-top: 2.5rem; }
}
