/* ============================================================
   BoomDispatch &mdash; Landing v2
   Mobile-first, no framework, ASCII-only
   ============================================================ */

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; display: block; }
a { color: #ff6b35; text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4 { font-family: 'Inter', sans-serif; font-weight: 800; line-height: 1.15; margin: 0 0 16px; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 5.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }
p { margin: 0 0 14px; }
ul { padding-left: 20px; margin: 0 0 14px; }
li { margin: 0 0 6px; }

/* CONTAINER */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* COLORS */
:root {
  --navy: #0a1628;
  --navy-2: #142442;
  --orange: #ff6b35;
  --orange-2: #e85a26;
  --cream: #faf6f0;
  --cream-2: #f3ecdf;
  --text: #1a1a1a;
  --text-mute: #5a6573;
  --white: #ffffff;
  --border: #e6e6e6;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-accent { background: var(--orange); color: #fff; box-shadow: 0 4px 14px rgba(255, 107, 53, 0.35); }
.btn-accent:hover { background: var(--orange-2); box-shadow: 0 6px 20px rgba(255, 107, 53, 0.45); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #1a2640; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: #f3f3f3; }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-large { padding: 16px 30px; font-size: 1.05rem; }
.btn-xl { padding: 20px 36px; font-size: 1.15rem; }
.btn-small { padding: 10px 16px; font-size: 0.9rem; }

/* ANNOUNCEMENT BAR */
.announcement-bar {
  background: var(--navy);
  color: #fff;
  font-size: 0.9rem;
  padding: 10px 0;
}
.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.announcement-bar a { color: var(--orange); font-weight: 600; }
#dismiss-announcement {
  color: #fff;
  font-size: 1.2rem;
  padding: 0 4px;
  line-height: 1;
}
.announcement-bar.hidden { display: none; }

/* LEAD MAGNET BANNER */
.lead-magnet-banner {
  background: linear-gradient(90deg, #fff4ec 0%, #ffe4d3 100%);
  border-bottom: 1px solid #f3d4ba;
  padding: 12px 0;
}
.lead-magnet-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  text-align: center;
}
.gift-icon { font-size: 1.3rem; }

/* HEADER */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--navy);
}
.logo:hover { text-decoration: none; }
.logo-text {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.main-nav {
  display: none;
  gap: 24px;
}
.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--orange); text-decoration: none; }
.header-cta { display: none; }

@media (min-width: 900px) {
  .main-nav { display: flex; }
  .header-cta { display: inline-block; }
}

/* SECTIONS */
.section {
  padding: 64px 0;
}
.section-cream { background: var(--cream); }
.section-light { background: #fff; }
.section-dark {
  background: var(--navy);
  color: #fff;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .section-sub { color: rgba(255,255,255,0.78); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--text-mute);
}

/* HERO */
.hero {
  background: linear-gradient(180deg, #fff 0%, var(--cream) 100%);
  padding: 48px 0 72px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.hero-content { order: 2; }
.hero-visual { order: 1; }

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
  }
  .hero-content { order: 1; }
  .hero-visual { order: 2; }
}

.badge-row { margin-bottom: 16px; }
.trust-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.1);
  color: var(--orange-2);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 99px;
  letter-spacing: 0.02em;
}
.hero-title .highlight {
  color: var(--orange);
  position: relative;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-mute);
  margin-bottom: 16px;
}
.hero-qualifier {
  font-size: 0.9rem;
  color: var(--text-mute);
  border-left: 3px solid var(--orange);
  padding: 8px 14px;
  margin-bottom: 24px;
  background: rgba(255, 107, 53, 0.05);
  font-style: italic;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.hero-bullets li {
  font-size: 0.95rem;
  margin-bottom: 6px;
  color: var(--text);
}
.hero-bullets span {
  color: var(--orange);
  font-weight: 800;
  margin-right: 6px;
}

/* EMAIL CAPTURE FORM */
.email-capture {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  background: #fff;
  padding: 8px;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.email-capture input[type=email] {
  flex: 1;
  min-width: 180px;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  background: transparent;
}
.email-capture input[type=email]:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff8f3;
}
.email-capture button { flex-shrink: 0; }
.form-note {
  width: 100%;
  font-size: 0.78rem;
  color: var(--text-mute);
  margin: 4px 0 0;
  padding: 0 6px;
}
.email-capture.success {
  background: #e6f7ec;
  border-color: #6dc788;
}
.email-capture.success input,
.email-capture.success button { display: none; }
.email-capture .success-msg {
  display: none;
  width: 100%;
  padding: 12px;
  font-weight: 600;
  color: #1d6b35;
  text-align: center;
}
.email-capture.success .success-msg { display: block; }

.email-capture-pricing { margin-top: 16px; }
.email-capture-final {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
}

/* PHONE MOCKUP */
.phone-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}
.phone-frame {
  width: 100%;
  max-width: 320px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 14px;
  box-shadow:
    0 30px 60px rgba(10, 22, 40, 0.25),
    0 10px 20px rgba(10, 22, 40, 0.15),
    inset 0 0 0 2px #2a2a2a;
  position: relative;
  transform: rotate(-2deg);
  transition: transform 0.4s ease;
}
.phone-frame:hover { transform: rotate(0deg) scale(1.02); }

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}
.phone-screen {
  background: #f0f2f5;
  border-radius: 24px;
  overflow: hidden;
  height: 520px;
  display: flex;
  flex-direction: column;
}
.chat-header {
  background: #fff;
  border-bottom: 1px solid #e1e1e1;
  padding: 32px 14px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
}
.chat-name { font-weight: 700; font-size: 0.95rem; color: #1a1a1a; }
.chat-status { font-size: 0.7rem; color: #4caf50; }
.chat-body {
  flex: 1;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.msg {
  max-width: 78%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 0.88rem;
  line-height: 1.4;
  position: relative;
  color: #1a1a1a;
  animation: msgIn 0.4s ease both;
}
.msg p { margin: 0; }
.msg-time {
  display: block;
  font-size: 0.65rem;
  color: rgba(0,0,0,0.45);
  margin-top: 4px;
}
.msg-in {
  background: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.msg-out {
  background: var(--orange);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  animation-delay: 1.2s;
}
.msg-out .msg-time { color: rgba(255,255,255,0.8); }
.msg-ai { box-shadow: 0 0 0 2px rgba(255,255,255,0.4); }
.msg-typing {
  background: #fff;
  align-self: flex-start;
  padding: 14px 16px;
  border-bottom-left-radius: 4px;
  animation-delay: 0.5s;
}
.typing-dots { display: flex; gap: 4px; }
.typing-dots span {
  width: 6px;
  height: 6px;
  background: #999;
  border-radius: 50%;
  animation: typingPulse 1.2s infinite ease-in-out;
}
.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }
.msg-late { animation-delay: 2.0s; }

.booking-badge {
  background: #19a463;
  color: #fff;
  text-align: center;
  padding: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  animation: bookingFade 0.5s ease both 2.6s;
  opacity: 0;
}

@keyframes msgIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes typingPulse {
  0%, 60%, 100% { opacity: 0.3; }
  30% { opacity: 1; }
}
@keyframes bookingFade {
  to { opacity: 1; }
}

/* PROBLEM CARDS */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 720px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.prob-icon { margin-bottom: 14px; }

.problem-callout {
  margin-top: 40px;
  background: var(--navy);
  color: #fff;
  padding: 24px 28px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.1rem;
  border-left: 6px solid var(--orange);
}
.problem-callout strong { color: var(--orange); }

/* HOW IT WORKS */
.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}
.step-card {
  background: var(--navy-2);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  flex: 1;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
}
.step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  box-shadow: 0 6px 16px rgba(255,107,53,0.4);
}
.step-icon { display: flex; justify-content: center; margin: 24px 0 16px; }
.step-card p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.step-arrow {
  display: none;
  font-size: 2rem;
  color: var(--orange);
  align-items: center;
  justify-content: center;
}
@media (min-width: 900px) {
  .steps-grid {
    flex-direction: row;
    align-items: stretch;
  }
  .step-arrow { display: flex; }
}
.cta-row-center {
  text-align: center;
  margin-top: 48px;
}

/* WHAT'S INSIDE */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 760px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  border: 1px solid var(--border);
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
}
.feature-tag {
  display: inline-block;
  background: var(--navy);
  color: var(--orange);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
  margin-right: 8px;
  vertical-align: middle;
  letter-spacing: 0.04em;
}
.feature-card ul { margin-top: 12px; }
.feature-card li { color: var(--text-mute); font-size: 0.95rem; }

/* COMPARISON TABLE */
.compare-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 640px;
}
.compare-table th, .compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.compare-table thead th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  border-bottom: 2px solid var(--orange);
}
.compare-table tbody th {
  font-weight: 600;
  background: var(--cream);
  width: 200px;
}
.compare-table .us-col {
  background: rgba(255, 107, 53, 0.08);
  color: var(--navy);
  font-weight: 700;
}
.compare-table thead .us-col {
  background: var(--orange);
  color: #fff;
}
.compare-table .cost-row td, .compare-table .cost-row th {
  background: #fff8f3;
  font-size: 1.05rem;
}
.compare-table .cost-row .us-col {
  background: var(--orange);
  color: #fff;
  font-size: 1.1rem;
}

/* ROI CALCULATOR */
.calc-wrap {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px;
}
@media (min-width: 760px) {
  .calc-wrap { grid-template-columns: 1fr 1fr; gap: 50px; }
}
.calc-field { margin-bottom: 22px; }
.calc-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.calc-field input[type=range] {
  width: 100%;
  accent-color: var(--orange);
}
.calc-field input[type=number] {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
}
.calc-field input[type=number]:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,255,255,0.1);
}
.calc-value {
  text-align: right;
  font-weight: 700;
  color: var(--orange);
  font-size: 1rem;
  margin-top: 4px;
}
.calc-output {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85);
}
.calc-row strong { font-size: 1.4rem; color: #fff; }
.calc-row.calc-extra {
  border-bottom: none;
  padding-top: 18px;
  border-top: 2px solid var(--orange);
  margin-top: 4px;
}
.calc-row.calc-extra strong { color: var(--orange); font-size: 1.8rem; }
.calc-cta { margin-top: 20px; text-align: center; }

/* TESTIMONIALS */
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
}
.testimonial-photo {
  width: 100%;
  height: 160px;
  background: linear-gradient(135deg, #e6e6e6, #d2d2d2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-mute);
  padding: 12px;
  font-style: italic;
}
.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 4px;
  box-shadow: 0 4px 12px rgba(10, 22, 40, 0.18);
  flex-shrink: 0;
}
.testimonial-avatar-1 { background: linear-gradient(135deg, #ff6b35, #ff8c42); }
.testimonial-avatar-2 { background: linear-gradient(135deg, #0a1628, #1a3550); }
.testimonial-avatar-3 { background: linear-gradient(135deg, #d2691e, #b8541d); }
.stars {
  color: var(--orange);
  font-size: 1rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 1rem;
  color: var(--text);
  flex: 1;
}
.testimonial-author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.testimonial-author strong { color: var(--navy); font-size: 1rem; }
.testimonial-author span { color: var(--text-mute); font-size: 0.85rem; }

/* FOUNDER */
.founder-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
@media (min-width: 800px) {
  .founder-wrap { grid-template-columns: 320px 1fr; gap: 50px; }
}
.founder-photo { text-align: center; }
.founder-photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 240px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -3px;
  box-shadow: 0 12px 36px rgba(255, 107, 53, 0.32);
}
.founder-caption {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
}
.founder-caption strong { color: var(--navy); font-size: 1.05rem; }
.founder-caption span { color: var(--text-mute); font-size: 0.85rem; }
.founder-text p { font-size: 1rem; color: var(--text); margin-bottom: 14px; }
.founder-sign {
  margin-top: 20px;
  font-style: italic;
  font-size: 1.1rem;
}
.founder-sign span {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--text-mute);
}

/* PRICING */
.pricing-card {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  color: var(--text);
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  border: 3px solid var(--orange);
  text-align: center;
}
.pricing-header { margin-bottom: 28px; }
.pricing-label {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin: 12px 0;
}
.price-was {
  font-size: 1.5rem;
  color: var(--text-mute);
  text-decoration: line-through;
}
.price-now {
  font-size: 4rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-pitch { color: var(--text-mute); font-size: 0.95rem; }

.value-stack {
  background: var(--cream);
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  text-align: left;
}
.value-stack h3 {
  text-align: center;
  margin-bottom: 16px;
  color: var(--navy);
}
.stack-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.stack-table td {
  padding: 8px 4px;
  border-bottom: 1px dashed #e0d8c8;
}
.stack-table .val { text-align: right; color: var(--text-mute); white-space: nowrap; }
.stack-total td { padding-top: 14px; border-top: 2px solid var(--navy); border-bottom: none; }
.stack-total .val { color: var(--navy); font-size: 1.1rem; }
.stack-launch td { background: rgba(255, 107, 53, 0.1); padding: 10px 8px; border-bottom: none; }
.stack-launch .val { color: var(--orange); font-size: 1.3rem; }
.stack-retail td { padding: 6px 8px; border-bottom: none; font-size: 0.85rem; color: var(--text-mute); }
.stack-save td { padding-top: 12px; border-top: 2px solid var(--orange); border-bottom: none; }
.stack-save .val { color: var(--orange); font-size: 1.2rem; }

.bonus-stack {
  background: var(--navy);
  color: #fff;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
}
.bonus-stack h3 { text-align: center; margin-bottom: 18px; color: #fff; }
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 760px) {
  .bonus-grid { grid-template-columns: repeat(3, 1fr); }
}
.bonus-card {
  background: var(--navy-2);
  padding: 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.bonus-icon { font-size: 1.6rem; margin-bottom: 8px; }
.bonus-card h4 {
  color: var(--orange);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.bonus-card p { font-size: 0.92rem; margin-bottom: 8px; }
.bonus-val { font-size: 0.78rem; color: rgba(255,255,255,0.65); }

.pricing-cta {
  width: 100%;
  margin: 16px 0 0;
}
.pricing-fineprint {
  font-size: 0.78rem;
  color: var(--text-mute);
  margin-top: 16px;
  margin-bottom: 0;
  line-height: 1.5;
}

/* GUARANTEE */
.guarantee-card {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--orange);
  border-radius: 16px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  text-align: center;
}
@media (min-width: 720px) {
  .guarantee-card {
    grid-template-columns: 140px 1fr;
    text-align: left;
    padding: 36px 48px;
    gap: 36px;
  }
}
.guarantee-seal { display: flex; justify-content: center; }
.guarantee-text h2 { margin-bottom: 12px; }
.guarantee-pledge {
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--cream);
  border-radius: 8px;
  border-left: 4px solid var(--orange);
}

/* FAQ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.18s ease;
}
.faq-item[open] {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  border-color: var(--orange);
}
.faq-item summary {
  padding: 18px 22px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 50px;
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--orange);
  line-height: 1;
}
.faq-item[open] summary::after { content: "-"; }
.faq-item p {
  padding: 0 22px 18px;
  margin: 0;
  color: var(--text-mute);
}

/* FINAL CTA */
.final-cta { text-align: center; padding: 72px 0; }
.final-cta h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); }
.final-cta .highlight { color: var(--orange); }
.final-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
}

/* FOOTER */
.site-footer {
  background: #050d1a;
  color: rgba(255,255,255,0.7);
  padding: 48px 0 0;
  font-size: 0.92rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 32px;
}
@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
  font-size: 0.92rem;
}
.footer-col a:hover { color: var(--orange); text-decoration: none; }
.logo-footer { color: #fff; margin-bottom: 12px; }
.logo-footer .logo-text { color: #fff; }
.footer-tag {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  max-width: 320px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* STICKY MOBILE CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: #fff;
  z-index: 60;
  padding: 12px 16px;
  border-top: 2px solid var(--orange);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.3);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
}
.sticky-cta-inner strong { display: block; font-size: 0.95rem; }
.sticky-cta-inner span { font-size: 0.78rem; color: rgba(255,255,255,0.7); }
@media (min-width: 900px) {
  .sticky-cta { display: none; }
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.7);
  backdrop-filter: blur(4px);
}
.modal-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  max-width: 460px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 1.6rem;
  color: var(--text-mute);
  width: 32px;
  height: 32px;
  line-height: 1;
}
.modal-close:hover { color: var(--orange); }
.modal-card h3 { margin-bottom: 10px; font-size: 1.4rem; }
.modal-card p { color: var(--text-mute); margin-bottom: 18px; }
.exit-emoji { font-size: 2.5rem; color: var(--orange); margin-bottom: 8px; }

/* LIVE TOAST */
.live-toast {
  position: fixed;
  bottom: 80px;
  left: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 36px 12px 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  display: none;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  max-width: 320px;
  z-index: 70;
  animation: toastIn 0.4s ease;
}
.live-toast.visible { display: flex; }
@keyframes toastIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}
.live-dot {
  width: 8px;
  height: 8px;
  background: #19a463;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(25, 164, 99, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(25, 164, 99, 0); }
}
.live-text { color: var(--text); flex: 1; }
.live-close {
  position: absolute;
  top: 6px;
  right: 8px;
  color: var(--text-mute);
  font-size: 1.2rem;
  line-height: 1;
}
@media (min-width: 900px) {
  .live-toast { bottom: 30px; }
}

/* SCROLL FADE-IN */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SECONDARY PAGES */
.page-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}
.page-narrow h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.page-narrow .lead {
  font-size: 1.1rem;
  color: var(--text-mute);
  margin-bottom: 32px;
}
.page-narrow h2 {
  font-size: 1.4rem;
  margin-top: 32px;
  margin-bottom: 12px;
}
.page-narrow p, .page-narrow li {
  font-size: 1rem;
  line-height: 1.65;
}
.policy-meta {
  font-size: 0.85rem;
  color: var(--text-mute);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

/* THANK YOU */
.thank-you-hero {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 64px 20px;
}
.thank-you-hero h1 { font-size: 2.6rem; margin-bottom: 12px; }
.thank-you-hero p { font-size: 1.15rem; color: rgba(255,255,255,0.8); }
.checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: #19a463;
  color: #fff;
  border-radius: 50%;
  font-size: 2.5rem;
  margin: 0 auto 20px;
}

.delivery-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 28px;
}
.upsell-card {
  background: var(--cream);
  border: 2px solid var(--orange);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 28px 0;
}
.countdown-unit {
  background: var(--navy);
  color: #fff;
  padding: 16px 14px;
  border-radius: 8px;
  text-align: center;
  min-width: 70px;
}
.countdown-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
}
.countdown-lbl {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
}

/* SUPPORT */
.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 28px;
}
@media (min-width: 720px) { .support-grid { grid-template-columns: 1fr 1fr; } }
.support-card {
  background: #fff;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

/* UTILITIES */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* Add bottom safe space for sticky CTA on mobile */
@media (max-width: 899px) {
  body { padding-bottom: 72px; }
}
