/* ===========================
   A&J Auto Services
   Color: Black + Red + White
   =========================== */

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

:root {
  --black:     #181818;
  --black-mid: #222222;
  --black-lt:  #2e2e2e;
  --red:       #b01818;
  --red-lt:    #d42020;
  --red-dim:   #8a1212;
  --white:     #ffffff;
  --cream:     #f0ece0;
  --off-white: #f7f7f5;
  --gray:      #888888;
  --gray-lt:   #e0e0e0;
  --text:      #1a1a1a;
  --radius:    16px;
  --shadow:    0 8px 32px rgba(0,0,0,0.15);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.25);
}

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(176,24,24,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-ghost:hover {
  background: var(--black);
  color: var(--white);
}
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: var(--black);
  transition: all 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo-svg { line-height: 0; flex-shrink: 0; }
.logo-svg img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--red-lt); }
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  margin-left: auto;
  color: var(--white);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #111111 0%, #1e1e1e 60%, #2a1a1a 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(176,24,24,0.12) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(176,24,24,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(176,24,24,0.15);
  border: 1px solid rgba(176,24,24,0.35);
  color: #e05050;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: var(--red-lt);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
.hero-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.highlight { color: var(--red-lt); position: relative; }
.highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0;
  width: 100%; height: 4px;
  background: var(--red);
  opacity: 0.35;
  border-radius: 2px;
}
.hero-sub {
  color: rgba(255,255,255,0.6);
  font-size: 17px;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}
.play-icon {
  width: 28px; height: 28px;
  background: var(--white);
  color: var(--black);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.hero-rating { display: flex; align-items: center; gap: 14px; }
.stars { color: var(--red-lt); font-size: 20px; letter-spacing: 2px; }
.rating-text { display: flex; flex-direction: column; }
.rating-text strong { font-size: 18px; color: var(--white); }
.rating-text span { font-size: 13px; color: rgba(255,255,255,0.5); }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splash {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}
.splash-1 {
  width: 320px; height: 320px;
  background: rgba(176,24,24,0.2);
  top: -40px; right: -20px;
}
.splash-2 {
  width: 220px; height: 220px;
  background: rgba(176,24,24,0.12);
  bottom: 0; left: -20px;
}
.hero-image-wrap {
  position: relative;
  z-index: 2;
  background: var(--black-mid);
  border: 1px solid var(--black-lt);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.hero-car-svg { width: 100%; height: auto; }
.float-badge {
  position: absolute;
  background: var(--black-mid);
  border: 1px solid var(--black-lt);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow);
  z-index: 3;
}
.float-badge div { display: flex; flex-direction: column; }
.float-badge strong { font-size: 13px; color: var(--white); font-weight: 700; }
.float-badge small { font-size: 11px; color: var(--gray); }
.badge-icon { font-size: 22px; }
.badge-top { top: 20px; right: -20px; }
.badge-bottom { bottom: 30px; left: -20px; }

/* ===== BRANDS ===== */
.brands {
  background: var(--black);
  padding: 40px 0;
  border-top: 1px solid var(--black-lt);
  border-bottom: 1px solid var(--black-lt);
}
.brands-label {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}
.brands-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.brand-logo {
  font-size: 18px;
  font-weight: 800;
  color: rgba(255,255,255,0.35);
  letter-spacing: -0.5px;
  transition: color 0.2s;
  cursor: default;
}
.brand-logo:hover { color: var(--white); }

/* ===== SECTION SHARED ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: rgba(176,24,24,0.1);
  color: var(--red-lt);
  border: 1px solid rgba(176,24,24,0.3);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.section-header p { color: var(--gray); font-size: 17px; max-width: 500px; margin: 0 auto; }

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: #2a2a2a;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.services .section-header h2 { color: var(--white); }
.services .section-header p { color: rgba(255,255,255,0.55); }

.service-card {
  background: #333333;
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid #3e3e3e;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}
.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p { color: var(--gray); font-size: 15px; line-height: 1.65; margin-bottom: 20px; }
.card-link {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.card-link:hover { color: var(--red-lt); }

.services-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 56px 0 40px;
}
.services-divider::before,
.services-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #3e3e3e;
}
.services-divider span {
  color: var(--red-lt);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}

.services-grid-perf { grid-template-columns: repeat(3, 1fr); }

.service-card-perf {
  border-color: rgba(176,24,24,0.25);
}
.service-card-perf::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(176,24,24,0.15);
  pointer-events: none;
}

.mobile-callout {
  margin-top: 48px;
  background: #1e1e1e;
  border: 1px solid rgba(176,24,24,0.3);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.mobile-callout-icon { font-size: 40px; flex-shrink: 0; }
.mobile-callout h4 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.mobile-callout p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.6; }
.mobile-callout .btn { flex-shrink: 0; margin-left: auto; white-space: nowrap; }

@media (max-width: 768px) {
  .services-grid-perf { grid-template-columns: 1fr; }
  .mobile-callout { flex-direction: column; text-align: center; }
  .mobile-callout .btn { margin-left: 0; }
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: #2a2a2a;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img-wrap { position: relative; margin-bottom: 32px; }
.splash-about-1 {
  position: absolute;
  width: 280px; height: 280px;
  background: rgba(176,24,24,0.1);
  top: -30px; left: -30px;
  border-radius: 50%;
  filter: blur(30px);
}
.splash-about-2 {
  position: absolute;
  width: 200px; height: 200px;
  background: rgba(176,24,24,0.08);
  bottom: -20px; right: -20px;
  border-radius: 50%;
  filter: blur(25px);
}
.about-graphic {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: var(--black);
  color: var(--white);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-card strong { font-size: 32px; font-weight: 900; color: var(--red-lt); }
.stat-card span { font-size: 13px; opacity: 0.7; }
.about-content .section-tag { display: inline-block; margin-bottom: 16px; }
.about-content h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.about-content p { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.about-list { list-style: none; margin: 24px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.about-list li { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.85); font-weight: 500; font-size: 15px; }
.check {
  width: 24px; height: 24px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ===== WORKS ===== */
.works {
  padding: 100px 0;
  background: var(--black);
}
.works .section-header h2 { color: var(--white); }
.works .section-header p { color: rgba(255,255,255,0.5); }
.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
.work-card-large { grid-column: span 2; grid-row: span 2; }
.work-thumb {
  width: 100%; height: 100%;
  min-height: 220px;
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.work-card-large .work-thumb { min-height: 460px; }
.work-thumb-1 { background: linear-gradient(135deg, #2a0a0a, #1a0505); }
.work-thumb-2 { background: linear-gradient(135deg, #1f0808, #140404); }
.work-thumb-3 { background: linear-gradient(135deg, #221010, #160606); }
.work-thumb-4 { background: linear-gradient(135deg, #1c0808, #120303); }
.work-thumb-1::before { content: '🔧'; font-size: 80px; position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%); opacity: 0.15; }
.work-thumb-2::before { content: '🚗'; font-size: 60px; position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%); opacity: 0.15; }
.work-thumb-3::before { content: '🔍'; font-size: 60px; position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%); opacity: 0.15; }
.work-thumb-4::before { content: '🛞'; font-size: 60px; position: absolute; top: 40%; left: 50%; transform: translate(-50%,-50%); opacity: 0.15; }
/* Red left-edge accent on cards */
.work-thumb::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.3s;
}
.work-thumb:hover::after { opacity: 1; }
.work-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  border-radius: 0 0 var(--radius) var(--radius);
}
.work-cat {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 50px;
  margin-bottom: 8px;
}
.work-overlay h4 { color: var(--white); font-size: 16px; font-weight: 600; }
.work-card-large .work-overlay h4 { font-size: 22px; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: #2a2a2a;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.testimonials .section-header h2 { color: var(--white); }

.testimonial-card {
  background: #333333;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid #3e3e3e;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-featured {
  background: #1e1e1e;
  border-color: #1e1e1e;
  position: relative;
  transform: scale(1.04);
}
.t-quote {
  font-size: 64px;
  line-height: 0.8;
  color: var(--red-lt);
  font-family: Georgia, serif;
}
.t-stars { color: var(--red-lt); font-size: 16px; letter-spacing: 2px; }
.testimonial-card p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; flex: 1; }
.testimonial-featured p { color: rgba(255,255,255,0.75); }
.t-author { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.t-avatar {
  width: 44px; height: 44px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.testimonial-featured .t-avatar { background: rgba(176,24,24,0.2); color: var(--red-lt); border: 2px solid var(--red); }
.t-author div { display: flex; flex-direction: column; }
.t-author strong { font-size: 14px; color: var(--white); font-weight: 700; }
.testimonial-featured .t-author strong { color: var(--white); }
.t-author small { font-size: 12px; color: var(--gray); }
.testimonial-featured .t-author small { color: rgba(255,255,255,0.5); }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-tag { display: inline-block; margin-bottom: 16px; }
.contact-info h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: -1px;
}
.contact-info > p { color: var(--gray); font-size: 16px; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.c-icon { font-size: 24px; }
.contact-item div { display: flex; flex-direction: column; gap: 4px; }
.contact-item strong { font-size: 15px; color: var(--black); font-weight: 700; }
.contact-item span, .contact-item a { color: var(--gray); font-size: 15px; text-decoration: none; }
.contact-item a:hover { color: var(--red); }

/* Form */
.contact-form {
  background: var(--off-white);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--gray-lt);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label { font-size: 14px; font-weight: 600; color: var(--black); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--gray-lt);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(176,24,24,0.12);
}
.form-group textarea { resize: vertical; }
.form-note { text-align: center; font-size: 13px; color: var(--gray); margin-top: 12px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
}
.footer-brand .logo-svg { display: inline-block; margin-bottom: 16px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 15px; max-width: 280px; line-height: 1.65; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s;
  text-transform: uppercase;
}
.social-link:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 { color: var(--red-lt); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.footer-col a, .footer-col span {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--red-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span { color: rgba(255,255,255,0.3); font-size: 13px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .navbar .btn-primary { display: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: 100px 0 60px; }
  .hero-content { text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-ctas { justify-content: center; }
  .hero-rating { justify-content: center; }
  .float-badge { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: 1fr; }
  .work-card-large { grid-column: span 1; grid-row: span 1; }
  .work-card-large .work-thumb { min-height: 280px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-featured { transform: none; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom .container { flex-direction: column; gap: 8px; text-align: center; }
  .brands-logos { gap: 24px; }
}

@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
