:root {
  --cyan-primary: #6BAFC0;
  --cyan-light: #78C3D2;
  --cyan-bright: #78D2E1;
  --blue-primary: #1672C0;
  --blue-mid: #1E69A5;
  --blue-deep: #2D6996;
  --navy-900: #050A14;
  --navy-800: #0A0F1E;
  --navy-700: #0D1529;
  --navy-600: #111D35;
  --navy-500: #162340;
  --glass-white-5: rgba(255,255,255,0.05);
  --glass-white-8: rgba(255,255,255,0.08);
  --glass-white-12: rgba(255,255,255,0.12);
  --glass-white-20: rgba(255,255,255,0.20);
  --cyan-glow: rgba(107,175,192,0.3);
  --blue-glow: rgba(22,114,192,0.25);
  --text-primary: #FFFFFF;
  --text-secondary: #B8C5D6;
  --text-muted: #667A8A;
  --accent-green: #0FD17A;
  --accent-amber: #F0A500;
  --red-soft: rgba(239,68,68,0.15);
  --red-text: #F87171;
  --theme-bg: #0A0F1E;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Figtree', sans-serif;
  background: var(--navy-800);
  color: var(--text-primary);
  overflow-x: hidden;
}


/* ─── CUSTOM CURSOR ─── */
/* Only on true pointer devices — hides until first mousemove */
@media (hover: hover) and (pointer: fine) {
  body { cursor: none; }
  a, button, [role="button"], label, select, .faq-question, .hamburger, .theme-toggle, .lang-btn { cursor: none; }
}
@media (hover: none), (pointer: coarse) {
  #cursor-dot, #cursor-ring { display: none !important; }
}
#cursor-dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  position: fixed;
  top: -20px; left: -20px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  opacity: 0;
  transition: opacity 0.3s;
}
#cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid var(--cyan-primary);
  border-radius: 50%;
  position: fixed;
  top: -20px; left: -20px;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
  opacity: 0;
}
body.cursor-hover #cursor-ring { width: 60px; height: 60px; border-color: var(--cyan-bright); }


/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  padding-top: env(safe-area-inset-top, 0px);
  height: calc(72px + env(safe-area-inset-top, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.5s cubic-bezier(0.4,0,0.2,1),
              backdrop-filter 0.5s ease,
              border-color 0.5s ease,
              box-shadow 0.5s ease;
  background: transparent;
}
#navbar.scrolled {
  background: rgba(8,12,24,0.72);
  -webkit-backdrop-filter: blur(48px) saturate(220%) brightness(0.95);
  backdrop-filter: blur(48px) saturate(220%) brightness(0.95);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 8px 48px rgba(0,0,0,0.40),
    0 1px 2px rgba(0,0,0,0.20);
}

/* ─── LOGO FIX ─── */
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 38px;
  width: auto;
  display: block;
}
.footer-logo-img {
  height: 32px;
  width: auto;
  display: block;
  margin-bottom: 8px;
}

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 17px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--cyan-primary);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: flex;
  background: var(--glass-white-8);
  border: 1px solid var(--glass-white-12);
  border-radius: 50px;
  padding: 4px;
  gap: 2px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.lang-btn {
  padding: 5px 12px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: none;
  transition: background 0.2s, color 0.2s;
}
.lang-btn.active { background: var(--glass-white-20); color: #fff; }
.btn-nav-cta {
  background: linear-gradient(135deg, var(--cyan-primary), var(--blue-primary));
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: none;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(107,175,192,0.4); }

/* ─── HAMBURGER (improved) ─── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: var(--glass-white-8);
  border: 1px solid var(--glass-white-12);
  border-radius: 10px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: background 0.2s, transform 0.2s;
}
.hamburger:hover { background: var(--glass-white-20); }
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), opacity 0.25s, width 0.3s;
  transform-origin: center;
}
.hamburger.open { background: rgba(107,175,192,0.15); border-color: rgba(107,175,192,0.3); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU (improved) ─── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(5,10,20,0.97);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.23,1,0.32,1);
  padding: env(safe-area-inset-top, 0px) 0 env(safe-area-inset-bottom, 0px);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-link {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 14px;
  width: 80%;
  text-align: center;
  transition: color 0.2s, background 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.mobile-menu-link:hover {
  color: var(--cyan-primary);
  background: rgba(107,175,192,0.07);
  border-color: rgba(107,175,192,0.2);
  transform: scale(1.02);
}
.mobile-menu-link.cta {
  color: var(--cyan-primary);
  border-color: rgba(107,175,192,0.3);
  background: rgba(107,175,192,0.06);
  margin-top: 16px;
  font-size: 20px;
}
.mobile-menu-divider {
  width: 40px;
  height: 1px;
  background: rgba(107,175,192,0.2);
  margin: 8px 0;
}
.mobile-menu-close {
  position: absolute;
  top: calc(env(safe-area-inset-top, 0px) + 20px);
  right: 20px;
  background: var(--glass-white-8);
  border: 1px solid var(--glass-white-12);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  color: rgba(255,255,255,0.7);
  font-size: 20px;
  transition: background 0.2s;
}
.mobile-menu-close:hover { background: var(--glass-white-20); color: #fff; }

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 5% 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%);
  z-index: 0;
}
.hero-glow-left {
  position: absolute;
  top: 50%; left: 20%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(22,114,192,0.18) 0%, transparent 70%);
  z-index: 1;
  animation: breathe 7s ease-in-out infinite;
}
.hero-glow-right {
  position: absolute;
  top: 30%; left: 80%;
  transform: translate(-50%,-50%);
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(107,175,192,0.12) 0%, transparent 60%);
  z-index: 1;
  animation: breathe 9s ease-in-out infinite reverse;
}
@keyframes breathe {
  0%, 100% { transform: translate(-50%,-50%) scale(0.9); }
  50% { transform: translate(-50%,-50%) scale(1.1); }
}
#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 820px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(107,175,192,0.08);
  border: 1px solid rgba(107,175,192,0.3);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-light);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(15,209,122,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(15,209,122,0); }
}
.hero-h1 {
  font-size: clamp(40px, 7vw, 86px);
  font-weight: 900;
  line-height: 0.97;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(30px);
}
.hero-h1 .gradient-line {
  background: linear-gradient(90deg, var(--cyan-primary), var(--blue-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-sub strong { color: #fff; font-weight: 700; }
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  opacity: 0;
  transform: scale(0.92);
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent-green), #0BAF65);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: none;
  box-shadow: 0 0 30px rgba(15,209,122,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(15,209,122,0.55); }
.btn-primary:hover .arrow { transform: translateX(4px); }
.btn-glass {
  background: var(--glass-white-8);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  padding: 16px 28px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: none;
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-glass:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.hero-social-proof {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  opacity: 0;
}
.hero-social-proof span { color: var(--cyan-primary); margin: 0 10px; }

/* Floating metric cards */
.floating-card {
  position: absolute;
  z-index: 11;
  background: rgba(255,255,255,0.07);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.18);
  opacity: 0;
  animation: float 4s ease-in-out infinite;
}
#fc1 { bottom: 26%; left: 3%; animation-delay: 0s; }
#fc2 { top: 26%; right: 3%; animation-delay: 1.5s; }
#fc3 { bottom: 16%; right: 5%; animation-delay: 0.8s; }
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.fc-num { font-size: 22px; font-weight: 900; background: linear-gradient(135deg, var(--cyan-primary), var(--blue-primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.fc-label { font-size: 11px; font-weight: 600; color: var(--text-secondary); margin-top: 2px; }
.fc-sub { font-size: 10px; color: var(--cyan-primary); font-weight: 700; }

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: opacity 0.4s;
  animation: bounce-scroll 2.5s ease-in-out infinite;
}
.scroll-indicator svg { color: rgba(107,175,192,0.6); }
@keyframes bounce-scroll {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── CLINIC IMAGE SECTION ─── */
#clinic-showcase {
  position: relative;
  background: var(--navy-900);
  padding: 0;
  overflow: hidden;
}
.clinic-showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.clinic-text-side h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.clinic-text-side p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.clinic-image-side {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}
.clinic-image-side img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  border: 1px solid rgba(107,175,192,0.2);
}
.clinic-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10,15,30,0.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(107,175,192,0.25);
  border-radius: 14px;
  padding: 12px 18px;
}
.clinic-image-badge .badge-num { font-size: 20px; font-weight: 900; color: var(--cyan-primary); }
.clinic-image-badge .badge-txt { font-size: 12px; color: var(--text-secondary); font-weight: 600; }
.mini-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.mini-stat { text-align: left; }
.mini-stat-num { font-size: 28px; font-weight: 900; background: linear-gradient(135deg, var(--cyan-primary), var(--blue-primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mini-stat-label { font-size: 12px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }

/* ─── SECTION COMMON ─── */
section { position: relative; padding: 100px 5%; overflow: hidden; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-tag.cyan { color: var(--cyan-primary); }
.section-tag.red { color: var(--red-text); }
.section-h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 640px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--cyan-primary) 0%, var(--blue-primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── PROBLEM ─── */
#problem { background: var(--navy-700); }
#problem .section-inner { max-width: 860px; text-align: center; }
.problem-lead {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}
.problem-sub-line {
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  margin-bottom: 52px;
}
.problem-list { list-style: none; display: flex; flex-direction: column; gap: 14px; text-align: left; margin-bottom: 48px; }
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid rgba(239,68,68,0.5);
  border-radius: 14px;
  padding: 18px 22px;
  transition: transform 0.3s, border-left-color 0.3s;
  opacity: 0;
  transform: translateY(30px);
}
.problem-item:hover { transform: translateX(6px); border-left-color: rgba(239,68,68,0.9); }
.problem-num {
  min-width: 34px;
  height: 34px;
  background: var(--red-soft);
  color: var(--red-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.problem-item p { font-size: 16px; line-height: 1.6; color: var(--text-secondary); padding-top: 6px; }
.problem-cta-text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-style: italic;
}
.btn-outline {
  border: 1.5px solid var(--cyan-primary);
  color: var(--cyan-primary);
  background: transparent;
  border-radius: 50px;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  cursor: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover { background: rgba(107,175,192,0.12); transform: translateY(-2px); }

/* ─── SYSTEM ─── */
#system { background: var(--navy-800); }
.system-header { text-align: center; margin-bottom: 60px; }
.steps-grid { display: flex; flex-direction: column; gap: 20px; max-width: 820px; margin: 0 auto 48px; }
.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(107,175,192,0.15);
  border-radius: 20px;
  padding: 28px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.07);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(30px);
}
.step-card:hover {
  border-color: rgba(107,175,192,0.4);
  box-shadow: 0 0 40px rgba(107,175,192,0.1);
  transform: translateY(-2px);
}
.step-icon {
  width: 52px;
  height: 52px;
  background: rgba(107,175,192,0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--cyan-primary);
}
.step-content { flex: 1; }
.step-label { font-size: 11px; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cyan-primary); margin-bottom: 6px; }
.step-title { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.step-desc { font-size: 14px; line-height: 1.7; color: var(--text-secondary); }

.result-bar { text-align: center; margin-bottom: 36px; }
.result-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(107,175,192,0.08);
  border: 1px solid rgba(107,175,192,0.2);
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 2px 12px rgba(107,175,192,0.08), inset 0 1px 0 rgba(255,255,255,0.08);
}
.result-pill .arrow-cyan {
  color: var(--cyan-primary);
  animation: pulse-x 1.8s ease-in-out infinite;
}
@keyframes pulse-x {
  0%,100% { transform: translateX(0); opacity:1; }
  50% { transform: translateX(4px); opacity: 0.7; }
}
.system-cta { text-align: center; }

/* ─── NUMBERS ─── */
#numbers { background: var(--navy-900); }
#numbers .section-inner { text-align: center; }
#numbers h2 { font-size: clamp(36px, 5vw, 64px); font-weight: 900; margin-bottom: 60px; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.number-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(107,175,192,0.12);
  border-radius: 20px;
  padding: 36px 20px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 4px 20px rgba(0,0,0,0.14), inset 0 1px 0 rgba(255,255,255,0.07);
}
.number-card::before {
  content: '';
  position: absolute;
  top: 0; left: 20%; right: 20%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan-primary), transparent);
}
.num-value { font-size: 52px; font-weight: 900; line-height: 1; background: linear-gradient(135deg, var(--cyan-primary), var(--blue-primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 10px; }
.num-label { font-size: 14px; color: var(--text-secondary); line-height: 1.4; }

/* ─── TECHNOLOGY ─── */
#technology { background: var(--navy-700); }
.tech-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tech-bullets { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.tech-bullets li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--text-secondary); }
.tech-bullets li::before { content: '•'; color: var(--cyan-primary); font-size: 22px; line-height: 1.2; flex-shrink: 0; }
.tech-visual {
  position: relative;
  height: 420px;
  background: rgba(107,175,192,0.04);
  border: 1px solid rgba(107,175,192,0.15);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  backdrop-filter: blur(20px) saturate(130%);
}
.tech-visual::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 280px; height: 280px;
  background: radial-gradient(ellipse, rgba(107,175,192,0.12) 0%, transparent 70%);
}
.tech-svg-wrap { position: relative; z-index: 2; }
.tech-tag {
  position: absolute;
  background: rgba(255,255,255,0.08);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);
  border: 1px solid rgba(107,175,192,0.2);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan-light);
  letter-spacing: 0.05em;
  opacity: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.14), inset 0 1px 0 rgba(255,255,255,0.1);
}
.tech-tag:nth-child(2) { top: 14%; left: 10%; }
.tech-tag:nth-child(3) { top: 14%; right: 10%; }
.tech-tag:nth-child(4) { bottom: 14%; left: 50%; transform: translateX(-50%); }

/* ─── RESULTS ─── */
#results { background: var(--navy-800); }
.results-header { text-align: center; margin-bottom: 60px; }
.results-note { font-size: 13px; color: var(--text-muted); margin-top: 12px; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 48px; }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(30px);
}
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan-primary), var(--blue-primary));
  border-radius: 2px 2px 0 0;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.testimonial-card:hover::before { opacity: 1; }
.tc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
.tc-location { font-size: 13px; font-weight: 700; color: var(--text-secondary); }
.tc-stars { color: var(--accent-amber); font-size: 14px; letter-spacing: 1px; }
.tc-result { font-size: 24px; font-weight: 900; color: var(--cyan-primary); margin-bottom: 4px; }
.tc-meta { font-size: 12px; color: var(--cyan-light); font-weight: 600; margin-bottom: 16px; }
.tc-quote {
  font-size: 13px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-secondary);
  position: relative;
  padding-left: 20px;
}
.tc-quote::before {
  content: '"';
  position: absolute;
  left: 0; top: -4px;
  font-size: 40px;
  line-height: 1;
  color: rgba(107,175,192,0.15);
  font-style: normal;
}
.results-cta { text-align: center; }

/* ─── FAQ ─── */
#faq { background: var(--navy-700); }
.faq-header { text-align: center; margin-bottom: 52px; }
.faq-list { max-width: 760px; margin: 0 auto 48px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.faq-item.open { border-left: 2px solid var(--cyan-primary); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: none;
}
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 1.5px solid rgba(107,175,192,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
  color: var(--cyan-primary);
  font-size: 18px;
  font-weight: 400;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(107,175,192,0.15); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 26px 22px; font-size: 15px; line-height: 1.75; color: var(--text-secondary); }
.faq-cta { text-align: center; }
.btn-green {
  background: linear-gradient(135deg, var(--accent-green), #0BAF65);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: none;
  box-shadow: 0 0 30px rgba(15,209,122,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-green:hover { transform: translateY(-3px); box-shadow: 0 0 50px rgba(15,209,122,0.55); }

/* ─── CONTACT ─── */
#contact { background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-left h2 { font-size: clamp(32px, 4.5vw, 54px); font-weight: 900; line-height: 1.05; margin-bottom: 18px; }
.contact-left p { font-size: 17px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 28px; }
.perks-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.perks-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: var(--text-secondary); }
.perk-check { width: 22px; height: 22px; background: rgba(15,209,122,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent-green); font-size: 13px; }

/* GHL iframe container */
.ghl-form-card {
  background: rgba(255,255,255,0.07);
  -webkit-backdrop-filter: blur(48px) saturate(180%);
  backdrop-filter: blur(48px) saturate(180%);
  border: 1px solid rgba(107,175,192,0.2);
  border-radius: 28px;
  padding: 32px 28px 20px;
  box-shadow: 0 0 80px rgba(107,175,192,0.1), 0 24px 48px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.14);
  opacity: 0;
  transform: translateY(30px);
  min-height: 480px;
}
.ghl-form-card iframe {
  width: 100%;
  min-height: 440px;
  border: none;
  border-radius: 4px;
  display: block;
}

/* ─── THEME TOGGLE ─── */
.theme-toggle {
  background: var(--glass-white-8);
  border: 1px solid var(--glass-white-12);
  border-radius: 50%;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: none;
  font-size: 16px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
}
.theme-toggle:hover { background: var(--glass-white-20); transform: rotate(20deg) scale(1.1); box-shadow: 0 0 14px rgba(107,175,192,0.35); }
.theme-icon { line-height: 1; pointer-events: none; }

/* ─── FOOTER ─── */
footer {
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 5%;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-tagline { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.footer-right { font-size: 13px; color: var(--text-muted); }

/* ─── SCROLL REVEAL BASE ─── */
.reveal { opacity: 0; transform: translateY(40px); }

/* ─── LIGHT MODE ─── */
/* ═══════════════════════════════════
   LIGHT MODE — Apple-inspired premium
   ═══════════════════════════════════ */
body.light-mode {
  --navy-900: #EAF2FC;
  --navy-800: #F5F8FD;
  --navy-700: #E2EDF8;
  --navy-600: #D4E5F5;
  --navy-500: #C2D9EF;
  --glass-white-5:  rgba(255,255,255,0.55);
  --glass-white-8:  rgba(255,255,255,0.72);
  --glass-white-12: rgba(255,255,255,0.82);
  --glass-white-20: rgba(255,255,255,0.92);
  --text-primary:   #0B1F3A;
  --text-secondary: #1E4070;
  --text-muted:     #4A6E92;
  --cyan-primary:   #0077C8;
  --blue-primary:   #005FA8;
  --red-soft:  rgba(220,38,38,0.08);
  --red-text:  #C0230A;
  --theme-bg:  #EAF2FC;
}

/* Hero — sky gradient */
body.light-mode .hero-bg,
body.light-mode #hero {
  background: linear-gradient(155deg, #B8D8F5 0%, #D6ECFB 40%, #E8F4FD 70%, #F0F8FF 100%);
}
body.light-mode #hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 15% 30%, rgba(0,119,200,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 70%, rgba(107,175,192,0.10) 0%, transparent 60%);
  pointer-events: none;
}

/* Navbar — frosted glass bar */
body.light-mode #navbar {
  background: transparent;
}
body.light-mode #navbar.scrolled {
  background: rgba(234,242,252,0.78);
  -webkit-backdrop-filter: blur(40px) saturate(200%) brightness(1.08);
  backdrop-filter: blur(40px) saturate(200%) brightness(1.08);
  border-bottom: 1px solid rgba(0,119,200,0.15);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 4px 32px rgba(0,95,168,0.10);
}
body.light-mode .nav-links a { color: rgba(11,31,58,0.7); }
body.light-mode .nav-links a:hover { color: #0B1F3A; }
body.light-mode .nav-links a::after { background: #0077C8; }
body.light-mode .btn-nav-cta {
  background: linear-gradient(135deg, #0077C8, #005FA8);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,119,200,0.35);
}

/* Mobile nav */
body.light-mode .hamburger span { background: #0B1F3A; }
body.light-mode .mobile-menu {
  background: rgba(234,242,252,0.96);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  backdrop-filter: blur(40px) saturate(180%);
  border-right: 1px solid rgba(0,119,200,0.15);
}
body.light-mode .mobile-menu-link { color: rgba(11,31,58,0.85); }
body.light-mode .mobile-menu-link.cta { color: #0077C8; border-color: rgba(0,119,200,0.3); }
body.light-mode .mobile-menu-close { color: #0B1F3A; background: rgba(0,119,200,0.1); }

/* Sections background gradient flow */
body.light-mode section:not(#hero) {
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
}
body.light-mode section#problem,
body.light-mode section#numbers,
body.light-mode section#faq,
body.light-mode section#form-mid {
  background: linear-gradient(180deg, #EAF2FC 0%, #F2F8FE 100%);
}
body.light-mode section#system,
body.light-mode section#technology,
body.light-mode section#results,
body.light-mode section#contact {
  background: linear-gradient(180deg, #F5F8FD 0%, #EAF2FC 100%);
}

/* Section tags */
body.light-mode .section-tag.cyan {
  background: rgba(0,119,200,0.12);
  color: #005FA8;
  border-color: rgba(0,119,200,0.25);
}

/* Cards — deep frosted glass Apple style */
body.light-mode .problem-item {
  background: rgba(255,255,255,0.78);
  border-color: rgba(0,119,200,0.14);
  box-shadow: 0 2px 20px rgba(0,95,168,0.08), inset 0 1px 0 rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  backdrop-filter: blur(20px) saturate(160%);
}
body.light-mode .problem-item .pi-icon { background: rgba(0,119,200,0.10); }
body.light-mode .step-card {
  background: rgba(255,255,255,0.80);
  border-color: rgba(0,119,200,0.15);
  box-shadow: 0 4px 24px rgba(0,95,168,0.09), inset 0 1px 0 rgba(255,255,255,1);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
}
body.light-mode .step-number { background: linear-gradient(135deg,#0077C8,#005FA8); color:#fff; }
body.light-mode .number-card {
  background: rgba(255,255,255,0.82);
  border-color: rgba(0,119,200,0.15);
  box-shadow: 0 4px 28px rgba(0,95,168,0.10), inset 0 1px 0 rgba(255,255,255,1);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
body.light-mode .number-card .number-val { color: #0077C8; }
body.light-mode .testimonial-card {
  background: rgba(255,255,255,0.82);
  border-color: rgba(0,119,200,0.12);
  box-shadow: 0 4px 28px rgba(0,95,168,0.09), inset 0 1px 0 rgba(255,255,255,1);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
body.light-mode .tc-stars { color: #F59E0B; }
body.light-mode .tc-result { color: #0077C8; }
body.light-mode .faq-item {
  background: rgba(255,255,255,0.78);
  border-color: rgba(0,119,200,0.14);
  box-shadow: 0 2px 16px rgba(0,95,168,0.07), inset 0 1px 0 rgba(255,255,255,0.95);
}
body.light-mode .faq-question { color: #0B1F3A; }
body.light-mode .faq-icon { color: #0077C8; }
body.light-mode .faq-answer-inner { color: #1E4070; }

/* Form card */
body.light-mode .ghl-form-card {
  background: rgba(255,255,255,0.85);
  border-color: rgba(0,119,200,0.18);
  box-shadow: 0 8px 60px rgba(0,95,168,0.13), inset 0 1px 0 rgba(255,255,255,1);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  backdrop-filter: blur(32px) saturate(180%);
}

/* Buttons */
body.light-mode .btn-glass {
  color: #0B1F3A;
  border-color: rgba(0,119,200,0.28);
  background: rgba(255,255,255,0.75);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 12px rgba(0,95,168,0.10), inset 0 1px 0 rgba(255,255,255,0.9);
}
body.light-mode .btn-glass:hover {
  background: rgba(255,255,255,0.95);
  border-color: rgba(0,119,200,0.40);
  color: #0B1F3A;
  box-shadow: 0 4px 20px rgba(0,95,168,0.18), inset 0 1px 0 rgba(255,255,255,1);
}
body.light-mode .btn-glass .arrow { color: #0077C8; }
body.light-mode .btn-green {
  box-shadow: 0 4px 20px rgba(34,197,94,0.35);
}

/* Tech visual */
body.light-mode #tech-visual {
  background: rgba(255,255,255,0.70);
  border-color: rgba(0,119,200,0.15);
  box-shadow: 0 8px 60px rgba(0,95,168,0.10);
}
body.light-mode .tech-tag {
  background: rgba(255,255,255,0.82);
  border-color: rgba(0,119,200,0.18);
  color: #0B1F3A;
  box-shadow: 0 2px 12px rgba(0,95,168,0.10);
}

/* Floating cards hero */
body.light-mode .floating-card {
  background: rgba(255,255,255,0.82);
  border-color: rgba(0,119,200,0.18);
  box-shadow: 0 8px 40px rgba(0,95,168,0.15), inset 0 1px 0 rgba(255,255,255,1);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  backdrop-filter: blur(28px) saturate(180%);
}
body.light-mode .floating-card .fc-label { color: #4A6E92; }
body.light-mode .floating-card .fc-value { color: #0B1F3A; }

/* Footer */
body.light-mode footer {
  background: linear-gradient(180deg, #DCEcF8 0%, #C8DDF0 100%);
  border-top-color: rgba(0,119,200,0.2);
}
body.light-mode .footer-tagline { color: #4A6E92; }
body.light-mode .footer-links a { color: #4A6E92; }
body.light-mode .footer-links a:hover { color: #0077C8; }
body.light-mode .footer-copy { color: #6A8DAE; }

/* Cursor */
body.light-mode #cursor-dot { background: #0077C8; }
body.light-mode #cursor-ring { border-color: rgba(0,119,200,0.5); }

/* Social proof popup */
body.light-mode #sp-popup {
  background: rgba(245,250,255,0.92);
  border-color: rgba(0,119,200,0.2);
  box-shadow: 0 8px 40px rgba(0,95,168,0.15), inset 0 1px 0 rgba(255,255,255,0.95);
}
body.light-mode .sp-text { color: #0B1F3A; }
body.light-mode .sp-meta { color: #4A6E92; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .tech-grid { grid-template-columns: 1fr; }
  .tech-visual { height: 300px; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .clinic-showcase-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .form-mid-header h2 { font-size: clamp(24px, 6vw, 36px); }
  #form-mid { padding: 60px 5%; }
  .form-mid-card { min-height: 380px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .btn-nav-cta { display: none; }
  .floating-card { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  section { padding: 70px 5%; }
  .clinic-showcase-inner { padding: 60px 5%; }
}
@media (max-width: 640px) {
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-glass { text-align: center; justify-content: center; }
  .footer-inner { flex-direction: column; text-align: center; }
  .mini-stats { justify-content: center; gap: 32px; }
  .ghl-form-card { padding: 20px 16px; }
}
@media (max-width: 480px) {
  .ghl-form-card { padding: 16px 12px; min-height: 420px; }
}


/* ─── FORM-MID SECTION ─── */
#form-mid {
  position: relative;
  padding: 90px 5%;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-900) 0%, var(--navy-800) 100%);
}
.form-mid-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(107,175,192,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 80%, rgba(22,114,192,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.form-mid-header {
  text-align: center;
  margin-bottom: 40px;
}
.form-mid-header h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  margin: 14px 0 16px;
  color: var(--text-primary);
}
.form-mid-header p {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}
.form-mid-card {
  min-height: 420px;
}

/* ─── LIQUID GLASS UPGRADES ─── */
/* Cards — more translucent, specular highlights */
.problem-item {
  -webkit-backdrop-filter: blur(32px) saturate(160%);
  backdrop-filter: blur(32px) saturate(160%);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.09), inset 0 -1px 0 rgba(0,0,0,0.12);
}
.step-card {
  -webkit-backdrop-filter: blur(36px) saturate(160%);
  backdrop-filter: blur(36px) saturate(160%);
  box-shadow: 0 4px 32px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.10), inset 0 -1px 0 rgba(0,0,0,0.10);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.step-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 48px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.14);
}
.number-card {
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  backdrop-filter: blur(28px) saturate(160%);
  box-shadow: 0 4px 24px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.08);
}
.testimonial-card {
  -webkit-backdrop-filter: blur(28px) saturate(150%);
  backdrop-filter: blur(28px) saturate(150%);
  box-shadow: 0 4px 28px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 42px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.12);
}
.faq-item {
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
  box-shadow: 0 2px 16px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.07);
}
/* Floating hero cards — full glass */
.floating-card {
  -webkit-backdrop-filter: blur(40px) saturate(180%) brightness(1.05);
  backdrop-filter: blur(40px) saturate(180%) brightness(1.05);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 8px 40px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.14), inset 0 -1px 0 rgba(0,0,0,0.08);
}
/* GHL form card */
.ghl-form-card {
  -webkit-backdrop-filter: blur(48px) saturate(180%);
  backdrop-filter: blur(48px) saturate(180%);
  box-shadow: 0 8px 60px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.10), inset 0 -1px 0 rgba(0,0,0,0.10);
}
/* Tech tags */
.tech-tag {
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 2px 12px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tech-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.12);
}


/* ─── SOCIAL PROOF POPUP ─── */
#sp-popup {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  background: rgba(10,15,30,0.95);
  border: 1px solid rgba(107,175,192,0.25);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 320px;
  min-width: 260px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.04);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  transform: translateX(-110%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease, visibility 0s 0.5s;
  cursor: pointer;
}
body.light-mode #sp-popup {
  background: rgba(255,255,255,0.94);
  border-color: rgba(107,175,192,0.3);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12), 0 0 0 1px rgba(107,175,192,0.1);
}
#sp-popup.sp-show {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease, visibility 0s 0s;
}
#sp-popup.sp-hide {
  transform: translateX(-110%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1), opacity 0.4s ease, visibility 0s 0.5s;
}
.sp-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-primary), var(--blue-primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(107,175,192,0.2);
}
.sp-body {
  flex: 1;
  min-width: 0;
}
.sp-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-primary);
  margin-bottom: 3px;
}
.sp-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: 3px;
}
.sp-meta {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.sp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: sp-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes sp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}
.sp-close {
  position: absolute;
  top: 7px;
  right: 9px;
  font-size: 14px;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.2s;
  font-family: inherit;
}
.sp-close:hover { opacity: 1; }


/* ─── LANDING PAGES (paid traffic) ─── */
.lp-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,12,24,0.85);
  -webkit-backdrop-filter: blur(48px) saturate(220%);
  backdrop-filter: blur(48px) saturate(220%);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lp-navbar .nav-logo-img { height: 34px; width: auto; }

.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 5% 60px;
  overflow: hidden;
}
.lp-hero .hero-bg { position: absolute; inset: 0; background: linear-gradient(160deg, var(--navy-900), var(--navy-800) 50%, var(--navy-700)); z-index: 0; }
.lp-hero-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}
.lp-hero-left { max-width: 560px; }
.lp-hero-left h1 {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 20px;
}
.lp-hero-left h1 .gradient-line {
  background: linear-gradient(90deg, var(--cyan-primary), var(--blue-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lp-hero-left .lp-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.lp-hero-left .lp-sub strong { color: #fff; font-weight: 700; }
.lp-trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.lp-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 600;
}
.lp-trust-badge .badge-icon {
  width: 22px; height: 22px;
  background: rgba(15,209,122,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-green);
  font-size: 12px;
  flex-shrink: 0;
}
.lp-hero-right {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 32px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.lp-form-title {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
  text-align: center;
}
.lp-form-sub {
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 24px;
}
.lp-form { display: flex; flex-direction: column; gap: 14px; }
.lp-form input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.2s, background 0.2s;
}
.lp-form input::placeholder { color: var(--text-muted); }
.lp-form input:focus {
  outline: none;
  border-color: var(--cyan-primary);
  background: rgba(107,175,192,0.06);
}
.lp-form-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--accent-green), #0ab366);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 4px;
}
.lp-form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(15,209,122,0.4);
}
.lp-form-note {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 4px;
}

.lp-stat-banner {
  max-width: 900px;
  margin: 0 auto 0;
  padding: 28px 36px;
  background: rgba(107,175,192,0.06);
  border: 1px solid rgba(107,175,192,0.15);
  border-radius: 16px;
  text-align: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.6;
}
.lp-stat-banner strong { color: var(--cyan-primary); font-weight: 800; }

.lp-section { padding: 80px 5%; }
.lp-section .section-inner { max-width: 900px; margin: 0 auto; }

.lp-problems { list-style: none; display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.lp-problem-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(239,68,68,0.04);
  border: 1px solid rgba(239,68,68,0.1);
  border-left: 3px solid rgba(239,68,68,0.5);
  border-radius: 12px;
  transition: transform 0.2s;
}
.lp-problem-item:hover { transform: translateX(4px); }
.lp-problem-num {
  font-size: 14px;
  font-weight: 900;
  color: var(--red-text);
  min-width: 28px;
  padding-top: 2px;
}
.lp-problem-item p { font-size: 15px; line-height: 1.6; color: var(--text-secondary); margin: 0; }

.lp-footer {
  text-align: center;
  padding: 28px 5%;
  font-size: 13px;
  color: var(--text-muted);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.lp-cta-section {
  text-align: center;
  padding: 80px 5%;
  background: linear-gradient(180deg, transparent, rgba(107,175,192,0.03));
}
.lp-cta-section .lp-hero-right {
  max-width: 480px;
  margin: 32px auto 0;
}

@media (max-width: 900px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lp-hero-left { max-width: 100%; text-align: center; }
  .lp-trust-badges { justify-content: center; }
  .lp-hero { min-height: auto; padding-top: 100px; padding-bottom: 40px; }
}


/* ─── BLOG ─── */

/* Blog Index */
.blog-header {
  padding: 140px 5% 60px;
  text-align: center;
}
.blog-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--text-primary), var(--cyan-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.blog-header p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 5% 80px;
}
.blog-card {
  background: var(--glass-white-5);
  border: 1px solid var(--glass-white-8);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107,175,192,0.12);
}
.blog-card-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--cyan-primary);
  background: rgba(107,175,192,0.1);
  border: 1px solid rgba(107,175,192,0.2);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 14px;
  width: fit-content;
}
.blog-card-title {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.blog-card-title a {
  color: inherit;
  text-decoration: none;
}
.blog-card-title a:hover {
  color: var(--cyan-primary);
}
.blog-card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
  flex: 1;
}
.blog-card-meta {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 700px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* Article Layout */
.article-wrapper {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 5% 80px;
  align-items: start;
}
.article-header {
  padding: 130px 5% 40px;
  max-width: 1060px;
  margin: 0 auto;
}
.article-breadcrumb {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.article-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.article-breadcrumb a:hover { color: var(--cyan-primary); }
.article-breadcrumb span { margin: 0 6px; opacity: 0.5; }
.article-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}
.article-meta {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* TOC Sidebar */
.article-toc {
  position: sticky;
  top: 100px;
  padding: 20px;
  background: var(--glass-white-5);
  border: 1px solid var(--glass-white-8);
  border-radius: 12px;
}
.article-toc-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.article-toc ul {
  list-style: none;
}
.article-toc li {
  margin-bottom: 6px;
}
.article-toc a {
  font-size: 13px;
  line-height: 1.4;
  color: var(--text-secondary);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  border-left: 2px solid transparent;
  padding-left: 10px;
  transition: color 0.2s, border-color 0.2s;
}
.article-toc a:hover,
.article-toc a.active {
  color: var(--cyan-primary);
  border-left-color: var(--cyan-primary);
}

/* Mobile TOC toggle */
.toc-mobile-toggle {
  display: none;
  width: 100%;
  padding: 12px 16px;
  background: var(--glass-white-5);
  border: 1px solid var(--glass-white-8);
  border-radius: 10px;
  color: var(--text-secondary);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 24px;
  text-align: left;
}
.toc-mobile-toggle::after {
  content: '▾';
  float: right;
}
.toc-mobile-toggle.open::after {
  content: '▴';
}
.toc-mobile-content {
  display: none;
  padding: 12px 16px 16px;
  background: var(--glass-white-5);
  border: 1px solid var(--glass-white-8);
  border-radius: 10px;
  margin-top: -14px;
  margin-bottom: 24px;
}
.toc-mobile-content.open { display: block; }
.toc-mobile-content ul { list-style: none; }
.toc-mobile-content li { margin-bottom: 6px; }
.toc-mobile-content a {
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  display: block;
  padding: 4px 0;
}
.toc-mobile-content a:hover { color: var(--cyan-primary); }

/* Article Body */
.article-body {
  max-width: 720px;
}
.article-body h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 48px 0 16px;
  line-height: 1.3;
  scroll-margin-top: 90px;
}
.article-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 32px 0 12px;
  line-height: 1.35;
  color: var(--cyan-light);
}
.article-body p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.article-body ul, .article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.article-body li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.article-body strong {
  color: var(--text-primary);
  font-weight: 700;
}
.article-body blockquote {
  border-left: 3px solid var(--cyan-primary);
  padding: 16px 20px;
  margin: 24px 0;
  background: rgba(107,175,192,0.05);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* Mid-article CTA box */
.article-cta-box {
  padding: 32px;
  background: linear-gradient(135deg, rgba(107,175,192,0.08), rgba(22,114,192,0.06));
  border: 1px solid rgba(107,175,192,0.2);
  border-radius: 16px;
  text-align: center;
  margin: 40px 0;
}
.article-cta-box h3 {
  color: var(--text-primary);
  font-size: 20px;
  margin: 0 0 8px;
}
.article-cta-box p {
  font-size: 15px;
  margin-bottom: 16px;
}
.article-cta-box .btn-primary {
  display: inline-block;
  text-decoration: none;
}

/* Related articles */
.related-articles {
  padding: 60px 5%;
  max-width: 960px;
  margin: 0 auto;
}
.related-articles h2 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 28px;
  text-align: center;
}

@media (max-width: 800px) {
  .article-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .article-toc { display: none; }
  .toc-mobile-toggle { display: block; }
  .article-body h2 { font-size: 22px; }
  .article-body p { font-size: 16px; }
  .article-body li { font-size: 16px; }
}


/* ─── LOCAL PAGES ─── */

.local-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 120px 5% 60px;
  position: relative;
  overflow: hidden;
}
.local-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(107,175,192,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.local-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.local-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.local-hero h1 .city-highlight {
  background: linear-gradient(135deg, var(--cyan-primary), var(--cyan-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.local-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 32px;
}
.local-trust-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.local-trust-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.local-trust-item .trust-dot {
  width: 6px; height: 6px;
  background: var(--accent-green);
  border-radius: 50%;
}

.local-context {
  padding: 80px 5%;
}
.local-context .section-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.local-context-text {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-top: 20px;
}

.local-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin: 40px 0;
}
.local-stat {
  text-align: center;
}
.local-stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--cyan-primary);
}
.local-stat-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.local-faq {
  padding: 80px 5%;
}
.local-faq .section-inner {
  max-width: 800px;
  margin: 0 auto;
}

.local-final-cta {
  text-align: center;
  padding: 80px 5%;
  background: linear-gradient(180deg, transparent, rgba(107,175,192,0.04));
}
.local-final-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.local-final-cta p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 600px) {
  .local-stats { gap: 32px; }
  .local-trust-row { gap: 16px; }
}


/* ─── SERVICE / HUB PAGES ─── */

.svc-hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding: 130px 5% 60px;
  position: relative;
  overflow: hidden;
}
.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 25%, rgba(107,175,192,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.svc-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.svc-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.svc-hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 32px;
}

/* Service cards grid (hub page) */
.svc-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.svc-card {
  background: var(--glass-white-5);
  border: 1px solid var(--glass-white-8);
  border-radius: 16px;
  padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.svc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107,175,192,0.1);
  border-color: rgba(107,175,192,0.25);
}
.svc-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(107,175,192,0.1);
  border: 1px solid rgba(107,175,192,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan-primary);
  margin-bottom: 16px;
}
.svc-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
}
.svc-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 16px;
  flex: 1;
}
.svc-card-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.svc-card-link:hover { gap: 8px; }

/* Service body (subpages) */
.svc-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 5% 80px;
}
.svc-body h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 48px 0 16px;
  line-height: 1.3;
}
.svc-body h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--cyan-light);
}
.svc-body p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.svc-body ul, .svc-body ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.svc-body li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.svc-body strong {
  color: var(--text-primary);
  font-weight: 700;
}
.svc-body blockquote {
  border-left: 3px solid var(--cyan-primary);
  padding: 16px 20px;
  margin: 24px 0;
  background: rgba(107,175,192,0.05);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--text-secondary);
}

/* "For whom" section */
.svc-audience {
  padding: 60px 5%;
}
.svc-audience .section-inner {
  max-width: 800px;
  margin: 0 auto;
}
.svc-audience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.svc-audience-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: var(--glass-white-5);
  border: 1px solid var(--glass-white-8);
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-secondary);
}
.svc-audience-check {
  color: var(--accent-green);
  font-weight: 800;
  font-size: 16px;
  min-width: 20px;
  padding-top: 1px;
}

@media (max-width: 700px) {
  .svc-cards-grid { grid-template-columns: 1fr; }
  .svc-body h2 { font-size: 22px; }
  .svc-body p { font-size: 16px; }
}

/* ── URGENCY BAR ── */
.urgency-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: rgba(107,175,192,.12);
  border-bottom: 1px solid rgba(107,175,192,.2);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.urgency-bar a {
  color: var(--cyan-primary);
  text-decoration: none;
  font-weight: 600;
}
.urgency-bar a:hover { text-decoration: underline; }
.urgency-bar-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 16px;
  padding: 4px 8px;
  line-height: 1;
}
.urgency-bar-close:hover { color: var(--text-primary); }
body.has-urgency-bar #navbar { top: 40px; }
body.has-urgency-bar #hero { padding-top: 40px; }
@media (max-width: 768px) {
  .urgency-bar { display: none; }
  body.has-urgency-bar #navbar { top: 0; }
  body.has-urgency-bar #hero { padding-top: 0; }
}

/* ── HERO INLINE FORM ── */
.hero-layout {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-text-col { flex: 1; }
.hero-form-col {
  flex: 0 0 380px;
  max-width: 380px;
}
.hero-form-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 32px 28px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.hero-form-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}
.hero-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-form input {
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--glass-white-12);
  background: var(--glass-white-5);
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .3s;
  width: 100%;
  box-sizing: border-box;
}
.hero-form input:focus { border-color: var(--cyan-primary); }
.hero-form input::placeholder { color: var(--text-muted); }
.hero-form-btn {
  padding: 16px 24px;
  border-radius: 10px;
  border: none;
  background: var(--accent-green);
  color: var(--navy-800);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity .3s, transform .2s;
  width: 100%;
}
.hero-form-btn:hover { opacity: .9; transform: translateY(-1px); }
.hero-form-trust {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.hero-form-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.hero-form-avatars {
  display: flex;
}
.hero-form-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--glass-white-12);
  border: 2px solid var(--navy-800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--cyan-primary);
  margin-left: -8px;
}
.hero-form-avatar:first-child { margin-left: 0; }
.hero-form-social-text {
  font-size: 13px;
  color: var(--text-secondary);
}
.hero-form-rating {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 12px;
}
.hero-form-rating .stars { color: #F59E0B; }

@media (max-width: 900px) {
  .hero-layout {
    flex-direction: column;
    gap: 32px;
  }
  .hero-form-col {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  .hero-text-col { text-align: center; }
}

/* ── TESTIMONIAL ENHANCEMENTS ── */
.tc-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--glass-white-8);
}
.tc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan-primary), var(--accent-green));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-800);
  flex-shrink: 0;
}
.tc-profile-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tc-clinic-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  font-style: italic;
}
.tc-specialty {
  font-size: 12px;
  color: var(--cyan-primary);
  font-weight: 500;
}

/* ── RESOURCES INDEX ── */
.recursos-hero {
  padding: 140px 24px 60px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.recursos-hero h1 {
  font-size: clamp(30px, 5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.recursos-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.recursos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 24px;
}
.recurso-card {
  background: var(--glass-white-5);
  border: 1px solid var(--glass-white-8);
  border-radius: 16px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color .3s, transform .3s;
}
.recurso-card:hover {
  border-color: var(--cyan-primary);
  transform: translateY(-4px);
}
.recurso-card-icon {
  font-size: 40px;
  line-height: 1;
}
.recurso-card h2 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}
.recurso-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}
.recurso-card .btn-primary {
  align-self: flex-start;
  margin-top: 8px;
}

/* ── STUDY PAGE ── */
.study-hero {
  padding: 140px 24px 60px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.study-hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.study-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.study-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 80px;
}
.study-body h2 {
  font-size: 26px;
  font-weight: 700;
  margin: 48px 0 20px;
  line-height: 1.3;
}
.study-body h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--cyan-primary);
}
.study-body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.study-body ul, .study-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.study-body li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

/* Study charts */
.study-chart {
  margin: 32px 0;
  background: var(--glass-white-5);
  border: 1px solid var(--glass-white-8);
  border-radius: 16px;
  padding: 32px;
}
.study-chart-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.bar-label {
  min-width: 140px;
  font-size: 14px;
  color: var(--text-secondary);
  text-align: right;
}
.bar-track {
  flex: 1;
  height: 32px;
  background: var(--glass-white-5);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.bar-fill {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--cyan-primary), #3DD6F5);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy-800);
  min-width: 48px;
  transition: width .8s ease;
}
.bar-fill.green { background: linear-gradient(90deg, var(--accent-green), #3DE5A0); }
.bar-fill.orange { background: linear-gradient(90deg, #F59E0B, #FBBF24); }
.bar-fill.purple { background: linear-gradient(90deg, #8B5CF6, #A78BFA); }

/* Donut chart */
.donut-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: center;
}
.donut-chart {
  position: relative;
  width: 160px;
  height: 160px;
}
.donut-chart svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.donut-chart circle {
  fill: none;
  stroke-width: 20;
}
.donut-bg { stroke: var(--glass-white-8); }
.donut-fill {
  stroke: var(--cyan-primary);
  stroke-linecap: round;
  transition: stroke-dashoffset .8s ease;
}
.donut-fill.green { stroke: var(--accent-green); }
.donut-fill.orange { stroke: #F59E0B; }
.donut-fill.purple { stroke: #8B5CF6; }
.donut-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: 800;
}
.donut-label {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 8px;
}
.donut-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Study lead magnet form */
.study-download-box {
  background: linear-gradient(135deg, rgba(107,175,192,.12), rgba(15,209,122,.08));
  border: 2px solid var(--cyan-primary);
  border-radius: 16px;
  padding: 40px 32px;
  margin: 48px 0;
  text-align: center;
}
.study-download-box h3 {
  color: var(--text-primary);
  font-size: 24px;
  margin: 0 0 8px;
}
.study-download-box > p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}
.study-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto;
}
.study-form input {
  flex: 1;
  min-width: 160px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--glass-white-12);
  background: var(--glass-white-5);
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color .3s;
}
.study-form input:focus {
  border-color: var(--cyan-primary);
}
.study-form input::placeholder {
  color: var(--text-muted);
}
.study-form button {
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  background: var(--cyan-primary);
  color: var(--navy-800);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity .3s;
  white-space: nowrap;
}
.study-form button:hover { opacity: .85; }

/* ── CALCULATOR PAGE ── */
.calc-hero {
  padding: 140px 24px 60px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.calc-hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.calc-hero p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.calc-container {
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.calc-inputs {
  background: var(--glass-white-5);
  border: 1px solid var(--glass-white-8);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.calc-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.calc-field select,
.calc-field input[type="range"] {
  width: 100%;
}
.calc-field select {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--glass-white-12);
  background: var(--glass-white-8);
  color: var(--text-primary);
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8C5D6' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.calc-field select:focus {
  outline: none;
  border-color: var(--cyan-primary);
}
.calc-slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.calc-slider-value {
  min-width: 72px;
  text-align: right;
  font-size: 18px;
  font-weight: 700;
  color: var(--cyan-primary);
}
input[type="range"].calc-range {
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  border-radius: 3px;
  background: var(--glass-white-12);
  outline: none;
  flex: 1;
}
input[type="range"].calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cyan-primary);
  cursor: pointer;
  border: 3px solid var(--navy-800);
}
input[type="range"].calc-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--cyan-primary);
  cursor: pointer;
  border: 3px solid var(--navy-800);
}

/* Calculator results panel */
.calc-results {
  background: linear-gradient(135deg, rgba(107,175,192,.1), rgba(15,209,122,.06));
  border: 2px solid var(--cyan-primary);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.calc-results h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-white-8);
}
.calc-result-row:last-of-type {
  border-bottom: none;
}
.calc-result-label {
  font-size: 14px;
  color: var(--text-secondary);
}
.calc-result-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
}
.calc-result-value.highlight {
  color: var(--accent-green);
  font-size: 28px;
}
.calc-result-value.cyan {
  color: var(--cyan-primary);
}
.calc-cta-box {
  background: var(--glass-white-5);
  border: 1px solid var(--glass-white-8);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-top: auto;
}
.calc-cta-box p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .calc-container {
    grid-template-columns: 1fr;
  }
  .recursos-grid {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }
  .study-form {
    flex-direction: column;
  }
  .bar-label {
    min-width: 100px;
    font-size: 12px;
  }
  .donut-grid {
    gap: 20px;
  }
  .donut-chart {
    width: 120px;
    height: 120px;
  }
  .donut-value {
    font-size: 22px;
  }
}