/* ============================================
   START HERE PAGE — Therapy Group of DC
   Scoped under .sh-page
   v1.8 — Feb 2026
   ============================================ */

/* --- Reset & Base --- */
.sh-page {
  font-family:var(--font-body);font-size-adjust:var(--body-optical-size,none);
  color: #555;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.sh-page *,
.sh-page *::before,
.sh-page *::after {
  box-sizing: border-box;
}
.sh-page p {
  margin: 0 0 12px;
}
.sh-page img {
  max-width: 100%;
  height: auto;
}
.sh-page a {
  transition: all 0.2s ease;
}

/* --- Layout --- */
.sh-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}
.sh-container--narrow {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 24px;
}
.sh-container--wide {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Shared Elements --- */
.sh-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8e979b;
  margin-bottom: 12px;
}
.sh-label--orange {
  color: #fb9000;
}
.sh-label--center {
  text-align: center;
}
.sh-rainbow-bar {
  height: 3px;
  background: linear-gradient(90deg, #fb9000, #e8724a, #d94f6e, #9b59b6, #6cc8d7, #4aae8c);
}
.sh-rainbow-accent {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, #fb9000, #e8724a, #d94f6e, #9b59b6, #6cc8d7, #4aae8c);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* --- Buttons --- */
.sh-btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.2s ease;
}
.sh-btn--primary {
  background: #fb9000;
  color: #fff;
}
.sh-btn--primary:hover {
  background: #e07d00;
}
.sh-btn--gradient {
  background: linear-gradient(135deg, #fb9000 0%, #e8833a 100%);
  color: #fff;
}
.sh-btn--gradient:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(251, 144, 0, 0.3);
}
.sh-btn--white {
  background: #fff;
  color: #fb9000;
  font-weight: 600;
}
.sh-btn--white:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.sh-btn--glow {
  box-shadow: 0 4px 20px rgba(251, 144, 0, 0.25);
}
.sh-btn--glow:hover {
  box-shadow: 0 4px 32px rgba(251, 144, 0, 0.4);
}


/* ============================================
   SECTION 1 — HERO + PROMPT CARDS
   Continuous unit: warm H1 → bridge → cards
   ============================================ */
.sh-hero {
  background: linear-gradient(170deg, #faf8f5 0%, #f0e9e0 100%);
  padding: 80px 24px 60px;
}
.sh-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}
.sh-hero__location {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #fb9000;
  margin-bottom: 20px;
}
.sh-hero__title {
  font-family:var(--font-display);font-size-adjust:var(--display-optical-size,none);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.2;
  color: #2a2520;
  margin: 0 0 28px;
}
.sh-hero__subtitle {
  font-size: 19px;
  line-height: 1.8;
  color: #555;
  margin: 0 0 24px;
  max-width: 600px;
}
.sh-hero__identity {
  font-size: 16.5px;
  line-height: 1.75;
  color: #5a5550;
  margin: 0;
  max-width: 560px;
}

/* Bridge line */
.sh-hero__bridge {
  font-family:var(--font-body);font-size-adjust:var(--body-optical-size,none);
  font-size: 17px;
  font-weight: 600;
  color: #2a2520;
  margin-top: 0;
  padding-top: 40px;
  margin-bottom: 24px;
}

/* Prompt card grid */
.sh-prompts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sh-prompt {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 28px 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  text-align: left;
  font-family: inherit;
}
.sh-prompt:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
/* First card: full width, dark */
.sh-prompt--featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #2c2c2c 0%, #3a3a3a 100%);
  border: none;
  padding: 36px 32px;
}

/* Top accent bar */
.sh-prompt__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
.sh-prompt:hover .sh-prompt__accent {
  opacity: 1;
}
.sh-prompt--featured .sh-prompt__accent {
  background: linear-gradient(90deg, #fb9000, #e8724a, #d94f6e, #9b59b6, #6cc8d7, #4aae8c);
  opacity: 1;
}

/* Prompt text */
.sh-prompt__text {
  font-family:var(--font-body);font-size-adjust:var(--body-optical-size,none);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: #2a2520;
  margin: 0 0 12px;
}
.sh-prompt--featured .sh-prompt__text {
  font-size: 21px;
  color: #fff;
}

/* Label + arrow row */
.sh-prompt__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sh-prompt__label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #8e979b;
  letter-spacing: 0.5px;
}
.sh-prompt--featured .sh-prompt__label {
  color: rgba(255,255,255,0.5);
}
.sh-prompt__arrow {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  transition: transform 0.2s ease;
}
.sh-prompt:hover .sh-prompt__arrow {
  transform: translateX(4px);
}
.sh-prompt--featured .sh-prompt__arrow {
  color: #fb9000;
}


/* ============================================
   SECTION 2 — INLINE WT CARD (dark)
   Always-visible conversion point
   ============================================ */
.sh-wt-inline {
  background: #2c2c2c;
  padding: 48px 24px;
}
.sh-wt-inline__inner {
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.sh-wt-inline__label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fb9000;
  margin-bottom: 10px;
}
.sh-wt-inline__title {
  font-family:var(--font-display);font-size-adjust:var(--display-optical-size,none);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.35;
}
.sh-wt-inline__text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0;
  max-width: 420px;
}
.sh-wt-inline__cta {
  text-align: center;
}
.sh-wt-inline__fine {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 8px;
  margin-bottom: 0;
}


/* ============================================
   SECTION 3 — WHAT YOU'RE GETTING
   Value-first pricing with reimbursement anchor
   ============================================ */
.sh-value {
  background: #faf8f5;
  padding: 72px 24px;
}
.sh-value__header {
  text-align: center;
  margin-bottom: 44px;
}
.sh-value__title {
  font-family:var(--font-display);font-size-adjust:var(--display-optical-size,none);
  font-size: 28px;
  font-weight: 500;
  color: #2a2520;
  margin: 0 0 12px;
}
.sh-value__subtitle {
  font-size: 16.5px;
  color: #6e787c;
  margin: 0 auto !important;
  line-height: 1.7;
  max-width: 540px;
  text-align: center !important;
}

/* Experience points — 3-column grid */
.sh-value__points {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}
.sh-value__point-icon {
  font-size: 18px;
  color: #fb9000;
  opacity: 0.6;
  margin-bottom: 10px;
}
.sh-value__point-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px;
  line-height: 1.4;
}
.sh-value__point-text {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* Pricing card — two-column */
.sh-pricing {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.sh-pricing__rates-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8e979b;
  margin-bottom: 16px;
}
.sh-pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.sh-pricing__row:last-of-type {
  margin-bottom: 0;
}
.sh-pricing__service {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
}
.sh-pricing__amount {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #555;
}
.sh-pricing__divider {
  height: 1px;
  background: #e6e6e6;
  margin: 20px 0 16px;
}
.sh-pricing__link {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #fb9000;
  text-decoration: none;
  border-bottom: 1px solid rgba(251, 144, 0, 0.3);
}
.sh-pricing__link:hover {
  color: #e07d00;
  border-bottom-color: rgba(224, 125, 0, 0.5);
}

/* Reimbursement anchor */
.sh-pricing__anchor {
  background: #faf8f5;
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
}
.sh-pricing__anchor-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4aae8c;
  margin-bottom: 8px;
}
.sh-pricing__anchor-number {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: #2a2520;
  margin: 0 0 4px;
  line-height: 1;
}
.sh-pricing__anchor-sub {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #6e787c;
  margin: 0 0 12px;
}
.sh-pricing__anchor-note {
  font-family:var(--font-body);font-size-adjust:var(--body-optical-size,none);
  font-size: 13.5px;
  color: #555;
  margin: 0;
  line-height: 1.6;
  font-style: italic;
}


/* ============================================
   SECTION 4 — YOUR FIRST FEW WEEKS
   Timeline / orientation steps
   ============================================ */
.sh-timeline {
  background: #fff;
  padding: 64px 24px;
}
.sh-timeline__title {
  font-family:var(--font-display);font-size-adjust:var(--display-optical-size,none);
  font-size: 26px;
  font-weight: 500;
  color: #2a2520;
  margin: 0 0 40px;
  text-align: center;
}
.sh-timeline__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.sh-timeline__num {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fb9000;
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 10px;
}
.sh-timeline__step-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px;
  line-height: 1.4;
}
.sh-timeline__step-text {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}


/* ============================================
   SECTION 5 — LOCATION + TRUST
   Photo + contact info with SVG map underlay
   ============================================ */
.sh-location {
  background: #f5f0eb;
  padding: 64px 24px;
}
.sh-location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Photo placeholder */
.sh-location__photo {
  width: 100%;
  height: 340px;
  border-radius: 12px;
  overflow: hidden;
}
.sh-location__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info with map underlay */
.sh-location__info {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.sh-location__map-underlay {
  position: absolute;
  inset: -40px;
  opacity: 0.07;
  pointer-events: none;
}
.sh-location__map-underlay svg {
  width: 100%;
  height: 100%;
}
.sh-location__content {
  position: relative;
  padding: 32px 28px;
}
.sh-location__heading {
  font-family:var(--font-display);font-size-adjust:var(--display-optical-size,none);
  font-size: 26px;
  font-weight: 500;
  color: #2a2520;
  margin: 0 0 8px;
}
.sh-location__address {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0 0 24px;
}
.sh-location__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
  color: #555;
  margin-bottom: 24px;
}
.sh-location__contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sh-location__contact-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #8e979b;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 50px;
}
.sh-location__contact-value {
  font-weight: 500;
  color: #333;
}
.sh-location__contact-value a {
  color: #333;
  text-decoration: none;
}
.sh-location__contact-value a:hover {
  color: #fb9000;
}
.sh-location__metro {
  font-size: 14.5px;
  line-height: 1.7;
  color: #6e787c;
  margin: 0;
}


/* ============================================
   SECTION 6 — TRUST STRIP
   Light bg, dual-credential, same pattern as WWT
   ============================================ */
.sh-trust-strip {
  background: #f5f1ec;
  padding: 44px 24px 40px;
}
.sh-trust-strip__inner {
  max-width: 960px;
  margin: 0 auto;
}
.sh-trust-strip__label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  margin-bottom: 20px;
  text-align: center;
}
.sh-trust-strip__label--orange {
  color: #fb9000;
}

/* "Trained at" row */
.sh-trust-strip__trained {
  text-align: center;
  margin-bottom: 28px;
}
.sh-trust-strip__logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.sh-trust-strip__logos--trained {
  gap: 8px;
  max-width: 880px;
  margin: 0 auto;
  justify-content: space-between;
}
.sh-trust-strip__logo--trained img {
  height: 68px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.5;
  transition: all 0.3s ease;
}
.sh-trust-strip__logo--trained img:hover {
  filter: grayscale(0%);
  opacity: 0.85;
}
.sh-trust-strip__divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin-bottom: 28px;
}

/* Training site row */
.sh-trust-strip__training {
  text-align: center;
  margin-bottom: 28px;
}
.sh-trust-strip__tagline {
  font-family:var(--font-body);font-size-adjust:var(--body-optical-size,none);
  font-size: 16px;
  font-style: italic;
  color: rgba(0,0,0,0.4);
  margin: 0 0 20px;
  line-height: 1.5;
}
.sh-trust-strip__logos--site {
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.sh-trust-strip__logo--site img {
  height: 44px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.4;
  transition: all 0.3s ease;
}
.sh-trust-strip__logo--site img:hover {
  filter: grayscale(0%);
  opacity: 0.75;
}
.sh-trust-strip__rainbow-divider {
  height: 1px;
  background: linear-gradient(90deg, #fb9000, #e8724a, #d94f6e, #9b59b6, #6cc8d7, #4aae8c);
  opacity: 0.3;
  margin-bottom: 24px;
}
.sh-trust-strip__stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: rgba(0,0,0,0.4);
  flex-wrap: wrap;
  align-items: center;
}
.sh-trust-strip__stats strong {
  color: rgba(0,0,0,0.7);
  font-family:var(--font-body);font-size-adjust:var(--body-optical-size,none);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
}
.sh-trust-strip__stat-sep {
  color: rgba(0,0,0,0.15);
  font-weight: 300;
}


/* ============================================
   SECTION 7 — BOTTOM CTA
   Gradient background
   ============================================ */
.sh-bottom-cta {
  background: linear-gradient(135deg, #fb9000 0%, #e8833a 100%);
  padding: 56px 24px;
  text-align: center;
}
.sh-bottom-cta__title {
  font-family:var(--font-display);font-size-adjust:var(--display-optical-size,none);
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 10px;
}
.sh-bottom-cta__text {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 28px;
  line-height: 1.65;
}


/* ============================================
   SECTION 8 — INTERNAL LINKS STRIP
   ============================================ */
.sh-links {
  background: #f8f9fa;
  padding: 32px 24px;
}
.sh-links__inner {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 32px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  flex-wrap: wrap;
}
.sh-links__inner a {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
  padding-bottom: 2px;
}
.sh-links__inner a:hover {
  border-bottom-color: currentColor;
}


/* ============================================
   OVERLAY — Prompt Detail Panel
   Same pattern as WWT overlay
   ============================================ */
.sh-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(42,37,32,0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: background 0.4s ease;
  opacity: 0;
  pointer-events: none;
}
.sh-overlay--active {
  opacity: 1;
  pointer-events: auto;
  background: rgba(42,37,32,0.55);
}
.sh-overlay__panel {
  background: #faf8f5;
  border-radius: 20px;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.sh-overlay--active .sh-overlay__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.sh-overlay__scroll {
  overflow-y: auto;
  padding: 48px 44px;
  flex: 1;
}
.sh-overlay__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  color: #8e979b;
  font-size: 18px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  padding: 4px 8px;
  z-index: 2;
}
.sh-overlay__close:hover {
  color: #2a2520;
}
.sh-overlay__accent {
  width: 48px;
  height: 3px;
  border-radius: 2px;
  margin-bottom: 24px;
  opacity: 0.7;
}
.sh-overlay__label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8e979b;
  margin-bottom: 12px;
}
.sh-overlay__quote {
  font-family:var(--font-display);font-size-adjust:var(--display-optical-size,none);
  font-size: 24px;
  font-weight: 400;
  font-style: italic;
  color: #2a2520;
  line-height: 1.35;
  margin: 0 0 24px;
}
.sh-overlay__response {
  font-size: 17px;
  line-height: 1.85;
  color: #555;
  margin: 0 0 32px;
}

/* Detail sections */
.sh-overlay__detail {
  margin-bottom: 24px;
}
.sh-overlay__detail:last-of-type {
  margin-bottom: 32px;
}
.sh-overlay__detail-heading {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0 0 8px;
  line-height: 1.4;
}
.sh-overlay__detail-text {
  font-size: 15.5px;
  line-height: 1.75;
  color: #555;
  margin: 0;
}

/* Divider before CTA */
.sh-overlay__divider {
  height: 1px;
  background: rgba(0,0,0,0.06);
  margin: 0 0 28px;
}

/* CTA bar inside overlay */
.sh-overlay__cta-bar {
  background: #fff;
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.sh-overlay__cta-label {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0 0 4px;
  line-height: 1.3;
}
.sh-overlay__cta-sub {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 13px;
  color: #8e979b;
  margin: 0;
}
.sh-overlay__cta-btn {
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 13px 28px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.sh-overlay__cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Scroll fog */
.sh-overlay__fog {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: linear-gradient(transparent, #faf8f5);
  border-radius: 0 0 20px 20px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.sh-overlay__fog--visible {
  opacity: 1;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .sh-hero {
    padding: 60px 20px 48px;
  }
  .sh-hero__title {
    font-size: 30px;
  }
  .sh-prompts {
    grid-template-columns: 1fr;
  }
  .sh-prompt--featured {
    grid-column: auto;
  }
  .sh-wt-inline__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .sh-wt-inline__text {
    max-width: none;
  }
  .sh-wt-inline__cta {
    text-align: center;
  }
  .sh-value__points {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sh-pricing {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px 24px;
  }
  .sh-timeline__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .sh-location__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .sh-location__photo {
    height: 240px;
  }
  .sh-overlay__scroll {
    padding: 36px 24px;
  }
  .sh-overlay__quote {
    font-size: 22px;
  }
  .sh-overlay__cta-bar {
    flex-direction: column;
    text-align: center;
  }
  .sh-overlay__cta-btn {
    width: 100%;
  }
  .sh-bottom-cta__title {
    font-size: 24px;
  }
  /* Trust strip responsive */
  .sh-trust-strip {
    padding: 36px 20px 32px;
  }
  .sh-trust-strip__logos--trained {
    gap: 12px;
    justify-content: center;
  }
  .sh-trust-strip__logo--trained img {
    height: 52px;
    max-width: 100px;
  }
  .sh-trust-strip__logos--site {
    gap: 16px;
  }
  .sh-trust-strip__logo--site img {
    height: 36px;
    max-width: 80px;
  }
  .sh-trust-strip__stats {
    gap: 14px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .sh-hero__title {
    font-size: 26px;
  }
  .sh-hero__subtitle {
    font-size: 17px;
  }
  .sh-timeline__grid {
    grid-template-columns: 1fr;
  }
  .sh-bottom-cta__title {
    font-size: 22px;
  }
  .sh-trust-strip__logos--trained {
    gap: 10px 16px;
  }
  .sh-trust-strip__logo--trained img {
    height: 44px;
    max-width: 85px;
  }
  .sh-trust-strip__logos--site {
    gap: 12px;
  }
  .sh-trust-strip__logo--site img {
    height: 30px;
    max-width: 70px;
  }
  .sh-trust-strip__stats {
    flex-direction: column;
    gap: 8px;
  }
  .sh-trust-strip__stat-sep {
    display: none;
  }
  .sh-links__inner {
    gap: 20px;
    font-size: 12px;
  }
}