/* ===== WHEELS FOR CHANGE INC — Premium Automotive Identity ===== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --black: #0a0a0a;
  --charcoal: #1a1a1a;
  --graphite: #242424;
  --dark-panel: #2c2c2c;
  --olive: #3d4a2e;
  --olive-light: #4e5e3a;
  --bronze: #8b6914;
  --bronze-light: #c09a3a;
  --silver: #b0b4b8;
  --silver-light: #d4d8dc;
  --warm-gray: #6b6560;
  --beige: #c8b99a;
  --cream: #e8dcc8;
  --white: #f5f2ee;
  --text-primary: #e8e4de;
  --text-secondary: #9a9590;
  --border: rgba(180, 160, 110, 0.15);
  --border-strong: rgba(180, 160, 110, 0.3);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--black);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== TREAD TEXTURE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.012) 40px,
      rgba(255,255,255,0.012) 41px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.012) 40px,
      rgba(255,255,255,0.012) 41px
    );
  pointer-events: none;
  z-index: 0;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.99);
  border-bottom-color: var(--border-strong);
}

.nav-brand {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.nav-brand .brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
}

.nav-brand .brand-tag {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--bronze-light);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--bronze-light); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  background: var(--olive);
  color: var(--cream) !important;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--olive-light);
  transition: all 0.25s ease;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.btn-call:hover {
  background: var(--olive-light);
  transform: translateY(-1px);
}

.btn-call svg { width: 14px; height: 14px; flex-shrink: 0; }

/* Hamburger */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--silver-light); margin: 5px 0; transition: all 0.3s; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(61, 74, 46, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(139, 105, 20, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0f1208 100%);
}

/* Geometric tire tread accent */
.hero-bg::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55vw;
  height: 55vw;
  max-width: 700px;
  max-height: 700px;
  border-radius: 50%;
  border: 2px solid rgba(192, 154, 58, 0.08);
  box-shadow:
    0 0 0 30px rgba(192, 154, 58, 0.04),
    0 0 0 60px rgba(192, 154, 58, 0.03),
    0 0 0 90px rgba(192, 154, 58, 0.02),
    0 0 0 120px rgba(192, 154, 58, 0.01);
}

.hero-bg::after {
  content: '';
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 28vw;
  height: 28vw;
  max-width: 360px;
  max-height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 74, 46, 0.3) 0%, transparent 70%);
  border: 1px solid rgba(192, 154, 58, 0.12);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5% 5% 5% 8%;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-eyebrow span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze-light);
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--bronze-light);
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 0.95;
}

.hero-title .accent {
  color: transparent;
  -webkit-text-stroke: 2px rgba(192, 154, 58, 0.6);
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  color: var(--text-secondary);
  margin: 1.5rem 0 2.5rem;
  max-width: 500px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: var(--olive);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--olive-light);
  transition: all 0.3s ease;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { background: var(--olive-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(61, 74, 46, 0.4); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--silver-light);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--border-strong);
  transition: all 0.3s ease;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}

.btn-secondary:hover {
  border-color: var(--bronze-light);
  color: var(--bronze-light);
  transform: translateY(-2px);
}

.btn-outline-bronze {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--bronze-light);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid var(--bronze-light);
  transition: all 0.3s ease;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}

.btn-outline-bronze:hover {
  background: var(--bronze);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 0.85rem;
}

/* ===== HERO STATS ===== */
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-item .stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--bronze-light);
  line-height: 1;
}

.stat-item .stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 4px;
}

/* ===== SECTION COMMONS ===== */
section { position: relative; z-index: 1; }

.section-pad { padding: 6rem 8%; }
.section-pad-sm { padding: 4rem 8%; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.section-eyebrow span {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze-light);
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--bronze-light);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
}

/* ===== TICKER / MARQUEE ===== */
.ticker {
  background: var(--olive);
  border-top: 1px solid rgba(192, 154, 58, 0.2);
  border-bottom: 1px solid rgba(192, 154, 58, 0.2);
  overflow: hidden;
  padding: 0.85rem 0;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2.5rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
}

.ticker-item::before {
  content: '◆';
  font-size: 0.5rem;
  color: var(--bronze-light);
}

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

/* ===== SERVICES GRID ===== */
.services-intro {
  background: var(--charcoal);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  margin-top: 4rem;
}

.service-card {
  background: var(--charcoal);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--bronze-light);
  transition: height 0.4s ease;
}

.service-card:hover { background: var(--graphite); }
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.5rem;
  color: var(--olive-light);
  transition: color 0.3s ease;
}

.service-card:hover .service-icon { color: var(--bronze-light); }

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-link {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.25s ease;
}

.service-link:hover { gap: 0.9rem; }

/* ===== FEATURE SPLIT ===== */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background: var(--graphite);
}

.feature-split-img {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}

.feature-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.tire-svg-large {
  width: 80%;
  height: 80%;
  opacity: 0.15;
}

.feature-split-content {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-list {
  list-style: none;
  margin: 2rem 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.feature-list li:last-child { border-bottom: none; }

.feature-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze-light);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ===== CTA STRIP ===== */
.cta-strip {
  background:
    linear-gradient(90deg, var(--olive) 0%, rgba(61, 74, 46, 0.85) 60%, transparent 100%),
    var(--graphite);
  border-top: 1px solid rgba(192, 154, 58, 0.15);
  border-bottom: 1px solid rgba(192, 154, 58, 0.15);
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-strip-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-strip-text p {
  color: var(--cream);
  opacity: 0.8;
  font-size: 0.9rem;
}

.cta-strip-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: var(--border);
  margin-top: 4rem;
}

.why-card {
  background: var(--charcoal);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.3s;
}

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

.why-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--bronze-light);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--charcoal); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--graphite);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--bronze-light);
  opacity: 0.3;
  line-height: 1;
}

.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
}

.author-meta {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

/* ===== CONTACT / PAGE HERO ===== */
.page-hero {
  padding: 10rem 8% 5rem;
  background: linear-gradient(135deg, var(--charcoal), var(--graphite));
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(61, 74, 46, 0.08));
}

/* ===== FORM ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.contact-info-block { }

.contact-detail {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-child { border-bottom: none; }

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--graphite);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--bronze-light);
}

.contact-detail-icon svg { width: 18px; height: 18px; }

.contact-detail-text .label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.contact-detail-text .value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

.contact-detail-text a {
  color: var(--bronze-light);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail-text a:hover { color: var(--cream); }

.contact-form { }

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--graphite);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s ease;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--bronze-light);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray);
}

.form-group select option {
  background: var(--graphite);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit { margin-top: 1.5rem; }

.form-note {
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.form-success {
  display: none;
  background: var(--olive);
  border: 1px solid var(--olive-light);
  padding: 1.25rem;
  color: var(--cream);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ===== MAP PLACEHOLDER ===== */
.map-section { background: var(--charcoal); }

.map-placeholder {
  height: 300px;
  background:
    repeating-linear-gradient(
      45deg,
      var(--graphite),
      var(--graphite) 10px,
      var(--dark-panel) 10px,
      var(--dark-panel) 20px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}

.map-placeholder span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  background: var(--charcoal);
  padding: 0.75rem 2rem;
}

/* ===== SALES PAGE GRID ===== */
.tire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.tire-card {
  background: var(--charcoal);
  padding: 2rem;
  transition: background 0.3s;
}

.tire-card:hover { background: var(--graphite); }

.tire-card-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  background: var(--olive);
  color: var(--cream);
  margin-bottom: 1rem;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
}

.tire-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.tire-card .tire-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  color: var(--bronze-light);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.tire-card ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.tire-card ul li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.tire-card ul li::before {
  content: '—';
  color: var(--bronze-light);
  flex-shrink: 0;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 0; right: 0;
  height: 1px;
  background: var(--border-strong);
}

.step-item {
  padding: 0 2rem 2rem;
  position: relative;
}

.step-num {
  width: 44px;
  height: 44px;
  border: 1px solid var(--bronze-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--bronze-light);
  background: var(--black);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.step-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== ABOUT PAGE ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px solid rgba(192, 154, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about-circle::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px solid rgba(192, 154, 58, 0.1);
  box-shadow: inset 0 0 60px rgba(61, 74, 46, 0.2);
}

.about-inner {
  text-align: center;
}

.about-year {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--bronze-light);
  line-height: 1;
}

.about-year-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.values-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-icon {
  width: 32px;
  height: 32px;
  background: var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-icon svg { width: 16px; height: 16px; color: var(--cream); }

.value-text h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.value-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}

.footer-main {
  padding: 4rem 8% 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.footer-brand-tag {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bronze-light);
  display: block;
  margin-bottom: 1.25rem;
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.4rem;
  background: var(--olive);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--olive-light);
  transition: background 0.25s;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.footer-call-btn:hover { background: var(--olive-light); }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--silver-light);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--bronze-light); }

.footer-col .addr-line {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.3rem;
}

.footer-col .phone-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--bronze-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col .phone-link:hover { color: var(--cream); }

.footer-bottom {
  padding: 1.25rem 8%;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copyright {
  font-size: 0.72rem;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ===== ANGULAR DIVIDER ===== */
.angular-divider {
  height: 60px;
  background: var(--charcoal);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}

.angular-divider-inv {
  height: 60px;
  background: var(--charcoal);
  clip-path: polygon(0 0, 100% 60%, 100% 100%, 0 100%);
}

/* ===== REPAIR PAGE ===== */
.repair-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: var(--border);
  margin-top: 3rem;
}

.repair-card {
  background: var(--charcoal);
  padding: 2.5rem 2rem;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
}

.repair-card:hover {
  background: var(--graphite);
  border-bottom-color: var(--olive);
}

.repair-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.repair-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== UTILITY ===== */
.text-bronze { color: var(--bronze-light); }
.text-olive { color: var(--olive-light); }
.text-muted { color: var(--text-secondary); }
.divider { height: 1px; background: var(--border); margin: 0 8%; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .feature-split { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section-pad { padding: 4rem 5%; }
  .section-pad-sm { padding: 3rem 5%; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .hero-content { padding: 3rem 5%; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 5% 2rem; }
  .footer-bottom { padding: 1rem 5%; }
  .cta-strip-inner { flex-direction: column; }
  .feature-split-content { padding: 2.5rem; }
  .process-steps::before { display: none; }
  .about-circle { width: 240px; height: 240px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary, .btn-outline-bronze { width: 100%; justify-content: center; }
  .cta-strip-actions { width: 100%; }
  .cta-strip-actions .btn-primary,
  .cta-strip-actions .btn-secondary { flex: 1; justify-content: center; }
}

/* Mobile Nav Open */
.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--charcoal);
  padding: 2rem 5%;
  gap: 1.25rem;
  border-bottom: 1px solid var(--border);
  z-index: 999;
}
