:root {
  --black: #0a0a0a;
  --dark: #111111;
  --card: #181818;
  --border: #2a2a2a;
  --orange: #f97316;
  --orange-dark: #ea6c0a;
  --orange-glow: rgba(249,115,22,0.15);
  --white: #f5f0eb;
  --grey: #888;
  --light: #ccc;
  --green: #22c55e;
}

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

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NOISE OVERLAY */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ═══ GLOBAL COMPONENTS ═══ */

.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 680px; margin: 0 auto; padding: 0 24px; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-glow);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
}

.tag::before { content: '▸'; }

h1, h2, h3 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--orange);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 18px 40px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.15s ease;
  width: 100%;
  max-width: 480px;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 40px rgba(249,115,22,0.4);
}

.btn-primary:active { transform: translateY(0); }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 60px 0;
}

/* ═══ TOPBAR ═══ */

.topbar {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 12px 24px;
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.topbar span { color: var(--white); }

/* ═══ NAV ═══ */

nav {
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}

.logo span { color: var(--orange); }

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  cursor: pointer;
  border: 1px solid var(--orange);
  padding: 8px 20px;
  border-radius: 2px;
  transition: all 0.15s;
}

.nav-cta:hover {
  background: var(--orange);
  color: var(--black);
}

/* ═══════════════════════════════
   PAGE 1 — LANDING PAGE
═══════════════════════════════ */

/* HERO */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 0.95;
}

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

.hero h1 .outline {
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.hero-sub {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 300;
  color: var(--light);
  max-width: 620px;
  margin-bottom: 40px;
  line-height: 1.5;
}

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

/* VSL BOX */
.vsl-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  aspect-ratio: 16/9;
  max-width: 760px;
  margin: 60px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.vsl-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,0.05) 0%, transparent 60%);
}

.vsl-play {
  width: 80px;
  height: 80px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform 0.2s, box-shadow 0.2s;
}

.vsl-box:hover .vsl-play {
  transform: scale(1.1);
  box-shadow: 0 0 50px rgba(249,115,22,0.5);
}

.vsl-play::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 28px solid var(--black);
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  margin-left: 6px;
}

.vsl-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  white-space: nowrap;
}

/* GUARANTEE BANNER */
.guarantee-banner {
  background: linear-gradient(135deg, rgba(249,115,22,0.12), rgba(249,115,22,0.05));
  border: 1px solid var(--orange);
  border-radius: 6px;
  padding: 36px 40px;
  margin: 60px 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: center;
}

.guarantee-icon {
  font-size: 52px;
  line-height: 1;
}

.guarantee-text h3 {
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 8px;
}

.guarantee-text p {
  font-size: 17px;
  color: var(--light);
  line-height: 1.5;
}

.guarantee-text p strong { color: var(--white); }

/* HOW IT WORKS */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--grey);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 48px;
  line-height: 1;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  margin-bottom: 60px;
}

.step {
  background: var(--card);
  padding: 32px 24px;
  position: relative;
  border: 1px solid var(--border);
}

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.step:hover .step-num { color: var(--orange-glow); }

.step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--white);
}

.step p { font-size: 15px; color: var(--grey); line-height: 1.5; }

.step .amount {
  display: inline-block;
  margin-top: 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--orange);
}

/* WHAT YOU GET */
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 60px;
}

.what-item {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.what-item:hover { border-color: rgba(249,115,22,0.3); }

.what-icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.what-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.what-item p { font-size: 14px; color: var(--grey); line-height: 1.5; }

.what-item .val {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  margin-top: 6px;
}

/* PRICING */
.pricing-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 60px;
}

.pricing-header {
  background: var(--orange);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-header h3 {
  font-size: 28px;
  font-weight: 900;
  color: var(--black);
}

.pricing-header .total {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--black);
}

.pricing-rows { padding: 8px 0; }

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}

.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: rgba(255,255,255,0.02); }

.pricing-row .label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-row .step-badge {
  background: var(--border);
  color: var(--grey);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 2px;
}

.pricing-row .desc { font-size: 16px; color: var(--light); }

.pricing-row .price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
}

.pricing-row.monthly .price { color: var(--orange); }

.pricing-row.monthly .step-badge {
  background: var(--orange-glow);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.3);
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--grey);
  padding: 16px;
  background: rgba(0,0,0,0.3);
}

.pricing-note strong { color: var(--green); }

/* PWA SECTION */
.pwa-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}

.pwa-phone {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  position: relative;
}

.pwa-phone::before {
  content: 'LEAD MANAGER APP';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 14px;
  border-radius: 0 0 4px 4px;
}

.lead-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: slideIn 0.4s ease forwards;
  opacity: 0;
}

.lead-card:nth-child(1) { animation-delay: 0.2s; }
.lead-card:nth-child(2) { animation-delay: 0.5s; }
.lead-card:nth-child(3) { animation-delay: 0.8s; }

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

.lead-info { flex: 1; }

.lead-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.lead-detail { font-size: 13px; color: var(--grey); }

.lead-status {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 2px;
}

.status-new { background: rgba(249,115,22,0.2); color: var(--orange); }
.status-called { background: rgba(34,197,94,0.15); color: var(--green); }
.status-quoted { background: rgba(59,130,246,0.15); color: #60a5fa; }

.lead-call-btn {
  margin-left: 10px;
  background: var(--orange);
  color: var(--black);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  flex-shrink: 0;
}

.pwa-copy h3 {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}

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

.pwa-copy p {
  font-size: 17px;
  color: var(--light);
  line-height: 1.6;
  margin-bottom: 24px;
}

.pwa-features { list-style: none; }

.pwa-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--light);
}

.pwa-features li:last-child { border-bottom: none; }

.pwa-features li::before {
  content: '▸';
  color: var(--orange);
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* SOCIAL PROOF */
.proof-strip {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 40px;
  margin: 60px 0;
  text-align: center;
}

.proof-strip p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--grey);
  line-height: 1.4;
}

.proof-strip p strong {
  color: var(--white);
  font-weight: 900;
}

/* HERO CTA SECTION */
.cta-section {
  text-align: center;
  padding: 80px 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(249,115,22,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
}

.cta-section p {
  font-size: 18px;
  color: var(--grey);
  margin-bottom: 36px;
  position: relative;
}

.cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
}

.cta-micro {
  font-size: 14px;
  color: var(--grey);
}

.cta-micro strong { color: var(--green); }

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0.5;
}

footer p { font-size: 13px; color: var(--grey); }

/* ═══════════════════════════════
   PAGE 2 — QUIZ
═══════════════════════════════ */

.quiz-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.quiz-progress {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.progress-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
  white-space: nowrap;
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.progress-count {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  white-space: nowrap;
}

.quiz-body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.quiz-question {
  display: none;
  animation: fadeUp 0.3s ease;
}

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

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

.quiz-q-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange);
  margin-bottom: 12px;
}

.quiz-q-text {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  text-transform: uppercase;
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 40px;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quiz-option {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 4px;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.15s ease;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.quiz-option:hover {
  border-color: var(--orange);
  background: var(--orange-glow);
}

.quiz-option.selected {
  border-color: var(--orange);
  background: var(--orange-glow);
}

.quiz-option .opt-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.quiz-option .opt-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}

.quiz-option .opt-sub {
  font-size: 13px;
  color: var(--grey);
  text-transform: none;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  margin-top: 3px;
}

.quiz-option-full {
  grid-column: 1 / -1;
}

.quiz-next {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-next {
  background: var(--orange);
  color: var(--black);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 36px;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-next:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.btn-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.btn-back {
  background: transparent;
  color: var(--grey);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-back:hover { border-color: var(--grey); color: var(--white); }

/* TEXT INPUT */
.quiz-input {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 4px;
  padding: 18px 24px;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  color: var(--white);
  width: 100%;
  max-width: 480px;
  margin-bottom: 8px;
  transition: border-color 0.15s;
  outline: none;
}

.quiz-input:focus { border-color: var(--orange); }
.quiz-input::placeholder { color: var(--grey); }

/* ═══════════════════════════════
   PAGE 3 — OFFER / CHECKOUT
═══════════════════════════════ */

.offer-header {
  background: linear-gradient(180deg, rgba(249,115,22,0.08) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
  padding: 60px 0 40px;
  text-align: center;
}

.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.4);
  color: var(--green);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.availability-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.offer-header h1 {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
}

.offer-header p {
  font-size: 18px;
  color: var(--light);
  max-width: 560px;
  margin: 0 auto;
}

.offer-body {
  padding: 60px 0;
}

.offer-body .container {
  max-width: 1160px;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

/* RIGHT COLUMN WRAPPER */
.right-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: start;
  position: sticky;
  top: 24px;
}

/* ORDER SUMMARY */
.order-box {
  background: var(--card);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(249,115,22,0.06), 0 4px 24px rgba(0,0,0,0.4);
}

.order-box-header {
  background: var(--orange);
  padding: 16px 24px;
}

.order-box-header h3 {
  font-size: 20px;
  font-weight: 900;
  color: var(--black);
}

.order-items { padding: 8px 0; }

.order-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
}

.order-item:last-child { border-bottom: none; }

.order-item-name { font-size: 15px; color: var(--light); }
.order-item-val { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; color: var(--white); }

.order-total {
  background: var(--dark);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid var(--border);
}

.order-total span:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
}

.order-total-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}

.order-total-price span {
  font-size: 18px;
  color: var(--grey);
  font-weight: 400;
}

.order-cta {
  padding: 24px;
  background: rgba(0,0,0,0.3);
}

.order-cta .btn-primary { max-width: 100%; }

.order-trust {
  padding: 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--grey);
}

.trust-item::before { content: '✓'; color: var(--green); font-weight: 700; }

/* OFFER DETAILS SECTION */
.offer-includes h2 {
  font-size: 48px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
}

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

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 22px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  margin-bottom: 3px;
  transition: border-color 0.2s;
}

.include-item:hover { border-color: rgba(249,115,22,0.3); }

.include-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: rgba(249,115,22,0.3);
  line-height: 1;
  flex-shrink: 0;
  width: 46px;
  transition: color 0.2s;
}

.include-item:hover .include-num { color: var(--orange); }

.include-content h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 5px;
}

.include-content p { font-size: 14px; color: var(--grey); line-height: 1.6; }

/* TIMELINE */
.timeline {
  margin: 32px 0 0;
  position: relative;
  padding-left: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--border));
}

.timeline-item {
  position: relative;
  padding-bottom: 28px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -31px;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--orange);
  border-radius: 50%;
  border: 2px solid var(--black);
}

.timeline-item .t-when {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 4px;
}

.timeline-item h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.timeline-item p { font-size: 14px; color: var(--grey); }

/* ═══════════════════════════════
   PAGE 4 — CONFIRMATION
═══════════════════════════════ */

.confirm-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  text-align: center;
  position: relative;
}

.confirm-page::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.confirm-icon {
  width: 80px;
  height: 80px;
  background: rgba(34,197,94,0.15);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 32px;
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

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

.confirm-page h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.confirm-page h1 .accent { color: var(--green); }

.confirm-page > p {
  font-size: 18px;
  color: var(--light);
  max-width: 500px;
  margin: 0 auto 48px;
  position: relative;
}

.confirm-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  width: 100%;
  max-width: 760px;
  margin: 0 auto 48px;
  position: relative;
}

.confirm-step {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
}

.confirm-step .cs-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.confirm-step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.confirm-step p { font-size: 13px; color: var(--grey); line-height: 1.5; }

.confirm-email-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 28px 36px;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.confirm-email-box h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.confirm-email-box p { font-size: 15px; color: var(--grey); }

/* ═══════════════════════════════
   PAYMENT FORM
═══════════════════════════════ */

.payment-form {
  margin-top: 0;
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
}

.payment-form-header {
  background: linear-gradient(to right, rgba(249,115,22,0.12), rgba(249,115,22,0.03));
  border-bottom: 1px solid var(--border);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.payment-form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
}

.payment-card-icons {
  display: flex;
  gap: 6px;
}

.card-icon {
  background: var(--dark);
  border: 1px solid var(--border);
  color: var(--light);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 3px;
}

#checkout-form {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.pay-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey);
}

.pay-input {
  background: var(--dark);
  border: 2px solid var(--border);
  border-radius: 4px;
  padding: 14px 18px;
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  color: var(--white);
  width: 100%;
  outline: none;
  transition: border-color 0.15s;
}

.pay-input:focus { border-color: var(--orange); }
.pay-input::placeholder { color: var(--border); }
.pay-input.error { border-color: #ef4444; }

.pay-input-icon-wrap {
  position: relative;
}

.pay-input-icon-wrap .pay-input {
  padding-right: 48px;
}

.pay-card-detect {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  pointer-events: none;
}

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

.pay-error {
  font-size: 14px;
  color: #ef4444;
  min-height: 18px;
  font-family: 'Barlow', sans-serif;
}

.pay-submit {
  margin-top: 4px;
}

.pay-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.pay-micro {
  font-size: 12px;
  color: var(--grey);
  line-height: 1.5;
  text-align: center;
}

/* ═══════════════════════════════
   PAYMENT FORM — CONTACT DIVIDER
═══════════════════════════════ */

.pay-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 4px 0;
  position: relative;
}

.pay-divider::after {
  content: 'Card Details';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--card);
  padding: 0 12px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--grey);
}

/* ═══════════════════════════════
   THANK YOU PAGE
═══════════════════════════════ */

.thankyou-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 72px 24px 96px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.thankyou-icon {
  width: 88px;
  height: 88px;
  background: rgba(34,197,94,0.12);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin-bottom: 28px;
  animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.thankyou-heading {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}

.thankyou-sub {
  font-size: 18px;
  color: var(--light);
  line-height: 1.6;
  max-width: 560px;
  margin-bottom: 48px;
}

/* INBOX CALLOUT */
.inbox-callout {
  width: 100%;
  background: linear-gradient(135deg, rgba(34,197,94,0.08), rgba(34,197,94,0.03));
  border: 1px solid rgba(34,197,94,0.35);
  border-radius: 6px;
  padding: 32px 36px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
  margin-bottom: 56px;
}

.inbox-callout-icon {
  font-size: 40px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 4px;
}

.inbox-callout-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 6px;
}

.inbox-callout-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.inbox-callout-text {
  font-size: 16px;
  color: var(--light);
  line-height: 1.6;
  margin-bottom: 10px;
}

.inbox-email {
  color: var(--white);
  font-weight: 600;
}

.inbox-callout-spam {
  font-size: 13px;
  color: var(--grey);
}

/* WHAT HAPPENS NEXT STEPS */
.thankyou-steps {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 48px;
}

.thankyou-step {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px 20px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tstep-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--grey);
  margin-bottom: 10px;
}

.tstep-icon {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1;
}

.thankyou-step h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.thankyou-step p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.5;
  flex: 1;
}

.tstep-when {
  margin-top: 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
}

/* GUARANTEE REMINDER */
.thankyou-guarantee {
  width: 100%;
  background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(249,115,22,0.04));
  border: 1px solid rgba(249,115,22,0.4);
  border-radius: 6px;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: center;
  text-align: left;
}

.thankyou-guarantee .guarantee-icon { font-size: 40px; line-height: 1; }

.thankyou-guarantee .guarantee-text h3 {
  font-size: 22px;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 6px;
}

.thankyou-guarantee .guarantee-text p {
  font-size: 15px;
  color: var(--light);
  line-height: 1.5;
}

/* ═══ RESPONSIVE ═══ */

@media (max-width: 900px) {
  .thankyou-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .what-grid { grid-template-columns: 1fr; }
  .pwa-section { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .right-col { position: static; }
  .quiz-options { grid-template-columns: 1fr; }
  .quiz-option-full { grid-column: 1; }
  .confirm-steps { grid-template-columns: 1fr; }
  .guarantee-banner { grid-template-columns: 1fr; text-align: center; }
  .inbox-callout { flex-direction: column; gap: 16px; padding: 24px; }
  .thankyou-steps { grid-template-columns: 1fr; }
  .thankyou-guarantee { grid-template-columns: 1fr; }
  nav { padding: 16px 20px; }
  footer { flex-direction: column; gap: 8px; text-align: center; }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .pricing-row { padding: 14px 20px; }
  .pricing-header { padding: 16px 20px; }
}
