/* ============================================
   YIHA. Global Styles
   Professional, clean, trustworthy
   ============================================ */

/* ---------- Design tokens ---------- */
:root {
  --teal-50:  #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-300: #5eead4;
  --teal-500: #14b8a6;
  --teal-600: #0a7a70; /* WCAG AA: 4.5:1 on white */
  --teal-700: #0f766e;
  --teal-800: #115e59;

  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;

  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px -2px rgba(15, 23, 42, 0.06), 0 2px 4px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 10px 30px -8px rgba(15, 23, 42, 0.10), 0 4px 8px -2px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 24px 50px -12px rgba(15, 23, 42, 0.14), 0 8px 16px -4px rgba(15, 23, 42, 0.06);
  --shadow-teal: 0 8px 24px -6px rgba(13, 148, 136, 0.18), 0 2px 6px rgba(13, 148, 136, 0.08);

  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --ring-soft: 0 0 0 1px rgba(15, 23, 42, 0.04);
  --ring-teal: 0 0 0 1px rgba(13, 148, 136, 0.10);
}

/* ---------- Skip Link ---------- */
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 1000; padding: 8px 16px; background: var(--teal-600); color: #fff; text-decoration: none; font-weight: 600; }
.skip-link:focus { left: 0; }

/* ---------- Reset & Base ---------- */
a:focus-visible, button:focus-visible, .nav-cta:focus-visible {
  outline: 2px solid var(--teal-600);
  outline-offset: 3px;
  border-radius: 4px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: var(--slate-800);
  line-height: 1.7;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.18;
  color: var(--slate-900);
  letter-spacing: -0.022em;
}
h1 { font-size: clamp(2.3rem, 4.6vw, 3.6rem); letter-spacing: -0.028em; font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.1vw, 2.5rem); letter-spacing: -0.018em; font-weight: 700; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.35rem); letter-spacing: -0.012em; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; letter-spacing: -0.005em; }

p { margin-bottom: 1.2rem; color: var(--slate-600); }
a { color: var(--teal-600); text-decoration: none; transition: color 0.2s var(--ease-out); }
a:hover { color: #0f766e; }
strong { color: var(--slate-900); font-weight: 600; }

/* ---------- Anchor scroll offset (fixed header is 64px tall) ---------- */
[id] {
  scroll-margin-top: 80px;
}

/* ---------- Utility ---------- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 5.5rem 0;
  position: relative;
}
.section-tight { padding: 3rem 0 5.5rem; }

/* Section eyebrow/label */
.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--teal-600);
  margin-bottom: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
  border-radius: 1px;
}

/* Section heading rhythm helper */
.section-heading-mb-1 { margin-bottom: 1rem; }
.section-heading-mb-2 { margin-bottom: 2rem; }
.section-heading-mb-25 { margin-bottom: 2.5rem; }
.cta-anchor-mt-2 { margin-top: 2rem; }

/* Alt section: subtle two-tone with top divider glow */
.section-alt {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--slate-50) 12%, var(--slate-50) 88%, #ffffff 100%);
  position: relative;
}
.section-alt::before,
.section-alt::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.06) 20%, rgba(15, 23, 42, 0.06) 80%, transparent);
}
.section-alt::before { top: 0; }
.section-alt::after { bottom: 0; }

/* In-content list style */
.section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
}
.section ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--slate-600);
  font-size: 0.95rem;
  line-height: 1.6;
}
.section ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.65em;
  width: 6px; height: 6px;
  background: var(--teal-500);
  border-radius: 50%;
  opacity: 0.7;
}

/* ---------- Reveal Animations ---------- */
.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out-quint),
              transform 0.8s var(--ease-out-quint);
  will-change: opacity, transform;
}
.js .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ---------- Header ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.header.scrolled {
  background: rgba(255,255,255,0.94);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04), 0 8px 24px -12px rgba(15, 23, 42, 0.08);
  border-color: rgba(15, 23, 42, 0.06);
}
.nav {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; height: 66px;
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.32rem;
  color: var(--teal-600); letter-spacing: -0.03em;
  display: inline-flex; align-items: center;
  transition: opacity 0.2s var(--ease-out);
}
.nav-logo:hover { opacity: 0.85; }
.nav-links {
  display: flex; align-items: center; gap: 1.85rem;
}
.nav-links a {
  font-size: 0.86rem; font-weight: 500; color: var(--slate-600);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.2s var(--ease-out);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 50%; right: 50%;
  height: 2px; background: linear-gradient(90deg, var(--teal-500), var(--teal-600));
  border-radius: 2px;
  transform: translateX(0);
  opacity: 0;
  transition: left 0.25s var(--ease-out), right 0.25s var(--ease-out), opacity 0.2s var(--ease-out);
}
.nav-links a:hover::after,
.nav-links a.active::after { left: 0; right: 0; opacity: 1; }
.nav-links a:hover { color: var(--teal-600); }
.nav-links a.active { color: var(--slate-900); }

.nav-cta {
  background: linear-gradient(180deg, #0f766e 0%, #0a7a70 100%);
  color: #fff !important;
  padding: 0.55rem 1.25rem; border-radius: 8px;
  font-weight: 600; font-size: 0.82rem;
  letter-spacing: -0.005em;
  box-shadow: var(--shadow-teal), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), filter 0.2s var(--ease-out);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: linear-gradient(180deg, #0a7a70 0%, #0f766e 100%);
  color: #fff;
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 10px 28px -8px rgba(13, 148, 136, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.nav-cta:active { transform: translateY(0); }

.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  border-radius: 6px;
  transition: background 0.2s var(--ease-out);
}
.nav-toggle:hover { background: rgba(15, 23, 42, 0.04); }
.nav-toggle span {
  display: block; width: 22px; height: 1.75px; background: var(--slate-800);
  margin: 4px 0; border-radius: 2px; transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(5.75px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-5.75px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: 8rem 1.5rem 4.5rem;
  min-height: 78vh;
  display: flex; align-items: center;
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(20, 184, 166, 0.10), transparent 60%),
    radial-gradient(900px 500px at 10% 110%, rgba(13, 148, 136, 0.06), transparent 60%),
    linear-gradient(180deg, #ecfdf5 0%, #f0fdfa 35%, #ffffff 75%);
  position: relative;
  overflow: hidden;
}
/* Subtle grid pattern for hero background depth */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 75%);
  pointer-events: none;
  opacity: 0.5;
}
.hero-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 4.5rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero h1 { margin-bottom: 1.4rem; }
.hero h1 span {
  color: var(--teal-600);
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: 1.1rem; color: var(--slate-600);
  max-width: 510px; margin-bottom: 2.1rem;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; align-items: center; }
.hero-price-anchor {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.8rem; font-weight: 600; color: var(--teal-600);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.55rem 0.95rem; border-radius: 999px;
  border: 1px solid rgba(13, 148, 136, 0.22);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.03);
  transition: background 0.2s var(--ease-out), transform 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
  margin-top: 1.25rem;
  align-self: flex-start;
  width: max-content;
  backdrop-filter: blur(6px);
}
.hero-price-anchor:hover {
  background: rgba(13, 148, 136, 0.08);
  transform: translateY(-1px);
  color: #0f766e;
  border-color: rgba(13, 148, 136, 0.32);
}

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  width: 100%;
}
.hero-inner > div:nth-child(2) {
  display: flex; flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}
.hero-stat {
  background: #fff; padding: 1.5rem 1.25rem; border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.hero-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13, 148, 136, 0.18);
}
.hero-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.85rem;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.3rem;
  letter-spacing: -0.02em;
  opacity: 1;
  transform: none;
}
.js .hero-stat-num {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s var(--ease-out-quint), transform 0.8s var(--ease-out-quint);
}
.js .hero-stat.revealed .hero-stat-num {
  opacity: 1;
  transform: translateY(0);
}
.hero-stat-label {
  font-size: 0.78rem; color: var(--slate-500); margin-bottom: 0;
  line-height: 1.45;
  font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.78rem 1.85rem; border-radius: 9px;
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: -0.005em;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out), border-color 0.2s var(--ease-out), color 0.2s var(--ease-out);
  cursor: pointer; border: none; text-decoration: none;
  line-height: 1.2;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(180deg, #0f766e 0%, #0a7a70 100%);
  color: #fff;
  box-shadow: var(--shadow-teal), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #0a7a70 0%, #0f766e 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(13, 148, 136, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.btn-primary:active { transform: translateY(0); box-shadow: var(--shadow-teal); }
.btn-secondary {
  background: #fff; color: var(--slate-800);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover {
  border-color: var(--teal-500);
  color: var(--teal-700);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -2px rgba(13, 148, 136, 0.10);
}
.btn-white {
  background: #fff; color: var(--teal-700);
  box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-white:hover {
  background: #f0fdfa;
  color: var(--teal-800);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-block { width: 100%; justify-content: center; }

/* ---------- Feature Grid ---------- */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: #fff;
  border-radius: 14px; padding: 2.25rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
  display: flex; flex-direction: column;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal-500), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 148, 136, 0.22);
  box-shadow: var(--shadow-lg);
}
.feature-card:hover::before { opacity: 0.7; }
.feature-card h3 { margin-bottom: 0.55rem; color: var(--slate-900); }
.feature-card p { font-size: 0.92rem; color: var(--slate-600); margin-bottom: 0; line-height: 1.65; }
.feature-link {
  font-size: 0.85rem; font-weight: 600;
  margin-top: 1.4rem; display: inline-block;
  color: var(--teal-600);
  transition: transform 0.2s var(--ease-out);
}
.feature-link:hover { color: var(--teal-700); transform: translateX(2px); }

/* ---------- Problem/Solution ---------- */
.split-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.split-card {
  border-radius: 14px; padding: 2.25rem 2.25rem 2rem;
  position: relative;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.split-card.problem {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-xs);
}
.split-card.problem h3 { color: var(--slate-700); }
.split-card.problem li::before { content: '✕'; color: var(--slate-400); }
.split-card.solution {
  background: linear-gradient(180deg, #f0fdfa 0%, #ecfdf5 100%);
  border: 1px solid rgba(13, 148, 136, 0.18);
  box-shadow: 0 1px 2px rgba(13, 148, 136, 0.04);
}
.split-card.solution h3 { color: var(--teal-700); }
.split-card.solution li::before { content: '✓'; color: var(--teal-600); }
.split-card.tinted {
  background: var(--teal-50);
  border: 1px solid rgba(13, 148, 136, 0.18);
  box-shadow: 0 1px 2px rgba(13, 148, 136, 0.04);
}
.split-card.tinted h3 { color: var(--teal-700); }
.split-card h3 { margin-bottom: 1.1rem; font-size: 1.1rem; }
.split-card ul { list-style: none; padding: 0; margin: 0; }
.split-card li {
  padding: 0.55rem 0 0.55rem 1.75rem; font-size: 0.92rem; color: var(--slate-600);
  position: relative;
  line-height: 1.55;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.05);
}
.split-card li:last-child { border-bottom: none; padding-bottom: 0; }
.split-card li::before {
  position: absolute; left: 0; top: 0.55rem;
  font-weight: 700;
  width: 1.25rem; text-align: center;
}

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.steps-tight { margin-top: 2rem; }
.step {
  display: grid; grid-template-columns: 56px 1fr; gap: 1.25rem;
  margin-bottom: 2.25rem;
  align-items: start;
}
.step:last-child { margin-bottom: 0; }
.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 1.5rem;
  color: var(--teal-600); line-height: 1.3;
  position: relative;
  padding-top: 0.05rem;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.step h3 { margin-bottom: 0.35rem; font-size: 1rem; color: var(--slate-900); }
.step p { font-size: 0.92rem; color: var(--slate-600); margin-bottom: 0; line-height: 1.65; }

/* ---------- Tab System ---------- */
.tabs { margin-top: 2rem; }
.tab-nav {
  display: flex; flex-wrap: wrap; gap: 0; margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--slate-200);
}
.tab-btn {
  padding: 0.85rem 1.4rem; font-size: 0.9rem; font-weight: 600;
  color: var(--slate-500); background: none; border: none; cursor: pointer;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
  font-family: inherit;
  letter-spacing: -0.005em;
}
.tab-btn:hover { color: var(--teal-600); }
.tab-btn.active { color: var(--teal-700); border-bottom-color: var(--teal-600); }
.tab-btn:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 4px;
  border-radius: 4px;
}
.tab-content { display: none; animation: fadeIn 0.4s var(--ease-out-quint); }
.tab-content.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Tab panel content (calculator-style) ---------- */
.tab-panel {
  background: linear-gradient(180deg, #f0fdfa 0%, #ecfdf5 100%);
  border-radius: 12px;
  padding: 2rem 2.25rem;
  border: 1px solid rgba(13, 148, 136, 0.18);
  box-shadow: 0 1px 2px rgba(13, 148, 136, 0.04);
}
.tab-panel h3 { color: var(--teal-700); margin-bottom: 1rem; }
.tab-panel p { font-size: 0.92rem; color: var(--slate-600); line-height: 1.7; }
.tab-meta {
  font-size: 0.85rem; color: var(--slate-500); margin-bottom: 0; margin-top: 1.1rem;
}
.tab-intro { margin-top: 1rem; }
.tab-footnote { margin-top: 1.5rem; font-size: 0.9rem; color: var(--slate-500); }
.no-margin-bottom { margin-bottom: 0; }
.lead-paragraph { max-width: 600px; margin-bottom: 2rem; color: var(--slate-600); }
.btn-with-margin { margin-top: 1rem; }
.form-message { margin-top: 1rem; }

/* ---------- Content images ---------- */
.content-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 0 0 1px rgba(15, 23, 42, 0.05),
    0 12px 32px -8px rgba(15, 23, 42, 0.10),
    0 4px 12px -2px rgba(15, 23, 42, 0.06);
  display: block;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.content-image:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.4) inset,
    0 0 0 1px rgba(15, 23, 42, 0.05),
    0 20px 48px -12px rgba(15, 23, 42, 0.16),
    0 6px 16px -4px rgba(15, 23, 42, 0.08);
}
.content-image.image-narrow {
  max-width: 760px;
  margin-left: auto; margin-right: auto;
}
@media (max-width: 768px) {
  .content-image.image-narrow { max-width: 100%; }
}
.team-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem;
  margin-top: 2.5rem;
}
.team-card { text-align: center; }
.team-card img, .team-photo {
  width: 100%; max-width: 320px; height: auto;
  aspect-ratio: 1 / 1; object-fit: cover; object-position: center 30%;
  border-radius: 14px; margin: 0 auto 1.25rem; display: block;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.05),
    0 12px 30px -8px rgba(15, 23, 42, 0.14);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.team-card:hover img, .team-card:hover .team-photo {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(13, 148, 136, 0.18),
    0 18px 40px -10px rgba(15, 23, 42, 0.20);
}
.team-card h3 { margin-bottom: 0.25rem; }
.team-card .team-role {
  font-size: 0.83rem;
  color: var(--teal-600);
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: -0.005em;
}
.team-card p { font-size: 0.9rem; }
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  padding: 4.5rem 1.5rem;
  background:
    radial-gradient(800px 400px at 80% 0%, rgba(20, 184, 166, 0.4), transparent 60%),
    radial-gradient(700px 400px at 20% 100%, rgba(15, 118, 110, 0.4), transparent 60%),
    linear-gradient(135deg, #0f766e 0%, var(--teal-600) 50%, #14b8a6 100%);
  color: #fff; text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent 75%);
  pointer-events: none;
  opacity: 0.6;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
  color: #fff; margin-bottom: 0.85rem;
  letter-spacing: -0.025em;
  font-weight: 800;
}
.cta-banner p { color: rgba(204, 251, 241, 0.92); max-width: 540px; margin: 0 auto 2.1rem; font-size: 1.02rem; }

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 0 0 rgba(255, 255, 255, 0.5); }
  50%      { box-shadow: 0 6px 18px -4px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 0 12px rgba(255, 255, 255, 0); }
}
.cta-banner .btn-white { animation: ctaPulse 2.8s ease-in-out infinite; }

/* ---------- Page Header ---------- */
.page-header {
  padding: 8rem 1.5rem 3rem;
  max-width: 1120px; margin: 0 auto;
  position: relative;
}
.page-header h1 { margin-bottom: 1.25rem; }
.page-header h1 span {
  color: var(--teal-600);
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-header p { font-size: 1.05rem; color: var(--slate-600); max-width: 620px; }
.page-header strong { color: var(--teal-700); }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.75rem;
  align-items: stretch;
}
.pricing-card {
  background: #fff; border-radius: 16px; padding: 2.5rem 2.5rem 2.25rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  position: relative;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.pricing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}
.pricing-card .btn { margin-top: auto; }
.pricing-card.featured {
  border-color: rgba(13, 148, 136, 0.32);
  box-shadow:
    0 0 0 1px rgba(13, 148, 136, 0.32),
    0 16px 40px -12px rgba(13, 148, 136, 0.18);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
}
.pricing-card.featured:hover {
  box-shadow:
    0 0 0 1px rgba(13, 148, 136, 0.4),
    0 24px 50px -12px rgba(13, 148, 136, 0.24);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, #0f766e 0%, #0a7a70 100%);
  color: #fff; padding: 0.35rem 1.1rem;
  border-radius: 999px; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 12px -2px rgba(13, 148, 136, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.pricing-card h3 { margin-bottom: 0.75rem; }
.pricing-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800; font-size: 2.5rem; color: var(--slate-900);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.pricing-amount small { font-size: 0.95rem; font-weight: 500; color: var(--slate-500); letter-spacing: -0.005em; }
.pricing-desc { color: var(--slate-600); font-size: 0.9rem; margin: 1rem 0 1.5rem; line-height: 1.6; }
.pricing-features { list-style: none; padding: 0; margin-bottom: 1.75rem; }
.pricing-features li {
  padding: 0.5rem 0 0.5rem 1.6rem; font-size: 0.88rem; color: var(--slate-600);
  position: relative;
  line-height: 1.5;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.05);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--teal-600); font-weight: 700;
  top: 0.5rem;
}

/* ---------- Pricing extras (Free trial / No Medtech boxes) ---------- */
.pricing-extras {
  margin-top: 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.info-card {
  background: #fff; border-radius: 14px; padding: 2rem 2.25rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.info-card p { font-size: 0.9rem; }
.info-card .btn { margin-top: 1.1rem; }
.value-summary-mt-1 { margin-top: 1rem; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--slate-200);
}
.faq-item:first-child { border-top: 1px solid var(--slate-200); }
.faq-q {
  font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 0; font-size: 0.97rem;
  user-select: none;
  color: var(--slate-900);
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  line-height: 1.45;
  letter-spacing: -0.01em;
  transition: color 0.2s var(--ease-out);
}
.faq-q:hover { color: var(--teal-600); }
.faq-q:focus-visible {
  outline: 2px solid var(--teal-500);
  outline-offset: 4px;
  border-radius: 4px;
}
.faq-q::after {
  content: '+'; font-size: 1.25rem; color: var(--teal-600);
  font-weight: 600; transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
  width: 1.5rem; height: 1.5rem;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--teal-50);
  border: 1px solid rgba(13, 148, 136, 0.18);
}
.faq-item.open .faq-q::after {
  content: '−';
  background: var(--teal-600);
  color: #fff;
  border-color: var(--teal-600);
  transform: rotate(180deg);
}
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}
.faq-a-inner {
  overflow: hidden;
  font-size: 0.92rem; color: var(--slate-600); line-height: 1.7;
}
.faq-item.open .faq-a {
  grid-template-rows: 1fr;
  margin-bottom: 0.75rem;
}
.faq-item.open .faq-a-inner {
  padding-bottom: 0.75rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--slate-900); color: var(--slate-400);
  padding: 4.5rem 1.5rem 2rem;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.3) 50%, transparent);
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand strong {
  font-size: 1.25rem;
  color: #f1f5f9;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.footer-brand p { font-size: 0.85rem; color: var(--slate-500); margin-top: 0.5rem; margin-bottom: 0; line-height: 1.5; }
.footer-col h4 {
  color: #f1f5f9;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-col a {
  display: block; color: var(--slate-400); font-size: 0.88rem;
  margin-bottom: 0.55rem;
  transition: color 0.2s var(--ease-out);
}
.footer-col a:hover { color: var(--teal-300); }
.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, 0.10);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; margin-bottom: 0; color: var(--slate-500); }

/* ---------- Contact Form ---------- */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--slate-700);
}
.form-group input,
.form-group textarea {
  width: 100%; padding: 0.8rem 0.95rem; border: 1px solid var(--slate-300); border-radius: 8px;
  font-size: 0.92rem; font-family: inherit;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  color: var(--slate-800);
  background: #fff;
  line-height: 1.4;
}
.form-group input:hover,
.form-group textarea:hover { border-color: var(--slate-400); }
.form-group input:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.10);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Honeypot. Hidden from real users, catches bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ---------- Contact layout ---------- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}
.contact-card {
  background: #fff; border-radius: 14px; padding: 2rem 2.25rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.contact-card:last-child { margin-bottom: 0; }
.contact-card h3 { margin-bottom: 0.5rem; }
.contact-phone {
  font-size: 1.55rem; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--teal-600);
  margin-bottom: 0;
  letter-spacing: -0.02em;
}
.form-notice {
  margin-top: 1rem; padding: 0.85rem 1.1rem;
  background: linear-gradient(180deg, #f0fdfa 0%, #ecfdf5 100%);
  border: 1px solid rgba(13, 148, 136, 0.22);
  border-radius: 8px; font-size: 0.92rem; color: var(--teal-700);
}
.form-notice.error {
  background: #fef2f2; border-color: #fecaca; color: #dc2626;
}

.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.form-success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f766e 0%, #0a7a70 100%);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.form-success h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--slate-900);
  margin: 0 0 0.5rem;
}
.form-success p {
  font-size: 1rem;
  color: var(--slate-600);
  margin: 0;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Benefit Page Cards ---------- */
.benefit-hero {
  padding: 8rem 1.5rem 4.5rem;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(20, 184, 166, 0.10), transparent 60%),
    radial-gradient(700px 400px at 10% 80%, rgba(13, 148, 136, 0.06), transparent 60%),
    linear-gradient(180deg, #ecfdf5 0%, #f0fdfa 40%, #ffffff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.benefit-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(15, 23, 42, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 30%, transparent 75%);
  pointer-events: none;
  opacity: 0.5;
}
.benefit-hero-inner {
  max-width: 720px; margin: 0 auto;
  position: relative; z-index: 1;
}
.benefit-hero .section-label { justify-content: center; }
.benefit-hero h1 { margin-bottom: 1.2rem; }
.benefit-hero h1 span {
  color: var(--teal-600);
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.benefit-hero p { font-size: 1.1rem; color: var(--slate-600); line-height: 1.7; }
.benefit-card {
  background: #fff; border-radius: 16px; padding: 3rem 3rem 2.5rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
}
.benefit-card:last-child { margin-bottom: 0; }
.benefit-card h2 { margin-bottom: 1.1rem; letter-spacing: -0.02em; }
.benefit-card .split-panel { margin-top: 1.5rem; }
.benefit-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--slate-900); }
.benefit-card p { font-size: 0.95rem; }

.practice-stats {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--slate-200);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  margin: 1.25rem 0;
  box-shadow: var(--shadow-xs);
}
.practice-stats-row {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.practice-stats-cell { font-size: 0.85rem; }
.practice-stats-cell small { color: var(--slate-500); }
.practice-stats-cell strong {
  font-size: 1.5rem;
  color: var(--teal-600);
  display: block;
  margin-top: 0.2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.practice-stats-cell.positive strong { color: #059669; }

.value-summary {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.value-summary h2 { letter-spacing: -0.02em; }
.value-summary p { color: var(--slate-600); }
.value-summary .btn { margin-top: 1.75rem; }

/* ---------- Privacy Page ---------- */
.privacy-prose { max-width: 720px; margin: 0 auto; }
.privacy-prose h2 {
  font-size: 1.25rem; color: var(--teal-700);
  margin-top: 2.75rem; margin-bottom: 0.85rem;
  letter-spacing: -0.015em;
  font-weight: 700;
}
.privacy-prose h2:first-of-type { margin-top: 0; }
.privacy-prose p { font-size: 0.95rem; line-height: 1.7; }
.privacy-effective { margin-top: 2.5rem; font-size: 0.85rem; color: var(--slate-500); }

/* ---------- Video embed (16:9 responsive) ---------- */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  background: var(--slate-900);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.05),
    0 16px 40px -10px rgba(15, 23, 42, 0.18);
  margin: 0;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.video-embed:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.05),
    0 24px 50px -12px rgba(15, 23, 42, 0.24);
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 900px) {
  .video-grid { grid-template-columns: 1fr 1fr; gap: 2.25rem; }
}
.video-item h3 {
  font-size: 1rem;
  margin: 1rem 0 0.4rem;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}
.video-item.video-wide { grid-column: 1 / -1; }
.video-item p {
  font-size: 0.9rem;
  color: var(--slate-600);
  margin-bottom: 0;
  max-width: 60ch;
  line-height: 1.6;
}

/* ---------- In Practice variant (how-it-works two-up) ---------- */
.practice-model p,
.practice-model li { font-size: 0.92rem; }
.practice-model-summary { font-size: 0.92rem; margin-top: 1.1rem; margin-bottom: 0; color: var(--slate-600); }
.practice-model-foot { font-size: 0.9rem; margin-bottom: 0; color: var(--slate-500); }

/* ---------- Demo panel (try-it page) ---------- */
.demo-panel {
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 16px;
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.demo-panel::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-300));
}
.btn-demo {
  font-size: 1rem;
  padding: 1rem 2.5rem;
}
.demo-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--slate-600);
  background: linear-gradient(180deg, #f0fdfa 0%, #ecfdf5 100%);
  border: 1px solid rgba(13, 148, 136, 0.20);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  text-align: left;
  margin-bottom: 1rem;
  line-height: 1.55;
}
.demo-foot {
  font-size: 0.9rem;
  color: var(--slate-500);
  margin-bottom: 0;
  text-align: left;
  line-height: 1.55;
}
@media (max-width: 768px) {
  .demo-panel { padding: 2rem 1.5rem; }
}
@media (max-width: 480px) {
  .demo-panel { padding: 1.75rem 1.25rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-stat-num { opacity: 1; transform: none; transition: none; }
  .tab-content { animation: none; }
  .cta-banner .btn-white { animation: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 66px; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    flex-direction: column; padding: 1.25rem 1.5rem 1.5rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--slate-200);
    box-shadow: 0 8px 24px -8px rgba(15, 23, 42, 0.08);
    transform: translateY(-110%); opacity: 0; pointer-events: none;
    transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out);
    align-items: stretch;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-links a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.04);
    font-size: 0.95rem;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { text-align: center; justify-content: center; margin-top: 0.5rem; }
  .nav-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { min-height: auto; padding: 7rem 1.5rem 3.5rem; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .split-panel { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-extras { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .benefit-card { padding: 2rem 1.75rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .practice-stats-row { flex-direction: column; align-items: flex-start; }
  .practice-stats-cell + .practice-stats-cell {
    border-top: 1px dashed rgba(15, 23, 42, 0.08);
    padding-top: 0.75rem;
  }
  .hero-price-anchor { align-self: stretch; justify-content: center; }
  .section { padding: 4rem 0; }
  .section-tight { padding: 2.5rem 0 4rem; }
  .benefit-hero { padding: 7rem 1.5rem 3.5rem; }
  .cta-banner { padding: 4.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero { padding-top: 5.5rem; padding-bottom: 3rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { grid-template-columns: 1fr; gap: 0.75rem; }
  .page-header { padding-top: 6.5rem; }
  .nav { height: 60px; }
  .nav-links { top: 60px; }
  .nav-logo { font-size: 1.2rem; }
  }
