/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Rust / copper palette */
  --rust: #C4713B;
  --rust-dark: #A85E2D;
  --rust-light: #D4844D;
  --rust-subtle: rgba(196,113,59,0.1);
  --rust-border: rgba(196,113,59,0.25);
  --rust-glow: rgba(196,113,59,0.35);

  /* Dark palette */
  --charcoal: #111111;
  --coal: #1A1A1A;
  --coal-mid: #242424;
  --coal-light: #2E2E2E;

  /* Text */
  --off-white: #F5F5F5;
  --warm-gray: #B0A898;
  --muted: #888888;
  --faint: rgba(255,255,255,0.06);

  /* Amber kept for badge contrast */
  --amber: #F59E0B;
}

html { scroll-behavior: smooth; }

body {
  background: var(--charcoal);
  color: var(--off-white);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Syne', system-ui, sans-serif;
  color: var(--off-white);
  line-height: 1.15;
}

a { color: inherit; }

/* ===== NAV ===== */
.nav-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--warm-gray);
  transition: color 0.15s;
  margin-right: 16px;
}
.nav-link:hover { color: var(--off-white); }
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17,17,17,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--faint);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--off-white);
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.nav-badge {
  font-size: 12px;
  color: var(--rust-light);
  background: var(--rust-subtle);
  border: 1px solid var(--rust-border);
  padding: 4px 10px;
  border-radius: 100px;
  font-weight: 600;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 24px 96px;
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--rust);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rust);
  flex-shrink: 0;
}

.hero-headline {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--off-white);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.accent-word {
  font-style: normal;
  color: var(--rust-light);
}

.hero-lede {
  font-size: 18px;
  color: var(--warm-gray);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 480px;
}

.hero-actions {
  margin-bottom: 36px;
}

.action-price {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 8px;
}

/* ===== CTA BUTTONS ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  border: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

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

.cta-btn--primary {
  background: var(--rust);
  color: #fff;
  box-shadow: 0 4px 16px var(--rust-glow);
}
.cta-btn--primary:hover {
  background: var(--rust-dark);
  box-shadow: 0 6px 20px rgba(196,113,59,0.45);
}

.cta-btn--center { margin: 0 auto; display: block; width: fit-content; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  background: var(--rust);
  color: #fff;
  border-radius: 7px;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  margin-right: 12px;
}
.nav-cta:hover { background: var(--rust-dark); transform: translateY(-1px); }

/* Hero specs */
.hero-specs {
  display: flex;
  align-items: center;
  gap: 20px;
}

.spec { display: flex; flex-direction: column; }

.spec-val {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--rust-light);
  line-height: 1;
  margin-bottom: 3px;
}

.spec-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-divider {
  width: 1px;
  height: 36px;
  background: var(--coal-light);
  flex-shrink: 0;
}

/* ===== QUOTE CARD ===== */
.quote-card {
  background: var(--coal-mid);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}

.quote-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.quote-card-from {
  display: flex;
  align-items: center;
  gap: 12px;
}

.biz-initial {
  width: 40px;
  height: 40px;
  background: var(--rust);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}

.biz-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--off-white);
}

.biz-tag {
  font-size: 12px;
  color: var(--muted);
  margin-top: 1px;
}

.quote-status {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quote-status.sent { background: var(--rust-subtle); color: var(--rust-light); }

.quote-line-items { margin-bottom: 16px; }

.line-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.li-name { font-size: 14px; color: var(--warm-gray); }
.li-price { font-size: 14px; font-weight: 600; color: var(--off-white); }

.quote-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--warm-gray);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}

.quote-total-val { font-size: 18px; color: var(--off-white); }

.quote-followups {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.followup-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--rust-light);
  background: var(--rust-subtle);
  border: 1px solid var(--rust-border);
  padding: 4px 8px;
  border-radius: 6px;
}

.quote-footer-note {
  font-size: 11px;
  color: var(--muted);
}

/* Hero image wrapper */
.hero-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.6);
}
.hero-image-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* ===== SECTIONS ===== */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rust);
  margin-bottom: 14px;
}
.section-heading {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  color: var(--warm-gray);
  max-width: 560px;
  line-height: 1.65;
}

/* ===== WORKFLOW ===== */
.workflow {
  padding: 96px 24px;
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--coal) 100%);
}

.workflow .section-heading { max-width: 540px; }
.workflow .section-sub { margin-bottom: 64px; }

.workflow-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.step { padding: 0 8px; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--rust);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--off-white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.6;
  margin-bottom: 20px;
}
.step-icon { margin-top: 4px; }

.step-connector {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, var(--coal-light), var(--rust), var(--coal-light));
  margin-top: 60px;
  flex-shrink: 0;
}

/* ===== PROOF ===== */
.proof { padding: 96px 24px; background: var(--coal); }

.testimonials {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 48px;
}

.testimonial {
  background: var(--coal-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 28px;
}

.testimonial-center {
  border-color: var(--rust-border);
  background: linear-gradient(135deg, var(--rust-subtle) 0%, var(--coal-mid) 60%);
}

.testimonial-quote {
  font-size: 15px;
  color: var(--warm-gray);
  line-height: 1.65;
  margin-bottom: 20px;
}

.testimonial-quote strong { color: var(--off-white); font-weight: 600; }

.testimonial-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--rust);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  flex-shrink: 0;
}

.author-name { font-size: 14px; font-weight: 600; color: var(--off-white); }
.author-role { font-size: 12px; color: var(--muted); margin-top: 1px; }

.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--muted);
}

/* ===== COMPARE ===== */
.compare { padding: 96px 24px; }

.compare .section-heading { max-width: 600px; }
.compare .section-sub { margin-bottom: 48px; }

.compare-table {
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  overflow: hidden;
  max-width: 900px;
}

.compare-header {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  background: var(--coal-mid);
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.compare-col { display: flex; align-items: center; justify-content: center; }
.compare-col-fd { color: var(--rust); font-weight: 700; font-family: 'Syne', sans-serif; }

.compare-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.15s;
}

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

.compare-feature { color: var(--warm-gray); font-weight: 500; }

.check-good { color: var(--rust); }
.check-bad { color: var(--coal-light); }
.check-ok { color: var(--muted); }

/* ===== PRICING ===== */
.pricing {
  padding: 96px 24px;
  background: linear-gradient(180deg, var(--coal) 0%, var(--charcoal) 100%);
}
.pricing .section-sub {
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--coal-mid);
  border: 1px solid var(--rust-border);
  border-radius: 20px;
  padding: 40px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(196,113,59,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-card-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rust-light);
  background: var(--rust-subtle);
  border: 1px solid var(--rust-border);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}

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

.pricing-period {
  font-size: 20px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 4px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--warm-gray);
}

.pricing-anchor-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--warm-gray);
  text-decoration: none;
  transition: color 0.15s;
}
.pricing-anchor-link:hover { color: var(--rust-light); }

.pricing-fine {
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* ===== OBJECTIONS ===== */
.objections { padding: 96px 24px; background: var(--charcoal); }
.objections-heading {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--off-white);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 20px;
}
.objections-sub {
  font-size: 17px;
  color: var(--warm-gray);
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ===== CLOSING ===== */
.closing { padding: 80px 24px 96px; }
.closing .section-inner { display: flex; justify-content: center; }
.closing-card {
  text-align: center;
  padding: 64px 48px;
  background: linear-gradient(135deg, var(--rust-subtle) 0%, transparent 60%);
  border: 1px solid var(--rust-border);
  border-radius: 20px;
  max-width: 560px;
  width: 100%;
}

.closing-tag {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rust);
  margin-bottom: 20px;
}

.closing-headline {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.closing-price {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 20px;
}

.checklist-cta {
  margin-top: 8px;
}
.checklist-cta a {
  font-size: 13px;
  color: var(--rust-light);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s;
}
.checklist-cta a:hover { color: var(--rust); }

/* ===== FOOTER ===== */
.site-footer {
  padding: 32px 24px;
  border-top: 1px solid var(--faint);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: var(--off-white);
  letter-spacing: -0.02em;
}

.footer-meta {
  font-size: 13px;
  color: var(--muted);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .workflow-steps { grid-template-columns: 1fr; gap: 32px; }
  .step-connector { width: 40px; height: 1px; margin: 0; }
  .step-connector { transform: rotate(90deg); }
  .testimonials { grid-template-columns: 1fr; }
  .compare-header { display: none; }
  .compare-row { grid-template-columns: 2fr 1fr 1fr; gap: 8px; }
  .compare-col:nth-child(4), .compare-col:nth-child(5) { display: none; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .closing-card { padding: 40px 24px; }
  .hero { padding: 56px 24px 64px; }
  .hero-headline { font-size: 36px; }
}

@media (max-width: 600px) {
  .hero-specs { gap: 14px; }
  .spec-val { font-size: 18px; }
  .pricing-card { padding: 28px 24px; }
  .pricing-price { font-size: 44px; }
  .trust-badges { gap: 14px; }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--coal-light); border-radius: 3px; }

/* ===== SELECTION ===== */
::selection { background: rgba(196,113,59,0.25); color: var(--off-white); }