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

:root {
  --coal: #0f0f0d;
  --bark: #1c1a14;
  --amber: #e8a230;
  --amber-light: #f5c05a;
  --cream: #f5f0e8;
  --mist: #e8e2d6;
  --slate: #6b6558;
  --white: #ffffff;
  --danger: #c94f2a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--coal);
  color: var(--cream);
  overflow-x: hidden;
}

/* ── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 24px 80px;
  overflow: hidden;
}

.hero {
  /* Fallback if the video element fails entirely */
  background: url('images/hero-poster.jpg') center / cover no-repeat var(--coal);
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(15,15,13,0.78) 0%, rgba(15,15,13,0.7) 50%, rgba(15,15,13,0.85) 100%),
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(232,162,48,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(201,79,42,0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto;
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,162,48,0.15);
  border: 1px solid rgba(232,162,48,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 28px;
  animation: fadeDown 0.6s ease both;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 10vw, 96px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 12px;
  animation: fadeDown 0.6s 0.1s ease both;
}

h1 em {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  color: var(--amber);
  font-size: 48px;
}

.hero-sub {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 300;
  color: var(--mist);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 40px;
  animation: fadeDown 0.6s 0.2s ease both;
}

.hero-sub strong { color: var(--white); font-weight: 600; }

.stats-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeDown 0.6s 0.3s ease both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--amber);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.hero-divider {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 0 16px;
  align-self: center;
}

/* ── CTA BUTTON ───────────────────────────── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--amber);
  color: var(--coal);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 18px 36px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(232,162,48,0.3);
  animation: fadeDown 0.6s 0.4s ease both;
}

.cta-btn:hover {
  background: var(--amber-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(232,162,48,0.45);
}

.cta-btn svg { flex-shrink: 0; }

.cta-note {
  margin-top: 14px;
  font-size: 13px;
  color: var(--slate);
  animation: fadeDown 0.6s 0.5s ease both;
}

/* ── SECTION COMMON ───────────────────────── */
section {
  padding: 80px 24px;
}

.inner {
  max-width: 780px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 6vw, 60px);
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 24px;
}

/* ── PROBLEM ──────────────────────────────── */
.problem {
  background: var(--bark);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  margin-top: 48px;
}

.problem-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 28px 24px;
  transition: background 0.2s;
}

.problem-card:hover { background: rgba(255,255,255,0.055); }

.problem-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.problem-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.6;
}

/* ── OFFER ────────────────────────────────── */
.offer-box {
  border: 1px solid rgba(232,162,48,0.25);
  background: linear-gradient(135deg, rgba(232,162,48,0.06) 0%, transparent 60%);
  padding: 40px;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

.offer-box::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--amber);
}

.offer-box h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--amber);
  margin-bottom: 16px;
}

.offer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--mist);
  line-height: 1.5;
}

.offer-list li::before {
  content: '✓';
  color: var(--amber);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.offer-list li strong { color: var(--white); }

@media (max-width: 600px) {
  .offer-list li strong { display: block; margin-bottom: 4px; }
}

/* ── FORM SECTION ─────────────────────────── */
.form-section {
  background: var(--bark);
}

.form-card {
  background: #161410;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px 40px;
  border-radius: 2px;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.step-label {
  display: block;
  text-align: right;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
  margin-bottom: 14px;
}

.form-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 36px;
}

.form-progress-bar {
  height: 3px;
  flex: 1;
  border-radius: 2px;
  background: rgba(255,255,255,0.1);
}

.form-progress-bar.active { background: var(--amber); }

.question-block {
  margin-bottom: 32px;
  display: none;
}

.question-block.active { display: block; }

.question-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 8px;
}

.question-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(20px, 3.5vw, 26px);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.3;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.option-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.18s;
  text-align: left;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.option-btn:hover {
  border-color: rgba(232,162,48,0.5);
  background: rgba(232,162,48,0.07);
}

.option-btn.selected {
  border-color: var(--amber);
  background: rgba(232,162,48,0.12);
  color: var(--white);
}

.option-icon { font-size: 20px; flex-shrink: 0; }

/* Step 2 — contact form */
.contact-form { display: none; }
.contact-form.active { display: block; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 520px) {
  .form-row { grid-template-columns: 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.field input, .field select {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 14px 16px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.field input:focus, .field select:focus {
  border-color: var(--amber);
  background: rgba(232,162,48,0.04);
}

.field input::placeholder { color: var(--slate); }

.field select option { background: #1c1a14; color: var(--cream); }

.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--amber);
  color: var(--coal);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 6px 24px rgba(232,162,48,0.25);
}

.submit-btn:hover {
  background: var(--amber-light);
  transform: translateY(-1px);
}

.form-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--slate);
  margin-top: 16px;
  line-height: 1.6;
}

/* Form nav buttons */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
}

.btn-next {
  background: var(--amber);
  color: var(--coal);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
  display: flex; align-items: center; gap: 8px;
}

.btn-next:disabled { opacity: 0.35; cursor: not-allowed; }
.btn-next:not(:disabled):hover { background: var(--amber-light); }

.btn-back {
  background: transparent;
  border: none;
  color: var(--slate);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 0;
  transition: color 0.2s;
}

.btn-back:hover { color: var(--cream); }

.question-counter {
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
}

/* ── THANK YOU ────────────────────────────── */
.thankyou {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 0 0;
}

.thankyou.active { display: flex; }

.check-circle {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(232,162,48,0.15);
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 24px;
}

.thankyou h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--white);
  margin-bottom: 12px;
}

.thankyou p {
  font-size: 16px;
  color: var(--mist);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 36px;
}

.calendar-embed-placeholder {
  width: 100%;
  max-width: 560px;
  height: 80px;
  background: rgba(232,162,48,0.08);
  border: 1.5px dashed rgba(232,162,48,0.35);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.05em;
}

/* ── TRUST STRIP ──────────────────────────── */
.trust-strip {
  background: var(--coal);
  padding: 32px 24px;
}

.trust-items {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 22px 16px;
  background: linear-gradient(135deg, rgba(232,162,48,0.07) 0%, rgba(232,162,48,0.02) 100%);
  border: 1px solid rgba(232,162,48,0.25);
  border-radius: 4px;
}

.trust-card-icon { font-size: 22px; }

.trust-card-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .trust-items { grid-template-columns: 1fr; }
  .trust-card { flex-direction: row; text-align: left; padding: 14px 18px; }
  .trust-card-text br { display: none; }
}

/* ── ANIMATIONS ───────────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 600px) {
  .form-card { padding: 32px 20px; }
  .offer-box { padding: 28px 24px; }
  .stats-row { gap: 20px; }
  .hero-divider { display: none; }
  h1 em { font-size: 38px; }
}

/* error state */
.field input.error { border-color: var(--danger); }
.field-error { font-size: 12px; color: var(--danger); margin-top: 4px; display: none; }
.field-error.visible { display: block; }

/* ── OFFER SPLIT LAYOUT ───────────────────── */
.offer-split {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.offer-image-wrap img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

/* ── PROBLEM BANNER IMAGE ─────────────────── */
.problem-banner {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  margin-bottom: 40px;
}

/* ── VIDEO SECTION ────────────────────────── */
.video-section { background: var(--bark); border-top: 1px solid rgba(255,255,255,0.05); }

.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  border-radius: 4px;
  overflow: hidden;
  margin-top: 32px;
}

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

/* ── MEDIA PLACEHOLDERS ───────────────────── */
/* Remove these rules once real media is swapped in */
.media-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(232,162,48,0.05);
  border: 2px dashed rgba(232,162,48,0.3);
  border-radius: 4px;
  color: var(--amber);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 24px;
  min-height: 200px;
}

.media-placeholder span {
  font-size: 12px;
  font-weight: 400;
  color: var(--slate);
  letter-spacing: 0.02em;
}

.media-placeholder--wide  { min-height: 160px; margin-bottom: 40px; }
.media-placeholder--tall  { min-height: 460px; }
.media-placeholder--video { min-height: unset; border-radius: 0; }

/* ── RESPONSIVE (media additions) ────────── */
@media (max-width: 860px) {
  .offer-split { grid-template-columns: 1fr; }
}
