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

:root {
  --red: #E63329;
  --red-dark: #c0241b;
  --navy: #0f1f36;
  --navy-mid: #1e3a5f;
  --navy-light: #2d4f7c;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --font: 'Inter', system-ui, sans-serif;
  --font-display: 'Barlow Condensed', 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

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

.section {
  padding: 96px 0;
}

/* === TYPOGRAPHY === */
.section__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 16px;
}

.section__desc {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 560px;
}

.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__header .section__desc { margin: 0 auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(230, 51, 41, 0.35);
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 51, 41, 0.45);
}
.btn--outline {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--ghost {
  border: 2px solid rgba(255,255,255,0.35);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn--ghost:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.6); }
.btn--white {
  background: var(--white);
  color: var(--red);
  font-weight: 700;
}
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.btn--lg { padding: 16px 36px; font-size: 16px; border-radius: 14px; }
.btn--full { width: 100%; justify-content: center; }

/* === HEADER === */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: all 0.3s ease;
}
.header--scrolled {
  background: rgba(15, 31, 54, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo__icon { flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; line-height: 1.1; }
.logo__brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}
.logo__sub { font-size: 11px; color: rgba(255,255,255,0.55); font-weight: 500; letter-spacing: 0.04em; }

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: all var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.1); }

/* Header actions */
.header__actions { display: flex; align-items: center; gap: 12px; }
.header__actions .btn--outline {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 14px;
  padding: 10px 20px;
}
.header__actions .btn--outline:hover { background: var(--red); border-color: var(--red); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 8px;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(30,58,95,0.8) 0%, var(--navy) 70%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 760px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 51, 41, 0.15);
  border: 1px solid rgba(230, 51, 41, 0.3);
  color: #ff7b74;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  animation: pulse-border 2s ease-in-out infinite;
}
@keyframes pulse-border {
  0%, 100% { border-color: rgba(230,51,41,0.3); }
  50% { border-color: rgba(230,51,41,0.7); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.hero__title--accent { color: var(--red); }
.hero__desc {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 20px 32px;
  width: fit-content;
}
.hero__stat { text-align: center; padding: 0 28px; }
.hero__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero__stat-label {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.hero__stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.15);
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0;
}
.trust-bar__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 32px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { color: var(--white); }
.trust-item__icon {
  width: 20px;
  height: 20px;
  color: var(--red);
  flex-shrink: 0;
}

/* === SERVICES === */
.services { background: var(--gray-50); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.service-card--featured:hover { border-color: var(--red); }
.service-card--featured .service-card__title { color: var(--white); }
.service-card--featured .service-card__desc { color: rgba(255,255,255,0.6); }
.service-card--featured .service-card__list { color: rgba(255,255,255,0.7); }
.service-card--featured .service-card__list li::before { background: var(--red); }
.service-card--featured .service-card__link { color: var(--red); }

.service-card__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 24px;
}
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-card__desc {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  flex: 1;
}
.service-card__list li {
  font-size: 14px;
  color: var(--gray-600);
  padding-left: 16px;
  position: relative;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--navy-light);
}
.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--red);
  transition: gap var(--transition);
}
.service-card__link:hover { text-decoration: underline; }

/* === WHY US === */
.why-us { background: var(--white); }
.why-us__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us__desc {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 36px;
}
.why-us__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.why-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.why-feature__icon {
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.why-feature__icon svg { width: 16px; height: 16px; }
.why-feature h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.why-feature p { font-size: 13px; color: var(--gray-600); line-height: 1.5; }

/* Why Us visual */
.why-us__visual { position: relative; }
.why-us__card-wrap {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.why-us__card-wrap::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(230,51,41,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.why-us__big-stat {
  margin-bottom: 32px;
}
.why-us__big-num {
  display: block;
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.why-us__big-label {
  display: block;
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.why-us__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}
.badge-pill--accent {
  background: rgba(230,51,41,0.2);
  border-color: rgba(230,51,41,0.35);
  color: #ff7b74;
}
.why-us__truck-graphic {
  opacity: 0.6;
  margin-top: 8px;
}

/* === PROCESS === */
.process { background: var(--navy); }
.process .section__label { color: rgba(255,255,255,0.5); }
.process .section__title { color: var(--white); }
.process__steps {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.process-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  transition: all var(--transition);
  position: relative;
}
.process-step:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--red);
  transform: translateY(-4px);
}
.process-step__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  position: absolute;
  top: 12px;
  right: 16px;
  line-height: 1;
}
.process-step__icon {
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.process-step__icon svg { width: 28px; height: 28px; }
.process-step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.process__arrow {
  font-size: 28px;
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}


/* === REVIEWS === */
.reviews { background: var(--white); }
.reviews__rating {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-size: 15px;
  color: var(--gray-600);
  margin-top: 12px;
}
.stars { font-size: 20px; color: #f59e0b; letter-spacing: 2px; }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
}
.review-card:hover { border-color: var(--navy-light); box-shadow: var(--shadow); }
.review-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}
.review-card--featured .review-card__text { color: rgba(255,255,255,0.75); }
.review-card--featured .review-card__author strong { color: var(--white); }
.review-card--featured .review-card__author span { color: rgba(255,255,255,0.45); }
.review-card__stars { color: #f59e0b; font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.review-card__text {
  font-size: 16px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-card__avatar {
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.review-card__author strong { display: block; font-size: 15px; color: var(--navy); }
.review-card__author span { font-size: 13px; color: var(--gray-400); }

/* === EMERGENCY CTA === */
.emergency-cta {
  background: var(--red);
  padding: 64px 0;
}
.emergency-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.emergency-cta__badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}
.emergency-cta__text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.emergency-cta__text p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
}

/* === CONTACT (phone-only) === */
.contact { background: var(--gray-50); }
.contact-phone__wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}
.contact-phone__desc {
  font-size: 18px;
  color: var(--gray-600);
  margin-bottom: 40px;
  line-height: 1.7;
}
.contact-phone__number {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 44px;
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
  margin-bottom: 48px;
  box-shadow: 0 8px 32px rgba(15,31,54,0.25);
  transition: all var(--transition);
}
.contact-phone__number svg { width: 36px; height: 36px; flex-shrink: 0; opacity: 0.8; }
.contact-phone__number:hover {
  background: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(230,51,41,0.35);
}
.contact-phone__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.contact-phone__card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
  transition: border-color var(--transition);
}
.contact-phone__card:hover { border-color: var(--navy-light); }
.contact-detail__icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.contact-detail__icon--red { background: var(--red); }
.contact-detail__icon svg { width: 20px; height: 20px; }
.contact-phone__card strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-phone__card span { font-size: 14px; color: var(--gray-600); line-height: 1.5; }

/* === FOOTER === */
.footer { background: var(--navy); padding: 80px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .logo { margin-bottom: 20px; }
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 280px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__contact { display: flex; flex-direction: column; gap: 14px; }
.footer__contact h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 4px;
}
.footer__contact a,
.footer__contact span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--white); }
.footer__contact svg { flex-shrink: 0; margin-top: 1px; }
.footer__bottom {
  padding: 24px 0;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer__bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* West Tech pill */
.westtech-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(55, 48, 231, 0.1);
  border: 1px solid rgba(55, 48, 231, 0.22);
  border-radius: 50px;
  padding: 0.38rem 0.9rem 0.38rem 0.5rem;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
}
.westtech-pill:hover {
  background: rgba(55, 48, 231, 0.18);
  border-color: rgba(55, 48, 231, 0.4);
}
.westtech-pill__built {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}
.westtech-pill__name {
  font-size: 12px;
  font-weight: 600;
  color: #6366f1;
}


/* === SCROLL ANIMATIONS === */
.reveal {
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-hidden {
  opacity: 0;
  transform: translateY(28px);
}
.reveal-hidden.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured { grid-row: auto; }
  .why-us__inner { grid-template-columns: 1fr; gap: 48px; }
  .why-us__visual { order: -1; }
  .contact-phone__cards { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(15,31,54,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    transform: translateY(-120%);
    opacity: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav.open { transform: translateY(0); opacity: 1; }
  .nav__link { width: 100%; padding: 14px 16px; font-size: 16px; }
  .burger { display: flex; }
  .header__actions .btn--outline { display: none; }
  .services__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .process__steps { flex-direction: column; align-items: stretch; }
  .process-step { max-width: none; }
  .process__arrow { transform: rotate(90deg); align-self: center; }
  .hero__stats { flex-direction: column; gap: 16px; padding: 20px; }
  .hero__stat-divider { width: 80px; height: 1px; }
  .why-us__features { grid-template-columns: 1fr; }
  .trust-bar__inner { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; justify-content: center; }
  .trust-item:last-child { border-bottom: none; }
  .emergency-cta__inner { flex-direction: column; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; }
  .contact-phone__number { padding: 18px 28px; font-size: clamp(22px, 5vw, 36px); }
  .footer__bottom .container { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

}
