:root {
  --red: #ed101b;
  --red-dark: #ba0710;
  --black: #020405;
  --ink: #11151b;
  --muted: #68717d;
  --line: #e7ebef;
  --soft: #f6f7f9;
  --soft-red: #fff1f2;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(15, 23, 42, 0.1);
  --shadow-sm: 0 12px 28px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(237, 16, 27, 0.025) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #fff, #f8f9fb);
  background-size: 42px 42px, auto;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.section-title h2,
.service-content h2,
.brand-text {
  font-family: "Times New Roman", Times, serif;
}

main {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header .container,
.site-footer .container {
  width: min(1320px, calc(100% - 32px));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 3, 4, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  flex: 0 0 auto;
  width: 156px;
  height: 48px;
  overflow: hidden;
}

.brand img {
  width: 156px;
  height: 48px;
  object-fit: cover;
  object-position: left center;
  filter: drop-shadow(0 12px 20px rgba(237, 16, 27, 0.18));
}

.site-header .brand {
  width: auto;
  min-width: 0;
  max-width: none;
  height: auto;
  padding: 4px 0;
  margin: -2px 0;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0;
  background: none;
  border: 0;
  box-shadow: none;
  overflow: visible;
  transition: opacity 0.2s ease, transform 0.22s ease;
}

.site-header .brand:hover {
  border-color: transparent;
  background: none;
  box-shadow: none;
  transform: translateY(-1px);
  opacity: 0.94;
}

.site-header .brand:focus-visible {
  outline: 2px solid rgba(237, 16, 27, 0.65);
  outline-offset: 4px;
  border-radius: 8px;
}

.site-header .brand:active {
  transform: translateY(0);
  opacity: 1;
}

.site-header .brand img {
  width: auto;
  height: clamp(42px, 4.8vw, 52px);
  max-width: min(252px, 58vw);
  object-fit: contain;
  object-position: center center;
  filter:
    drop-shadow(0 1px 0 rgba(0, 0, 0, 0.85))
    drop-shadow(0 10px 24px rgba(0, 0, 0, 0.45));
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 14px 4px 14px 4px;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  transform: skew(-8deg);
  box-shadow: 0 0 0 4px rgba(237, 16, 27, 0.15), 0 12px 24px rgba(237, 16, 27, 0.24);
}

.brand-text {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

.main-nav a {
  position: relative;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 27px 0;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.main-nav a.active {
  color: var(--red);
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-drop-toggle {
  position: relative;
  min-height: 72px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.nav-drop-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.nav-drop-toggle:hover::after,
.nav-drop-toggle.active::after,
.nav-dropdown:hover .nav-drop-toggle::after,
.nav-dropdown:focus-within .nav-drop-toggle::after {
  transform: scaleX(1);
}

.nav-drop-toggle.active {
  color: var(--red);
}

.dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% - 4px);
  z-index: 60;
  width: min(680px, calc(100vw - 32px));
  max-height: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  overflow: visible;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(5, 8, 13, 0.98);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.38);
  transform: translate(-50%, 10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 11px 12px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(237, 16, 27, 0.13);
  color: #fff;
}

.dropdown-menu::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.whatsapp-btn {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  padding: 11px 15px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.whatsapp-btn:hover {
  border-color: rgba(57, 213, 105, 0.75);
  background: rgba(57, 213, 105, 0.08);
  transform: translateY(-1px);
}

.whatsapp-btn::before {
  content: "WA";
  margin-right: 8px;
  color: #39d569;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: transparent;
  padding: 9px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

.section-dark {
  color: #fff;
  background: var(--black);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 700px;
  isolation: isolate;
}

.cta::before,
.services-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 46%, rgba(237, 16, 27, 0.32), transparent 23%),
    radial-gradient(circle at 54% 120%, rgba(47, 56, 63, 0.7), transparent 34%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.86) 42%, rgba(0, 0, 0, 0.54) 100%),
    repeating-linear-gradient(135deg, #12171c 0 8px, #050607 8px 20px);
  opacity: 0.95;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #020405;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 30% 52%, rgba(237, 16, 27, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.55) 34%, rgba(0, 0, 0, 0.16) 62%, rgba(0, 0, 0, 0.22) 100%);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 40%, rgba(0, 0, 0, 0.12));
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.05) brightness(0.82);
}

.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: translateX(5%) scale(1.04);
  filter: saturate(1.08) contrast(1.04) brightness(0.95);
  animation: heroSlideShow 15s ease-in-out infinite;
}

.slide-two {
  animation-delay: 5s;
}

.slide-three {
  animation-delay: 10s;
}

@keyframes heroSlideShow {
  0% {
    opacity: 0;
    transform: translateX(5%) scale(1.04);
  }

  7%,
  30% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  38%,
  100% {
    opacity: 0;
    transform: translateX(-5%) scale(1.04);
  }
}

.hero::before {
  display: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 620px) 1fr;
  align-items: center;
  gap: 46px;
  min-height: 700px;
  padding: 140px 0 125px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

@media (min-width: 1200px) {
  .hero-copy {
    transform: translateX(-46px);
  }
}

.hero-copy::before {
  content: "";
  position: absolute;
  left: -18px;
  top: -18px;
  width: 70px;
  height: 70px;
  border-left: 3px solid rgba(237, 16, 27, 0.52);
  border-top: 3px solid rgba(237, 16, 27, 0.52);
  border-radius: 14px 0 0 0;
  opacity: 0.72;
}

.hero-copy::after {
  content: "";
  position: absolute;
  left: -46px;
  top: 44px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 16, 27, 0.14), transparent 68%);
  filter: blur(12px);
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 13px;
  color: var(--red);
  text-transform: uppercase;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  color: #fff;
  font-size: clamp(36px, 3.35vw, 50px);
  line-height: 1.1;
  font-weight: 800;
  white-space: nowrap;
}

.hero h1 span {
  color: var(--red);
}

.hero h1::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.hero-lead {
  max-width: 430px;
  margin: 17px 0 20px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  line-height: 1.55;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  border-radius: 7px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
  box-shadow: 0 14px 34px rgba(237, 16, 27, 0.34);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 12px 28px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.1);
}

.btn-whatsapp::before {
  content: "WA";
  color: #39d569;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 560px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
  max-width: 720px;
}

.trust-row div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.025));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 18px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.trust-row div:hover {
  transform: translateY(-3px);
  border-color: rgba(237, 16, 27, 0.48);
  background:
    linear-gradient(180deg, rgba(237, 16, 27, 0.13), rgba(255, 255, 255, 0.035));
}

.trust-icon {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(237, 16, 27, 0.8);
  background: rgba(237, 16, 27, 0.2);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
}

.trust-row strong {
  font-size: 14px;
  line-height: 1.3;
}

.trust-row small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.hero-device {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 900px;
}

.hero-device::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(237, 16, 27, 0.18), transparent 62%);
  filter: blur(4px);
}

.hero-image-placeholder {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
  aspect-ratio: 1.7;
  padding: 14px;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 30%),
    #151b21;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.82), inset 0 0 0 2px #2d343b;
  transform: rotateZ(3deg) rotateY(-8deg);
}

.hero-image-placeholder::before,
.hero-image-placeholder::after {
  content: "";
  position: absolute;
  width: 74px;
  height: 30px;
  border: 6px solid var(--red);
  filter: drop-shadow(0 0 12px rgba(237, 16, 27, 0.45));
}

.hero-image-placeholder::before {
  left: -10px;
  top: -10px;
  border-right: 0;
  border-bottom: 0;
  border-radius: 18px 0 0 0;
}

.hero-image-placeholder::after {
  right: -10px;
  bottom: -10px;
  border-left: 0;
  border-top: 0;
  border-radius: 0 0 18px 0;
}

.placeholder-frame {
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(135deg, #152335, #06101b);
}

.placeholder-frame span {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
}

.placeholder-frame small {
  max-width: 280px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.5;
}

.tablet {
  position: relative;
  width: min(570px, 100%);
  aspect-ratio: 1.66;
  border: 18px solid #171d23;
  border-radius: 28px;
  background: #07090b;
  box-shadow: 0 36px 75px rgba(0, 0, 0, 0.88), 0 18px 0 rgba(255, 255, 255, 0.015), 0 0 0 1px rgba(255, 255, 255, 0.08), inset 0 0 0 3px #2b3036;
  transform: rotateZ(4deg) rotateY(-10deg);
  z-index: 1;
}

.tablet::marker {
  display: none;
}

.tablet::before,
.tablet::after {
  content: "";
  position: absolute;
  width: 74px;
  height: 32px;
  border: 6px solid var(--red);
  filter: drop-shadow(0 0 10px rgba(237, 16, 27, 0.4));
}

.tablet::before {
  top: -20px;
  left: -17px;
  border-right: 0;
  border-bottom: 0;
  border-radius: 18px 0 0 0;
  box-shadow: 430px 262px 0 -21px var(--red);
}

.tablet::after {
  right: -17px;
  bottom: -20px;
  border-left: 0;
  border-top: 0;
  border-radius: 0 0 18px 0;
  box-shadow: -430px -262px 0 -21px var(--red);
}

.tablet-screen {
  position: relative;
  height: 100%;
  padding: 28px;
  border-radius: 13px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), transparent 32%),
    linear-gradient(145deg, #1c2736, #07111f);
  overflow: hidden;
}

.tablet-screen::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 16px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.tablet-screen::after {
  content: "DATRONIX";
  position: absolute;
  left: 50%;
  bottom: 8px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 800;
  transform: translateX(-50%);
}

.screen-grid {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  align-content: center;
}

.screen-grid span {
  min-height: 62px;
  display: grid;
  place-items: center;
  grid-template-rows: auto auto;
  text-align: center;
  color: #fff;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 800;
  background: linear-gradient(150deg, #ef2b32, #f39a20);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 10px 24px rgba(0, 0, 0, 0.22);
}

.screen-grid span::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-bottom: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.14);
}

.screen-grid span:nth-child(2n) {
  background: linear-gradient(150deg, #f8b733, #ef5133);
}

.screen-grid span:nth-child(3n) {
  background: linear-gradient(150deg, #21a6c7, #196e9c);
}

.about-home {
  position: relative;
  padding: 104px 0 96px;
  background:
    linear-gradient(90deg, rgba(237, 16, 27, 0.055) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, #f5f8fc 0%, #eef3f9 100%);
  background-size: 54px 54px, auto;
}

.about-home::before,
.products-section::before,
.credentials::before,
.newsletter::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237, 16, 27, 0.38), transparent);
  transform: translateX(-50%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) minmax(480px, 1.15fr);
  gap: 82px;
  align-items: center;
}

.about-grid > div:first-child {
  padding: 8px 0;
}

h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 800;
}

.about-heading {
  color: #11151b;
}

.about-heading span {
  color: var(--red);
}

.about-heading-line {
  display: inline;
  color: inherit;
}

.about-heading-line + .about-heading-line {
  display: block;
}

.about-heading .about-heading-line {
  color: inherit;
}

.about-grid p:not(.eyebrow) {
  max-width: 600px;
  color: #3e4854;
  line-height: 1.78;
  font-size: 16px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 28px;
  display: grid;
  gap: 16px;
  color: #1e252c;
  font-size: 15px;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--red), 0 8px 16px rgba(237, 16, 27, 0.24);
}

.about-visual {
  position: relative;
  display: grid;
  gap: 22px;
}

.about-image-card {
  position: relative;
  min-height: 345px;
  border-radius: 12px;
  overflow: hidden;
  background: #111820;
  border: 1px solid rgba(17, 21, 27, 0.08);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.16);
}

.about-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), transparent 48%, rgba(0, 0, 0, 0.1)),
    linear-gradient(90deg, rgba(237, 16, 27, 0.08), transparent 34%);
  pointer-events: none;
}

.about-image-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9px;
  pointer-events: none;
}

.about-image-card img {
  width: 100%;
  height: 100%;
  min-height: 345px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.about-image-card:hover img {
  transform: scale(1.035);
}

.about-highlights {
  display: grid;
  gap: 12px;
  margin-top: 2px;
}

.about-highlight-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 17px 18px 17px 15px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(223, 229, 238, 0.95);
  border-left-width: 3px;
  border-left-color: var(--red);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.about-highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.1);
  border-top-color: rgba(237, 16, 27, 0.12);
  border-right-color: rgba(237, 16, 27, 0.08);
  border-bottom-color: rgba(237, 16, 27, 0.08);
}

.about-highlight-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(237, 16, 27, 0.14), rgba(237, 16, 27, 0.04));
  color: var(--red);
}

.about-highlight-icon svg {
  width: 23px;
  height: 23px;
}

.about-highlight-body h3 {
  margin: 2px 0 6px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  color: #11151b;
}

.about-highlight-body p {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 500;
  color: #5f6b7b;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stats-row div,
.credential-grid div,
.product-card,
.category-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.055);
}

.stats-row div {
  min-height: 96px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 14px 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stats-row div:hover,
.credential-grid div:hover {
  transform: translateY(-4px);
  border-color: rgba(237, 16, 27, 0.22);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.1);
}

.stats-row strong {
  color: #111;
  font-size: 30px;
  line-height: 1;
}

.stats-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.why {
  padding: 92px 0 100px;
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 6%, rgba(237, 16, 27, 0.24), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.07), transparent 30%),
    linear-gradient(135deg, #04070a 0%, #020304 54%, #091015 100%);
}

.why::before,
.services-strip::after,
.numbers::before,
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

.why > .container,
.services-strip > .container,
.numbers > .container,
.cta > .container {
  position: relative;
  z-index: 1;
}

.section-title {
  text-align: center;
  margin-bottom: 44px;
}

.section-title h2 {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  font-size: 23px;
  letter-spacing: 0.4px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 58px;
  height: 3px;
  background: var(--red);
  transform: translateX(-50%);
  border-radius: 99px;
}

.section-title.light h2 {
  color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.why-grid article {
  position: relative;
  min-height: 220px;
  padding: 30px 24px 26px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.028)),
    rgba(4, 8, 11, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 54px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.why-grid article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.why-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 0, rgba(237, 16, 27, 0.18), transparent 42%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.055), transparent);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.why-grid article::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 0;
  height: 3px;
  background: var(--red);
  opacity: 0;
  transform: scaleX(0.4);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.why-grid article:hover {
  transform: translateY(-8px);
  border-color: rgba(237, 16, 27, 0.5);
  background:
    linear-gradient(180deg, rgba(237, 16, 27, 0.12), rgba(255, 255, 255, 0.034)),
    rgba(4, 8, 11, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 32px 70px rgba(0, 0, 0, 0.36);
}

.why-grid article:hover::before,
.why-grid article:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.line-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(237, 16, 27, 0.56);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 255, 255, 0.12), transparent 42%),
    rgba(237, 16, 27, 0.18);
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  margin: 0 auto 20px;
  box-shadow: 0 16px 34px rgba(237, 16, 27, 0.14);
}

.why-grid h3,
.service-cards h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.2;
}

.why-grid p,
.service-cards p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.68;
}

.products-section {
  position: relative;
  padding: 86px 0 92px;
  background:
    radial-gradient(circle at 12% 18%, rgba(237, 16, 27, 0.09), transparent 24%),
    radial-gradient(circle at 90% 10%, rgba(17, 21, 27, 0.08), transparent 30%),
    linear-gradient(135deg, #f1f4f8 0%, #ffffff 48%, #eef2f6 100%);
  overflow: hidden;
}

.products-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 14%, #000 86%, transparent);
}

.products-section > .container {
  position: relative;
  z-index: 1;
}

.featured-products-section {
  position: relative;
  padding: 82px 0 88px;
  background:
    radial-gradient(circle at 82% 22%, rgba(237, 16, 27, 0.055), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.featured-products-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237, 16, 27, 0.35), transparent);
  transform: translateX(-50%);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 64px;
}

.category-card {
  position: relative;
  min-height: 340px;
  padding: 20px;
  text-align: center;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 0;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.075);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.category-card > * {
  position: relative;
  z-index: 1;
}

.category-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--red);
  opacity: 1;
  transition: opacity 0.22s ease;
}

.category-card::after {
  display: none;
}

.product-photo {
  width: 100%;
  max-width: none;
  height: 178px;
  display: block;
  object-fit: contain;
  object-position: center;
  margin: 0 auto 20px;
  padding: 22px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 50%, rgba(237, 16, 27, 0.06), transparent 58%),
    linear-gradient(180deg, #fbfcfe, #f3f6f9);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.055);
  transition: transform 0.25s ease;
}

.category-card:hover .product-photo,
.product-card:hover .product-photo {
  transform: scale(1.04);
}

.category-card:hover,
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(237, 16, 27, 0.34);
  box-shadow: 0 24px 52px rgba(15, 23, 42, 0.12);
}

.product-link-card {
  cursor: pointer;
}

.product-link-card:focus-visible {
  outline: 3px solid rgba(237, 16, 27, 0.38);
  outline-offset: 4px;
}

.category-card:hover::before {
  opacity: 1;
}

.product-art {
  position: relative;
  width: 142px;
  height: 96px;
  margin: 0 auto 12px;
}

.product-art::after {
  pointer-events: none;
}

.tablet-mini,
.tablet-wide {
  width: 142px;
  height: 92px;
  border: 10px solid #161b20;
  border-radius: 13px;
  background: linear-gradient(145deg, #13263c, #07101c);
  box-shadow: inset 0 0 0 2px #303942, 0 18px 30px rgba(15, 23, 42, 0.16);
}

.tablet-wide {
  width: 154px;
}

.tablet-mini::before,
.tablet-wide::before {
  content: "";
  position: absolute;
  inset: 12px;
  background:
    linear-gradient(90deg, #f33 0 22%, #f7aa25 22% 48%, #22a5c7 48% 74%, #e53 74%);
  border-radius: 5px;
}

.tester-art,
.handheld-art {
  width: 76px;
  height: 120px;
  border: 8px solid #14191e;
  border-radius: 16px;
  background: linear-gradient(#f4f6f8, #cbd2d9);
  box-shadow: 42px 18px 0 -32px #ef111b, 52px 28px 0 -36px #12161a, 0 18px 30px rgba(15, 23, 42, 0.14);
}

.tester-art::before,
.handheld-art::before {
  content: "";
  position: absolute;
  inset: 17px 12px auto;
  height: 38px;
  background: #34424e;
  border-radius: 4px;
}

.tester-art::after,
.handheld-art::after {
  content: "";
  position: absolute;
  left: 19px;
  right: 19px;
  bottom: 18px;
  height: 34px;
  background: radial-gradient(circle, var(--red) 0 45%, transparent 47%);
}

.handheld-art {
  height: 124px;
  width: 70px;
  transform: rotate(-4deg);
  background: #202830;
}

.ecu-art {
  width: 142px;
  height: 86px;
  margin-top: 24px;
  background: linear-gradient(145deg, #565b60, #1f2429);
  border-radius: 8px;
  transform: skew(-10deg) rotate(-8deg);
  box-shadow: inset 0 0 0 3px #9a9da0;
}

.ecu-art::before {
  content: "ECU";
  position: absolute;
  inset: 27px 42px;
  display: grid;
  place-items: center;
  color: #111;
  background: #c7aa65;
  font-weight: 900;
  font-size: 12px;
}

.kess-art {
  width: 142px;
  height: 78px;
  margin-top: 24px;
  border: 10px solid #15191e;
  border-radius: 8px;
  background: linear-gradient(130deg, #111 0 60%, #2f0709 60%);
}

.kess-art::before {
  content: "KESS";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  font-style: italic;
  font-weight: 900;
}

.category-card h3,
.product-card h3 {
  font-family: "Inter", Arial, sans-serif;
  margin: 0;
  color: #111;
  font-size: 15px;
  line-height: 1.25;
}

.category-card h3 {
  min-height: 46px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  color: #11151b;
  font-size: 15px;
  line-height: 1.24;
}

.category-card h3::after {
  content: "";
  display: none;
}

.category-card p {
  min-height: 42px;
  margin: 10px 4px 18px;
  color: #64707d;
  font-size: 12.5px;
  line-height: 1.5;
}

.category-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  width: 100%;
  color: #fff;
  margin: auto 0 0;
  border-radius: 7px;
  background: var(--red);
  font-size: 12.5px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(237, 16, 27, 0.24);
  transition: background 0.2s ease, transform 0.2s ease;
}

.category-card a:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.category-card a span {
  width: auto;
  height: auto;
  display: inline;
  color: #fff;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.featured-title {
  margin-top: 42px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.product-card {
  min-height: 296px;
  padding: 18px 12px 20px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(17, 21, 27, 0.035), transparent 38%),
    #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card .product-photo {
  max-width: 150px;
  height: 112px;
  margin-bottom: 10px;
}

.product-card .product-art {
  transform: scale(0.82);
  margin-bottom: 0;
}

.product-card p {
  margin: 5px 0 12px;
  color: var(--muted);
  font-size: 12px;
}

.product-card strong {
  display: block;
  margin-bottom: 16px;
  font-size: 16px;
}

.product-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  min-width: 116px;
  color: #111;
  border: 1px solid #8a9299;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.product-card a:hover {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0 104px;
  background:
    radial-gradient(circle at 12% 16%, rgba(237, 16, 27, 0.1), transparent 28%),
    radial-gradient(circle at 88% 76%, rgba(15, 23, 42, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 52%, #eef3f8 100%);
  isolation: isolate;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.testimonials-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 0;
  width: min(1180px, calc(100% - 48px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(237, 16, 27, 0.36), transparent);
  transform: translateX(-50%);
}

.testimonials-section > .container {
  position: relative;
  z-index: 1;
}

.testimonials-section .section-title h2 {
  color: var(--ink);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1.18fr repeat(2, minmax(0, 0.91fr));
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(237, 16, 27, 0.045), transparent 34%),
    #fff;
  box-shadow: 0 24px 62px rgba(15, 23, 42, 0.1);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), rgba(237, 16, 27, 0));
}

.testimonial-card::after {
  content: "\"";
  position: absolute;
  right: 22px;
  top: 10px;
  color: rgba(237, 16, 27, 0.12);
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-7px);
  border-color: rgba(237, 16, 27, 0.32);
  box-shadow: 0 32px 76px rgba(15, 23, 42, 0.15);
}

.featured-testimonial {
  background:
    radial-gradient(circle at 12% 0%, rgba(237, 16, 27, 0.12), transparent 34%),
    linear-gradient(145deg, #ffffff, #f8fafc);
}

.rating {
  position: relative;
  z-index: 1;
  color: #ffcc4d;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 22px;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #344052;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 500;
}

.featured-testimonial p {
  font-size: 18px;
}

.testimonial-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 28px;
}

.testimonial-author span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #fff;
  border: 1px solid rgba(237, 16, 27, 0.62);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(237, 16, 27, 0.95), rgba(186, 7, 16, 0.95));
  font-size: 14px;
  font-weight: 900;
}

.testimonial-author strong,
.testimonial-author small {
  display: block;
}

.testimonial-author strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.testimonial-author small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.testimonial-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.testimonial-summary div {
  min-height: 106px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.testimonial-summary strong {
  color: var(--red);
  font-size: 30px;
  line-height: 1;
}

.testimonial-summary span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.center-action {
  text-align: center;
  margin-top: 42px;
}

.btn-light-outline {
  color: var(--red);
  border-color: var(--red);
  background: #fff;
}

.services-strip {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  isolation: isolate;
  background: #020609 url("home/service.png") center / cover no-repeat;
}

.services-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 6, 9, 0.96) 0%, rgba(2, 6, 9, 0.84) 48%, rgba(2, 6, 9, 0.22) 74%, rgba(2, 6, 9, 0.08) 100%),
    radial-gradient(circle at 72% 35%, rgba(237, 16, 27, 0.16), transparent 28%);
  z-index: 0;
}

.services-strip::after {
  z-index: 0;
  opacity: 0.5;
}

.service-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(360px, 0.34fr);
  gap: 52px;
  align-items: center;
}

.service-content h2 {
  margin-bottom: 24px;
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 0.4px;
}

.service-content {
  max-width: 760px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 720px;
}

.service-cards article {
  position: relative;
  min-height: 176px;
  padding: 22px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(2, 8, 12, 0.64);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.service-cards article::before {
  content: "";
  position: absolute;
  left: 86px;
  top: 42px;
  width: 88px;
  height: 2px;
  background: linear-gradient(90deg, var(--red), transparent);
}

.service-cards article:hover {
  transform: translateY(-6px);
  border-color: rgba(237, 16, 27, 0.5);
  background: rgba(7, 13, 18, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 26px 56px rgba(0, 0, 0, 0.34);
}

.service-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--red);
  border: 1px solid rgba(237, 16, 27, 0.42);
  border-radius: 14px;
  background: rgba(237, 16, 27, 0.075);
}

.service-icon svg {
  width: 34px;
  height: 34px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(237, 16, 27, 0.22));
}

.service-cards h3 {
  font-size: 17px;
  line-height: 1.25;
  margin-bottom: 10px;
  max-width: 220px;
}

.service-cards p {
  max-width: 270px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.65;
}

.mechanic-visual {
  display: none;
}

.hood {
  position: absolute;
  inset: 25px 0 80px;
  background: linear-gradient(135deg, #22282e, #030405);
  border-radius: 26px 0 0 120px;
  transform: skew(-18deg);
}

.person {
  position: absolute;
  right: 42px;
  top: 18px;
  width: 110px;
  height: 170px;
  border-radius: 56px 56px 22px 22px;
  background: linear-gradient(#2e363d 0 32%, #0c1115 32%);
}

.person::before {
  content: "";
  position: absolute;
  top: -22px;
  left: 29px;
  width: 48px;
  height: 48px;
  background: #bf8060;
  border-radius: 50%;
}

.scan-tool {
  position: absolute;
  right: 145px;
  bottom: 42px;
  width: 98px;
  height: 66px;
  border: 10px solid #171c21;
  border-radius: 10px;
  background: linear-gradient(145deg, #17324c, #07111f);
}

.scan-tool::before {
  content: "";
  position: absolute;
  inset: 10px;
  background: linear-gradient(90deg, #f33, #f8a32e, #1fa3c1);
  border-radius: 3px;
}

.credentials {
  position: relative;
  padding: 76px 0 84px;
  background:
    radial-gradient(circle at 50% 0%, rgba(237, 16, 27, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
}

.credential-grid div {
  position: relative;
  min-height: 138px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 26px 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(237, 16, 27, 0.035), transparent 42%),
    #fff;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.09);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.credential-grid div::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--red);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.credential-grid div:hover::before {
  opacity: 1;
}

.credential-grid span {
  color: #4a5563;
  font-size: 14px;
  font-weight: 700;
}

.credential-grid strong {
  color: #111;
  margin-top: 8px;
  font-size: 21px;
  line-height: 1.2;
}

.badge-round {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  color: #2f6da6 !important;
  border: 5px solid #2f6da6;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fff, 0 0 0 1px rgba(47, 109, 166, 0.28);
}

.badge-soft {
  position: relative;
  padding-top: 34px;
}

.badge-soft::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 58px;
  height: 20px;
  background:
    radial-gradient(circle at 18px 10px, #2f6da6 0 5px, transparent 6px),
    radial-gradient(circle at 40px 10px, #2f6da6 0 5px, transparent 6px),
    linear-gradient(#9fb2c6, #9fb2c6) center / 24px 2px no-repeat;
  transform: translateX(-50%);
}

.numbers {
  position: relative;
  padding: 34px 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(237, 16, 27, 0.2), transparent 28%),
    linear-gradient(90deg, #03060a 0%, #070d14 50%, #03060a 100%);
  isolation: isolate;
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.number-grid div {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  min-height: 88px;
}

.number-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--red);
  border: 1.5px solid rgba(237, 16, 27, 0.8);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(237, 16, 27, 0.12), rgba(237, 16, 27, 0.03));
  box-shadow: 0 10px 22px rgba(237, 16, 27, 0.12);
  flex: 0 0 auto;
}

.number-icon svg {
  width: 25px;
  height: 25px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.number-grid strong {
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.number-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.2;
}

.number-grid div:hover {
  transform: translateY(-2px);
}

.cta {
  position: relative;
  overflow: hidden;
  padding: 92px 0 96px;
  isolation: isolate;
  background: #020609 url("home/cta.png") center / cover no-repeat;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 48%, rgba(237, 16, 27, 0.14), transparent 28%),
    linear-gradient(90deg, rgba(2, 6, 9, 0.9) 0%, rgba(2, 6, 9, 0.72) 40%, rgba(2, 6, 9, 0.22) 100%);
  z-index: 0;
}

.cta::after {
  opacity: 0.42;
}

.cta-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  min-height: 110px;
}

.cta h2 {
  color: #fff;
  max-width: 620px;
  font-size: 38px;
  line-height: 1.08;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
}

.cta p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
}

.cta-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.newsletter {
  position: relative;
  padding: 76px 0;
  background:
    radial-gradient(circle at 14% 50%, rgba(237, 16, 27, 0.055), transparent 28%),
    linear-gradient(180deg, #ffffff, #f7f9fb);
  box-shadow: inset 0 1px 0 var(--line);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 52px;
  align-items: center;
  padding: 36px 42px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(237, 16, 27, 0.045), transparent 38%),
    #fff;
  box-shadow: 0 24px 62px rgba(15, 23, 42, 0.1);
}

.newsletter h2 {
  font-size: 24px;
}

.newsletter p {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.newsletter form {
  display: grid;
  grid-template-columns: 1fr 132px;
  gap: 10px;
}

.newsletter input {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 18px;
  font: inherit;
  background: #f9fafb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.newsletter input:focus {
  outline: 0;
  border-color: rgba(237, 16, 27, 0.55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(237, 16, 27, 0.09);
}

.newsletter button {
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: var(--red);
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(237, 16, 27, 0.26);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.newsletter button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(237, 16, 27, 0.32);
}

.site-footer {
  color: #fff;
  background:
    radial-gradient(circle at 8% 10%, rgba(237, 16, 27, 0.24), transparent 28%),
    radial-gradient(circle at 54% 2%, rgba(0, 113, 184, 0.18), transparent 34%),
    radial-gradient(circle at 88% 58%, rgba(255, 90, 31, 0.12), transparent 28%),
    linear-gradient(135deg, #03070c 0%, #071018 48%, #020405 100%);
}

.site-footer::before {
  content: "";
  display: block;
  height: 8px;
  background: linear-gradient(90deg, #004a99 0%, #244aaf 28%, #7d2f82 55%, #ed101b 78%, #ff5a1f 100%);
}

.footer-grid {
  display: grid;
  /* Four sections only — give Our Products + Contact room so 2-col lists read cleanly */
  grid-template-columns:
    minmax(220px, 1.35fr)
    minmax(108px, 0.58fr)
    minmax(min(100%, 420px), 2fr)
    minmax(200px, 1.12fr);
  gap: clamp(28px, 3.2vw, 48px);
  padding: 70px 0 52px;
  align-items: start;
}

/* Two-column layout for long "Our Products" link lists (footer column 3) */
.footer-grid > div:nth-child(3) {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  column-gap: clamp(14px, 2.2vw, 28px);
  row-gap: 4px;
  align-content: start;
}

.footer-grid > div:nth-child(3) > h3 {
  grid-column: 1 / -1;
}

.footer-grid > div:nth-child(3) > a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 5px 8px;
  border-radius: 6px;
  line-height: 1.45;
  hyphens: none;
  overflow-wrap: break-word;
  word-break: normal;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-grid > div:nth-child(3) > a:hover {
  color: #eaf7ff;
  background: linear-gradient(90deg, rgba(0, 113, 184, 0.18), rgba(237, 16, 27, 0.11));
  transform: translateX(2px);
}

.footer-brand .brand-mark {
  width: 34px;
  height: 34px;
  font-size: 24px;
}

.footer-brand .brand-text {
  font-size: 13px;
}

.footer-brand {
  width: auto;
  height: auto;
  max-width: 100%;
  overflow: visible;
}

.footer-brand img {
  width: auto;
  height: clamp(56px, 6vw, 68px);
  max-width: min(280px, 95%);
  object-fit: contain;
  object-position: left center;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
}

/* Contact block: long email / URL wrap at word boundaries, not mid-token */
.footer-grid > div:nth-child(4) p,
.footer-grid > div:nth-child(4) a {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: none;
}

.footer-grid > div:nth-child(4) a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 5px;
}

/* Footer list icons (SVG masks — no extra libraries) */
.footer-grid > div:nth-child(2) a {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-grid > div:nth-child(2) a::before,
.footer-grid > div:nth-child(3) > a::before,
.footer-grid > div:nth-child(4) p::before,
.footer-grid > div:nth-child(4) a::before {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 3px;
  background: rgba(255, 255, 255, 0.55);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background 0.2s ease;
}

.footer-grid > div:nth-child(2) a:hover::before,
.footer-grid > div:nth-child(3) > a:hover::before,
.footer-grid > div:nth-child(4) a:hover::before {
  background: #ff4d55;
}

.footer-grid > div:nth-child(2) a::before {
  background: #7ec8ff;
}

.footer-grid > div:nth-child(3) > a::before {
  background: #9fd6ff;
}

.footer-grid > div:nth-child(4) p::before,
.footer-grid > div:nth-child(4) a::before {
  background: #ffb067;
}

.footer-grid > div:nth-child(4) p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 12px;
}

.footer-grid > div:nth-child(4) p::before {
  margin-top: 2px;
}

/* Quick Links — home, about, catalogue, contact */
.footer-grid > div:nth-child(2) a:nth-of-type(1)::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z'/%3E%3C/svg%3E");
}

.footer-grid > div:nth-child(2) a:nth-of-type(2)::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 12a4 4 0 100-8 4 4 0 000 8zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 12a4 4 0 100-8 4 4 0 000 8zm0 2c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z'/%3E%3C/svg%3E");
}

.footer-grid > div:nth-child(2) a:nth-of-type(3)::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z'/%3E%3C/svg%3E");
}

.footer-grid > div:nth-child(2) a:nth-of-type(4)::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M20 4H4c-1.1 0-1.99.9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M20 4H4c-1.1 0-1.99.9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

/* Our Products — wrench */
.footer-grid > div:nth-child(3) > a::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M22.7 2.3a3.5 3.5 0 00-5 0l-2 2 .5.5L8.5 12.5a4.5 4.5 0 106.4 6.4l7.7-7.7.5.5 2-2a3.5 3.5 0 000-5l-1.4 1.4a1 1 0 11-1.4-1.4l1.4-1.4zM7 18a2.5 2.5 0 113.5-3.5A2.5 2.5 0 017 18z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M22.7 2.3a3.5 3.5 0 00-5 0l-2 2 .5.5L8.5 12.5a4.5 4.5 0 106.4 6.4l7.7-7.7.5.5 2-2a3.5 3.5 0 000-5l-1.4 1.4a1 1 0 11-1.4-1.4l1.4-1.4zM7 18a2.5 2.5 0 113.5-3.5A2.5 2.5 0 017 18z'/%3E%3C/svg%3E");
}

/* Contact — address, phone, email, web */
.footer-grid > div:nth-child(4) p::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 4a4 4 0 100 8 4 4 0 000-8z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 4a4 4 0 100 8 4 4 0 000-8z'/%3E%3C/svg%3E");
}

.footer-grid > div:nth-child(4) a[href^="tel:"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.2 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C9.4 21 3 14.6 3 6.5 3 5.9 3.4 5.5 4 5.5h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.2 1.1l-2.3 2.4z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.2 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C9.4 21 3 14.6 3 6.5 3 5.9 3.4 5.5 4 5.5h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.2 1.1l-2.3 2.4z'/%3E%3C/svg%3E");
}

.footer-grid > div:nth-child(4) a[href^="mailto:"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M20 4H4c-1.1 0-1.99.9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M20 4H4c-1.1 0-1.99.9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.footer-grid > div:nth-child(4) a[href^="https://"]::before,
.footer-grid > div:nth-child(4) a[href^="http://"]::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 2a10 10 0 100 20 10 10 0 000-20zm6.9 8h-2.1A12 12 0 006 17.1V19a8 8 0 0112.9-9zm-15.8 2h2.1A12 12 0 0018 6.9V5a8 8 0 01-12.9 9zM12 4c1.5 0 2.9.4 4.1 1.1A12 12 0 007.9 17.9 8 8 0 0112 4zm0 16c-1.5 0-2.9-.4-4.1-1.1A12 12 0 0016.1 6.1 8 8 0 0112 20z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M12 2a10 10 0 100 20 10 10 0 000-20zm6.9 8h-2.1A12 12 0 006 17.1V19a8 8 0 0112.9-9zm-15.8 2h2.1A12 12 0 0018 6.9V5a8 8 0 01-12.9 9zM12 4c1.5 0 2.9.4 4.1 1.1A12 12 0 007.9 17.9 8 8 0 0112 4zm0 16c-1.5 0-2.9-.4-4.1-1.1A12 12 0 0016.1 6.1 8 8 0 0112 20z'/%3E%3C/svg%3E");
}

.site-footer h3 {
  position: relative;
  margin: 0 0 18px;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.site-footer h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 10px;
  background: var(--red);
  border-radius: 99px;
}

.site-footer a {
  position: relative;
  display: table;
  margin-bottom: 5px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.site-footer a:hover {
  color: #fff;
  transform: translateX(5px);
}

.footer-grid > div:nth-child(2) a,
.footer-grid > div:nth-child(3) > a,
.footer-grid > div:nth-child(4) a {
  display: flex;
}

.footer-grid > div:first-child p {
  max-width: 360px;
  margin: 18px 0 20px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--red);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(237, 16, 27, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.socials a[aria-label="Facebook"] {
  background: #1877f2;
  box-shadow: 0 12px 24px rgba(24, 119, 242, 0.28);
}

.socials a[aria-label="Instagram"] {
  background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 72%, #515bd4 100%);
  box-shadow: 0 12px 24px rgba(221, 42, 123, 0.3);
}

.socials a:hover {
  transform: translateY(-4px);
}

.site-footer .socials a:hover {
  transform: translateY(-4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.18);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  padding: 18px 0;
}

.footer-bottom div div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}

/* Home page visual polish */
.hero {
  min-height: 730px;
}

.hero-grid {
  min-height: 730px;
  padding-top: 150px;
  padding-bottom: 135px;
}

.hero h1 {
  font-size: clamp(42px, 4vw, 62px);
  line-height: 1.03;
}

.hero-lead {
  max-width: 520px;
  margin-top: 22px;
  margin-bottom: 26px;
  font-size: 17px;
}

.trust-row div {
  min-height: 96px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(4, 8, 12, 0.42);
}

.about-home,
.products-section,
.featured-products-section,
.credentials,
.newsletter {
  padding-top: 104px;
  padding-bottom: 106px;
}

.section-title {
  margin-bottom: 58px;
}

.section-title h2 {
  font-size: 30px;
  letter-spacing: 0;
}

.numbers {
  padding: 52px 0;
  background:
    radial-gradient(circle at 0% 50%, rgba(237, 16, 27, 0.28), transparent 30%),
    radial-gradient(circle at 100% 50%, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(90deg, #110006 0%, #03070c 42%, #050a10 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.number-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.number-grid div {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  column-gap: 14px;
  align-items: center;
  min-height: 132px;
  padding: 22px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(5, 9, 14, 0.56);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.number-grid div:hover {
  transform: translateY(-6px);
  border-color: rgba(237, 16, 27, 0.5);
  background:
    linear-gradient(145deg, rgba(237, 16, 27, 0.17), rgba(255, 255, 255, 0.04)),
    rgba(5, 9, 14, 0.72);
}

.number-icon {
  grid-row: span 2;
  width: 52px;
  height: 52px;
  margin-top: 0;
  border-width: 1px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.12), transparent 42%),
    rgba(237, 16, 27, 0.12);
  box-shadow: 0 14px 28px rgba(237, 16, 27, 0.18);
}

.number-icon svg {
  width: 25px;
  height: 25px;
}

.number-grid strong {
  grid-column: 2;
  min-width: 0;
  color: #fff;
  font-size: clamp(26px, 2vw, 32px);
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
}

.number-grid div > span:not(.number-icon) {
  grid-column: 2;
  max-width: 14ch;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.18;
}

.products-section {
  background:
    radial-gradient(circle at 10% 8%, rgba(237, 16, 27, 0.08), transparent 24%),
    radial-gradient(circle at 92% 20%, rgba(15, 23, 42, 0.1), transparent 30%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 52%, #eef3f8 100%);
}

.category-grid {
  gap: 26px;
}

.category-card {
  min-height: 382px;
  padding: 24px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(237, 16, 27, 0.04), transparent 32%),
    #fff;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.09);
}

.category-card::before {
  height: 5px;
}

.product-photo {
  height: 196px;
  padding: 18px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 45%, rgba(237, 16, 27, 0.08), transparent 58%),
    linear-gradient(180deg, #ffffff, #eef3f8);
}

.category-card h3 {
  min-height: 42px;
  font-size: 16px;
}

.category-card p {
  font-size: 13px;
}

.featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  max-width: 1080px;
  margin: 0 auto;
}

.product-card {
  min-height: 384px;
  padding: 26px 22px 24px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(237, 16, 27, 0.04), transparent 34%),
    #fff;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.09);
}

.product-card .product-photo {
  max-width: none;
  height: 184px;
  margin-bottom: 18px;
}

.product-card h3 {
  font-size: 17px;
}

.product-card p {
  font-size: 13px;
}

.product-card strong {
  color: var(--red);
  font-size: 20px;
}

.product-card a {
  min-height: 42px;
  min-width: 132px;
  border-color: rgba(237, 16, 27, 0.45);
  color: var(--red);
}

.newsletter-grid {
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 20%, rgba(237, 16, 27, 0.12), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 58%, #eef3f8 100%);
  box-shadow: 0 30px 74px rgba(15, 23, 42, 0.12);
}

.newsletter h2 {
  font-size: 34px;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 18px;
  }

  .hero-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-grid {
    min-height: 0;
  }

  .hero-device {
    order: -1;
  }

  .why-grid,
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    max-width: 760px;
    margin: 0 auto;
  }

  .featured-grid,
  .service-cards,
  .credential-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .number-grid {
    grid-template-columns: repeat(3, minmax(190px, 1fr));
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: rgba(5, 6, 7, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 10px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
  }

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

  .main-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 12px 14px;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-dropdown {
    display: block;
    width: 100%;
  }

  .nav-drop-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 46px;
    padding: 12px 14px;
    text-align: left;
  }

  .nav-drop-toggle::after {
    content: "+";
    position: static;
    width: auto;
    height: auto;
    background: none;
    color: rgba(255, 255, 255, 0.72);
    transform: none;
    display: block;
    font-size: 20px;
    line-height: 1;
  }

  .dropdown-menu {
    position: static;
    width: 100%;
    max-height: 54vh;
    display: none;
    grid-template-columns: 1fr;
    overflow-y: auto;
    padding: 8px;
    margin: 0 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown.open .dropdown-menu {
    display: grid;
  }

  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu,
  .nav-dropdown.open .dropdown-menu {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown.open .nav-drop-toggle::after {
    content: "-";
  }

  .dropdown-menu a {
    min-height: 40px;
    padding: 9px 10px;
    border-radius: 8px;
  }

  .whatsapp-btn {
    display: none;
  }

  .hero-grid {
    min-height: 0;
    padding: 88px 0 90px;
  }

  .hero-slide {
    object-position: 62% center;
  }

  .hero-device {
    order: 0;
  }

  .hero-image-placeholder {
    transform: none;
  }

  .about-home,
  .products-section,
  .featured-products-section,
  .testimonials-section,
  .services-strip,
  .credentials,
  .newsletter {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .why {
    padding-top: 62px;
    padding-bottom: 66px;
  }

  .cta {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .hero h1 {
    font-size: 40px;
    white-space: normal;
  }

  .hero-lead {
    font-size: 16px;
  }

  .trust-row,
  .why-grid,
  .category-grid,
  .featured-grid,
  .testimonial-grid,
  .testimonial-summary,
  .service-grid,
  .service-cards,
  .credential-grid,
  .number-grid,
  .newsletter-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 0;
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid article {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    min-height: 0;
  }

  .testimonial-card {
    min-height: 0;
    padding: 26px;
  }

  .about-grid {
    gap: 34px;
  }

  .cta-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta {
    background-position: 64% center;
  }

  .cta-actions {
    width: 100%;
  }

  .newsletter form {
    grid-template-columns: 1fr;
  }

  .newsletter-grid {
    padding: 24px;
  }
}

@media (max-width: 540px) {
  .brand-text {
    font-size: 14px;
  }

  .hero-device {
    min-height: 230px;
  }

  .product-photo {
    height: 170px;
  }

  .category-card h3 {
    padding-left: 8px;
    padding-right: 8px;
  }

  .category-card p,
  .category-card a {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-slide {
    object-position: 68% center;
  }

  .hero-image-placeholder {
    border-radius: 20px;
    padding: 10px;
  }

  .placeholder-frame {
    border-radius: 14px;
  }

  .placeholder-frame span {
    font-size: 16px;
  }

  .tablet {
    border-width: 14px;
    border-radius: 22px;
    transform: rotateZ(2deg);
  }

  .tablet-screen {
    padding: 14px;
  }

  .screen-grid {
    gap: 8px;
  }

  .screen-grid span {
    min-height: 42px;
    font-size: 9px;
  }

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

  .hero-copy::before,
  .hero-copy::after {
    display: none;
  }

  .section-title {
    margin-bottom: 34px;
  }

  .section-title h2,
  .service-content h2 {
    font-size: 17px;
  }

  .about-home,
  .products-section,
  .featured-products-section,
  .testimonials-section,
  .services-strip,
  .credentials,
  .newsletter {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  h2,
  .cta h2 {
    font-size: 28px;
  }

  .about-image-card,
  .about-image-card img {
    min-height: 220px;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }

  .site-header .brand {
    min-width: 0;
    max-width: min(240px, 58vw);
    padding: 2px 0;
  }

  .site-header .brand img {
    height: clamp(40px, 11vw, 48px);
  }

  .footer-bottom .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* —— Inquiry modal (header) —— */
body.inquiry-modal-open {
  overflow: hidden;
}

button.inquiry-open-btn {
  font: inherit;
  cursor: pointer;
}

.mobile-inquiry-open-btn {
  display: none;
}

.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.inquiry-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.inquiry-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 8, 0.72);
  backdrop-filter: blur(6px);
}

.inquiry-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: min(90vh, 640px);
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 28px 26px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(160deg, rgba(18, 22, 30, 0.98) 0%, rgba(8, 10, 14, 0.99) 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(237, 16, 27, 0.12);
  color: #fff;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.24s ease;
}

.inquiry-modal.is-open .inquiry-modal-dialog {
  transform: translateY(0) scale(1);
}

.inquiry-modal-dialog::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.inquiry-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.inquiry-modal-close:hover,
.inquiry-modal-close:focus-visible {
  background: rgba(237, 16, 27, 0.2);
  border-color: rgba(237, 16, 27, 0.45);
  outline: none;
}

.inquiry-modal-head {
  margin: 0 40px 6px 0;
}

.inquiry-modal-head h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.inquiry-modal-head p {
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.inquiry-form {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.inquiry-form label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.inquiry-form select {
  cursor: pointer;
  appearance: none;
  padding-right: 40px;
  background-color: rgba(255, 255, 255, 0.06);
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.72) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72) 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.inquiry-form select option {
  background: #12151c;
  color: #f1f5f9;
}

.inquiry-form input::placeholder,
.inquiry-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: rgba(237, 16, 27, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.inquiry-form select:focus {
  border-color: rgba(237, 16, 27, 0.55);
  background-color: rgba(255, 255, 255, 0.08);
}

.inquiry-form textarea {
  min-height: 100px;
  resize: vertical;
}

.inquiry-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.inquiry-submit {
  flex: 1;
  min-width: 140px;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  background: var(--red);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(237, 16, 27, 0.35);
  transition: background 0.2s ease, transform 0.2s ease;
}

.inquiry-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.inquiry-modal-wa-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(57, 213, 105, 0.45);
  background: rgba(57, 213, 105, 0.1);
  color: #7ef0a9;
  font-size: 13px;
  font-weight: 800;
}

.inquiry-modal-wa-link:hover {
  border-color: rgba(57, 213, 105, 0.75);
  background: rgba(57, 213, 105, 0.16);
  color: #fff;
}

.inquiry-modal-note {
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.52);
}

.inquiry-modal-success {
  display: none;
  padding: 8px 0 0;
}

.inquiry-modal-success.is-visible {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.inquiry-modal-success p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.inquiry-modal-done {
  padding: 11px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
}

.inquiry-modal-done:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* Responsive hardening */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body {
  overflow-wrap: break-word;
}

.main-nav,
.dropdown-menu,
.hero-copy,
.about-grid,
.category-card,
.product-card,
.testimonial-card,
.service-cards article,
.credential-grid > *,
.newsletter-grid,
.footer-grid > * {
  min-width: 0;
}

.site-footer a,
.site-footer p {
  overflow-wrap: break-word;
  word-break: normal;
}

.category-card h3,
.category-card p,
.testimonial-card p,
.credential-grid strong {
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .hero-copy {
    transform: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
  }

  .nav-wrap {
    gap: 12px;
  }

  .site-header .inquiry-open-btn {
    display: none;
  }

  .main-nav .mobile-inquiry-open-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    margin-top: 8px;
    padding: 0 16px;
    border: 1px solid rgba(237, 16, 27, 0.8);
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(180deg, #ed101b, #b40710);
    box-shadow: 0 16px 30px rgba(237, 16, 27, 0.24);
    font-size: 15px;
    font-weight: 900;
  }

  .main-nav .mobile-inquiry-open-btn svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
  }

  .main-nav {
    max-height: calc(100vh - 86px);
    overflow-y: auto;
  }

  .dropdown-menu {
    max-height: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg::before {
    background:
      radial-gradient(circle at 42% 26%, rgba(237, 16, 27, 0.2), transparent 32%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.84) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.28));
  }

  .hero-grid {
    display: flex;
    min-height: auto;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 96px 0 74px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    text-align: left;
  }

  .eyebrow {
    justify-content: flex-start;
    max-width: 100%;
    margin-inline: auto;
    font-size: 10px;
  }

  .eyebrow::before {
    width: 22px;
  }

  .hero h1 {
    max-width: 620px;
    margin-inline: 0;
    font-size: 40px;
    line-height: 1.08;
    white-space: normal;
  }

  .hero h1::after {
    margin-inline: 0;
  }

  .hero-lead {
    max-width: 540px;
    margin-inline: 0;
    font-size: 15px;
  }

  .hero-actions {
    justify-content: flex-start;
    margin-inline: 0;
  }

  .trust-row {
    max-width: 560px;
    margin-inline: 0;
  }

  .trust-row div {
    text-align: left;
  }

  .trust-row div,
  .number-grid div,
  .credential-grid > div {
    min-height: 0;
  }

  .newsletter-grid {
    gap: 24px;
  }

  .footer-grid {
    gap: 30px;
  }
}

@media (max-width: 540px) {
  .container,
  .site-header .container,
  .site-footer .container {
    width: min(100% - 24px, 1180px);
  }

  .nav-wrap {
    min-height: 68px;
  }

  .main-nav {
    left: 12px;
    right: 12px;
    top: 68px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding: 56px 0 34px;
  }

  .hero-copy {
    width: 100%;
    padding-left: 10px;
  }

  .hero h1 {
    font-family: "Inter", Arial, sans-serif;
    max-width: none;
    font-size: clamp(27px, 7.8vw, 30px);
    line-height: 1.06;
    font-weight: 900;
    white-space: nowrap;
  }

  .eyebrow {
    display: flex;
    font-size: 9px;
    line-height: 1.45;
    text-align: left;
    white-space: normal;
  }

  .hero-lead {
    max-width: 335px;
    font-size: 14px;
    line-height: 1.55;
  }

  .about-heading {
    width: 100%;
    max-width: none;
    font-family: "Inter", Arial, sans-serif;
    font-size: clamp(22px, 6.25vw, 30px);
    line-height: 1.16;
    font-weight: 900;
    letter-spacing: 0;
  }

  .about-heading-line,
  .about-heading-line + .about-heading-line {
    display: block;
    white-space: nowrap;
  }

  .about-heading-line:first-child::after {
    content: none;
  }

  .about-home {
    padding-top: 44px;
    padding-bottom: 44px;
    background:
      radial-gradient(circle at 88% 8%, rgba(237, 16, 27, 0.09), transparent 30%),
      linear-gradient(90deg, rgba(237, 16, 27, 0.045) 0 1px, transparent 1px 100%),
      linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
    background-size: auto, 50px 50px, auto;
  }

  .about-grid {
    gap: 28px;
  }

  .about-grid > div:first-child {
    padding: 0;
  }

  .about-home .eyebrow {
    margin-bottom: 12px;
    color: #d70b15;
  }

  .about-grid p:not(.eyebrow) {
    max-width: none;
    margin-top: 14px;
    color: #425063;
    font-size: 14px;
    line-height: 1.62;
  }

  .check-list {
    gap: 9px;
    margin: 20px 0 22px;
    font-size: 13px;
    line-height: 1.35;
  }

  .check-list li {
    display: grid;
    grid-template-columns: 16px 1fr;
    gap: 10px;
    align-items: start;
    padding: 10px 12px;
    border: 1px solid rgba(237, 16, 27, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.045);
  }

  .check-list li::before {
    width: 14px;
    height: 14px;
    margin: 1px 0 0;
  }

  .about-home .btn {
    min-height: 46px;
    border-radius: 8px;
    font-size: 13px;
    box-shadow: 0 16px 34px rgba(237, 16, 27, 0.28);
  }

  .about-image-card {
    min-height: 0;
    border-radius: 14px;
  }

  .about-image-card img {
    min-height: 260px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 16px;
  }

  .hero .btn {
    width: auto;
    min-height: 44px;
    padding: 0 12px;
    font-size: 13px;
  }

  .trust-row {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 16px;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    min-width: 0;
  }

  .trust-row div,
  .about-highlight-card,
  .number-grid div {
    padding-inline: 14px;
  }

  .trust-row div {
    grid-template-columns: 34px 1fr;
    column-gap: 12px;
    min-height: 54px;
    padding-block: 9px;
    border-radius: 12px;
  }

  .trust-icon {
    width: 32px;
    height: 32px;
    font-size: 10px;
  }

  .trust-row strong {
    font-size: 13px;
  }

  .trust-row small {
    font-size: 11px;
  }

  .numbers {
    padding: 42px 0 48px;
    background:
      radial-gradient(circle at 0% 14%, rgba(237, 16, 27, 0.28), transparent 32%),
      radial-gradient(circle at 100% 82%, rgba(0, 113, 184, 0.12), transparent 30%),
      linear-gradient(180deg, #05090d 0%, #070c12 56%, #030506 100%);
  }

  .number-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .number-grid div {
    grid-template-columns: 42px 1fr;
    column-gap: 12px;
    min-height: 104px;
    padding: 16px 14px;
    border-radius: 14px;
  }

  .number-grid div:first-child {
    grid-column: 1 / -1;
    min-height: 112px;
  }

  .number-icon {
    width: 42px;
    height: 42px;
  }

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

  .number-grid strong {
    font-size: 28px;
  }

  .number-grid div:first-child strong {
    font-size: 34px;
  }

  .number-grid div > span:not(.number-icon) {
    max-width: none;
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.2;
  }

  .site-footer::before {
    height: 6px;
  }

  .footer-grid {
    gap: 24px;
    padding: 42px 0 30px;
  }

  .footer-grid > div {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  .footer-grid > div:first-child {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }

  .footer-brand img {
    height: 54px;
    margin-inline: auto;
  }

  .footer-grid > div:first-child p {
    max-width: 310px;
    margin: 14px auto 18px;
    font-size: 13px;
    line-height: 1.6;
  }

  .socials {
    justify-content: center;
  }

  .site-footer h3 {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .site-footer h3::after {
    width: 42px;
    margin-top: 8px;
  }

  .footer-grid > div:nth-child(2) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .footer-grid > div:nth-child(2) h3,
  .footer-grid > div:nth-child(4) h3 {
    grid-column: 1 / -1;
  }

  .footer-grid > div:nth-child(2) a {
    min-height: 48px;
    align-items: center;
    margin: 0;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.84);
    line-height: 1.25;
  }

  .footer-grid > div:nth-child(2) a::before {
    width: 20px;
    height: 20px;
    margin-top: 0;
    background: #80caff;
  }

  .footer-grid > div:nth-child(3) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 8px;
  }

  .footer-grid > div:nth-child(3) > a {
    min-height: 42px;
    padding: 8px 8px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 12px;
    line-height: 1.35;
  }

  .footer-grid > div:nth-child(2) a,
  .footer-grid > div:nth-child(4) a,
  .footer-grid > div:nth-child(4) p {
    font-size: 13px;
  }

  .footer-grid > div:nth-child(4) {
    background:
      radial-gradient(circle at 0% 0%, rgba(255, 176, 103, 0.12), transparent 34%),
      rgba(255, 255, 255, 0.045);
  }

  .footer-grid > div:nth-child(4) p,
  .footer-grid > div:nth-child(4) a {
    align-items: center;
    gap: 12px;
    margin: 0;
    padding: 9px 0;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.5;
  }

  .footer-grid > div:nth-child(4) p::before,
  .footer-grid > div:nth-child(4) a::before {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin-top: 0;
    border-radius: 10px;
    background-color: #ffb067;
    background-size: 18px 18px;
    box-shadow: 0 10px 22px rgba(255, 176, 103, 0.16);
  }

  .footer-bottom {
    padding: 16px 0 22px;
  }

  .footer-bottom .container {
    gap: 12px;
    text-align: center;
  }

  .footer-bottom .container div {
    justify-content: center;
  }

  .services-strip {
    padding-top: 48px;
    padding-bottom: 52px;
    background-position: 58% center;
  }

  .services-strip::before {
    background:
      linear-gradient(180deg, rgba(2, 6, 9, 0.94) 0%, rgba(2, 6, 9, 0.9) 52%, rgba(2, 6, 9, 0.78) 100%),
      radial-gradient(circle at 18% 18%, rgba(237, 16, 27, 0.18), transparent 32%);
  }

  .service-content h2 {
    margin-bottom: 18px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 22px;
    line-height: 1.15;
    letter-spacing: 0;
  }

  .service-cards {
    gap: 12px;
  }

  .service-cards article {
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 14px;
    row-gap: 4px;
    align-items: start;
    min-height: 0;
    padding: 16px;
    border-radius: 14px;
  }

  .service-cards article::before {
    left: 78px;
    top: 30px;
    width: 64px;
    opacity: 0.85;
  }

  .service-icon {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 46px;
    height: 46px;
    margin: 0;
    border-radius: 13px;
  }

  .service-icon svg {
    width: 27px;
    height: 27px;
  }

  .service-cards h3 {
    grid-column: 2;
    margin: 0 0 7px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.25;
  }

  .service-cards p {
    grid-column: 2;
    margin: 0;
    max-width: none;
    font-size: 13px;
    line-height: 1.55;
  }

  .category-card,
  .product-card,
  .testimonial-card,
  .newsletter-grid {
    max-width: 100%;
  }

  .product-photo {
    width: 100%;
    object-fit: contain;
  }

  .newsletter-grid {
    padding: 20px 16px;
  }

  .footer-bottom .container div {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .inquiry-modal {
    padding: 12px;
  }

  .inquiry-modal-dialog {
    padding: 24px 18px 20px;
  }

  .inquiry-form-actions,
  .inquiry-submit,
  .inquiry-modal-wa-link {
    width: 100%;
  }

}
