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

:root {
  --bg: #F7F4EF;
  --ink: #1A1614;
  --ink-muted: #6B6560;
  --accent: #E85D2D;
  --accent-soft: #F0A868;
  --card: #EDE9E2;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAVBAR */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid rgba(26,22,20,0.08);
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
  color: var(--ink);
}

.nav-tagline {
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 400;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: background 0.2s, transform 0.1s;
  margin-bottom: 12px;
}
.cta-btn:hover { background: #d14e21; transform: translateY(-1px); }
.cta-note {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 0;
}

/* HERO */
.hero {
  padding: 80px 48px 64px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--ink);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 420px;
  margin-bottom: 32px;
}

.hero-offer {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.offer-tag {
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.offer-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

/* PHONE FRAME */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 260px;
  background: var(--ink);
  border-radius: 36px;
  padding: 16px;
  box-shadow: 0 32px 80px rgba(26,22,20,0.18), 0 8px 24px rgba(26,22,20,0.12);
}

.phone-notch {
  width: 90px;
  height: 26px;
  background: var(--ink);
  border-radius: 0 0 16px 16px;
  margin: 0 auto 12px;
  position: relative;
  z-index: 1;
}

.phone-screen {
  background: #111;
  border-radius: 24px;
  overflow: hidden;
  padding: 16px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.screen-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.reel-before, .reel-after {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reel-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.reel-messy {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
}

.messy-bar {
  height: 6px;
  background: rgba(255,255,255,0.2);
  border-radius: 3px;
}

.messy-icon {
  font-size: 24px;
  text-align: center;
  margin-top: 4px;
}

.reel-divider {
  flex-shrink: 0;
}

.reel-clean {
  background: rgba(232,93,45,0.08);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid rgba(232,93,45,0.2);
}

.clean-bar {
  height: 6px;
  border-radius: 3px;
}

.views-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  background: rgba(232,93,45,0.15);
  border-radius: 20px;
  padding: 4px 10px;
  align-self: flex-start;
}

.views-icon {
  font-size: 10px;
  color: var(--accent);
}

.views-count {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.phone-label {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* PROOF / SERVICES */
.proof {
  padding: 72px 48px;
  background: var(--card);
}

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

.proof-heading {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-align: center;
  margin-bottom: 28px;
}

.services-bullets {
  list-style: none;
  max-width: 560px;
  margin: 0 auto 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-bullets li {
  font-size: 16px;
  color: var(--ink);
  padding-left: 24px;
  position: relative;
}

.services-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.services-tags {
  text-align: center;
  font-size: 14px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}

/* STEPS */
.steps {
  padding: 80px 48px;
}

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

.steps-heading {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(26,22,20,0.08);
}

.step:last-child {
  border-bottom: none;
}

.step-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: rgba(26,22,20,0.1);
  line-height: 1;
  letter-spacing: -2px;
}

.step-content h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.step-content p {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 560px;
}

/* GUARANTEE */
.guarantee {
  padding: 80px 48px;
  background: var(--ink);
  color: white;
}

.guarantee-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.guarantee-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,93,45,0.15);
  border: 1px solid rgba(232,93,45,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
}

.badge-icon {
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.badge-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}

.guarantee-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
  color: white;
}

.guarantee-body {
  font-size: 17px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 16px;
}

.guarantee-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
}

/* CLOSING */
.closing {
  padding: 96px 48px;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.closing-sub {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 32px;
}

.closing-note {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 14px;
}

.cta-btn-large {
  font-size: 16px;
  padding: 16px 36px;
}

/* FOOTER */
.footer {
  padding: 32px 48px;
  border-top: 1px solid rgba(26,22,20,0.08);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--ink-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero {
    padding: 48px 24px 40px;
  }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof {
    padding: 48px 24px;
  }

  .steps {
    padding: 48px 24px;
  }

  .step {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .step-number {
    font-size: 36px;
  }

  .guarantee {
    padding: 64px 24px;
  }

  .closing {
    padding: 64px 24px;
  }

  .navbar {
    padding: 16px 24px;
  }

  .footer {
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-headline {
    font-size: 30px;
  }
}