/* ════════════════════════════════════════════════
   STRATEGIC OAKMONT MEDICAL SERVICES — style.css
════════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  color: #1a2e3b;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  opacity: 0;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ── CSS VARIABLES ── */
:root {
  --green:       #2d7a3a;
  --green-dk:    #1f5a29;
  --green-lt:    #e8f5ea;
  --blue:        #2e5f8a;
  --navy:        #1a2e3b;
  --bg-light:    #f4f7f4;
  --text-muted:  #4a5e6a;
  --text-light:  #6b8898;
  --text-faint:  #a8bcc8;
  --green-glow:  rgba(45,122,58,0.15);
  --blue-glow:   rgba(46,95,138,0.15);
  --font-head:   'Cormorant Garamond', Georgia, serif;
  --font-body:   'DM Sans', system-ui, sans-serif;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
p  { color: var(--text-muted); line-height: 1.8; font-weight: 300; }

/* ── HELPERS ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 60px; }
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green); margin-bottom: 14px;
}
.section-head { text-align: center; margin-bottom: 56px; }
.section-head h2 { position: relative; display: inline-block; padding-bottom: 18px; }
.section-head h2::after {
  content: '';
  position: absolute; left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 0; height: 3px;
  background: var(--green);
  transition: width 0.6s ease;
}
.section-head h2.visible::after { width: 60px; }
.green-line {
  display: block;
  width: 0; height: 3px;
  background: var(--green);
  margin: 0 auto 32px;
  transition: width 0.6s ease;
}
.green-line.visible { width: 60px; }

/* ── SCROLL ANIMATIONS ── */
[data-animate] { transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up   { opacity: 0; transform: translateY(40px); }
.fade-left { opacity: 0; transform: translateX(-40px); }
.fade-right{ opacity: 0; transform: translateX(40px); }
.visible   { opacity: 1 !important; transform: none !important; }

/* ── BUTTONS ── */
.btn-primary, .btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  letter-spacing: 0.04em; padding: 14px 32px; border-radius: 4px;
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.25s ease; position: relative; overflow: hidden;
  text-decoration: none;
}
.btn-primary { background: var(--green); color: #fff; border-color: var(--green); }
.btn-primary:hover { background: var(--green-dk); border-color: var(--green-dk); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,122,58,0.3); }
.btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.7); }
.btn-secondary:hover { background: rgba(255,255,255,0.12); border-color: #fff; }
.btn-white { background: #fff; color: var(--green); border-color: #fff; }
.btn-white:hover { background: transparent; color: #fff; }

.ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  width: 100px; height: 100px; pointer-events: none;
  transform: translate(-50%,-50%) scale(0);
  animation: rippleEffect 0.7s ease-out forwards;
}

/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #d4e8d4;
  height: 100px;
  transition: box-shadow 0.3s ease;
}
#navbar.scrolled { box-shadow: 0 4px 24px rgba(26,46,59,0.12); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100px; padding: 0 60px;
}
.nav-brand { display: flex; align-items: center; margin-left: 32px; }
.nav-brand img { height: 110px; width: auto; display: block; }
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links .nav-link {
  font-size: 15px; font-weight: 400; letter-spacing: 0.04em;
  color: var(--navy); position: relative; padding-bottom: 4px;
  transition: color 0.2s;
}
.nav-links .nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--green);
  transition: width 0.3s ease;
}
.nav-links .nav-link:hover,
.nav-links .nav-link.active { color: var(--green); }
.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after { width: 100%; }
.nav-cta {
  font-size: 14px; padding: 10px 22px;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  background: #fff; padding: 16px 24px 24px;
  border-top: 1px solid #d4e8d4;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.mobile-menu .nav-link {
  display: block; padding: 12px 0; font-size: 16px;
  color: var(--navy); font-weight: 400; border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color 0.2s;
}
.mobile-menu .nav-link:hover,
.mobile-menu .nav-link.active { color: var(--green); }
.mobile-menu .btn-primary { align-self: flex-start; font-size: 15px; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
#footer {
  background: var(--navy);
  border-top: 3px solid var(--green);
  padding: 64px 80px 0;
}
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; align-items: center; text-align: center; }
.footer-logo-wrap {
  background: #fff; border-radius: 10px;
  padding: 12px 16px; display: inline-block;
  margin-bottom: 20px;
}
.footer-logo-wrap img { height: 90px; width: auto; display: block; }
.footer-brand p {
  font-size: 14px; font-weight: 300; color: var(--text-faint);
  line-height: 1.8; max-width: 260px;
}
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social-link {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-faint); transition: background 0.2s, color 0.2s;
}
.footer-social-link:hover { background: var(--green); color: #fff; }
.footer-col h4 {
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff; margin-bottom: 10px;
}
.footer-underline {
  width: 30px; height: 2px; background: var(--green); margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px; font-weight: 300; color: var(--text-faint);
  transition: color 0.2s, padding-left 0.2s; position: relative; padding-left: 0;
}
.footer-col ul li a::before {
  content: '→'; position: absolute; left: -18px;
  opacity: 0; transition: opacity 0.2s, left 0.2s;
  color: var(--green);
}
.footer-col ul li a:hover { color: var(--green); padding-left: 18px; }
.footer-col ul li a:hover::before { opacity: 1; left: 0; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; font-weight: 300; color: var(--text-faint);
  margin-bottom: 12px;
}
.footer-contact-list li svg { flex-shrink: 0; margin-top: 2px; }
.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; margin-top: 0;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 16px;
}
.footer-bar span { font-size: 13px; font-weight: 300; color: var(--text-light); }
.footer-bar-center { text-align: center; }
.footer-legal-links { text-align: right; }
.footer-legal-links a {
  font-size: 13px; font-weight: 300; color: var(--text-light);
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: var(--green); }

/* ═══════════════════════════════════════
   HERO (home)
═══════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  background: url('/images/hero-lab.jpg') center/cover no-repeat;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,46,59,0.88) 0%, rgba(45,122,58,0.60) 100%);
  z-index: 0;
}
.hero-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero-particle {
  position: absolute; border-radius: 50%;
  animation: drift 10s infinite alternate ease-in-out;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 140px 60px 80px;
  max-width: 760px;
}
.hero-label {
  display: block; font-size: 12px; font-weight: 400;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 24px;
  opacity: 0; transform: translateY(-20px);
  animation: fadeDown 0.6s ease 0.2s forwards;
}
.hero-title {
  color: #fff; margin-bottom: 24px;
  font-family: var(--font-head); font-weight: 700;
}
.hero-sub {
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,0.82); max-width: 580px;
  line-height: 1.75; margin-bottom: 40px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.6s ease 0.7s forwards;
}
.hero-btns {
  display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.6s ease 0.9s forwards;
}
.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; cursor: pointer;
  animation: bounce 1.5s ease-in-out infinite;
  transition: opacity 0.3s;
}
.scroll-indicator svg { width: 24px; height: 24px; color: rgba(255,255,255,0.5); }

/* Hero particles */
.p1 { width: 80px; height: 80px; top: 15%; left: 5%; background: rgba(45,122,58,0.12); animation-duration: 8s; animation-delay: 0s; }
.p2 { width: 120px; height: 120px; top: 10%; right: 8%; background: rgba(46,95,138,0.1); animation-duration: 11s; animation-delay: -2s; }
.p3 { width: 60px; height: 60px; bottom: 20%; left: 15%; background: rgba(255,255,255,0.06); animation-duration: 7s; animation-delay: -1s; }
.p4 { width: 200px; height: 200px; top: 40%; right: 5%; background: rgba(45,122,58,0.06); animation-duration: 14s; animation-delay: -3s; }
.p5 { width: 40px; height: 40px; bottom: 30%; right: 20%; background: rgba(255,255,255,0.07); animation-duration: 9s; animation-delay: -4s; }
.p6 { width: 90px; height: 90px; top: 60%; left: 40%; background: rgba(46,95,138,0.08); animation-duration: 12s; animation-delay: -5s; }

/* ── INTRO STRIP ── */
#intro { background: #fff; padding: 80px 0; }
.intro-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; }
.intro-item { text-align: center; }
.intro-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--green-lt);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: box-shadow 0.3s ease;
}
.intro-item:hover .intro-icon-wrap {
  box-shadow: 0 0 0 8px rgba(45,122,58,0.12);
}
.intro-item h3 { font-size: 18px; font-weight: 500; font-family: var(--font-body); color: var(--navy); margin-bottom: 10px; }
.intro-item p { font-size: 15px; }

/* ── ABOUT SNAPSHOT ── */
#about-snap { background: var(--bg-light); padding: 96px 0; }
.about-grid { display: grid; grid-template-columns: 55% 45%; gap: 64px; align-items: center; }
.quote-card {
  background: #fff; border-left: 4px solid var(--green);
  border-radius: 8px; padding: 40px;
  box-shadow: 0 8px 32px rgba(45,122,58,0.1);
}
.quote-deco { display: flex; gap: 4px; margin-bottom: 24px; }
.quote-deco span {
  display: block; width: 24px; height: 3px;
  background: var(--green); border-radius: 2px;
}
.quote-text {
  font-family: var(--font-head); font-size: 26px; font-style: italic;
  font-weight: 700; color: var(--navy); line-height: 1.4; margin-bottom: 12px;
}
.quote-sub { font-size: 13px; color: var(--text-light); margin-bottom: 24px; }
.quote-rule { border: none; border-top: 1px solid #e0e8e0; margin-bottom: 16px; }
.quote-footer { font-size: 13px; font-weight: 500; color: var(--green); letter-spacing: 0.04em; }
.about-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 500; color: var(--green);
  margin-top: 24px; transition: gap 0.2s;
  border-bottom: 1px solid transparent;
  transition: gap 0.2s, border-color 0.2s;
}
.about-link:hover { gap: 10px; border-bottom-color: var(--green); }

/* ── SERVICES PREVIEW ── */
#services-preview { background: #fff; padding: 96px 0; }
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.card {
  background: #fff; border-radius: 8px;
  border-top: 3px solid var(--green);
  padding: 40px 32px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(45,122,58,0.15); }
.card-icon { color: var(--green); margin-bottom: 20px; }
.card h3 { font-size: 22px; color: var(--navy); margin-bottom: 12px; }
.card p { font-size: 15px; flex-grow: 1; margin-bottom: 20px; }
.card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 500; color: var(--green);
  margin-top: auto; transition: gap 0.2s;
}
.card:hover .card-link { gap: 10px; }

/* ── THERAPEUTIC AREAS ── */
#therapy { background: var(--bg-light); padding: 80px 0; }
.therapy-pills {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; margin-top: 32px;
}
.pill {
  padding: 10px 24px;
  border: 1.5px solid var(--green); border-radius: 50px;
  font-size: 14px; font-weight: 400; letter-spacing: 0.04em;
  color: var(--green); background: #fff;
  transition: all 0.2s ease; cursor: default;
}
.pill:hover { background: var(--green); color: #fff; transform: scale(1.06); }

/* ── PHOTO BAND ── */
.photo-band { display: grid; grid-template-columns: repeat(3,1fr); height: 380px; }
.photo-panel {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  cursor: default;
}
.photo-panel-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.photo-panel:hover .photo-panel-bg { transform: scale(1.08); }
.photo-panel-overlay {
  position: absolute; inset: 0;
}
.photo-panel-content {
  position: relative; z-index: 1;
  text-align: center; padding: 24px;
}
.photo-panel-content h3 {
  font-family: var(--font-head); font-size: 24px; font-weight: 600;
  color: #fff; margin-bottom: 8px;
}
.photo-panel-content p {
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.75);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--green);
  background-image: repeating-linear-gradient(
    45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px,
    transparent 1px, transparent 12px
  );
  padding: 96px 0; text-align: center;
}
.cta-banner h2 { color: #fff; max-width: 640px; margin: 0 auto 20px; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.82); max-width: 480px; margin: 0 auto 36px; }

/* ═══════════════════════════════════════
   PAGE HERO BANNERS (about/services/contact)
═══════════════════════════════════════ */
.page-hero {
  height: 420px; display: flex; align-items: center;
  position: relative; overflow: hidden;
  margin-top: 80px; padding-left: 120px;
}
.page-hero-overlay { position: absolute; inset: 0; z-index: 0; }
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero-line {
  width: 0; height: 3px; background: var(--green);
  animation: drawLine 0.8s ease 0.5s forwards;
}
.page-hero-sub { font-size: 18px; font-weight: 300; color: rgba(255,255,255,0.82); max-width: 540px; margin-top: 12px; }

/* Services page hero special */
.services-hero {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  height: 380px;
}
.services-hero::before, .services-hero::after {
  content: '';
  position: absolute; border-radius: 50%;
}
.services-hero::before {
  width: 500px; height: 500px;
  background: rgba(45,122,58,0.1);
  top: -100px; right: -100px;
  animation: slowRotate 20s linear infinite;
}
.services-hero::after {
  width: 300px; height: 300px;
  background: rgba(255,255,255,0.04);
  bottom: -80px; left: -60px;
  animation: slowRotate 20s linear reverse infinite;
}

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.company-story { background: #fff; padding: 96px 0; }
.story-grid { display: grid; grid-template-columns: 60% 40%; gap: 64px; align-items: start; }
.brand-values { display: flex; flex-direction: column; gap: 24px; }
.value-item { display: flex; gap: 20px; align-items: flex-start; }
.value-bar {
  width: 3px; height: 0; background: var(--green); flex-shrink: 0;
  margin-top: 4px; border-radius: 2px;
  transition: height 0.5s ease;
}
.value-item.visible .value-bar { height: 40px; }
.value-item h4 { font-family: var(--font-body); font-size: 15px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.value-item p { font-size: 14px; color: var(--text-muted); margin: 0; }

.mission-section { background: var(--bg-light); padding: 96px 0; }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mission-card {
  background: #fff; border-left: 4px solid var(--green);
  border-radius: 8px; padding: 48px 40px;
  box-shadow: 0 8px 32px rgba(45,122,58,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mission-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(45,122,58,0.14); }
.mission-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--green); margin: 16px 0 12px;
}
.mission-card blockquote {
  font-family: var(--font-head); font-size: 20px; font-style: italic;
  font-weight: 600; color: var(--navy); line-height: 1.6;
  border: none; padding: 0;
}

.why-started { background: #fff; padding: 80px 0; text-align: center; }
.why-started h2 { margin-bottom: 24px; }
.why-started p { max-width: 760px; margin: 0 auto; font-size: 17px; line-height: 1.9; }

.lab-band {
  height: 300px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=1200&q=85') center/cover no-repeat;
}
.lab-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(26,46,59,0.72), rgba(45,122,58,0.50));
}
.lab-band p {
  position: relative; z-index: 1;
  font-family: var(--font-head); font-size: 28px; font-style: italic;
  font-weight: 600; color: #fff; text-align: center;
  max-width: 700px; padding: 0 40px;
}

.team-section { background: var(--bg-light); padding: 80px 0; text-align: center; }
.team-section p { max-width: 640px; margin: 0 auto; font-size: 17px; }

/* ═══════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════ */
.services-grid-page { background: var(--bg-light); padding: 96px 0; }
.services-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
.service-card-lg {
  background: #fff; border-radius: 8px;
  border-top: 3px solid var(--green);
  padding: 48px 36px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s ease;
}
.service-card-lg:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(45,122,58,0.14); }
.service-icon-wrap {
  width: 96px; height: 96px; border-radius: 50%;
  background: var(--green-lt);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s ease;
}
.service-card-lg:hover .service-icon-wrap { background: var(--green); }
.service-card-lg:hover .service-icon-wrap svg { color: #fff; }
.service-icon-wrap svg { color: var(--green); transition: color 0.3s; }
.service-card-lg h3 { font-size: 22px; margin-bottom: 12px; }
.service-card-lg p { font-size: 15px; line-height: 1.75; }

.process-section { background: #fff; padding: 96px 0; }
.process-flow {
  display: flex; align-items: flex-start;
  justify-content: space-between; position: relative;
  margin-top: 56px; padding: 0 40px;
}
.process-line {
  position: absolute; top: 35px; left: 80px; right: 80px;
  height: 2px;
  background: repeating-linear-gradient(
    to right, var(--green) 0, var(--green) 8px, transparent 8px, transparent 16px
  );
  background-size: 200% 100%;
  animation: dashMove 3s linear infinite;
}
.process-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; flex: 1; position: relative; z-index: 1;
}
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid var(--green);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 26px; font-weight: 700;
  color: var(--green); background: #fff;
  transition: background 0.4s ease, color 0.4s ease;
}
.process-step.visible .step-circle { background: var(--green); color: #fff; }
.step-label { font-size: 15px; font-weight: 500; color: var(--navy); text-align: center; }
.step-sub { font-size: 13px; font-weight: 300; color: var(--text-light); text-align: center; max-width: 140px; }
.process-cta { text-align: center; margin-top: 48px; }
.process-cta a { font-size: 15px; font-weight: 500; color: var(--green); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.process-cta a:hover { border-color: var(--green); }

.services-image-band {
  height: 280px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: url('https://images.unsplash.com/photo-1587854692152-cbe660dbde88?w=1200&q=85') center/cover no-repeat;
}
.services-image-band::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(rgba(46,95,138,0.75), rgba(26,46,59,0.60));
}
.services-image-band p {
  position: relative; z-index: 1;
  font-family: var(--font-head); font-size: 26px; font-style: italic;
  font-weight: 600; color: #fff; text-align: center;
  max-width: 700px; padding: 0 40px;
}

/* ═══════════════════════════════════════
   PRODUCTS (COMING SOON) PAGE
═══════════════════════════════════════ */
.products-hero {
  min-height: calc(100vh - 80px);
  position: relative; display: flex; align-items: center;
  justify-content: center; margin-top: 80px; overflow: hidden;
  background: url('https://images.unsplash.com/photo-1582719471384-894fbb16e074?w=1200&q=85') center/cover fixed no-repeat;
}
.products-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,46,59,0.90), rgba(45,122,58,0.70));
  z-index: 0;
}
.products-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  padding: 80px 40px;
  max-width: 700px;
}
.products-icon {
  margin-bottom: 24px;
  animation: iconPulse 2.5s ease-in-out infinite;
  filter: drop-shadow(0 0 16px rgba(45,122,58,0.6));
}
.products-label {
  font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 16px;
}
.products-content h1 { color: #fff; margin-bottom: 24px; max-width: 640px; }
.products-divider {
  width: 0; height: 3px; background: var(--green);
  margin: 0 auto 28px;
  animation: drawLine 0.8s ease 0.6s forwards;
}
.products-content p {
  font-size: 17px; color: rgba(255,255,255,0.82); max-width: 500px;
  margin: 0 auto 36px; line-height: 1.85;
}
.products-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; }
.pill-white {
  padding: 9px 20px;
  border: 1.5px solid rgba(255,255,255,0.5); border-radius: 50px;
  font-size: 13px; color: #fff; background: transparent;
  transition: all 0.2s ease; cursor: default;
}
.pill-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.products-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 24px; }
.products-note { font-size: 13px; color: rgba(255,255,255,0.5); }
.products-particles { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.pp { position: absolute; border-radius: 50%; animation: drift 10s infinite alternate ease-in-out; }
.pp1 { width: 60px; height: 60px; top: 10%; left: 8%; background: rgba(45,122,58,0.15); animation-duration: 9s; }
.pp2 { width: 120px; height: 120px; top: 8%; right: 5%; background: rgba(255,255,255,0.05); animation-duration: 12s; animation-delay: -2s; }
.pp3 { width: 80px; height: 80px; bottom: 15%; left: 5%; background: rgba(46,95,138,0.12); animation-duration: 8s; animation-delay: -3s; }
.pp4 { width: 40px; height: 40px; bottom: 25%; right: 10%; background: rgba(255,255,255,0.07); animation-duration: 11s; animation-delay: -1s; }
.pp5 { width: 160px; height: 160px; top: 45%; right: 2%; background: rgba(45,122,58,0.08); animation-duration: 15s; animation-delay: -5s; }
.pp6 { width: 50px; height: 50px; top: 60%; left: 15%; background: rgba(255,255,255,0.06); animation-duration: 10s; animation-delay: -4s; }
.pp7 { width: 90px; height: 90px; bottom: 10%; left: 40%; background: rgba(46,95,138,0.1); animation-duration: 13s; animation-delay: -6s; }
.pp8 { width: 35px; height: 35px; top: 25%; left: 30%; background: rgba(45,122,58,0.12); animation-duration: 7s; animation-delay: -2s; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-hero {
  background: var(--navy); height: 320px;
  display: flex; align-items: center;
  padding-left: 120px; margin-top: 80px;
  position: relative; overflow: hidden;
}
.contact-hero h1 { color: #fff; margin-bottom: 16px; }
.contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px,
    transparent 1px, transparent 12px
  );
  animation: patternDrift 15s linear infinite;
}
.contact-section { background: var(--bg-light); padding: 96px 0; }
.contact-grid { display: grid; grid-template-columns: 40% 60%; gap: 64px; align-items: start; }
.contact-details h2 { margin-bottom: 12px; }
.contact-detail-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-lt);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-label {
  font-size: 13px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green); margin-bottom: 4px;
}
.contact-value { font-size: 15px; font-weight: 300; color: var(--text-muted); }
.response-note {
  background: #fff; border-left: 3px solid var(--green);
  border-radius: 4px; padding: 16px 20px;
  font-size: 14px; color: var(--text-muted); line-height: 1.65;
}

/* Contact Form */
.form-wrap {
  background: #fff; border-radius: 12px;
  padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(26,46,59,0.10);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 400;
  letter-spacing: 0.06em; color: var(--navy); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  border: 1.5px solid #d4e0d4; border-radius: 6px;
  font-family: var(--font-body); font-size: 15px; color: var(--navy);
  background: #fff; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none; -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #a0b0a8; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,122,58,0.12);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #c0392b; }
.form-group input.success,
.form-group select.success,
.form-group textarea.success { border-color: var(--green); }
.field-error { font-size: 13px; font-weight: 300; color: #c0392b; margin-top: 5px; display: none; }
.field-error.show { display: block; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-group select option { color: var(--navy); }
.btn-submit {
  width: 100%; background: var(--green); color: #fff;
  padding: 16px; border: none; border-radius: 6px;
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  letter-spacing: 0.06em; cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-submit:hover { background: var(--green-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(45,122,58,0.3); }
.btn-submit.loading { opacity: 0.75; pointer-events: none; }
.btn-submit.shake { animation: shake 0.4s ease; }
.success-message {
  display: none; background: var(--green-lt); border-left: 4px solid var(--green);
  border-radius: 8px; padding: 40px; text-align: center;
}
.success-message.show { display: block; animation: fadeUp 0.5s ease forwards; }
.success-check {
  width: 48px; height: 48px; margin: 0 auto 20px;
  color: var(--green);
}
.success-check circle { stroke-dasharray: 166; stroke-dashoffset: 166; animation: strokeDraw 0.8s ease forwards; }
.success-check path { stroke-dasharray: 50; stroke-dashoffset: 50; animation: strokeDraw 0.6s ease 0.4s forwards; }
.success-message h3 { font-size: 26px; margin-bottom: 12px; }
.success-message p { font-size: 15px; }

/* ═══════════════════════════════════════
   KEYFRAME ANIMATIONS
═══════════════════════════════════════ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@keyframes drift {
  0% { transform: translate(0,0); }
  100% { transform: translate(15px,-15px); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}
@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.06); opacity: 1; }
}
@keyframes slowRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes rippleEffect {
  0% { transform: translate(-50%,-50%) scale(0); opacity: 0.6; }
  100% { transform: translate(-50%,-50%) scale(3); opacity: 0; }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}
@keyframes drawLine {
  from { width: 0; }
  to { width: 60px; }
}
@keyframes strokeDraw {
  from { stroke-dashoffset: 166; }
  to { stroke-dashoffset: 0; }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes wordReveal {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes dashMove {
  from { background-position: 0 0; }
  to { background-position: 100% 0; }
}
@keyframes patternDrift {
  from { background-position: 0 0; }
  to { background-position: 40px 40px; }
}
.word {
  display: inline-block;
  opacity: 0; transform: translateY(30px);
  animation: wordReveal 0.6s ease forwards;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding: 120px 24px 60px; }
  .hero-btns { flex-direction: column; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-sub { font-size: 16px; }

  .intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .card-grid { grid-template-columns: 1fr; }
  .services-cards { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bar { grid-template-columns: 1fr; text-align: center; gap: 6px; }
  .footer-legal-links { text-align: center; }
  .form-row { grid-template-columns: 1fr; }

  #footer { padding: 48px 24px 0; }
  .photo-band { grid-template-columns: 1fr; height: auto; }
  .photo-panel { height: 240px; }
  .process-flow { flex-direction: column; align-items: center; gap: 40px; padding: 0; }
  .process-line { display: none; }

  .page-hero { padding-left: 24px; height: 280px; }
  .contact-hero { padding-left: 24px; height: 260px; }
  .form-wrap { padding: 32px 24px; }
  h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }

  .cta-banner { padding: 64px 24px; }
  .services-grid-page,
  .company-story,
  .why-started,
  .mission-section,
  .contact-section { padding: 64px 0; }

  #intro, #services-preview, #about-snap, #therapy { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2rem; }
  .products-content h1 { font-size: 2rem; }
  .products-btns { flex-direction: column; align-items: center; }
}
