/* ===== RESET & VARIABLES ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --red: #CC1100;
  --red-dark: #a30e00;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #181818;
  --dark-3: #222222;
  --white: #ffffff;
  --light: #e8e8e8;
  --muted: #666666;
  --nav-h: 72px;
  --container: 1320px;
}

html { scroll-behavior: smooth; }

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

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

/* ===== SHARED TYPOGRAPHY ===== */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

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

.section-headline {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* ===== SHARED BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 38px;
  border: 2px solid var(--red);
  transition: background 0.25s, color 0.25s, transform 0.2s;
  cursor: pointer;
}

.btn-primary:hover {
  background: transparent;
  color: var(--red);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 38px;
  border: 2px solid rgba(255,255,255,0.35);
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background 0.35s, box-shadow 0.35s;
}

.navbar.scrolled {
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.07);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.gaz-logo {
  height: 34px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-brand-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.35rem;
  letter-spacing: 0.22em;
  color: var(--white);
  border-left: 2px solid var(--red);
  padding-left: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links .nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 8px 16px;
  transition: color 0.2s;
  white-space: nowrap;
}

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

.nav-links .nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 8px 20px;
  margin-left: 8px;
  transition: background 0.2s;
}

.nav-links .nav-cta:hover {
  background: var(--red-dark);
  color: var(--white);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  background: rgba(10,10,10,0.98);
  flex-direction: column;
  padding: 16px 0;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(-16px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 14px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, padding-left 0.2s;
}

.mobile-nav a:hover {
  color: var(--red);
  padding-left: 52px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 65% 45%, rgba(180,14,0,0.14) 0%, transparent 55%),
    linear-gradient(135deg, #050505 0%, #110000 50%, #0d0d0d 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0,
    transparent 58px,
    rgba(255,255,255,0.018) 58px,
    rgba(255,255,255,0.018) 59px
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5,5,5,0.88) 0%,
    rgba(5,5,5,0.55) 55%,
    rgba(5,5,5,0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
  padding: 60px 40px;
}

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-accent { color: var(--red); }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-vehicle {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-truck-img {
  width: 100%;
  max-width: 680px;
  filter: drop-shadow(0 20px 60px rgba(204,17,0,0.22)) drop-shadow(0 0 80px rgba(0,0,0,0.8));
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-scroll-hint span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.35);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: pulse 2.2s ease-in-out infinite;
}

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

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--red);
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: flex;
  align-items: stretch;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 16px;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s, transform 0.55s;
}

.stat-item.visible { opacity: 1; transform: translateY(0); }
.stat-item:nth-child(3) { transition-delay: 0.1s; }
.stat-item:nth-child(5) { transition-delay: 0.2s; }
.stat-item:nth-child(7) { transition-delay: 0.3s; }

.stat-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.8rem;
  line-height: 1;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  margin: 18px 0;
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about {
  background: var(--dark);
  padding: 120px 0;
}

.about-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s, transform 0.7s;
}

.about-layout.visible { opacity: 1; transform: translateY(0); }

.about-para {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

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

.about-badge {
  position: absolute;
  top: -24px;
  left: -10px;
  background: var(--red);
  padding: 18px 22px;
  z-index: 2;
  line-height: 1;
}

.badge-year {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.8rem;
  color: var(--white);
}

.badge-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin-top: 2px;
}

.about-img-block {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
  background: var(--dark-2);
  width: 100%;
}

.about-img-block img {
  width: 100%;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.6));
}

/* ===== MODELS ===== */
.models {
  background: var(--black);
  padding: 120px 0;
}

.models-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

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

.model-card {
  background: var(--dark-2);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.55s, transform 0.55s, background 0.3s;
}

.model-card.visible { opacity: 1; transform: translateY(0); }
.model-card:nth-child(1) { transition-delay: 0s; }
.model-card:nth-child(2) { transition-delay: 0.1s; }
.model-card:nth-child(3) { transition-delay: 0.2s; }
.model-card:nth-child(4) { transition-delay: 0.3s; }

.model-card:hover { background: var(--dark-3); }

.model-card--featured::after {
  content: 'POPULAR';
  position: absolute;
  top: 14px;
  right: 0;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 4px 12px;
  z-index: 2;
}

.model-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
  padding: 20px 22px 0;
}

.model-img-wrap {
  padding: 20px 16px;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 170px;
  margin: 16px 0 0;
}

.model-img-wrap img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.7));
  transition: transform 0.4s ease;
}

.model-card:hover .model-img-wrap img { transform: scale(1.06); }

.model-info {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.model-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 2px;
}

.model-type {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.model-specs {
  list-style: none;
  flex: 1;
  margin-bottom: 18px;
}

.model-specs li {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  padding: 7px 0 7px 14px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.model-specs li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 2px;
  background: var(--red);
  transform: translateY(-50%);
}

.model-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}

.model-price span {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.55rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

.model-btn {
  display: block;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.65);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.model-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ===== WHY GAZ ===== */
.why-gaz {
  background: var(--dark-2);
  padding: 120px 0;
}

.why-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

.why-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s, transform 0.6s;
}

.why-item.visible { opacity: 1; transform: translateY(0); }
.why-item:nth-child(1) { transition-delay: 0s; }
.why-item:nth-child(2) { transition-delay: 0.12s; }
.why-item:nth-child(3) { transition-delay: 0.24s; }
.why-item:nth-child(4) { transition-delay: 0.36s; }

.why-icon {
  width: 48px;
  height: 48px;
  color: var(--red);
  margin-bottom: 24px;
  position: relative;
}

.why-icon::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--red);
}

.why-icon svg { width: 100%; height: 100%; }

.why-item h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
  padding-top: 14px;
}

.why-item p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--black);
  padding: 120px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.contact-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.52);
  line-height: 1.78;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.98rem;
  color: rgba(255,255,255,0.65);
}

.contact-detail-item svg { flex-shrink: 0; opacity: 0.7; }

.contact-detail-item a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.contact-detail-item a:hover { color: var(--red); }

.contact-hours {
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.hours-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.contact-form-wrap {
  background: var(--dark-2);
  padding: 48px;
  border: 1px solid rgba(255,255,255,0.06);
}

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

.form-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.form-field label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.98rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
  width: 100%;
}

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

.form-field input.error { border-color: #ff4444; }

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.22); }

.form-field select option { background: var(--dark-3); color: var(--white); }

.form-field textarea {
  resize: vertical;
  min-height: 96px;
}

.form-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px;
  border: 2px solid var(--red);
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  margin-top: 6px;
}

.form-submit:hover {
  background: transparent;
  color: var(--red);
}

/* ===== FOOTER ===== */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 64px 0 0;
}

.footer-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand-name {
  font-family: 'Bebas Neue', cursive;
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.45);
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 14px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.65;
  max-width: 270px;
}

.footer-links,
.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}

.footer-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  transition: color 0.2s;
}

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

.footer-contact-col span,
.footer-contact-col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.42);
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}

.footer-social a {
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.18);
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== BACK TO TOP ===== */
#top-btn {
  position: fixed;
  bottom: 40px;
  right: 0;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 10px 18px 10px 14px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  cursor: pointer;
  display: none;
  border-radius: 4px 0 0 4px;
  box-shadow: -3px 3px 12px rgba(0,0,0,0.5);
  transition: background 0.2s;
  z-index: 999;
}

#top-btn:hover { background: var(--red-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .models-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 60px 24px; }
}

@media (max-width: 992px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav { display: flex; }
  .navbar-inner { padding: 0 24px; }

  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-vehicle { display: none; }
  .hero-sub { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }

  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }

  .about, .models, .why-gaz, .contact { padding: 80px 0; }
  .about-container, .models-container, .why-container, .contact-container, .footer-container { padding: 0 24px; }
  .stats-grid { padding: 0 24px; }
}

@media (max-width: 768px) {
  .models-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 36px; }

  .stats-grid { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; }
  .stat-divider { display: none; }

  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  .footer-top { gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-headline { font-size: clamp(3rem, 13vw, 4.5rem); }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; text-align: center; }
  .navbar-inner { padding: 0 16px; }
  .about-container, .models-container, .why-container, .contact-container, .footer-container { padding: 0 16px; }
  .stats-grid { padding: 0 16px; }
  .contact-form-wrap { padding: 24px 16px; }
}
