:root {
  --bg: #0D0D0D;
  --bg-2: #111111;
  --bg-3: #161616;
  --fg: #F5F0E8;
  --fg-muted: #9A9488;
  --accent: #C4A35A;
  --accent-dim: rgba(196, 163, 90, 0.15);
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ff-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* — NAV — */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 5%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-mark {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.brand-name {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-link {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--accent); }

.nav-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  font-weight: 400;
}

/* — HERO — */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5% 4rem;
  position: relative;
  background: var(--bg);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero-overline {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.75rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 420px;
  line-height: 1.7;
}

/* Car Visual */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
  position: relative;
}
.car-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.car-frame {
  position: relative;
  width: 380px;
  height: 160px;
}
.car-body {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  height: 70px;
  background: linear-gradient(90deg, #1a1a1a 0%, #2a2a2a 40%, #1e1e1e 100%);
  border-radius: 4px 4px 2px 2px;
  box-shadow: 0 0 40px rgba(196, 163, 90, 0.2), 0 4px 20px rgba(0,0,0,0.8);
}
.car-hood {
  position: absolute;
  bottom: 120px;
  left: 40px;
  right: 60px;
  height: 40px;
  background: linear-gradient(135deg, #222 0%, #333 50%, #1a1a1a 100%);
  border-radius: 4px 20px 4px 4px;
  box-shadow: inset 0 -2px 8px rgba(255,255,255,0.05);
}
.car-wheel {
  position: absolute;
  bottom: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #444, #111);
  box-shadow: 0 0 0 6px #222, 0 0 0 8px #C4A35A, 0 4px 12px rgba(0,0,0,0.8);
}
.car-wheel--front { right: 60px; }
.car-wheel--rear { left: 30px; }
.car-wheel::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #333, #0a0a0a);
}
.car-wheel::before {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 1px solid rgba(196, 163, 90, 0.3);
}
.car-reflection {
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 80px;
  background: linear-gradient(to bottom, rgba(196,163,90,0.08) 0%, transparent 100%);
  border-radius: 0 0 4px 4px;
}
.car-glow {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 100px;
  background: radial-gradient(ellipse, rgba(196,163,90,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 5%;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.scroll-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--fg-muted);
}
.scroll-text {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* — PROBLEM — */
.problem {
  background: var(--bg-2);
  padding: 7rem 5%;
}
.problem-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1px 1fr;
  gap: 4rem;
  align-items: center;
}
.problem-stat {
  text-align: center;
}
.stat-number {
  display: block;
  font-family: var(--ff-display);
  font-size: 5rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.problem-divider {
  width: 1px;
  height: 160px;
  background: rgba(196, 163, 90, 0.25);
}
.problem-headline {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.problem-body {
  color: var(--fg-muted);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* — SERVICES — */
.services {
  padding: 7rem 5%;
  background: var(--bg);
}
.services-header {
  max-width: 1100px;
  margin: 0 auto 4rem;
}
.services-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.services-sub {
  color: var(--fg-muted);
  font-size: 1rem;
}
.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(196, 163, 90, 0.1);
}
.service-card {
  background: var(--bg);
  padding: 2.5rem 2rem;
}
.service-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.service-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}
.service-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* — PACKAGES — */
.packages {
  padding: 7rem 5%;
  background: var(--bg-2);
}
.packages-header {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
}
.packages-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
}
.packages-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.package-card {
  background: var(--bg-3);
  border: 1px solid rgba(196, 163, 90, 0.15);
  padding: 3rem;
  position: relative;
  transition: border-color 0.3s;
}
.package-card--featured {
  border-color: var(--accent);
}
.package-card--featured .package-name,
.package-card--featured .package-price {
  color: var(--accent);
}
.package-badge {
  position: absolute;
  top: -1px;
  right: 2rem;
  background: var(--accent);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
}
.package-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.package-name {
  font-family: var(--ff-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
  color: var(--fg);
}
.package-price {
  font-family: var(--ff-display);
  font-size: 2.25rem;
  font-weight: 300;
  color: var(--fg);
  margin-bottom: 2rem;
}
.price-unit {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-family: var(--ff-body);
}
.package-features {
  list-style: none;
  margin-bottom: 2rem;
}
.package-features li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(196, 163, 90, 0.08);
  line-height: 1.5;
}
.package-features li::before {
  content: '—';
  color: var(--accent);
  margin-right: 0.75rem;
  font-size: 0.75rem;
}
.package-note {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-style: italic;
  line-height: 1.6;
}

/* — PROCESS — */
.process {
  padding: 7rem 5%;
  background: var(--bg);
}
.process-header {
  max-width: 1100px;
  margin: 0 auto 4rem;
}
.process-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
}
.process-steps {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step {
  flex: 1;
}
.step-num {
  display: block;
  font-family: var(--ff-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(196, 163, 90, 0.25);
  line-height: 1;
  margin-bottom: 1rem;
}
.step-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.step-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
  padding-right: 2rem;
}
.step-connector {
  width: 80px;
  flex-shrink: 0;
  height: 1px;
  background: rgba(196, 163, 90, 0.2);
  margin-top: 3rem;
  align-self: center;
}

/* — MANIFESTO — */
.manifesto {
  padding: 8rem 5%;
  background: var(--bg-2);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.8vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--accent);
  line-height: 1.3;
  margin-bottom: 2.5rem;
  border-left: 2px solid var(--accent);
  padding-left: 2rem;
}
.manifesto-body {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* — CLOSING — */
.closing {
  padding: 9rem 5%;
  background: var(--bg);
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* — FOOTER — */
.footer {
  padding: 4rem 5%;
  border-top: 1px solid rgba(196, 163, 90, 0.1);
  background: var(--bg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(154, 148, 136, 0.5);
}

/* — PORTFOLIO PAGE — */
.pf-hero {
  padding: 10rem 5% 6rem;
  background: var(--bg);
  border-bottom: 1px solid rgba(196, 163, 90, 0.1);
}
.pf-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.pf-overline {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.pf-headline {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1rem;
  line-height: 1.05;
}
.pf-subhead {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 3.5rem;
}
.pf-stats-row {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid rgba(196, 163, 90, 0.15);
}
.pf-stat {}
.pf-stat-val {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pf-stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

/* Comparison sections */
.comparison {
  padding: 6rem 5%;
  background: var(--bg);
  border-bottom: 1px solid rgba(196, 163, 90, 0.08);
}
.comparison--alt {
  background: var(--bg-2);
}
.comparison-header {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.comparison-vehicle-badge {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--fg);
  letter-spacing: 0.02em;
}
.comparison-price {
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}
.comparison-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

/* Listing cards */
.listing-card {
  padding: 2rem;
  border: 1px solid rgba(196, 163, 90, 0.12);
}
.listing-card--bad {
  background: rgba(20, 18, 16, 0.6);
  border-color: rgba(196, 163, 90, 0.08);
}
.listing-card--good {
  background: rgba(30, 25, 15, 0.5);
  border-color: rgba(196, 163, 90, 0.2);
}
.listing-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.listing-card-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  font-weight: 500;
}
.listing-card-label--bad {
  background: rgba(255, 80, 80, 0.1);
  color: #ff6b6b;
  border: 1px solid rgba(255, 80, 80, 0.15);
}
.listing-card-label--good {
  background: rgba(196, 163, 90, 0.15);
  color: var(--accent);
  border: 1px solid rgba(196, 163, 90, 0.3);
}
.listing-card-score {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-family: var(--ff-body);
}
.listing-card-score--good { color: var(--accent); }

/* Photo placeholders — CSS-only car silhouettes */
.listing-photo-placeholder {
  height: 220px;
  border-radius: 2px;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}
.listing-photo-placeholder--bad {
  background: linear-gradient(145deg, #1a1714 0%, #141210 100%);
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.listing-photo-placeholder--good {
  background: linear-gradient(160deg, #1c1812 0%, #0f0d0a 100%);
  border: 1px solid rgba(196, 163, 90, 0.2);
  box-shadow: 0 0 40px rgba(196, 163, 90, 0.06);
}

/* Car silhouette — bad version (parking garage feel) */
.pf-car-silhouette-bad {
  display: flex;
  align-items: flex-end;
  gap: 0;
  opacity: 0.5;
}
.pf-car-silhouette-bad .body {
  width: 160px;
  height: 45px;
  background: linear-gradient(135deg, #3a3530 0%, #2d2a26 100%);
  border-radius: 3px 3px 1px 1px;
  position: relative;
}
.pf-car-silhouette-bad .hood {
  width: 60px;
  height: 30px;
  background: #3a3530;
  border-radius: 4px 12px 1px 1px;
  position: relative;
  top: 15px;
}
.pf-car-silhouette-bad .wheel {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #222;
  position: relative;
  bottom: -14px;
}
.pf-car-silhouette-bad .wheel::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.1);
}

/* Car silhouette — good version (cinematic studio feel) */
.pf-car-silhouette-good {
  display: flex;
  align-items: flex-end;
  gap: 0;
}
.pf-car-silhouette-good .body {
  width: 180px;
  height: 55px;
  background: linear-gradient(135deg, #2a2826 0%, #1e1c1a 40%, #3a3836 100%);
  border-radius: 4px 4px 2px 2px;
  box-shadow: 0 0 30px rgba(196, 163, 90, 0.15), 0 6px 20px rgba(0,0,0,0.6);
  position: relative;
}
.pf-car-silhouette-good .body::after {
  content: '';
  position: absolute;
  top: -18px;
  left: 50px;
  width: 80px;
  height: 22px;
  background: linear-gradient(135deg, #2e2c2a, #3a3836);
  border-radius: 4px 14px 2px 2px;
}
.pf-car-silhouette-good .wheel {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #333, #0d0d0d);
  box-shadow: 0 0 0 5px #1a1a1a, 0 0 0 6px rgba(196, 163, 90, 0.4), 0 4px 12px rgba(0,0,0,0.7);
  position: relative;
  bottom: -18px;
}
.pf-car-silhouette-good .wheel::after {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a1a1a, #0a0a0a);
}
.pf-car-silhouette-good .wheel::before {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(196, 163, 90, 0.3);
}
.pf-car-silhouette-good .reflection {
  position: absolute;
  bottom: -30px;
  left: 10px;
  width: 160px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(196, 163, 90, 0.1) 0%, transparent 100%);
  border-radius: 0 0 4px 4px;
}

.photo-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  text-align: center;
  padding: 0 1.5rem;
  line-height: 1.5;
}
.photo-bad-details, .photo-good-details {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.photo-bad-details span {
  font-size: 0.65rem;
  color: #ff6b6b;
  opacity: 0.7;
  letter-spacing: 0.05em;
}
.photo-good-details span {
  font-size: 0.65rem;
  color: var(--accent);
  opacity: 0.8;
  letter-spacing: 0.05em;
}

/* Listing copy */
.listing-copy {}
.listing-copy-title {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}
.listing-copy-title--bad { color: #9a9488; }
.listing-copy-title--good { color: var(--fg); }
.listing-copy-body {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.listing-copy-body--bad { color: #6a6258; }
.listing-copy-body--good { color: var(--fg-muted); }

/* Specs table */
.listing-specs {
  border-top: 1px solid rgba(196, 163, 90, 0.08);
  padding-top: 1rem;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(196, 163, 90, 0.05);
}
.spec-row:last-child { border-bottom: none; }
.spec-key {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  opacity: 0.6;
}
.spec-val {
  font-size: 0.82rem;
  color: var(--fg-muted);
}
.listing-specs--bad .spec-val { color: #5a5248; }
.listing-specs--good .spec-val { color: var(--fg); }

/* Outcome row */
.comparison-outcome {
  max-width: 1100px;
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(196, 163, 90, 0.08);
}
.outcome-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
  opacity: 0.6;
}
.outcome-row {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.outcome {
  flex: 1;
  padding: 1.25rem 1.5rem;
  border-radius: 2px;
}
.outcome--bad {
  background: rgba(255, 80, 80, 0.04);
  border: 1px solid rgba(255, 80, 80, 0.12);
}
.outcome--good {
  background: rgba(196, 163, 90, 0.06);
  border: 1px solid rgba(196, 163, 90, 0.2);
}
.outcome-val {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 0.35rem;
}
.outcome--bad .outcome-val { color: #ff6b6b; }
.outcome-sub {
  font-size: 0.78rem;
  color: var(--fg-muted);
  opacity: 0.7;
}
.outcome-arrow {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  color: rgba(196, 163, 90, 0.3);
  flex-shrink: 0;
}

/* CTA section */
.pf-cta {
  padding: 8rem 5%;
  background: var(--bg-2);
  text-align: center;
  border-top: 1px solid rgba(196, 163, 90, 0.1);
}
.pf-cta-inner {
  max-width: 700px;
  margin: 0 auto;
}
.pf-cta-headline {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.25rem;
  color: var(--fg);
}
.pf-cta-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.pf-cta-actions {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.pf-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
  cursor: pointer;
}
.pf-btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.pf-btn--primary:hover {
  background: #d4b36a;
  transform: translateY(-1px);
}
.pf-btn--ghost {
  border: 1px solid rgba(196, 163, 90, 0.3);
  color: var(--fg-muted);
}
.pf-btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.pf-cta-note {
  font-size: 0.78rem;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* — RESPONSIVE — */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-right { display: none; }
  .hero-headline { font-size: 3rem; }
  .problem-inner { grid-template-columns: 1fr; gap: 2rem; }
  .problem-divider { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 2rem; }
  .step-connector { width: 40px; height: 1px; margin-top: 0; }
  .footer-inner { flex-direction: column; gap: 1rem; text-align: center; }
  /* Portfolio: stack cards on mobile */
  .comparison-grid { grid-template-columns: 1fr; gap: 1rem; }
  .comparison-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .comparison-vehicle-badge { font-size: 1.2rem; }
  .lift-chart { gap: 0.75rem; }
  .lift-bar-val { font-size: 0.8rem; }
  .outcome-row { gap: 1.5rem; }
  .pf-cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .nav-tagline { display: none; }
  .hero { padding-top: 7rem; }
  .pf-stats-row { gap: 2rem; }
  .comparison { padding: 4rem 5%; }
  .listing-card { padding: 1.5rem; }
  .listing-photo-placeholder { height: 160px; }
  .pf-car-silhouette-bad .body { width: 110px; height: 32px; }
  .pf-car-silhouette-good .body { width: 130px; height: 42px; }
}

/* — HOVER ANIMATIONS — */
.listing-card--bad:hover {
  border-color: rgba(255, 80, 80, 0.2);
  transform: translateY(-2px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.listing-card--good:hover {
  border-color: rgba(196, 163, 90, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(196, 163, 90, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.pf-btn--primary:active { transform: translateY(0) scale(0.98); }
.pf-btn--ghost:hover { transform: translateY(-1px); }
.pf-stat { transition: transform 0.2s ease; }
.pf-stat:hover { transform: translateY(-3px); }

/* Nav link underline on hover */
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav-link:hover::after { transform: scaleX(1); }

/* Comparison section dividers with accent line */
.comparison { position: relative; }
.comparison::before {
  content: '';
  position: absolute;
  top: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,163,90,0.2), transparent);
}

/* Smooth section entry on scroll */
.comparison { scroll-margin-top: 80px; }
.pf-hero, .pf-cta { scroll-margin-top: 80px; }