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

  :root {
    --black: #000000;
    --bg: #0a0a0a;
    --surface: #111111;
    --surface-2: #161616;
    --surface-3: #1e1e1e;
    --border: #252525;
    --border-bright: #333333;
    --red: #E60000;
    --red-bright: #FF1A1A;
    --red-dim: #8B0000;
    --white: #FFFFFF;
    --gray: #9A9A9A;
    --gray-light: #C8C8C8;
    --text: #F0F0F0;
    --font-display: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
  }

  /* ─── CARBON TEXTURE ─── */
  .carbon::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px),
      repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(255,255,255,0.015) 2px, rgba(255,255,255,0.015) 4px);
    background-size: 8px 8px;
    pointer-events: none;
    z-index: 0;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 64px;
    height: 72px;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -0.02em;
    color: var(--white);
    text-decoration: none;
    display: flex; align-items: center; gap: 10px;
  }

  .nav-logo .logo-accent {
    color: var(--red);
    font-style: italic;
  }

  .logo-badge {
    background: var(--red);
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 3px 7px;
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  }

  .nav-links {
    display: flex; gap: 36px; list-style: none;
  }

  .nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 13px;
    font-family: var(--font-mono);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

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

  .nav-cta {
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 22px;
    font-family: var(--font-display) !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    transition: background 0.2s, box-shadow 0.2s !important;
  }

  .nav-cta:hover {
    background: var(--red-bright) !important;
    box-shadow: 0 0 20px rgba(230,0,0,0.4) !important;
    color: var(--white) !important;
  }

  /* ─── BUTTONS ─── */
  .btn-primary {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 16px 36px;
    text-decoration: none;
    clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
    transition: background 0.2s, box-shadow 0.2s;
  }

  .btn-primary:hover {
    background: var(--red-bright);
    box-shadow: 0 0 30px rgba(230,0,0,0.5);
  }

  .btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 34px;
    text-decoration: none;
    border: 2px solid var(--border-bright);
    clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
    transition: border-color 0.2s, color 0.2s;
  }

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

  /* ─── SECTION LABEL ─── */
  .section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
  }

  .section-label::before {
    content: '';
    display: block;
    width: 24px; height: 2px;
    background: var(--red);
  }

  /* ─── HERO ─── */
  #hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 72px 64px 0;
    overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(230,0,0,0.07) 0%, transparent 60%),
      linear-gradient(180deg, #000 0%, #0a0a0a 100%);
  }

  .hero-grid-lines {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  }

  .hero-stripe {
    position: absolute;
    top: 0; right: 120px;
    width: 4px; height: 100%;
    background: linear-gradient(180deg, transparent, var(--red) 30%, var(--red) 70%, transparent);
    opacity: 0.4;
  }

  .hero-stripe-2 {
    position: absolute;
    top: 0; right: 132px;
    width: 1px; height: 100%;
    background: linear-gradient(180deg, transparent, var(--border-bright) 30%, var(--border-bright) 70%, transparent);
    opacity: 0.4;
  }

  .hero-stripe-3 {
    position: absolute;
    top: 0; right: 137px;
    width: 2px; height: 100%;
    background: linear-gradient(180deg, transparent, var(--border-bright) 30%, var(--border-bright) 70%, transparent);
    opacity: 0.2;
  }

  .hero-content {
    position: relative; z-index: 1;
    max-width: 900px;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 28px;
  }

  .hero-eyebrow-dot {
    width: 6px; height: 6px;
    background: var(--red);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 7vw, 96px);
    font-weight: 900;
    font-style: italic;
    line-height: 1.0;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 8px;
  }

  .hero-title .red { color: var(--red); }
  .hero-title .outline {
    -webkit-text-stroke: 2px var(--white);
    color: transparent;
  }

  .hero-subtitle {
    font-family: var(--font-display);
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 700;
    font-style: italic;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 32px;
  }

  .hero-desc {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 48px;
  }

  .hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap;
    margin-bottom: 72px;
  }

  .hero-stats {
    display: flex; gap: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
  }

  .hero-stat-num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 900;
    font-style: italic;
    color: var(--white);
    line-height: 1;
  }

  .hero-stat-num span { color: var(--red); }

  .hero-stat-label {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 6px;
  }

  .hero-scroll {
    position: absolute;
    bottom: 40px; left: 64px;
    display: flex; align-items: center; gap: 12px;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    animation: bounce 2s ease-in-out infinite;
  }

  .hero-scroll::before {
    content: '';
    display: block;
    width: 1px; height: 40px;
    background: linear-gradient(var(--red), transparent);
  }

  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
  }

  /* ─── TICKER ─── */
  .ticker {
    background: var(--red);
    overflow: hidden;
    height: 42px;
    display: flex; align-items: center;
  }

  .ticker-inner {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
  }

  .ticker-item {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    padding: 0 32px;
  }

  .ticker-sep {
    color: rgba(255,255,255,0.4);
  }

  @keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ─── SECTIONS ─── */
  section {
    padding: 120px 64px;
  }

  .section-inner {
    max-width: 1312px;
    margin: 0 auto;
  }

  .section-header {
    margin-bottom: 72px;
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: var(--white);
    line-height: 1.1;
  }

  .section-title .red { color: var(--red); }

  .section-body {
    font-size: 17px;
    color: var(--gray-light);
    line-height: 1.75;
    max-width: 680px;
    margin-top: 20px;
  }

  /* ─── ABOUT ─── */
  #about {
    background: var(--bg);
    position: relative;
  }

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

  .about-visual {
    position: relative;
    height: 500px;
  }

  .about-card-main {
    position: absolute; inset: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 40px;
    overflow: hidden;
  }

  .about-card-main::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,0.012) 2px, rgba(255,255,255,0.012) 4px),
      repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(255,255,255,0.012) 2px, rgba(255,255,255,0.012) 4px);
    background-size: 8px 8px;
  }

  .about-big-text {
    position: absolute;
    top: 32px; left: 40px;
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 900;
    font-style: italic;
    color: rgba(230,0,0,0.07);
    line-height: 1;
    letter-spacing: -0.06em;
    pointer-events: none;
    user-select: none;
  }

  .about-badge {
    position: relative; z-index: 1;
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(230,0,0,0.15);
    border: 1px solid rgba(230,0,0,0.3);
    color: var(--red);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 8px 16px;
    margin-bottom: 16px;
    width: fit-content;
  }

  .about-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
  }

  .about-card-title {
    position: relative; z-index: 1;
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    color: var(--white);
    letter-spacing: -0.02em;
  }

  .about-accent-card {
    position: absolute;
    top: -24px; right: -24px;
    width: 180px; height: 180px;
    background: var(--red);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    clip-path: polygon(20px 0%, 100% 0%, 100% calc(100% - 20px), calc(100% - 0px) 100%, 0% 100%, 0% 0%);
  }

  .about-accent-num {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 900;
    font-style: italic;
    color: var(--white);
    line-height: 1;
  }

  .about-accent-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    text-align: center;
    margin-top: 4px;
  }

  .about-text h2 { margin-bottom: 16px; }

  .about-features {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .about-feature {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-left: 3px solid var(--red);
  }

  .about-feature-icon {
    width: 8px; height: 8px;
    background: var(--red);
    margin-top: 6px;
    flex-shrink: 0;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  }

  .about-feature-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-light);
  }

  /* ─── WHY CHOOSE US ─── */
  #why {
    background: var(--black);
    position: relative;
  }

  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
  }

  .why-card {
    background: var(--black);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
  }

  .why-card:hover { background: var(--surface); }

  .why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--border);
    transition: background 0.3s;
  }

  .why-card:hover::before { background: var(--red); }

  .why-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--red);
    letter-spacing: 0.1em;
    margin-bottom: 28px;
  }

  .why-icon {
    width: 48px; height: 48px;
    background: rgba(230,0,0,0.1);
    border: 1px solid rgba(230,0,0,0.2);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }

  .why-icon svg {
    width: 24px; height: 24px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.5;
  }

  .why-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 12px;
  }

  .why-text {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
  }

  /* ─── SERVICES ─── */
  #services {
    background: var(--bg);
    position: relative;
  }

  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 72px;
  }

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

  .service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 3px solid var(--border);
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: border-top-color 0.3s, transform 0.3s, box-shadow 0.3s;
  }

  .service-card:hover {
    border-top-color: var(--red);
    transform: translateY(-4px);
    box-shadow: 0 8px 40px rgba(230,0,0,0.12);
  }

  .service-card.featured {
    border-top-color: var(--red);
    background: linear-gradient(160deg, rgba(230,0,0,0.06) 0%, var(--surface) 60%);
  }

  .service-num {
    position: absolute;
    top: 24px; right: 24px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--border-bright);
    letter-spacing: 0.1em;
  }

  .service-icon {
    width: 56px; height: 56px;
    margin-bottom: 24px;
    display: flex; align-items: center; justify-content: center;
    background: var(--surface-3);
    border: 1px solid var(--border);
  }

  .service-icon svg {
    width: 28px; height: 28px;
    stroke: var(--red);
    fill: none;
    stroke-width: 1.5;
  }

  .service-title {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 12px;
  }

  .service-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .service-link {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
  }

  .service-link::after {
    content: '→';
    transition: transform 0.2s;
  }

  .service-card:hover .service-link::after { transform: translateX(4px); }

  /* ─── MOTOR VEE ─── */
  #motorvee {
    background: var(--black);
    position: relative;
    overflow: hidden;
  }

  .motorvee-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .motorvee-text {}

  .accreditation-badge {
    display: inline-flex; align-items: center; gap: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    padding: 24px 32px;
    margin-bottom: 40px;
  }

  .accreditation-logo {
    width: 56px; height: 56px;
    background: var(--red);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    font-style: italic;
    color: var(--white);
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  }

  .accreditation-info {}

  .accreditation-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--white);
  }

  .accreditation-sub {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--red);
    text-transform: uppercase;
    margin-top: 4px;
  }

  .motorvee-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 16px;
    margin-top: 32px;
  }

  .motorvee-list li {
    display: flex; align-items: center; gap: 16px;
    font-size: 15px;
    color: var(--gray-light);
  }

  .motorvee-list li::before {
    content: '';
    width: 20px; height: 2px;
    background: var(--red);
    flex-shrink: 0;
  }

  .motorvee-visual {
    position: relative;
  }

  .mv-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .mv-stat {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 32px 24px;
    position: relative;
    overflow: hidden;
  }

  .mv-stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--red);
  }

  .mv-stat-num {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 900;
    font-style: italic;
    color: var(--white);
    line-height: 1;
  }

  .mv-stat-num span { color: var(--red); }

  .mv-stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 8px;
  }

  /* ─── PARTS ─── */
  #parts {
    background: var(--bg);
  }

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

  .parts-text {}

  .parts-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 40px;
  }

  .parts-item {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: 13px;
    font-family: var(--font-mono);
    letter-spacing: 0.04em;
    color: var(--gray-light);
    transition: border-color 0.2s, color 0.2s;
  }

  .parts-item:hover {
    border-color: var(--red);
    color: var(--white);
  }

  .parts-item::before {
    content: '▸';
    color: var(--red);
    font-size: 12px;
  }

  .parts-visual {
    position: relative;
  }

  .parts-main-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-top: 3px solid var(--red);
    padding: 48px;
    position: relative;
    overflow: hidden;
  }

  .parts-main-card::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,0.01) 2px, rgba(255,255,255,0.01) 4px),
      repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(255,255,255,0.01) 2px, rgba(255,255,255,0.01) 4px);
    background-size: 8px 8px;
  }

  .parts-big-label {
    position: absolute;
    bottom: -10px; right: -10px;
    font-family: var(--font-display);
    font-size: 100px;
    font-weight: 900;
    font-style: italic;
    color: rgba(230,0,0,0.05);
    line-height: 1;
    pointer-events: none;
  }

  .parts-feature-list {
    position: relative; z-index: 1;
    list-style: none;
    display: flex; flex-direction: column; gap: 20px;
  }

  .parts-feature-list li {
    display: flex; align-items: center; gap: 16px;
    font-size: 16px;
    color: var(--white);
    font-weight: 500;
  }

  .parts-feature-num {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--red);
    min-width: 28px;
  }

  /* ─── TESTIMONIALS ─── */
  #testimonials {
    background: var(--black);
    position: relative;
    overflow: hidden;
  }

  #testimonials::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red), transparent);
  }

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

  .testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 40px 32px;
    position: relative;
  }

  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px; left: 28px;
    font-family: var(--font-display);
    font-size: 80px;
    font-weight: 900;
    color: var(--red);
    opacity: 0.3;
    line-height: 1;
  }

  .testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-light);
    margin-bottom: 28px;
    position: relative; z-index: 1;
    margin-top: 32px;
  }

  .testimonial-author {
    display: flex; align-items: center; gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 20px;
  }

  .testimonial-avatar {
    width: 40px; height: 40px;
    background: var(--red);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 800;
    color: var(--white);
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  }

  .testimonial-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--white);
  }

  .testimonial-role {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--gray);
    letter-spacing: 0.05em;
    margin-top: 2px;
  }

  .stars {
    display: flex; gap: 3px;
    margin-bottom: 4px;
  }

  .star {
    color: var(--red);
    font-size: 13px;
  }

  /* ─── FAQ ─── */
  #faq {
    background: var(--bg);
  }

  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 80px;
  }

  .faq-list {
    display: flex; flex-direction: column; gap: 0;
  }

  .faq-item {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex; justify-content: space-between; align-items: center; gap: 16px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--white);
    text-align: left;
    transition: color 0.2s;
  }

  .faq-question:hover { color: var(--red); }

  .faq-indicator {
    width: 20px; height: 20px;
    background: var(--surface-3);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
    color: var(--red);
    transition: transform 0.3s, background 0.3s;
  }

  .faq-item.open .faq-indicator {
    transform: rotate(45deg);
    background: var(--red);
    color: var(--white);
  }

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

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

  .faq-answer-inner {
    padding: 0 0 24px;
    font-size: 15px;
    color: var(--gray);
    line-height: 1.75;
  }

  /* ─── CONTACT / CTA ─── */
  #contact {
    background: var(--black);
    position: relative;
    overflow: hidden;
  }

  .contact-bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(230,0,0,0.08) 0%, transparent 60%);
  }

  .contact-inner {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .contact-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 4vw, 64px);
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    color: var(--white);
    line-height: 1.0;
    margin-bottom: 20px;
  }

  .contact-title .red { color: var(--red); }

  .contact-services {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 32px;
  }

  .contact-service-tag {
    background: var(--surface);
    border: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray);
    padding: 8px 14px;
  }

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

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

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

  .form-field label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    background: var(--surface);
    border: none;
    border-bottom: 1px solid var(--border-bright);
    padding: 12px 0;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }

  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-bottom-color: var(--red);
  }

  .form-field select option { background: var(--surface); }
  .form-field textarea { resize: none; min-height: 100px; }
  .form-field input::placeholder,
  .form-field textarea::placeholder {
    color: var(--gray);
  }

  .form-submit {
    margin-top: 8px;
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 64px 64px 40px;
  }

  .footer-grid {
    max-width: 1312px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
  }

  .footer-logo {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--white);
    font-style: italic;
    text-transform: uppercase;
  }

  .footer-logo span { color: var(--red); }

  .footer-desc {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.75;
    margin-top: 16px;
    margin-bottom: 24px;
  }

  .footer-socials {
    display: flex; gap: 12px;
  }

  .footer-social {
    width: 36px; height: 36px;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }

  .footer-social:hover {
    border-color: var(--red);
    background: rgba(230,0,0,0.1);
    color: var(--red);
  }

  .footer-col-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--white);
    margin-bottom: 20px;
  }

  .footer-links {
    list-style: none;
    display: flex; flex-direction: column; gap: 12px;
  }

  .footer-links a {
    font-size: 14px;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
    display: flex; align-items: center; gap: 8px;
  }

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

  .footer-bottom {
    max-width: 1312px;
    margin: 0 auto;
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
  }

  .footer-copy {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--gray);
  }

  .footer-copy span { color: var(--red); }

  .footer-legal {
    display: flex; gap: 24px;
  }

  .footer-legal a {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.05em;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-legal a:hover { color: var(--white); }

  /* ─── DIVIDER STRIPE ─── */
  .stripe-divider {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--red) 20%, var(--red) 80%, transparent);
    opacity: 0.3;
  }

  /* ─── FLOATING WHATSAPP BUTTON ─── */
  .whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
  }

  .whatsapp-float:active {
    transform: scale(0.95);
  }

  /* ─── MOBILE ─── */
  @media (max-width: 1024px) {
    nav { padding: 0 24px; height: 64px; }
    .nav-links { display: none; }
    .nav-logo { font-size: 18px; }
    section { padding: 60px 24px; }
    .section-inner { max-width: 100%; }
    #hero { padding: 64px 24px 0; min-height: auto; }
    .hero-content h1 { font-size: 42px; line-height: 1.1; }
    .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
    .stat-value { font-size: 32px; }
    .stat-label { font-size: 11px; }
    footer { padding: 48px 24px 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  }

  @media (max-width: 768px) {
    nav { padding: 0 20px; height: 60px; }
    .nav-logo { font-size: 16px; gap: 8px; }
    .logo-badge { font-size: 8px; padding: 2px 6px; }
    .nav-cta { display: none; }
    
    section { padding: 48px 20px; }
    .section-label { font-size: 10px; }
    h2 { font-size: 28px; line-height: 1.15; }
    
    #hero { padding: 60px 20px 0; }
    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 14px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary { width: 100%; justify-content: center; }
    .hero-stats { gap: 16px; }
    .stat-value { font-size: 28px; }
    .hero-scroll { display: none; }
    
    .about-grid,
    .motorvee-inner,
    .parts-grid,
    .contact-inner,
    .faq-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .why-grid,
    .services-grid,
    .testimonials-grid { grid-template-columns: 1fr; gap: 24px; }
    
    .about-visual { height: 280px; }
    
    .service-card { padding: 32px 24px; }
    .service-icon { width: 48px; height: 48px; }
    
    .mv-stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .mv-stat-value { font-size: 32px; }
    
    .part-card { padding: 32px 24px; }
    
    .testimonial-card { padding: 32px 24px; }
    .testimonial-text { font-size: 15px; }
    
    .contact-form { padding: 32px 24px; }
    .form-row { flex-direction: column; }
    
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  }
  
  @media (max-width: 480px) {
    nav { padding: 0 16px; }
    section { padding: 40px 16px; }
    
    #hero { padding: 60px 16px 0; }
    .hero-content h1 { font-size: 28px; }
    .hero-stats { flex-direction: column; width: 100%; }
    .hero-stat { width: 100%; text-align: center; }
    
    h2 { font-size: 24px; }
    
    .why-card,
    .service-card,
    .part-card,
    .testimonial-card { padding: 24px 20px; }
    
    .mv-stats-grid { grid-template-columns: 1fr; }
    
    .contact-services { gap: 8px; }
    .contact-service-tag { font-size: 11px; padding: 6px 12px; }
    
    .whatsapp-float {
      width: 56px;
      height: 56px;
      bottom: 20px;
      right: 20px;
    }
  }

  /* ─── ANIMATIONS ─── */
  .fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }

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

  .stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }

  .stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
  .stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.1s; }
  .stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.2s; }
  .stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.3s; }
  .stagger.visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.4s; }
  .stagger.visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.5s; }
