:root {
  --navy: #061d3d;
  --navy-2: #082b5d;
  --navy-3: #031225;
  --gold: #e59a10;
  --gold-2: #ffbd2e;
  --ink: #101828;
  --muted: #667085;
  --line: #d7e1ee;
  --soft: #f6f9fd;
  --white: #fff;
  --shadow: 0 24px 80px rgba(6, 29, 61, 0.14);
  --radius: 26px;
  --container: 1180px;
  --error: #d32f2f;
  --success: #2e7d32;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { 
  margin: 0; 
  font-family: Inter, system-ui, -apple-system, sans-serif; 
  color: var(--ink); 
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(var(--container), calc(100% - 44px)); margin-inline: auto; }
.bg-soft { background-color: var(--soft); }
.text-center { text-align: center; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  padding: 10px;
  z-index: 100;
}
.skip-link:focus { left: 10px; }

/* Premium Sticky Header Systems */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 20px clamp(22px, 4vw, 70px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(6, 29, 61, 0.06);
  backdrop-filter: blur(20px);
  transition: padding 0.3s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.3s, box-shadow 0.3s;
}
.site-header.is-scrolled {
  padding: 12px clamp(22px, 4vw, 70px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(6, 29, 61, 0.08);
}
.brand img { width: min(236px, 54vw); transition: transform 0.2s; }
.brand:hover img { transform: scale(1.02); }

.site-nav {
  margin-left: auto;
  display: flex;
  gap: 26px;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #26364f;
}
.site-nav a { transition: color 0.2s; position: relative; padding: 4px 0; }
.site-nav a:hover { color: var(--gold); }
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; width: 100%; height: 2px;
  background-color: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease-out;
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* Interactive Interface Controls */
.header-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  border: 0;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s, background 0.2s;
}
.header-cta, .btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  box-shadow: 0 10px 25px rgba(6, 29, 61, 0.15);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(6, 29, 61, 0.18);
  color: var(--navy);
}
.btn-block { width: 100%; }

.btn:hover, .header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(6, 29, 61, 0.22);
}
.btn:active, .header-cta:active { transform: translateY(0); }

/* Premium CTA Glow Micro-Interactions */
.btn-pulse {
  position: relative;
  box-shadow: 0 0 0 0 rgba(229, 154, 16, 0.4);
  transition: background-color 0.3s;
}
.btn-pulse:hover {
  animation: glow-pulse 1.5s infinite;
  background: linear-gradient(135deg, var(--navy-2), #0b3b7f);
}
@keyframes glow-pulse {
  0% { box-shadow: 0 0 0 0 rgba(229, 154, 16, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(229, 154, 16, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 154, 16, 0); }
}

.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; margin-left: auto; }
.menu-toggle span { display: block; width: 27px; height: 2px; background: var(--navy); margin: 5px 0; }

/* Hero Presentation Interface */
.hero {
  position: relative;
  min-height: 800px;
  overflow: hidden;
  background: linear-gradient(100deg, #fff 0%, #f6fbff 45%, #061d3d 100%);
}
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url('../assets/hero-banner.webp');
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 40%, rgba(255, 255, 255, 0.3) 65%, rgba(3, 18, 37, 0.2) 100%);
}
.hero-grid { position: relative; display: grid; align-items: center; min-height: 800px; }
.hero-copy { max-width: 740px; padding: 100px 0; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.geo-tag { background: rgba(229, 154, 16, 0.12); padding: 6px 12px; border-radius: 6px; border: 1px solid rgba(229, 154, 16, 0.2); }
.eyebrow.light { color: var(--gold-2); }
h1, h2, h3, h4, p { margin-top: 0; }
.hero h1 { margin-bottom: 24px; color: var(--navy); font-size: clamp(42px, 6.5vw, 82px); line-height: 0.96; letter-spacing: -0.05em; }
.lead { max-width: 660px; color: #35445c; font-size: clamp(18px, 2vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 38px 0; }
.hero-proof { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-proof span {
  padding: 10px 16px;
  border: 1px solid rgba(6, 29, 61, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  color: #40516a;
  font-size: 13px;
  font-weight: 700;
}

.value-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: var(--shadow);
}
.value-bar article { background: var(--white); padding: 36px; transition: transform 0.3s; }
.value-bar article:hover { transform: translateY(-4px); }
.value-bar strong { display: block; margin-bottom: 8px; color: var(--navy); font-size: 19px; }
.value-bar span { color: var(--muted); line-height: 1.6; font-size: 15px; }

/* Minimalist Hardware Ecosystem Grid */
.brands-banner { padding: 60px 0 20px; text-align: center; }
.brands-title { font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); font-weight: 700; margin-bottom: 24px; }
.brands-grid { display: flex; justify-content: space-around; align-items: center; gap: 30px; flex-wrap: wrap; filter: grayscale(1); opacity: 0.55; }
.brand-item { font-size: 20px; font-weight: 800; color: var(--navy); letter-spacing: -0.03em; }

.section { padding: 100px 0; }
.section-head { max-width: 820px; margin-bottom: 48px; }
.section-head h2, .statement h2, .contact-section h2 {
  color: var(--navy);
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.section-head p { max-width: 660px; color: var(--muted); font-size: 18px; line-height: 1.7; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  padding: 36px;
  border: 1px solid rgba(6, 29, 61, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #f9fcff);
  box-shadow: 0 10px 30px rgba(6, 29, 61, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(6, 29, 61, 0.1); }
.icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px; background: var(--navy); color: var(--gold-2); font-weight: 900; font-size: 18px; }
.service-card h3 { margin: 24px 0 12px; color: var(--navy); font-size: 22px; letter-spacing: -0.02em; }
.service-card p { color: var(--muted); line-height: 1.65; font-size: 15px; margin: 0; }

/* Technical Infrastructure & Workmanship Proof Systems */
.portfolio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.portfolio-item { background: var(--white); border-radius: 20px; overflow: hidden; border: 1px solid rgba(6, 29, 61, 0.06); box-shadow: 0 10px 30px rgba(0,0,0,0.02); }
.portfolio-img-wrapper { position: relative; background: #e2ecf7; height: 240px; overflow: hidden; }
.portfolio-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  padding: 24px; text-align: center; font-weight: 700; color: var(--navy); font-size: 15px;
  background: linear-gradient(135deg, #e6effa, #cfdfef);
  transition: transform 0.4s ease;
}
.portfolio-item:hover .portfolio-placeholder { transform: scale(1.05); }
.portfolio-meta { padding: 24px; }
.portfolio-meta h4 { margin: 0 0 8px; font-size: 18px; color: var(--navy); }
.portfolio-meta p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }

.statement { padding: 90px 0; background: linear-gradient(135deg, var(--navy), var(--navy-3)); color: #fff; }
.statement-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.statement h2, .contact-section h2 { color: #fff; }
.statement p { margin: 0; color: #d8e5f7; font-size: 19px; line-height: 1.75; }

/* Organized 3-Step Process Blocks */
.process-steps-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.process-step-card { padding: 40px 30px; border-radius: 24px; background: var(--soft); border: 1px solid rgba(6, 29, 61, 0.06); position: relative; }
.step-num {
  font-size: 14px; font-weight: 900; background: var(--gold); color: var(--white);
  display: inline-flex; padding: 6px 14px; border-radius: 99px; margin-bottom: 20px;
}
.process-step-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 12px; }
.process-step-card p { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.6; }

/* Social Proof & Testimonials Area */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border-radius: 24px; padding: 36px; margin: 0;
  border: 1px solid rgba(6, 29, 61, 0.06); display: flex; flex-direction: column; justify-content: space-between;
}
.review-text { font-style: italic; color: #35445c; line-height: 1.65; font-size: 15px; margin-bottom: 20px; }
.review-author { font-weight: 700; color: var(--navy); font-size: 14px; font-style: normal; }

/* Native FAQ Dropdown System */
.faq-accordion-container { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-accordion { background: var(--soft); border-radius: 14px; border: 1px solid rgba(6, 29, 61, 0.05); overflow: hidden; }
.faq-accordion summary { padding: 20px 24px; font-weight: 700; font-size: 16px; color: var(--navy); cursor: pointer; outline: none; transition: background 0.2s; }
.faq-accordion summary:hover { background: rgba(6, 29, 61, 0.03); }
.faq-content { padding: 0 24px 20px 24px; color: var(--muted); line-height: 1.6; font-size: 15px; }

/* Lead Generation Form System Configuration */
.contact-section { padding: 100px 0; background: linear-gradient(135deg, var(--navy-3), var(--navy)); }
.contact-grid { display: grid; grid-template-columns: 1fr 480px; gap: 60px; align-items: start; }
.contact-text { color: #d8e5f7; font-size: 18px; line-height: 1.7; }
.direct-email-card { margin-top: 36px; padding: 24px; border-radius: 16px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); }
.card-label { display: block; color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; color: #91a8c5; }
.email-link { color: var(--gold-2); font-weight: 700; font-size: 20px; transition: color 0.2s; }
.email-link:hover { color: #fff; }
.response-time { display: block; margin-top: 8px; color: #91a8c5; font-size: 14px; }

.contact-form-wrapper { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow); }
.contact-form { display: grid; gap: 18px; }
.form-group { display: grid; gap: 6px; }
.form-group label { color: var(--navy); font-size: 14px; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; border: 1px solid rgba(6, 29, 61, 0.16); border-radius: 12px; padding: 14px;
  font: inherit; font-size: 15px; color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s;
  background-color: var(--white);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(229, 154, 16, 0.15);
}
.contact-form textarea { min-height: 110px; resize: vertical; }

/* Visual Hiding of Anti-Spam Honeypot */
.hp-group {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Lead Input System Form Validation States */
.contact-form input.is-invalid, .contact-form select.is-invalid, .contact-form textarea.is-invalid {
  border-color: var(--error); background-color: #fff8f8;
}
.validation-msg { color: var(--error); font-size: 12px; font-weight: 600; min-height: 16px; display: block; margin-top: 2px; }
.form-alert { padding: 16px; border-radius: 12px; font-size: 14px; font-weight: 600; line-height: 1.5; }
.form-alert.success { background: #edf7ed; color: var(--success); border: 1px solid rgba(46, 125, 50, 0.2); }
.form-alert.error { background: #fdeded; color: var(--error); border: 1px solid rgba(211, 47, 47, 0.2); }

.site-footer { padding: 40px 0; background: #020b17; color: #fff; font-size: 15px; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; align-items: center; flex-wrap: wrap; }
.site-footer span { display: block; margin-top: 6px; color: #91a8c5; }
.site-footer a { color: var(--gold-2); font-weight: 700; }
.footer-geo { font-size: 13px; color: #647d9c; margin-top: 10px; }

/* Structural Animation States */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* System Responsive Media Overrides */
@media(max-width: 1024px) {
  .service-grid, .portfolio-grid, .process-steps-wrap, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media(max-width: 980px) {
  .site-header { flex-wrap: wrap; padding: 14px 24px; }
  .menu-toggle { display: block; }
  .site-nav { display: none; order: 4; width: 100%; margin-left: 0; padding: 14px 0 4px; }
  .site-nav.is-open { display: grid; gap: 16px; }
  .site-nav a::after { display: none; }
  .header-cta { display: none; }
  .hero, .hero-grid { min-height: 650px; }
  .value-bar, .statement-grid, .contact-grid { grid-template-columns: 1fr; }
  .value-bar { margin-top: 30px; }
  .section { padding: 70px 0; }
  .contact-grid { gap: 40px; }
}

@media(max-width: 680px) {
  .service-grid, .portfolio-grid, .process-steps-wrap, .testimonials-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 42px; }
  .hero-actions .btn { width: 100%; }
  .value-bar article, .service-card, .process-step-card, .contact-form-wrapper, .testimonial-card { padding: 24px; }
  .footer-grid { flex-direction: column; text-align: center; }
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.portfolio-item:hover .portfolio-img {
  transform: scale(1.05);
}

/* Service Card Interactive Overrides */
.service-card {
  cursor: pointer;
  position: relative;
  padding-bottom: 56px !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease !important;
}
.card-learn-more {
  position: absolute;
  bottom: 24px;
  left: 36px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  transition: transform 0.2s ease, color 0.2s;
}
.service-card:hover .card-learn-more {
  transform: translateX(4px);
  color: var(--gold-2);
}

/* Portfolio Filters */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.filter-btn {
  background: var(--white);
  border: 1px solid rgba(6, 29, 61, 0.1);
  color: var(--navy);
  padding: 10px 22px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 0 4px 12px rgba(6, 29, 61, 0.12);
}

/* Dynamic Project Scope Estimator Layout */
.estimator-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  margin-top: 40px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.estimator-sliders {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}
.slider-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.slider-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
}
.slider-counter {
  background: rgba(229, 154, 16, 0.1);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 8px;
  font-weight: 900;
  min-width: 32px;
  text-align: center;
}
.est-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--line);
  outline: none;
  margin: 0;
}
.est-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.1s, background-color 0.2s;
}
.est-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: var(--gold-2);
}
.est-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.1s, background-color 0.2s;
}
.est-slider::-moz-range-thumb:hover {
  transform: scale(1.15);
  background: var(--gold-2);
}
.slider-minmax {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.estimator-result-card {
  background: var(--soft);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(6, 29, 61, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.estimator-result-card h4 {
  margin: 0 0 20px;
  font-size: 18px;
  color: var(--navy);
  border-bottom: 2px solid var(--line);
  padding-bottom: 10px;
}
.result-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.breakdown-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--muted);
}
.breakdown-item strong {
  color: var(--navy);
}
.result-total {
  border-top: 1px dashed rgba(6, 29, 61, 0.15);
  padding-top: 20px;
  margin-bottom: 24px;
  text-align: center;
}
.result-total span {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.result-total h3 {
  font-size: 32px;
  color: var(--navy);
  margin: 8px 0 12px;
  letter-spacing: -0.03em;
}
.calc-disclaimer {
  font-size: 11px;
  line-height: 1.4;
  color: var(--muted);
  margin: 0;
}

/* Service Detail Modal Overlay */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(3, 18, 37, 0.5);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 600px;
  width: 100%;
  position: relative;
  box-shadow: 0 30px 90px rgba(3, 18, 37, 0.25);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 40px;
  overflow-y: auto;
  max-height: calc(100vh - 40px);
}
.modal-overlay.is-open .modal-content {
  transform: scale(1);
}
.modal-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: transparent;
  border: 0;
  font-size: 32px;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.modal-close:hover {
  color: var(--navy);
}
.modal-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #35445c;
  margin: 20px 0;
}
.modal-bullets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 30px;
}
.modal-bullet-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.modal-bullet-item::before {
  content: '✓';
  color: var(--gold);
  font-weight: 900;
}

@media(max-width: 768px) {
  .estimator-wrapper {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .modal-content {
    padding: 24px;
  }
  .modal-bullets {
    grid-template-columns: 1fr;
  }
}

/* E-Waste Service Grid Balanced Styling */
@media(min-width: 1025px) {
  .service-card[data-service="ewaste"] {
    grid-column: span 3;
  }
}
@media(max-width: 1024px) and (min-width: 769px) {
  .service-card[data-service="ewaste"] {
    grid-column: span 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-delay: -1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    background-attachment: initial !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}