/* ===================================
   QUOTEPILOT — Custom Landing Page
   =================================== */

:root {
  --orange: #F97316;
  --orange-light: #FFF7ED;
  --navy: #0F172A;
  --navy-mid: #1E293B;
  --slate: #334155;
  --muted: #64748B;
  --light: #F1F5F9;
  --white: #FFFFFF;
  --green: #22C55E;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--navy);
  color: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--orange);
  color: var(--white);
}

/* NAV */
.nav {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta-ghost {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.15s;
}

.nav-cta-ghost:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
}

.nav-cta-primary {
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 8px;
  transition: all 0.15s;
}

.nav-cta-primary:hover {
  background: #ea6c0e;
  transform: translateY(-1px);
}

/* SECTION LABEL */
.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}

/* ===================================
   HERO
   =================================== */

.hero {
  padding: 72px 0 80px;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.25);
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

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

.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-social {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.hero-social-flags {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.04em;
}

/* Hero cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px 22px;
  position: relative;
  overflow: hidden;
}

.hero-card--main {
  border-color: rgba(249, 115, 22, 0.2);
}

.hero-card--sent {
  border-left: 3px solid var(--orange);
}

.hero-card--reply {
  border-left: 3px solid var(--green);
}

.card-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.card-quote {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.card-meta {
  font-size: 12px;
  color: var(--slate);
  margin-bottom: 12px;
}

.card-countdown {
  font-size: 13px;
  color: var(--muted);
}

.card-timer {
  color: var(--orange);
  font-weight: 700;
  font-family: 'Syne', monospace;
}

.card-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 35%;
  background: var(--orange);
  border-radius: 0 2px 2px 0;
}

.card-message {
  font-size: 13px;
  color: var(--light);
  line-height: 1.55;
  margin-bottom: 8px;
}

.card-status {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}

.card-status--won {
  color: var(--green);
  font-weight: 600;
}

/* ===================================
   PROBLEM
   =================================== */

.problem {
  background: var(--navy-mid);
  padding: 80px 0;
}

.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.problem-header {
  margin-bottom: 56px;
}

.problem-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 680px;
}

.problem-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 48px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden;
}

.problem-stat {
  padding: 36px 32px;
  background: var(--navy);
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.problem-quote {
  background: rgba(249, 115, 22, 0.06);
  border-left: 3px solid var(--orange);
  padding: 24px 28px;
  border-radius: 0 12px 12px 0;
}

.problem-quote blockquote {
  font-size: 17px;
  color: var(--light);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 12px;
}

.problem-quote cite {
  font-size: 12px;
  color: var(--muted);
  font-style: normal;
}

/* ===================================
   HOW IT WORKS
   =================================== */

.how {
  padding: 80px 0;
}

.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.how-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 56px;
  max-width: 520px;
}

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

.how-step {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.how-step:first-child {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: rgba(249, 115, 22, 0.25);
  letter-spacing: -0.04em;
  line-height: 1;
  min-width: 72px;
}

.step-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.step-body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 540px;
}

/* ===================================
   FEATURES
   =================================== */

.features {
  background: var(--navy-mid);
  padding: 80px 0;
}

.features-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.features-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.25;
  max-width: 580px;
  margin-bottom: 56px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
  transition: border-color 0.2s;
}

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

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ===================================
   OUTCOMES
   =================================== */

.outcomes {
  padding: 80px 0;
}

.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.outcomes-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 20px;
}

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

.outcomes-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.outcome-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--light);
  line-height: 1.5;
}

.outcome-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* Pricing card */
.pricing-card {
  background: var(--navy-mid);
  border: 1px solid rgba(249, 115, 22, 0.25);
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 16px;
}

.pricing-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-per {
  font-size: 24px;
  color: var(--muted);
  font-weight: 500;
}

.pricing-desc {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}

.pricing-divider {
  height: 1px;
  background: rgba(255,255,255,0.06);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--light);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.pricing-cta-text {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.pricing-cta-detail {
  font-size: 12px;
  color: var(--muted);
}

.pricing-note {
  font-size: 13px;
  color: var(--slate);
  text-align: center;
}

/* ===================================
   CLOSING
   =================================== */

.closing {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 96px 0;
}

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

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin-bottom: 24px;
}

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

.closing-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 56px;
}

.closing-statement {
  display: inline-block;
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 100px;
  padding: 16px 36px;
}

.closing-statement p {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
}

/* ===================================
   FOOTER
   =================================== */

.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--white);
}

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

.footer-copy {
  font-size: 12px;
  color: var(--slate);
  margin-top: 8px;
}

/* ===================================
   RESPONSIVE
   =================================== */

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

  .hero-right {
    max-width: 480px;
  }

  .problem-stats {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 48px 0 56px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .step-num {
    font-size: 36px;
    min-width: 52px;
  }

  .how-step {
    gap: 24px;
    padding: 28px 0;
  }

  .pricing-amount {
    font-size: 44px;
  }

  .problem, .how, .features, .outcomes, .closing {
    padding: 56px 0;
  }
}