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

:root {
  --green-darkest: #07120B;
  --green-deep: #0A1F12;
  --green-primary: #0D2818;
  --green-mid: #143326;
  --green-text: #5A8A6A;
  --amber: #D4822A;
  --amber-light: #E8A03A;
  --amber-dim: rgba(212, 130, 42, 0.12);
  --cream: #F4EFE6;
  --cream-dark: #EAE3D6;
  --cream-mid: #D8D0C2;
  --white: #FFFFFF;
  --text-dark: #1A1A18;
  --text-mid: #5C5C54;
  --text-light: #9A9A8C;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

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

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.section-tag.light { color: var(--amber-light); }

/* ==================== HERO ==================== */
.hero {
  background: var(--green-deep);
  color: var(--white);
  padding: 80px 48px 100px;
  position: relative;
  overflow: hidden;
}

.hero-visual-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212,130,42,0.06), transparent);
}
.hgl-1 { left: 25%; }
.hgl-2 { left: 50%; }
.hgl-3 { left: 75%; }

.hero-scan-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(212,130,42,0.3) 40%, rgba(212,130,42,0.15) 60%, transparent);
  left: 60%;
  animation: scanMove 4s ease-in-out infinite;
}
@keyframes scanMove {
  0%, 100% { left: 30%; }
  50% { left: 75%; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: var(--amber-dim);
  border: 1px solid rgba(212,130,42,0.3);
  color: var(--amber-light);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero-headline {
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-lede {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 16px;
  max-width: 520px;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
}
.hero-sub strong { color: var(--amber-light); }

/* ==================== HERO CARD ==================== */
.hero-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(20px);
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,130,42,0.1) inset;
}

.card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-label::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.card-car {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 4px;
}

.card-location {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}

.card-price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.card-asking {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.card-badge {
  background: var(--amber);
  color: var(--green-darkest);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
}

.card-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 16px;
}

.card-metrics { display: flex; flex-direction: column; gap: 10px; }

.card-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.card-metric-label { color: rgba(255,255,255,0.5); }
.card-metric-value { color: rgba(255,255,255,0.85); font-weight: 500; }
.card-metric-highlight {
  font-size: 16px;
  font-weight: 700;
  color: var(--amber-light);
}

.card-footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.card-footer strong { color: rgba(255,255,255,0.8); }
.card-above { color: var(--amber-light); font-weight: 600; }

/* ==================== STATS STRIP ==================== */
.stats-strip {
  background: var(--green-primary);
  padding: 40px 48px;
  border-top: 1px solid rgba(212,130,42,0.2);
  border-bottom: 1px solid rgba(212,130,42,0.2);
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 32px;
}

.stat-item { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--amber-light);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.stat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  max-width: 160px;
  margin: 0 auto;
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ==================== PROCESS SECTION ==================== */
.process {
  background: var(--cream);
  padding: 100px 48px;
}

.process-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.process-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.process-sub {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
}

.process-step {
  position: relative;
}

.step-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: rgba(212,130,42,0.08);
  position: absolute;
  top: -24px;
  left: -8px;
  line-height: 1;
}

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--cream-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid var(--cream-mid);
}

.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.process-step p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ==================== FOR FLIPPERS SECTION ==================== */
.for-flippers {
  background: var(--green-deep);
  padding: 100px 48px;
  position: relative;
}

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

.for-flippers h2 {
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.for-flippers h2 em { color: var(--amber-light); font-style: normal; }

.fp-text > p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 32px;
}

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

.fp-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.fp-features li svg { flex-shrink: 0; margin-top: 2px; }

/* ==================== PHONE MOCKUP ==================== */
.fp-visual {
  display: flex;
  justify-content: center;
}

.fp-phone {
  width: 280px;
  background: #0D1F0A;
  border-radius: 36px;
  padding: 4px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: #0D1F0A;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 4px;
}

.phone-content {
  background: #0A1A0E;
  border-radius: 32px;
  padding: 20px 16px 16px;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.phone-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
}

.phone-status {
  font-size: 10px;
  font-weight: 700;
  color: var(--amber);
  background: rgba(212,130,42,0.15);
  padding: 3px 8px;
  border-radius: 10px;
}

.phone-alert-label {
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}

.phone-deal-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 16px;
}

.pdc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.pdc-badge {
  background: var(--amber);
  color: #07120B;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

.pdc-time { font-size: 10px; color: rgba(255,255,255,0.35); }

.pdc-car {
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.pdc-location { font-size: 11px; color: rgba(255,255,255,0.4); margin-bottom: 12px; }

.pdc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.pdc-price { font-size: 18px; font-weight: 700; color: var(--white); }
.pdc-margin { font-size: 12px; font-weight: 600; color: var(--amber-light); }

.pdc-bar-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.pdc-bar-label { font-size: 10px; color: rgba(255,255,255,0.4); }

.pdc-bar {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.pdc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  border-radius: 3px;
}

.pdc-score { font-size: 11px; font-weight: 700; color: var(--amber-light); }

.pdc-sources {
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  line-height: 1.5;
}

.phone-footer {
  margin-top: 14px;
  text-align: center;
}

.phone-contact {
  display: inline-block;
  background: var(--amber);
  color: #07120B;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 8px;
  width: 100%;
  text-align: center;
}

/* ==================== ARBITRAGE SECTION ==================== */
.arbitrage {
  background: var(--cream);
  padding: 100px 48px;
}

.arb-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.arb-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.arb-sub {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
}

.arb-comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}

.arb-city-name {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 10px;
}

.arb-price {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.arb-gain { color: #1A6B3C; }

.arb-label {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.arb-detail {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

.arb-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.arb-transport {
  font-size: 11px;
  color: var(--text-light);
  background: var(--cream);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}

.arb-result {
  text-align: center;
  padding-left: 32px;
  border-left: 1px solid var(--cream-dark);
}

.arb-result-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 8px;
}

.arb-result-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--amber);
  margin-bottom: 6px;
}

.arb-result-sub {
  font-size: 12px;
  color: var(--text-light);
}

.arb-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 32px;
  font-style: italic;
}

/* ==================== CLOSING SECTION ==================== */
.closing {
  background: var(--green-primary);
  padding: 100px 48px;
  border-top: 1px solid rgba(212,130,42,0.15);
}

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

.closing-inner h2 {
  font-size: 44px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.closing-body {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 48px;
}

.closing-cta-block {
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 36px 40px;
}

.closing-cta-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber-light);
  margin-bottom: 24px;
}

.closing-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.closing-check {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
}

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--green-darkest);
  padding: 40px 48px;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

.footer-meta p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: right;
}
.footer-note { margin-top: 4px; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .fp-inner { grid-template-columns: 1fr; gap: 48px; }
  .fp-visual { justify-content: flex-start; }
  .arb-comparison { grid-template-columns: 1fr 1fr; }
  .arb-arrow { display: none; }
}

@media (max-width: 768px) {
  .hero { padding: 60px 24px 80px; }
  .stats-strip { padding: 32px 24px; }
  .stats-grid { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .stat-item { flex: 1 1 45%; }
  .process { padding: 72px 24px; }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .for-flippers { padding: 72px 24px; }
  .arbitrage { padding: 72px 24px; }
  .arb-comparison { grid-template-columns: 1fr; padding: 32px 24px; }
  .arb-result { border-left: none; padding-left: 0; border-top: 1px solid var(--cream-dark); padding-top: 24px; }
  .closing { padding: 72px 24px; }
  .closing-cta-block { padding: 28px 24px; }
  .footer-inner { flex-direction: column; gap: 16px; }
  .footer-meta p { text-align: center; }
}
