/* =============================================================
   BMI KALKULATOR – Premium UI
   Apple / Stripe / SaaS-inspired design system
   ============================================================= */

/* ---------- Google Fonts: Inter ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand */
  --orange:       #f97316;
  --orange-dark:  #ea6c0a;
  --orange-alpha: rgba(249,115,22,0.09);
  --orange-glow:  rgba(249,115,22,0.22);

  /* Neutrals */
  --black:        #080808;
  --white:        #ffffff;
  --bg:           #f7f8fa;
  --card:         #ffffff;
  --text:         #0f172a;
  --text-muted:   #64748b;
  --text-light:   #94a3b8;
  --border:       #e2e8f0;
  --border-strong:#cbd5e1;

  /* Status */
  --green:        #16a34a;
  --green-bg:     rgba(22,163,74,0.09);
  --yellow:       #b45309;
  --yellow-bg:    rgba(180,83,9,0.09);
  --red:          #dc2626;
  --red-bg:       rgba(220,38,38,0.09);
  --blue:         #3b82f6;
  --blue-light:   #93c5fd;

  /* Shadows — barely there, like Apple */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:  0 2px 6px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.07);
  --shadow-lg:  0 8px 28px rgba(0,0,0,0.08);
  --shadow-xl:  0 16px 48px rgba(0,0,0,0.10);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 4px 12px rgba(0,0,0,0.05);

  /* Radius */
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-full: 9999px;

  /* Easing */
  --ease:        cubic-bezier(0.4,0,0.2,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
}

/* -------------------------------------------------------
   RESET & BASE
------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width:100%; display:block; }
a   { text-decoration:none; color:inherit; }
button { font-family: inherit; }

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.hidden { display: none !important; }

/* -------------------------------------------------------
   TYPOGRAPHY
------------------------------------------------------- */
h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.015em;
}
h4 { font-size: 1rem; font-weight: 600; }

.accent { color: var(--orange); }

.section-title {
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 52px;
  font-weight: 400;
}

/* -------------------------------------------------------
   BUTTONS
------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition:
    transform 0.18s var(--ease),
    box-shadow 0.18s var(--ease),
    background 0.18s var(--ease);
  letter-spacing: -0.01em;
  white-space: nowrap;
  text-align: center;
  -webkit-user-select: none;
  user-select: none;
}

/* -------------------------------------------------------
   MAIN NAVIGATION (index.html)
------------------------------------------------------- */
.main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.main-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 24px;
}
.main-nav-logo {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}
.main-nav-logo:hover { color: var(--orange); }

.main-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--r-full);
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
  white-space: nowrap;
}
.main-nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.07); }

.main-nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 7px 16px !important;
  margin-left: 8px;
  box-shadow: 0 2px 10px rgba(249,115,22,0.28);
}
.main-nav-cta:hover {
  background: var(--orange-dark) !important;
  box-shadow: 0 4px 16px rgba(249,115,22,0.40) !important;
}

/* Hamburger */
.main-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.main-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.main-nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.main-nav-toggle.open span:nth-child(2) { opacity: 0; }
.main-nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .main-nav-links { display: none; }
  .main-nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(8,8,8,0.97);
    backdrop-filter: blur(16px);
    padding: 16px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    animation: slideDown 0.2s var(--ease);
  }
  .main-nav-links.open a { padding: 12px 16px; border-radius: var(--r-md); font-size: 1rem; }
  .main-nav-cta { margin-left: 0 !important; text-align: center; }
  .main-nav-toggle { display: flex; }
  .main-nav { position: sticky; }
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn-orange {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.10),
              0 4px 12px rgba(249,115,22,0.28);
}
.btn-orange:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.12),
              0 8px 24px rgba(249,115,22,0.36);
}
.btn-orange:active { transform: translateY(0); }

.btn-back {
  background: transparent;
  color: var(--text-muted);
  padding: 12px 20px;
  font-weight: 500;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
}
.btn-back:hover {
  color: var(--text);
  border-color: var(--border-strong);
  background: var(--bg);
}

.btn-hero   { font-size: 1rem; padding: 16px 40px; margin-top: 32px; font-weight: 700; }
.btn-full   { width: 100%; padding: 16px; font-size: 1rem; border-radius: var(--r-lg); font-weight: 700; }
.btn-xl     { font-size: 1.1rem; padding: 18px 44px; font-weight: 700; }
.btn-sticky { width: 100%; padding: 15px 24px; border-radius: var(--r-full); font-size: 0.95rem; font-weight: 700; }

/* Pulse */
@keyframes pulse-orange {
  0%   { box-shadow: 0 0 0 0   rgba(249,115,22,0.45); }
  70%  { box-shadow: 0 0 0 14px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0   rgba(249,115,22,0); }
}
.pulse { animation: pulse-orange 2.2s cubic-bezier(0.66,0,0,1) infinite; }

/* -------------------------------------------------------
   ANIMATIONS
------------------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes loaderItemIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}

/* -------------------------------------------------------
   HERO
------------------------------------------------------- */
.hero {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle radial glow */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(249,115,22,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 90%, rgba(249,115,22,0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid pattern overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.80);
  padding: 7px 18px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero h1 {
  color: var(--white);
  max-width: 780px;
  margin: 0 auto 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.58);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 400;
}

.hero-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.01em;
}

/* -------------------------------------------------------
   TRUST BAR
------------------------------------------------------- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  align-items: stretch;
}

.trust-inner span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 0.83rem;
  font-weight: 500;
  padding: 14px 28px;
  border-right: 1px solid var(--border);
  letter-spacing: 0.01em;
}
.trust-inner span:last-child { border-right: none; }

/* -------------------------------------------------------
   CALCULATOR SECTION
------------------------------------------------------- */
.calculator-section {
  background: var(--bg);
  padding: 52px 0 64px;
}

.calc-wrapper {
  background: var(--white);
  border-radius: var(--r-2xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  padding: 48px 44px;
  max-width: 640px;
  margin: 0 auto;
}

/* Progress */
.progress-wrap {
  height: 3px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
  margin-bottom: 10px;
}
.progress-bar {
  height: 100%;
  background: var(--orange);
  border-radius: var(--r-full);
  width: 14.28%;
  transition: width 0.5s var(--ease);
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 44px;
}

/* Steps */
.step {
  display: none;
  animation: scaleIn 0.3s var(--ease) both;
}
.step.active { display: block; }

.step-header { margin-bottom: 32px; }
.step-header h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
  color: var(--text);
}
.step-header p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.6;
}

/* Card grid */
.card-grid { display: grid; gap: 12px; margin-bottom: 32px; }
.two-col   { grid-template-columns: 1fr 1fr; }

.card-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--white);
  cursor: pointer;
  transition:
    border-color 0.18s var(--ease),
    background   0.18s var(--ease),
    box-shadow   0.18s var(--ease),
    transform    0.18s var(--ease-spring);
  text-align: center;
}
.card-btn:hover {
  border-color: var(--orange);
  background: var(--orange-alpha);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card-btn.selected {
  border-color: var(--orange);
  background: var(--orange-alpha);
  box-shadow: 0 0 0 3px var(--orange-glow);
}

.card-icon  { font-size: 2rem; line-height: 1; }
.card-title { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.card-desc  { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

/* Number input */
.input-group {
  position: relative;
  margin-bottom: 32px;
}
.input-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.num-input {
  width: 100%;
  padding: 16px 64px 16px 20px;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  outline: none;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  letter-spacing: -0.02em;
}
.num-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.input-unit {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-25%);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Slider */
.slider-group { margin-bottom: 32px; }
.slider-display {
  text-align: center;
  margin-bottom: 24px;
}
.slider-display span:first-child {
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.04em;
  display: inline-block;
  transition: color 0.2s var(--ease);
}
.slider-display .unit {
  font-size: 1.4rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-left: 4px;
  letter-spacing: -0.01em;
}

.slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: var(--r-full);
  background: linear-gradient(90deg, var(--orange) 0%, var(--border) 0%);
  outline: none;
  cursor: pointer;
}
.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--orange);
  box-shadow: 0 1px 4px rgba(0,0,0,0.12), 0 2px 8px rgba(249,115,22,0.20);
  cursor: pointer;
  transition: transform 0.15s var(--ease-spring);
}
.slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.slider::-moz-range-thumb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--orange);
  cursor: pointer;
}
.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 10px;
  font-weight: 500;
}

/* Step nav */
.step-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
}
.step-nav-back-only { justify-content: flex-start; }
.step-nav .btn-orange { flex: 1; }

/* Loader */
.loader-wrap {
  text-align: center;
  padding: 48px 24px;
}
.loader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 28px;
}
.loader-title {
  font-size: 1.1rem;
  margin-bottom: 28px;
  color: var(--text);
  font-weight: 600;
}
.loader-steps { text-align: left; display: inline-block; }
.loader-item {
  opacity: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.loader-item::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* -------------------------------------------------------
   RESULTS SECTION
------------------------------------------------------- */
.results-section {
  background: var(--bg);
  padding: 52px 0 64px;
  animation: fadeIn 0.5s var(--ease);
}

.results-header {
  text-align: center;
  margin-bottom: 48px;
}
.results-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 8px;
}
.results-sub {
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 400;
}

/* BMI Card */
.bmi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  animation: slideUp 0.5s var(--ease) both;
}

.bmi-label {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.bmi-score {
  font-size: clamp(4rem, 10vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.05em;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}

.bmi-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 32px;
  background: var(--orange-alpha);
  color: var(--orange);
}

/* Gauge */
.gauge-wrap { max-width: 400px; margin: 0 auto; }
.gauge-bar {
  position: relative;
  height: 8px;
  background: linear-gradient(
    90deg,
    #3b82f6 0%,
    #22c55e 28%,
    #eab308 56%,
    #f97316 78%,
    #dc2626 100%
  );
  border-radius: var(--r-full);
  margin-bottom: 12px;
}
.gauge-fill { height: 100%; border-radius: var(--r-full); }
.gauge-marker {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--white);
  border: 2.5px solid var(--text);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: left 1.1s var(--ease-spring);
}
.gauge-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
  animation: slideUp 0.55s var(--ease) both;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}
.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.stat-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-value {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Personal Score Card */
.score-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-xs);
  animation: slideUp 0.6s var(--ease) both;
}
.score-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.score-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.score-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.score-track {
  height: 8px;
  background: var(--border);
  border-radius: var(--r-full);
  overflow: hidden;
}
.score-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #fb923c);
  border-radius: var(--r-full);
  width: 0%;
  transition: width 1.2s var(--ease);
}
.score-desc {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
}

/* Risk Box */
.risk-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: var(--r-xl);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-xs);
  animation: slideUp 0.6s var(--ease) both;
}
.risk-box h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--text);
}
.risk-box p {
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.92rem;
  font-weight: 400;
}

/* Future Box */
.future-box {
  background: var(--black);
  color: var(--white);
  border-radius: var(--r-2xl);
  padding: 40px 36px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: slideUp 0.65s var(--ease) both;
}
.future-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(249,115,22,0.16) 0%, transparent 70%);
  pointer-events: none;
}
.future-box h3 { color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
.future-box p {
  color: rgba(255,255,255,0.70);
  font-size: 1rem;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.future-box strong { color: var(--orange); font-weight: 700; }

/* Comparison Table */
.comparison-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-xs);
  margin-bottom: 20px;
  animation: slideUp 0.7s var(--ease) both;
  overflow: hidden;
}
.comparison-wrap h3 { margin-bottom: 24px; font-size: 1.15rem; }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.comp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}
.comp-table th,
.comp-table td {
  padding: 13px 16px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.comp-table tr:last-child td { border-bottom: none; }
.comp-table th {
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  background: var(--bg);
}
.comp-table th:first-child,
.comp-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--text);
  padding-left: 20px;
}
.highlight-col {
  background: rgba(249,115,22,0.06);
  color: var(--orange);
  font-weight: 700;
}
.comp-table th.highlight-col {
  background: var(--orange);
  color: white;
  border-radius: 0;
}

/* Recommendation Box */
.rec-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-xs);
  margin-bottom: 20px;
  animation: slideUp 0.75s var(--ease) both;
}
.rec-box h3 { margin-bottom: 20px; font-size: 1.15rem; }
.rec-content { color: var(--text-muted); line-height: 1.8; font-size: 0.92rem; }
.rec-content strong { color: var(--text); }
.rec-content p { margin-bottom: 10px; }
.rec-content p:last-child { margin-bottom: 0; }

.rec-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-alpha);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.20);
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

/* 7-day Plan */
.plan-teaser {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-xs);
  margin-bottom: 20px;
  animation: slideUp 0.8s var(--ease) both;
}
.plan-teaser h3 { margin-bottom: 24px; font-size: 1.15rem; }
.plan-days { display: grid; gap: 8px; }
.plan-day {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 13px 16px;
  background: var(--bg);
  border-radius: var(--r-md);
  border: 1px solid transparent;
  transition: border-color 0.15s var(--ease);
}
.plan-day:hover { border-color: var(--border); }
.plan-day-num {
  background: var(--orange);
  color: white;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: var(--r-full);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-top: 1px;
}
.plan-day-text {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
.plan-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
  font-style: italic;
}

/* Lead Form */
.lead-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 40px 36px;
  margin-bottom: 20px;
  animation: slideUp 0.85s var(--ease) both;
}
.lead-form-wrap h3 { margin-bottom: 6px; }
.lead-form-wrap > p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.form-group input::placeholder { color: var(--text-light); }
.form-group input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 14px;
  line-height: 1.5;
}

.form-success {
  text-align: center;
  padding: 40px 24px;
  animation: scaleIn 0.4s var(--ease-spring) both;
}
.success-icon { font-size: 2.5rem; margin-bottom: 16px; }
.form-success h4 { font-size: 1.25rem; margin-bottom: 8px; }
.form-success p  { color: var(--text-muted); font-size: 0.9rem; }

/* Big CTA */
.big-cta {
  background: var(--black);
  border-radius: var(--r-2xl);
  padding: 56px 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.9s var(--ease) both;
}
.big-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 0%, rgba(249,115,22,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.big-cta h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.big-cta p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.cta-note {
  margin-top: 16px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 1;
}

/* -------------------------------------------------------
   SOCIAL PROOF
------------------------------------------------------- */
.social-proof {
  padding: 64px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 32px;
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testi-stars {
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  font-weight: 400;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-weight: 700;
  font-size: 0.78rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.testi-author strong { display: block; font-size: 0.88rem; font-weight: 700; }
.testi-author span   { font-size: 0.78rem; color: var(--text-muted); font-weight: 400; }

/* -------------------------------------------------------
   TRAINER SECTION
------------------------------------------------------- */
.trainer-section {
  background: var(--bg);
  padding: 64px 0;
}

.trainer-inner {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  max-width: 840px;
  margin: 0 auto;
}

.trainer-avatar-wrap { position: relative; flex-shrink: 0; }

.trainer-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #fb923c);
  color: white;
  font-size: 1.6rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(249,115,22,0.28);
  letter-spacing: 0.02em;
}
.trainer-badge {
  position: absolute;
  bottom: -6px;
  right: -8px;
  background: var(--black);
  color: white;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: var(--r-sm);
  text-align: center;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.trainer-tag {
  display: inline-flex;
  align-items: center;
  background: var(--orange-alpha);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.18);
  padding: 4px 13px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.trainer-bio h2 { font-size: 1.6rem; margin-bottom: 4px; letter-spacing: -0.025em; }
.trainer-bio h4 { color: var(--text-muted); font-weight: 400; font-size: 0.95rem; margin-bottom: 16px; }
.trainer-bio p  { color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; font-size: 0.9rem; }

.trainer-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.trainer-certs span {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 5px 13px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* -------------------------------------------------------
   TRAINING PROGRAMS SECTION
------------------------------------------------------- */
.programs-section {
  margin-top: var(--space-2xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border);
}

.programs-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.program-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.program-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 24px rgba(255, 90, 31, 0.12);
  transform: translateY(-2px);
}

.program-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 90, 31, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.program-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--orange);
}

.program-card strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}

.program-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
  margin: 0;
}

.program-card-link {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--orange);
}

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

/* -------------------------------------------------------
   FOOTER
------------------------------------------------------- */
.footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.5);
  padding: 72px 0 0;
}

/* Top section: brand + nav */
.footer-top {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-phone,
.footer-email {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.15s var(--ease);
}
.footer-phone:hover,
.footer-email:hover { color: var(--orange); }

/* Nav columns */
.footer-nav-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.28);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s var(--ease);
  line-height: 1.4;
}
.footer-col a:hover { color: white; }

/* Stats bar */
.footer-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  row-gap: 12px;
}
.footer-stat {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.38);
  padding: 0 28px;
  flex-shrink: 0;
}
.footer-stat:first-child { padding-left: 0; }
.footer-stat span {
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}
.footer-stat-sep {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Bottom bar */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0 32px;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
  margin: 0;
}

@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-nav-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .footer-nav-cols {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-stats {
    gap: 16px;
  }
  .footer-stat-sep { display: none; }
  .footer-stat { padding: 0; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* -------------------------------------------------------
   STICKY MOBILE CTA
------------------------------------------------------- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 12px 16px 16px;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* -------------------------------------------------------
   RESPONSIVE
------------------------------------------------------- */

/* Mobile ≤ 768px */
@media (max-width: 768px) {
  .sticky-cta { display: block; }

  .hero { padding: 48px 0 60px; }
  .hero h1 { font-size: 2.2rem; }

  .trust-inner span {
    padding: 12px 16px;
    font-size: 0.78rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .trust-inner { flex-direction: column; align-items: stretch; }
  .trust-inner span:last-child { border-bottom: none; }

  .calculator-section { padding: 40px 0 72px; }
  .calc-wrapper { padding: 32px 24px; border-radius: var(--r-xl); }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .trainer-inner {
    flex-direction: column;
    gap: 28px;
    align-items: center;
    text-align: center;
  }
  .trainer-certs { justify-content: center; }

  .results-section { padding-bottom: 110px; }
  .social-proof { padding: 48px 0; }
  .trainer-section { padding: 48px 0; }

  .big-cta { padding: 40px 28px; }
  .comparison-wrap { padding: 28px 20px; }
  .lead-form-wrap { padding: 32px 24px; }
  .bmi-card { padding: 32px 24px; }
  .future-box { padding: 32px 24px; }

  .comp-table th, .comp-table td { padding: 11px 10px; font-size: 0.8rem; }
}

/* Small mobile ≤ 420px */
@media (max-width: 420px) {
  .hero h1 { font-size: 2rem; }
  .hero-badge { font-size: 0.75rem; }
  .bmi-score { font-size: 3.6rem; }
  .stat-value { font-size: 1.6rem; }
  .slider-display span:first-child { font-size: 3.8rem; }
  .gauge-labels { font-size: 0.62rem; }
  .card-icon { font-size: 1.6rem; }
  .card-title { font-size: 0.85rem; }
  .card-desc { font-size: 0.72rem; }
}

/* Tablet 769–1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { flex-direction: row; }
}

/* Desktop ≥ 1025px */
@media (min-width: 1025px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .trust-inner { flex-direction: row; }
}

/* =============================================================
   SCROLL REVEAL
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity  0.6s var(--ease),
    transform 0.6s var(--ease);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   NAME INPUT (step 2)
   ============================================================= */
.name-inp {
  font-size: 1.3rem !important;
  padding: 14px 20px !important;
  letter-spacing: 0.01em !important;
}

/* =============================================================
   LOSS AVERSION
   ============================================================= */
.loss-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--red);
  border-radius: var(--r-xl);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-xs);
}
.loss-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.loss-icon { font-size: 1.4rem; }
.loss-header h3 { margin: 0; font-size: 1rem; color: var(--text); }

.loss-stats { display: flex; flex-direction: column; gap: 14px; }
.loss-stat-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--red-bg);
  border-radius: var(--r-md);
}
.loss-stat-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.loss-stat-item strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.loss-stat-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.loss-footer {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
}

/* =============================================================
   URGENCY BADGE
   ============================================================= */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22,163,74,0.10);
  border: 1px solid rgba(22,163,74,0.25);
  color: var(--green);
  padding: 7px 16px;
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.urgency-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-green 1.6s ease infinite;
  flex-shrink: 0;
}
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0   rgba(22,163,74,0.5); }
  70%  { box-shadow: 0 0 0 8px rgba(22,163,74,0); }
  100% { box-shadow: 0 0 0 0   rgba(22,163,74,0); }
}

/* =============================================================
   CTA DUAL BUTTONS
   ============================================================= */
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* WhatsApp button */
.btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 12px rgba(37,211,102,0.30);
}
.btn-wa::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.40);
}

/* =============================================================
   FUTURE BOX ADDITIONS
   ============================================================= */
.future-note {
  margin-top: 10px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.50);
  font-style: italic;
}

/* =============================================================
   LEAD FORM ICON
   ============================================================= */
.lead-form-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  line-height: 1;
}
.label-opt {
  font-weight: 400;
  color: var(--text-light);
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
}
.field-error {
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 500;
  margin-top: 3px;
  min-height: 16px;
  display: block;
}
.input-error {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.12) !important;
}
.form-group input { display: block; width: 100%; }

/* Success check icon */
.success-check {
  width: 56px;
  height: 56px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 auto 16px;
  animation: scaleIn 0.5s var(--ease-spring) both;
}

/* =============================================================
   TESTIMONIALS UPGRADE
   ============================================================= */
.testi-result-badge {
  display: inline-flex;
  background: var(--orange-alpha);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.20);
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

/* =============================================================
   PROOF STATS BAR
   ============================================================= */
.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 36px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 0;
  overflow: hidden;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px 40px;
  flex: 1;
  min-width: 140px;
}
.proof-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
}
.proof-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.02em;
}
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* =============================================================
   SEO FAQ SECTION
   ============================================================= */
.seo-section {
  background: var(--white);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.15s var(--ease);
  line-height: 1.45;
}
.faq-q:hover { background: var(--bg); }

.faq-arrow {
  font-size: 1.3rem;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
  font-style: normal;
  line-height: 1;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 400;
}
.faq-a strong { color: var(--text); }

/* =============================================================
   RESPONSIVE ADDITIONS
   ============================================================= */
@media (max-width: 768px) {
  .cta-buttons { flex-direction: column; }
  .btn-xl      { font-size: 1rem; padding: 15px 28px; }
  .proof-stats { flex-direction: column; border-radius: var(--r-lg); }
  .proof-divider { width: 80%; height: 1px; }
  .proof-stat  { padding: 18px 24px; min-width: unset; width: 100%; }
  .loss-stat-item { flex-direction: row; }
  .seo-section { padding: 72px 0; }
  .faq-q { padding: 18px 20px; font-size: 0.88rem; }
  .faq-a p { padding: 0 20px 18px; }
}

@media (min-width: 769px) {
  .cta-buttons .btn-xl { min-width: 220px; }
}
