:root {
  color-scheme: dark;
  --color-primary: #0f172a;
  --color-secondary: #1e293b;
  --color-accent: #2563eb;
  --color-background: #f1f5f9;
  --color-text: #f8fafc;
  --color-muted: #64748b;
  --shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.14);
  --shadow-premium: 0 24px 80px rgba(15, 23, 42, 0.22);
  --transition-smooth: 220ms ease;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  min-width: 320px;
  background:
    radial-gradient(circle at 16% 8%, rgba(13, 110, 253, 0.18), transparent 32%),
    radial-gradient(circle at 86% 24%, rgba(0, 31, 84, 0.5), transparent 28%),
    linear-gradient(180deg, #0b0f19 0%, #0a1128 42%, #0b0f19 100%);
  color: #f8fafc;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(13, 110, 253, 0.45);
  color: #ffffff;
}

img,
video {
  max-width: 100%;
}

a,
button {
  transition:
    color var(--transition-smooth),
    background-color var(--transition-smooth),
    border-color var(--transition-smooth),
    box-shadow var(--transition-smooth),
    transform var(--transition-smooth),
    opacity var(--transition-smooth);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

:is(
  .btn-modern,
  .btn-modern-outline,
  .catalog-page-button,
  .marketplace-cta,
  a[href*="wa.me"],
  a[href="#catalog"]:not(.nav-link):not(.mobile-link),
  #catalog article.group a,
  #gallery a
) {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

:is(
  .btn-modern,
  .btn-modern-outline,
  .catalog-page-button,
  .marketplace-cta,
  a[href*="wa.me"],
  a[href="#catalog"]:not(.nav-link):not(.mobile-link),
  #catalog article.group a,
  #gallery a
)::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent 10%, rgba(219, 234, 254, 0.28) 50%, transparent 90%);
  opacity: 0;
  transform: translateX(-120%);
  transition:
    opacity 220ms ease,
    transform 620ms ease;
}

:is(
  .btn-modern,
  .btn-modern-outline,
  .catalog-page-button,
  .marketplace-cta,
  a[href*="wa.me"],
  a[href="#catalog"]:not(.nav-link):not(.mobile-link),
  #catalog article.group a,
  #gallery a
):hover {
  box-shadow:
    0 0 0 1px rgba(147, 197, 253, 0.32),
    0 12px 34px rgba(37, 99, 235, 0.22),
    0 0 22px rgba(96, 165, 250, 0.16);
  filter: saturate(1.04);
}

:is(
  .btn-modern,
  .btn-modern-outline,
  .catalog-page-button,
  .marketplace-cta,
  a[href*="wa.me"],
  a[href="#catalog"]:not(.nav-link):not(.mobile-link),
  #catalog article.group a,
  #gallery a
):hover::before {
  opacity: 1;
  transform: translateX(120%);
}

#rental a[href*="wa.me"]:hover {
  box-shadow: none;
  text-shadow:
    0 0 14px rgba(147, 197, 253, 0.42),
    0 0 24px rgba(37, 99, 235, 0.2);
}

body.modal-open {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.product-modal.hidden {
  display: none;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(37, 99, 235, 0.24), transparent 32%),
    rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(14px);
}

.product-modal-panel {
  position: relative;
  width: min(100%, 64rem);
  max-height: min(88vh, 52rem);
  overflow: auto;
  border: 1px solid rgba(147, 197, 253, 0.22);
  background:
    linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.9)),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 34%);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.56),
    0 0 40px rgba(37, 99, 235, 0.18);
  padding: 2rem;
}

.product-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  float: right;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.75rem;
  background: rgba(15, 23, 42, 0.78);
  color: #dbeafe;
  backdrop-filter: blur(12px);
}

.product-modal-close:hover {
  color: #ffffff;
  background: rgba(37, 99, 235, 0.32);
}

.product-modal-close svg {
  width: 1.15rem;
  height: 1.15rem;
}

.product-modal-photo-frame {
  cursor: zoom-in;
}

.product-modal-photo-hint {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(191, 219, 254, 0.34);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(0.35rem);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.product-modal-photo-frame:hover .product-modal-photo-hint,
.product-modal-photo-frame:focus-within .product-modal-photo-hint {
  opacity: 1;
  transform: translateY(0);
}

.product-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.product-image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.9);
  backdrop-filter: blur(16px);
}

.product-image-lightbox-panel {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(147, 197, 253, 0.26);
  background: rgba(15, 23, 42, 0.9);
  box-shadow:
    0 36px 100px rgba(0, 0, 0, 0.66),
    0 0 42px rgba(37, 99, 235, 0.18);
}

.product-image-lightbox-photo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(92vw, 76rem);
  max-height: 88vh;
  object-fit: contain;
}

.product-image-lightbox-close,
.product-image-lightbox-nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.product-image-lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
}

.product-image-lightbox-nav {
  top: 50%;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  transform: translateY(-50%);
}

.product-image-lightbox-prev {
  left: 1rem;
}

.product-image-lightbox-next {
  right: 1rem;
}

.product-image-lightbox-close:hover,
.product-image-lightbox-nav:hover {
  border-color: rgba(147, 197, 253, 0.72);
  background: rgba(37, 99, 235, 0.72);
}

.product-image-lightbox-counter {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #dbeafe;
  font-size: 0.75rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

@media (max-width: 640px) {
  .product-modal {
    padding: 0.75rem;
  }

  .product-modal-panel {
    max-height: 90vh;
    padding: 1rem;
    padding-top: 4rem;
  }

  .product-modal-photo-hint {
    opacity: 1;
    transform: translateY(0);
  }

  .product-image-lightbox {
    padding: 0.75rem;
  }

  .product-image-lightbox-photo {
    max-width: 94vw;
    max-height: 84vh;
  }

  .product-image-lightbox-nav {
    width: 2.65rem;
    height: 2.65rem;
  }
}

#floatingWhatsapp {
  position: fixed !important;
  top: auto !important;
  right: 2rem !important;
  bottom: 2rem !important;
  left: auto !important;
  z-index: 80;
  display: grid;
  width: 3.875rem;
  height: 3.875rem;
  place-items: center;
  border: 1px solid rgba(187, 247, 208, 0.38);
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.42), transparent 24%),
    linear-gradient(145deg, rgba(34, 197, 94, 0.96), rgba(20, 184, 166, 0.92) 48%, rgba(37, 99, 235, 0.9)),
    rgba(15, 23, 42, 0.88);
  color: #ffffff;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.38),
    0 0 28px rgba(34, 197, 94, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transform: none !important;
}

#floatingWhatsapp::after {
  position: absolute;
  top: 0.1rem;
  right: 0.1rem;
  width: 0.82rem;
  height: 0.82rem;
  content: "";
  border: 2px solid #0b0f19;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.72);
}

.floating-whatsapp-icon {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.floating-whatsapp-icon svg {
  width: 1.65rem;
  height: 1.65rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.22));
}

@media (max-width: 640px) {
  #floatingWhatsapp {
    right: 1.25rem !important;
    bottom: 1.25rem !important;
    width: 3.35rem;
    height: 3.35rem;
  }
}

.section-shell {
  width: min(100% - 2rem, 80rem);
  margin-inline: auto;
}

.section-kicker {
  margin-bottom: 0.875rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-title {
  max-width: 48rem;
  font-size: clamp(2rem, 4vw, 3.35rem);
  font-weight: 900;
  line-height: 1.08;
}

.section-copy {
  margin-top: 1.25rem;
  max-width: 42rem;
  line-height: 1.8;
}

.feature-icon {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.5rem;
  place-items: center;
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 0.875rem;
  background: linear-gradient(145deg, rgba(13, 110, 253, 0.22), rgba(255, 255, 255, 0.06));
  color: #93c5fd;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 0 28px rgba(13, 110, 253, 0.18);
  transition:
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.feature-icon svg {
  width: 1.8rem;
  height: 1.8rem;
  stroke-width: 1.8;
}

.card-title {
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.35;
}

.card-copy {
  margin-top: 0.75rem;
  font-size: 0.94rem;
  line-height: 1.7;
}

.text-balance {
  text-wrap: balance;
}

.btn-modern {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border: 1px solid transparent;
  background: linear-gradient(135deg, var(--color-accent), #1d4ed8);
  color: var(--color-text);
  font-weight: 700;
  line-height: 1;
  padding: 0.875rem 1.25rem;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28);
}

.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(37, 99, 235, 0.34);
}

.btn-modern-outline {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  border: 1px solid rgba(248, 250, 252, 0.24);
  background: rgba(248, 250, 252, 0.08);
  color: var(--color-text);
  font-weight: 700;
  line-height: 1;
  padding: 0.875rem 1.25rem;
  backdrop-filter: blur(18px);
}

.btn-modern-outline:hover {
  transform: translateY(-2px);
  background: rgba(248, 250, 252, 0.14);
  border-color: rgba(248, 250, 252, 0.4);
}

.premium-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transition:
    border-color var(--transition-smooth),
    background var(--transition-smooth),
    box-shadow var(--transition-smooth),
    transform var(--transition-smooth);
}

.premium-card:hover {
  transform: translateY(-6px);
  border-color: rgba(59, 130, 246, 0.55);
  background: linear-gradient(145deg, rgba(13, 110, 253, 0.18), rgba(255, 255, 255, 0.06));
}

.soft-shadow {
  box-shadow: var(--shadow-soft);
}

.gradient-overlay {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.76)),
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.28), transparent 32%);
}

.hover-lift:hover {
  transform: translateY(-3px);
}

.hero-video {
  opacity: 0.56;
  filter: saturate(0.95) contrast(1.08);
  transform: scale(1.02);
}

#about,
#why-us,
#services,
#catalog,
#service-center,
#sparepart,
#rental,
#business-consultation,
#testimonial,
#gallery,
#faq,
#contact {
  position: relative;
  overflow: hidden;
}

#about > .mx-auto,
#why-us > .mx-auto,
#services > .mx-auto,
#catalog > .mx-auto,
#service-center > .mx-auto,
#sparepart > .mx-auto,
#rental > .mx-auto,
#business-consultation > .mx-auto,
#testimonial > .mx-auto,
#gallery > .mx-auto,
#faq > .mx-auto,
#contact > .mx-auto {
  position: relative;
  z-index: 1;
}

#about::before,
#why-us::before,
#services::before,
#catalog::before,
#service-center::before,
#sparepart::before,
#rental::before,
#business-consultation::before,
#testimonial::before,
#gallery::before,
#faq::before,
#contact::before {
  position: absolute;
  top: var(--decor-top, auto);
  right: var(--decor-right, auto);
  bottom: var(--decor-bottom, auto);
  left: var(--decor-left, auto);
  z-index: 0;
  width: var(--decor-width, 28rem);
  max-width: 70vw;
  aspect-ratio: var(--decor-ratio, 1 / 1);
  pointer-events: none;
  content: "";
  background-image: var(--decor-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: var(--decor-opacity, 0.11);
  filter: drop-shadow(0 0 24px rgba(37, 99, 235, 0.28));
  mix-blend-mode: screen;
  transform: rotate(var(--decor-rotate, 0deg)) scaleX(var(--decor-flip, 1));
}

#about {
  --decor-image: url("../images/decor/copier-sketch-tall.svg");
  --decor-width: 24rem;
  --decor-right: 4%;
  --decor-bottom: 5%;
  --decor-opacity: 0.12;
  --decor-rotate: -7deg;
}

#why-us {
  --decor-image: url("../images/decor/copier-sketch-wide.svg");
  --decor-width: 32rem;
  --decor-left: -4rem;
  --decor-bottom: 2rem;
  --decor-opacity: 0.1;
  --decor-rotate: 5deg;
}

#services {
  --decor-image: url("../images/decor/copier-sketch-paper.svg");
  --decor-width: 27rem;
  --decor-right: -2rem;
  --decor-top: 7rem;
  --decor-opacity: 0.105;
  --decor-rotate: 9deg;
}

#catalog {
  --decor-image: url("../images/decor/copier-sketch-compact.svg");
  --decor-width: 22rem;
  --decor-left: 3%;
  --decor-top: 8rem;
  --decor-opacity: 0.08;
  --decor-rotate: -5deg;
}

#service-center {
  --decor-image: url("../images/decor/copier-sketch-wide.svg");
  --decor-width: 30rem;
  --decor-right: 2%;
  --decor-bottom: 2rem;
  --decor-opacity: 0.1;
  --decor-rotate: -4deg;
  --decor-flip: -1;
}

#sparepart {
  --decor-image: url("../images/decor/copier-sketch-paper.svg");
  --decor-width: 25rem;
  --decor-left: 2%;
  --decor-bottom: 4rem;
  --decor-opacity: 0.11;
  --decor-rotate: 8deg;
}

#rental {
  --decor-image: url("../images/decor/copier-sketch-tall.svg");
  --decor-width: 23rem;
  --decor-right: 5%;
  --decor-top: 6rem;
  --decor-opacity: 0.085;
  --decor-rotate: 6deg;
}

#business-consultation {
  --decor-image: url("../images/decor/copier-sketch-compact.svg");
  --decor-width: 26rem;
  --decor-right: -3rem;
  --decor-bottom: 3rem;
  --decor-opacity: 0.115;
  --decor-rotate: -8deg;
}

#testimonial {
  --decor-image: url("../images/decor/copier-sketch-paper.svg");
  --decor-width: 24rem;
  --decor-left: -2rem;
  --decor-top: 5rem;
  --decor-opacity: 0.08;
  --decor-rotate: 4deg;
}

#gallery {
  --decor-image: url("../images/decor/copier-sketch-wide.svg");
  --decor-width: 34rem;
  --decor-right: -5rem;
  --decor-top: 4rem;
  --decor-opacity: 0.09;
  --decor-rotate: 7deg;
}

#faq {
  --decor-image: url("../images/decor/copier-sketch-tall.svg");
  --decor-width: 22rem;
  --decor-left: 4%;
  --decor-bottom: 4rem;
  --decor-opacity: 0.085;
  --decor-rotate: -6deg;
}

#contact {
  --decor-image: url("../images/decor/copier-sketch-compact.svg");
  --decor-width: 28rem;
  --decor-right: 2%;
  --decor-bottom: 1rem;
  --decor-opacity: 0.1;
  --decor-rotate: 5deg;
}

@media (max-width: 768px) {
  #about::before,
  #why-us::before,
  #services::before,
  #catalog::before,
  #service-center::before,
  #sparepart::before,
  #rental::before,
  #business-consultation::before,
  #testimonial::before,
  #gallery::before,
  #faq::before,
  #contact::before {
    width: min(var(--decor-width, 22rem), 18rem);
    opacity: calc(var(--decor-opacity, 0.1) * 0.72);
  }
}

#about,
#catalog,
#rental,
#gallery {
  background:
    radial-gradient(circle at 15% 10%, rgba(13, 110, 253, 0.17), transparent 34%),
    radial-gradient(circle at 84% 28%, rgba(0, 31, 84, 0.42), transparent 30%),
    linear-gradient(180deg, #0a1128 0%, #0b0f19 100%) !important;
}

#services,
#service-center,
#testimonial,
#faq {
  background:
    radial-gradient(circle at 82% 12%, rgba(13, 110, 253, 0.16), transparent 30%),
    linear-gradient(180deg, #0b0f19 0%, #0a1128 54%, #0b0f19 100%) !important;
}

#sparepart,
#business-consultation,
#contact {
  background:
    radial-gradient(circle at 18% 18%, rgba(13, 110, 253, 0.18), transparent 34%),
    radial-gradient(circle at 86% 62%, rgba(30, 64, 175, 0.22), transparent 30%),
    linear-gradient(180deg, #0b0f19 0%, #0a1128 48%, #0b0f19 100%) !important;
}

#about .section-title,
#services .section-title,
#catalog h2,
#service-center .section-title,
#rental .section-title,
#testimonial .section-title,
#gallery .section-title,
#faq .section-title,
#about .card-title,
#services .card-title,
#service-center .card-title,
#rental .card-title,
#testimonial h3,
#gallery h3,
#faq summary {
  color: #ffffff !important;
}

#about .section-copy,
#services .section-copy,
#catalog p,
#service-center .section-copy,
#rental .section-copy,
#testimonial .section-copy,
#gallery .section-copy,
#faq .section-copy,
#about .card-copy,
#services .card-copy,
#service-center .card-copy,
#rental .card-copy,
#testimonial article p,
#faq details p {
  color: #cbd5e1 !important;
}

#catalog .catalog-filter {
  color: #bfdbfe;
}

#catalog .catalog-filter.bg-slate-950 {
  background: #0d6efd !important;
  color: #ffffff !important;
  box-shadow: 0 0 26px rgba(13, 110, 253, 0.25);
}

#catalog #catalogGrid > div,
#gallery #galleryGrid > div,
#faq details {
  border-color: rgba(147, 197, 253, 0.2) !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: blur(18px);
}

#catalog article.group,
#gallery article.group {
  border-color: rgba(147, 197, 253, 0.2) !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28) !important;
  backdrop-filter: blur(18px);
}

#catalog article.group h3,
#catalog article.group a,
#catalog article.group button,
#gallery article.group h3 {
  color: #ffffff !important;
}

#catalog article.group p,
#gallery article.group p {
  color: #cbd5e1 !important;
}

.catalog-card-title {
  display: -webkit-box;
  min-height: 3.5rem;
  overflow: hidden;
  font-size: 1.125rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

#catalog article.group button[data-product-detail],
#catalog article.group a:first-child,
#gallery a {
  border-color: rgba(147, 197, 253, 0.2) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #dbeafe !important;
}

#catalog article.group button[data-product-detail]:hover,
#catalog article.group a:first-child:hover,
#gallery a:hover {
  border-color: rgba(96, 165, 250, 0.7) !important;
  color: #ffffff !important;
}

.why-card {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  border-color: rgba(96, 165, 250, 0.18) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, rgba(13, 110, 253, 0.1), rgba(10, 17, 40, 0.18)) !important;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.13) !important;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.why-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 22%, transparent 44%);
  transform: translateX(-130%);
  transition: transform 620ms ease;
}

.why-card::after {
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 72%;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.26), transparent 62%);
  opacity: 0;
  filter: blur(22px);
  transition: opacity 220ms ease;
}

.why-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(96, 165, 250, 0.68) !important;
  background:
    linear-gradient(145deg, rgba(13, 110, 253, 0.18), rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(13, 110, 253, 0.14), rgba(10, 17, 40, 0.2)) !important;
  box-shadow:
    0 28px 85px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(13, 110, 253, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

.why-card:hover::before {
  transform: translateX(130%);
}

.why-card:hover::after {
  opacity: 1;
}

.why-card:hover .why-icon {
  color: #dbeafe;
  border-color: rgba(147, 197, 253, 0.7);
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.36), rgba(255, 255, 255, 0.1));
  box-shadow:
    0 0 18px rgba(191, 219, 254, 0.46),
    0 0 36px rgba(13, 110, 253, 0.36);
  transform: translateY(-3px) scale(1.12);
}

.why-card .card-title,
.why-card .card-copy,
.why-card .why-icon {
  position: relative;
  z-index: 1;
}

.about-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-color: rgba(96, 165, 250, 0.18) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, rgba(13, 110, 253, 0.1), rgba(10, 17, 40, 0.18)) !important;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.13) !important;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.about-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 22%, transparent 44%);
  transform: translateX(-130%);
  transition: transform 620ms ease;
}

.about-card::after {
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 72%;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.26), transparent 62%);
  opacity: 0;
  filter: blur(22px);
  transition: opacity 220ms ease;
}

.about-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(96, 165, 250, 0.68) !important;
  background:
    linear-gradient(145deg, rgba(13, 110, 253, 0.18), rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(13, 110, 253, 0.14), rgba(10, 17, 40, 0.2)) !important;
  box-shadow:
    0 28px 85px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(13, 110, 253, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

.about-card:hover::before {
  transform: translateX(130%);
}

.about-card:hover::after {
  opacity: 1;
}

.about-card:hover .about-icon {
  color: #dbeafe;
  border-color: rgba(147, 197, 253, 0.7);
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.36), rgba(255, 255, 255, 0.1));
  box-shadow:
    0 0 18px rgba(191, 219, 254, 0.46),
    0 0 36px rgba(13, 110, 253, 0.36);
  transform: translateY(-3px) scale(1.12);
}

.about-card .card-title,
.about-card .card-copy,
.about-card .about-icon {
  position: relative;
  z-index: 1;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 225px;
  border-color: rgba(96, 165, 250, 0.18) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, rgba(13, 110, 253, 0.1), rgba(10, 17, 40, 0.18)) !important;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.13) !important;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 22%, transparent 44%);
  transform: translateX(-130%);
  transition: transform 620ms ease;
}

.service-card::after {
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 72%;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.26), transparent 62%);
  opacity: 0;
  filter: blur(22px);
  transition: opacity 220ms ease;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(96, 165, 250, 0.68) !important;
  background:
    linear-gradient(145deg, rgba(13, 110, 253, 0.18), rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(13, 110, 253, 0.14), rgba(10, 17, 40, 0.2)) !important;
  box-shadow:
    0 28px 85px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(13, 110, 253, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

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

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover .service-icon {
  color: #dbeafe;
  border-color: rgba(147, 197, 253, 0.7);
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.36), rgba(255, 255, 255, 0.1));
  box-shadow:
    0 0 18px rgba(191, 219, 254, 0.46),
    0 0 36px rgba(13, 110, 253, 0.36);
  transform: translateY(-3px) scale(1.12);
}

.service-card .card-title,
.service-card .card-copy,
.service-card .service-icon {
  position: relative;
  z-index: 1;
}

.service-step-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  border-color: rgba(96, 165, 250, 0.18) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, rgba(13, 110, 253, 0.1), rgba(10, 17, 40, 0.18)) !important;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.13) !important;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.service-step-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 22%, transparent 44%);
  transform: translateX(-130%);
  transition: transform 620ms ease;
}

.service-step-card::after {
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 72%;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.26), transparent 62%);
  opacity: 0;
  filter: blur(22px);
  transition: opacity 220ms ease;
}

.service-step-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(96, 165, 250, 0.68) !important;
  background:
    linear-gradient(145deg, rgba(13, 110, 253, 0.18), rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(13, 110, 253, 0.14), rgba(10, 17, 40, 0.2)) !important;
  box-shadow:
    0 28px 85px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(13, 110, 253, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

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

.service-step-card:hover::after {
  opacity: 1;
}

.service-step-card:hover .service-step-icon {
  color: #dbeafe;
  border-color: rgba(147, 197, 253, 0.7);
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.36), rgba(255, 255, 255, 0.1));
  box-shadow:
    0 0 18px rgba(191, 219, 254, 0.46),
    0 0 36px rgba(13, 110, 253, 0.36);
  transform: translateY(-3px) scale(1.12);
}

.service-step-card .card-title,
.service-step-card .card-copy,
.service-step-card .service-step-icon {
  position: relative;
  z-index: 1;
}

.sparepart-card {
  position: relative;
  overflow: hidden;
  min-height: 225px;
  border-color: rgba(96, 165, 250, 0.18) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, rgba(13, 110, 253, 0.1), rgba(10, 17, 40, 0.18)) !important;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.13) !important;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.sparepart-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 22%, transparent 44%);
  transform: translateX(-130%);
  transition: transform 620ms ease;
}

.sparepart-card::after {
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 72%;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.26), transparent 62%);
  opacity: 0;
  filter: blur(22px);
  transition: opacity 220ms ease;
}

.sparepart-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(96, 165, 250, 0.68) !important;
  background:
    linear-gradient(145deg, rgba(13, 110, 253, 0.18), rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(13, 110, 253, 0.14), rgba(10, 17, 40, 0.2)) !important;
  box-shadow:
    0 28px 85px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(13, 110, 253, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

.sparepart-card:hover::before {
  transform: translateX(130%);
}

.sparepart-card:hover::after {
  opacity: 1;
}

.sparepart-card:hover .sparepart-icon {
  color: #dbeafe;
  border-color: rgba(147, 197, 253, 0.7);
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.36), rgba(255, 255, 255, 0.1));
  box-shadow:
    0 0 18px rgba(191, 219, 254, 0.46),
    0 0 36px rgba(13, 110, 253, 0.36);
  transform: translateY(-3px) scale(1.12);
}

.sparepart-card .card-title,
.sparepart-card .card-copy,
.sparepart-card .sparepart-icon {
  position: relative;
  z-index: 1;
}

.consultation-card {
  position: relative;
  overflow: hidden;
  min-height: 275px;
  border-color: rgba(96, 165, 250, 0.18) !important;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, rgba(13, 110, 253, 0.1), rgba(10, 17, 40, 0.18)) !important;
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.13) !important;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.consultation-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 22%, transparent 44%);
  transform: translateX(-130%);
  transition: transform 620ms ease;
}

.consultation-card::after {
  position: absolute;
  inset: auto -20% -45% -20%;
  height: 72%;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 50% 50%, rgba(13, 110, 253, 0.26), transparent 62%);
  opacity: 0;
  filter: blur(22px);
  transition: opacity 220ms ease;
}

.consultation-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(96, 165, 250, 0.68) !important;
  background:
    linear-gradient(145deg, rgba(13, 110, 253, 0.18), rgba(255, 255, 255, 0.06)),
    linear-gradient(180deg, rgba(13, 110, 253, 0.14), rgba(10, 17, 40, 0.2)) !important;
  box-shadow:
    0 28px 85px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(13, 110, 253, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18) !important;
}

.consultation-card:hover::before {
  transform: translateX(130%);
}

.consultation-card:hover::after {
  opacity: 1;
}

.consultation-card:hover .consultation-icon {
  color: #dbeafe;
  border-color: rgba(147, 197, 253, 0.7);
  background: linear-gradient(145deg, rgba(37, 99, 235, 0.36), rgba(255, 255, 255, 0.1));
  box-shadow:
    0 0 18px rgba(191, 219, 254, 0.46),
    0 0 36px rgba(13, 110, 253, 0.36);
  transform: translateY(-3px) scale(1.12);
}

.consultation-card .card-title,
.consultation-card .card-copy,
.consultation-card .consultation-icon {
  position: relative;
  z-index: 1;
}

.nav-link {
  position: relative;
  border-radius: 999px;
  padding: 0.5rem 0.7rem;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    box-shadow 220ms ease,
    text-shadow 220ms ease;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 999px;
  background: #2563eb;
  transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: #ffffff;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  outline: 0;
  text-shadow:
    0 0 10px rgba(219, 234, 254, 0.82),
    0 0 22px rgba(96, 165, 250, 0.52),
    0 0 38px rgba(37, 99, 235, 0.36);
}

#navbar .nav-link::before {
  display: none;
}

#navbar .nav-link:hover,
#navbar .nav-link.is-active {
  border: 0;
  box-shadow: none;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(0);
}

.menu-icon {
  position: relative;
  display: inline-block;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: currentColor;
}

.menu-icon::before {
  top: -7px;
}

.menu-icon::after {
  top: 7px;
}

.mobile-link {
  transition:
    color var(--transition-smooth),
    background-color var(--transition-smooth);
}

.hero-stats {
  max-width: 100%;
}

.stat-card {
  position: relative;
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, rgba(13, 110, 253, 0.1), rgba(10, 17, 40, 0.18));
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  padding: 30px 24px;
  text-align: center;
  backdrop-filter: blur(18px);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.stat-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.18) 22%, transparent 44%);
  transform: translateX(-130%);
  transition: transform 620ms ease;
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(96, 165, 250, 0.68);
  box-shadow:
    0 28px 85px rgba(0, 0, 0, 0.44),
    0 0 34px rgba(13, 110, 253, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.stat-card:hover::before {
  transform: translateX(130%);
}

.stat-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  color: #93c5fd;
  filter: drop-shadow(0 0 14px rgba(13, 110, 253, 0.5));
  stroke-width: 1.8;
  transition:
    color 220ms ease,
    filter 220ms ease,
    transform 220ms ease;
}

.stat-card:hover .stat-icon {
  color: #dbeafe;
  filter:
    drop-shadow(0 0 10px rgba(191, 219, 254, 0.9))
    drop-shadow(0 0 26px rgba(13, 110, 253, 0.85))
    drop-shadow(0 0 44px rgba(13, 110, 253, 0.42));
  transform: translateY(-2px) scale(1.08);
}

.stat-card strong {
  display: block;
  color: #ffffff;
  font-size: clamp(2.55rem, 4.95vw, 3.9rem);
  font-weight: 950;
  line-height: 0.95;
  text-shadow: 0 0 24px rgba(13, 110, 253, 0.42);
  transition:
    text-shadow 220ms ease,
    transform 220ms ease;
}

.stat-card:hover strong {
  transform: translateY(-2px) scale(1.035);
  text-shadow:
    0 0 16px rgba(191, 219, 254, 0.72),
    0 0 34px rgba(13, 110, 253, 0.52);
}

.stat-counter {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.stat-label {
  display: block;
  margin-top: 18px;
  color: #bfdbfe;
  font-size: clamp(0.72rem, 1.2vw, 0.88rem);
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
