/* ===== TorontoUsed — main stylesheet (light theme) ===== */

:root {
  --red: #EF4444;
  --red-dark: #C81E1E;
  --red-soft: #FDE8E8;
  --silver: #CBD5E1;
  --silver-dark: #94A3B8;
  --ink: #241C18;
  --ink-soft: #4A3F39;
  --cream: #FAF7F5;
  --white: #FFFFFF;
  --line: #EADFD8;
  --shadow: 0 14px 40px rgba(36, 28, 24, 0.10);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--cream);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  line-height: 1.2;
  font-weight: 800;
  color: var(--ink);
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Navigation — steering wheel ===== */
.steering-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(36, 28, 24, 0.06);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.wordmark {
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 18px;
  color: var(--ink);
}

.steering-wheel {
  position: relative;
  width: 38px;
  height: 38px;
  border: 3px solid var(--red);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.steering-wheel .spoke {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 3px;
  margin-left: -16px;
  margin-top: -1.5px;
  background-color: var(--red);
  border-radius: 2px;
}

.steering-wheel .spoke-b {
  transform: rotate(60deg);
}

.steering-wheel .spoke-c {
  transform: rotate(120deg);
}

.steering-wheel .hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  margin-left: -4.5px;
  margin-top: -4.5px;
  background-color: var(--red);
  border-radius: 50%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
}

.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  background-color: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border-radius: 6px;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.nav-cta:hover {
  background-color: var(--red-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background-color: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ===== Hero — car profile ===== */
.car-hero {
  background-color: var(--cream);
  background-image:
    radial-gradient(circle at 82% 40%, #FDE8E8 0%, rgba(250, 247, 245, 0) 46%),
    radial-gradient(circle at 20% 10%, #F1F5F9 0%, rgba(250, 247, 245, 0) 50%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 24px 90px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
}

.hero-kicker {
  display: inline-block;
  background-color: var(--red-soft);
  color: var(--red-dark);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}

.hero-copy h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 8px;
  transition: transform 0.15s ease, background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.btn-red {
  background-color: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background-color: var(--red-dark);
}

.btn-ghost {
  background-color: var(--white);
  color: var(--ink);
  border: 2px solid var(--silver);
}

.btn-ghost:hover {
  border-color: var(--red);
  color: var(--red);
}

.hero-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 15px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--red);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Car profile drawing */
.car-profile {
  position: relative;
  width: 460px;
  height: 300px;
  max-width: 100%;
}

.car-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, #FDE8E8 0%, #FDE8E8 40%, rgba(250, 247, 245, 0) 72%);
}

.car-body {
  position: absolute;
  bottom: 84px;
  left: 30px;
  width: 400px;
  height: 66px;
  background: linear-gradient(180deg, #DC2626 0%, #EF4444 60%, #C81E1E 100%);
  border-radius: 18px 18px 10px 10px;
}

.car-body::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 14px;
  background-color: var(--red-dark);
  border-radius: 0 0 12px 12px;
}

.car-cabin {
  position: absolute;
  bottom: 138px;
  left: 130px;
  width: 210px;
  height: 96px;
  background-color: var(--silver);
  border-radius: 60px 60px 6px 6px;
}

.car-window {
  position: absolute;
  bottom: 144px;
  left: 148px;
  width: 174px;
  height: 74px;
  background-color: var(--ink);
  border-radius: 44px 44px 4px 4px;
}

.car-window::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: var(--silver);
  transform: translateX(-50%);
}

.car-wheel {
  position: absolute;
  bottom: 58px;
  width: 74px;
  height: 74px;
  background-color: var(--ink);
  border-radius: 50%;
  border: 6px solid var(--silver);
  display: flex;
  align-items: center;
  justify-content: center;
}

.car-wheel .wheel-hub {
  width: 26px;
  height: 26px;
  background-color: var(--silver);
  border-radius: 50%;
}

.wheel-front {
  right: 76px;
}

.wheel-rear {
  left: 76px;
}

.car-shadow {
  position: absolute;
  bottom: 42px;
  left: 40px;
  width: 380px;
  height: 24px;
  background-color: #E5DCD4;
  border-radius: 50%;
}

/* ===== Statement row ===== */
.statement-section {
  background-color: var(--red);
  padding: 56px 0;
}

.statement-line {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--white);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* ===== Stats ===== */
.stats-section {
  padding: 88px 0;
  background-color: var(--white);
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: 36px;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.section-head p {
  font-size: 17px;
  color: var(--ink-soft);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  background-color: var(--cream);
  border: 1px solid var(--line);
  border-top: 4px solid var(--red);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 46px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 15px;
}

/* ===== About ===== */
.about-section {
  padding: 88px 0;
  background-color: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: start;
}

.section-kicker {
  display: inline-block;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-copy h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.about-copy p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  font-size: 17px;
}

.about-list {
  list-style: none;
  margin-top: 8px;
}

.about-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px dashed var(--line);
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 18px;
  height: 3px;
  background-color: var(--red);
  border-radius: 2px;
}

.about-card {
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.about-card h3 {
  font-size: 22px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.service-item {
  display: flex;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.service-item:last-child {
  border-bottom: none;
}

.service-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--red);
  flex-shrink: 0;
}

.service-item h4 {
  font-size: 17px;
  margin-bottom: 4px;
}

.service-item p {
  color: var(--ink-soft);
  font-size: 15px;
}

/* ===== Process ===== */
.process-section {
  padding: 88px 0;
  background-color: var(--white);
}

.process-list {
  list-style: none;
  position: relative;
  padding-left: 0;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 34px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--silver);
}

.process-step {
  position: relative;
  display: flex;
  gap: 40px;
  padding: 22px 0;
}

.step-num {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 22px;
  border-radius: 50%;
  border: 5px solid var(--white);
  box-shadow: 0 0 0 1px var(--silver);
}

.step-body {
  padding-top: 6px;
}

.step-body h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.step-body p {
  color: var(--ink-soft);
  max-width: 640px;
}

/* ===== Compare table ===== */
.compare-section {
  padding: 88px 0;
  background-color: var(--cream);
}

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 14px;
  background-color: var(--white);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.compare-table thead th {
  background-color: var(--ink);
  color: var(--white);
  text-align: left;
  padding: 18px 20px;
  font-size: 15px;
}

.compare-table thead th:not(:first-child) {
  text-align: center;
}

.compare-table thead th:nth-child(2) {
  background-color: var(--red);
}

.compare-table tbody th {
  text-align: left;
  padding: 16px 20px;
  background-color: var(--red-soft);
  color: var(--ink);
  font-size: 15px;
  border-bottom: 1px solid var(--line);
}

.compare-table tbody td {
  padding: 16px 20px;
  text-align: center;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

/* ===== FAQ ===== */
.faq-section {
  padding: 88px 0;
  background-color: var(--white);
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 14px;
  background-color: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 22px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  position: relative;
  padding-right: 60px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--red-soft);
  color: var(--red);
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.faq-item.open .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 22px 22px;
  color: var(--ink-soft);
}

/* ===== CTA band ===== */
.cta-band {
  padding: 88px 0;
  background-color: var(--ink);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.cta-copy .section-kicker {
  color: var(--red);
}

.cta-copy h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 18px;
}

.cta-copy p {
  color: var(--silver);
  margin-bottom: 26px;
  font-size: 17px;
}

.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-phone {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
}

.cta-email {
  color: var(--red);
  font-weight: 700;
  font-size: 18px;
}

.cta-phone:hover,
.cta-email:hover {
  color: var(--silver);
}

.cta-form-wrap {
  background-color: var(--white);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--silver);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background-color: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-soft);
}

.btn-block {
  width: 100%;
  text-align: center;
  border: none;
}

.form-note {
  margin-top: 12px;
  font-weight: 600;
  font-size: 14px;
  min-height: 20px;
  color: var(--red-dark);
}

/* ===== Footer ===== */
.site-footer {
  background-color: var(--cream);
  border-top: 4px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 40px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-about p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 320px;
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--ink);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.footer-col ul a:hover {
  color: var(--red);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}

.footer-bottom p {
  color: var(--ink-soft);
  font-size: 14px;
}

/* ===== Scroll reveal ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 56px 24px 70px;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-visual {
    order: 2;
  }

  .about-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    gap: 18px;
  }
}

@media (max-width: 720px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.open {
    max-height: 340px;
    padding: 12px 24px;
  }

  .nav-links a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-cta {
    margin-left: auto;
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-inner {
    position: relative;
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .statement-line {
    font-size: 22px;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .car-profile {
    transform: scale(0.8);
    transform-origin: center;
  }
}
