:root {
  --ink: #0E1A14;
  --paper: #F7F4EC;
  --paper-2: #EFEAD9;
  --kiwi: #1F5F3F;
  --kiwi-dark: #14442C;
  --kiwi-light: #E4EFE7;
  --rust: #C2410C;
  --gold: #D4A017;
  --muted: #6B6760;
  --line: rgba(14, 26, 20, 0.12);
  --line-2: rgba(14, 26, 20, 0.06);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter Tight', -apple-system, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }
.display { font-family: 'Fraunces', Georgia, serif; font-weight: 500; letter-spacing: -0.02em; line-height: 1.05; }

a { color: var(--kiwi); text-decoration: none; }
a:hover { text-decoration: underline; }

/* === ANNOUNCEMENT BAR === */
.marquee {
  background: var(--ink);
  color: var(--paper);
  padding: 10px 0;
  font-size: 13px;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: scroll 40s linear infinite;
  padding-left: 100%;
}
.marquee-track span { margin-right: 60px; }
.marquee-track .dot { color: var(--gold); margin-right: 60px; }
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* === HEADER === */
header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo:hover { text-decoration: none; }
.logo-mark {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg {
  width: 100%;
  height: 100%;
  display: block;
}
.logo-mark .bar-1 {
  fill: var(--ink);
  opacity: 0.22;
}
.logo-mark .bar-2 {
  fill: var(--ink);
  opacity: 0.42;
}
.logo-mark .bar-3 {
  fill: var(--ink);
  opacity: 0.7;
}
.logo-mark .bar-top {
  fill: var(--kiwi);
}
.logo-mark .winner-dot {
  fill: var(--gold);
}
/* Footer logo on dark background — invert the bars */
.footer-brand .logo-mark .bar-1 {
  fill: var(--paper);
  opacity: 0.22;
}
.footer-brand .logo-mark .bar-2 {
  fill: var(--paper);
  opacity: 0.42;
}
.footer-brand .logo-mark .bar-3 {
  fill: var(--paper);
  opacity: 0.7;
}
.footer-brand .logo-mark .bar-top {
  fill: var(--kiwi);
}
.footer-brand .logo-mark .winner-dot {
  fill: var(--gold);
}
nav ul {
  display: flex;
  list-style: none;
  gap: 36px;
  align-items: center;
}
nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover { color: var(--kiwi); text-decoration: none; }
.btn-dealer {
  border: 1px solid var(--ink);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}
.btn-dealer:hover {
  background: var(--ink);
  color: var(--paper) !important;
}

/* === HERO === */
.hero {
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--kiwi);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--kiwi);
}
h1.hero-title {
  font-size: clamp(44px, 6vw, 84px);
  margin-bottom: 28px;
}
h1 .underline-word {
  position: relative;
  display: inline-block;
  color: var(--kiwi);
  font-style: italic;
}
h1 .underline-word::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 8px;
  background: var(--gold);
  opacity: 0.5;
  z-index: -1;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 480px;
}
.trust-row {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.trust-item .num {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-item .lbl {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* === FORMS === */
.quote-form {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 1px 0 var(--line), 0 30px 60px -30px rgba(14, 26, 20, 0.18);
  border: 1px solid var(--line-2);
  position: relative;
}
.quote-form::before {
  content: 'Free • 60 seconds';
  position: absolute;
  top: -14px;
  left: 32px;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
}
.form-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.field-group { margin-bottom: 16px; }
.field-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}
.field-group input, .field-group select, .field-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  background: var(--paper);
  transition: all 0.2s;
}
.field-group textarea { resize: vertical; min-height: 120px; }
.field-group input:focus, .field-group select:focus, .field-group textarea:focus {
  outline: none;
  border-color: var(--kiwi);
  background: #fff;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.btn-primary {
  width: 100%;
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}
.btn-primary:hover { background: var(--kiwi-dark); transform: translateY(-1px); text-decoration: none; color: var(--paper); }
.progress {
  display: flex;
  gap: 6px;
  margin-bottom: 24px;
}
.progress-dot {
  flex: 1;
  height: 3px;
  background: var(--line);
  border-radius: 99px;
  transition: background 0.3s;
}
.progress-dot.active { background: var(--kiwi); }
.step-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

/* === SECTION HEADS === */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 64px;
  gap: 40px;
}
.section-head h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 600px;
}
.section-head .lead {
  font-size: 16px;
  color: var(--muted);
  max-width: 360px;
}

/* === HOW IT WORKS === */
.how {
  background: var(--paper-2);
  padding: 96px 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.step {
  padding: 32px 28px 32px 0;
  border-right: 1px dashed var(--line);
  position: relative;
}
.step:last-child { border-right: none; }
.step:not(:first-child) { padding-left: 28px; }
.step-num {
  font-family: 'Fraunces', serif;
  font-size: 48px;
  font-weight: 500;
  color: var(--kiwi);
  margin-bottom: 24px;
  line-height: 1;
}
.step h3 {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* === OFFERS PREVIEW === */
.offers-section { padding: 96px 0; }
.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.offers-text h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.offers-text p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 32px;
}
.feature-list {
  list-style: none;
  margin-top: 32px;
}
.feature-list li {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: start;
  gap: 16px;
  font-size: 15px;
}
.feature-list li:last-child { border-bottom: 1px solid var(--line); }
.feature-check {
  width: 24px;
  height: 24px;
  background: var(--kiwi-light);
  color: var(--kiwi);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
}

/* === OFFER CARD MOCKUP === */
.offer-mockup {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 30px 60px -30px rgba(14, 26, 20, 0.2);
  border: 1px solid var(--line-2);
}
.mockup-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.mockup-title {
  font-family: 'Fraunces', serif;
  font-size: 20px;
  font-weight: 500;
}
.mockup-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FEF3E5;
  color: var(--rust);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.live-dot {
  width: 6px;
  height: 6px;
  background: var(--rust);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.offer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line-2);
}
.offer-row:first-of-type { border-top: 1px solid var(--line); }
.offer-row.winning {
  background: var(--kiwi-light);
  margin: 0 -28px;
  padding-left: 28px;
  padding-right: 28px;
  border-top: 1px solid var(--kiwi);
  border-bottom: 1px solid var(--kiwi);
}
.dealer-info {
  display: flex;
  align-items: center;
  gap: 14px;
}
.dealer-avatar {
  width: 40px;
  height: 40px;
  background: var(--paper-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--ink);
  font-size: 14px;
}
.dealer-info .name { font-weight: 500; font-size: 14px; }
.dealer-info .meta { font-size: 12px; color: var(--muted); }
.offer-amount {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
}
.winning .offer-amount { color: var(--kiwi-dark); }
.winning-badge {
  background: var(--kiwi);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-left: 8px;
}

/* === DEALERS / WRECKERS SECTION === */
.dealers-section {
  background: var(--ink);
  color: var(--paper);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.dealers-section::before {
  content: 'WRECKERS';
  position: absolute;
  bottom: -50px;
  right: -30px;
  font-family: 'Fraunces', serif;
  font-size: 280px;
  font-weight: 600;
  color: rgba(247, 244, 236, 0.04);
  line-height: 1;
  pointer-events: none;
  letter-spacing: -0.04em;
}
.dealers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.dealers-section h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
}
.dealers-section h2 em {
  color: var(--gold);
  font-style: italic;
}
.dealers-section p {
  font-size: 17px;
  opacity: 0.7;
  margin-bottom: 32px;
}
.dealer-benefits {
  list-style: none;
  margin-bottom: 40px;
}
.dealer-benefits li {
  padding: 12px 0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.dealer-benefits li::before {
  content: '→';
  color: var(--gold);
  font-weight: 600;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  text-decoration: none;
}
.btn-gold:hover { background: #B88A0F; transform: translateY(-1px); text-decoration: none; color: var(--ink); }
.pricing-card {
  background: rgba(247, 244, 236, 0.05);
  border: 1px solid rgba(247, 244, 236, 0.12);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(10px);
}
.pricing-card .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}
.pricing-card .name {
  font-family: 'Fraunces', serif;
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 16px;
}
.pricing-card .price {
  font-family: 'Fraunces', serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-card .price small {
  font-size: 16px;
  color: var(--gold);
  margin-left: 4px;
}
.pricing-card .per {
  font-size: 13px;
  opacity: 0.6;
  margin-bottom: 28px;
}
.pricing-divider {
  height: 1px;
  background: rgba(247, 244, 236, 0.1);
  margin: 24px 0;
}
.price-line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 14px;
}
.price-line .v { font-weight: 500; }

/* === TESTIMONIAL === */
.testimonial {
  padding: 96px 0;
  background: var(--paper);
}
.testimonial-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 96px;
  color: var(--kiwi);
  line-height: 0.5;
  margin-bottom: 32px;
  opacity: 0.5;
}
.testimonial blockquote {
  font-family: 'Fraunces', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.testimonial cite {
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.testimonial cite strong { color: var(--ink); font-weight: 600; }

/* === PAGE HEADERS (inner pages) === */
.page-header {
  padding: 80px 0 60px;
  border-bottom: 1px solid var(--line);
}
.page-header h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 20px;
  max-width: 800px;
}
.page-header .lead {
  font-size: 19px;
  color: var(--muted);
  max-width: 600px;
}

/* === PROSE / CONTENT === */
.prose {
  padding: 80px 0;
}
.prose h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 36px;
  letter-spacing: -0.02em;
  margin: 56px 0 20px;
  line-height: 1.15;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
}
.prose p {
  font-size: 17px;
  color: #2d2d28;
  line-height: 1.7;
  margin-bottom: 20px;
}
.prose ul, .prose ol {
  margin: 0 0 20px 24px;
  font-size: 17px;
  color: #2d2d28;
  line-height: 1.7;
}
.prose li { margin-bottom: 10px; }
.prose strong { font-weight: 600; color: var(--ink); }

/* === FAQ === */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.faq-item summary {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 32px;
  color: var(--kiwi);
  transition: transform 0.2s;
  font-family: 'Inter Tight', sans-serif;
  font-weight: 300;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item .answer {
  padding-top: 16px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item .answer p { margin-bottom: 12px; }
.faq-item .answer p:last-child { margin-bottom: 0; }

/* === CITY PAGES === */
.city-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--paper-2);
  border-radius: 24px;
  padding: 8px;
  margin-top: 48px;
}
.city-stat {
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid var(--line);
}
.city-stat:last-child { border-right: none; }
.city-stat .v {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--kiwi);
  line-height: 1;
  margin-bottom: 6px;
}
.city-stat .l {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* Trust strip — replaces the fake city-stats on region pages */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--paper-2);
  border-radius: 24px;
  padding: 0;
  margin-top: 48px;
  overflow: hidden;
}
.trust-strip-item {
  text-align: center;
  padding: 24px 18px;
  border-right: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-strip-item:last-child { border-right: none; }
.trust-strip-item strong {
  color: var(--kiwi-dark);
  font-weight: 600;
  display: inline;
}

/* Protection callout — visible link to Why Us page */
.protection-callout {
  display: flex;
  gap: 20px;
  background: var(--kiwi-light);
  border-radius: 16px;
  padding: 28px;
  margin: 40px 0;
  border-left: 4px solid var(--kiwi);
}
.protection-icon {
  flex-shrink: 0;
  font-size: 24px;
  color: var(--kiwi);
  font-weight: 700;
  line-height: 1;
}
.protection-body h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.protection-body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}
.protection-body a {
  color: var(--kiwi-dark);
  font-weight: 600;
  text-decoration: underline;
}

.suburb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.suburb-tag {
  background: var(--paper-2);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  color: var(--ink);
  text-align: center;
  font-weight: 500;
}

/* === CTA SECTION === */
.cta-section {
  padding: 96px 0;
  background: var(--kiwi);
  color: var(--paper);
  text-align: center;
}
.cta-section h2 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section p {
  font-size: 18px;
  opacity: 0.85;
  max-width: 540px;
  margin: 0 auto 36px;
}
.btn-paper {
  background: var(--paper);
  color: var(--ink);
  border: none;
  padding: 16px 36px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  text-decoration: none;
}
.btn-paper:hover { transform: translateY(-1px); text-decoration: none; color: var(--ink); }

/* === FOOTER === */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  font-weight: 600;
}
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer a {
  color: rgba(247, 244, 236, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
footer a:hover { color: var(--gold); text-decoration: none; }
.footer-brand .logo { color: var(--paper); margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  opacity: 0.6;
  max-width: 320px;
  line-height: 1.6;
}
.footer-bot {
  border-top: 1px solid rgba(247, 244, 236, 0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.5;
}

/* === DEALER / LOGIN FORM PAGE === */
.auth-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 64px 0;
}
.auth-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.auth-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 30px 60px -30px rgba(14, 26, 20, 0.2);
  border: 1px solid var(--line-2);
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid, .offers-grid, .dealers-grid, .footer-grid, .auth-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; border-bottom: 1px dashed var(--line); padding: 24px 0; }
  .section-head { flex-direction: column; align-items: start; }
  nav ul { display: none; }
  .trust-row { flex-wrap: wrap; gap: 20px; }
  .footer-bot { flex-direction: column; gap: 16px; }
  .city-stats { grid-template-columns: 1fr 1fr; }
  .city-stat:nth-child(2) { border-right: none; }
  .city-stat:nth-child(1), .city-stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-strip-item:nth-child(2) { border-right: none; }
  .trust-strip-item:nth-child(1), .trust-strip-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .protection-callout { flex-direction: column; gap: 12px; padding: 24px; }
  .suburb-grid { grid-template-columns: 1fr 1fr; }
  .auth-card { padding: 32px; }
}
