/* ================================================
   MEDILIFE IV — DESIGN SYSTEM
   Fonts: Montserrat | Colors: Green / White / Black
   ================================================ */

:root {
  --green:        #1a7a4a;
  --green-light:  #22a863;
  --green-dark:   #134d30;
  --green-soft:   #f0f7f4;
  --green-mid:    #d4eee2;
  --black:        #0a0a0a;
  --dark:         #0f0f0f;
  --dark-2:       #181818;
  --dark-3:       #222222;
  --white:        #ffffff;
  --grey:         #888;
  --text:         #1e1e1e;
  --text-light:   #5a5a5a;
  --border:       rgba(0,0,0,0.09);
  --border-dark:  rgba(255,255,255,0.08);
  --shadow:       0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.14);
  --shadow-green: 0 8px 28px rgba(26,122,74,0.32);
  --radius:       12px;
  --radius-sm:    6px;
  --radius-pill:  100px;
  --ease:         cubic-bezier(0.4,0,0.2,1);
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body { font-family:'Montserrat',sans-serif; color:var(--text); background:var(--white); overflow-x:hidden; line-height:1.7; -webkit-font-smoothing:antialiased; }
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { font-family:inherit; cursor:pointer; }
textarea,input,select { font-family:inherit; }

/* ---- Accessibility: visible focus ring for keyboard navigation ---- */
:focus-visible {
  outline:3px solid var(--green);
  outline-offset:3px;
  border-radius:4px;
}
:focus:not(:focus-visible) { outline:none; }

/* ---- Skip to main content link (screen readers / keyboard) ---- */
.skip-link {
  position:absolute; top:-9999px; left:16px;
  background:var(--green); color:#fff;
  padding:10px 20px; border-radius:0 0 8px 8px;
  font-size:14px; font-weight:700; z-index:99999;
  text-decoration:none; transition:top 0.1s;
}
.skip-link:focus { top:0; }

.container { max-width:1240px; margin:0 auto; padding:0 28px; }
.section-pad { padding:100px 0; }
.bg-dark { background:var(--dark); }
.bg-green-soft { background:var(--green-soft); }

/* ---- EYEBROW / TAG ---- */
.eyebrow {
  font-size:10px; font-weight:800;
  letter-spacing:3.5px; text-transform:uppercase;
  color:var(--green); display:inline-block; margin-bottom:14px;
}
.eyebrow.light { color:var(--green-light); }

/* ---- SECTION HEADER WRAPPER ---- */
.section-header { margin-bottom:40px; }
.section-header.centered { text-align:center; }
.section-header.centered p { max-width:640px; margin-left:auto; margin-right:auto; }

/* ---- SECTION TITLE ---- */
.section-title {
  font-size:clamp(1.9rem,3.5vw,2.9rem);
  font-weight:800; line-height:1.18;
  margin-bottom:20px; color:var(--black);
}
.section-title.light { color:var(--white); }
.section-title em { font-style:normal; color:var(--green); }

/* ---- BUTTONS ---- */
.btn-primary {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--green); color:var(--white);
  font-size:12px; font-weight:700; letter-spacing:1.8px;
  text-transform:uppercase; padding:15px 34px;
  border:2px solid var(--green); border-radius:var(--radius-sm);
  transition:var(--transition); cursor:pointer;
}
.btn-primary:hover { background:var(--green-dark); border-color:var(--green-dark); transform:translateY(-2px); box-shadow:var(--shadow-green); }
.btn-primary.full-width { width:100%; justify-content:center; }

.btn-ghost-white {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:var(--white);
  font-size:13px; font-weight:600; letter-spacing:0.5px;
  padding:14px 28px; border:1.5px solid rgba(255,255,255,0.35);
  border-radius:var(--radius-sm); transition:var(--transition);
}
.btn-ghost-white:hover { border-color:var(--white); background:rgba(255,255,255,0.08); }

.btn-ghost {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:var(--green);
  font-size:12px; font-weight:700; letter-spacing:1.5px;
  text-transform:uppercase; padding:13px 28px;
  border:2px solid var(--green); border-radius:var(--radius-sm);
  transition:var(--transition);
}
.btn-ghost:hover { background:var(--green); color:var(--white); }

.btn-text-link {
  font-size:13px; font-weight:700; color:var(--green);
  display:inline-flex; align-items:center; gap:6px;
  transition:gap 0.2s;
}
.btn-text-link:hover { gap:10px; }

/* ================================================
   NAVBAR — redesigned with pill active state
   ================================================ */
.navbar {
  position:fixed; top:0; left:0; right:0; z-index:999;
  height:76px;
  background:rgba(255,255,255,0.94);
  backdrop-filter:blur(18px); -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(0,0,0,0.08);
  transition:background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.navbar.scrolled {
  background:#ffffff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.1), 0 2px 12px rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.nav-inner {
  max-width:1280px; margin:0 auto;
  padding:0 32px; height:100%;
  display:flex; align-items:center; gap:32px;
}

/* Logo — image based */
.nav-logo { display:flex; align-items:center; flex-shrink:0; }
.nav-logo-img {
  height:41px;
  width:auto;
  display:block;
  filter:none;
  transition:filter 0.4s var(--ease);
}

/* Nav links — underline active indicator */
.nav-links {
  display:flex; align-items:center; gap:2px; margin:0 auto;
}
.nav-links a {
  font-size:12.5px; font-weight:600; letter-spacing:0.2px;
  color:#1a1a1a;
  padding:7px 14px; border-radius:var(--radius-sm);
  position:relative; transition:color 0.25s, background 0.25s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:4px; left:50%; right:50%;
  height:2px; background:var(--green); border-radius:2px;
  transition:left 0.3s var(--ease), right 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { left:14px; right:14px; }
.nav-links a:hover, .nav-links a.active { color:var(--green); font-weight:700; }
.navbar.scrolled .nav-links a { color:#1a1a1a !important; }
.navbar.scrolled .nav-links a:hover, .navbar.scrolled .nav-links a.active { color:var(--green) !important; font-weight:700; }
.navbar.scrolled .nav-links a::after { background:var(--green); }

/* Right side */
.nav-right { display:flex; align-items:center; gap:20px; flex-shrink:0; }
.nav-phone { font-size:12px; font-weight:600; color:#333; letter-spacing:0.3px; }
.navbar.scrolled .nav-phone { color:#333 !important; }

.nav-cta {
  background:var(--green); color:var(--white);
  font-size:11px; font-weight:800; letter-spacing:2px;
  text-transform:uppercase; padding:10px 22px;
  border-radius:var(--radius-sm); border:2px solid var(--green);
  transition:var(--transition);
}
.nav-cta:hover { background:var(--green-dark); border-color:var(--green-dark); }

.hamburger {
  display:none; flex-direction:column; align-items:center; justify-content:center;
  gap:4px; width:36px; height:36px; flex-shrink:0;
  background:var(--green-soft); border:1.5px solid rgba(26,122,74,0.25);
  border-radius:8px; padding:0; cursor:pointer;
  transition:background 0.2s, border-color 0.2s;
}
.hamburger:hover { background:rgba(26,122,74,0.15); border-color:rgba(26,122,74,0.4); }
.hamburger span {
  display:block; width:16px; height:2px; background:var(--green); border-radius:2px;
  transition:transform 0.3s cubic-bezier(0.23,1,0.32,1), opacity 0.2s, width 0.25s;
  transform-origin:center;
}
.hamburger span:nth-child(2) { width:12px; }
/* Animated X when open */
.hamburger.open span:nth-child(1) { transform:translateY(6px) rotate(45deg); width:16px; }
.hamburger.open span:nth-child(2) { opacity:0; width:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); width:16px; }
.navbar.scrolled .hamburger { background:var(--green-soft); border-color:rgba(26,122,74,0.25); }

/* Mobile nav footer (hidden on desktop) */
.nav-mobile-footer { display:none; }

/* ================================================
   HERO — centered layout, side stats, bottom bar
   ================================================ */
.hero {
  position:relative;
  margin-top:76px;
  min-height:calc(100vh - 76px);
  display:flex; align-items:flex-start; justify-content:flex-start;
  overflow:hidden;
}
.hero-bg { position:absolute; inset:0; }
.hero-img { width:100%; height:100%; object-fit:cover; object-position:65% center; }
.hero-overlay {
  position:absolute; inset:0;
  background:linear-gradient(100deg,
    rgba(8,52,26,0.86) 0%,
    rgba(15,82,51,0.70) 25%,
    rgba(26,122,74,0.32) 52%,
    rgba(0,0,0,0.02) 100%);
}

/* Side stats — vertical strip */
.hero-side-stats {
  position:absolute; left:40px; top:50%;
  transform:translateY(-50%); z-index:3;
  display:flex; flex-direction:column; align-items:center; gap:16px;
}
.hss-item { display:flex; flex-direction:column; align-items:center; gap:3px; }
.hss-num { font-size:22px; font-weight:900; color:var(--white); line-height:1; }
.hss-num sup { font-size:12px; }
.hss-label { font-size:9px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.5); }
.hss-line { width:1px; height:36px; background:rgba(255,255,255,0.15); }

/* Left-aligned content — leaves right side open to reveal image */
.hero-center {
  position:relative; z-index:2;
  text-align:left;
  max-width:700px;
  padding:clamp(40px, 6vh, 72px) 24px clamp(32px, 4vh, 56px) max(110px, 9vw);
  margin-right:auto;
  width:100%;
}
.hero-pill {
  display:inline-block;
  background:rgba(26,122,74,0.25); border:1px solid rgba(34,168,99,0.5);
  color:var(--green-light); font-size:10px; font-weight:700;
  letter-spacing:2.5px; text-transform:uppercase;
  padding:6px 18px; border-radius:var(--radius-pill);
  margin-bottom:28px;
  animation:fadeDown 0.7s ease both;
}
.hero-title {
  font-size:clamp(3.2rem,7vw,6rem); font-weight:900;
  line-height:1.0; color:var(--white); margin-bottom:24px;
  animation:fadeUp 0.9s ease 0.1s both;
}
.hero-title-outline {
  color:var(--white);
  display:inline;
  text-shadow:0 0 40px rgba(34,168,99,0.5);
}
.hero-title em { font-style:normal; color:var(--green-light); -webkit-text-stroke:0; }
.hero-sub {
  font-size:15px; color:rgba(255,255,255,0.75);
  max-width:480px; margin:0 0 36px; line-height:1.9;
  animation:fadeUp 0.9s ease 0.2s both;
}
.hero-ctas {
  display:flex; align-items:center; justify-content:flex-start; gap:16px; flex-wrap:wrap;
  animation:fadeUp 0.9s ease 0.3s both;
}
.hero-trust {
  display:flex; align-items:center; justify-content:flex-start; gap:24px; flex-wrap:wrap;
  margin-top:28px;
  animation:fadeUp 0.9s ease 0.45s both;
}
.hero-trust-item {
  display:flex; align-items:center; gap:7px;
  font-size:12px; font-weight:600; color:rgba(255,255,255,0.80); letter-spacing:0.3px;
}
.hero-trust-item svg { stroke:var(--green-light); flex-shrink:0; }
@media (max-width:480px) { .hero-trust { gap:14px; } .hero-trust-item { font-size:11px; } }

/* Bottom service bar */
.hero-bottom-bar {
  position:absolute; bottom:0; left:0; right:0; z-index:3;
  background:rgba(0,0,0,0.55); backdrop-filter:blur(10px);
  display:flex; justify-content:center;
  border-top:1px solid rgba(255,255,255,0.08);
}
.hbb-item {
  display:flex; align-items:center; gap:8px;
  padding:16px 32px;
  font-size:11px; font-weight:700; letter-spacing:1.5px;
  text-transform:uppercase; color:rgba(255,255,255,0.6);
  border-right:1px solid rgba(255,255,255,0.08);
  transition:color 0.3s;
}
.hbb-item:last-child { border-right:none; }
.hbb-item:hover { color:var(--green-light); }
.hbb-dot { width:6px; height:6px; border-radius:50%; background:var(--green-light); flex-shrink:0; }

/* ================================================
   MARQUEE
   ================================================ */
.marquee-strip { background:var(--green); padding:13px 0; overflow:hidden; }
.marquee-track {
  display:inline-flex; align-items:center; gap:0;
  animation:marqueeScroll 30s linear infinite; white-space:nowrap;
}
.marquee-track span { font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:rgba(255,255,255,0.88); padding:0 22px; }
.marquee-track i { color:rgba(255,255,255,0.35); font-style:normal; padding:0 2px; }

/* ================================================
   ABOUT — mosaic image + content
   ================================================ */
.about-layout {
  display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center;
}

.about-visual { position:relative; }
.about-img-main {
  border-radius:var(--radius); overflow:hidden;
  height:520px; box-shadow:var(--shadow-lg);
}
.about-img-main img { width:100%; height:100%; object-fit:cover; }
.about-img-accent {
  position:absolute; bottom:-28px; right:-28px;
  width:200px; height:200px; border-radius:var(--radius);
  overflow:hidden; border:4px solid var(--white);
  box-shadow:var(--shadow-lg);
}
.about-img-accent img { width:100%; height:100%; object-fit:cover; }
.about-pill-stat {
  position:absolute; top:28px; left:-20px;
  background:var(--green); color:var(--white);
  border-radius:var(--radius-pill); padding:12px 22px;
  display:flex; align-items:center; gap:10px;
  box-shadow:var(--shadow-green);
}
.about-pill-stat strong { font-size:22px; font-weight:900; line-height:1; }
.about-pill-stat span { font-size:11px; font-weight:600; opacity:0.85; }

.about-content p { font-size:14px; color:var(--text-light); margin-bottom:14px; }

.about-pillars { display:flex; flex-direction:column; gap:0; margin:28px 0 32px; }
.pillar {
  display:flex; align-items:center; gap:16px;
  padding:16px 0; border-bottom:1px solid var(--border);
}
.pillar:first-child { border-top:1px solid var(--border); }
.pillar-icon { font-size:22px; flex-shrink:0; width:40px; text-align:center; }
.pillar strong { display:block; font-size:13px; font-weight:700; color:var(--black); }
.pillar span { font-size:12px; color:var(--text-light); }

/* ================================================
   BENEFITS — header split + numbered tiles
   ================================================ */
.benefits-header {
  display:grid; grid-template-columns:1fr 1fr;
  gap:48px; align-items:end; margin-bottom:56px;
}
.benefits-intro-text { font-size:14px; color:#999; line-height:1.9; align-self:end; }

/* 3+3 grid of tiles with left accent bar */
.benefits-strip {
  display:grid; grid-template-columns:repeat(3,1fr); gap:2px;
  border-radius:var(--radius); overflow:hidden;
  background:var(--dark-3);
}
.benefit-tile {
  padding:36px 28px; background:var(--dark-2);
  border:1px solid var(--border-dark);
  transition:background 0.3s, border-color 0.3s;
  position:relative; overflow:hidden;
}
.benefit-tile::before {
  content:''; position:absolute; left:0; top:0; bottom:0;
  width:3px; background:var(--green);
  transform:scaleY(0); transform-origin:bottom;
  transition:transform 0.3s var(--ease);
}
.benefit-tile:hover { background:#1e1e1e; border-color:rgba(26,122,74,0.3); }
.benefit-tile:hover::before { transform:scaleY(1); }
.bt-num {
  font-size:11px; font-weight:800; letter-spacing:2px;
  color:rgba(255,255,255,0.15); margin-bottom:20px;
}
.bt-icon { font-size:32px; margin-bottom:14px; display:block; color:var(--green-light); }
.benefit-tile h3 { font-size:15px; font-weight:700; color:var(--white); margin-bottom:10px; }
.benefit-tile p { font-size:13px; color:#888; line-height:1.8; }

/* ================================================
   SERVICES — tab layout (no image-on-right cards)
   ================================================ */
.services-header {
  display:flex; justify-content:space-between;
  align-items:flex-end; margin-bottom:36px;
}

/* Tab bar — underline style, no background pills */
.svc-tabs {
  display:flex; gap:0;
  border-bottom:1px solid var(--border);
  margin-bottom:40px;
}
.svc-tab {
  background:none; border:none;
  padding:14px 28px; font-size:13px; font-weight:700;
  color:var(--text-light); letter-spacing:0.3px;
  position:relative; transition:color 0.25s;
  cursor:pointer;
}
.svc-tab::after {
  content:''; position:absolute;
  bottom:-1px; left:0; right:0; height:2px;
  background:var(--green); transform:scaleX(0);
  transition:transform 0.3s var(--ease);
}
.svc-tab.active { color:var(--green); }
.svc-tab.active::after { transform:scaleX(1); }
.svc-tab:hover { color:var(--green); }

.svc-panel { display:none; }
.svc-panel.active { display:block; animation:fadeUp 0.4s ease both; }

/* Panel: image left, content right */
.svc-panel-layout {
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
}
.svc-panel-img {
  position:relative; border-radius:var(--radius); overflow:hidden;
  height:420px; box-shadow:var(--shadow-lg);
}
.svc-panel-img img { width:100%; height:100%; object-fit:cover; }
.svc-panel-badge {
  position:absolute; top:20px; left:20px;
  background:var(--green); color:var(--white);
  font-size:10px; font-weight:800; letter-spacing:2px;
  text-transform:uppercase; padding:6px 14px;
  border-radius:var(--radius-pill);
}
.svc-panel-content h3 { font-size:2rem; font-weight:800; color:var(--black); margin-bottom:14px; }
.svc-panel-content p { font-size:14px; color:var(--text-light); line-height:1.9; margin-bottom:24px; }
.svc-list {
  display:flex; flex-direction:column; gap:0; margin-bottom:28px;
}
.svc-list span {
  display:flex; align-items:center; gap:10px;
  font-size:13px; font-weight:600; color:var(--text);
  padding:11px 0; border-bottom:1px solid var(--border);
}
.svc-list span::before { content:'→'; color:var(--green); font-size:12px; flex-shrink:0; }

/* ================================================
   WHY US — numbered pillars + image
   ================================================ */
.why-header { margin-bottom:52px; }

.why-layout {
  display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start;
}

.why-pillars { display:flex; flex-direction:column; gap:0; }
.why-pillar {
  display:flex; gap:0; align-items:stretch;
  padding:28px 0; border-bottom:1px solid var(--green-mid);
}
.wp-bar { width:3px; background:var(--green-mid); flex-shrink:0; border-radius:2px; margin-right:24px; transition:background 0.3s; }
.why-pillar:hover .wp-bar { background:var(--green); }
.wp-body { flex:1; }
.wp-num { font-size:10px; font-weight:800; letter-spacing:3px; text-transform:uppercase; color:var(--green); opacity:0.6; display:block; margin-bottom:6px; }
.wp-body h4 { font-size:15px; font-weight:700; color:var(--black); margin-bottom:6px; }
.wp-body p { font-size:13px; color:var(--text-light); line-height:1.8; }

.why-visual { position:relative; top:0; }
.why-visual img { width:100%; height:580px; object-fit:cover; border-radius:var(--radius); box-shadow:var(--shadow-lg); }

.why-review-badge {
  position:absolute; bottom:28px; left:-24px;
  background:var(--white); border-radius:var(--radius);
  padding:18px 22px; box-shadow:var(--shadow-lg);
  border:1px solid var(--border);
  display:flex; flex-direction:column; gap:3px; min-width:180px;
}
.wrb-stars { color:var(--green); font-size:14px; letter-spacing:2px; margin-bottom:4px; }
.why-review-badge strong { font-size:22px; font-weight:900; color:var(--black); }
.why-review-badge span { font-size:11px; color:var(--grey); }

.why-cert-badge {
  position:absolute; top:24px; right:-20px;
  background:var(--green); color:var(--white);
  border-radius:var(--radius); padding:14px 18px;
  display:flex; align-items:center; gap:12px;
  box-shadow:var(--shadow-green);
}
.why-cert-badge span { font-size:22px; }
.why-cert-badge strong { display:block; font-size:12px; font-weight:700; }
.why-cert-badge small { font-size:10px; opacity:0.75; }

/* ================================================
   HOW IT WORKS — connected steps
   ================================================ */
.hiw-header { margin-bottom:56px; }
.hiw-track {
  display:grid; grid-template-columns:1fr auto 1fr auto 1fr;
  gap:0; align-items:center;
}

.hiw-step-inner {
  background:var(--dark-2); border:1px solid var(--border-dark);
  border-radius:var(--radius); padding:40px 32px;
  transition:border-color 0.3s;
}
.hiw-step-inner:hover { border-color:var(--green); }
.hiw-icon-wrap {
  width:56px; height:56px; background:rgba(26,122,74,0.12);
  border-radius:var(--radius); display:flex; align-items:center;
  justify-content:center; font-size:26px; margin-bottom:20px;
  border:1px solid rgba(26,122,74,0.25);
}
.hiw-step-num { font-size:10px; font-weight:800; letter-spacing:2.5px; text-transform:uppercase; color:var(--green); margin-bottom:10px; }
.hiw-step-inner h3 { font-size:16px; font-weight:700; color:var(--white); margin-bottom:10px; }
.hiw-step-inner p { font-size:13px; color:#888; line-height:1.8; }

.hiw-connector {
  display:flex; flex-direction:column; align-items:center; gap:6px;
  padding:0 20px;
}
.hiw-line { width:1px; height:40px; background:rgba(26,122,74,0.3); }
.hiw-arrow { font-size:22px; color:var(--green); opacity:0.5; }

/* ================================================
   TESTIMONIALS — featured + stacked
   ================================================ */
.testi-header { margin-bottom:48px; }
.testi-layout { display:grid; grid-template-columns:1.3fr 1fr; gap:28px; align-items:start; }

.testi-featured {
  background:var(--dark); border-radius:var(--radius);
  padding:48px; position:relative; overflow:hidden;
  border:1px solid var(--border-dark);
}
.tf-quote {
  font-size:120px; line-height:0.7; font-weight:900;
  color:rgba(26,122,74,0.18); position:absolute; top:20px; left:28px;
  font-family:Georgia,serif;
}
.testi-featured p {
  font-size:16px; color:rgba(255,255,255,0.85);
  line-height:1.85; margin-bottom:32px; position:relative; z-index:1;
  padding-top:20px;
}
.tf-author {
  display:flex; align-items:center; gap:16px; flex-wrap:wrap;
  position:relative; z-index:1;
}
.tf-avatar {
  width:46px; height:46px; border-radius:50%;
  background:var(--green); color:var(--white);
  font-size:13px; font-weight:700;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.tf-author strong { display:block; font-size:14px; font-weight:700; color:var(--white); }
.tf-author span { font-size:12px; color:#666; }
.tf-stars { margin-left:auto; color:var(--green); font-size:15px; letter-spacing:2px; }

.testi-left-col { display:flex; flex-direction:column; gap:20px; }
.testi-stack { display:flex; flex-direction:column; gap:20px; }
.ts-card {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius); padding:28px;
  box-shadow:var(--shadow); transition:var(--transition); flex:1;
}
.ts-card:hover { box-shadow:var(--shadow-lg); border-color:var(--green); }
.ts-stars { color:var(--green); font-size:13px; letter-spacing:2px; margin-bottom:14px; }
.ts-card p { font-size:13px; color:var(--text-light); line-height:1.85; margin-bottom:20px; font-style:italic; }
.ts-author { display:flex; align-items:center; gap:12px; }
.ts-avatar {
  width:38px; height:38px; border-radius:50%;
  background:var(--green-soft); color:var(--green);
  font-size:11px; font-weight:800;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.ts-author strong { display:block; font-size:13px; font-weight:700; }
.ts-author span { font-size:11px; color:var(--grey); }

/* ================================================
   FAQ — 2-col, custom toggle icon
   ================================================ */
.faq-layout { display:grid; grid-template-columns:1fr 1.5fr; gap:80px; align-items:start; }
.faq-left p { font-size:14px; color:var(--text-light); line-height:1.9; }

.faq-list { display:flex; flex-direction:column; }
.faq-item { border-bottom:1px solid var(--green-mid); }
.faq-q {
  display:flex; justify-content:space-between; align-items:center;
  padding:20px 0; width:100%; background:none; border:none;
  font-size:14px; font-weight:600; color:var(--black);
  text-align:left; gap:20px; cursor:pointer; transition:color 0.25s;
}
.faq-q:hover { color:var(--green); }
.faq-item.active .faq-q { color:var(--green); }

/* Custom + → × icon */
.faq-icon { width:22px; height:22px; position:relative; flex-shrink:0; }
.faq-icon span {
  position:absolute; top:50%; left:50%;
  width:14px; height:2px; background:var(--green); border-radius:2px;
  transform:translate(-50%,-50%); transition:transform 0.3s var(--ease), opacity 0.3s;
}
.faq-icon span:last-child { transform:translate(-50%,-50%) rotate(90deg); }
.faq-item.active .faq-icon span:last-child { transform:translate(-50%,-50%) rotate(0deg); opacity:0; }

.faq-a { max-height:0; overflow:hidden; transition:max-height 0.4s var(--ease); }
.faq-item.active .faq-a { max-height:300px; }
.faq-a p { padding-bottom:20px; font-size:13px; color:var(--text-light); line-height:1.85; }

/* ================================================
   BOOKING — contacts + form
   ================================================ */
.booking-layout { display:grid; grid-template-columns:1fr 1.2fr; gap:0; align-items:stretch; border-radius:var(--radius); overflow:hidden; }
.booking-left { padding:60px 52px; background:linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%); }
.booking-left p { font-size:14px; color:rgba(255,255,255,0.75); margin-bottom:36px; }
.booking-left .eyebrow { color:rgba(255,255,255,0.6); }
.booking-left .section-title { color:var(--white); }
.booking-left .section-title em { color:rgba(255,255,255,0.85); -webkit-text-stroke:0; }

.booking-contacts { display:flex; flex-direction:column; gap:20px; }
.bc-item {
  display:flex; align-items:flex-start; gap:16px;
  padding:16px 18px; border-radius:var(--radius-sm);
  background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.15);
  transition:background 0.3s; text-decoration:none;
}
.bc-item:hover { background:rgba(255,255,255,0.18); }
.bc-icon { font-size:20px; flex-shrink:0; width:26px; text-align:center; }
.bc-item strong { display:block; font-size:13px; font-weight:700; color:var(--white); margin-bottom:2px; }
.bc-item span { font-size:12px; color:rgba(255,255,255,0.65); }

.booking-form-wrap {
  background:var(--white); border-radius:0;
  box-shadow:none; overflow:hidden;
}
.bf-header { background:var(--green); padding:28px 32px; }
.bf-header h3 { font-size:18px; font-weight:800; color:var(--white); margin-bottom:4px; }
.bf-header p { font-size:12px; color:rgba(255,255,255,0.7); }
.booking-form { padding:28px 32px; }
.bf-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.bf-field { display:flex; flex-direction:column; gap:6px; margin-bottom:14px; }
.bf-field label { font-size:10px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase; color:var(--text-light); }
.bf-field input, .bf-field select, .bf-field textarea {
  padding:11px 14px; border:1.5px solid var(--border);
  border-radius:var(--radius-sm); font-size:13px; color:var(--text);
  background:var(--white); transition:border-color 0.3s; outline:none; resize:none;
}
.bf-field input:focus, .bf-field select:focus, .bf-field textarea:focus { border-color:var(--green); }
.bf-field input::placeholder, .bf-field textarea::placeholder { color:#bbb; }

/* ================================================
   FOOTER — brand block + 3 col links
   ================================================ */
.footer { background:#ffffff; padding:72px 0 0; border-top:1px solid var(--border); }
.footer-top {
  display:grid; grid-template-columns:1.4fr 1fr;
  gap:60px; padding-bottom:48px;
  border-bottom:1px solid var(--border);
}
.footer-brand .footer-logo {
  display:inline-flex; align-items:center; margin-bottom:16px;
}
.footer-logo-img {
  height:50px;
  width:auto;
  display:block;
  filter:none;
}
.footer-brand > p { font-size:13px; color:var(--text-light); line-height:1.85; max-width:320px; margin-bottom:20px; }

/* Footer contact info */
.footer-contact-info { display:flex; flex-direction:column; gap:9px; margin-bottom:20px; }
.fci-row { display:flex; align-items:center; gap:9px; font-size:12.5px; color:var(--text-light); }
.fci-row svg { stroke:var(--green); flex-shrink:0; }
.fci-row a { color:var(--text-light); transition:color 0.2s; text-decoration:none; }
.fci-row a:hover { color:var(--green); }

.footer-socials { display:flex; gap:10px; }
.footer-socials a {
  width:34px; height:34px; border-radius:50%;
  border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:10px; font-weight:700; color:var(--text-light);
  transition:var(--transition);
}
.footer-socials a:hover { border-color:var(--green); color:var(--green); }

.footer-links-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:32px; }
.fl-col h5 {
  font-size:10px; font-weight:800; letter-spacing:2.5px;
  text-transform:uppercase; color:var(--text-light); margin-bottom:20px;
}
.fl-col ul { display:flex; flex-direction:column; gap:10px; }
.fl-col a { font-size:13px; color:var(--text-light); transition:color 0.25s; }
.fl-col a:hover { color:var(--green); }

.footer-bottom { padding:24px 0; display:flex; flex-direction:column; gap:8px; border-top:1px solid var(--border); }
.footer-bottom p { font-size:12px; color:var(--text-light); }
.footer-bottom a { color:var(--text-light); }
.footer-bottom a:hover { color:var(--green); }
.disclaimer { font-size:10px; color:#999; }

/* ================================================
   INNER PAGE COMPONENTS
   ================================================ */

/* Page Hero — taller, text bottom-left */
.page-hero {
  position:relative; height:480px;
  display:flex; align-items:flex-end;
  padding-bottom:56px; overflow:hidden;
  margin-top:0;
}
.page-hero-bg { position:absolute; inset:0; }
.page-hero-bg img { width:100%; height:100%; object-fit:cover; }
.page-hero-bg::after {
  content:''; position:absolute; inset:0;
  background:
    linear-gradient(105deg,
      rgba(0,0,0,0.94) 0%,
      rgba(8,38,22,0.88) 35%,
      rgba(12,48,28,0.72) 65%,
      rgba(0,0,0,0.50) 100%),
    linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}
.page-hero-content { position:relative; z-index:2; }
.breadcrumb { font-size:11px; color:rgba(255,255,255,0.45); margin-bottom:14px; }
.breadcrumb a { color:var(--green-light); }
.page-hero h1 {
  font-size:clamp(2.4rem,5vw,4rem); font-weight:900; color:var(--white);
  margin-bottom:12px; line-height:1.1;
}
.page-hero p { font-size:15px; color:rgba(255,255,255,0.7); max-width:580px; }

/* Therapy intro features */
.therapy-intro { padding:52px 0; border-bottom:1px solid var(--border); }
.therapy-features { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:28px; }
.tf {
  display:flex; align-items:center; gap:14px;
  padding:20px 22px; background:var(--green-soft);
  border-radius:var(--radius); border:1px solid var(--green-mid);
}
.tf-icon { font-size:26px; flex-shrink:0; }
.tf strong { display:block; font-size:13px; font-weight:700; color:var(--black); }
.tf span { font-size:12px; color:var(--text-light); }

/* ── THERAPY CARDS — no-image, gradient background ── */
.therapy-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.therapy-card {
  border-radius:var(--radius); overflow:hidden;
  position:relative;
  box-shadow:var(--shadow-lg);
  transition:transform 0.35s var(--ease), box-shadow 0.35s;
  display:flex; flex-direction:column; min-height:520px;
  border:1px solid rgba(255,255,255,0.06);
  background:linear-gradient(145deg, #0d2018 0%, #0a1a10 60%, #061208 100%);
}
.therapy-card:nth-child(3n+2) {
  background:linear-gradient(145deg, #0a1e14 0%, #071510 60%, #040e09 100%);
}
.therapy-card:nth-child(3n+3) {
  background:linear-gradient(145deg, #111f16 0%, #0c1a12 60%, #08120c 100%);
}
.therapy-card:hover {
  transform:translateY(-6px);
  box-shadow:0 28px 72px rgba(0,0,0,0.35);
  border-color:rgba(34,168,99,0.3);
}
/* Decorative geometric orb top-right */
.therapy-card::before {
  content:'';
  position:absolute; top:-40px; right:-40px;
  width:160px; height:160px; border-radius:50%;
  background:radial-gradient(circle, rgba(26,122,74,0.18) 0%, transparent 70%);
  pointer-events:none; z-index:0;
}
/* Subtle bottom accent line */
.therapy-card::after {
  content:'';
  position:absolute; bottom:0; left:0; right:0;
  height:2px;
  background:linear-gradient(90deg, transparent 0%, var(--green) 50%, transparent 100%);
  opacity:0;
  transition:opacity 0.3s;
}
.therapy-card:hover::after { opacity:1; }

/* Icon area at top */
.therapy-card-img {
  position:relative; z-index:1;
  padding:28px 28px 0;
  display:flex; align-items:flex-start; justify-content:space-between;
  min-height:unset; overflow:visible;
}
.therapy-card-img img { display:none; }
.therapy-card-img::after { display:none; }
.tc-icon {
  width:60px; height:60px;
  border-radius:12px;
  background:rgba(26,122,74,0.15);
  border:1px solid rgba(26,122,74,0.3);
  display:flex; align-items:center; justify-content:center;
  font-size:26px; flex-shrink:0;
  transition:background 0.3s, border-color 0.3s;
}
.therapy-card:hover .tc-icon {
  background:rgba(26,122,74,0.25);
  border-color:rgba(34,168,99,0.5);
}
.tc-number {
  font-size:52px; font-weight:900;
  color:rgba(255,255,255,0.04);
  line-height:1; letter-spacing:-2px;
  user-select:none;
}

.therapy-card-body {
  padding:20px 28px 28px; display:flex; flex-direction:column;
  flex:1; position:relative; z-index:1; background:transparent;
}
.therapy-card-body::before { display:none; }
.therapy-card:hover .therapy-card-body::before { display:none; }

.tc-tag {
  font-size:9px; font-weight:800; letter-spacing:3px; text-transform:uppercase;
  color:var(--green-light); background:rgba(26,122,74,0.2);
  border:1px solid rgba(26,122,74,0.35);
  padding:4px 12px; border-radius:var(--radius-pill);
  display:inline-block; margin-bottom:12px; align-self:flex-start;
}
.therapy-card-body h2 {
  font-size:20px; font-weight:900; color:var(--white);
  margin-bottom:6px; line-height:1.2;
}
.tc-price {
  font-size:14px; font-weight:800; color:var(--green-light);
  margin-bottom:12px; letter-spacing:0.5px; display:block;
  padding:0; border-bottom:none;
}
.therapy-card-body p {
  font-size:12.5px; color:rgba(255,255,255,0.55);
  line-height:1.8; margin-bottom:16px; flex:1;
}
.tc-benefits {
  display:flex; flex-direction:column; gap:6px; margin-bottom:20px;
  border-top:1px solid rgba(255,255,255,0.07); padding-top:14px;
}
.tc-benefits li {
  font-size:11.5px; color:rgba(255,255,255,0.65);
  display:flex; align-items:flex-start; gap:8px;
}
.tc-benefits li::before {
  content:'✓'; color:var(--green-light); font-weight:800;
  flex-shrink:0; margin-top:1px;
}
.tc-actions { display:flex; gap:10px; flex-wrap:wrap; }
.tc-actions .btn-primary {
  background:var(--green); border-color:var(--green);
  padding:11px 22px; font-size:11px; flex:1; justify-content:center;
}
.tc-actions .btn-primary:hover { background:var(--green-dark); border-color:var(--green-dark); }
.tc-actions .btn-ghost {
  border-color:rgba(255,255,255,0.2); color:rgba(255,255,255,0.7);
  padding:11px 18px; font-size:11px;
}
.tc-actions .btn-ghost:hover { background:rgba(255,255,255,0.08); color:var(--white); border-color:rgba(255,255,255,0.4); }

/* ── BOOSTER SHOT CARDS — no-image, gradient background ── */
.shots-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.shot-card {
  border-radius:var(--radius); overflow:hidden;
  position:relative;
  box-shadow:var(--shadow-lg);
  transition:transform 0.35s var(--ease), box-shadow 0.35s;
  display:flex; flex-direction:column; min-height:480px;
  border:1px solid rgba(255,255,255,0.06);
  background:linear-gradient(145deg, #0d2018 0%, #0a1a10 60%, #061208 100%);
}
.shot-card:nth-child(3n+2) {
  background:linear-gradient(145deg, #0a1e14 0%, #071510 60%, #040e09 100%);
}
.shot-card:nth-child(3n+3) {
  background:linear-gradient(145deg, #111f16 0%, #0c1a12 60%, #08120c 100%);
}
.shot-card:hover {
  transform:translateY(-6px);
  box-shadow:0 28px 72px rgba(0,0,0,0.35);
  border-color:rgba(34,168,99,0.3);
}
/* Decorative orb */
.shot-card::before {
  content:'';
  position:absolute; top:-40px; right:-40px;
  width:160px; height:160px; border-radius:50%;
  background:radial-gradient(circle, rgba(26,122,74,0.18) 0%, transparent 70%);
  pointer-events:none; z-index:0;
}
.shot-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:2px;
  background:linear-gradient(90deg, transparent 0%, var(--green) 50%, transparent 100%);
  opacity:0; transition:opacity 0.3s;
}
.shot-card:hover::after { opacity:1; }

.shot-img {
  position:relative; z-index:1;
  padding:28px 28px 0;
  display:flex; align-items:flex-start; justify-content:space-between;
}
.shot-img img { display:none; }
.shot-img::after { display:none; }
.shot-icon {
  width:56px; height:56px; border-radius:12px;
  background:rgba(26,122,74,0.15);
  border:1px solid rgba(26,122,74,0.3);
  display:flex; align-items:center; justify-content:center;
  font-size:24px; flex-shrink:0; transition:background 0.3s, border-color 0.3s;
}
.shot-card:hover .shot-icon { background:rgba(26,122,74,0.25); border-color:rgba(34,168,99,0.5); }
.shot-num {
  font-size:48px; font-weight:900; color:rgba(255,255,255,0.04);
  line-height:1; letter-spacing:-2px; user-select:none;
}

.shot-body {
  padding:18px 28px 28px; display:flex; flex-direction:column;
  flex:1; position:relative; z-index:1;
}
.shot-body::before { display:none; }
.shot-card:hover .shot-body::before { display:none; }
.shot-tag {
  font-size:9px; font-weight:800; letter-spacing:3px; text-transform:uppercase;
  color:var(--green-light); background:rgba(26,122,74,0.2);
  border:1px solid rgba(26,122,74,0.35);
  padding:4px 12px; border-radius:var(--radius-pill);
  display:inline-block; margin-bottom:10px; align-self:flex-start;
}
.shot-body h3 { font-size:19px; font-weight:900; color:var(--white); margin-bottom:4px; line-height:1.2; }
.shot-price { font-size:14px; font-weight:800; color:var(--green-light); margin-bottom:10px; padding-bottom:0; border-bottom:none; }
.shot-body p { font-size:12.5px; color:rgba(255,255,255,0.55); line-height:1.8; margin-bottom:14px; flex:1; }
.shot-benefits {
  display:flex; flex-direction:column; gap:6px; margin-bottom:18px;
  border-top:1px solid rgba(255,255,255,0.07); padding-top:12px;
}
.shot-benefits li { font-size:11.5px; color:rgba(255,255,255,0.65); display:flex; align-items:flex-start; gap:7px; }
.shot-benefits li::before { content:'✓'; color:var(--green-light); font-weight:800; flex-shrink:0; margin-top:1px; }
.shot-body .btn-primary {
  background:var(--green); border-color:var(--green);
  padding:11px 22px; font-size:11px; width:100%; justify-content:center;
}
.shot-body .btn-primary:hover { background:var(--green-dark); border-color:var(--green-dark); }

/* At Home steps — timeline-style */
.athome-steps { display:flex; flex-direction:column; gap:0; }
.ah-step {
  display:grid; grid-template-columns:72px 1fr;
  gap:24px; padding:28px 0;
  border-bottom:1px solid var(--border);
  align-items:start;
}
.ah-step-left { display:flex; flex-direction:column; align-items:center; gap:8px; }
.ah-num-circle {
  width:48px; height:48px; border-radius:50%;
  background:var(--green-soft); border:2px solid var(--green-mid);
  display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:800; color:var(--green);
}
.ah-icon-sm { font-size:22px; }
.ah-step h3 { font-size:15px; font-weight:700; color:var(--black); margin-bottom:6px; }
.ah-step p { font-size:13px; color:var(--text-light); }

/* Coverage — pill-style city tags */
.coverage-grid { display:flex; flex-wrap:wrap; gap:16px; }
.city-pill {
  background:var(--dark-2); border:1px solid var(--border-dark);
  border-radius:var(--radius); padding:20px 28px;
  transition:border-color 0.3s, background 0.3s; flex:1; min-width:200px;
}
.city-pill:hover { border-color:var(--green); background:var(--dark-3); }
.city-pill .city-tag { font-size:9px; font-weight:800; letter-spacing:2px; text-transform:uppercase; color:var(--green); margin-bottom:6px; }
.city-pill h3 { font-size:16px; font-weight:700; color:var(--white); margin-bottom:4px; }
.city-pill p { font-size:11px; color:#555; }

/* ── PACKAGE CARDS — no-image, premium gradient ── */
.package-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.pkg-card {
  border-radius:var(--radius); overflow:hidden;
  position:relative;
  box-shadow:var(--shadow-lg);
  transition:transform 0.35s var(--ease), box-shadow 0.35s;
  display:flex; flex-direction:column; min-height:580px;
  border:1px solid rgba(255,255,255,0.06);
  background:linear-gradient(145deg, #0d2018 0%, #0a1a10 55%, #061208 100%);
}
.pkg-card:nth-child(3n+2) {
  background:linear-gradient(145deg, #0a1e14 0%, #071510 55%, #040e09 100%);
}
.pkg-card:nth-child(3n+3) {
  background:linear-gradient(145deg, #111f16 0%, #0c1a12 55%, #08120c 100%);
}
.pkg-card:hover {
  transform:translateY(-6px);
  box-shadow:0 28px 72px rgba(0,0,0,0.35);
  border-color:rgba(34,168,99,0.3);
  border-bottom-color:var(--green);
}
.pkg-card.featured {
  border-color:rgba(34,168,99,0.4);
  box-shadow:0 4px 40px rgba(26,122,74,0.3);
}
/* Featured glow ring */
.pkg-card.featured::before {
  content:''; position:absolute; inset:0; border-radius:var(--radius);
  border:1.5px solid rgba(34,168,99,0.45); pointer-events:none; z-index:4;
}
.pkg-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0;
  height:2px;
  background:linear-gradient(90deg, transparent 0%, var(--green) 50%, transparent 100%);
  opacity:0; transition:opacity 0.3s; z-index:5;
}
.pkg-card:hover::after { opacity:1; }
/* Second orb bottom-left for depth */
.pkg-card .pkg-orb {
  position:absolute; bottom:-40px; left:-30px;
  width:140px; height:140px; border-radius:50%;
  background:radial-gradient(circle, rgba(26,122,74,0.10) 0%, transparent 70%);
  pointer-events:none; z-index:0;
}

/* Icon header area */
.pkg-icon-area {
  padding:28px 28px 0; position:relative; z-index:2;
  display:flex; align-items:flex-start; justify-content:space-between;
}
.pkg-icon {
  width:64px; height:64px; border-radius:14px;
  background:rgba(26,122,74,0.15); border:1px solid rgba(26,122,74,0.3);
  display:flex; align-items:center; justify-content:center;
  font-size:28px; flex-shrink:0;
  transition:background 0.3s, border-color 0.3s;
}
.pkg-card:hover .pkg-icon { background:rgba(26,122,74,0.25); border-color:rgba(34,168,99,0.5); }
.pkg-big-num {
  font-size:60px; font-weight:900; color:rgba(255,255,255,0.04);
  line-height:1; letter-spacing:-3px; user-select:none;
}

/* Hide the old img element */
.pkg-img { display:none; }

.pkg-badge {
  position:absolute; top:18px; left:18px; z-index:5;
  background:rgba(26,122,74,0.25); color:var(--green-light);
  border:1px solid rgba(34,168,99,0.4);
  font-size:9px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase;
  padding:5px 14px; border-radius:var(--radius-pill);
}
.pkg-body {
  padding:20px 28px 28px; flex:1; display:flex; flex-direction:column;
  position:relative; z-index:2;
}
.pkg-body h3 { font-size:19px; font-weight:900; color:var(--white); margin-bottom:6px; line-height:1.2; }
.pkg-price { font-size:14px; font-weight:800; color:var(--green-light); margin-bottom:12px; }
.pkg-body p { font-size:12.5px; color:rgba(255,255,255,0.55); line-height:1.8; margin-bottom:16px; flex:1; }
.pkg-includes {
  border-top:1px solid rgba(255,255,255,0.07);
  padding-top:14px; margin-bottom:18px;
}
.pkg-includes h4 { font-size:9px; font-weight:800; letter-spacing:2.5px; text-transform:uppercase; color:var(--green-light); margin-bottom:10px; opacity:0.8; }
.pkg-includes ul { display:flex; flex-direction:column; gap:7px; }
.pkg-includes li { font-size:11.5px; color:rgba(255,255,255,0.62); display:flex; align-items:flex-start; gap:8px; }
.pkg-includes li::before { content:'✦'; color:var(--green-light); flex-shrink:0; font-size:8px; margin-top:3px; opacity:0.8; }
.pkg-body .btn-primary { padding:12px 22px; font-size:11px; background:var(--green); border-color:var(--green); width:100%; justify-content:center; }
.pkg-body .btn-primary:hover { background:var(--green-dark); border-color:var(--green-dark); }


/* ── AT-HOME SERVICE CARDS — no-image, gradient background ── */
.athome-pkg-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.athome-pkg-card {
  border-radius:var(--radius); overflow:hidden;
  position:relative;
  box-shadow:var(--shadow-lg);
  transition:transform 0.35s var(--ease), box-shadow 0.35s;
  display:flex; flex-direction:column; min-height:360px;
  border:1px solid rgba(255,255,255,0.06);
  background:linear-gradient(145deg, #0d2018 0%, #0a1a10 60%, #061208 100%);
}
.athome-pkg-card:nth-child(3n+2) {
  background:linear-gradient(145deg, #0a1e14 0%, #071510 60%, #040e09 100%);
}
.athome-pkg-card:nth-child(3n+3) {
  background:linear-gradient(145deg, #111f16 0%, #0c1a12 60%, #08120c 100%);
}
.athome-pkg-card:hover {
  transform:translateY(-6px);
  box-shadow:0 28px 72px rgba(0,0,0,0.35);
  border-color:rgba(34,168,99,0.3);
}
/* Decorative orb */
.athome-pkg-card::before {
  content:'';
  position:absolute; top:-40px; right:-40px;
  width:160px; height:160px; border-radius:50%;
  background:radial-gradient(circle, rgba(26,122,74,0.18) 0%, transparent 70%);
  pointer-events:none; z-index:0;
}
.athome-pkg-card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg, transparent 0%, var(--green) 50%, transparent 100%);
  opacity:0; transition:opacity 0.3s;
}
.athome-pkg-card:hover::after { opacity:1; }

.ap-img { display:none; }
.ap-num {
  position:absolute; top:18px; left:18px; z-index:3;
  background:rgba(26,122,74,0.2); color:var(--green-light);
  border:1px solid rgba(26,122,74,0.35);
  font-size:9px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase;
  padding:5px 14px; border-radius:var(--radius-pill);
}
.ap-body {
  padding:28px; display:flex; flex-direction:column;
  position:relative; z-index:2; flex:1; justify-content:flex-end;
}
.ap-icon-wrap {
  width:56px; height:56px; border-radius:12px;
  background:rgba(26,122,74,0.15); border:1px solid rgba(26,122,74,0.3);
  display:flex; align-items:center; justify-content:center;
  font-size:24px; margin-bottom:16px;
  transition:background 0.3s, border-color 0.3s;
}
.athome-pkg-card:hover .ap-icon-wrap { background:rgba(26,122,74,0.25); border-color:rgba(34,168,99,0.5); }
.ap-icon { display:none; }
.ap-body h3 { font-size:18px; font-weight:900; color:var(--white); margin-bottom:8px; line-height:1.2; }
.ap-body p { font-size:12.5px; color:rgba(255,255,255,0.55); line-height:1.8; margin-bottom:0; }

/* Loyalty banner */
.loyalty-banner {
  background:linear-gradient(120deg,var(--green-dark) 0%,var(--green) 100%);
  border-radius:var(--radius); padding:48px 52px;
  display:flex; justify-content:space-between; align-items:center; gap:32px; flex-wrap:wrap;
  margin-top:48px;
}
.loyalty-banner h3 { font-size:26px; font-weight:800; color:var(--white); margin-bottom:8px; }
.loyalty-banner p { font-size:14px; color:rgba(255,255,255,0.8); }
.loyalty-banner small { display:block; font-size:11px; color:rgba(255,255,255,0.55); margin-top:6px; }
.btn-outline-white {
  display:inline-flex; align-items:center; gap:8px;
  background:transparent; color:var(--white);
  font-size:12px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase;
  padding:14px 28px; border:2px solid rgba(255,255,255,0.45); border-radius:var(--radius-sm);
  transition:var(--transition); flex-shrink:0;
}
.btn-outline-white:hover { background:rgba(255,255,255,0.1); border-color:var(--white); }

/* Doctor cards — horizontal strip */
.doctors-grid { display:flex; flex-direction:column; gap:20px; }
.doctor-card {
  display:grid; grid-template-columns:auto 1fr auto;
  gap:28px; align-items:center;
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--radius); padding:28px 32px;
  box-shadow:var(--shadow); transition:border-color 0.3s, box-shadow 0.3s;
}
.doctor-card:hover { border-color:var(--green); box-shadow:var(--shadow-lg); }
.doc-avatar {
  width:80px; height:80px; border-radius:50%;
  background:var(--green-soft); border:2px solid var(--green-mid);
  display:flex; align-items:center; justify-content:center;
  font-size:22px; font-weight:800; color:var(--green); flex-shrink:0; overflow:hidden;
}
.doc-avatar img { width:100%; height:100%; object-fit:cover; }
.doc-info h3 { font-size:17px; font-weight:700; color:var(--black); margin-bottom:4px; }
.doc-quals { font-size:12px; color:var(--grey); margin-bottom:6px; }
.doc-bio { font-size:13px; color:var(--text-light); line-height:1.7; }
.doc-location {
  font-size:11px; font-weight:700; color:var(--green);
  display:flex; align-items:center; gap:6px;
  white-space:nowrap; flex-shrink:0;
  background:var(--green-soft); padding:8px 14px; border-radius:var(--radius-pill);
}

/* ================================================
   ANIMATIONS
   ================================================ */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity:1; transform:translateY(0); }
.delay-1 { transition-delay:0.12s; }
.delay-2 { transition-delay:0.24s; }
.delay-3 { transition-delay:0.36s; }

@keyframes fadeUp   { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeDown { from { opacity:0; transform:translateY(-20px); } to { opacity:1; transform:translateY(0); } }
@keyframes marqueeScroll { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width:1100px) {
  .therapy-grid, .shots-grid, .athome-pkg-grid { grid-template-columns:repeat(2,1fr); }
  .about-layout, .why-layout { gap:48px; }
}

@media (max-width:960px) {
  .section-pad { padding:72px 0; }
  .about-layout, .why-layout, .booking-layout, .faq-layout, .svc-panel-layout { grid-template-columns:1fr; gap:40px; }
  .benefits-header { grid-template-columns:1fr; gap:20px; }
  .benefits-strip { grid-template-columns:repeat(2,1fr); }
  .hiw-track { grid-template-columns:1fr; gap:0; }
  .hiw-connector { flex-direction:row; padding:12px 0; }
  .hiw-line { width:40px; height:1px; }
  .hiw-arrow { transform:none; }
  .testi-layout { grid-template-columns:1fr; }
  .package-grid { grid-template-columns:repeat(2,1fr); }
  .pkg-card { min-height:480px; }
  .footer-top { grid-template-columns:1fr; gap:40px; }
  .hero-side-stats { display:none; }
  .about-img-accent { width:140px; height:140px; right:-12px; bottom:-16px; }
  .why-cert-badge { right:-8px; }
  .doctor-card { grid-template-columns:auto 1fr; }
  .doc-location { display:none; }
  .shot-card { grid-template-columns:1fr; }
  .shot-img img { min-height:200px; }
}

@media (max-width:640px) {
  .navbar { height:68px; }
  .nav-inner { padding:0 20px; gap:16px; }
  .nav-links {
    flex-direction:column; align-items:stretch; gap:0;
    position:fixed; top:68px; left:0; right:0;
    background:#ffffff;
    padding:0;
    box-shadow:0 24px 60px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.08);
    border-top:3px solid var(--green);
    visibility:hidden; opacity:0; pointer-events:none;
    transform:translateY(-8px);
    transition:opacity 0.25s ease, transform 0.28s cubic-bezier(0.34,1.1,0.64,1), visibility 0.25s;
    z-index:9800;
    max-height:calc(100vh - 68px); overflow-y:auto;
  }
  .nav-links.open {
    visibility:visible; opacity:1; pointer-events:auto;
    transform:translateY(0);
    transition:opacity 0.25s ease, transform 0.28s cubic-bezier(0.34,1.1,0.64,1), visibility 0s;
  }
  /* Each nav item — full width, single bottom border */
  .nav-links li { border-bottom:1px solid rgba(0,0,0,0.06); margin:0; }
  /* Remove border on the item directly above the CTA footer */
  .nav-links li:nth-last-of-type(2) { border-bottom:none; }
  .nav-links li:last-of-type { border-bottom:none; }
  /* Link takes full row with side padding */
  .nav-links a {
    color:var(--text); padding:15px 24px; font-size:14.5px; font-weight:600;
    display:flex; align-items:center; gap:10px; width:100%;
    letter-spacing:0.1px; transition:color 0.2s;
  }
  /* Right-side chevron */
  .nav-links a::after {
    content:'›'; display:block !important;
    position:static; left:auto; right:auto; bottom:auto;
    margin-left:auto; height:auto; width:auto;
    background:transparent; border-radius:0;
    font-size:22px; font-weight:300; line-height:1;
    color:rgba(0,0,0,0.2); transition:color 0.2s, transform 0.2s;
  }
  .nav-links a:hover { color:var(--green); }
  .nav-links a:hover::after { color:var(--green); transform:translateX(3px); left:auto; right:auto; }
  /* Active page — green soft background, full width */
  .nav-links a.active {
    color:var(--green); font-weight:700;
    background:var(--green-soft); padding:15px 24px; margin:0;
  }
  .nav-links a.active::before { content:''; display:inline-block; width:6px; height:6px; background:var(--green); border-radius:50%; flex-shrink:0; }
  .nav-links a.active::after { color:var(--green); transform:translateX(3px); left:auto; right:auto; }
  .nav-links a:hover::after, .nav-links a.active::after { left:auto; right:auto; }
  .nav-phone { display:none; }
  .nav-cta { display:none; }
  .nav-right { margin-left:auto; }
  .hamburger { display:flex; }

  /* Mobile nav footer — Book Now + phone */
  .nav-mobile-footer {
    display:flex !important; flex-direction:column; gap:10px;
    padding:16px 24px 22px; margin:0;
    border-top:1px solid rgba(0,0,0,0.08) !important;
    background:#f8fbf9;
  }
  .nav-mobile-footer a::after { display:none !important; }
  .nav-mobile-book {
    display:flex; align-items:center; justify-content:center; gap:8px;
    padding:14px 16px; border-radius:10px;
    background:var(--green); color:#fff !important;
    font-size:14px; font-weight:700; letter-spacing:0.2px;
    text-decoration:none; transition:background 0.2s;
    box-shadow:0 3px 12px rgba(26,122,74,0.25);
  }
  .nav-mobile-book:hover { background:var(--green-dark); }
  .nav-mobile-phone {
    display:flex; align-items:center; justify-content:center; gap:8px;
    padding:12px 16px; border-radius:10px;
    border:1.5px solid rgba(0,0,0,0.12); color:var(--text) !important;
    font-size:13.5px; font-weight:600; text-decoration:none;
    background:#fff; transition:border-color 0.2s, color 0.2s;
  }
  .nav-mobile-phone:hover { border-color:var(--green); color:var(--green) !important; }

  /* At-home process grid — stack on mobile */
  .ah-process-grid { grid-template-columns:1fr !important; }
  .ah-process-img { height:240px !important; }

  .hero-bottom-bar { display:none; }
  .hero { margin-top:68px; min-height:calc(100vh - 68px); }
  .hero-overlay { background:rgba(12,62,32,0.75); }
  .hero-center { text-align:center; padding:clamp(36px, 5vh, 56px) 20px clamp(28px, 4vh, 44px); }
  .hero-sub { margin:0 auto 36px; }
  .hero-ctas { flex-direction:column; align-items:center; justify-content:center; }
  .hero-trust { justify-content:center; }
  .benefits-strip { grid-template-columns:1fr; gap:2px; }
  .svc-tabs { overflow-x:auto; }
  .svc-tab { padding:12px 18px; white-space:nowrap; }
  .package-grid { grid-template-columns:1fr; }
  .therapy-grid, .shots-grid, .athome-pkg-grid { grid-template-columns:1fr; }
  .bf-grid { grid-template-columns:1fr; }
  .about-img-accent { display:none; }
  .why-review-badge { left:12px; bottom:12px; }
  .why-cert-badge { display:none; }
  .therapy-card-body { padding:24px; }
  .footer-links-grid { grid-template-columns:repeat(2,1fr); }
  .coverage-grid { flex-direction:column; }
  .loyalty-banner { flex-direction:column; padding:32px; }
  .testi-featured { padding:32px; }
  .tf-quote { font-size:80px; }
  .doctor-card { grid-template-columns:1fr; text-align:center; }
  .doc-avatar { margin:0 auto; }
}

/* ================================================
   BOOKING V2 — Premium appointment form
   ================================================ */
.booking-v2 {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.booking-v2::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(26,122,74,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 100% 20%, rgba(26,122,74,0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* Layout */
.bv2-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
  position: relative; z-index: 1;
}

/* ── LEFT PANEL ── */
.bv2-left p {
  font-size: 15px; color: rgba(255,255,255,0.55);
  line-height: 1.85; margin-bottom: 36px;
}
.bv2-contacts {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 36px;
}
.bv2-contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  transition: border-color 0.3s, background 0.3s;
  text-decoration: none;
}
.bv2-contact-item:hover {
  border-color: rgba(26,122,74,0.4);
  background: rgba(26,122,74,0.06);
}
.bv2-ci-icon { font-size: 20px; flex-shrink: 0; width: 26px; text-align: center; margin-top: 1px; }
.bv2-contact-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.bv2-contact-item span { font-size: 12px; color: rgba(255,255,255,0.4); }

.bv2-trust { display: flex; flex-direction: column; gap: 12px; }
.bv2-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(255,255,255,0.5);
}
.bv2-trust-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(26,122,74,0.2);
  border: 1px solid rgba(26,122,74,0.4);
  color: var(--green-light);
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── FORM CARD ── */
.bv2-form-wrap {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.05);
}

.bv2-form { padding: 0; }

.bv2-form-header {
  background: var(--green);
  padding: 28px 36px;
  background: linear-gradient(120deg, var(--green-dark) 0%, var(--green) 100%);
}
.bv2-form-header h3 {
  font-size: 22px; font-weight: 900;
  color: var(--white); margin-bottom: 4px;
}
.bv2-form-header p {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Fields */
.bv2-field {
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: background 0.2s;
}
.bv2-field:hover { background: rgba(26,122,74,0.02); }
.bv2-field:last-of-type { border-bottom: none; }

.bv2-field-inner {
  display: flex; align-items: center; gap: 14px;
  padding: 0 28px;
  min-height: 68px;
  position: relative;
}

.bv2-field-icon {
  font-size: 18px; flex-shrink: 0;
  width: 24px; text-align: center;
  opacity: 0.45;
}

.bv2-input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 500;
  color: var(--black);
  padding: 0;
  min-height: 68px;
}
.bv2-input::placeholder { color: rgba(0,0,0,0.4); font-weight: 500; }
.bv2-input::-webkit-calendar-picker-indicator { opacity: 0.4; cursor: pointer; }

/* Select custom styling */
.bv2-select {
  appearance: none; cursor: pointer;
  color: rgba(0,0,0,0.85); background: transparent;
}
.bv2-select option { color: var(--black); background: var(--white); }
.bv2-chevron {
  font-size: 20px; color: rgba(0,0,0,0.3);
  flex-shrink: 0; line-height: 1;
  transform: rotate(90deg); pointer-events: none;
  font-weight: 300;
}

/* Focus state — left accent line */
.bv2-field:focus-within {
  background: rgba(26,122,74,0.04);
}
.bv2-field:focus-within .bv2-field-icon { opacity: 0.8; }
.bv2-field:focus-within .bv2-input::placeholder { color: rgba(0,0,0,0.25); }

/* Submit button */
.bv2-submit {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; width: 100%;
  background: linear-gradient(120deg, var(--green-dark) 0%, var(--green) 60%, var(--green-light) 100%);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 15px; font-weight: 800;
  letter-spacing: 0.5px;
  padding: 22px 36px;
  border: none; cursor: pointer;
  transition: filter 0.3s, transform 0.2s;
  position: relative; overflow: hidden;
}
.bv2-submit::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.08) 0%, transparent 100%);
  opacity: 0; transition: opacity 0.3s;
}
.bv2-submit:hover { filter: brightness(1.08); transform: none; }
.bv2-submit:hover::before { opacity: 1; }
.bv2-submit:active { filter: brightness(0.95); }

.bv2-submit-icon {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s;
}
.bv2-submit:hover .bv2-submit-icon { background: rgba(255,255,255,0.28); }

.bv2-note {
  padding: 14px 28px;
  font-size: 11px; color: rgba(0,0,0,0.35);
  text-align: center; line-height: 1.6;
}
.bv2-note a { color: var(--green); text-decoration: none; }
.bv2-note a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .bv2-layout { grid-template-columns: 1fr; gap: 48px; }
  .bv2-form-header { padding: 22px 28px; }
  .bv2-field-inner { padding: 0 22px; }
  .bv2-submit { padding: 20px 28px; }
  .bv2-note { padding: 12px 22px; }
}
@media (max-width: 640px) {
  .bv2-field-inner { gap: 10px; }
  .bv2-input { font-size: 14px; }
}

/* ── Dynamic drip field slide-in ── */
.bv2-drip-field {
  overflow: hidden;
  border-left: 3px solid var(--green);
  background: rgba(26,122,74,0.04);
}
.bv2-drip-field .bv2-field-icon { opacity: 1; color: var(--green); }
.bv2-drip-in {
  animation: dripSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes dripSlideIn {
  from { opacity: 0; transform: translateY(-8px) scaleY(0.9); max-height: 0; }
  to   { opacity: 1; transform: translateY(0) scaleY(1);    max-height: 100px; }
}

/* ================================================
   LUCIDE ICON SYSTEM
   ================================================ */

/* Base — all lucide icons */
.lucide {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Card icon (large, inside prem-icon-wrap) */
.card-icon {
  width: 40px; height: 40px;
  stroke: var(--green-light);
}

/* Field icons (form inputs) */
.field-svg {
  width: 20px; height: 20px;
  stroke: rgba(0,0,0,0.4);
  flex-shrink: 0;
}
.bv2-field:focus-within .field-svg { stroke: var(--green); }

/* Check icon inside benefit lists */
.check-svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
  stroke: var(--green-light);
  margin-top: 2px;
}

/* Benefit tile icons (dark sections) */
.benefit-tile .lucide { stroke: var(--green-light); width: 32px; height: 32px; }

/* About / overview pillars */
.pillar .lucide { stroke: var(--green); width: 22px; height: 22px; }

/* Why-us items */
.why-cert-badge .lucide { stroke: var(--white); width: 22px; height: 22px; }

/* BC contact items */
.bv2-ci-icon .lucide { stroke: rgba(255,255,255,0.7); width: 20px; height: 20px; }
.bc-item .lucide     { stroke: rgba(255,255,255,0.7); width: 20px; height: 20px; }

/* Trust items */
.bv2-trust-icon .lucide { stroke: var(--green-light); width: 12px; height: 12px; }

/* At-home ap-icon-wrap */
.ap-icon-wrap .lucide { stroke: var(--green-light); width: 24px; height: 24px; }

/* Why pillar bar items */
.why-pillar .lucide { stroke: var(--green); }

/* Modal stat icons */
.md-stat-icon .lucide { stroke: var(--green-light); width: 16px; height: 16px; }

/* Modal benefit check */
.md-benefits li .lucide { stroke: var(--green-light); width: 14px; height: 14px; flex-shrink:0; margin-top:2px; }

/* hiw icon wrap */
.hiw-icon-wrap svg { stroke: var(--green-light); }
.hiw-icon-wrap .lucide { stroke: var(--green-light); width: 26px; height: 26px; }

/* Booking contact icon override */
.bv2-ci-icon svg { stroke: rgba(255,255,255,0.7); }

/* Close button */
.modal-close .lucide { stroke: rgba(255,255,255,0.7); width: 14px; height: 14px; }

/* Stars — keep text rendering */
.stars { color: var(--green); font-size: inherit; letter-spacing: 2px; }

/* Prem-icon-wrap override for SVG */
.prem-icon-wrap .lucide,
.prem-icon-wrap svg {
  width: 26px; height: 26px;
  stroke: var(--green-light);
  stroke-width: 1.5;
}

/* Shot / therapy icon areas */
.shot-icon .lucide, .tc-icon .lucide {
  width: 26px; height: 26px;
  stroke: var(--green-light);
}

/* Package icon */
.pkg-icon .lucide {
  width: 28px; height: 28px;
  stroke: var(--green-light);
}

/* At-home num badge */
.ap-num { font-size: 9px; }

/* Footer legal disclaimer block */
.footer-legal {
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(26,122,74,0.1);
}
.footer-legal .disclaimer {
  font-size: 11px;
  color: #2d4a35;
  line-height: 1.75;
  max-width: 900px;
}

/* ── Floating booking widget ── */
.fw-btn {
  position:fixed; bottom:32px; right:32px; z-index:9900;
  width:56px; height:56px; border-radius:50%;
  background:var(--green); color:var(--white);
  border:none; cursor:pointer; display:flex;
  align-items:center; justify-content:center;
  box-shadow:0 4px 24px rgba(0,0,0,0.3);
  transition:transform 0.2s, background 0.2s;
}
.fw-btn:hover { background:var(--green-dark); transform:scale(1.08); }
.fw-panel {
  position:fixed; bottom:100px; right:32px; z-index:9900;
  width:340px; background:var(--white); border-radius:16px;
  box-shadow:0 16px 48px rgba(0,0,0,0.18);
  transform:translateY(16px) scale(0.97);
  opacity:0; pointer-events:none;
  transition:transform 0.25s var(--ease), opacity 0.25s;
  display:flex; flex-direction:column;
  max-height:calc(100vh - 120px);
}
.fw-panel.open { transform:translateY(0) scale(1); opacity:1; pointer-events:auto; }
.fw-panel-header {
  padding:16px 20px 14px; border-bottom:1px solid #eee;
  display:flex; align-items:center; justify-content:space-between;
  flex-shrink:0;
}
.fw-panel-header h4 { font-size:15px; font-weight:700; color:var(--dark); margin:0; }
.fw-close { background:none; border:none; cursor:pointer; color:rgba(0,0,0,0.4); display:flex; transition:color 0.2s; }
.fw-close:hover { color:var(--dark); }
.fw-panel-body { padding:16px 20px 20px; overflow-y:auto; }
.fw-panel-body .form-group { margin-bottom:10px; }
.fw-panel-body .form-group label { font-size:11px; font-weight:600; color:rgba(0,0,0,0.55); display:block; margin-bottom:3px; text-transform:uppercase; letter-spacing:0.5px; }
.fw-panel-body .form-group input,
.fw-panel-body .form-group select {
  width:100%; padding:8px 12px; border:1px solid #ddd;
  border-radius:8px; font-size:13px; color:var(--dark);
  background:var(--white); box-sizing:border-box; font-family:inherit;
}
.fw-panel-body .form-group input:focus,
.fw-panel-body .form-group select:focus { outline:none; border-color:var(--green); box-shadow:0 0 0 3px rgba(26,122,74,0.08); }
.fw-submit {
  width:100%; padding:11px; background:var(--green); color:var(--white);
  border:none; border-radius:8px; font-size:13px; font-weight:700;
  cursor:pointer; margin-top:6px; transition:background 0.2s; font-family:inherit;
  letter-spacing:0.3px;
}
.fw-submit:hover { background:var(--green-dark); }
/* ── Separate Call & WhatsApp floating buttons ── */
.fw-side-btn {
  position:fixed; right:32px; z-index:9900;
  width:56px; height:56px; border-radius:50%;
  border:none; cursor:pointer; display:flex;
  align-items:center; justify-content:center;
  box-shadow:0 4px 24px rgba(0,0,0,0.3);
  transition:transform 0.2s, box-shadow 0.2s;
  text-decoration:none; color:#fff;
}
.fw-side-btn:hover { transform:scale(1.08); box-shadow:0 6px 22px rgba(0,0,0,0.32); color:#fff; }
.fw-call-btn { bottom:100px; background:var(--green-dark); }
.fw-wa-btn   { bottom:168px; background:#25D366; }
@media (max-width:640px) {
  .fw-panel { width:calc(100vw - 24px); right:12px; bottom:92px; max-height:calc(100vh - 116px); }
  .fw-btn      { bottom:20px;  right:16px; }
  .fw-call-btn { bottom:88px;  right:16px; }
  .fw-wa-btn   { bottom:156px; right:16px; }
}

/* ── Large screens / TV (1440px+) ── */
@media (min-width:1440px) {
  .container { max-width:1400px; }
  .section-pad { padding:112px 0; }
  .hero { min-height:calc(100vh - 76px); }
  .hero-title { font-size:clamp(52px, 4.5vw, 80px); }
  .section-title { font-size:clamp(30px, 2.5vw, 44px); }
  .page-hero { height:580px; }
  .therapy-grid { grid-template-columns:repeat(4,1fr); }
  .shots-grid { grid-template-columns:repeat(3,1fr); }
  .nc-grid { grid-template-columns:repeat(3,1fr); }
  .bv2-layout { gap:120px; }
}

/* ===================== CTA STRIP ===================== */
.cta-strip { background:var(--green-dark); padding:52px 0; }
.cta-strip-inner {
  display:flex; align-items:center; justify-content:space-between; gap:32px; flex-wrap:wrap;
}
.cta-strip-text h3 { font-size:clamp(20px,2.5vw,28px); font-weight:800; color:#fff; margin-bottom:8px; }
.cta-strip-text p { font-size:14px; color:rgba(255,255,255,0.7); max-width:480px; }
.cta-strip-actions { display:flex; align-items:center; gap:16px; flex-wrap:wrap; flex-shrink:0; }
.cta-strip-call {
  display:inline-flex; align-items:center; gap:8px;
  font-size:13px; font-weight:700; color:#fff;
  border:1.5px solid rgba(255,255,255,0.35); border-radius:var(--radius-sm);
  padding:13px 24px; transition:border-color 0.2s, background 0.2s;
  letter-spacing:0.3px;
}
.cta-strip-call:hover { border-color:#fff; background:rgba(255,255,255,0.08); }
@media (max-width:768px) {
  .cta-strip-inner { flex-direction:column; align-items:flex-start; gap:24px; }
  .cta-strip-actions { width:100%; }
  .cta-strip-actions .btn-primary, .cta-strip-call { width:100%; justify-content:center; }
}

/* ===================== OFFER GRID (Home — What We Offer) ===================== */
.offer-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.offer-card {
  background:#fff; border-radius:16px; padding:30px 26px;
  border:1.5px solid var(--border); display:flex; flex-direction:column; gap:14px;
  transition:transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.offer-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-lg); }
.offer-card-icon {
  width:52px; height:52px; background:rgba(26,122,74,0.09);
  border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.offer-card-icon svg { stroke:var(--green-light); }
.offer-card h3 { font-size:16px; font-weight:700; color:var(--dark); }
.offer-card p { font-size:13.5px; color:var(--text-light); line-height:1.65; flex:1; margin:0; }
.offer-card-link { font-size:12.5px; font-weight:700; color:var(--green); display:inline-flex; align-items:center; gap:5px; letter-spacing:0.3px; }
.offer-card-link:hover { color:var(--green-dark); }

/* ===================== HOME PROCESS LAYOUT ===================== */
.home-process-layout { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; }
.home-process-img { border-radius:16px; overflow:hidden; height:480px; box-shadow:var(--shadow-lg); }
.home-process-img img { width:100%; height:100%; object-fit:cover; }

/* ===================== WHY MOBILE IV (Home) ===================== */
.why-mobile-grid {
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px;
}
.wm-card {
  background:#fff; border-radius:14px; padding:24px 20px;
  display:flex; flex-direction:column; gap:12px;
  border:1.5px solid var(--border);
  transition:box-shadow 0.22s var(--ease), border-color 0.22s;
}
.wm-card:hover { box-shadow:0 8px 24px rgba(0,0,0,0.09); border-color:rgba(26,122,74,0.3); }
.wm-icon {
  width:44px; height:44px; background:rgba(26,122,74,0.09);
  border-radius:11px; display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.wm-icon svg { stroke:var(--green); }
.wm-card h4 { font-size:15px; font-weight:800; color:var(--dark); margin:0; }
.wm-card p { font-size:13px; color:var(--text-light); line-height:1.65; margin:0; flex:1; }
.wm-stat-row {
  display:flex; align-items:center; justify-content:center;
  gap:40px; margin-top:48px; padding-top:40px;
  border-top:1px solid var(--border); flex-wrap:wrap;
}
.wm-stat { text-align:center; }
.wm-stat-num { font-size:38px; font-weight:900; color:var(--green); line-height:1; }
.wm-stat-label { font-size:11px; color:var(--text-light); margin-top:4px; text-transform:uppercase; letter-spacing:1px; font-weight:600; }

/* ===================== EVENTS & CORPORATE (Home) ===================== */
.ec-section { background: #0b1e12; }
.ec-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.ec-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: background 0.22s var(--ease), border-color 0.22s;
}
.ec-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(26,122,74,0.4); }
.ec-card-icon {
  width:48px; height:48px;
  background:rgba(26,122,74,0.25);
  border:1px solid rgba(26,122,74,0.35);
  border-radius:12px; display:flex;
  align-items:center; justify-content:center;
  margin-bottom:20px; flex-shrink:0;
}
.ec-card-icon svg { stroke: var(--green-light); }
.ec-card h3 { font-size:18px; font-weight:800; color:#fff; margin-bottom:10px; }
.ec-card > p { font-size:13.5px; color:rgba(255,255,255,0.6); line-height:1.65; margin-bottom:20px; flex:1; }
.ec-card ul { list-style:none; display:flex; flex-direction:column; gap:9px; margin-top:auto; }
.ec-card ul li { display:flex; align-items:flex-start; gap:9px; font-size:12.5px; color:rgba(255,255,255,0.75); line-height:1.5; }
.ec-card ul li svg { stroke: var(--green-light); flex-shrink:0; margin-top:2px; }

/* ── Tablet (768px) ── */
@media (max-width:768px) {
  .section-pad { padding:72px 0; }
  .container { padding:0 20px; }
  .hero { margin-top:76px; min-height:calc(100vh - 76px); }
  .hero-overlay { background:rgba(12,62,32,0.72); }
  .hero-center { text-align:center; padding:clamp(40px, 6vh, 64px) 24px clamp(32px, 4vh, 48px); }
  .hero-sub { font-size:14px; margin:0 auto 36px; }
  .hero-ctas { flex-direction:column; align-items:center; gap:12px; }
  .hero-trust { justify-content:center; }
  .hero-title { font-size:clamp(32px, 6vw, 52px); }
  .about-layout, .why-layout { grid-template-columns:1fr; gap:40px; }
  .about-img-accent { width:120px; height:120px; }
  .benefits-strip { grid-template-columns:repeat(2,1fr); }
  .offer-grid { grid-template-columns:repeat(2,1fr); }
  .why-mobile-grid { grid-template-columns:repeat(2,1fr); }
  .home-process-layout { grid-template-columns:1fr; }
  .home-process-img { height:280px; }
  .hiw-track { grid-template-columns:1fr; }
  .bv2-layout { grid-template-columns:1fr; gap:40px; }
  .package-grid { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; gap:36px; }
  .footer-links-grid { grid-template-columns:repeat(2,1fr); }
  .page-hero { height:380px; padding-bottom:40px; }
  .page-hero h1 { font-size:clamp(28px, 5vw, 42px); }
  .svc-panel-layout { grid-template-columns:1fr; }
  .therapy-grid, .shots-grid { grid-template-columns:repeat(2,1fr); }
  .athome-pkg-grid { grid-template-columns:1fr; }
  .membership-cards { grid-template-columns:1fr; }
  .mem-tiers { grid-template-columns:1fr; }
  .nc-grid { grid-template-columns:1fr; }
  .ec-grid { grid-template-columns:1fr; }
}

/* ── Small mobile (390px and below) ── */
@media (max-width:390px) {
  .container { padding:0 16px; }
  .hero-title { font-size:28px; }
  .section-title { font-size:22px; }
  .benefits-strip { grid-template-columns:1fr; }
  .offer-grid { grid-template-columns:1fr; }
  .why-mobile-grid { grid-template-columns:1fr; }
  .therapy-grid, .shots-grid { grid-template-columns:1fr; }
  .svc-tab { padding:10px 14px; font-size:12px; }
  .page-hero { height:320px; }
}
