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

:root {
  --navy: #0B1D2E;
  --amber: #E8912D;
  --cream: #F7F4EE;
  --dark: #0A0E14;
  --muted: #5A6B7A;
  --light: #E8E4DC;
  --white: #FDFCF9;
  --card-bg: #111B26;
}

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

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

h1, h2, h3, h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
}

/* === NAV === */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid rgba(232, 145, 45, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  padding: 80px 48px 60px;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
}

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 48px;
  line-height: 1.7;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 32px;
}

.proof-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.proof-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--amber);
}

.proof-label {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.4;
  max-width: 90px;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(232, 145, 45, 0.25);
}

/* Lead card stack */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.lead-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  width: 100%;
}

.lead-card {
  background: var(--card-bg);
  border: 1px solid rgba(232, 145, 45, 0.2);
  border-radius: 16px;
  padding: 20px 24px;
  position: relative;
}

.lead-card-1 { transform: translateX(0px); z-index: 3; }
.lead-card-2 { transform: translateX(12px) translateY(-8px); z-index: 2; opacity: 0.75; filter: blur(0.5px); }
.lead-card-3 { transform: translateX(24px) translateY(-16px); z-index: 1; opacity: 0.45; filter: blur(1px); }

.lead-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.lead-status {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(232, 145, 45, 0.12);
  padding: 3px 8px;
  border-radius: 20px;
}

.lead-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 2px;
}

.lead-role {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.lead-detail {
  font-size: 0.78rem;
  color: rgba(232, 145, 45, 0.7);
  margin-bottom: 4px;
}

.lead-value {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cream);
}

/* === OUTCOMES === */
.outcomes {
  padding: 80px 48px;
  background: linear-gradient(180deg, var(--dark) 0%, #0F1D2B 100%);
}

.outcomes-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.outcomes-header h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 16px;
}

.outcomes-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.outcome-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(232, 145, 45, 0.12);
  border-radius: 20px;
  padding: 32px 28px;
  transition: border-color 0.3s;
}

.outcome-card:hover {
  border-color: rgba(232, 145, 45, 0.35);
}

.outcome-icon {
  margin-bottom: 20px;
}

.outcome-card h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 12px;
}

.outcome-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* === HOW === */
.how {
  padding: 80px 48px;
  background: var(--dark);
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-header h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.how-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto 56px;
}

.step {
  flex: 1;
  padding: 32px 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(232, 145, 45, 0.15);
  border-radius: 20px;
  position: relative;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--amber);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  display: block;
}

.step-body h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}

.step-body p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.step-connector {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(232,145,45,0.4), rgba(232,145,45,0.1));
  align-self: center;
  flex-shrink: 0;
  margin-top: 60px;
}

.how-pricing {
  text-align: center;
}

.pricing-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  background: rgba(232, 145, 45, 0.08);
  border: 1px solid rgba(232, 145, 45, 0.3);
  border-radius: 100px;
  padding: 12px 28px;
  margin-bottom: 12px;
}

.pricing-from {
  font-size: 0.85rem;
  color: var(--muted);
}

.pricing-amount {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--amber);
}

.pricing-per {
  font-size: 0.85rem;
  color: var(--muted);
}

.pricing-note {
  font-size: 0.82rem;
  color: var(--muted);
}

/* === NICHES === */
.niches {
  padding: 80px 48px;
  background: linear-gradient(180deg, #0F1D2B 0%, var(--dark) 100%);
}

.niches-header {
  text-align: center;
  margin-bottom: 56px;
}

.niches-header h2 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 14px;
}

.niches-header p {
  color: var(--muted);
  font-size: 1.05rem;
}

.niches-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.niche-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(232, 145, 45, 0.1);
  border-radius: 16px;
  padding: 24px 28px;
}

.niche-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.niche-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.niche-body strong {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.niche-body span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

.niches-cta {
  text-align: center;
}

.niches-cta p {
  font-size: 0.85rem;
  color: rgba(232, 145, 45, 0.5);
  font-style: italic;
}

/* === CLOSING === */
.closing {
  padding: 100px 48px;
  background: var(--dark);
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232, 145, 45, 0.4), transparent);
}

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

.closing h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.closing > .closing-inner > p {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 56px;
}

.closing-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.cstat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.cstat-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--amber);
}

.cstat-label {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 130px;
  text-align: center;
  line-height: 1.5;
}

.closing-hook {
  font-family: 'Syne', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(232, 145, 45, 0.6);
  font-style: italic;
}

/* === FOOTER === */
.footer {
  padding: 48px;
  border-top: 1px solid rgba(232, 145, 45, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

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

.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(90, 107, 122, 0.6);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  
  .hero { padding: 60px 24px 48px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { display: none; }
  .hero-proof { gap: 20px; }
  
  .outcomes { padding: 60px 24px; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  
  .how { padding: 60px 24px; }
  .how-steps { flex-direction: column; }
  .step-connector { display: none; }
  
  .niches { padding: 60px 24px; }
  .niches-list { grid-template-columns: 1fr; }
  
  .closing { padding: 80px 24px; }
  .closing-stats { gap: 40px; }
}

@media (max-width: 480px) {
  .outcomes-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2.2rem; }
  .closing-stats { gap: 32px; }
  .proof-item:nth-child(2), .proof-item:nth-child(3) { display: none; }
}