/* MovePhysio — Dark Navy Theme
   Palette: Navy Deep #0A1628 | Teal Primary #00D4AA | Teal Dark #00A888
   Fonts: Sora (headings) | Inter (body)
*/

:root {
  --bg: #0A1628;
  --bg-alt: #1A2D4A;
  --bg-card: #142038;
  --fg: #FFFFFF;
  --fg-muted: #94A3B8;
  --accent: #00D4AA;
  --accent-dark: #00A888;
  --border: rgba(148,163,184,0.12);
  --border-accent: rgba(0,212,170,0.25);
  --teal-glow: rgba(0,212,170,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 4px 24px rgba(0,0,0,0.5), 0 16px 48px rgba(0,0,0,0.35);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Sora', sans-serif;
  line-height: 1.15;
  color: var(--fg);
}

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-teal {
  background: var(--accent);
  color: #0A1628;
}
.btn-teal:hover {
  background: #00F0BE;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,212,170,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--border-accent);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--teal-glow);
}

.btn-sm { padding: 10px 20px; font-size: 13px; }

/* === NAV === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,22,40,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo .logo-dot { color: var(--accent); font-size: 20px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--fg); background: rgba(255,255,255,0.05); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--fg);
}

#mobileMenu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
}
#mobileMenu.open { display: flex; }
#mobileMenu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg-muted);
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
}
#mobileMenu a:last-child { border-bottom: none; }
#mobileMenu .btn { margin-top: 12px; }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://pub-629428d185ca4960a0a73c850d32294b.r2.dev/generated-images/company_194907/3e00881b-290f-4093-9e76-02b220e89760.jpg');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.82) 0%, rgba(10,22,40,0.35) 100%);
  z-index: 1;
}

.hero-glow {
  position: absolute;
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(0,212,170,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,212,170,0.1);
  border: 1px solid var(--border-accent);
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.hero-eyebrow .pulse {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-glow 2s infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0,212,170,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(0,212,170,0); }
}

.hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 20px;
}
.hero h1 .teal { color: var(--accent); }

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-countries {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.country-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 6px;
}

.trust-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
  background: rgba(14, 165, 160, 0.08);
  border: 1px solid rgba(14, 165, 160, 0.2);
  padding: 5px 12px;
  border-radius: 6px;
}
.trust-dot {
  font-size: 10px;
  font-weight: 700;
}
.trust-sep {
  color: var(--border);
  font-size: 14px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--fg-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* === SOCIAL BAR === */
.social-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.social-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.sb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 32px;
  border-right: 1px solid var(--border);
}
.sb-item:last-child { border-right: none; }
.sb-num {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
}
.sb-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* === SECTION SHARED === */
.section-pad {
  padding: 120px 0;
  position: relative;
}
.section-pad::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}
.section-pad.alt {
  background: var(--bg-alt);
}
.section-pad.alt::before {
  opacity: 0.2;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.section-header h2 .teal { color: var(--accent); }
.section-header p {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}

/* === FEATURES === */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--teal-glow);
  border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.feature-tag {
  display: inline-block;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(0,212,170,0.08);
  border: 1px solid var(--border-accent);
  padding: 3px 10px;
  border-radius: 4px;
}

/* === HOW IT WORKS === */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(0,212,170,0.3));
  z-index: 0;
}
.step-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}
.step-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 3px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--accent);
  box-shadow: 0 0 24px rgba(0,212,170,0.2);
}
.step-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-item p {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.55;
}
.how-cta { text-align: center; margin-top: 56px; }

/* === THERAPISTS === */
.therapists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.therapist-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s, border-color 0.2s;
}
.therapist-card:hover { transform: translateY(-4px); border-color: var(--border-accent); }
.therapist-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.therapist-avatar {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--teal-glow);
  border: 2px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}
.therapist-info h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.therapist-spec { font-size: 12px; color: var(--fg-muted); margin-bottom: 8px; }
.therapist-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--fg);
}
.star { color: #F59E0B; }
.reviews { color: var(--fg-muted); font-size: 12px; }
.therapist-license {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
  margin-top: 10px;
}
.therapist-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.therapist-tag {
  font-size: 11px;
  font-weight: 500;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  color: var(--fg-muted);
}
.therapist-card .btn { width: 100%; margin-top: 16px; }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.testi-stars { color: #F59E0B; font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card blockquote {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
  border-left: 2px solid var(--accent);
  padding-left: 16px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--teal-glow);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}
.testi-name { font-size: 14px; font-weight: 600; }
.testi-loc { font-size: 12px; color: var(--fg-muted); }
.testi-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.testi-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--fg-muted);
}

/* === PRICING === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.2s, border-color 0.2s;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.popular {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(0,212,170,0.08) 0%, var(--bg-card) 100%);
}
.price-card.popular::before {
  content: 'Recommended';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.price-name {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.price-amount {
  font-family: 'Sora', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}
.price-amount .per { font-size: 16px; font-weight: 400; color: var(--fg-muted); }
.price-sub { font-size: 13px; color: var(--fg-muted); margin-bottom: 24px; }
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--fg-muted);
}
.check { color: var(--accent); flex-shrink: 0; margin-top: 1px; }

.pricing-faq {
  margin-top: 64px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.faq-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-card);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Sora', sans-serif;
}
.faq-q:hover { color: var(--accent); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-icon {
  color: var(--accent);
  font-size: 18px;
  transition: transform 0.2s;
  flex-shrink: 0;
}

/* === COMPLIANCE === */
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.compliance-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
}
.compliance-icon { font-size: 40px; margin-bottom: 16px; }
.compliance-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.compliance-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.65; }

.security-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.security-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 18px;
}

.compliance-trust {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--fg-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

/* === FINAL CTA === */
.final-cta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(0,212,170,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
  z-index: -1;
}
.cta-content { position: relative; z-index: 1; }
.final-cta h2 {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 16px;
}
.final-cta h2 .teal { color: var(--accent); }
.final-cta p {
  font-size: 18px;
  color: var(--fg-muted);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-countries {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  color: var(--fg-muted);
  font-size: 14px;
}

/* === FOOTER === */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-logo span { color: var(--accent); }
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--fg-muted);
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col li a { font-size: 13px; color: var(--fg-muted); transition: color 0.2s; }
.footer-col li a:hover { color: var(--fg); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 12px; color: var(--fg-muted); }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: var(--fg-muted); transition: color 0.2s; }
.footer-legal a:hover { color: var(--fg); }
.footer-compliance {
  width: 100%;
  font-size: 11px;
  color: rgba(148,163,184,0.5);
  line-height: 1.65;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .features-grid,
  .pricing-grid,
  .therapists-grid,
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; gap: 24px; }
  .steps-row::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .hero { padding: 120px 0 60px; }
  .hero h1 { letter-spacing: -1px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }
  .sb-item { border-right: none; padding: 8px 16px; }
  .features-grid,
  .pricing-grid,
  .therapists-grid,
  .testimonials-grid,
  .compliance-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
}