:root {
  /* Bizzflo public marketing design system */
  --brand:         #00A870;
  --brand-dark:    #007A52;
  --brand-mid:     #00C48C;
  --brand-light:   #E6FFF5;
  --brand-glow:    rgba(0, 168, 112, 0.22);
  --accent:        #FFB800;
  --accent-dark:   #E69500;
  --accent-glow:   rgba(255, 184, 0, 0.28);
  --cyan:          #06B6D4;
  --violet:        #8B5CF6;
  --text:          #0F172A;
  --text-muted:    #64748B;
  --surface:       #FFFFFF;
  --surface-3:     #F8FAFC;
  --gradient-brand: linear-gradient(135deg, #00A870 0%, #06B6D4 50%, #8B5CF6 100%);
  --gradient-warm: linear-gradient(135deg, #FFB800 0%, #F43F5E 100%);
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);

  /* VitaraAfya public site aliases */
  --primary:       var(--brand);
  --primary-hover: var(--brand-dark);
  --primary-pale:  var(--brand-light);
  --primary-deep:  var(--brand-dark);
  --accent-warm:   var(--accent);
  --bg:            var(--surface-3);
  --dark:          var(--text);
  --dark2:         #111827;
  --white:         var(--surface);
  --muted:         var(--text-muted);
  --border:        #E2E8F0;
  --seafoam:       var(--brand-light);
  --radius-sm:     4px;
  --radius-md:     12px;
  --radius-lg:     16px;
  --shadow-sm:     0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md:     0 16px 48px rgba(0, 168, 112, 0.1);
  --container:     1180px;
  --header-h:      76px;
  --section-py:    108px;
  --radius-pill:   999px;
  --border-light:  rgba(255, 255, 255, 0.85);
  --shadow-lg:     0 28px 72px rgba(0, 168, 112, 0.14);
  --font:          'Inter', system-ui, -apple-system, sans-serif;
  --font-display:  var(--font);
  --font-body:     var(--font);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  overflow-x: hidden;
}
body.public-site,
body.pwa-public {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Ambient background — Bizzflo “Brilliant White” */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 8% -5%, var(--brand-glow) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 95% 8%, var(--accent-glow) 0%, transparent 52%),
    radial-gradient(ellipse 45% 35% at 78% 88%, rgba(139, 92, 246, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 15% 92%, rgba(6, 182, 212, 0.22) 0%, transparent 50%),
    linear-gradient(180deg, #FFFFFF 0%, #FAFFFE 35%, #FFFFFF 100%);
}
.site-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 168, 112, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 112, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, transparent 75%);
  pointer-events: none;
}

/* ── Ambient canvas animation (hero-ambient.js) ─────────────────────── */
.va-ambient-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  will-change: transform;
}

h1, h2, h3 {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { font-size: 0.95rem; color: var(--muted); line-height: 1.75; }

img { max-width: 100%; display: block; }
a { color: var(--primary); }

.eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-block;
  margin-bottom: 0.85rem;
  font-family: var(--font-body);
  padding: 6px 16px;
  background: var(--brand-light);
  border-radius: 999px;
  border: 1px solid rgba(0, 168, 112, 0.15);
}
.section-header { margin-bottom: 3rem; max-width: 600px; }
.section-header p { margin-top: 0.75rem; }
.section-header.centered { text-align: center; margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 11px 24px; border-radius: var(--radius-md);
  font-size: 0.9rem; font-weight: 600; cursor: pointer;
  border: none; text-decoration: none; font-family: var(--font-body);
  transition: opacity 0.15s, transform 0.1s, box-shadow 0.15s, background 0.15s;
  line-height: 1;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--gradient-brand); color: white; box-shadow: 0 8px 28px var(--brand-glow); }
.btn-primary:hover { background: var(--brand-dark); text-decoration: none; }
.btn-accent  { background: var(--gradient-warm); color: #fff; box-shadow: 0 8px 28px var(--accent-glow); }
.btn-accent:hover { filter: brightness(1.05); text-decoration: none; }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary-pale); text-decoration: none; }
.btn-outline-white {
  background: transparent; color: white;
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover { border-color: white; text-decoration: none; }
.btn-ghost {
  background: transparent; color: var(--dark);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }
.btn-lg { padding: 14px 32px; font-size: 1rem; }
.btn-sm { padding: 7px 16px; font-size: 0.8rem; }

.section { padding: 6rem 2rem; }
.section-white  { background: var(--white); }
.section-ivory  { background: var(--bg); }
.section-teal   { background: var(--gradient-brand); }
.section-dark   { background: var(--dark); }
.section-pale   { background: var(--primary-pale); }
.container      { max-width: var(--container); margin: 0 auto; }

/* Nav — Bizzflo glass header */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 30px rgba(17, 24, 39, 0.06);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.75rem;
  height: 100%;
  display: flex; align-items: center; gap: 1.5rem;
  overflow: hidden;
}
.nav-logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img { width: 36px; height: 36px; border-radius: 9px; }
.nav-logo-text {
  font-size: 1.05rem; color: var(--dark); font-family: var(--font-body); font-weight: 400;
}
.nav-logo-text strong { color: var(--brand); font-weight: 700; }
.nav-links {
  display: flex; gap: 0.35rem; list-style: none; flex: 1;
  min-width: 0;
  padding: 4px;
  background: var(--surface-3);
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  overflow: hidden;
}
.nav-link {
  font-size: 0.875rem; font-weight: 500;
  color: var(--text-muted); padding: 9px 16px;
  border-radius: var(--radius-pill); text-decoration: none;
  transition: color 0.25s var(--ease), background 0.25s var(--ease), transform 0.2s var(--ease);
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--brand);
  background: rgba(255, 255, 255, 0.7);
  transform: translateY(-1px);
}
.nav-link.active {
  color: #fff;
  font-weight: 600;
  background: var(--gradient-brand);
  box-shadow: 0 6px 20px var(--brand-glow);
}
.nav-link.active:hover { color: #fff; transform: none; }
.nav-ctas { display: flex; gap: 8px; align-items: center; margin-left: auto; flex-shrink: 0; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
}
.lang-switch__btn {
  min-width: 2rem;
  padding: 4px 8px;
  border-radius: calc(var(--radius-md) - 2px);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--muted);
  transition: background 0.15s, color 0.15s;
}
.lang-switch__btn:hover { color: var(--dark); }
.lang-switch__btn.is-active {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 4px 12px var(--brand-glow);
}
.nav-mobile-lang { display: none; }
.btn-ghost-nav {
  padding: 7px 16px; border-radius: var(--radius-md);
  border: 1.5px solid var(--border); color: var(--dark);
  font-size: 0.85rem; font-weight: 500; text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}
.btn-ghost-nav:hover { border-color: var(--primary); color: var(--primary); }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Footer */
.site-footer { background: linear-gradient(180deg, #111827 0%, #0D1117 100%); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: var(--container); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
.footer-logo {
  font-size: 1.3rem; font-weight: 800;
  color: white; margin-bottom: 0.75rem;
  font-family: var(--font-body);
}
.footer-logo span { color: var(--brand-mid); }
.footer-tagline {
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
  line-height: 1.8; max-width: 220px;
}
.footer-socials { display: flex; gap: 8px; margin-top: 1.25rem; }
.social-btn {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-btn svg { width: 15px; height: 15px; }
.social-btn:hover { border-color: var(--accent); color: var(--accent); }
.footer-col-title {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  margin-bottom: 0.9rem; font-family: var(--font-body);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.8rem; color: rgba(255,255,255,0.38); text-decoration: none;
  transition: color 0.15s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.footer-copy { font-size: 0.72rem; color: rgba(255,255,255,0.25); }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-badge {
  font-size: 0.65rem; padding: 4px 10px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.35);
}

/* Hero */
.hero {
  background: transparent;
  padding: 6rem 2rem 5rem;
  overflow: hidden;
}
.hero-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.hero-eyebrow {
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 1.1rem;
  font-family: var(--font-body);
  display: inline-block;
  padding: 6px 16px;
  background: var(--brand-light);
  border-radius: 999px;
  border: 1px solid rgba(0, 168, 112, 0.15);
}
.hero h1 {
  font-family: var(--font-body);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 1.25rem;
}
.hero h1 em {
  font-style: normal;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 2rem; max-width: 520px;
}
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 2rem; border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-body);
  font-size: 1.75rem; font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat-label {
  font-size: 0.72rem; color: var(--text-muted);
  margin-top: 4px; font-family: var(--font-body);
}
.hero-map { max-width: 300px; width: 100%; margin: 0 auto; display: block; }

@keyframes pulseRing {
  0%   { r: 8; opacity: 0.8; }
  70%  { r: 18; opacity: 0; }
  100% { r: 18; opacity: 0; }
}
.pulse-ring { animation: pulseRing 2.5s ease-out infinite; }

.hero-light {
  background: var(--bg);
  padding: 5rem 2rem 4rem;
}
.hero-light h1 { color: var(--dark); }
.hero-light .hero-sub { color: var(--muted); max-width: 560px; }

.logo-bar {
  background: var(--white);
  padding: 2rem;
  border-bottom: 1px solid var(--border);
}
.logo-bar-inner { max-width: var(--container); margin: 0 auto; text-align: center; }
.logo-bar p {
  font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--muted); margin-bottom: 1.25rem;
}
.logo-bar-logos {
  display: flex; justify-content: center; align-items: center;
  gap: 2.5rem; flex-wrap: wrap; opacity: 0.4;
}
.logo-bar-logos span {
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.05em;
  color: var(--dark); text-transform: uppercase;
}

.how-section { background: var(--bg); padding: 6rem 2rem; }
.how-inner { max-width: var(--container); margin: 0 auto; }
.how-steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3rem; position: relative;
}
.how-steps::before {
  content: '';
  position: absolute; top: 28px; left: 10%; right: 10%;
  height: 1px; background: repeating-linear-gradient(
    to right, var(--primary) 0, var(--primary) 6px, transparent 6px, transparent 14px
  );
  z-index: 0;
}
.how-step { position: relative; z-index: 1; }
.how-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 1.4rem; font-weight: 800;
  margin-bottom: 1.25rem;
}
.how-step h4 {
  font-size: 0.95rem; font-weight: 700; color: var(--dark);
  margin-bottom: 0.6rem; font-family: var(--font-body);
}
.how-step p { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

.audiences-section { background: var(--white); padding: 6rem 2rem; }
.audiences-inner { max-width: var(--container); margin: 0 auto; }
.audience-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.audience-card {
  background: var(--bg); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem; position: relative;
  overflow: hidden; transition: transform 0.2s, box-shadow 0.2s;
}
.audience-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.audience-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
}
.audience-card.patient::before  { background: var(--primary); }
.audience-card.doctor::before   { background: var(--accent-warm); }
.audience-card.facility::before { background: #7C3AED; }
.audience-card-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-pale);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.audience-card-icon svg { width: 22px; height: 22px; stroke: var(--primary); }
.audience-card.doctor .audience-card-icon   { background: #FFF3E6; }
.audience-card.doctor .audience-card-icon svg { stroke: var(--accent-warm); }
.audience-card.facility .audience-card-icon { background: #F3EFFE; }
.audience-card.facility .audience-card-icon svg { stroke: #7C3AED; }
.audience-card h3 {
  font-family: var(--font-body);
  font-size: 1.2rem; margin-bottom: 4px; color: var(--dark);
}
.audience-card .subtitle {
  font-size: 0.75rem; color: var(--muted); margin-bottom: 1.25rem;
}
.audience-card ul { list-style: none; margin-bottom: 1.5rem; }
.audience-card ul li {
  font-size: 0.85rem; color: var(--muted);
  padding: 6px 0; display: flex; gap: 8px; align-items: flex-start;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.audience-card ul li::before {
  content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0;
}
.audience-card.doctor ul li::before   { color: var(--accent-warm); }
.audience-card.facility ul li::before { color: #7C3AED; }

.stats-strip { background: var(--gradient-brand); padding: 4rem 2rem; }
.stats-strip-inner {
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.strip-stat-num {
  font-family: var(--font-body);
  font-size: 2.4rem; font-weight: 800; color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.strip-stat-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.75);
  margin-top: 6px; line-height: 1.5;
}

.testimonials-section { background: var(--bg); padding: 6rem 2rem; }
.testimonials-inner { max-width: var(--container); margin: 0 auto; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 1.75rem;
}
.review-stars { color: var(--accent-warm); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
.review-text {
  font-size: 0.88rem; color: var(--dark); line-height: 1.8;
  font-style: italic; margin-bottom: 1.25rem;
}
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--primary); color: white; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800;
}
.review-name  { font-size: 0.85rem; font-weight: 700; color: var(--dark); }
.review-loc   { font-size: 0.72rem; color: var(--muted); }

.cta-banner {
  background: var(--gradient-brand);
  padding: 6rem 2rem;
  text-align: center;
}
.cta-banner-inner { max-width: 640px; margin: 0 auto; }
.cta-banner h2 {
  font-family: var(--font-body);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
.cta-banner h2 span { color: var(--accent); font-style: normal; font-weight: 800; }
.cta-banner p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; font-size: 0.95rem; }
.cta-banner-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.feature-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 1.75rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary-pale); margin-bottom: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.feature-card h4 {
  font-size: 1rem; font-weight: 700; color: var(--dark);
  margin-bottom: 0.5rem; font-family: var(--font-body);
}
.feature-card p { font-size: 0.85rem; line-height: 1.7; }

.payment-strip {
  background: var(--gradient-brand);
  padding: 3rem 2rem;
  color: white;
}
.payment-strip-inner { max-width: var(--container); margin: 0 auto; text-align: center; }
.payment-steps {
  display: flex; justify-content: center; align-items: center;
  gap: 1rem; flex-wrap: wrap; margin: 1.5rem 0;
  font-size: 0.95rem; font-weight: 600;
}
.payment-steps span { opacity: 0.5; }
.payment-methods {
  font-size: 0.82rem; opacity: 0.7; margin-top: 0.75rem;
}

.benefit-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2rem;
}
.benefit-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 2rem;
}
.benefit-card .benefit-icon { font-size: 1.75rem; margin-bottom: 1rem; }
.benefit-card h4 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; }
.benefit-card p { font-size: 0.85rem; }

.tools-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 2rem;
}
.tools-list { list-style: none; }
.tools-list li {
  font-size: 0.88rem; color: var(--muted);
  padding: 8px 0; display: flex; gap: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.tools-list li::before { content: '✓'; color: var(--primary); font-weight: 700; }

/* ============================================================
   Provider page — polished, modern layout
   ============================================================ */

/* — Shared section helpers — */
.psec__eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 1rem;
  padding: 6px 16px;
  background: var(--brand-light);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0,168,112,0.12);
}
.psec__title {
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800; line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.75rem;
  max-width: 640px;
}
.psec__title em {
  font-style: normal;
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.psec__sub {
  font-size: 1rem; color: var(--text-muted);
  line-height: 1.7; max-width: 560px;
  margin-bottom: 2.5rem;
}

/* — Hero — */
.phero {
  position: relative;
  background: var(--surface);
  overflow: hidden;
  padding: 0;
}
.phero__mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(0,168,112,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 80%, rgba(6,182,212,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(139,92,246,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.phero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 560px;
  padding: 5rem 2rem 4rem;
}
.phero__copy { max-width: 560px; }
.phero__eyebrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 1.25rem;
  padding: 6px 16px;
  background: var(--brand-light);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0,168,112,0.12);
}
.phero__title {
  font-family: var(--font-body);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 1.25rem;
}
.phero__title em {
  font-style: normal;
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.phero__sub {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 2rem; max-width: 500px;
}
.phero__ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.phero__cta-primary {
  box-shadow: 0 8px 32px var(--brand-glow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.phero__cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px var(--brand-glow); }
.phero__cta-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
}
.phero__cta-ghost:hover { border-color: var(--brand); color: var(--brand); background: var(--brand-light); text-decoration: none; }
.phero__stats {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.phero__stat-num {
  display: block;
  font-size: 1.6rem; font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.phero__stat-label {
  display: block;
  font-size: 0.72rem; color: var(--text-muted);
  margin-top: 2px; font-weight: 500;
}

/* Hero photo + floating cards */
.phero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.phero__photo-frame {
  position: relative;
  width: 100%; max-width: 440px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0,168,112,0.12),
    0 8px 24px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,168,112,0.1);
  aspect-ratio: 4/5;
  background: var(--surface-3);
}
.phero__photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
}
.phero__float-card {
  position: absolute;
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  font-size: 0.78rem; font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  animation: floatCard 4s ease-in-out infinite;
  z-index: 2;
}
.phero__float-card svg { color: var(--brand); flex-shrink: 0; }
.phero__float-card--top { top: 12%; left: -20px; }
.phero__float-card--bottom {
  bottom: 16%; right: -10px;
  animation-delay: -2s;
}
.phero__float-stars {
  color: #F59E0B; font-size: 0.85rem; letter-spacing: 1px;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .phero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 3.5rem 1.5rem 3rem;
    min-height: auto;
  }
  .phero__title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .phero__visual { order: -1; justify-content: center; }
  .phero__photo-frame { max-width: 320px; height: 380px; aspect-ratio: auto; }
  .phero__float-card--top { left: 8px; top: 8%; }
  .phero__float-card--bottom { right: 8px; bottom: 12%; }
  .phero__stats { gap: 1.5rem; }
}
@media (max-width: 480px) {
  .phero__inner { padding: 2.5rem 1rem 2rem; }
  .phero__photo-frame { max-width: 260px; height: 300px; }
  .phero__float-card { font-size: 0.7rem; padding: 8px 12px; }
}

/* — Trusted By — */
.ptrusted {
  background: var(--surface-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  text-align: center;
}
.ptrusted__label {
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-muted); margin-bottom: 1rem;
}
.ptrusted__logos {
  display: flex; justify-content: center; align-items: center;
  gap: 0.75rem; flex-wrap: wrap;
}
.ptrusted__pill {
  display: inline-flex; align-items: center;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* — Why Join — */
.pwhy { background: var(--surface); }
.pwhy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  max-width: 880px;
}
.pwhy__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.pwhy__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,168,112,0.08);
  border-color: rgba(0,168,112,0.2);
}
.pwhy__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-light);
  border-radius: 12px;
  color: var(--brand);
  margin-bottom: 1rem;
}
.pwhy__icon svg { width: 22px; height: 22px; }
.pwhy__card h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.4rem;
  line-height: 1.3;
}
.pwhy__card p {
  font-size: 0.85rem; color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 600px) {
  .pwhy__grid { grid-template-columns: 1fr; }
}

/* — Who Can Apply — */
.pwho {
  background: var(--surface-3);
}
.pwho__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.pwho__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
  animation: fadeInUp 0.5s var(--ease) both;
  animation-delay: var(--delay, 0s);
}
.pwho__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(0,168,112,0.1);
  border-color: var(--brand);
}
.pwho__photo {
  position: relative;
  width: 96px; height: 96px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--surface-3);
  box-shadow: 0 4px 16px rgba(0,168,112,0.1);
  transition: border-color 0.25s;
}
.pwho__card:hover .pwho__photo { border-color: var(--brand); }
.pwho__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.pwho__badge {
  position: absolute;
  bottom: 2px; right: 2px;
  width: 24px; height: 24px;
  background: var(--gradient-brand);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
  border: 2px solid var(--surface);
  box-shadow: 0 2px 8px rgba(0,168,112,0.3);
}
.pwho__card h4 {
  font-size: 0.88rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.3rem;
  line-height: 1.3;
}
.pwho__card p {
  font-size: 0.75rem; color: var(--text-muted);
  line-height: 1.5;
}
.pwho__note {
  text-align: center; font-size: 0.82rem;
  color: var(--text-muted); margin-top: 1.75rem;
  font-style: italic;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .pwho__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pwho__grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
}

/* — Clinical Scope + Compliance — */
.pscope { background: var(--surface); }
.pscope__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.pscope__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.pscope__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,168,112,0.06);
}
.pscope__icon-wrap {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-light);
  border-radius: 14px;
  color: var(--brand);
  margin-bottom: 1.25rem;
}
.pscope__icon-wrap svg { width: 26px; height: 26px; }
.pscope__card h3 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.5rem;
}
.pscope__card > p {
  font-size: 0.88rem; color: var(--text-muted);
  margin-bottom: 1.25rem; line-height: 1.6;
}
.pscope__list {
  list-style: none; padding: 0;
}
.pscope__list li {
  font-size: 0.85rem; color: var(--text-muted);
  padding: 7px 0;
  display: flex; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}
.pscope__list li:last-child { border-bottom: none; }
.pscope__list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  background: var(--gradient-brand);
  border-radius: 50%;
  margin-top: 7px;
}
@media (max-width: 768px) {
  .pscope__grid { grid-template-columns: 1fr; }
}

/* — How It Works — */
.phow {
  background: var(--surface-3);
}
.phow__track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  margin-top: 1rem;
}
.phow__connector {
  position: absolute;
  top: 32px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--cyan), var(--violet));
  border-radius: 1px;
  z-index: 0;
}
.phow__step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.phow__num {
  width: 56px; height: 56px;
  background: var(--gradient-brand);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 24px var(--brand-glow);
  position: relative;
}
.phow__num::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0,168,112,0.15);
}
.phow__icon {
  display: none;
}
.phow__step h4 {
  font-size: 0.92rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.35rem;
}
.phow__step p {
  font-size: 0.8rem; color: var(--text-muted);
  line-height: 1.55; max-width: 200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .phow__track { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .phow__connector { display: none; }
}
@media (max-width: 480px) {
  .phow__track { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; }
}

/* — CTA — */
.pcta {
  position: relative;
  background: var(--brand-dark);
  overflow: hidden;
  padding: 5rem 2rem;
  text-align: center;
}
.pcta__mesh {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 50% 60% at 20% 30%, rgba(6,182,212,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 80% 70%, rgba(139,92,246,0.2) 0%, transparent 55%);
  pointer-events: none;
}
.pcta__inner { position: relative; z-index: 1; }
.pcta__content h2 {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800; color: #fff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}
.pcta__content p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem; max-width: 520px;
  margin: 0 auto 2rem; line-height: 1.7;
}
.pcta__actions {
  display: flex; flex-direction: column;
  align-items: center; gap: 1rem;
}
.btn-white {
  background: #fff;
  color: var(--brand-dark);
  border: 2px solid #fff;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}
.btn-white:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.pcta__note {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  max-width: 400px;
}

/* — Services You Can Offer — */
.pservices { background: var(--surface); }
.pservices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.pservices__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}
.pservices__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,168,112,0.08);
  border-color: rgba(0,168,112,0.2);
}
.pservices__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-light);
  border-radius: 12px;
  color: var(--brand);
  margin-bottom: 1rem;
}
.pservices__icon svg { width: 22px; height: 22px; }
.pservices__card h4 {
  font-size: 0.95rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.4rem;
  line-height: 1.3;
}
.pservices__card p {
  font-size: 0.85rem; color: var(--text-muted);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .pservices__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pservices__grid { grid-template-columns: 1fr; }
}

/* — Who Can Apply — 10-card grid — */
.pwho__grid--10 {
  grid-template-columns: repeat(5, 1fr);
}
.pwho__grid--10 .pwho__card h4 {
  font-size: 0.82rem;
}
.pwho__grid--10 .pwho__card p {
  font-size: 0.72rem;
}
.pwho__grid--10 .pwho__photo {
  width: 80px; height: 80px;
}
@media (max-width: 1100px) {
  .pwho__grid--10 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 700px) {
  .pwho__grid--10 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pwho__grid--10 { grid-template-columns: 1fr; max-width: 300px; margin-left: auto; margin-right: auto; }
}

/* — Trust & Safety — */
.ptrust {
  background: var(--surface-3);
}
.ptrust__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ptrust__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.ptrust__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,168,112,0.06);
}
.ptrust__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-light);
  border-radius: 10px;
  color: var(--brand);
}
.ptrust__icon svg { width: 20px; height: 20px; }
.ptrust__card h4 {
  font-size: 0.88rem; font-weight: 700;
  color: var(--text); line-height: 1.4;
}
@media (max-width: 768px) {
  .ptrust__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ptrust__grid { grid-template-columns: 1fr; }
}

/* — FAQ — */
.pfaq {
  background: var(--surface);
}
.pfaq__list {
  max-width: 720px;
  margin: 0 auto;
}
.pfaq__item {
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: border-color 0.2s;
}
.pfaq__item[open] {
  border-color: rgba(0,168,112,0.3);
}
.pfaq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  transition: background 0.15s;
}
.pfaq__q::-webkit-details-marker { display: none; }
.pfaq__q::marker { display: none; content: ''; }
.pfaq__q:hover { background: var(--surface-3); }
.pfaq__chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.25s var(--ease);
}
.pfaq__item[open] .pfaq__chevron {
  transform: rotate(180deg);
}
.pfaq__a {
  padding: 0 1.25rem 1.25rem;
}
.pfaq__a p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.facility-section {
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--border);
}
.facility-section:nth-child(even) { background: var(--bg); }
.facility-features { list-style: none; margin-top: 1.25rem; max-width: 640px; }
.facility-features li {
  font-size: 0.88rem; color: var(--muted);
  padding: 8px 0; display: flex; gap: 8px;
}
.facility-features li::before { content: '•'; color: var(--primary); font-weight: 700; }

.facility-section__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.facility-section__inner--reverse {
  direction: rtl;
}
.facility-section__inner--reverse > * {
  direction: ltr;
}
.facility-section__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.facility-section__content {
  max-width: 520px;
}

.network-overview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.network-overview__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}
.network-overview__content {
  max-width: 560px;
}
.network-overview__content h2 {
  margin-top: 0.5rem;
}
.network-overview__content p {
  color: var(--muted);
  line-height: 1.7;
  margin-top: 0.75rem;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 2rem;
}
.pricing-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 2rem;
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  background: var(--primary); border-color: var(--primary);
  transform: scale(1.03);
}
.pricing-card.featured h3,
.pricing-card.featured .pricing-price { color: white; }
.pricing-card.featured p,
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.6); }
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.85); }
.pricing-card.featured .pricing-features li::before { color: var(--accent-warm); }
.pricing-type {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 6px;
}
.pricing-price {
  font-family: var(--font-body);
  font-size: 2rem; font-weight: 700; color: var(--primary);
  line-height: 1; margin-bottom: 4px;
}
.pricing-period { font-size: 0.78rem; color: var(--muted); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; flex: 1; margin-bottom: 1.5rem; }
.pricing-features li {
  font-size: 0.85rem; color: var(--dark); padding: 7px 0;
  display: flex; gap: 8px; align-items: flex-start;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.pricing-features li::before { content: '✓'; color: var(--primary); font-weight: 700; flex-shrink: 0; }
.pricing-features li.excluded { text-decoration: line-through; opacity: 0.4; }
.pricing-features li.excluded::before { content: '✗'; color: var(--muted); }

.mission-quote {
  border-left: 4px solid var(--primary);
  padding: 2rem 2.5rem;
  background: var(--white);
  margin: 2rem 0;
  font-family: var(--font-body);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--dark);
  line-height: 1.6;
  font-style: italic;
}

.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; margin-top: 2rem;
}
.contact-info p { margin-bottom: 0.75rem; font-size: 0.9rem; }
.contact-info strong { color: var(--dark); }
.contact-form .form-group { margin-bottom: 1rem; }
.contact-form label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--dark); margin-bottom: 0.35rem;
}
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 0.95rem;
  background: var(--white); color: var(--dark);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,119,182,0.12);
}

.faq-item { border-bottom: 1px solid var(--border); padding: 1.25rem 0; }
.faq-question {
  font-size: 0.95rem; font-weight: 600; color: var(--dark);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; background: none; border: none; width: 100%;
  text-align: left; font-family: var(--font-body);
}
.faq-question::after {
  content: '+'; font-size: 1.4rem; color: var(--primary);
  flex-shrink: 0; transition: transform 0.2s; line-height: 1;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  font-size: 0.875rem; color: var(--muted); line-height: 1.8;
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.2s;
  padding-top: 0;
}
.faq-item.open .faq-answer { max-height: 800px; padding-top: 0.75rem; }

/* FAQ TOC */
.faq-toc { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; justify-content: center; }
.faq-toc-link { display: inline-flex; align-items: center; gap: 0.25rem; padding: 0.4rem 0.75rem; border-radius: 999px; font-size: 0.85rem; font-weight: 500; background: var(--bg-muted, #f3f4f6); color: var(--muted, #6b7280); text-decoration: none; transition: all 0.15s; }
.faq-toc-link:hover, .faq-toc-link:focus { background: var(--primary, #00A870); color: #fff; }
.faq-toc-link .faq-toc-letter { font-weight: 700; }
.faq-toc-link .faq-toc-label { display: none; }
@media (min-width: 640px) { .faq-toc-link .faq-toc-label { display: inline; } }

/* FAQ search */
.faq-search-wrap { position: relative; margin-bottom: 1.5rem; }
.faq-search-input { width: 100%; padding: 0.75rem 1rem 0.75rem 2.5rem; border: 2px solid var(--border, #e5e7eb); border-radius: 12px; font-size: 1rem; font-family: var(--font-body); background: #fff; transition: border-color 0.2s; }
.faq-search-input:focus { outline: none; border-color: var(--primary, #00A870); }
.faq-search-icon { position: absolute; left: 0.85rem; top: 50%; transform: translateY(-50%); color: var(--muted, #9ca3af); pointer-events: none; line-height: 1; }
.faq-search-clear { position: absolute; right: 0.75rem; top: 50%; transform: translateY(-50%); background: var(--bg-muted, #e5e7eb); border: none; border-radius: 50%; width: 1.5rem; height: 1.5rem; font-size: 0.85rem; cursor: pointer; display: none; align-items: center; justify-content: center; color: var(--muted, #6b7280); line-height: 1; }
.faq-search-clear.visible { display: flex; }
.faq-search-clear:hover { background: var(--border, #d1d5db); }

/* FAQ section filter */
.faq-section.is-filtered { display: block !important; }
.faq-section.has-no-matches { display: none !important; }
.faq-item.is-hidden { display: none !important; }
.faq-no-results { display: none; text-align: center; padding: 2rem 0; color: var(--muted, #6b7280); }
.faq-no-results.visible { display: block; }
.faq-no-results strong { display: block; font-size: 1.1rem; margin-bottom: 0.25rem; color: var(--dark, #111827); }

/* Back to top */
.faq-back-top { display: block; text-align: right; font-size: 0.85rem; margin-top: 0.5rem; }
.faq-back-top a { color: var(--muted, #6b7280); text-decoration: none; }
.faq-back-top a:hover { color: var(--primary, #00A870); }

/* FAQ matching highlight */
.faq-highlight { background: #fef08a; padding: 0 0.1em; border-radius: 2px; }

.reveal {
  opacity: 1;
  transform: none;
}
html.js .reveal:not(.visible) {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease var(--reveal-delay, 0s), transform 0.5s ease var(--reveal-delay, 0s);
}
html.js .reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
  .pulse-ring { animation: none; }
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.text-center { text-align: center; }
.alert-success {
  background: #d4edda; color: #155724; border: 1px solid #c3e6cb;
  padding: 0.85rem 1.25rem; border-radius: var(--radius-md); margin-bottom: 1rem;
}
.alert-error {
  background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb;
  padding: 0.85rem 1.25rem; border-radius: var(--radius-md); margin-bottom: 1rem;
}
.flash-banner { padding: 1rem 1.25rem 0; max-width: var(--container); margin: 0 auto; }

.nav-mobile-ctas { display: none; }

.wa-float {
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  width: 56px; height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  z-index: 90;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: scale(1.06); box-shadow: 0 6px 24px rgba(37,211,102,0.55); }

/* TanzMED-inspired photo sections */
.platform-band {
  background: linear-gradient(135deg, var(--primary-pale) 0%, var(--white) 55%);
  padding: 4rem 2rem;
  border-bottom: 1px solid var(--border);
}
.platform-band__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.platform-band__text h2 {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.platform-band__text p { color: var(--muted); margin-bottom: 1.5rem; max-width: 480px; }
.platform-band__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 3 / 2;
}

.photo-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.photo-feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.photo-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.photo-feature-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.photo-feature-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.photo-feature-card:hover .photo-feature-card__img img { transform: scale(1.04); }
.photo-feature-card__badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gradient-brand); color: white;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}
.photo-feature-card__body { padding: 1.25rem 1.35rem 1.5rem; }
.photo-feature-card__sw {
  font-size: 0.72rem; font-weight: 600;
  color: var(--accent-warm); margin-bottom: 0.35rem;
}
.photo-feature-card h3 {
  font-size: 1rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.5rem;
  font-family: var(--font-body);
}
.photo-feature-card__body p {
  font-size: 0.82rem; line-height: 1.65; margin-bottom: 0.75rem;
}
.photo-feature-card__link {
  font-size: 0.82rem; font-weight: 600;
  text-decoration: none; color: var(--primary);
}
.photo-feature-card__link:hover { text-decoration: underline; }

.service-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.service-tile {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.service-tile:hover { box-shadow: var(--shadow-md); }
.service-tile__img { min-height: 100%; }
.service-tile__img img {
  width: 100%; height: 100%;
  object-fit: cover; min-height: 180px;
}
.service-tile__body { padding: 1.35rem; display: flex; flex-direction: column; }
.service-tile__sw {
  font-size: 0.7rem; font-weight: 600;
  color: var(--accent-warm); margin-bottom: 0.25rem;
}
.service-tile h3 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--dark); margin-bottom: 0.45rem;
  font-family: var(--font-body);
}
.service-tile__body p {
  font-size: 0.84rem; flex: 1; margin-bottom: 1rem;
}

.split-band {
  background: var(--bg);
  padding: 5rem 2rem;
}
.split-band--reverse .split-band__inner { direction: rtl; }
.split-band--reverse .split-band__inner > * { direction: ltr; }
.split-band__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split-band__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  object-fit: cover;
  object-position: center;
  aspect-ratio: 4 / 3;
}
.split-band__text h2 {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
}
.split-band__list {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
}
.split-band__list li {
  font-size: 0.88rem; color: var(--muted);
  padding: 7px 0 7px 1.25rem;
  position: relative;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.split-band__list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--primary); font-weight: 700;
}

/* Access badges (browser / PWA install) */
.access-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 1.25rem;
}
.access-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--dark); text-decoration: none;
  cursor: pointer; font-family: var(--font-body);
  transition: border-color 0.15s, box-shadow 0.15s;
  min-height: 52px;
}
.access-badge:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.hero .access-badge {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: white;
}
.hero .access-badge:hover { border-color: rgba(255,255,255,0.45); }
.hero .access-badge__text small { color: rgba(255,255,255,0.55); }
.hero .access-badge__icon svg { stroke: rgba(255,255,255,0.85); }
.access-badge__icon {
  width: 28px; height: 28px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.access-badge__icon svg { width: 22px; height: 22px; stroke: var(--primary); }
.access-badge__text { text-align: left; line-height: 1.2; }
.access-badge__text small {
  display: block; font-size: 0.62rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--muted);
}
.access-badge__text strong { font-size: 0.88rem; font-weight: 700; }
.access-badge--install { background: var(--primary-pale); border-color: var(--primary); }
.access-badge--hint { cursor: pointer; opacity: 0.92; }
button.access-badge {
  font: inherit;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
}
.hero .access-badge--install { background: rgba(0,119,182,0.25); border-color: var(--accent); }

.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.compare-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.88rem; background: var(--white);
  min-width: 600px;
}
.compare-table th,
.compare-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  vertical-align: top;
}
.compare-table th {
  background: var(--primary-pale);
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--dark);
}
.compare-table__highlight {
  background: rgba(0,119,182,0.04);
  color: var(--primary-deep);
  font-weight: 500;
}
.compare-table tbody tr:last-child td { border-bottom: none; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.news-grid--full { grid-template-columns: repeat(2, 1fr); }
.news-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}
.news-card:hover { box-shadow: var(--shadow-md); }
.news-card__meta {
  display: flex; flex-wrap: wrap; gap: 0.5rem 1rem;
  align-items: center; margin-bottom: 0.65rem;
  font-size: 0.75rem; color: var(--muted);
}
.news-card__type {
  background: var(--primary-pale); color: var(--primary);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; font-size: 0.65rem;
  padding: 3px 8px; border-radius: 20px;
}
.news-card h3 {
  font-family: var(--font-body);
  font-size: 1.05rem; font-weight: 700;
  margin-bottom: 0.5rem; line-height: 1.35;
}
.news-card h3 a { color: var(--dark); text-decoration: none; }
.news-card h3 a:hover { color: var(--primary); }
.news-card__excerpt {
  font-size: 0.85rem; color: var(--muted);
  line-height: 1.65; margin-bottom: 0.75rem;
}
.news-card__link {
  font-size: 0.82rem; font-weight: 600;
  color: var(--primary); text-decoration: none;
}
.news-back {
  font-size: 0.82rem; font-weight: 600;
  color: var(--primary); text-decoration: none;
  margin-right: auto;
}
.news-article h1 {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin: 0.75rem 0 1.25rem;
}
.news-article__body {
  font-size: 0.95rem; color: var(--dark);
  line-height: 1.85; margin-bottom: 2rem;
}
.news-article__cta {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.hero .hero-stats { margin-top: 1.5rem; }

@media (max-width: 768px) {
  .section { padding: 3.5rem 1rem; }
  .site-nav { position: relative; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-map { display: none; }
  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
  .audience-cards { grid-template-columns: 1fr; }
  .stats-strip-inner { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 1rem 3rem; }
  .hero-light { padding: 3rem 1rem 2.5rem; }
  .hero h1 { font-size: clamp(1.85rem, 8vw, 2.4rem); }
  .hero-sub { font-size: 0.92rem; margin-bottom: 1.5rem; }
  .hero-ctas { flex-direction: column; gap: 0.65rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; min-height: 48px; }
  .hero-stats { gap: 1.25rem 1.75rem; padding-top: 1.5rem; }
  .hero-stat-num { font-size: 1.4rem; }
  .cta-banner { padding: 4rem 1rem; }
  .cta-banner-btns { flex-direction: column; align-items: stretch; }
  .cta-banner-btns .btn { width: 100%; justify-content: center; min-height: 48px; }
  .logo-bar { padding: 1.5rem 1rem; }
  .logo-bar-logos { gap: 1.25rem 1.75rem; }
  .logo-bar-logos span { font-size: 0.72rem; }
  .how-section, .audiences-section, .testimonials-section { padding: 3.5rem 1rem; }
  .section-header { margin-bottom: 2rem; }
  .stats-strip { padding: 2.5rem 1rem; }
  .strip-stat-num { font-size: 1.85rem; }
  .payment-strip { padding: 2rem 1rem; }
  .payment-steps { flex-direction: column; gap: 0.35rem; font-size: 0.88rem; }
  .payment-steps span:nth-child(even) { display: none; }
  .nav-inner { padding: 0 1rem; gap: 0.75rem; }
  .nav-logo-text { font-size: 0.95rem; }
  .nav-ctas { display: none; }
  .nav-mobile-lang {
    display: block;
    padding: 0.75rem 0 0.25rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
  }
  .nav-mobile-lang .lang-switch { width: 100%; justify-content: center; }
  .nav-toggle {
    min-width: 44px; min-height: 44px;
    align-items: center; justify-content: center;
  }
  .nav-mobile-ctas {
    display: flex; flex-direction: column; gap: 0.65rem;
    padding: 1rem 0 0.5rem; margin-top: 0.5rem;
    border-top: 1px solid var(--border);
  }
  .nav-mobile-ctas .btn { width: 100%; justify-content: center; min-height: 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .site-footer { padding: 3rem 1rem 1.5rem; padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px)); }
  body:has(.wa-float) .site-footer { padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px)); }
  .grid-2, .grid-3, .benefit-cards, .pricing-grid, .tools-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .pricing-grid.two-col { max-width: none; }
  .pricing-card.featured { transform: none; }
  .mission-quote { padding: 1.25rem 1.5rem; font-size: 1.1rem; }
  .facility-section { padding: 2.5rem 1rem; }
  .facility-section__inner,
  .facility-section__inner--reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    direction: ltr;
  }
  .network-overview__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .contact-form input,
  .contact-form textarea { font-size: 16px; min-height: 48px; }
  .contact-form textarea { min-height: 120px; }
  .faq-question { font-size: 0.9rem; padding-right: 0.25rem; }
  .platform-band { padding: 2.5rem 1rem; }
  .platform-band__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .platform-band__media { order: -1; }
  .photo-feature-grid { grid-template-columns: 1fr; }
  .service-tiles { grid-template-columns: 1fr; }
  .service-tile { grid-template-columns: 1fr; }
  .service-tile__img img { min-height: 160px; max-height: 200px; }
  .split-band { padding: 3rem 1rem; }
  .split-band__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .split-band--reverse .split-band__inner { direction: ltr; }
  .access-badges { flex-direction: column; }
  .access-badge { width: 100%; }
  .news-grid, .news-grid--full { grid-template-columns: 1fr; }
  .compare-table { font-size: 0.8rem; }
  .compare-table th, .compare-table td { padding: 0.65rem 0.75rem; }
}

/* ─── PWA: app-like mobile experience ─── */
.pwa-public-main { min-height: 50vh; }

.pwa-tabbar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
}
.pwa-tabbar__item {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; padding: 8px 4px 10px;
  min-height: 56px;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.62rem; font-weight: 600;
  transition: color 0.15s;
}
.pwa-tabbar__item.is-active { color: var(--primary); }
.pwa-tabbar__icon { width: 22px; height: 22px; display: flex; }
.pwa-tabbar__icon svg { width: 22px; height: 22px; stroke: currentColor; }
.pwa-tabbar__label { line-height: 1; font-size: 0.58rem; }

/* Mobile + standalone: show bottom tab bar, hide footer, pad content */
@media (max-width: 768px) {
  .pwa-tabbar { display: flex; }
  .pwa-public .site-footer { display: none; }
  .pwa-public-main { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
  .wa-float { bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px)); }
  body.pwa-public:has(.pwa-install-banner:not([hidden])) .pwa-public-main {
    padding-bottom: calc(140px + env(safe-area-inset-bottom, 0px));
  }
  body.pwa-public:has(.pwa-install-banner:not([hidden])) .wa-float {
    bottom: calc(8rem + env(safe-area-inset-bottom, 0px));
  }
}

.is-pwa-standalone .site-nav {
  padding-top: env(safe-area-inset-top, 0px);
}
.is-pwa-standalone.pwa-public .site-nav {
  background: rgba(255,255,255,0.98);
}
.is-pwa-standalone .pwa-tabbar { display: flex; }
.is-pwa-standalone.pwa-public .site-footer { display: none; }
.is-pwa-standalone .wa-float--standalone {
  bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
}
.is-pwa-standalone.is-pwa-mobile .nav-toggle { display: none; }
.is-pwa-standalone.is-pwa-mobile .nav-links {
  display: none !important;
}
.is-pwa-standalone.is-pwa-mobile .nav-inner { justify-content: space-between; }
.is-pwa-standalone.is-pwa-mobile .nav-ctas { display: flex; margin-left: auto; }
.is-pwa-standalone.is-pwa-mobile .nav-ctas .btn-ghost-nav { display: inline-flex; }

/* ─── Upgrade v2: hero, doctor preview, trust, sticky CTA ─── */
.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  position: fixed; left: 1rem; top: 1rem; z-index: 500;
  width: auto; height: auto; padding: 0.65rem 1rem;
  background: var(--primary); color: #fff; border-radius: var(--radius-md);
  font-size: 0.85rem; font-weight: 600; text-decoration: none;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.flex-center { display: flex; align-items: center; justify-content: center; }

body.nav-open { overflow: hidden; }

.hero--v2 {
  position: relative;
  background: transparent;
  padding: 5rem 2rem 4.5rem;
}
.hero__bg { display: none; }
.hero--v2 .hero-inner { position: relative; z-index: 1; }
.hero__visual { position: relative; }
.hero__photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  background: var(--surface-3);
}
.hero__photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  min-height: 300px; max-height: 380px;
}
.hero-sub-en { color: var(--text-muted); font-size: 0.92rem; display: block; margin-top: 0.35rem; }
.hero .btn-outline-white {
  background: rgba(255, 255, 255, 0.85);
  color: var(--text);
  border-color: var(--border);
  backdrop-filter: blur(8px);
}
.hero .btn-outline-white:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: #fff;
}
.hero .access-badge__text small { color: var(--text-muted); }
.hero .access-badge__icon svg { stroke: var(--brand); }
.hero .access-badge { border-color: var(--border); background: rgba(255,255,255,0.9); }
.hero .access-badge:hover { border-color: var(--brand); }
.hero .access-badge--install { background: var(--brand-light); border-color: rgba(0,168,112,0.2); }

.logo-bar--v2 { background: var(--white); border-bottom: 1px solid var(--border); }
.logo-bar--v2 .logo-bar-logos { opacity: 1; gap: 0.75rem; }
.logo-pill {
  display: inline-flex; align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--primary-pale);
  border: 1px solid var(--border);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.04em; color: var(--primary-deep);
  text-transform: uppercase;
}
.platform-band__ctas { margin-bottom: 0; }

.trust-band {
  background: var(--surface);
  padding: 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-band__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.trust-band__item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  color: var(--text-muted);
}
.trust-band__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--brand-light);
  border-radius: 10px;
  color: var(--brand);
}
.trust-band__icon svg { width: 20px; height: 20px; }
.trust-band__item strong {
  display: block; font-size: 0.82rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.15rem;
}
.trust-band__item span { font-size: 0.72rem; color: var(--text-muted); line-height: 1.4; }

.doctor-preview { padding-top: 5rem; padding-bottom: 5rem; }
.doctor-preview__header { margin-bottom: 2rem; }
.doctor-preview__search { margin-top: 1.5rem; }
.doctor-preview__fields {
  display: flex; flex-wrap: wrap; gap: 0.65rem;
  padding: 0.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.doctor-preview__fields input,
.doctor-preview__fields select {
  flex: 1; min-width: 140px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 0.9rem;
  background: var(--white);
}
.doctor-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.doctor-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  display: flex; flex-direction: column; gap: 0.85rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.doctor-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.doctor-card__top { display: flex; gap: 0.75rem; align-items: flex-start; position: relative; }
.doctor-card__meta { flex: 1; min-width: 0; }
.doctor-card__meta h3 { font-size: 0.92rem; font-family: var(--font-body); margin-bottom: 0.15rem; }
.doctor-card__spec { font-size: 0.78rem; color: var(--primary); font-weight: 600; margin-bottom: 0.25rem; }
.doctor-card__stats { font-size: 0.72rem; color: var(--muted); line-height: 1.4; }
.doctor-card__badge {
  position: absolute; top: 0; right: 0;
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
  padding: 0.2rem 0.45rem; border-radius: 4px;
  background: #dcfce7; color: #166534;
}
.doctor-card__badge--premium { background: #fef3c7; color: #92400e; }
.doctor-card__cta { width: 100%; justify-content: center; }
.doctor-preview__note {
  margin-top: 1.25rem; font-size: 0.8rem; color: var(--muted); text-align: center;
}

.sticky-cta {
  display: none;
  position: fixed;
  bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  left: 0; right: 0;
  z-index: 180;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
  gap: 0.5rem;
}
.sticky-cta[hidden] { display: none !important; }
.sticky-cta:not([hidden]) { display: flex; }
.sticky-cta__btn {
  flex: 1; text-align: center; padding: 0.65rem 0.75rem;
  border-radius: var(--radius-md); font-size: 0.82rem; font-weight: 700;
  text-decoration: none; border: none;
}
.sticky-cta__btn--primary { background: var(--gradient-warm); color: #fff; }
.sticky-cta__btn--ghost {
  background: var(--white); color: var(--primary);
  border: 1.5px solid var(--primary);
}

@media (max-width: 768px) {
  .hero--v2 { padding: 4rem 1.25rem 3rem; }
  .hero--v2 .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__visual { order: -1; }
  .hero__photo-wrap img { max-height: 220px; }
  .trust-band__inner { grid-template-columns: 1fr 1fr; }
  .doctor-preview__grid { grid-template-columns: 1fr; }
  .doctor-preview__fields { flex-direction: column; }
  .doctor-preview__fields .btn { width: 100%; justify-content: center; }
  body.pwa-public:has(.sticky-cta:not([hidden])) .pwa-public-main {
    padding-bottom: calc(120px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 480px) {
  .trust-band__inner { grid-template-columns: 1fr; }
  .logo-bar-logos { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.25rem; }
}

/* ─── Visual effects ─── */
@keyframes fxFloatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(28px, -18px) scale(1.06); }
  66%       { transform: translate(-16px, 22px) scale(0.96); }
}
@keyframes fxFloatHero {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes fxGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes fxShimmer {
  0%   { transform: translateX(-120%) skewX(-12deg); }
  100% { transform: translateX(220%) skewX(-12deg); }
}
@keyframes fxPulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 168, 112, 0.35); }
  50%      { box-shadow: 0 0 0 12px rgba(0, 168, 112, 0); }
}
@keyframes fxLineDraw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes fxFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fxScaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.fx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: fxFloatOrb 18s ease-in-out infinite;
  pointer-events: none;
}
.fx-orb--1 {
  width: 420px; height: 420px;
  top: -8%; left: -6%;
  background: radial-gradient(circle, rgba(0, 168, 112, 0.35) 0%, transparent 70%);
  animation-duration: 22s;
}
.fx-orb--2 {
  width: 360px; height: 360px;
  top: 35%; right: -5%;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.28) 0%, transparent 70%);
  animation-duration: 26s;
  animation-delay: -6s;
}
.fx-orb--3 {
  width: 300px; height: 300px;
  bottom: 5%; left: 30%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, transparent 70%);
  animation-duration: 20s;
  animation-delay: -12s;
}

body.page-loaded .hero--v2 .hero__content {
  animation: fxFadeUp 0.85s var(--ease) both;
}
body.page-loaded .hero--v2 .hero__visual {
  animation: fxScaleIn 0.9s var(--ease) 0.12s both;
}
body.page-loaded .hero__photo-wrap {
  animation: fxFloatHero 5s ease-in-out 1.2s infinite;
}
.hero__photo-wrap {
  position: relative;
  isolation: isolate;
}
.hero__photo-wrap::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius-lg) + 2px);
  background: var(--gradient-brand);
  opacity: 0.35;
  z-index: -1;
  filter: blur(18px);
}

.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 1;
  transform: none;
}
html.js .reveal-left:not(.visible) {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.55s ease var(--reveal-delay, 0s), transform 0.55s ease var(--reveal-delay, 0s);
}
html.js .reveal-right:not(.visible) {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.55s ease var(--reveal-delay, 0s), transform 0.55s ease var(--reveal-delay, 0s);
}
html.js .reveal-scale:not(.visible) {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.5s ease var(--reveal-delay, 0s), transform 0.5s ease var(--reveal-delay, 0s);
}
html.js .reveal-left.visible,
html.js .reveal-right.visible,
html.js .reveal-scale.visible { opacity: 1; transform: none; }

.fx-stagger > * {
  opacity: 1;
  transform: none;
}
html.js .fx-stagger:not(.fx-stagger--visible) > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
html.js .fx-stagger.fx-stagger--visible > * {
  opacity: 1;
  transform: translateY(0);
}
.fx-stagger.fx-stagger--visible > *:nth-child(1) { transition-delay: 0.04s; }
.fx-stagger.fx-stagger--visible > *:nth-child(2) { transition-delay: 0.1s; }
.fx-stagger.fx-stagger--visible > *:nth-child(3) { transition-delay: 0.16s; }
.fx-stagger.fx-stagger--visible > *:nth-child(4) { transition-delay: 0.22s; }
.fx-stagger.fx-stagger--visible > *:nth-child(5) { transition-delay: 0.28s; }
.fx-stagger.fx-stagger--visible > *:nth-child(6) { transition-delay: 0.34s; }
.fx-stagger.fx-stagger--visible > *:nth-child(7) { transition-delay: 0.4s; }
.fx-stagger.fx-stagger--visible > *:nth-child(8) { transition-delay: 0.46s; }
.fx-stagger.fx-stagger--visible > *:nth-child(n+9) { transition-delay: 0.52s; }

.how-steps::before {
  transform-origin: left center;
}
html.js .how-steps::before {
  transform: scaleX(0);
}
html.js .fx-stagger--visible.how-steps::before {
  animation: fxLineDraw 1.2s var(--ease) 0.2s forwards;
}
.fx-stagger--visible .how-step-num {
  animation: fxPulseGlow 2.4s ease-in-out 0.5s 2;
}

.btn-primary,
.btn-accent {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.btn-primary::after,
.btn-accent::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.35) 50%, transparent 65%);
  transform: translateX(-120%) skewX(-12deg);
  pointer-events: none;
}
.btn-primary:hover::after,
.btn-accent:hover::after {
  animation: fxShimmer 0.65s ease;
}

.hero h1 em {
  background-size: 200% auto;
  animation: fxGradientShift 6s ease infinite;
}

.cta-banner {
  position: relative;
  overflow: hidden;
  background-size: 200% 200%;
  animation: fxGradientShift 8s ease infinite;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12) 0%, transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(255,184,0,0.15) 0%, transparent 40%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; z-index: 1; }

.photo-feature-card__img::after,
.service-tile__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.4) 50%, transparent 60%);
  transform: translateX(-120%) skewX(-12deg);
  pointer-events: none;
}
.photo-feature-card:hover .photo-feature-card__img::after,
.service-tile:hover .service-tile__img::after {
  animation: fxShimmer 0.75s ease;
}
.service-tile__img { position: relative; overflow: hidden; }

.split-band__media img {
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.split-band:hover .split-band__media img {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.platform-band__media img {
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.platform-band:hover .platform-band__media img {
  box-shadow: var(--shadow-lg);
}

.photo-feature-card,
.service-tile,
.audience-card,
.doctor-card,
.feature-card {
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.photo-feature-card:hover,
.service-tile:hover,
.audience-card:hover,
.doctor-card:hover,
.feature-card:hover {
  border-color: rgba(0, 168, 112, 0.25);
}

.logo-pill {
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s;
}
.logo-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 168, 112, 0.12);
  border-color: rgba(0, 168, 112, 0.3);
}

.trust-band__icon {
  transition: transform 0.3s var(--ease), background 0.3s;
}
.trust-band__item:hover .trust-band__icon {
  transform: scale(1.08) translateY(-2px);
  background: rgba(0, 168, 112, 0.15);
}

.compare-table tbody tr {
  transition: background 0.2s;
}
.compare-table tbody tr:hover {
  background: rgba(0, 168, 112, 0.04);
}

.eyebrow,
.hero-eyebrow {
  transition: box-shadow 0.3s, transform 0.3s;
}
.reveal.visible .eyebrow,
.reveal.visible .hero-eyebrow,
body.page-loaded .hero-eyebrow {
  animation: fxPulseGlow 3s ease-in-out 0.8s 1;
}

.stats-strip {
  position: relative;
  overflow: hidden;
}
.stats-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 42%, rgba(255,255,255,0.08) 50%, transparent 58%);
  transform: translateX(-120%);
  pointer-events: none;
}
.stats-strip:has(.fx-stagger--visible)::after {
  animation: fxShimmer 1.4s ease 0.3s;
}

.audience-strip { padding: 4rem 2rem; }
.audience-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.audience-strip__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.audience-strip__sw {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent-warm);
  margin: 0;
}
.audience-strip__card h3 {
  font-size: 1.05rem;
  margin: 0;
}
.audience-strip__card p {
  font-size: 0.85rem;
  flex: 1;
  margin: 0;
}
.audience-strip__card .btn { align-self: flex-start; margin-top: 0.5rem; }

@media (max-width: 768px) {
  .audience-strip__grid { grid-template-columns: 1fr; }
}

/* Corporate / WorkHealth GTM page */
.corp-hero { padding-top: 3rem; padding-bottom: 3rem; }
.corp-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.corp-hero__media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.pricing-grid.corp-package-cards {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.pricing-grid.corp-package-cards .pricing-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg, #f8fafb);
  border: 1px solid var(--border);
}
.pricing-grid.corp-package-cards .pricing-card.featured {
  background: var(--bg, #f8fafb);
  border-color: var(--brand, #00A870);
  transform: none;
}
.pricing-grid.corp-package-cards .pricing-card.featured h3,
.pricing-grid.corp-package-cards .pricing-card.featured .pricing-price { color: var(--text, #111); }
.pricing-grid.corp-package-cards .pricing-card.featured p,
.pricing-grid.corp-package-cards .pricing-card.featured .pricing-period { color: var(--muted, #64748b); }
.pricing-grid.corp-package-cards .pricing-card.featured .pricing-features li { color: var(--text, #111); }
.pricing-grid.corp-package-cards .pricing-card.featured .pricing-features li::before { color: var(--primary); }
.pricing-grid.corp-package-cards .pricing-card.featured .pricing-type { color: var(--brand, #00A870); }
.pricing-grid.corp-package-cards .corp-pkg-cta { margin-top: auto; }

@media (max-width: 1024px) {
  .corp-hero__grid { grid-template-columns: 1fr; }
  .corp-hero__media { order: -1; }
  .pricing-grid.corp-package-cards {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .corp-hero { padding-top: 2rem; }
  .pricing-grid.corp-package-cards {
    grid-template-columns: 1fr;
  }
  .pricing-grid.corp-package-cards .pricing-card { min-width: 0; }
  #corp-inquiry-form .form-row { grid-template-columns: 1fr !important; }
  .corp-hero__steps { flex-wrap: wrap; gap: 0.5rem; }
  .corp-step__arrow { display: none; }
  .corp-contact-grid { grid-template-columns: 1fr !important; }
  .corp-contact-info { order: 2; }
  .corp-contact-form { order: 1; }
}

/* Corporate enhanced UI — June 2026 */
.corp-hero--enhanced .corp-hero__content { position: relative; }
.corp-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.corp-hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  color: var(--muted, #64748b);
  background: rgba(0,168,112,0.06);
  border: 1px solid rgba(0,168,112,0.15);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-weight: 500;
}
.corp-hero__trust-item::first-letter { color: #28a745; }

/* Stats strip icons */
.corp-stat { text-align: center; }
.corp-stat__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  margin-bottom: 0.5rem;
  color: #fff;
}

/* Feature cards with proper icons */
.corp-benefit-cards { gap: 1.5rem; }
.corp-feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.corp-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.corp-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-light, #E6FFF5), var(--brand-mid, #00C48C));
  color: var(--brand-dark, #007A52);
  margin-bottom: 1rem;
}
.corp-pillars-sub { max-width: 560px; margin: 0 auto; color: var(--muted, #64748b); }

/* Hero media badge overlay */
.corp-hero__media-wrap { position: relative; }
.corp-hero__media-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-dark, #007A52);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.corp-hero__media-badge svg { flex-shrink: 0; }

/* FAQ plus/minus icons */
.corp-faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-light, #E6FFF5);
  flex-shrink: 0;
  transition: background 0.2s;
}
.corp-faq-plus { display: block; }
.corp-faq-minus { display: none; }
.corp-faq-question[aria-expanded="true"] .corp-faq-plus { display: none; }
.corp-faq-question[aria-expanded="true"] .corp-faq-minus { display: block; }
.corp-faq-question[aria-expanded="true"] .corp-faq-icon {
  background: var(--brand, #00A870);
  color: #fff;
}
/* Hide the default ::after '+' for corp FAQ items */
.corp-faq-question::after { display: none !important; }
/* Also support .open class for compatibility */
.corp-faq-item.open .corp-faq-question .corp-faq-plus { display: none; }
.corp-faq-item.open .corp-faq-question .corp-faq-minus { display: block; }
.corp-faq-item.open .corp-faq-question .corp-faq-icon {
  background: var(--brand, #00A870);
  color: #fff;
}
.corp-faq-item.open .corp-faq-answer { max-height: 500px; padding-bottom: 1rem; }
.corp-faq-answer.is-open { max-height: 500px; padding-bottom: 1rem; }

/* Contact card icons */
.corp-contact-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.corp-contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--brand-light, #E6FFF5);
  color: var(--brand, #00A870);
  flex-shrink: 0;
  margin-top: 2px;
}
.corp-contact-card h4 { font-size: 0.82rem; color: var(--muted, #64748b); margin: 0 0 0.15rem; font-weight: 500; }
.corp-contact-card p { margin: 0; font-weight: 500; font-size: 0.92rem; }

/* CTA buttons row */
.corp-cta-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.corp-cta-apply {
  color: #fff !important;
  border-color: rgba(255,255,255,0.5) !important;
}
.corp-cta-apply:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.8) !important;
}

/* Contact submit button */
.corp-contact-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--brand, #00A870) 0%, var(--accent, #06B6D4) 100%);
  border: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.corp-contact-submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,168,112,0.3);
}

/* Advisor submit loading */
.corp-advisor__submit { position: relative; }
.corp-advisor__submit-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Spin animation for loading */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Package card tagline */
.corp-pkg-tagline {
  font-size: 0.85rem;
  color: var(--muted, #64748b);
  margin-bottom: 0.5rem;
}

/* Comparison table checkmarks */
.compare-check { color: #28a745; font-weight: 700; font-size: 1.1rem; }
.compare-dash { color: #ccc; }

/* FAQ accordion enhanced */
.corp-faq-list { margin-top: 1rem; }
.corp-faq-item { border-bottom: 1px solid var(--border, #e5e7eb); }
.corp-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text, #111);
  text-align: left;
  gap: 0.75rem;
  transition: color 0.15s;
}
.corp-faq-question:hover { color: var(--brand, #00A870); }
.corp-faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--muted, #64748b);
}
.corp-faq-question[aria-expanded="true"] .corp-faq-chevron {
  transform: rotate(180deg);
}
.corp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted, #64748b);
}
.corp-faq-answer.is-open {
  max-height: 500px;
  padding-bottom: 1rem;
}

/* Contact section enhanced */
.corp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  align-items: start;
}
.corp-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.corp-contact-card {
  background: #fff;
  border: 1px solid var(--border, #e5e7eb);
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.corp-contact-card h4 { font-size: 0.85rem; color: var(--muted, #64748b); margin-bottom: 0.25rem; }
.corp-contact-card p { margin: 0; font-weight: 500; }
.corp-contact-form .btn { margin-top: 0.5rem; }

/* CTA banner enhanced */
.corp-cta-banner { position: relative; overflow: hidden; }
.corp-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* Apply page steps */
.corp-hero--apply .corp-hero__steps {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.corp-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.corp-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand, #00A870);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.corp-step__label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text, #111);
}
.corp-step__arrow {
  color: var(--muted, #64748b);
  font-size: 1.1rem;
}

@media (prefers-reduced-motion: reduce) {
  html.js .reveal:not(.visible),
  html.js .reveal-left:not(.visible),
  html.js .reveal-right:not(.visible),
  html.js .reveal-scale:not(.visible) { opacity: 1; transform: none; transition: none; }
  html.js .fx-stagger:not(.fx-stagger--visible) > * { opacity: 1; transform: none; transition: none; }
  html.js .how-steps::before { transform: scaleX(1); animation: none; }
  .fx-orb { animation: none; opacity: 0.3; }
  .va-ambient-canvas { display: none; }
  body.page-loaded .hero--v2 .hero__content,
  body.page-loaded .hero--v2 .hero__visual,
  body.page-loaded .hero__photo-wrap { animation: none; }
  .hero h1 em,
  .cta-banner { animation: none; background-size: auto; }
  .fx-stagger > * { opacity: 1; transform: none; transition: none; }
  .how-steps::before { transform: scaleX(1); animation: none; }
  .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; transition: none; }
  .btn-primary::after, .btn-accent::after { display: none; }
  .split-band:hover .split-band__media img,
  .platform-band:hover .platform-band__media img { transform: none; }
}

/* Ask Vitara — public FAQ widget (Phase 2) */
.ask-vitara {
  position: fixed;
  left: max(1rem, env(safe-area-inset-left, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 95;
  font-family: var(--font-body, Inter, sans-serif);
}
.ask-vitara__fab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem 0.65rem 0.75rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #0077B6 0%, #00A870 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 119, 182, 0.35);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.ask-vitara__fab svg { width: 22px; height: 22px; flex-shrink: 0; }
.ask-vitara__fab:hover { transform: scale(1.03); box-shadow: 0 6px 24px rgba(0, 119, 182, 0.45); }
.ask-vitara__fab-label { max-width: 120px; line-height: 1.2; text-align: left; }
.ask-vitara__panel {
  position: absolute;
  left: 0;
  bottom: calc(100% + 0.75rem);
  width: min(360px, calc(100vw - 2rem));
  max-height: min(70vh, 520px);
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius-lg, 12px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid var(--border, #e5e7eb);
  overflow: hidden;
}
.ask-vitara__panel[hidden] { display: none !important; }
.ask-vitara__header {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.75rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
  border-bottom: 1px solid var(--border, #e5e7eb);
}
.ask-vitara__header strong { display: block; font-size: 1rem; color: var(--text, #111); }
.ask-vitara__subtitle { margin: 0.2rem 0 0; font-size: 0.78rem; color: var(--muted, #64748b); }
.ask-vitara__close {
  background: none; border: none; font-size: 1.5rem; line-height: 1;
  cursor: pointer; color: var(--muted); padding: 0 0.25rem;
}
.ask-vitara__suggestions {
  display: flex; flex-wrap: wrap; gap: 0.35rem;
  padding: 0.65rem 1rem 0; max-height: 88px; overflow-y: auto;
}
.ask-vitara__chip {
  font-size: 0.72rem; padding: 0.35rem 0.6rem;
  border-radius: 999px; border: 1px solid #cbd5e1;
  background: #f8fafc; cursor: pointer; color: #334155;
}
.ask-vitara__chip:hover { background: #e0f2fe; border-color: #7dd3fc; }
.ask-vitara__messages {
  flex: 1; overflow-y: auto; padding: 0.75rem 1rem;
  min-height: 80px; max-height: 220px;
}
.ask-vitara__msg { margin-bottom: 0.65rem; font-size: 0.88rem; line-height: 1.45; }
.ask-vitara__msg p { margin: 0; }
.ask-vitara__msg--user {
  margin-left: 1.5rem; padding: 0.5rem 0.75rem;
  background: #e0f2fe; border-radius: 12px 12px 4px 12px;
}
.ask-vitara__msg--bot {
  margin-right: 0.5rem; padding: 0.5rem 0.75rem;
  background: #f1f5f9; border-radius: 12px 12px 12px 4px;
}
.ask-vitara__msg-links { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 0.45rem; }
.ask-vitara__msg-link {
  font-size: 0.75rem; font-weight: 600; color: #0077B6;
  text-decoration: none; padding: 0.2rem 0.45rem;
  background: #fff; border-radius: 6px; border: 1px solid #bae6fd;
}
.ask-vitara__form {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 0.65rem 1rem 0.5rem; border-top: 1px solid var(--border, #e5e7eb);
}
.ask-vitara__form textarea {
  width: 100%; resize: none; border: 1px solid #cbd5e1;
  border-radius: 8px; padding: 0.5rem 0.65rem; font-size: 0.88rem;
  font-family: inherit;
}
.ask-vitara__disclaimer {
  margin: 0; padding: 0.35rem 1rem 0.75rem;
  font-size: 0.68rem; color: var(--muted, #94a3b8); line-height: 1.35;
}
@media (max-width: 640px) {
  .ask-vitara__fab-label { display: none; }
  .ask-vitara__fab { width: 52px; height: 52px; padding: 0; justify-content: center; border-radius: 50%; }
  .ask-vitara__panel { width: min(340px, calc(100vw - 1.5rem)); }
  body.pwa-public:has(.pwa-tabbar) .ask-vitara {
    bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
  }
}

/* Public check-in premium experience */
.checkin-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 1.25rem;
  background:
    radial-gradient(circle at 15% 15%, rgba(0, 168, 112, 0.15), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(255, 184, 0, 0.18), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f8fffc 48%, #f8fafc 100%);
}
.checkin-hero::before {
  content: '';
  position: absolute;
  inset: auto -10% -35% 45%;
  height: 70%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18), transparent 62%);
  pointer-events: none;
}
.checkin-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.checkin-hero__copy h1 {
  max-width: 560px;
  margin-bottom: 1rem;
}
.checkin-hero__copy .hero-sub {
  max-width: 560px;
}
.checkin-hero__trust {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.35rem;
  max-width: 520px;
}
.checkin-hero__trust span {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}
.checkin-hero__trust span::before {
  content: '';
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  box-shadow: 0 0 0 5px rgba(0, 168, 112, 0.1);
}
.checkin-hero__panel {
  position: relative;
}
.checkin-card,
.checkin-result-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 28px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(0, 168, 112, 0.55), rgba(255, 184, 0, 0.42), rgba(139, 92, 246, 0.35)) border-box;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
}
.checkin-card::after,
.checkin-result-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(0, 168, 112, 0.08), transparent 34%);
  pointer-events: none;
}
.checkin-card > *,
.checkin-result-card > * {
  position: relative;
  z-index: 1;
}
.checkin-card__topline {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.15rem;
}
.checkin-card__icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: 0 14px 32px rgba(0, 168, 112, 0.22);
}
.checkin-card__icon svg {
  width: 23px;
  height: 23px;
}
.checkin-card__kicker {
  margin: 0 0 0.15rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}
.checkin-card h2,
.checkin-result-card h2 {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
}
.checkin-field label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--dark);
  font-size: 0.92rem;
  font-weight: 700;
}
.checkin-field textarea {
  width: 100%;
  min-height: 168px;
  padding: 1rem 1.05rem;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(0,168,112,0.18), rgba(6,182,212,0.14)) border-box;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  resize: vertical;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75), 0 12px 32px rgba(15, 23, 42, 0.04);
}
.checkin-field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(0, 168, 112, 0.12), 0 16px 36px rgba(15, 23, 42, 0.08);
}
.checkin-disclaimer {
  display: flex;
  gap: 0.55rem;
  margin: 0.9rem 0 1rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(6, 182, 212, 0.18);
  border-radius: 16px;
  background: rgba(240, 249, 255, 0.76);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}
.checkin-disclaimer::before {
  content: 'i';
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 0.78rem;
}
.checkin-submit {
  width: 100%;
}
.checkin-login-note,
.checkin-handoff {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}
.checkin-result-card__badge {
  margin-bottom: 0.9rem;
}
.checkin-result-card__summary,
.checkin-result-card__action {
  color: var(--dark);
  font-size: 0.96rem;
  line-height: 1.7;
}
.checkin-booking-suggestion {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(0, 168, 112, 0.16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(230, 255, 245, 0.85), rgba(255, 251, 235, 0.8));
}
.checkin-booking-suggestion p {
  margin: 0.35rem 0 0;
  color: var(--dark);
  font-size: 0.92rem;
}
.checkin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.checkin-why {
  max-width: 680px;
  text-align: center;
}

/* Ask Vitara premium polish */
.ask-vitara__fab {
  min-height: 58px;
  padding: 0.55rem 1.05rem 0.55rem 0.55rem;
  gap: 0.65rem;
  background: linear-gradient(135deg, #0f172a 0%, #007a52 48%, #ffb800 100%);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22), 0 8px 28px rgba(0, 168, 112, 0.26);
}
.ask-vitara__fab-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.24);
}
.ask-vitara__fab-icon svg {
  width: 22px;
  height: 22px;
}
.ask-vitara__panel {
  width: min(410px, calc(100vw - 2rem));
  max-height: min(78vh, 640px);
  border-radius: 26px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.24);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,250,252,0.98));
}
.ask-vitara__header {
  position: relative;
  align-items: flex-start;
  padding: 1rem;
  background:
    radial-gradient(circle at 15% 15%, rgba(255,255,255,0.22), transparent 30%),
    linear-gradient(135deg, #0f172a 0%, #007a52 58%, #06b6d4 100%);
  color: #fff;
}
.ask-vitara__header strong,
.ask-vitara__subtitle {
  color: #fff;
}
.ask-vitara__subtitle {
  opacity: 0.76;
}
.ask-vitara__brand {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}
.ask-vitara__avatar {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
}
.ask-vitara__avatar svg {
  width: 22px;
  height: 22px;
}
.ask-vitara__close {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.ask-vitara__close:hover {
  background: rgba(255, 255, 255, 0.2);
}
.ask-vitara__suggestions {
  padding: 0.85rem 1rem 0;
  gap: 0.45rem;
}
.ask-vitara__chip {
  padding: 0.45rem 0.7rem;
  border-color: rgba(0, 168, 112, 0.16);
  background: #fff;
  color: var(--dark);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}
.ask-vitara__messages {
  min-height: 150px;
  max-height: 290px;
  padding: 0.95rem 1rem;
}
.ask-vitara__msg {
  max-width: 92%;
  font-size: 0.88rem;
}
.ask-vitara__msg--user {
  margin-left: auto;
  background: linear-gradient(135deg, #dcfce7, #e0f2fe);
  color: var(--dark);
  border-radius: 18px 18px 6px 18px;
  box-shadow: 0 10px 24px rgba(0, 168, 112, 0.08);
}
.ask-vitara__msg--bot {
  margin-right: auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px 18px 18px 6px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}
.ask-vitara__msg--welcome {
  font-size: 0.8rem;
  color: var(--muted);
}
.ask-vitara__msg-link {
  border-radius: 999px;
  border-color: rgba(0, 168, 112, 0.18);
  color: var(--brand-dark);
}
.ask-vitara__form {
  padding: 0.75rem 1rem 1rem;
  background: rgba(255, 255, 255, 0.9);
}
.ask-vitara__composer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: end;
  padding: 0.45rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.06);
}
.ask-vitara__form textarea {
  border: none;
  min-height: 46px;
  max-height: 130px;
  padding: 0.55rem 0.6rem;
  background: transparent;
  font-size: 0.92rem;
}
.ask-vitara__form textarea:focus {
  outline: none;
}
.ask-vitara__send {
  min-width: 48px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border: none;
  border-radius: 14px;
  background: var(--gradient-warm);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 184, 0, 0.24);
}
.ask-vitara__send svg {
  width: 17px;
  height: 17px;
}
.ask-vitara__send:disabled {
  opacity: 0.72;
  cursor: wait;
}

@media (max-width: 980px) {
  .checkin-hero__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .checkin-hero {
    padding: 2rem 0.75rem 2.5rem;
  }
  .checkin-hero__inner {
    width: min(100% - 0.5rem, 420px);
    gap: 1.25rem;
  }
  .checkin-hero__trust {
    display: none;
  }
  .checkin-card,
  .checkin-result-card {
    padding: 1.1rem;
    border-radius: 22px;
  }
  .checkin-card__icon {
    flex-basis: 42px;
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
  .checkin-field textarea {
    min-height: 150px;
    font-size: 16px;
  }
  .checkin-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .checkin-why {
    text-align: left;
  }
  .ask-vitara__fab {
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
  }
  .ask-vitara__fab-icon {
    width: 44px;
    height: 44px;
  }
  .ask-vitara__panel {
    width: calc(100vw - 1rem);
    max-height: min(76vh, 620px);
    border-radius: 22px;
  }
  .ask-vitara__messages {
    max-height: 260px;
  }
  .ask-vitara__send span {
    display: none;
  }
}

/* Corporate package advisor (Phase 3) */
.corp-advisor {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.corp-advisor__form,
.corp-advisor__result {
  padding: 1.5rem;
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  background: #fff;
}
.corp-advisor__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.corp-advisor__needs {
  border: none;
  margin: 0 0 1rem;
  padding: 0;
}
.corp-advisor__needs legend {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.corp-advisor__check {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  cursor: pointer;
}
.corp-advisor__check input { margin-right: 0.4rem; }
.corp-advisor__disclaimer {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: var(--muted, #64748b);
}
.corp-advisor__result-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent, #00A870);
  font-weight: 600;
  margin: 0 0 0.35rem;
}
.corp-advisor__tagline { color: var(--muted, #64748b); margin: 0 0 0.75rem; }
.corp-advisor__summary { line-height: 1.5; margin-bottom: 0.75rem; }
.corp-advisor__reasons {
  margin: 0 0 1rem;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: var(--text, #111);
}
.corp-advisor__alt {
  font-size: 0.85rem;
  color: var(--muted, #64748b);
  margin-bottom: 1rem;
}
.corp-advisor__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  .corp-advisor { grid-template-columns: 1fr; }
  .corp-advisor__row { grid-template-columns: 1fr; }
}

/* Public website responsive polish */
@media (max-width: 1280px) {
  :root {
    --container: min(100% - 2rem, 1040px);
    --header-h: 68px;
    --section-py: 84px;
  }

  .nav-inner {
    padding-inline: 1rem;
    gap: 0.75rem;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: max(0.75rem, env(safe-area-inset-left, 0px));
    right: max(0.75rem, env(safe-area-inset-right, 0px));
    max-height: min(75vh, calc(100dvh - var(--header-h) - 1rem));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    gap: 0.2rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 22px 70px rgba(15, 23, 42, 0.16);
  }
  .nav-links.open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 0.75rem 0.9rem;
    font-size: 0.95rem;
    border-radius: 12px;
    font-weight: 500;
    color: var(--text-muted);
  }
  .nav-link.active { box-shadow: none; }

  .nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
  }
  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-ctas {
    gap: 0.5rem;
  }
  .nav-ctas .lang-switch {
    display: none;
  }
  .btn-ghost-nav {
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 6px 12px;
  }
  .nav-ctas .btn-accent {
    white-space: nowrap;
    font-size: 0.82rem;
    padding: 6px 14px;
  }

  .hero-inner,
  .platform-band__inner,
  .split-band__inner,
  .corp-hero__grid {
    gap: clamp(1.75rem, 4vw, 3rem);
  }
}

@media (max-width: 980px) {
  .nav-ctas {
    display: none;
  }

  .nav-mobile-lang,
  .nav-mobile-ctas {
    display: block;
  }

  .nav-mobile-lang {
    padding: 0.7rem 0 0.25rem;
    border-top: 1px solid var(--border);
    margin-top: 0.35rem;
  }

  .nav-mobile-lang .lang-switch {
    width: 100%;
    justify-content: center;
  }

  .nav-mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    padding-top: 0.75rem;
  }

  .nav-mobile-ctas .btn {
    width: 100%;
    justify-content: center;
    min-height: 46px;
  }

  .hero-inner,
  .platform-band__inner,
  .split-band__inner,
  .corp-hero__grid,
  .contact-grid,
  .grid-2,
  .tools-grid {
    grid-template-columns: 1fr;
  }

  .hero__visual,
  .platform-band__media,
  .corp-hero__media {
    order: -1;
  }

  .how-steps,
  .audience-cards,
  .testimonials-grid,
  .benefit-cards,
  .photo-feature-grid,
  .doctor-preview__grid,
  .news-grid,
  .news-grid--full,
  .audience-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid:not(.corp-package-cards) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root {
    --container: min(100% - 1.25rem, 720px);
    --section-py: 58px;
  }

  html {
    scroll-padding-top: calc(var(--header-h) + 12px);
  }

  body.public-site,
  body.pwa-public {
    line-height: 1.6;
    overflow-x: hidden;
  }

  .site-nav {
    position: sticky;
    top: 0;
  }

  .site-bg::before,
  .fx-orb {
    opacity: 0.28;
  }

  .container {
    width: var(--container);
  }

  .section,
  .how-section,
  .audiences-section,
  .testimonials-section,
  .audience-strip,
  .split-band,
  .platform-band,
  .hero,
  .hero--v2,
  .hero-light,
  .cta-banner,
  .stats-strip {
    padding-inline: 0.75rem;
  }

  .section,
  .how-section,
  .audiences-section,
  .testimonials-section,
  .doctor-preview,
  .audience-strip {
    padding-block: var(--section-py);
  }

  .hero,
  .hero--v2 {
    padding-top: 2.4rem;
    padding-bottom: 2.8rem;
  }

  .hero-light,
  .corp-hero {
    padding-block: 2.5rem;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-header.centered,
  .text-center {
    text-align: left;
  }

  h1,
  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.55rem);
    line-height: 1.07;
    letter-spacing: -0.045em;
  }

  h2,
  .platform-band__text h2,
  .split-band__text h2,
  .cta-banner h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.14;
  }

  p,
  .hero-sub {
    font-size: 0.93rem;
    line-height: 1.68;
  }

  .eyebrow,
  .hero-eyebrow {
    padding: 5px 11px;
    font-size: 0.62rem;
    margin-bottom: 0.65rem;
  }

  .hero-ctas,
  .cta-banner-btns,
  .platform-band__ctas,
  .corp-advisor__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .btn,
  .btn-lg,
  .btn-sm,
  .hero-ctas .btn,
  .cta-banner-btns .btn,
  .corp-advisor__actions .btn {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    padding: 0.82rem 1rem;
    text-align: center;
    line-height: 1.2;
  }

  .hero__photo-wrap,
  .corp-hero__media img,
  .platform-band__media img,
  .split-band__media img {
    border-radius: 16px;
  }

  .hero__photo-wrap {
    margin-bottom: 1rem;
  }

  .hero__photo-wrap img {
    min-height: 0;
    max-height: 235px;
    object-position: center;
  }

  .hero-map {
    display: none;
  }

  .access-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .access-badge {
    width: 100%;
    min-height: 50px;
  }

  .hero-stats,
  .stats-strip-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    text-align: left;
  }

  .hero-stats > div,
  .stats-strip-inner > div {
    padding: 0.85rem;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.76);
  }

  .stats-strip-inner > div {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
  }

  .how-steps,
  .audience-cards,
  .testimonials-grid,
  .benefit-cards,
  .photo-feature-grid,
  .doctor-preview__grid,
  .news-grid,
  .news-grid--full,
  .audience-strip__grid,
  .pricing-grid,
  .pricing-grid.two-col,
  .trust-band__inner,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .how-steps::before {
    display: none;
  }

  .feature-card,
  .benefit-card,
  .audience-card,
  .review-card,
  .pricing-card,
  .photo-feature-card,
  .service-tile,
  .news-card,
  .doctor-card,
  .audience-strip__card,
  .corp-advisor__form,
  .corp-advisor__result {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .pricing-card.featured {
    transform: none;
  }

  .service-tile {
    grid-template-columns: 1fr;
  }

  .service-tile__img img {
    min-height: 170px;
    max-height: 210px;
  }

  .doctor-preview__fields {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0.7rem;
  }

  .doctor-preview__fields input,
  .doctor-preview__fields select,
  .contact-form input,
  .contact-form select,
  .contact-form textarea,
  .corp-advisor select,
  .corp-advisor input {
    min-height: 48px;
    font-size: 16px;
  }

  .doctor-card__badge {
    position: static;
    align-self: flex-start;
    margin-top: 0.35rem;
  }

  .logo-bar-logos {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.35rem;
    scroll-snap-type: x proximity;
  }

  .logo-pill {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .compare-table-wrap {
    margin-inline: -0.25rem;
    border-radius: 14px;
  }

  .compare-table {
    min-width: 640px;
  }

  .faq-question {
    min-height: 48px;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .footer-tagline {
    max-width: none;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .flash-banner {
    width: var(--container);
    padding: 0.75rem 0 0;
  }

  .pwa-public-main {
    padding-bottom: calc(112px + env(safe-area-inset-bottom, 0px));
  }

  .sticky-cta {
    bottom: calc(58px + env(safe-area-inset-bottom, 0px));
    padding: 0.55rem 0.75rem;
  }
}

@media (max-width: 420px) {
  :root {
    --container: min(100% - 1rem, 390px);
  }

  .nav-logo img {
    width: 32px;
    height: 32px;
  }

  .nav-logo-text {
    font-size: 0.9rem;
  }

  .hero-stats,
  .stats-strip-inner {
    grid-template-columns: 1fr;
  }

  .hero__photo-wrap img {
    max-height: 200px;
  }

  .ask-vitara {
    left: 0.75rem;
    right: auto;
  }

  .ask-vitara__panel {
    width: calc(100vw - 1.5rem);
    max-height: min(70vh, 560px);
  }

  .pwa-tabbar__label {
    font-size: 0.54rem;
  }
}

/* ===== About Us — Team & Regulatory ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}
.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.team-name {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
}
.team-title {
  font-size: 0.85rem;
  color: var(--brand, #00A870);
  margin: 0 0 0.5rem;
  font-weight: 500;
}
.team-bio {
  font-size: 0.82rem;
  color: var(--text-muted, #64748b);
  line-height: 1.45;
}
.reg-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem 0;
}
.reg-card {
  background: var(--surface);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 180px;
}
.reg-number {
  font-size: 0.85rem;
  color: var(--text-muted, #64748b);
}
.reg-desc {
  font-size: 0.8rem;
  color: var(--text-muted, #64748b);
}

/* ============================================================
   CORPORATE SELF-REGISTRATION — PREMIUM FORM
   ============================================================ */

.corp-apply-hero {
  padding: 3rem 1rem 4rem;
  min-height: calc(100vh - var(--header-h, 76px));
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--brand-light, #E6FFF5) 0%, #fff 40%, #fef9ee 100%);
}

.corp-apply-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.corp-apply-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
  color: var(--text, #0f172a);
  letter-spacing: -0.02em;
}

.corp-apply-lead {
  font-size: 1.05rem;
  color: var(--muted, #64748b);
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 460px;
}

/* Steps sidebar */
.corp-apply-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2rem;
}

.corp-apply-step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.65rem 0;
}

.corp-apply-step__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-light, #E6FFF5);
  color: var(--brand, #00A870);
  flex-shrink: 0;
}

.corp-apply-step.is-active .corp-apply-step__icon {
  background: var(--gradient-brand);
  color: #fff;
}

.corp-apply-step strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text, #0f172a);
}

.corp-apply-step span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted, #64748b);
  margin-top: 0.1rem;
}

.corp-apply-step__connector {
  width: 2px;
  height: 20px;
  background: var(--border, #e2e8f0);
  margin-left: 19px;
}

/* Trust badges */
.corp-apply-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.corp-apply-trust__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted, #64748b);
  background: rgba(0,168,112,0.04);
  border: 1px solid rgba(0,168,112,0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

/* Form card */
.corp-apply-right {
  max-width: 480px;
  width: 100%;
  justify-self: end;
}

.corp-apply-form {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,168,112,0.08), 0 1px 3px rgba(0,0,0,0.04);
}

.corp-apply-form__section {
  margin-bottom: 0;
}

.corp-apply-form__section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand, #00A870);
  margin-bottom: 1rem;
}

.corp-apply-form__divider {
  height: 1px;
  background: var(--border, #e2e8f0);
  margin: 1.25rem 0;
}

.corp-apply-form__field {
  margin-bottom: 0.85rem;
}

.corp-apply-form__field label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text, #0f172a);
  margin-bottom: 0.35rem;
}

.corp-apply-form__field label svg {
  color: var(--muted, #64748b);
  flex-shrink: 0;
}

.corp-apply-input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border, #e2e8f0);
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  background: var(--surface-3, #f8fafc);
  color: var(--text, #0f172a);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
}

.corp-apply-input:focus {
  outline: none;
  border-color: var(--brand, #00A870);
  box-shadow: 0 0 0 3px rgba(0,168,112,0.12);
  background: #fff;
}

.corp-apply-input::placeholder {
  color: #a0aec0;
}

select.corp-apply-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

/* Password field */
.corp-apply-password-wrap {
  position: relative;
}

.corp-apply-password-wrap .corp-apply-input {
  padding-right: 2.8rem;
}

.corp-apply-password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted, #64748b);
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.corp-apply-password-toggle:hover {
  color: var(--brand, #00A870);
  background: var(--brand-light, #E6FFF5);
}

/* Terms */
.corp-apply-terms {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted, #64748b);
  margin: 1rem 0 1.25rem;
  cursor: pointer;
}

.corp-apply-terms input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--brand, #00A870);
  flex-shrink: 0;
}

.corp-apply-terms a {
  color: var(--brand, #00A870);
  font-weight: 500;
}

/* Submit button */
.corp-apply-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 14px;
}

.corp-apply-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: none;
}

.corp-apply-submit:disabled::after {
  display: none;
}

/* Footer links */
.corp-apply-footer {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted, #64748b);
  margin-top: 1rem;
}

.corp-apply-footer a {
  color: var(--brand, #00A870);
  font-weight: 500;
  text-decoration: none;
}

.corp-apply-footer a:hover {
  text-decoration: underline;
}

.corp-apply-footer__sep {
  margin: 0 0.25rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .corp-apply-hero {
    padding: 2rem 1rem 3rem;
    min-height: auto;
    align-items: flex-start;
  }

  .corp-apply-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .corp-apply-left {
    text-align: center;
  }

  .corp-apply-lead {
    max-width: 100%;
  }

  .corp-apply-steps {
    align-items: center;
  }

  .corp-apply-trust {
    justify-content: center;
  }

  .corp-apply-right {
    max-width: 100%;
    justify-self: center;
  }

  .corp-apply-form {
    padding: 1.5rem;
    border-radius: 16px;
  }

  .corp-apply-form__row {
    grid-template-columns: 1fr !important;
  }
}

/* ============================================================
   ONBOARDING WIZARD — PREMIUM STYLES
   ============================================================ */

.onb-hero {
  padding: 3rem 1rem 4rem;
  min-height: calc(100vh - var(--header-h, 76px));
  background: linear-gradient(160deg, var(--brand-light, #E6FFF5) 0%, #fff 40%, #fef9ee 100%);
}

/* Header */
.onb-header {
  text-align: center;
  margin-bottom: 2rem;
}

.onb-header__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand);
  color: #fff;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 14px rgba(0,168,112,0.25);
}

.onb-header__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text, #0f172a);
  margin: 0 0 0.4rem;
  letter-spacing: -0.02em;
}

.onb-header__sub {
  font-size: 0.95rem;
  color: var(--muted, #64748b);
  margin: 0;
}

/* Progress stepper */
.onb-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.onb-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  padding: 0 1.5rem;
}

.onb-progress__circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--surface-3, #f1f5f9);
  color: var(--muted, #64748b);
  border: 2px solid var(--border, #e2e8f0);
  transition: all 0.25s ease;
}

.onb-progress__step.is-active .onb-progress__circle {
  background: var(--gradient-brand);
  color: #fff;
  border-color: var(--brand, #00A870);
  box-shadow: 0 4px 14px rgba(0,168,112,0.3);
}

.onb-progress__step.is-done .onb-progress__circle {
  background: var(--brand, #00A870);
  color: #fff;
  border-color: var(--brand, #00A870);
}

.onb-progress__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted, #64748b);
}

.onb-progress__step.is-active .onb-progress__label {
  color: var(--brand, #00A870);
}

.onb-progress__step.is-done .onb-progress__label {
  color: var(--brand, #00A870);
}

.onb-progress__connector {
  width: 60px;
  height: 2px;
  background: var(--border, #e2e8f0);
  margin-top: -1.5rem;
  transition: background 0.25s ease;
}

.onb-progress__connector.is-done {
  background: var(--brand, #00A870);
}

/* Card */
.onb-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(0,168,112,0.08), 0 1px 3px rgba(0,0,0,0.04);
}

.onb-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.onb-card__header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.onb-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-light, #E6FFF5);
  color: var(--brand, #00A870);
  flex-shrink: 0;
}

.onb-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text, #0f172a);
  margin: 0 0 0.2rem;
}

.onb-card__desc {
  font-size: 0.82rem;
  color: var(--muted, #64748b);
  margin: 0;
  line-height: 1.5;
}

/* Form */
.onb-form__row {
  display: grid;
  gap: 0.75rem;
}

.onb-form__field {
  margin-bottom: 0.85rem;
}

.onb-form__field label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text, #0f172a);
  margin-bottom: 0.35rem;
}

.onb-form__field label svg {
  color: var(--muted, #64748b);
  flex-shrink: 0;
}

.onb-form__hint {
  font-size: 0.78rem;
  color: var(--muted, #64748b);
  margin: 0 0 0.5rem;
}

.onb-form__hint code {
  background: var(--surface-3, #f1f5f9);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-family: 'SF Mono', 'Fira Code', monospace;
  color: var(--brand, #00A870);
}

.onb-form__divider {
  height: 1px;
  background: var(--border, #e2e8f0);
  margin: 1.25rem 0;
}

.onb-form__section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand, #00A870);
  margin-bottom: 1rem;
}

.onb-form__actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.onb-input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border, #e2e8f0);
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  background: var(--surface-3, #f8fafc);
  color: var(--text, #0f172a);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.onb-input:focus {
  outline: none;
  border-color: var(--brand, #00A870);
  box-shadow: 0 0 0 3px rgba(0,168,112,0.12);
  background: #fff;
}

.onb-input::placeholder {
  color: #a0aec0;
}

select.onb-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}

textarea.onb-input {
  resize: vertical;
  min-height: 60px;
}

/* Sites tags */
.onb-sites {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.onb-sites__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--brand, #00A870);
  background: rgba(0,168,112,0.06);
  border: 1px solid rgba(0,168,112,0.15);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

/* Table */
.onb-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

.onb-table th {
  text-align: left;
  padding: 0.6rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted, #64748b);
  border-bottom: 2px solid var(--border, #e2e8f0);
  background: var(--surface-3, #f8fafc);
}

.onb-table td {
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--border, #e2e8f0);
  color: var(--text, #0f172a);
}

/* Status badge */
.onb-status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: var(--surface-3, #f1f5f9);
  color: var(--muted, #64748b);
  text-transform: capitalize;
}

.onb-status--active {
  background: rgba(0,168,112,0.1);
  color: var(--brand, #00A870);
}

/* Wallet stats */
.onb-wallet-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.onb-wallet-stat {
  background: var(--surface-3, #f8fafc);
  border: 1px solid var(--border, #e2e8f0);
  border-radius: 14px;
  padding: 1.25rem;
  text-align: center;
}

.onb-wallet-stat__value {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brand, #00A870);
  letter-spacing: -0.02em;
}

.onb-wallet-stat__label {
  font-size: 0.75rem;
  color: var(--muted, #64748b);
  margin-top: 0.25rem;
}

/* Wallet info */
.onb-wallet-info {
  background: rgba(0,168,112,0.04);
  border: 1px solid rgba(0,168,112,0.12);
  border-radius: 12px;
  padding: 1.25rem;
  font-size: 0.85rem;
  color: var(--text, #0f172a);
  line-height: 1.6;
}

.onb-wallet-info strong {
  display: block;
  margin-bottom: 0.5rem;
}

.onb-wallet-info ul {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
}

.onb-wallet-info li {
  margin-bottom: 0.3rem;
}

.onb-wallet-info a {
  color: var(--brand, #00A870);
  font-weight: 500;
}

/* Nav buttons */
.onb-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
}

.onb-nav a {
  text-decoration: none;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .onb-hero {
    padding: 1.5rem 1rem 2.5rem;
  }

  .onb-progress {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .onb-progress__step {
    padding: 0 0.75rem;
  }

  .onb-progress__connector {
    width: 30px;
  }

  .onb-card-grid {
    grid-template-columns: 1fr;
  }

  .onb-card {
    padding: 1.5rem;
  }

  .onb-wallet-stats {
    grid-template-columns: 1fr;
  }

  .onb-form__row {
    grid-template-columns: 1fr !important;
  }

  .onb-nav {
    flex-direction: column;
    gap: 0.75rem;
  }

  .onb-nav a {
    width: 100%;
    text-align: center;
  }
}
