:root {
  --white: #FFFFFF;
  --gray-50: #F8F9FB;
  --gray-100: #F0F2F5;
  --gray-200: #E2E6EC;
  --gray-400: #9BA3AE;
  --gray-600: #5C6370;
  --gray-800: #2D3139;
  --gray-900: #1A1D23;
  --teal: #1B6B6B;
  --teal-light: #2A8585;
  --teal-pale: #E8F4F4;
  --green: #1D5C3A;
  --green-light: #276B46;
  --green-pale: #E8F5EE;
  --orange: #E8622A;
  --orange-light: #F07840;
  --orange-pale: #FDF0EA;
  --gold: #C8902A;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Sora', sans-serif; line-height: 1.2; }

/* ========== NAV ========== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  padding: 0 24px;
  height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 20px; color: var(--teal); letter-spacing: -0.5px; }
.nav-logo span { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: white; border: none; cursor: pointer;
  padding: 10px 22px; border-radius: 100px; font-size: 14px; font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,98,42,0.35); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  padding: 100px 24px 80px;
  display: flex; align-items: center;
  background: linear-gradient(160deg, #F8FCFC 0%, #FFFFFF 40%, #FDF6F2 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(27,107,107,0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,98,42,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-pale); border: 1px solid rgba(39,107,70,0.2);
  color: var(--green); padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; margin-bottom: 28px;
}
.hero-badge::before { content: '🎁'; font-size: 15px; }
.hero-title {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800; color: var(--gray-900);
  letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 24px; max-width: 780px;
}
.hero-title em { font-style: normal; color: var(--teal); }
.hero-title .accent { color: var(--orange); }
.hero-sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--gray-600); max-width: 560px;
  margin-bottom: 40px; line-height: 1.65; font-weight: 400;
}
.hero-sub strong { color: var(--gray-800); font-weight: 600; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 48px; }
.btn-primary {
  background: var(--orange); color: white; border: none; cursor: pointer;
  padding: 18px 36px; border-radius: 100px; font-size: 17px; font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  box-shadow: 0 8px 32px rgba(232,98,42,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; display: inline-block;
  animation: pulse-btn 2.5s infinite;
}
@keyframes pulse-btn {
  0%,100% { box-shadow: 0 8px 32px rgba(232,98,42,0.35); }
  50% { box-shadow: 0 12px 48px rgba(232,98,42,0.55); }
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--teal); border: 2px solid var(--teal);
  padding: 16px 28px; border-radius: 100px; font-size: 16px; font-weight: 600;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: background 0.2s, color 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-secondary:hover { background: var(--teal); color: white; }

.hero-trust { display: flex; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gray-600); }
.trust-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* VSL placeholder */
.hero-vsl {
  margin-top: 64px;
  background: var(--gray-900);
  border-radius: var(--radius-xl);
  aspect-ratio: 16/9; max-width: 820px; margin-left: auto; margin-right: auto;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,0.05);
}
.vsl-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(27,107,107,0.8), rgba(29,92,58,0.9));
}
.vsl-play {
  position: relative; z-index: 2;
  width: 80px; height: 80px; background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: transform 0.2s;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.vsl-play:hover { transform: scale(1.1); }
.vsl-play::after { content: '▶'; font-size: 28px; color: var(--teal); margin-left: 4px; }
.vsl-label {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 2; color: white; font-size: 14px; opacity: 0.8; white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}

/* Timer */
.timer-bar {
  background: var(--gray-900);
  color: white; text-align: center;
  padding: 12px 24px;
  font-size: 15px; font-weight: 500;
}
.timer-bar strong { color: var(--orange); font-size: 18px; font-weight: 700; }
#countdown { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 22px; color: var(--orange); }

/* ========== SECTION BASICS ========== */
section { padding: 96px 24px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; color: var(--gray-900);
  letter-spacing: -1px; margin-bottom: 16px;
}
.section-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--gray-600); max-width: 580px;
  line-height: 1.65;
}

/* ========== PROBLEM ========== */
.problem { background: var(--gray-50); }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 56px; }
.problem-card {
  background: white; border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid var(--gray-200); transition: transform 0.2s, box-shadow 0.2s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.problem-header{ display: flex; align-items: center; }
.problem-icon { font-size: 36px; }
.problem-number { font-family: 'Sora', sans-serif; font-size: 42px; font-weight: 800; color: var(--orange); line-height: 1; margin-left: 15px }
.problem-label { font-size: 15px; color: var(--gray-600); line-height: 1.5; }
.problem-statement {
  background: var(--gray-900); color: white;
  border-radius: var(--radius-lg); padding: 48px;
  text-align: center; margin-top: 48px;
}
.problem-statement h3 { font-size: clamp(22px, 3vw, 36px); font-weight: 800; margin-bottom: 16px; line-height: 1.3; }
.problem-statement p { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; }
.problem-statement .highlight { color: var(--orange); }

/* ========== CALCULATOR ========== */
.calculator { background: white; }
.calc-box {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl); padding: clamp(32px, 5vw, 56px);
  max-width: 780px; margin: 48px auto 0;
}
.calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
@media (max-width: 600px) { .calc-row { grid-template-columns: 1fr; gap: 20px; } }
.calc-field label { display: block; font-size: 14px; font-weight: 600; color: var(--gray-600); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.calc-field input {
  width: 100%; padding: 16px 20px;
  border: 2px solid var(--gray-200); border-radius: var(--radius);
  font-size: 24px; font-weight: 700; font-family: 'Sora', sans-serif;
  color: var(--gray-900); background: white;
  transition: border-color 0.2s;
  -moz-appearance: textfield;
}
.calc-field input::-webkit-outer-spin-button, .calc-field input::-webkit-inner-spin-button { -webkit-appearance: none; }
.calc-field input:focus { outline: none; border-color: var(--teal); }
.calc-results { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 600px) { .calc-results { grid-template-columns: 1fr; } }
.calc-result-card {
  background: white; border-radius: var(--radius);
  padding: 24px 20px; text-align: center;
  border: 2px solid var(--gray-200);
  transition: border-color 0.3s;
}
.calc-result-card.active { border-color: var(--orange); }
.calc-result-period { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 8px; }
.calc-result-amount { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: var(--orange); line-height: 1; }
.calc-result-label { font-size: 13px; color: var(--gray-600); margin-top: 6px; }
.calc-cta-note { text-align: center; margin-top: 28px; font-size: 16px; color: var(--gray-600); }
.calc-cta-note strong { color: var(--gray-900); }

/* ========== 4BLOCK ========== */
.fourblock { background: linear-gradient(160deg, #F0F8F8 0%, #FFFFFF 100%); }
.blocks-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0; margin-top: 64px; position: relative; }
.blocks-grid::before {
  content: '';
  position: absolute; top: 50%; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--green));
  transform: translateY(-50%); z-index: 0;
}
@media (max-width: 768px) {
  .blocks-grid::before { display: none; }
  .blocks-grid { gap: 16px; }
}
.block-card {
  background: white; border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center;
  border: 2px solid var(--gray-200);
  position: relative; z-index: 1;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  margin: 0 8px;
  cursor: default;
}
.block-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.block-num {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800;
  margin: 0 auto 20px; color: white;
}
.block-card:nth-child(1) .block-num { background: var(--teal); }
.block-card:nth-child(2) .block-num { background: var(--teal-light); }
.block-card:nth-child(3) .block-num { background: var(--green-light); }
.block-card:nth-child(4) .block-num { background: var(--green); }
.block-icon { font-size: 36px; margin-bottom: 16px; }
.block-name { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 800; color: var(--gray-900); margin-bottom: 8px; }
.block-desc { font-size: 14px; color: var(--gray-600); line-height: 1.6; }
.block-tag {
  display: inline-block; margin-top: 16px;
  background: var(--teal-pale); color: var(--teal);
  padding: 4px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
}

/* ========== CASE STUDY ========== */
.case-study { background: var(--gray-900); color: white; }
.case-study .section-label { color: var(--orange); }
.case-study .section-title { color: white; }
.case-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-top: 56px; }
@media (max-width: 768px) { .case-inner { grid-template-columns: 1fr; } }
.case-before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.case-col { background: rgba(255,255,255,0.05); border-radius: var(--radius); padding: 28px; }
.case-col.after { background: rgba(27,107,107,0.2); border: 1px solid rgba(27,107,107,0.4); }
.case-col-label { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; opacity: 0.6; }
.case-col.after .case-col-label { color: #5FD4A8; opacity: 1; }
.case-point { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 14px; color: rgba(255,255,255,0.7); }
.case-point.positive { color: #5FD4A8; }
.case-story { font-size: 17px; color: rgba(255,255,255,0.8); line-height: 1.75; }
.case-story strong { color: white; }
.case-quote {
  margin-top: 28px; padding: 24px;
  background: rgba(255,255,255,0.05); border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 16px; font-style: italic; color: rgba(255,255,255,0.85);
}
.case-vsl {
  background: rgba(255,255,255,0.08); border-radius: var(--radius-lg);
  aspect-ratio: 9/16; max-width: 320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
}

/* ========== COMPARISON ========== */
.comparison { background: var(--gray-50); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 56px; }
@media (max-width: 700px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-col { border-radius: var(--radius-lg); overflow: hidden; }
.compare-header { padding: 28px 32px; font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 700; }
.compare-col.without .compare-header { background: #F5E8E8; color: #8B2020; }
.compare-col.with .compare-header { background: var(--teal-pale); color: var(--teal); }
.compare-body { background: white; border: 1px solid var(--gray-200); padding: 28px 32px; }
.compare-col.with .compare-body { border-color: rgba(27,107,107,0.25); border-width: 2px; }
.compare-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; font-size: 15px; }
.compare-item .icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.compare-item .text { color: var(--gray-700); }

/* ========== PRICING ========== */
.pricing { background: white; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; } }
.price-card {
  border-radius: var(--radius-xl); padding: 40px 32px;
  border: 2px solid var(--gray-200);
  transition: transform 0.2s; position: relative;
  background: white;
}
.price-card:hover { transform: translateY(-4px); }
.price-card.featured {
  border-color: var(--teal); background: white;
  box-shadow: 0 0 0 4px rgba(27,107,107,0.08), var(--shadow-lg);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: white; font-size: 12px; font-weight: 700;
  padding: 6px 20px; border-radius: 100px; letter-spacing: 1px; text-transform: uppercase;
  white-space: nowrap;
}
.free-badge {
  background: var(--green-pale); color: var(--green); border: 1px solid rgba(39,107,70,0.25);
  font-size: 12px; font-weight: 700; padding: 4px 12px; border-radius: 100px;
  display: inline-block; margin-bottom: 20px;
}
.plan-name { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 8px; }
.plan-price { font-family: 'Sora', sans-serif; font-size: 52px; font-weight: 800; color: var(--gray-900); line-height: 1; }
.plan-price sup { font-size: 24px; vertical-align: super; }
.plan-price sub { font-size: 16px; font-weight: 400; color: var(--gray-400); }
.plan-desc { font-size: 15px; color: var(--gray-600); margin: 16px 0 28px; line-height: 1.5; }
.plan-divider { height: 1px; background: var(--gray-200); margin-bottom: 24px; }
.plan-feature { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 14px; color: var(--gray-700); }
.plan-feature .check { color: var(--teal); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.plan-cta {
  display: block; text-align: center; margin-top: 32px;
  padding: 16px; border-radius: 100px; font-size: 15px; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.plan-cta.outline { border: 2px solid var(--gray-200); color: var(--gray-700); background: transparent; }
.plan-cta.outline:hover { border-color: var(--teal); color: var(--teal); }
.plan-cta.filled { background: var(--teal); color: white; border: none; box-shadow: 0 6px 20px rgba(27,107,107,0.3); }
.plan-cta.filled:hover { background: var(--teal-light); transform: translateY(-1px); }
.plan-cta.orange { background: var(--orange); color: white; border: none; box-shadow: 0 6px 20px rgba(232,98,42,0.35); }
.plan-cta.orange:hover { background: var(--orange-light); }

/* ========== GROWTH SIMULATOR ========== */
.simulator { background: linear-gradient(160deg, #F0F8F8 0%, #F8F9FB 100%); }
.sim-box {
  background: white; border: 1px solid var(--gray-200); border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 56px); max-width: 700px; margin: 48px auto 0;
  box-shadow: var(--shadow-md);
}
.sim-label { font-size: 14px; font-weight: 600; color: var(--gray-600); margin-bottom: 20px; }
.slider-wrap { position: relative; margin-bottom: 12px; }
input[type=range] {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 6px; border-radius: 3px; background: var(--gray-200);
  outline: none; cursor: pointer;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--teal); cursor: pointer;
  box-shadow: 0 2px 8px rgba(27,107,107,0.4);
  transition: transform 0.15s;
}
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.2); }
.slider-val {
  text-align: center; font-family: 'Sora', sans-serif;
  font-size: 48px; font-weight: 800; color: var(--teal);
  margin-bottom: 4px; line-height: 1;
}
.slider-caption { text-align: center; font-size: 14px; color: var(--gray-400); margin-bottom: 36px; }
.sim-results { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 28px; }
.sim-result {
  background: var(--gray-50); border-radius: var(--radius); padding: 24px;
  text-align: center; border: 1px solid var(--gray-200);
}
.sim-result .label { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 10px; }
.sim-result .value { font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 800; color: var(--green); line-height: 1; }
.sim-assumption { text-align: center; font-size: 13px; color: var(--gray-400); margin-top: 20px; }

/* ========== TESTIMONIALS ========== */
.testimonials { background: white; }
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
@media (max-width: 768px) { .video-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .video-grid { grid-template-columns: 1fr; } }
.video-card {
  background: var(--gray-900); border-radius: var(--radius-lg);
  aspect-ratio: 9/16; display: flex; align-items: flex-end;
  padding: 20px; position: relative; overflow: hidden; cursor: pointer;
  transition: transform 0.2s; max-height: 360px;
}
.video-card:hover { transform: scale(1.02); }
.video-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0,0,0,0.85));
}
.video-thumb {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-size: 40px;
}
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; background: rgba(255,255,255,0.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
}
.video-play::after { content: '▶'; font-size: 18px; color: var(--teal); margin-left: 3px; }
.video-card:hover .video-play { transform: translate(-50%, -50%) scale(1.15); }
.video-info { position: relative; z-index: 1; }
.video-name { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: white; }
.video-trade { font-size: 12px; color: rgba(255,255,255,0.6); }

/* ========== QUIZ ========== */
.quiz { background: var(--gray-50); }
.quiz-box {
  background: white; border-radius: var(--radius-xl); padding: clamp(32px, 5vw, 56px);
  max-width: 680px; margin: 48px auto 0; border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-md);
}
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.quiz-q { font-family: 'Sora', sans-serif; font-size: clamp(20px, 3vw, 26px); font-weight: 700; color: var(--gray-900); margin-bottom: 8px; }
.quiz-sub { font-size: 15px; color: var(--gray-600); margin-bottom: 32px; }
.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quiz-opt {
  padding: 20px 24px; border-radius: var(--radius); border: 2px solid var(--gray-200);
  cursor: pointer; font-size: 16px; font-weight: 600; text-align: center;
  transition: all 0.2s; background: var(--gray-50); color: var(--gray-700);
  font-family: 'DM Sans', sans-serif;
}
.quiz-opt:hover { border-color: var(--teal); background: var(--teal-pale); color: var(--teal); }
.quiz-opt.yes:hover { border-color: #D44; background: #FEF2F2; color: #D44; }
.quiz-progress { height: 6px; background: var(--gray-200); border-radius: 3px; margin-bottom: 28px; overflow: hidden; }
.quiz-progress-bar { height: 100%; background: var(--teal); border-radius: 3px; transition: width 0.4s ease; }
.quiz-counter { font-size: 13px; color: var(--gray-400); margin-bottom: 10px; }
.quiz-result { text-align: center; display: none; }
.quiz-result.active { display: block; animation: fadeIn 0.4s ease; }
.quiz-score-ring {
  width: 120px; height: 120px; margin: 0 auto 24px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 800;
}
.quiz-result-title { font-family: 'Sora', sans-serif; font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.quiz-result-text { font-size: 16px; color: var(--gray-600); max-width: 440px; margin: 0 auto 28px; line-height: 1.6; }

/* ========== FAQ ========== */
.faq { background: white; }
.faq-list { max-width: 720px; margin: 56px auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  width: 100%; text-align: left; padding: 24px 0;
  background: none; border: none; cursor: pointer;
  font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 600; color: var(--gray-900);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .arrow { font-size: 20px; color: var(--gray-400); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q .arrow { transform: rotate(45deg); }
.faq-a {
  font-size: 16px; color: var(--gray-600); line-height: 1.7;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }

/* ========== GUARANTEE ========== */
.guarantee { background: var(--teal-pale); }
.guarantee-box { text-align: center; max-width: 640px; margin: 0 auto; }
.guarantee-icon { font-size: 72px; margin-bottom: 24px; }
.guarantee-title { font-family: 'Sora', sans-serif; font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; color: var(--gray-900); margin-bottom: 16px; }
.guarantee-text { font-size: 18px; color: var(--gray-600); line-height: 1.7; }

/* ========== FINAL CTA ========== */
.final-cta {
  background: var(--gray-900); color: white; text-align: center;
  padding: 120px 24px;
}
.final-cta-label { font-size: 12px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); margin-bottom: 24px; }
.final-cta-title { font-size: clamp(28px, 5vw, 58px); font-weight: 800; line-height: 1.15; margin-bottom: 24px; letter-spacing: -1px; }
.final-cta-sub { font-size: 20px; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto 48px; line-height: 1.65; }
.final-cta-sub strong { color: var(--orange); }
.final-cta .btn-primary { font-size: 19px; padding: 20px 48px; }

/* ========== FOOTER ========== */
footer {
  background: var(--gray-900); border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 24px; text-align: center; color: rgba(255,255,255,0.35); font-size: 14px;
}
footer a { color: rgba(255,255,255,0.5); text-decoration: none; }

/* ========== SCROLL ANIMATIONS ========== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ========== STICKY CTA MOBILE ========== */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: white; border-top: 1px solid var(--gray-200);
  padding: 14px 20px; display: none;
}
@media (max-width: 768px) { .sticky-cta { display: block; } }
.sticky-cta a { display: block; text-align: center; background: var(--orange); color: white; padding: 16px; border-radius: var(--radius); font-size: 17px; font-weight: 700; text-decoration: none; box-shadow: 0 4px 20px rgba(232,98,42,0.4); }

/* ========== SUPPORT PAGE ========== */
#support-hero { min-height: 60vh; background: linear-gradient(160deg, #F8FCFC 0%, #FFFFFF 100%); }
#support-hero .hero-badge { background: var(--orange-pale); color: var(--orange); border: 1px solid rgba(232,98,42,0.2); }
#support-hero .hero-badge::before { content: '💬'; }

#support-faq { background: var(--gray-50); }
#support-form { background: var(--gray-50); padding-top: 60px; }
#support-form .section-inner { max-width: 680px; margin: 0 auto; }
#support-form .section-title { text-align: center; margin-bottom: 32px; }

.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; }
.form-group input,
.form-group textarea {
  width: 100%; padding: 16px 20px;
  border: 2px solid var(--gray-200); border-radius: var(--radius);
  font-size: 16px; font-family: 'DM Sans', sans-serif;
  background: white; color: var(--gray-900);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group textarea { resize: vertical; min-height: 120px; }

#support-form button.btn-primary { width: 100%; font-size: 18px; padding: 18px; }

#support-faq { background: var(--gray-50); padding-top: 80px; }
#online-chat { background: linear-gradient(160deg, #F0F8F8 0%, #F8F9FB 100%); padding-top: 80px; }

/* WHATSAPP WIDGET (fixed override) */
/*.whatsapp-widget {
  position: fixed;
  bottom: 25px;
  left: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
}
.whatsapp-widget a { display: block; }
.whatsapp-widget img { width: 60px; height: auto; }

.whatsapp-widget span {
  background: #25D366;
  color: #1c1e21;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  border: 1px solid #1C1E21;
  position: relative;
  transition: color .33s linear .5s, border-color ease-out .5s, background-color .33s linear 0s;
  cursor: pointer;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: pre;
}

.whatsapp-widget:hover span {
  background-color: #1c1e21;
  color: #fff;
  transition-delay: .5s;
}

.whatsapp-widget span:after {
  background-color: #1c1e21;
  border-radius: 50%;
  content: "";
  height: 167px;
  min-width: 167px;
  position: absolute;
  top: 0;
  transform: scale(1) translateY(68px);
  transition: transform 1s cubic-bezier(.66, 0, .34, 1);
  width: 100%;
  z-index: -1;
}

.whatsapp-widget:hover span:after {
  transform: scale(1.47) translateY(0);
}*/

/* Scroll animations (reuse from index) */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

  /* ========== FOOTER ========== */
  footer {
    background: var(--gray-900); border-top: 1px solid rgba(255,255,255,0.06);
    padding: 48px 24px; text-align: center; color: rgba(255,255,255,0.35); font-size: 14px;
  }
  footer a { color: rgba(255,255,255,0.5); text-decoration: none; }

  /* ========== STICKY CTA MOBILE ========== */
  .sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
    background: white; border-top: 1px solid var(--gray-200);
    padding: 14px 20px; display: none;
  }
  @media (max-width: 768px) { .sticky-cta { display: block; } }
  .sticky-cta a { display: block; text-align: center; background: var(--orange); color: white; padding: 16px; border-radius: var(--radius); font-size: 17px; font-weight: 700; text-decoration: none; box-shadow: 0 4px 20px rgba(232,98,42,0.4); }

  /* ========== PHONE MOCKUP WIDGET ========== */
  .phone-demo {
    background: var(--gray-900); border-radius: 36px; overflow: hidden;
    border: 6px solid rgba(255,255,255,0.08); box-shadow: var(--shadow-xl);
    max-width: 300px; margin: 0 auto;
  }
  .phone-header { background: rgba(255,255,255,0.05); padding: 20px 20px 12px; display: flex; align-items: center; gap: 12px; }
  .phone-avatar { width: 36px; height: 36px; background: var(--teal); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 16px; }
  .phone-contact-name { font-size: 13px; font-weight: 700; color: white; }
  .phone-status { font-size: 11px; color: rgba(255,255,255,0.4); }
  .phone-msgs { padding: 16px; display: flex; flex-direction: column; gap: 10px; min-height: 200px; }
  .msg { max-width: 85%; font-size: 13px; line-height: 1.4; padding: 10px 14px; border-radius: 16px; }
  .msg.in { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); border-radius: 16px 16px 16px 4px; }
  .msg.out { background: var(--teal); color: white; margin-left: auto; border-radius: 16px 16px 4px 16px; }
  .msg-time { font-size: 10px; opacity: 0.5; margin-top: 4px; }
  .typing { display: flex; gap: 4px; align-items: center; padding: 12px 16px; }
  .typing span { width: 7px; height: 7px; background: rgba(255,255,255,0.3); border-radius: 50%; animation: bounce 1.2s infinite; }
  .typing span:nth-child(2) { animation-delay: 0.2s; }
  .typing span:nth-child(3) { animation-delay: 0.4s; }
  @keyframes bounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px)} }

.whatsapp-widget{
    position:fixed;
    bottom:25px;
    right:25px;
    display:flex;
    align-items:center;
    gap:10px;
    z-index:1000;
}

.whatsapp-widget span{
    background: #25D366;
    color: #1c1e21;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-family: sans-serif;
    border: 1px solid #1C1E21;
    overflow: hidden;
    position: relative;
    transition: color .33s linear .5s, border-color ease-out .5s, background-color .33s linear 0s;
    white-space: pre;
    cursor: pointer;
    z-index: 1;
    align-items: center;
    display: inline-flex;
    justify-content: center;
}

.whatsapp-widget img{
    width:60px;
}

.whatsapp-widget:hover span{
    background-color: #1c1e21;
    color: #fff;
    transition-delay: .5s
}
.whatsapp-widget span:after {
    background-color: #1c1e21;
    border-radius: 50%;
    content: "";
    height: 167px;
    min-width: 167px;
    position: absolute;
    top: 0;
    transform: scale(1) translateY(68px);
    transition: transform 1s cubic-bezier(.66, 0, .34, 1);
    width: 100%;
    z-index: -1;
}
.whatsapp-widget:hover span:after {
    transform: scale(1.47) translateY(0)
}

@media (max-width: 768px) { .sim-results { grid-template-columns: 1fr; } nav { height: 90px; } .nav-buttons { text-align: end; } .whatsapp-widget { bottom: 120px } }