/* PageBolt 72 — Mobile-first landing page styles */

/* ─── Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg:       #ffffff;
  --color-surface:  #f5f5f5;
  --color-border:   #e0e0e0;
  --color-text:     #1a1a1a;
  --color-muted:    #6b6b6b;
  --color-accent:   #e63946;
  --color-accent-hover: #c1121f;
  --color-success:  #2d6a4f;
  --color-white:    #ffffff;
  --font-base:      -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading:   -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius:         8px;
  --max-w:          680px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── Layout ───────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Hero Section ─────────────────────────────────────────────────────── */
.hero {
  padding: 64px 0 48px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: #fde8e9;
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2rem, 7vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: normal;
  color: var(--color-accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--color-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.55;
}

/* ─── Primary CTA Button ────────────────────────────────────────────────── */
.cta-btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(230,57,70,0.35);
}

.cta-btn:hover, .cta-btn:focus {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}

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

.cta-btn.large {
  font-size: 1.15rem;
  padding: 20px 40px;
  box-shadow: 0 6px 20px rgba(230,57,70,0.4);
}

/* ─── Slot Counter ──────────────────────────────────────────────────────── */
.slot-bar {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--color-muted);
  font-weight: 500;
}

.slot-bar span {
  color: var(--color-accent);
  font-weight: 700;
}

/* ─── Divider ───────────────────────────────────────────────────────────── */
hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 0;
}

/* ─── Section Spacing ───────────────────────────────────────────────────── */
.section {
  padding: 48px 0;
}

.section + .section {
  border-top: 1px solid var(--color-border);
}

.section-dark {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* ─── Problem Section ───────────────────────────────────────────────────── */
.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.problem-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.5;
}

.problem-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-top: 1px;
}

.problem-text strong {
  font-weight: 600;
}

/* ─── Offer Card ────────────────────────────────────────────────────────── */
.offer-card {
  border: 2px solid var(--color-accent);
  border-radius: 12px;
  padding: 32px 28px;
  margin-top: 24px;
  background: var(--color-white);
}

.offer-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

.offer-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.offer-card p {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* ─── Deliverables ─────────────────────────────────────────────────────── */
.deliverables-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
}

.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 14px 16px;
  font-size: 0.95rem;
  line-height: 1.4;
}

.deliverable-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

/* ─── Price Block ──────────────────────────────────────────────────────── */
.price-block {
  text-align: center;
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}

.price-tag {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--color-text);
  line-height: 1;
}

.price-tag sup {
  font-size: 1.5rem;
  vertical-align: super;
  line-height: 0;
  font-weight: 700;
  margin-right: 2px;
}

.price-note {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.price-note strong {
  color: var(--color-text);
  font-weight: 600;
}

/* ─── FAQ ───────────────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
  line-height: 1.4;
}

.faq-a {
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.6;
}

/* ─── Trust Row ─────────────────────────────────────────────────────────── */
.trust-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.trust-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ─── Backup Contact ───────────────────────────────────────────────────── */
.backup-contact {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 10px;
  line-height: 1.5;
}

.backup-contact a {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
}

/* ─── Payment Note ─────────────────────────────────────────────────────── */
.payment-note {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 10px;
  line-height: 1.5;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Intake Section ───────────────────────────────────────────────────── */
.intake-section {
  background: #fef9f0;
  border: 1px solid #f0e0c0;
  border-radius: 12px;
  padding: 32px 24px;
  margin: 8px 0;
}

/* ─── Footer ────────────────────────────────────────────────────────────── */
.footer {
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid var(--color-border);
}

.footer p {
  font-size: 0.8rem;
  color: var(--color-muted);
  line-height: 1.6;
}

.footer a {
  color: var(--color-accent);
  text-decoration: none;
}

/* ─── Sticky CTA Bar (mobile only) ──────────────────────────────────────── */
.sticky-bar {
  display: none;
}

@media (max-width: 600px) {
  .sticky-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: 12px 16px;
    z-index: 100;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  }

  .sticky-bar .cta-btn {
    display: block;
    text-align: center;
    width: 100%;
  }

  body {
    padding-bottom: 80px;
  }
}

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (min-width: 600px) {
  .deliverables-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ─── Scroll animations (subtle) ───────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .hero { opacity: 1; }
}