/* =========================================================
   MS BIL — Stylesheet
   Sort/hvitt. Inter. NFS-style 3D-stand. Kontaktskjema.
   ========================================================= */

:root {
  --black: #000000;
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F4F4F4;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;
  --accent-blue: #4F8DEF;
  --accent-orange: #FF6B1A;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--white);
  color: var(--black);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.dark { background: var(--black); color: var(--white); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.6; }
button { font-family: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
::selection { background: var(--black); color: var(--white); }
body.dark ::selection { background: var(--white); color: var(--black); }

.container { width: 100%; max-width: 1320px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1100px) { .container { padding: 0 48px; } }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--white); border-bottom: 1px solid var(--gray-200); }
body.dark .site-header { background: var(--black); border-bottom-color: var(--gray-800); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
@media (min-width: 768px) { .header-inner { height: 72px; gap: 24px; } }

.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
.brand svg { width: 34px; height: 34px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.brand-name { font-weight: 700; letter-spacing: -0.01em; }
.brand-sub { font-size: 9px; letter-spacing: 0.18em; font-weight: 500; color: var(--gray-500); }
body.dark .brand-sub { color: var(--gray-400); }

.nav-links { display: none; gap: 4px; align-items: center; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link { padding: 9px 14px; font-size: 13px; font-weight: 500; border-radius: 999px; transition: background 0.2s; }
.nav-link:hover { background: var(--gray-100); opacity: 1; }
body.dark .nav-link:hover { background: var(--gray-900); }
.nav-link.active { background: var(--black); color: var(--white); }
body.dark .nav-link.active { background: var(--white); color: var(--black); }

.menu-toggle { display: flex; flex-direction: column; gap: 4px; padding: 8px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.menu-toggle span { display: block; width: 18px; height: 1.5px; background: currentColor; transition: transform 0.25s; }
@media (min-width: 768px) { .menu-toggle { display: none; } }
.menu-toggle.open span:nth-child(1) { transform: translateY(2.75px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { transform: translateY(-2.75px) rotate(-45deg); }

.mobile-menu { display: none; position: fixed; inset: 64px 0 0 0; background: var(--white); z-index: 49; padding: 24px 16px; flex-direction: column; gap: 4px; }
body.dark .mobile-menu { background: var(--black); }
.mobile-menu.open { display: flex; }
@media (min-width: 768px) { .mobile-menu, .mobile-menu.open { display: none; } }
.mobile-menu a { padding: 14px 18px; font-size: 17px; font-weight: 500; border-radius: 12px; }
.mobile-menu a:hover, .mobile-menu a.active { background: var(--gray-100); }
body.dark .mobile-menu a:hover, body.dark .mobile-menu a.active { background: var(--gray-900); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 16px 28px; border-radius: 999px; font-size: 14px; font-weight: 600; letter-spacing: 0.01em; transition: all 0.25s; border: 1px solid transparent; white-space: nowrap; cursor: pointer; }
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--black); color: var(--white); }
.btn-primary:hover { background: var(--gray-800); opacity: 1; transform: translateY(-2px); }
body.dark .btn-primary { background: var(--white); color: var(--black); }
body.dark .btn-primary:hover { background: var(--gray-100); }
.btn-outline { background: transparent; color: var(--black); border-color: var(--black); }
.btn-outline:hover { background: var(--black); color: var(--white); opacity: 1; }
body.dark .btn-outline { color: var(--white); border-color: var(--white); }
body.dark .btn-outline:hover { background: var(--white); color: var(--black); }

/* BIG CTA BUTTON (AVTAL PRØVEKJØRING) */
.btn-cta-large {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 20px 36px;
  background: var(--white);
  color: var(--black);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn-cta-large:hover {
  background: var(--black);
  color: var(--white);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}
.btn-cta-large svg { width: 14px; height: 14px; }

.btn-cta-large.invert {
  background: var(--black);
  color: var(--white);
}
.btn-cta-large.invert:hover {
  background: var(--white);
  color: var(--black);
}

/* Back button */
.back-link { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px 10px 12px; border-radius: 999px; font-size: 14px; font-weight: 500; color: var(--gray-700); transition: all 0.2s; }
.back-link svg { width: 16px; height: 16px; }
.back-link:hover { background: var(--gray-100); color: var(--black); opacity: 1; }
body.dark .back-link { color: var(--gray-300); }
body.dark .back-link:hover { background: var(--gray-900); color: var(--white); }

/* TYPOGRAPHY */
.eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 16px; }
body.dark .eyebrow { color: var(--gray-400); }
.page-title { font-size: clamp(36px, 6vw, 64px); font-weight: 700; line-height: 1.05; letter-spacing: -0.035em; margin-bottom: 16px; }
.page-subtitle { font-size: clamp(16px, 2vw, 18px); color: var(--gray-500); line-height: 1.55; max-width: 52ch; }
body.dark .page-subtitle { color: var(--gray-400); }

/* SECTIONS */
.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 120px 0; } }
.section-narrow { padding: 40px 0; }
@media (min-width: 768px) { .section-narrow { padding: 64px 0; } }
.page-header { padding: 32px 0 24px; }
@media (min-width: 768px) { .page-header { padding: 56px 0 40px; } }

/* FOOTER */
.site-footer { background: var(--black); color: var(--white); padding: 56px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 40px; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; } }
.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-brand .brand { color: var(--white); }
.footer-brand p { font-size: 14px; color: var(--gray-400); line-height: 1.6; max-width: 32ch; }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col a { font-size: 14px; color: var(--white); line-height: 1.4; }
.footer-col a:hover { opacity: 0.6; }
.footer-col li.muted { color: var(--gray-400); }
.footer-bottom { border-top: 1px solid var(--gray-800); padding-top: 20px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; font-size: 12px; color: var(--gray-500); }

/* ============================================
   3D STAGE — NFS STYLE
   Bilen i sentrum, specs over, dramatisk lys
   ============================================ */
.nfs-stage {
  position: relative;
  width: 100%;
  background: #000000;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/10;
  min-height: 540px;
}
@media (max-width: 768px) {
  .nfs-stage { aspect-ratio: 3/4; min-height: 560px; border-radius: 12px; }
}

.nfs-stage canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  cursor: grab;
}
.nfs-stage canvas:active { cursor: grabbing; }

/* OVERLAY: car name and price ALWAYS visible above */
.nfs-info-top {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  pointer-events: none;
  z-index: 5;
}

.nfs-name-block {
  pointer-events: auto;
}

.nfs-name-block .car-name {
  color: var(--white);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  transition: opacity 0.4s, transform 0.4s;
}

.nfs-name-block .car-year {
  display: inline-block;
  color: var(--accent-orange);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.nfs-price-block {
  pointer-events: auto;
  text-align: right;
  transition: opacity 0.4s, transform 0.4s;
}

.nfs-price-block .price-label {
  color: var(--gray-400);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.nfs-price-block .price-value {
  color: var(--white);
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

/* Specs row below name */
.nfs-specs-row {
  position: absolute;
  top: 88px;
  left: 20px;
  right: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.4s;
}
@media (min-width: 768px) {
  .nfs-specs-row { top: 110px; gap: 8px; }
}

.nfs-spec {
  pointer-events: auto;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .nfs-spec { padding: 8px 14px; font-size: 12px; }
}

.nfs-spec .label {
  color: var(--gray-400);
  font-weight: 500;
  margin-right: 6px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
}

/* Bottom controls */
.nfs-controls {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  z-index: 5;
}

.nfs-controls-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-shrink: 0;
}

.nfs-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
}

.nfs-hint .dot {
  width: 6px;
  height: 6px;
  background: var(--accent-orange);
  border-radius: 50%;
  animation: nfs-pulse 1.8s ease-in-out infinite;
}

@keyframes nfs-pulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px var(--accent-orange); }
  50% { opacity: 0.5; transform: scale(0.7); box-shadow: 0 0 2px var(--accent-orange); }
}

.nfs-controls-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* NEXT CAR button */
.btn-next-car {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s;
}
.btn-next-car:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: translateY(-2px);
}
.btn-next-car svg { width: 14px; height: 14px; }

.btn-stage-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.25s;
}
.btn-stage-reset:hover { background: var(--white); color: var(--black); }
.btn-stage-reset svg { width: 18px; height: 18px; }

/* Page indicator (1/5) */
.nfs-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 999px;
  color: var(--gray-400);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nfs-indicator strong {
  color: var(--white);
  font-weight: 700;
}

/* Loading */
.nfs-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  background: var(--black);
  color: var(--white);
  transition: opacity 0.5s;
  z-index: 10;
}
.nfs-loading.hidden { opacity: 0; pointer-events: none; }
.nfs-loading .ring { width: 32px; height: 32px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.15); border-top-color: var(--accent-orange); animation: spin 1s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.nfs-loading p { font-size: 11px; letter-spacing: 0.16em; color: var(--gray-400); text-transform: uppercase; font-weight: 600; }

/* Car switching animation */
.nfs-info-top.switching .nfs-name-block,
.nfs-info-top.switching .nfs-price-block,
.nfs-specs-row.switching {
  opacity: 0;
  transform: translateY(-10px);
}

/* ============================================
   CONTACT MODAL — AVTAL PRØVEKJØRING
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal.open { display: flex; animation: modal-fade-in 0.3s ease forwards; }

@keyframes modal-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-content {
  position: relative;
  background: var(--white);
  color: var(--black);
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 28px;
  animation: modal-slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modal-slide-up {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.modal-close:hover { background: var(--gray-200); }
.modal-close svg { width: 16px; height: 16px; }

.modal-content h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 6px;
  padding-right: 40px;
}

.modal-content .modal-intro {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.5;
  margin-bottom: 24px;
}

.modal form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gray-700);
}

.form-group label .req {
  color: var(--accent-orange);
  margin-left: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  color: var(--black);
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--black);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.form-group textarea { min-height: 100px; resize: vertical; font-family: inherit; }

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; padding: 18px 28px; font-size: 14px; }

.form-note {
  font-size: 12px;
  color: var(--gray-500);
  text-align: center;
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}

.form-success.show { display: block; }

.form-success .check {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-success .check svg { width: 28px; height: 28px; }

.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.form-success p { color: var(--gray-500); font-size: 14px; line-height: 1.5; }

/* Hide form when success shown */
.modal-content.success-shown form { display: none; }
.modal-content.success-shown h2,
.modal-content.success-shown .modal-intro { display: none; }

/* ============================================
   CARS LISTING
   ============================================ */
.cars-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .cars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cars-grid { grid-template-columns: repeat(3, 1fr); } }

.car-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.car-card:hover {
  border-color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.15);
  opacity: 1;
}

.car-card-img {
  aspect-ratio: 4/3;
  background: var(--gray-100);
  overflow: hidden;
  position: relative;
}
.car-card-img img, .car-card-img .fallback { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.car-card:hover .car-card-img img { transform: scale(1.04); }
.car-card-img .fallback { display: none; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--gray-100), var(--gray-200)); }
.car-card-img .fallback svg { width: 60%; color: var(--gray-400); }
.car-card-badge { position: absolute; top: 12px; left: 12px; background: var(--white); color: var(--black); padding: 5px 10px; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 0.04em; }
.car-card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.car-card-title { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
.car-card-variant { font-size: 13px; color: var(--gray-500); line-height: 1.5; }
.car-card-specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.spec-chip { font-size: 11px; padding: 4px 9px; background: var(--gray-100); border-radius: 999px; color: var(--gray-700); font-weight: 500; }
.car-card-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; margin-top: auto; border-top: 1px solid var(--gray-200); }
.car-card-price { font-size: 20px; font-weight: 700; letter-spacing: -0.02em; }
.car-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; }
.car-card-link svg { width: 12px; height: 12px; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; overflow: hidden; }
.team-photo { aspect-ratio: 4/5; background: var(--gray-100); display: flex; align-items: center; justify-content: center; position: relative; color: var(--gray-400); }
.team-photo svg { width: 64px; height: 64px; }
.team-photo .placeholder { position: absolute; bottom: 14px; left: 14px; background: var(--white); padding: 4px 10px; border-radius: 999px; font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-500); }
.team-info { padding: 20px; }
.team-role { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 8px; }
.team-name { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.team-bio { font-size: 14px; color: var(--gray-700); line-height: 1.6; margin-bottom: 16px; }
.team-contact { display: flex; gap: 16px; padding-top: 14px; border-top: 1px solid var(--gray-200); }
.team-contact a { font-size: 13px; font-weight: 500; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.about-content h2 { font-size: clamp(26px, 4vw, 38px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 20px; }
.about-content p { font-size: 16px; color: var(--gray-700); line-height: 1.65; margin-bottom: 16px; }
.about-content p:last-child { margin-bottom: 0; }
.about-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.about-fact { border-top: 2px solid var(--black); padding-top: 16px; }
.about-fact .fact-num { font-size: clamp(36px, 5vw, 52px); font-weight: 700; line-height: 1; letter-spacing: -0.035em; margin-bottom: 8px; }
.about-fact .fact-label { font-size: 13px; color: var(--gray-500); line-height: 1.4; }

/* DETAIL PAGE */
.car-hero-grid { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; padding-bottom: 20px; }
@media (min-width: 900px) { .car-hero-grid { grid-template-columns: 1.3fr 1fr; gap: 40px; } }
.car-hero-image { aspect-ratio: 4/3; background: var(--gray-100); border-radius: 16px; overflow: hidden; position: relative; }
.car-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.car-hero-image .fallback { display: none; position: absolute; inset: 0; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--gray-100), var(--gray-200)); color: var(--gray-400); }
.car-hero-image .fallback svg { width: 60%; }
.car-hero-info { display: flex; flex-direction: column; }
.car-hero-title { font-size: clamp(26px, 4vw, 40px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 6px; }
.car-hero-subtitle { font-size: 14px; color: var(--gray-500); line-height: 1.5; margin-bottom: 20px; }
.car-hero-price-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--gray-200); }
.car-hero-price { font-size: clamp(28px, 4vw, 40px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.car-hero-warranty { display: inline-block; padding: 6px 12px; background: var(--black); color: var(--white); border-radius: 999px; font-size: 11px; font-weight: 600; }
.car-hero-specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 20px; margin-bottom: 28px; }
.car-hero-spec { display: flex; flex-direction: column; gap: 2px; }
.car-hero-spec .spec-label { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-500); }
.car-hero-spec .spec-value { font-size: 16px; font-weight: 600; letter-spacing: -0.01em; }
.car-hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.car-hero-actions .btn { flex: 1; min-width: 0; }
@media (max-width: 480px) { .car-hero-actions .btn { width: 100%; flex: none; } }

.car-desc-section { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 48px 0; }
.car-desc-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 900px) { .car-desc-grid { grid-template-columns: 1.5fr 1fr; gap: 48px; } }
.car-section-title { font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 14px; }
.car-description-text { font-size: 16px; color: var(--gray-700); line-height: 1.7; max-width: 60ch; }

.detail-specs { background: var(--white); border: 1px solid var(--gray-200); border-radius: 16px; padding: 24px; }
.detail-specs h3 { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--gray-200); }
.detail-specs dl { display: grid; gap: 12px; }
.detail-specs .spec-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-200); }
.detail-specs .spec-row:last-child { border-bottom: 0; padding-bottom: 0; }
.detail-specs dt { font-size: 12px; color: var(--gray-500); }
.detail-specs dd { font-size: 14px; font-weight: 600; }

/* QUICK INFO (home page) */
.quick-info { background: var(--white); padding: 56px 0; border-bottom: 1px solid var(--gray-200); }
.quick-info-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 768px) { .quick-info-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.quick-info-item { padding-top: 20px; border-top: 2px solid var(--black); }
.quick-info-item h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 8px; }
.quick-info-item p { font-size: 14px; color: var(--gray-700); line-height: 1.6; margin-bottom: 14px; }
.quick-info-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.quick-info-link svg { width: 12px; height: 12px; }

/* HOME HERO */
.home-hero {
  background: var(--black);
  color: var(--white);
  padding: 24px 0 40px;
}
@media (min-width: 768px) { .home-hero { padding: 32px 0 64px; } }

.home-cta-section {
  background: var(--black);
  color: var(--white);
  padding: 48px 0 64px;
  text-align: center;
}
@media (min-width: 768px) { .home-cta-section { padding: 64px 0 96px; } }

.home-cta-section h2 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.home-cta-section p {
  color: var(--gray-400);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.5;
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
