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

:root {
  --primary:        #E8440A;
  --primary-dark:   #C43508;
  --primary-glow:   rgba(232, 68, 10, 0.25);
  --bg:             #07111F;
  --surface:        #0D1828;
  --surface-2:      #111F35;
  --glass:          rgba(255, 255, 255, 0.04);
  --glass-border:   rgba(255, 255, 255, 0.08);
  --white:          #ffffff;
  --text-muted:     rgba(255, 255, 255, 0.5);
  --text-dim:       rgba(255, 255, 255, 0.7);
  --font:           'Inter', system-ui, -apple-system, sans-serif;
  --radius-sm:      10px;
  --radius:         16px;
  --radius-lg:      24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================================
   AMBIENT ORBS
   ============================================================ */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.orb-orange {
  background: rgba(232, 68, 10, 0.12);
  width: 480px;
  height: 480px;
}
.orb-blue {
  background: rgba(30, 80, 180, 0.10);
  width: 380px;
  height: 380px;
}

/* ============================================================
   PAGE 1 — HERO
   ============================================================ */
.hero {
  min-height: 100dvh;
  background: linear-gradient(160deg, #0C1E38 0%, #07111F 50%, #050D18 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero .orb-1 { top: -80px;  right: -60px;  }
.hero .orb-2 { bottom: -100px; left: -100px; }

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 56px 40px 56px;
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 56px;
  align-items: start;          /* anchors content to top — no vertical overflow */
}

/* ── PHOTO ── */
.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: stretch;
  background: #07111F;
    border-radius: var(--radius-sm);
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  max-width: 420px;
  height: 100%;
  /*min-height: 460px;*/
  /*max-height: 560px;*/
  object-fit: cover;
  object-position: top center;
  border-radius: 0;
  display: block;
  position: relative;
  z-index: 1;
}

/*
  Dark vignette overlay — blends photo's warm bg into the page.
  Gradients are stacked: left edge → right edge → bottom fade.
*/
.hero-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    /*linear-gradient(to right,  #07111F 0%, transparent 36%, transparent 64%, #07111F 100%),*/
    /*linear-gradient(to bottom, #07111F 0%, transparent 12%, transparent 58%, #07111F 100%);*/
    linear-gradient(to bottom, transparent 45%, #07111F 100%)
}

/* Subtle glow beneath photo */
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 80px;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.18;
  z-index: 0;
}

.expert-badge {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E8440A, #C43508);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  z-index: 3;                  /* above vignette overlay */
  box-shadow: 0 4px 24px rgba(232, 68, 10, 0.45);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── HERO CONTENT ── */
.hero-content {
  color: white;
  padding-top: 8px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 68, 10, 0.10);
  border: 1px solid rgba(232, 68, 10, 0.25);
  color: #FF7348;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF7348;
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1;   transform: scale(1);   }
  50%       { opacity: 0.4; transform: scale(0.65); }
}

.hero-title {
  font-size: clamp(1.5rem, 2.9vw, 2.2rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: white;
  margin-bottom: 28px;
}

.hero-title span { color: var(--primary); }

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-left: 3px solid rgba(232, 68, 10, 0.55);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.stat-number {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 5px;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.3;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* ── BENEFITS ── */
.hero-benefits {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.97rem;
  color: var(--text-dim);
  font-weight: 450;
}

.hero-benefits li .check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8440A, #C43508);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(232, 68, 10, 0.35);
}

.hero-benefits li .check svg {
  width: 11px;
  height: 11px;
  stroke: white;
  stroke-width: 3;
  fill: none;
}

/* ── CTA BUTTON ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #E8440A 0%, #C43508 100%);
  color: white;
  border: none;
  padding: 17px 36px;
  border-radius: var(--radius-sm);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  box-shadow:
    0 8px 32px rgba(232, 68, 10, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.15);
  width: 100%;
  max-width: 380px;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn-primary:hover::after  { opacity: 1; }
.btn-primary:hover         { transform: translateY(-2px); box-shadow: 0 14px 42px rgba(232,68,10,0.5), inset 0 1px 0 rgba(255,255,255,0.15); }
.btn-primary:active        { transform: translateY(0); }

.btn-icon { font-size: 1rem; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 10, 20, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal-card {
  background: #0f1c30;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  width: 100%;
  max-width: 440px;
  position: relative;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255,255,255,0.05);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}

.modal-overlay.open .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}

.modal-close:hover {
  background: rgba(255,255,255,0.12);
  color: white;
}

.modal-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.modal-card > p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 28px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 14px;
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-group input {
  width: 100%;
  padding: 15px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 1rem;
  font-family: var(--font);
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input::placeholder { color: rgba(255,255,255,0.22); }

.form-group input:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(232, 68, 10, 0.15);
}

.btn-submit {
  width: 100%;
  padding: 17px;
  border-radius: var(--radius-sm);
  border: none;
  background: linear-gradient(135deg, #E8440A 0%, #C43508 100%);
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 28px rgba(232, 68, 10, 0.4),
              inset 0 1px 0 rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: 0.01em;
}

.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 36px rgba(232, 68, 10, 0.5),
              inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-submit.loading {
  opacity: 0.65;
  pointer-events: none;
}

.form-trust {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  letter-spacing: 0.01em;
}

/* ============================================================
   PAGE 2 — VIDEO
   ============================================================ */
.video-page {
  min-height: 100dvh;
  background: linear-gradient(160deg, #0C1E38 0%, #07111F 55%, #050D18 100%);
  padding: 56px 20px 80px;
  position: relative;
  overflow: hidden;
}

.video-page .orb-1 { top: -80px;  right: -60px;  }
.video-page .orb-2 { bottom: -80px; left: -80px; }

.video-page-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
}

.video-header {
  text-align: center;
  margin-bottom: 32px;
}

.tag {
  display: inline-block;
  background: rgba(232, 68, 10, 0.10);
  border: 1px solid rgba(232, 68, 10, 0.25);
  color: #FF7348;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.video-header h2 {
  font-size: clamp(1.2rem, 3.2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
  color: white;
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: -0.015em;
}

/* ── Expert Card ── */
.expert-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(232,68,10,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(232, 68, 10, 0.18);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.expert-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(232,68,10,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.expert-card-photo { position: relative; flex-shrink: 0; }

.expert-card-photo img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2.5px solid var(--primary);
  box-shadow: 0 0 0 4px rgba(232,68,10,0.18), 0 8px 24px rgba(0,0,0,0.4);
}

.expert-verified {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  background: var(--primary);
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.expert-verified svg { width: 10px; height: 10px; }

.expert-card-body { flex: 1; min-width: 0; }
.expert-card-top  { margin-bottom: 12px; }

.expert-name {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.expert-title-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.expert-chips { display: flex; flex-wrap: wrap; gap: 6px; }

.chip {
  background: rgba(232,68,10,0.10);
  border: 1px solid rgba(232,68,10,0.20);
  color: #FF7348;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

/* ── Steps ── */
.vp-steps {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 0 4px;
}

.vp-step {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.32;
  transition: opacity 0.2s;
}

.vp-step.active { opacity: 1; }

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

.vp-step.active .step-num {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 0 0 4px rgba(232,68,10,0.2);
}

.step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}

.vp-step.active .step-label { color: white; }

.vp-step-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(232,68,10,0.35), rgba(255,255,255,0.07));
  margin: 0 10px;
}

/* ── Video wrapper ── */
.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(232,68,10,0.15),
    0 24px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(232,68,10,0.10);
  background: #000;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ── CTA block ── */
.cta-block {
  margin-top: 40px;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, rgba(232,68,10,0.45) 0%, rgba(255,255,255,0.05) 50%, rgba(232,68,10,0.12) 100%);
}

.cta-block-inner {
  background: linear-gradient(135deg, #0f1c2e 0%, #0a1525 100%);
  border-radius: calc(var(--radius-lg) - 2px);
  padding: 40px 36px;
  display: flex;
  gap: 48px;
  align-items: center;
}

.cta-left { flex: 1; }

.fire-tag { font-size: 2rem; margin-bottom: 12px; display: block; }

.cta-block h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.cta-triggers {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.cta-triggers li {
  color: var(--text-dim);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-triggers li::before {
  content: '✓';
  display: inline-flex;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E8440A, #C43508);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(232,68,10,0.35);
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}

.btn-cta-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  border: none;
  background: linear-gradient(135deg, #E8440A 0%, #C43508 100%);
  color: white;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 8px 32px rgba(232,68,10,0.45), inset 0 1px 0 rgba(255,255,255,0.15);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-cta-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 44px rgba(232,68,10,0.55), inset 0 1px 0 rgba(255,255,255,0.15);
}

.btn-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--glass-border);
  background: var(--glass);
  color: var(--text-dim);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-cta-secondary:hover {
  border-color: rgba(255,255,255,0.22);
  color: white;
  background: rgba(255,255,255,0.07);
}

.cta-hint {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.02em;
}

/* ── Responsive — video page ── */
@media (max-width: 700px) {
  .expert-card         { flex-direction: column; text-align: center; }
  .expert-chips        { justify-content: center; }
  .cta-block-inner     { flex-direction: column; gap: 28px; }
  .cta-right           { min-width: unset; width: 100%; }
  .cta-left            { text-align: center; }
  .cta-triggers li     { justify-content: flex-start; text-align: left; }
  .vp-steps            { justify-content: center; }
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 500;
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 50px;
  padding: 4px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  transition: all 0.2s ease;
  font-family: var(--font);
}

.lang-btn:hover  { color: rgba(255,255,255,0.8); }

.lang-btn.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 10px rgba(232,68,10,0.4);
}

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(90px);
  background: rgba(20, 45, 20, 0.95);
  border: 1px solid rgba(100, 200, 100, 0.25);
  color: #80e080;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
}

.toast.show { transform: translateX(-50%) translateY(0); }

/* ============================================================
   RESPONSIVE — HERO (mobile)
   ============================================================ */
@media (max-width: 780px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 48px 20px 72px;
    text-align: center;
    align-items: start;
  }

  /* Photo on mobile: full-width banner with bottom-only vignette */
  .hero-photo-wrap {
    order: -1;
    margin-bottom: 40px;
    align-self: auto;
      border-radius:  var(--radius-lg);
  }

  .hero-photo {
    max-width: 100%;
    width: 100%;
    min-height: 380px;
    max-height: 560px;
    border-radius: var(--radius-lg);
    object-position: top center;
  }

  /* Mobile vignette: only bottom fade (sides are now full-width) */
  .hero-photo-wrap::after {
    background: linear-gradient(to bottom, transparent 45%, #07111F 100%);
  }

  .expert-badge {
    bottom: 16px;
    font-size: 0.7rem;
    padding: 8px 16px;
  }

  .stats-row        { margin-bottom: 24px; }
  .hero-benefits li { justify-content: flex-start; text-align: left; }
  .btn-primary      { max-width: 100%; }
}

@media (max-width: 420px) {
  .hero-inner   { padding: 36px 16px 64px; }
  .stat-number  { font-size: 1.55rem; }
  .hero-title   { font-size: 1.45rem; }
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  margin: 40px 0;
}
