/* ==========================================================================
   WeltEnergie - Hoja de estilos principal
   Cambios habituales:
   - Colores: variables CSS en :root.
   - Imagen principal: selector .hero-bg.
   - Espaciados globales: paddings de cada sección.
   ========================================================================== */

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

:root {
  --gold: #c9952a;
  --gold-light: #e8b84b;
  --dark: #0a0e14;
  --dark-2: #111720;
  --dark-3: #1a2130;
  --text: #e8edf4;
  --muted: #8a9bb5;
  --line-gold: rgba(201, 149, 42, 0.22);
  --line-soft: rgba(255, 255, 255, 0.08);
  --page-x: clamp(22px, 6vw, 92px);
  --section-y: clamp(72px, 9vw, 110px);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  min-width: 320px;
  background: var(--dark);
  color: var(--text);
  font-family: "Barlow", Arial, sans-serif;
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* ===== Navegación ===== */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(10, 14, 20, 0.94);
  border-bottom: 1px solid var(--line-gold);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 var(--page-x);
}

.logo,
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img,
.footer-logo img {
  flex: 0 0 auto;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.logo img {
  height: 34px;
}

.footer-logo img {
  height: 42px;
}

.logo-text {
  color: #fff;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 1;
}

.logo-text span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: clamp(20px, 3vw, 36px);
  list-style: none;
}

.nav-links a {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg,
.hero-particles,
.hero-grid,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background: url("../img/hero-pipelines.jpg") center / cover no-repeat;
  filter: brightness(0.24) saturate(0.55);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(201, 149, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 149, 42, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: grid-drift 18s linear infinite;
}

.hero-particles {
  z-index: 1;
  opacity: 0.62;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(10, 14, 20, 0.86) 38%, transparent 82%),
    linear-gradient(to top, var(--dark) 0%, transparent 42%),
    radial-gradient(circle at 78% 28%, rgba(201, 149, 42, 0.13), transparent 24%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 120px clamp(26px, 8vw, 120px) 80px;
  animation: fade-up 0.9s ease both;
}

.hero-tag,
.section-tag {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-tag {
  display: inline-block;
  padding: 5px 16px;
  margin-bottom: 28px;
  border: 1px solid var(--gold);
  border-radius: 2px;
}

.hero h1 {
  margin-bottom: 28px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  color: var(--gold);
  font-style: normal;
}

.hero p:not(.hero-tag) {
  max-width: 580px;
  margin-bottom: 44px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 34px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
}

.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.btn-primary,
.service-card,
.supply-item {
  isolation: isolate;
}

/* ===== Indicadores ===== */

.stats-bar {
  display: flex;
  justify-content: center;
  padding: 40px var(--page-x);
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 149, 42, 0.3);
  border-bottom: 1px solid rgba(201, 149, 42, 0.3);
}

.stat {
  flex: 1;
  min-width: 150px;
  padding: 16px 32px;
  border-right: 1px solid var(--line-soft);
  text-align: center;
}

.stat:last-child {
  border-right: 0;
}

.stat-num {
  display: block;
  color: var(--gold);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== Estilos compartidos ===== */

.gold-line {
  width: 56px;
  height: 3px;
  margin: 14px 0 22px;
  background: var(--gold);
}

.section-title {
  margin-bottom: 18px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.section-sub,
.section-text {
  max-width: 560px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.section-sub {
  margin-bottom: 52px;
}

.section-text {
  margin-bottom: 36px;
}

/* ===== Empresa ===== */

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 80px);
  align-items: center;
  padding: var(--section-y) clamp(26px, 8vw, 120px);
  background: var(--dark-2);
}

.about-img {
  position: relative;
  min-height: 500px;
}

.about-img::before {
  content: "";
  position: absolute;
  inset: -16px 16px 16px -16px;
  border: 2px solid var(--gold);
  pointer-events: none;
}

.about-img img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.84);
}

.about-img::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 40%;
  background: linear-gradient(to top, var(--dark-2), transparent);
}

.about-badge {
  position: absolute;
  bottom: 32px;
  left: 32px;
  z-index: 3;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--dark);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pillar {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.pillar-icon,
.contact-detail-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 149, 42, 0.1);
  border: 1px solid rgba(201, 149, 42, 0.25);
}

.pillar-icon svg,
.contact-detail-icon svg,
.svc-icon {
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.pillar-icon svg {
  width: 22px;
  height: 22px;
}

.pillar h3 {
  margin-bottom: 4px;
  color: var(--gold);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pillar p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ===== Galería ===== */

.gallery {
  padding: 80px 0;
  background: var(--dark);
}

.gallery-title {
  margin-bottom: 44px;
  padding: 0 var(--page-x);
  text-align: center;
}

.gallery-title .gold-line {
  margin-inline: auto;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4px;
  height: 360px;
}

.gallery-strip figure {
  position: relative;
  overflow: hidden;
}

.gallery-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.48) brightness(0.68);
  transition: filter 0.35s ease, transform 0.45s ease;
}

.gallery-strip figure:hover img {
  filter: saturate(0.78) brightness(0.88);
  transform: scale(1.05);
}

.gallery-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 4px 10px;
  background: rgba(10, 14, 20, 0.72);
  color: rgba(255, 255, 255, 0.88);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== Servicios ===== */

.services {
  padding: var(--section-y) var(--page-x);
  background: var(--dark);
}

.services-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 56px;
}

.services-intro .section-sub {
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1px;
  background: rgba(201, 149, 42, 0.12);
  border: 1px solid rgba(201, 149, 42, 0.12);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 38px 34px;
  background: var(--dark-2);
  transition: background 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.05) 45%, transparent 60%);
  transform: translateX(-130%);
  transition: transform 0.6s ease;
}

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

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  transform: translateX(130%);
}

.service-num {
  display: block;
  margin-bottom: 12px;
  color: rgba(201, 149, 42, 0.09);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.svc-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

/* ===== Suministros ===== */

.supplies {
  padding: var(--section-y) var(--page-x);
  background: var(--dark-2);
}

.supplies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 16px;
}

.supply-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 82px;
  padding: 24px 22px;
  background: var(--dark-3);
  border: 1px solid rgba(201, 149, 42, 0.13);
  transition: border-color 0.2s ease;
}

.supply-item:hover {
  border-color: var(--gold);
}

.supply-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  background: var(--gold);
  transform: rotate(45deg);
}

.supply-item span:last-child {
  font-size: 15px;
  font-weight: 600;
}

/* ===== Contacto ===== */

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(44px, 6vw, 80px);
  align-items: start;
  padding: var(--section-y) clamp(26px, 8vw, 120px);
  background: var(--dark);
}

.contact-title {
  font-size: clamp(32px, 4vw, 52px);
}

.contact-info > p:not(.section-tag) {
  margin-bottom: 40px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

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

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

.contact-detail span {
  display: block;
  margin-bottom: 2px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.contact-detail p {
  color: var(--text);
  font-size: 15px;
}

.contact-detail a,
.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.contact-detail a:hover,
.contact-detail a:focus-visible,
.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--gold);
}

.form-row {
  margin-bottom: 18px;
}

.form-row label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  color: var(--text);
  outline: 0;
  transition: border-color 0.2s ease;
}

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

.form-row select {
  padding-right: 40px;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A9BB5' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-2col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-submit {
  width: 100%;
  clip-path: none;
  font-size: 14px;
  padding-block: 18px;
}

.form-note {
  min-height: 20px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-note.success {
  color: var(--gold-light);
}

.form-note.error {
  color: #ffb3a9;
}

/* ===== Footer ===== */

.footer {
  padding: 48px var(--page-x) 32px;
  background: var(--dark-2);
  border-top: 1px solid var(--line-gold);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-desc {
  max-width: 280px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.footer-nav h2,
.footer-contact h2 {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.footer-nav a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--gold);
}

.footer-contact p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact p:last-child {
  margin-top: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

.footer-bottom p,
.footer-credit {
  color: var(--muted);
  font-size: 12px;
}

.footer-credit a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--gold-light);
}

/* ===== Botón volver arriba ===== */

.back-to-top {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 90;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: rgba(201, 149, 42, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--dark);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--gold-light);
}

.back-to-top svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

/* ===== Animaciones ===== */

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes grid-drift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 60px 60px, 60px 60px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Página 404 ===== */

.error-page {
  min-height: 100vh;
}

.error-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 120px var(--page-x) 72px;
}

.error-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  text-align: center;
  animation: fade-up 0.8s ease both;
}

.error-content .hero-tag {
  margin-bottom: 24px;
}

.error-code {
  color: rgba(201, 149, 42, 0.18);
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(120px, 26vw, 260px);
  font-weight: 800;
  line-height: 0.78;
  text-transform: uppercase;
}

.error-content h1 {
  margin: 0 auto 20px;
  font-family: "Barlow Condensed", Arial, sans-serif;
  font-size: clamp(40px, 7vw, 78px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}

.error-content p:not(.hero-tag):not(.error-code) {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.error-content .btn-group {
  justify-content: center;
}

.error-nav {
  display: flex;
}

/* ===== Responsive ===== */

@media (max-width: 900px) {
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .about-img,
  .about-img img {
    min-height: 340px;
  }

  .services-intro,
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .gallery-strip figure {
    height: 220px;
  }
}

@media (max-width: 640px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    background: var(--dark-2);
    border-bottom: 1px solid var(--line-gold);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    display: block;
    padding: 12px var(--page-x);
    font-size: 14px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .logo img {
    height: 30px;
  }

  .logo-text {
    font-size: 23px;
  }

  .hero p:not(.hero-tag) {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }

  .stats-bar {
    flex-wrap: wrap;
  }

  .stat {
    min-width: 50%;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .gallery-strip figure {
    height: 220px;
  }

  .form-2col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .back-to-top {
    width: 44px;
    height: 44px;
  }

  .error-nav {
    display: none;
  }

  .error-content {
    text-align: left;
  }

  .error-content .btn-group {
    justify-content: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .hero-grid {
    animation: none;
  }
}
