/* ===== CSS Variables ===== */
:root {
  --red: #E31E24;
  --red-dark: #B8181D;
  --red-glow: rgba(227, 30, 36, 0.4);
  --black: #0A0A0A;
  --black-light: #141414;
  --black-card: #1A1A1A;
  --white: #FFFFFF;
  --gray-100: #F5F5F5;
  --gray-200: #E0E0E0;
  --gray-400: #9E9E9E;
  --gray-600: #616161;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --header-h: 72px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 8px 32px rgba(0,0,0,0.3);
  --glass-bg: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 70px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button, input, select, textarea { font: inherit; border: none; outline: none; }
button { cursor: pointer; background: none; }

/* ===== Utilities ===== */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.text-red { color: var(--red); }
.section { padding: 5rem 0; }
.section--dark { background: var(--black-light); }
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

/* ===== Skip Link ===== */
.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 9999;
  background: var(--red); color: var(--white); padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius) var(--radius); font-weight: 600;
}
.skip-link:focus { top: 0; }

/* ===== Section Header ===== */
.section__header { text-align: center; margin-bottom: 3rem; }
.section__tag {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.15em; color: var(--red);
  margin-bottom: 0.75rem;
}
.section__title {
  font-family: var(--font-heading); font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 700; text-transform: uppercase; line-height: 1.2; margin-bottom: 1rem;
}
.section__desc { color: var(--gray-400); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.75rem; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; transition: all var(--transition); border: 2px solid transparent;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn--primary {
  background: var(--red); color: var(--white); border-color: var(--red);
}
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px var(--red-glow); }
.btn--whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn--whatsapp:hover { background: #1da851; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.btn--pulse { animation: pulse 2s infinite; }
.btn--full { width: 100%; justify-content: center; }
.btn--loading .btn__text { opacity: 0; }
.btn--loading .btn__loader { display: block !important; }
.btn__loader {
  display: none; width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3); border-top-color: var(--white);
  border-radius: 50%; animation: spin 0.6s linear infinite;
  position: absolute;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--red-glow); }
  50% { box-shadow: 0 0 0 12px transparent; }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Header / Nav ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h); transition: all var(--transition);
}
.header--scrolled {
  background: rgba(10,10,10,0.92); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav__logo { display: flex; align-items: center; gap: 0.6rem; }
.nav__logo-icon { width: 40px; height: 40px; }
.nav__logo-text { font-family: var(--font-heading); font-size: 1.25rem; text-transform: uppercase; letter-spacing: 0.05em; }
.nav__logo-text strong { color: var(--red); }
.nav__toggle {
  display: flex; flex-direction: column; gap: 5px; padding: 0.5rem; z-index: 1001;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px; background: var(--white);
  transition: all var(--transition); border-radius: 2px;
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav__menu {
  position: fixed; top: 0; right: -100%; width: min(320px, 85vw); height: 100vh;
  background: rgba(10,10,10,0.97); backdrop-filter: blur(20px);
  padding: calc(var(--header-h) + 2rem) 2rem 2rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  transition: right var(--transition); border-left: 1px solid var(--glass-border);
}
.nav__menu.active { right: 0; }
.nav__link {
  display: block; padding: 0.85rem 1rem; font-weight: 500; font-size: 1.05rem;
  border-radius: var(--radius); transition: all var(--transition);
}
.nav__link:hover, .nav__link.active { color: var(--red); background: rgba(227,30,36,0.08); }
.nav__link--cta {
  background: var(--red); color: var(--white) !important; text-align: center; margin-top: 1rem;
}
.nav__link--cta:hover { background: var(--red-dark); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; padding-top: var(--header-h);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background-color: var(--black);
  background-image: url('../assets/images/hero-van.png');
  background-size: cover;
  background-position: center 60%;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.6) 50%, rgba(227,30,36,0.15) 100%);
}
.hero__content { position: relative; z-index: 1; padding: 3rem 0; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(227,30,36,0.15); border: 1px solid rgba(227,30,36,0.3);
  color: var(--red); padding: 0.5rem 1.25rem; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-heading); font-size: clamp(2.25rem, 7vw, 4.5rem);
  font-weight: 700; text-transform: uppercase; line-height: 1.1; margin-bottom: 1.25rem;
}
.hero__desc { font-size: clamp(1rem, 2.5vw, 1.2rem); color: var(--gray-200); max-width: 560px; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 2rem; }
.hero__stat { text-align: center; }
.hero__stat-num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--red); }
.hero__stat-suffix { font-family: var(--font-heading); font-size: 1.5rem; color: var(--red); }
.hero__stat-label { display: block; font-size: 0.85rem; color: var(--gray-400); margin-top: 0.25rem; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: var(--gray-400); letter-spacing: 0.1em; text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px; height: 40px; background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Emergency ===== */
.emergency { padding: 0 0 4rem; margin-top: -2rem; position: relative; z-index: 2; }
.emergency__card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 1.5rem; padding: 2rem; background: linear-gradient(135deg, rgba(227,30,36,0.12), rgba(10,10,10,0.8));
}
.emergency__icon {
  width: 56px; height: 56px; background: var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.emergency__icon svg { width: 28px; height: 28px; color: var(--white); }
.emergency__title { font-family: var(--font-heading); font-size: 1.5rem; text-transform: uppercase; }
.emergency__text { color: var(--gray-400); max-width: 500px; }

/* ===== About ===== */
.about__grid { display: grid; gap: 3rem; align-items: center; }
.about__image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about__image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about__badge {
  position: absolute; bottom: 1.5rem; right: 1.5rem; padding: 1.25rem 1.5rem; text-align: center;
}
.about__badge-num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; color: var(--red); }
.about__badge-text { display: block; font-size: 0.8rem; color: var(--gray-400); }
.about__content { display: flex; flex-direction: column; gap: 1.5rem; }
.about__feature { display: flex; gap: 1.25rem; align-items: flex-start; }
.about__feature-icon {
  width: 48px; height: 48px; background: rgba(227,30,36,0.12); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.about__feature-icon svg { width: 22px; height: 22px; color: var(--red); }
.about__feature h3 { font-family: var(--font-heading); font-size: 1.1rem; text-transform: uppercase; margin-bottom: 0.35rem; }
.about__feature p { color: var(--gray-400); font-size: 0.95rem; }

/* ===== Services ===== */
.services__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--black-card); border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  padding: 2rem 1.5rem; text-align: center; transition: all var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0); transition: transform var(--transition); transform-origin: left;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(227,30,36,0.3); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.service-card:hover::before { transform: scaleX(1); }
.service-card__icon {
  width: 64px; height: 64px; margin: 0 auto 1.25rem;
  background: rgba(227,30,36,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.service-card:hover .service-card__icon { background: var(--red); transform: scale(1.1); }
.service-card__icon svg { width: 28px; height: 28px; color: var(--red); transition: color var(--transition); }
.service-card:hover .service-card__icon svg { color: var(--white); }
.service-card__title { font-family: var(--font-heading); font-size: 1.05rem; text-transform: uppercase; margin-bottom: 0.5rem; }
.service-card__desc { color: var(--gray-400); font-size: 0.875rem; }

/* ===== Gallery ===== */
.gallery__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.gallery__item {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease;
}
.gallery__item:hover img { transform: scale(1.08); }
.gallery__overlay {
  position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.8), transparent);
  display: flex; align-items: flex-end; padding: 1.25rem; opacity: 0; transition: opacity var(--transition);
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__overlay span { font-weight: 600; font-size: 0.95rem; }

/* ===== Before/After ===== */
.ba__grid { display: grid; gap: 2.5rem; }
.ba__compare {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10;
  cursor: ew-resize; user-select: none;
}
.ba__compare img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba__compare .ba__after { clip-path: inset(0 0 0 50%); }
.ba__slider {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
  background: var(--white); transform: translateX(-50%); z-index: 2;
}
.ba__handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 44px; height: 44px; background: var(--red); border: 3px solid var(--white);
  border-radius: 50%; box-shadow: var(--shadow);
}
.ba__handle::before, .ba__handle::after {
  content: ''; position: absolute; top: 50%; width: 0; height: 0; border: 6px solid transparent;
}
.ba__handle::before { left: 8px; transform: translateY(-50%); border-right-color: var(--white); }
.ba__handle::after { right: 8px; transform: translateY(-50%); border-left-color: var(--white); }
.ba__label {
  position: absolute; top: 1rem; padding: 0.35rem 0.85rem; border-radius: 50px;
  font-size: 0.75rem; font-weight: 600; text-transform: uppercase; z-index: 3;
  background: rgba(10,10,10,0.7); backdrop-filter: blur(8px);
}
.ba__label--before { left: 1rem; }
.ba__label--after { right: 1rem; }
.ba__caption { text-align: center; margin-top: 1rem; color: var(--gray-400); font-size: 0.95rem; }

/* ===== Reviews ===== */
.reviews__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.review-card {
  background: var(--black-card); border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg); padding: 2rem; transition: all var(--transition);
}
.review-card:hover { border-color: rgba(227,30,36,0.3); transform: translateY(-4px); }
.review-card__stars { color: #FFB800; margin-bottom: 1rem; display: flex; gap: 2px; }
.review-card__stars svg { width: 18px; height: 18px; }
.review-card__text { color: var(--gray-200); font-style: italic; margin-bottom: 1.5rem; line-height: 1.7; }
.review-card__author { display: flex; align-items: center; gap: 0.85rem; }
.review-card__avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
}
.review-card__name { font-weight: 600; }
.review-card__role { font-size: 0.8rem; color: var(--gray-400); }

/* ===== FAQ ===== */
.faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq__item {
  background: var(--black-card); border: 1px solid var(--glass-border);
  border-radius: var(--radius); overflow: hidden; transition: border-color var(--transition);
}
.faq__item.active { border-color: rgba(227,30,36,0.3); }
.faq__question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; text-align: left; font-weight: 600; font-size: 1rem;
  color: var(--white); gap: 1rem;
}
.faq__question svg { width: 20px; height: 20px; color: var(--red); flex-shrink: 0; transition: transform var(--transition); }
.faq__item.active .faq__question svg { transform: rotate(180deg); }
.faq__answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq__item.active .faq__answer { max-height: 300px; }
.faq__answer p { padding: 0 1.5rem 1.25rem; color: var(--gray-400); line-height: 1.7; }

/* ===== Contact ===== */
.contact__grid { display: grid; gap: 2.5rem; }
.contact__card { padding: 2rem; margin-bottom: 1.5rem; }
.contact__item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact__item:last-child { margin-bottom: 0; }
.contact__item svg { width: 24px; height: 24px; color: var(--red); flex-shrink: 0; margin-top: 0.15rem; }
.contact__item h3 { font-family: var(--font-heading); font-size: 0.95rem; text-transform: uppercase; margin-bottom: 0.35rem; }
.contact__item p { color: var(--gray-400); font-size: 0.95rem; }
.contact__item a:hover { color: var(--red); }
.contact__map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--glass-border); }
.contact__form { padding: 2rem; }
.contact__form-title { font-family: var(--font-heading); font-size: 1.25rem; text-transform: uppercase; margin-bottom: 1.5rem; }
.form__group { margin-bottom: 1.25rem; }
.form__group label { display: block; font-size: 0.85rem; font-weight: 500; margin-bottom: 0.5rem; color: var(--gray-200); }
.form__group label span { color: var(--red); }
.form__group input, .form__group select, .form__group textarea {
  width: 100%; padding: 0.85rem 1rem; background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border); border-radius: var(--radius);
  color: var(--white); transition: border-color var(--transition);
}
.form__group input:focus, .form__group select:focus, .form__group textarea:focus { border-color: var(--red); }
.form__group input.error, .form__group textarea.error { border-color: var(--red); }
.form__group select option { background: var(--black); }
.form__error { display: block; color: var(--red); font-size: 0.8rem; margin-top: 0.35rem; min-height: 1.2em; }
.form__success {
  margin-top: 1rem; padding: 1rem; background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.3); border-radius: var(--radius); color: #25D366; text-align: center;
}
#submitBtn { position: relative; }

/* ===== Footer ===== */
.footer { background: var(--black-light); border-top: 1px solid var(--glass-border); padding: 4rem 0 0; }
.footer__grid { display: grid; gap: 2.5rem; margin-bottom: 3rem; }
.footer__desc { color: var(--gray-400); margin: 1rem 0 1.5rem; font-size: 0.95rem; line-height: 1.7; }
.footer__social { display: flex; gap: 0.75rem; }
.footer__social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center; transition: all var(--transition);
}
.footer__social a:hover { background: var(--red); transform: translateY(-3px); }
.footer__social svg { width: 18px; height: 18px; }
.footer__links h3, .footer__contact h3 {
  font-family: var(--font-heading); font-size: 1rem; text-transform: uppercase;
  margin-bottom: 1.25rem; color: var(--red);
}
.footer__links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { color: var(--gray-400); font-size: 0.9rem; }
.footer__links a:hover { color: var(--red); }
.footer__contact p {
  display: flex; align-items: center; gap: 0.6rem; color: var(--gray-400);
  font-size: 0.9rem; margin-bottom: 0.6rem;
}
.footer__contact svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }
.footer__bottom {
  border-top: 1px solid var(--glass-border); padding: 1.5rem 0;
  text-align: center; color: var(--gray-600); font-size: 0.85rem;
}


/* ===== Bottom Bar ===== */
.bottom-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}
.bottom-bar__btn {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1rem; font-weight: 700; font-size: 1rem;
  transition: all var(--transition);
}
.bottom-bar__btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.bottom-bar__btn--whatsapp { background: #25D366; color: var(--white); }
.bottom-bar__btn--whatsapp:hover { background: #1da851; }
.bottom-bar__btn--call { background: var(--red); color: var(--white); }
.bottom-bar__btn--call:hover { background: var(--red-dark); }

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed; bottom: 5.5rem; right: 1.25rem; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%; background: var(--black-card);
  border: 1px solid var(--glass-border); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); opacity: 0; visibility: hidden;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--red); border-color: var(--red); transform: translateY(-3px); }
.back-to-top svg { width: 22px; height: 22px; }

/* ===== AOS Animations ===== */
.aos { opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; }
.aos[data-aos="fade-up"] { transform: translateY(40px); }
.aos[data-aos="fade-down"] { transform: translateY(-40px); }
.aos[data-aos="fade-left"] { transform: translateX(40px); }
.aos[data-aos="fade-right"] { transform: translateX(-40px); }
.aos[data-aos="zoom-in"] { transform: scale(0.9); }
.aos.aos-animate { opacity: 1; transform: none; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  opacity: 0; visibility: hidden; transition: all var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius); }
.lightbox__close {
  position: absolute; top: 1.5rem; right: 1.5rem; width: 44px; height: 44px;
  background: rgba(255,255,255,0.1); border-radius: 50%; color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.lightbox__close:hover { background: var(--red); }

/* ===== Responsive ===== */
@media (min-width: 640px) {
  .emergency__card { flex-direction: row; text-align: left; padding: 2rem 2.5rem; }
  .ba__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .nav__toggle { display: none; }
  .nav__menu {
    position: static; width: auto; height: auto; background: none;
    backdrop-filter: none; padding: 0; flex-direction: row; align-items: center;
    border: none; gap: 0.25rem;
  }
  .nav__link { font-size: 0.9rem; padding: 0.5rem 0.85rem; }
  .nav__link--cta { margin-top: 0; margin-left: 0.5rem; padding: 0.6rem 1.25rem; }
  .about__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
@media (min-width: 1024px) {
  .section { padding: 6rem 0; }
  .hero__stats { gap: 3.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aos { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
