/* ============================================================
   American IMP & EXP Auto Part — Aggressive Racing Aesthetic
   Colors: Red #CC0000 | Black #0A0A0A | White | Gray
   Typography: Barlow Condensed (bold italic) — matches logo
   ============================================================ */

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

:root {
  --red:         #CC0000;
  --red-bright:  #E60000;
  --red-dark:    #990000;
  --red-glow:    rgba(204,0,0,.35);
  --black:       #0A0A0A;
  --black-mid:   #141414;
  --black-light: #1A1A1A;
  --gray-900:    #111111;
  --gray-800:    #1C1C1C;
  --gray-700:    #2A2A2A;
  --gray-600:    #444444;
  --gray-500:    #666666;
  --gray-400:    #888888;
  --gray-300:    #AAAAAA;
  --gray-200:    #D0D0D0;
  --gray-100:    #E8E8E8;
  --white:       #FFFFFF;
  --font:        'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:   'Barlow', Arial, sans-serif;
  --transition:  .2s cubic-bezier(.4,0,.2,1);
  --max-w:       1200px;
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Accessibility ── */
.skip-link {
  position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--white); padding: 8px 24px;
  font-family: var(--font); font-weight: 700; z-index: 10000;
}
.skip-link:focus { top: 0; }
.hidden { display: none !important; }

/* ── Container ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── Grid ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); }
.gap-8  { gap: 32px; }
.gap-12 { gap: 48px; }
.gap-16 { gap: 64px; }
.items-center { align-items: center; }
.text-center { text-align: center; }
.w-full { width: 100%; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.05;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: .02em;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4,
.hero h1, .hero h2, .hero h3, .page-header h1 { color: var(--white); }
.text-muted { color: var(--gray-500); }
.section-dark .text-muted { color: var(--gray-400); }

/* ── Section ── */
.section { padding: 96px 0; background: var(--white); }
.section-dark { background: var(--black); color: var(--white); }
.section-gray { background: var(--gray-100); }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em;
  color: var(--red); margin-bottom: 12px;
}
.section-label::before {
  content: ''; width: 32px; height: 3px; background: var(--red);
}
.section-title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 16px; }
.section-subtitle { font-size: 1.05rem; color: var(--gray-400); line-height: 1.7; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 700; font-size: .9rem;
  text-transform: uppercase; letter-spacing: .08em;
  border-radius: var(--radius-sm); transition: all var(--transition);
  white-space: nowrap; cursor: pointer; border: 2px solid transparent;
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,.1) 50%, transparent 60%);
  transform: translateX(-100%); transition: transform .4s;
}
.btn:hover::after { transform: translateX(100%); }
.btn-sm  { padding: 10px 20px; font-size: .8rem; }
.btn     { padding: 14px 28px; }
.btn-lg  { padding: 18px 40px; font-size: 1rem; }
.btn-icon { width: 18px; height: 18px; }

.btn-primary {
  background: var(--red); color: var(--white); border-color: var(--red);
}
.btn-primary:hover {
  background: var(--red-bright); border-color: var(--red-bright);
  box-shadow: 0 0 30px var(--red-glow), 0 0 60px rgba(204,0,0,.15);
}

.btn-outline {
  background: transparent; color: var(--white); border-color: var(--white);
}
.btn-outline:hover {
  border-color: var(--red); color: var(--red);
  box-shadow: 0 0 20px rgba(204,0,0,.1);
}

.btn-secondary {
  background: transparent; color: var(--black); border-color: var(--gray-300);
}
.btn-secondary:hover { border-color: var(--red); color: var(--red); }

.btn-ghost {
  background: transparent; color: var(--red); border: none; padding-left: 0; padding-right: 0;
  text-transform: uppercase; letter-spacing: .1em;
}
.btn-ghost:hover { color: var(--red-bright); }

/* ── Header ── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-100);
  transition: all var(--transition);
}
#header.scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  backdrop-filter: blur(10px);
}
#header.scrolled .header-inner { height: 56px; }
#header.scrolled .logo-img { height: 32px; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; transition: height .3s ease; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 40px; width: auto; }
.logo-text {
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  color: var(--black); text-transform: uppercase; letter-spacing: .05em;
}

.nav-desktop { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 16px; font-family: var(--font); font-size: .85rem;
  font-weight: 600; color: var(--gray-600); text-transform: uppercase;
  letter-spacing: .08em; border-radius: 2px; transition: all var(--transition);
  position: relative;
}
.nav-link:hover { color: var(--black); }
.nav-link.active { color: var(--red); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 0; left: 16px; right: 16px;
  height: 3px; background: var(--red);
}

.menu-toggle {
  display: none; width: 40px; height: 40px; align-items: center; justify-content: center;
  color: var(--black);
}
.menu-icon, .menu-close { width: 24px; height: 24px; }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; padding: 24px;
  transform: translateX(100%); transition: transform var(--transition);
  overflow-y: auto; border-top: 1px solid var(--gray-100);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 4px; }
.mobile-link {
  display: block; padding: 16px; font-family: var(--font);
  font-size: 1.1rem; font-weight: 700; color: var(--gray-600);
  text-transform: uppercase; letter-spacing: .08em;
  border-bottom: 1px solid var(--gray-100); transition: all var(--transition);
}
.mobile-link:hover { color: var(--red); }

/* ── Hero ── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--black); overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: rgba(10,10,10,.6);
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(204,0,0,.03) 40px,
      rgba(204,0,0,.03) 80px
    );
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px; background: linear-gradient(to top, var(--black), transparent);
  z-index: 2;
}
.hero-content {
  position: relative; z-index: 3; max-width: 80%;
  padding-top: 100px; padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 20px;
  background: rgba(204,0,0,.12); border: 1px solid rgba(204,0,0,.3);
  font-family: var(--font); font-size: .75rem; font-weight: 700;
  color: var(--red); text-transform: uppercase; letter-spacing: .15em;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; background: var(--red);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation: pulse-diamond 1.5s infinite;
}
@keyframes pulse-diamond {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.8); }
}
.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem); font-weight: 700;
  color: var(--white); margin-bottom: 20px; line-height: .95;
  text-transform: uppercase;
}
.hero-title span { color: var(--red); display: block; }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem); color: var(--gray-400);
  max-width: 520px; margin-bottom: 36px; line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 48px; padding-top: 32px;
  border-top: 2px solid rgba(204,0,0,.2);
}
.hero-stat-num {
  font-family: var(--font); font-size: 2rem; font-weight: 700;
  color: var(--white); text-transform: uppercase;
}
.hero-stat-label {
  font-size: .8rem; color: var(--gray-500); margin-top: 2px;
  text-transform: uppercase; letter-spacing: .1em;
}

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 4; animation: bounce 2s infinite;
}
.scroll-icon { width: 24px; height: 24px; color: var(--gray-600); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Ticker ── */
.ticker {
  background: var(--red); padding: 10px 0; overflow: hidden;
  border-top: 2px solid var(--red-dark); border-bottom: 2px solid var(--red-dark);
}
.ticker-track {
  display: flex; gap: 48px; animation: ticker 25s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: var(--font); font-size: .8rem; font-weight: 700;
  color: var(--white); text-transform: uppercase; letter-spacing: .15em;
  display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}
.ticker-item::after {
  content: '◆'; font-size: .5rem; color: rgba(255,255,255,.5);
}
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Cards ── */
.card {
  background: var(--white); border-radius: 4px;
  padding: 32px; border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 30px rgba(204,0,0,.08);
  transform: translateY(-2px);
}

.card-number {
  font-family: var(--font); font-size: .75rem; font-weight: 700;
  color: var(--red); letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 16px;
}

.card-icon {
  width: 52px; height: 52px; border-radius: 4px;
  background: rgba(204,0,0,.08); border: 1px solid rgba(204,0,0,.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--red);
}
.card-icon svg { width: 26px; height: 26px; }

.card-title { font-size: 1.15rem; margin-bottom: 8px; color: var(--black); }
.card-desc { font-size: .95rem; color: var(--gray-500); line-height: 1.6; }

.card-list { list-style: none; margin-top: 16px; }
.card-list li {
  position: relative; padding-left: 20px; font-size: .9rem;
  color: var(--gray-600); margin-bottom: 6px;
}
.card-list li::before {
  content: '▸'; position: absolute; left: 0; color: var(--red); font-weight: 700;
}

/* Catalog Card */
.card-catalog { text-align: center; padding: 40px 24px; }
.catalog-icon {
  width: 56px; height: 56px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(204,0,0,.08); border-radius: 12px;
  color: var(--red); transition: all var(--transition);
}
.catalog-icon svg { width: 28px; height: 28px; }
.card-catalog:hover .catalog-icon { background: var(--red); color: var(--white); transform: scale(1.1); }
.card-meta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: .8rem; color: var(--gray-500); margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: .05em;
}

/* Brand Card */
.brand-card { padding: 28px 24px; text-align: center; display: flex; flex-direction: column; align-items: center; }
.brand-img {
  width: 120px; height: 60px; object-fit: contain;
  margin-bottom: 12px; padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
  transition: all var(--transition);
}
.brand-card:hover .brand-img { border-bottom-color: var(--red); transform: scale(1.05); }

/* Blog Card */
.card-blog { padding: 0; overflow: hidden; }
.card-blog .card-img { width: 100%; height: 220px; object-fit: cover; }
.card-blog .card-body { padding: 24px; }
.card-blog .card-title a { color: var(--black); transition: color var(--transition); }
.card-blog .card-title a:hover { color: var(--red); }
.link-red { color: var(--red); font-weight: 700; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; transition: color var(--transition); }
.link-red:hover { color: var(--red-bright); }

/* ── Stats ── */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-number {
  font-family: var(--font); font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700; color: var(--white); margin-bottom: 4px;
  text-transform: uppercase;
}
.stat-number span { color: var(--red); }
.stat-label {
  font-size: .8rem; color: var(--gray-400);
  text-transform: uppercase; letter-spacing: .12em;
}

/* Stats on white background */
.section:not(.section-dark) .stat-number { color: var(--black); }
.section:not(.section-dark) .stat-label { color: var(--gray-500); }

/* ── Service Cards ── */
.service-card {
  padding: 40px 32px; border-radius: 4px;
  background: var(--white); border: 1px solid var(--gray-200);
  transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--red); transform: scaleX(0);
  transition: transform var(--transition); transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { border-color: rgba(204,0,0,.3); box-shadow: 0 8px 40px rgba(204,0,0,.06); }
.service-num {
  font-family: var(--font); font-size: .7rem; font-weight: 700;
  color: var(--red); letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 16px;
}

/* ── Feature Row ── */
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-img {
  border-radius: 4px; overflow: hidden;
  border: 1px solid var(--gray-800); aspect-ratio: 4/3;
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { list-style: none; margin-top: 24px; }
.feature-list li {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--gray-100); font-size: .95rem;
  color: var(--gray-700);
}
.feature-list li:last-child { border-bottom: none; }
.feature-check { color: var(--red); flex-shrink: 0; font-weight: 700; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-dark) 100%);
  border-radius: 4px; padding: 64px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(0,0,0,.08) 20px,
      rgba(0,0,0,.08) 40px
    );
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 12px; position: relative; text-transform: uppercase; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 32px; font-size: 1.05rem; position: relative; }
.cta-banner .btn { position: relative; }

/* ── Form ── */
.form-grid { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: var(--font); font-size: .8rem; font-weight: 700;
  color: var(--gray-700); text-transform: uppercase; letter-spacing: .08em;
}
.required { color: var(--red); }
.form-input {
  padding: 14px 16px; border: 1px solid var(--gray-200);
  border-radius: 2px; background: var(--white);
  color: var(--black); transition: all var(--transition);
}
.form-input::placeholder { color: var(--gray-400); }
.form-input:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 2px rgba(204,0,0,.1); }
.form-input.textarea { resize: vertical; min-height: 120px; }
.form-success, .form-error-msg {
  padding: 12px 16px; border-radius: 2px; font-size: .9rem; font-weight: 600;
}
.form-success { background: rgba(0,200,0,.1); color: #4ADE80; border: 1px solid rgba(0,200,0,.2); }
.form-error-msg { background: rgba(204,0,0,.1); color: #F87171; border: 1px solid rgba(204,0,0,.2); }

/* ── Contact Info ── */
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; }
.contact-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--red); margin-top: 2px; }
.contact-item strong { color: var(--black); font-size: .95rem; display: block; margin-bottom: 2px; text-transform: uppercase; letter-spacing: .05em; }
.contact-item div { font-size: .9rem; color: var(--gray-500); line-height: 1.6; }

/* ── Map ── */
.map-section { width: 100%; }
.map-section iframe { display: block; width: 100%; min-height: 450px; border: 0; }

/* ── Footer ── */
.footer { background: var(--gray-100); color: var(--gray-600); padding: 64px 0 0; border-top: 1px solid var(--gray-200); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid var(--gray-200);
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-img { height: 36px; width: auto; }
.footer-desc { font-size: .9rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px; border-radius: 2px;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  color: var(--gray-600); transition: all var(--transition); border: 1px solid var(--gray-200);
}
.social-link:hover { background: var(--red); color: var(--white); border-color: var(--red); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; }

.footer-heading {
  font-family: var(--font); font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--black);
  margin-bottom: 16px;
}
.footer-links ul li { margin-bottom: 8px; }
.footer-links ul li a { font-size: .9rem; transition: color var(--transition); text-transform: uppercase; letter-spacing: .05em; color: var(--gray-600); }
.footer-links ul li a:hover { color: var(--red); }

.footer-contact address { font-style: normal; }
.footer-contact p { font-size: .9rem; margin-bottom: 8px; color: var(--gray-600); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: .85rem; border-top: 1px solid var(--gray-200);
  color: var(--gray-500);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { transition: color var(--transition); text-transform: uppercase; letter-spacing: .05em; font-size: .8rem; color: var(--gray-500); }
.footer-legal a:hover { color: var(--red); }

/* ── WhatsApp FAB ── */
.fab-whatsapp {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: all var(--transition);
}
.fab-whatsapp svg { width: 28px; height: 28px; }
.fab-whatsapp:hover { transform: scale(1.08); box-shadow: 0 6px 30px rgba(37,211,102,.5); }

/* ── Scroll to Top ── */
.fab-scroll {
  position: fixed; bottom: 24px; right: 92px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gray-700); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(16px);
  transition: all var(--transition);
}
.fab-scroll.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.fab-scroll:hover { background: var(--red); }
.fab-scroll svg { width: 20px; height: 20px; }

/* ── Reveal ── */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.animate-in {
  opacity: 0; transform: translateY(20px);
  animation: fadeInUp .7s cubic-bezier(.4,0,.2,1) forwards;
}
.animate-in:nth-child(2) { animation-delay: .1s; }
.animate-in:nth-child(3) { animation-delay: .2s; }
.animate-in:nth-child(4) { animation-delay: .3s; }
.animate-in:nth-child(5) { animation-delay: .4s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

/* ── Page Header ── */
.page-header {
  background: var(--black); padding: 160px 0 100px; position: relative; overflow: hidden;
  min-height: 340px; display: flex; align-items: center;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(204,0,0,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(204,0,0,.08) 0%, transparent 50%),
    repeating-linear-gradient(
      -45deg, transparent, transparent 40px,
      rgba(204,0,0,.04) 40px, rgba(204,0,0,.04) 80px
    );
}
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px; background: linear-gradient(to top, var(--white), transparent);
}
.page-header .racing-stripe {
  position: absolute; top: 0; right: -60px; width: 200px; height: 100%;
  background: linear-gradient(135deg, transparent 33%, rgba(204,0,0,.12) 33%, rgba(204,0,0,.12) 66%, transparent 66%);
  transform: skewX(-12deg);
}
.page-header .racing-stripe-2 {
  position: absolute; top: 0; right: 80px; width: 80px; height: 100%;
  background: linear-gradient(135deg, transparent 33%, rgba(204,0,0,.06) 33%, rgba(204,0,0,.06) 66%, transparent 66%);
  transform: skewX(-12deg);
}
.page-header .grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(204,0,0,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,0,0,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-header h1 {
  color: var(--white); font-size: clamp(2.5rem, 6vw, 4rem);
  position: relative; z-index: 1; line-height: 1;
}
.page-header p {
  color: var(--gray-400); margin-top: 16px; font-size: 1.1rem;
  position: relative; z-index: 1; max-width: 560px; line-height: 1.7;
}
.page-header .section-label { color: var(--red); position: relative; z-index: 1; }
.page-header .accent-line {
  width: 80px; height: 4px; background: var(--red); margin-top: 20px;
  position: relative; z-index: 1; border-radius: 2px;
}

/* ── Timeline ── */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 0; bottom: 0;
  width: 2px; background: var(--gray-200);
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -32px; top: 4px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--white); border: 3px solid var(--red);
}
.timeline-year {
  font-family: var(--font); font-size: .75rem; font-weight: 700;
  color: var(--red); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 4px;
}
.timeline-title { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 4px; text-transform: uppercase; }
.timeline-desc { font-size: .9rem; color: var(--gray-500); }

/* ── Blog ── */
.blog-content h2 {
  font-size: 1.3rem; margin: 32px 0 12px; color: var(--black);
}
.blog-content p { margin-bottom: 16px; color: var(--gray-600); line-height: 1.8; }
.blog-content ul { margin-bottom: 16px; padding-left: 0; }
.blog-content li { margin-bottom: 8px; color: var(--gray-600); }
.blog-callout {
  background: var(--gray-100); padding: 24px; border-radius: 4px;
  border-left: 4px solid var(--red); margin: 32px 0;
}

/* ── Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .animate-in { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-content { padding-top: 80px; }
  .section { padding: 64px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row.reverse { direction: ltr; }
  .cta-banner { padding: 40px 24px; }
  .map-section iframe { min-height: 300px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stats-grid { grid-template-columns: 1fr; }
}
