/* ============================================
   TurboHome Theme
   Colors from turbohome.com brand palette
   ============================================ */

:root {
  /* Brand palette */
  --bg:          #FDFDFB;
  --surface:     #F5F0E8;
  --surface2:    #EDE8DE;
  --accent:      #E8440B;   /* TurboHome vermillion */
  --accent2:     #FDD96B;   /* TurboHome yellow */
  --accent-dim:  rgba(232, 68, 11, 0.08);
  --accent2-dim: rgba(253, 217, 107, 0.25);
  --text:        #111111;
  --text-muted:  #6B6865;
  --border:      #E5E1D8;
  --green:       #0B7B4B;
  --green-light: #EEFAF3;

  /* Typography */
  --font-head: 'Satoshi', -apple-system, sans-serif;
  --font-body: var(--font-head);
}

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

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================================
   TYPOGRAPHY UTILITIES
   ============================================ */
.font-black  { font-weight: 900; }
.font-bold   { font-weight: 700; }
.font-semibold { font-weight: 600; }
.text-muted  { color: var(--text-muted); }
.text-accent { color: var(--accent); }

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  padding: 12px 28px;
  font-size: 15px;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(232,68,11,0.3);
}
.btn--primary:hover {
  background: #c93a09;
  border-color: #c93a09;
  box-shadow: 0 4px 16px rgba(232,68,11,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: #fff;
}
.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn--ghost:hover {
  background: var(--surface);
}
.btn--lg {
  padding: 16px 36px;
  font-size: 17px;
}
.btn--sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253,253,251,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.nav__logo-icon {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__links a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav__links a:hover,
.nav__links a.active {
  color: var(--text);
  background: var(--surface);
}
.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__phone {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav__phone svg { width: 14px; height: 14px; }

/* ============================================
   HERO
   ============================================ */
.hero {
  padding: 80px 32px 64px;
  background: var(--bg);
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent2-dim);
  border: 1px solid rgba(253,217,107,0.5);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #8B5E00;
  margin-bottom: 24px;
}
.hero__badge span {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.hero__headline {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero__headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 460px;
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}
.hero__proof-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero__proof-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero__proof-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}
.hero__proof-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.hero__proof-sep {
  width: 1px;
  height: 36px;
  background: var(--border);
}
.hero__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.hero__stars { display: flex; gap: 2px; }
.hero__stars svg { width: 16px; height: 16px; fill: #FDD96B; }
.hero__rating-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* Hero right — calculator */
.hero__calc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.calc__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.calc__title {
  font-size: 18px;
  font-weight: 700;
}
.calc__subtitle {
  font-size: 12px;
  color: var(--text-muted);
}
.calc__input-group {
  margin-bottom: 20px;
}
.calc__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.calc__input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-head);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s;
}
.calc__input:focus {
  outline: none;
  border-color: var(--accent);
}
.calc__input::placeholder {
  color: #C8C4BC;
}
.calc__result {
  background: var(--green-light);
  border: 1.5px solid #A5DFBA;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}
.calc__result-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green);
  margin-bottom: 6px;
}
.calc__result-amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  letter-spacing: -0.02em;
}
.calc__result-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}
.calc__vs-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.calc__vs-box {
  flex: 1;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  text-align: center;
}
.calc__vs-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.calc__vs-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}
.calc__vs-amount--bad { color: var(--accent); }

/* ============================================
   PATHWAY SECTION (Seller / Buyer)
   ============================================ */
.pathways {
  padding: 80px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.pathways__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 56px;
}
.pathways__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}
.pathways__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.pathways__sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}
.pathways__grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.pathway-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pathway-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 24px rgba(232,68,11,0.1);
}
.pathway-card__icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  margin-bottom: 20px;
}
.pathway-card__icon--blue {
  background: #1B5CB5;
}
.pathway-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.pathway-card__tag--red {
  background: var(--accent-dim);
  color: var(--accent);
}
.pathway-card__tag--blue {
  background: rgba(27,92,181,0.08);
  color: #1B5CB5;
}
.pathway-card__title {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.pathway-card__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
}
.pathway-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.pathway-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.pathway-card__features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8' fill='%23E8440B'/%3E%3Cpath d='M4.5 8l2.5 2.5 4.5-5' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") no-repeat center;
  flex-shrink: 0;
}

/* ============================================
   PROOF / SOCIAL PROOF
   ============================================ */
.proof {
  padding: 80px 32px;
  background: var(--bg);
}
.proof__header {
  text-align: center;
  margin-bottom: 56px;
}
.proof__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.proof__sub {
  font-size: 16px;
  color: var(--text-muted);
}
.proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 32px;
  text-align: center;
}
.proof-card__num {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 8px;
}
.proof-card__label {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Testimonials */
.testimonials {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid var(--border);
}
.testimonials__title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 40px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}
.testimonial-card__stars svg { width: 14px; height: 14px; fill: var(--accent2); }
.testimonial-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 16px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testimonial-card__avatar {
  width: 32px;
  height: 32px;
  background: var(--accent2-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #8B5E00;
}
.testimonial-card__name {
  font-size: 13px;
  font-weight: 600;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how {
  padding: 80px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.how__header {
  text-align: center;
  margin-bottom: 64px;
}
.how__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.how__sub {
  font-size: 16px;
  color: var(--text-muted);
}
.how__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.how-step {}
.how-step__num {
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 16px;
}
.how-step__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.how-step__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   CITIES
   ============================================ */
.cities {
  padding: 80px 32px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.cities__header {
  text-align: center;
  margin-bottom: 56px;
}
.cities__title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.cities__sub {
  font-size: 16px;
  color: var(--text-muted);
}
.cities__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.city-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.city-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.city-card__name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.city-card__stat {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.city-card__tag {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}

/* ============================================
   CLOSING CTA
   ============================================ */
.closing {
  padding: 100px 32px;
  background: var(--text);
  text-align: center;
}
.closing__inner { max-width: 600px; margin: 0 auto; }
.closing__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent2);
  margin-bottom: 20px;
}
.closing__eyebrow::before,
.closing__eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent2);
  opacity: 0.5;
}
.closing__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: #fff;
}
.closing__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 40px;
}
.closing__row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.closing__stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.closing__stat-val {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}
.closing__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__top {
  padding: 60px 32px 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer__brand-name {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  max-width: 280px;
}
.footer__col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer__links a:hover { color: #fff; }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.footer__contact-item svg { width: 16px; height: 16px; opacity: 0.5; }
.footer__bottom {
  padding: 20px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer__legal {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  display: flex;
  gap: 20px;
}
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================
   AI CHAT WIDGET
   ============================================ */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
}
.chat-widget__btn {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  border: none;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232,68,11,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.chat-widget__btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(232,68,11,0.5);
}
.chat-widget__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  background: var(--accent2);
  border-radius: 50%;
  border: 2px solid var(--bg);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8B5E00;
}

/* ============================================
   PAGE: SELLER
   ============================================ */
.page-hero {
  padding: 72px 32px 56px;
  background: var(--text);
  text-align: center;
}
.page-hero--cream {
  background: var(--surface);
}
.page-hero__eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.page-hero__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero--cream .page-hero__title { color: var(--text); }
.page-hero__sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}
.page-hero--cream .page-hero__sub { color: var(--text-muted); }

/* Seller comparison table */
.seller-compare {
  padding: 80px 32px;
  background: var(--bg);
}
.seller-compare__table {
  max-width: 800px;
  margin: 0 auto;
  border-collapse: collapse;
}
.seller-compare__table th {
  text-align: left;
  padding: 12px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}
.seller-compare__table th:last-child {
  text-align: right;
}
.seller-compare__table td {
  padding: 16px 20px;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.seller-compare__table td:last-child {
  text-align: right;
  font-weight: 700;
}
.seller-compare__table tr:hover td {
  background: var(--surface);
}
.seller-compare__check {
  width: 20px;
  height: 20px;
  background: var(--green-light);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 12px;
}
.seller-compare__x {
  color: var(--text-muted);
  font-size: 16px;
}

/* Seller form */
.seller-form-section {
  padding: 80px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.seller-form {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  padding: 48px;
}
.seller-form__title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.seller-form__sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font-head);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
}
.form-input::placeholder { color: #C8C4BC; }
.form-success {
  display: none;
  background: var(--green-light);
  border: 1.5px solid #A5DFBA;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.form-success__icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: var(--green);
}
.form-success__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--green);
}
.form-success__sub {
  font-size: 14px;
  color: var(--text-muted);
}

/* ============================================
   PAGE: BUYER
   ============================================ */
.rebate-section {
  padding: 80px 32px;
  background: var(--bg);
}
.rebate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rebate-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
}
.rebate-card__icon {
  width: 56px;
  height: 56px;
  background: var(--accent2-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 20px;
}
.rebate-card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.rebate-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================
   CITY PAGES
   ============================================ */
.city-hero {
  padding: 72px 32px 56px;
  background: var(--text);
  text-align: center;
}
.city-hero__name {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.city-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
}
.city-stats {
  padding: 48px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.city-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.city-stat-box {
  text-align: center;
  padding: 24px;
}
.city-stat-box__num {
  font-size: 36px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.city-stat-box__label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.city-cta {
  padding: 80px 32px;
  background: var(--bg);
  text-align: center;
}
.city-cta__title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.city-cta__sub {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

/* ============================================
   SCHEDULE CTA
   ============================================ */
.schedule-section {
  padding: 80px 32px;
  background: linear-gradient(135deg, var(--accent) 0%, #c93a09 100%);
  text-align: center;
}
.schedule-section__inner { max-width: 600px; margin: 0 auto; }
.schedule-section__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.schedule-section__sub {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}
.schedule-section .btn--white {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
  font-size: 17px;
  padding: 16px 36px;
}
.schedule-section .btn--white:hover {
  background: rgba(255,255,255,0.9);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__calc { max-width: 480px; }
  .proof__grid { grid-template-columns: repeat(2, 1fr); }
  .how__grid { grid-template-columns: repeat(2, 1fr); }
  .cities__grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .rebate-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .pathways__grid { grid-template-columns: 1fr; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .city-stats__grid { grid-template-columns: 1fr; gap: 16px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .closing__stats { flex-direction: column; gap: 24px; }
  .seller-form { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .hero { padding: 48px 20px 40px; }
  .proof { padding: 48px 20px; }
  .proof__grid { grid-template-columns: 1fr 1fr; }
  .how { padding: 48px 20px; }
  .how__grid { grid-template-columns: 1fr; }
  .cities { padding: 48px 20px; }
  .cities__grid { grid-template-columns: 1fr 1fr; }
  .closing { padding: 64px 20px; }
  .hero__calc { padding: 28px; }
  .calc__result-amount { font-size: 36px; }
  .calc__vs-row { flex-direction: column; }
  .footer__top { padding: 48px 20px 32px; }
}