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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(0.9rem, 0.85rem + 0.35vw, 1rem);
  font-weight: 400;
  line-height: 1.6;
  color: #0a1628;
  background: #ffffff;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

ul, ol {
  list-style: none;
}

img, video, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1200px) {
  .container {
    padding: 0 2.5rem;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes lineGrow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(232, 101, 26, 0.4);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(232, 101, 26, 0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.stagger-children .reveal:nth-child(1) {
  transition-delay: 0.08s;
}
.stagger-children .reveal:nth-child(2) {
  transition-delay: 0.16s;
}
.stagger-children .reveal:nth-child(3) {
  transition-delay: 0.24s;
}
.stagger-children .reveal:nth-child(4) {
  transition-delay: 0.32s;
}
.stagger-children .reveal:nth-child(5) {
  transition-delay: 0.4s;
}
.stagger-children .reveal:nth-child(6) {
  transition-delay: 0.48s;
}
.stagger-children .reveal:nth-child(7) {
  transition-delay: 0.56s;
}
.stagger-children .reveal:nth-child(8) {
  transition-delay: 0.64s;
}
.stagger-children .reveal:nth-child(9) {
  transition-delay: 0.72s;
}
.stagger-children .reveal:nth-child(10) {
  transition-delay: 0.8s;
}
.stagger-children .reveal:nth-child(11) {
  transition-delay: 0.88s;
}
.stagger-children .reveal:nth-child(12) {
  transition-delay: 0.96s;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 80px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0a1628;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-header.scrolled {
  height: 68px;
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.12);
}
.site-header.scrolled::before {
  opacity: 0.97;
}
.site-header.scrolled .header__inner {
  height: 68px;
}

.header__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
  z-index: 2;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (min-width: 1200px) {
  .header__inner {
    padding: 0 2.5rem;
  }
}

.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.scrolled .header__logo img {
  height: 32px;
}

.header__nav {
  display: none;
}
@media (min-width: 992px) {
  .header__nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
  }
}

.nav__link {
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #e8651a;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__link:hover, .nav__link.active {
  color: #ffffff;
}
.nav__link:hover::after, .nav__link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 3px;
}
.lang-switch__btn {
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.lang-switch__btn.active {
  background: #e8651a;
  color: #ffffff;
}
.lang-switch__btn:hover:not(.active) {
  color: #ffffff;
}

.search-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-toggle:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}
.search-toggle svg {
  width: 20px;
  height: 20px;
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}
.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: center;
}
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #0a1628;
  z-index: 200;
  padding: calc(80px + 2.5rem) 2.5rem 2.5rem;
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu .nav__link {
  display: block;
  font-size: clamp(1.15rem, 1rem + 0.75vw, 1.5rem);
  padding: 1rem 0;
  color: rgba(255, 255, 255, 0.6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu .nav__link:hover {
  color: #ffffff;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.6);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(4px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.hero {
  position: relative;
  min-height: calc(100vh - 220px);
  display: flex;
  align-items: center;
  background: #0a1628;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(138, 155, 181, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(138, 155, 181, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.5;
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(15, 33, 64, 0.7) 50%, rgba(10, 22, 40, 0.4) 100%);
  z-index: 2;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(80px + 6rem) 1.5rem 6rem;
  position: relative;
  z-index: 3;
}
@media (min-width: 1200px) {
  .hero__content {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  color: #e8651a;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero__tag::before {
  content: "";
  width: 32px;
  height: 1px;
  background: #e8651a;
}

.hero__title {
  font-size: clamp(3rem, 2rem + 5vw, 6rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.hero__title .accent {
  background: linear-gradient(135deg, #e8651a, #f07a35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.hero__subtitle {
  font-size: clamp(1.15rem, 1rem + 0.75vw, 1.5rem);
  color: #b8c5d6;
  font-weight: 300;
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.search-section {
  position: relative;
  z-index: 10;
  margin-top: -60px;
  padding-bottom: 2.5rem;
}

.search-panel {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem 4rem;
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.16), 0 0 0 1px rgba(10, 22, 40, 0.04);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 1.5rem;
  row-gap: 1rem;
  align-items: center;
}
@media (min-width: 992px) {
  .search-panel {
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto auto;
    padding: 2.5rem 4rem;
  }
}

.search-panel__icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8651a, #f07a35);
  border-radius: 8px;
  color: #ffffff;
  grid-row: 1;
}
.search-panel__icon svg {
  width: 24px;
  height: 24px;
}
@media (min-width: 992px) {
  .search-panel__icon {
    grid-row: 1/3;
    width: 56px;
    height: 56px;
  }
}

.search-panel__content {
  grid-row: 1;
}
@media (min-width: 992px) {
  .search-panel__content {
    grid-row: 1;
  }
}

.search-panel__title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.15rem, 1rem + 0.75vw, 1.5rem);
  font-weight: 700;
  color: #0a1628;
  line-height: 1.2;
}

.search-panel__desc {
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  color: #8a9bb5;
  margin-top: 2px;
  display: none;
}
@media (min-width: 768px) {
  .search-panel__desc {
    display: block;
  }
}

.search-panel__form {
  grid-column: 1/-1;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-panel__form:focus-within {
  border-color: #e8651a;
  box-shadow: 0 0 0 4px rgba(232, 101, 26, 0.1);
}
@media (min-width: 992px) {
  .search-panel__form {
    grid-column: 2/-1;
    grid-row: 1;
  }
}

.search-panel__input-wrap {
  flex: 1;
}
.search-panel__input-wrap input {
  width: 100%;
  padding: 14px 20px;
  font-size: clamp(0.9rem, 0.85rem + 0.35vw, 1rem);
  color: #0a1628;
  background: transparent;
}
.search-panel__input-wrap input::placeholder {
  color: #b8c5d6;
}

.search-panel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 28px;
  background: linear-gradient(135deg, #e8651a, #f07a35);
  color: #ffffff;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.search-panel__btn svg {
  width: 18px;
  height: 18px;
}
.search-panel__btn span {
  display: none;
}
@media (min-width: 768px) {
  .search-panel__btn span {
    display: inline;
  }
}
.search-panel__btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 24px rgba(232, 101, 26, 0.3);
}

.search-panel__tags {
  grid-column: 1/-1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 992px) {
  .search-panel__tags {
    grid-column: 2/-1;
  }
}
.search-panel__tags > span {
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  color: #8a9bb5;
  font-weight: 500;
}
.search-panel__tags a {
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  color: #8a9bb5;
  background: #f1f4f8;
  padding: 4px 12px;
  border-radius: 100px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.search-panel__tags a:hover {
  background: rgba(232, 101, 26, 0.15);
  color: #e8651a;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn:hover svg {
  transform: translateX(4px);
}

.btn--primary {
  background: linear-gradient(135deg, #e8651a, #f07a35);
  color: #ffffff;
  box-shadow: 0 4px 24px rgba(232, 101, 26, 0.3);
}
.btn--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #f07a35, #e8651a);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 101, 26, 0.4);
}
.btn--primary:hover::before {
  opacity: 1;
}
.btn--primary span {
  position: relative;
  z-index: 1;
}

.btn--outline {
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}
.btn--outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}
.hero__scroll-text {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 50%;
  background: #e8651a;
  animation: scrollLine 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scrollLine {
  0% {
    top: -50%;
  }
  100% {
    top: 150%;
  }
}
.hero__geometric {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0.08;
  pointer-events: none;
}
@media (min-width: 992px) {
  .hero__geometric {
    opacity: 0.12;
    right: 5%;
  }
}
.hero__geometric .geo-ring {
  width: 500px;
  height: 500px;
  border: 1px solid #e8651a;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero__geometric .geo-ring:nth-child(2) {
  width: 400px;
  height: 400px;
  border-style: dashed;
}
.hero__geometric .geo-ring:nth-child(3) {
  width: 280px;
  height: 280px;
}
.hero__geometric .geo-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hero__geometric .geo-cross::before, .hero__geometric .geo-cross::after {
  content: "";
  position: absolute;
  background: #e8651a;
}
.hero__geometric .geo-cross::before {
  width: 600px;
  height: 1px;
  top: 0;
  left: -300px;
}
.hero__geometric .geo-cross::after {
  width: 1px;
  height: 600px;
  top: -300px;
  left: 0;
}

.categories {
  margin-top: -165px;
  padding: 185px 0 clamp(4rem, 3rem + 5vw, 8rem);
  background: #f1f4f8;
  position: relative;
  background-image: linear-gradient(rgba(138, 155, 181, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(138, 155, 181, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.categories::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom right, transparent 49.5%, #f1f4f8 50%);
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  color: #e8651a;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag::before, .section-tag::after {
  content: "";
  width: 20px;
  height: 1px;
  background: #e8651a;
}

.section-title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
  color: #0a1628;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
  color: #8a9bb5;
  max-width: 540px;
  margin: 0 auto;
  font-weight: 300;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .categories__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.category-card {
  position: relative;
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  group: true;
}
.category-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, #e8651a, #f07a35);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.12);
}
.category-card:hover::before {
  transform: scaleX(1);
}
.category-card:hover .category-card__icon {
  background: #e8651a;
  color: #ffffff;
  transform: scale(1.05);
}
.category-card:hover .category-card__arrow {
  opacity: 1;
  transform: translateX(0);
}
.category-card:hover .category-card__image img {
  transform: scale(1.08);
}

.category-card__image {
  height: 140px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .category-card__image {
    height: 160px;
  }
}
.category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.6), transparent);
}

.category-card__body {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.category-card__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f4f8;
  color: #e8651a;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-card__icon svg {
  width: 22px;
  height: 22px;
}

.category-card__info {
  flex: 1;
  min-width: 0;
}

.category-card__name {
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  font-weight: 600;
  color: #0a1628;
  margin-bottom: 2px;
}

.category-card__count {
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  color: #8a9bb5;
}

.category-card__arrow {
  color: #e8651a;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.category-card__arrow svg {
  width: 18px;
  height: 18px;
}

.stats {
  position: relative;
  padding: clamp(4rem, 3rem + 5vw, 8rem) 0;
  background: #0a1628;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(138, 155, 181, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(138, 155, 181, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}
.stats::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10%;
  bottom: 10%;
  width: 4px;
  background: linear-gradient(135deg, #e8651a, #f07a35);
  border-radius: 0 4px 4px 0;
}

.stats__inner {
  position: relative;
  z-index: 1;
}

.stats__header {
  margin-bottom: 6rem;
}
.stats__header .section-tag {
  color: #e8651a;
}
.stats__header .section-title {
  color: #ffffff;
}
.stats__header .section-title .accent {
  background: linear-gradient(135deg, #e8651a, #f07a35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stats__header .section-subtitle {
  color: #8a9bb5;
  text-align: left;
  margin: 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  position: relative;
  padding: 2.5rem 0;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
  display: none;
}
@media (min-width: 768px) {
  .stat-item:not(:last-child)::after {
    display: block;
  }
}

.stat-item__number {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.5rem, 1.8rem + 3.5vw, 4.5rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-item__number .stat-suffix {
  background: linear-gradient(135deg, #e8651a, #f07a35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 0.6em;
  margin-left: 2px;
}

.stat-item__label {
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  color: #8a9bb5;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.stat-item__bar {
  margin-top: 1rem;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}
.stat-item__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(135deg, #e8651a, #f07a35);
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.revealed .stat-item__bar span {
  transform: scaleX(1);
}

.products {
  padding: clamp(4rem, 3rem + 5vw, 8rem) 0;
  background: #ffffff;
  position: relative;
}

.products__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.products__nav {
  display: flex;
  gap: 0.5rem;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #e2e8f0;
  border-radius: 50%;
  color: #0a1628;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.carousel-btn svg {
  width: 20px;
  height: 20px;
}
.carousel-btn:hover {
  background: #e8651a;
  border-color: #e8651a;
  color: #ffffff;
  transform: scale(1.05);
}
.carousel-btn:active {
  transform: scale(0.95);
}

.products__carousel {
  overflow: hidden;
  margin: 0 -1.5rem;
  padding: 0 1.5rem;
}

.products__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.product-card {
  flex: 0 0 calc(50% - 0.75rem);
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 768px) {
  .product-card {
    flex: 0 0 calc(33.333% - 1rem);
  }
}
@media (min-width: 992px) {
  .product-card {
    flex: 0 0 calc(25% - 1.125rem);
  }
}
.product-card:hover {
  border-color: #e8651a;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.1);
  transform: translateY(-4px);
}
.product-card:hover .product-card__image img {
  transform: scale(1.06);
}
.product-card:hover .product-card__no {
  color: #e8651a;
}

.product-card__image {
  position: relative;
  height: 180px;
  background: #f1f4f8;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card__image img {
  max-height: 80%;
  width: auto;
  object-fit: contain;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card__badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  background: linear-gradient(135deg, #e8651a, #f07a35);
  color: #ffffff;
}

.product-card__body {
  padding: 1.5rem;
}

.product-card__no {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 0.25rem;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card__title {
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  color: #8a9bb5;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.product-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.product-card__oem {
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  color: #8a9bb5;
  background: #f1f4f8;
  padding: 3px 8px;
  border-radius: 4px;
}

.brands {
  padding: clamp(4rem, 3rem + 5vw, 8rem) 0;
  background: #f1f4f8;
  position: relative;
}

.brands__marquee {
  overflow: hidden;
  margin-top: 4rem;
  padding: 1.5rem 0;
  position: relative;
}
.brands__marquee::before, .brands__marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.brands__marquee::before {
  left: 0;
  background: linear-gradient(to right, #f1f4f8, transparent);
}
.brands__marquee::after {
  right: 0;
  background: linear-gradient(to left, #f1f4f8, transparent);
}

.brands__track {
  display: flex;
  gap: 6rem;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.brands__track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 100px;
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 8px;
  padding: 1.5rem 2.5rem;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand-item img {
  max-height: 65px;
  max-width: 170px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.brand-item:hover {
  border-color: #e2e8f0;
  box-shadow: 0 1px 3px rgba(10, 22, 40, 0.08);
}
.brand-item:hover img {
  filter: grayscale(0) opacity(1);
}

.quality {
  padding: clamp(4rem, 3rem + 5vw, 8rem) 0;
  background: #ffffff;
  position: relative;
}

.quality__grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 992px) {
  .quality__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 8rem;
  }
}

.quality__visual {
  position: relative;
}
@media (min-width: 992px) {
  .quality__visual {
    order: 2;
  }
}

.quality__image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.quality__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quality__image::after {
  content: "";
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border: 2px solid #e8651a;
  border-radius: 12px;
  z-index: -1;
}

.quality__badge {
  position: absolute;
  bottom: -20px;
  left: 2.5rem;
  background: #0a1628;
  color: #ffffff;
  padding: 1.5rem 2.5rem;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.16);
}
.quality__badge .badge-number {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  font-weight: 900;
  background: linear-gradient(135deg, #e8651a, #f07a35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.quality__badge .badge-text {
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  color: #8a9bb5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 4px;
}

@media (min-width: 992px) {
  .quality__content {
    order: 1;
  }
}

.quality__features {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 4rem;
}

.feature-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-item__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 101, 26, 0.15);
  border-radius: 8px;
  color: #e8651a;
}
.feature-item__icon svg {
  width: 24px;
  height: 24px;
}

.feature-item__content {
  flex: 1;
}

.feature-item__title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
  font-weight: 600;
  color: #0a1628;
  margin-bottom: 0.25rem;
}

.feature-item__desc {
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  color: #8a9bb5;
  line-height: 1.7;
}

.contact-cta {
  position: relative;
  padding: clamp(4rem, 3rem + 5vw, 8rem) 0;
  background: #0a1628;
  overflow: hidden;
}
.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(138, 155, 181, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(138, 155, 181, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
}
.contact-cta::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -30%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.08), transparent 70%);
  pointer-events: none;
}

.contact-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 992px) {
  .contact-cta__inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 8rem;
  }
}

.contact-cta__content .section-tag {
  color: #e8651a;
}
.contact-cta__content .section-title {
  color: #ffffff;
  text-align: left;
  margin-bottom: 1.5rem;
}
.contact-cta__content p {
  color: #8a9bb5;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.contact-cta__info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-info-item .icon-circle {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #e8651a;
}
.contact-info-item .icon-circle svg {
  width: 18px;
  height: 18px;
}
.contact-info-item .info-text {
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  color: #b8c5d6;
}
.contact-info-item .info-text strong {
  display: block;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-cta__form {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 4rem;
  backdrop-filter: blur(8px);
}

.form-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.15rem, 1rem + 0.75vw, 1.5rem);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 2.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}
.form-row--full {
  grid-template-columns: 1fr;
}

.form-field input, .form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #ffffff;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.form-field input::placeholder, .form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-field input:focus, .form-field textarea:focus {
  border-color: #e8651a;
  background: rgba(232, 101, 26, 0.04);
  box-shadow: 0 0 0 3px rgba(232, 101, 26, 0.1);
}
.form-field textarea {
  min-height: 100px;
  resize: vertical;
}

.form-submit {
  margin-top: 1.5rem;
}
.form-submit .btn--primary {
  width: 100%;
  padding: 16px;
}

.site-footer {
  background: rgb(6.94, 15.268, 27.76);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer__main {
  padding: 6rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 768px) {
  .footer__main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .footer__main {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

.footer__brand img {
  height: 36px;
  width: auto;
  margin-bottom: 1.5rem;
  filter: brightness(0) invert(1);
}
.footer__brand p {
  color: #8a9bb5;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 2.5rem;
}

.footer__social {
  display: flex;
  gap: 0.5rem;
}

.social-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #8a9bb5;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-link svg {
  width: 16px;
  height: 16px;
}
.social-link:hover {
  border-color: #e8651a;
  color: #e8651a;
  background: rgba(232, 101, 26, 0.08);
  transform: translateY(-2px);
}

.footer__column h4 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e8651a;
  display: inline-block;
}
.footer__column ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__column a {
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  color: #8a9bb5;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer__column a::before {
  content: "";
  width: 0;
  height: 1px;
  background: #e8651a;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.footer__column a:hover {
  color: #ffffff;
}
.footer__column a:hover::before {
  width: 12px;
}

.footer__newsletter h4 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.footer__newsletter p {
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  color: #8a9bb5;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: #ffffff;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.newsletter-form input:focus {
  border-color: #e8651a;
  box-shadow: 0 0 0 3px rgba(232, 101, 26, 0.1);
}
.newsletter-form button {
  padding: 12px 20px;
  background: linear-gradient(135deg, #e8651a, #f07a35);
  color: #ffffff;
  border-radius: 4px;
  font-weight: 600;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.newsletter-form button:hover {
  box-shadow: 0 4px 24px rgba(232, 101, 26, 0.3);
  transform: translateY(-1px);
}

.footer__bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer__copy {
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  color: rgba(138, 155, 181, 0.6);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}
.footer__legal a {
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  color: rgba(138, 155, 181, 0.6);
}
.footer__legal a:hover {
  color: #e8651a;
}

.page-banner {
  position: relative;
  padding: calc(80px + 6rem) 0 6rem;
  background: #0a1628;
  overflow: hidden;
}
.page-banner__bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(138, 155, 181, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(138, 155, 181, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.4;
}
.page-banner__bg::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -50%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 101, 26, 0.1), transparent 70%);
}
.page-banner__content {
  position: relative;
  z-index: 1;
}
.page-banner__title {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
  color: #ffffff;
  margin-top: 0.5rem;
}
.page-banner__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  color: #8a9bb5;
}
.page-banner__breadcrumb a {
  color: #8a9bb5;
}
.page-banner__breadcrumb a:hover {
  color: #e8651a;
}
.page-banner__breadcrumb span {
  color: rgba(255, 255, 255, 0.3);
}
.page-banner__breadcrumb span:last-child {
  color: #e8651a;
}
.page-banner--compact {
  padding-bottom: 2.5rem;
}

.inner-page {
  padding: clamp(4rem, 3rem + 5vw, 8rem) 0;
}

.inner-block {
  margin-bottom: 6rem;
}
.inner-block__grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 992px) {
  .inner-block__grid {
    grid-template-columns: 1.2fr 1fr;
  }
}
.inner-block__text {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
  color: #8a9bb5;
  line-height: 1.8;
}
.inner-block__text p {
  margin-bottom: 1rem;
}
.inner-block__image {
  border-radius: 12px;
  overflow: hidden;
}
.inner-block__image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.inner-cards {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .inner-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.inner-card {
  background: #f1f4f8;
  border-radius: 12px;
  padding: 4rem;
  border: 1px solid #e2e8f0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.inner-card:hover {
  border-color: #e8651a;
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.1);
}
.inner-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8651a, #f07a35);
  border-radius: 8px;
  color: #ffffff;
  margin-bottom: 1.5rem;
}
.inner-card__icon svg {
  width: 24px;
  height: 24px;
}
.inner-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.15rem, 1rem + 0.75vw, 1.5rem);
  color: #0a1628;
  margin-bottom: 1rem;
}
.inner-card__text {
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  color: #8a9bb5;
  line-height: 1.7;
}

.inner-timeline {
  margin-top: 6rem;
}

.timeline {
  position: relative;
  padding-left: 4rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
}

.timeline__item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline__item::before {
  content: "";
  position: absolute;
  left: calc(-4rem + 3px);
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e8651a, #f07a35);
  border: 2px solid #ffffff;
  box-shadow: 0 1px 3px rgba(10, 22, 40, 0.08);
}

.timeline__year {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  font-weight: 700;
  color: #e8651a;
  margin-bottom: 0.25rem;
}

.timeline__content h4 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
  color: #0a1628;
  margin-bottom: 0.25rem;
}
.timeline__content p {
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  color: #8a9bb5;
  line-height: 1.6;
}

.certificates-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .certificates-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.certificate-card {
  background: #f1f4f8;
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  border: 1px solid #e2e8f0;
}
.certificate-card__image {
  margin-bottom: 1.5rem;
}
.certificate-card__image img {
  max-height: 120px;
  margin: 0 auto;
}
.certificate-card h4 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
  color: #0a1628;
  margin-bottom: 0.5rem;
}
.certificate-card p {
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  color: #8a9bb5;
}

.products-page {
  padding: 2.5rem 0 clamp(4rem, 3rem + 5vw, 8rem);
}

.adv-search {
  background: #ffffff;
  border-radius: 12px;
  padding: 2.5rem 4rem;
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.16), 0 0 0 1px rgba(10, 22, 40, 0.04);
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.adv-search__row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .adv-search__row {
    grid-template-columns: 1.5fr 1fr 1fr auto;
  }
}

.adv-search__field label {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  font-weight: 600;
  color: #8a9bb5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.adv-search__input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.adv-search__input-wrap:focus-within {
  border-color: #e8651a;
  box-shadow: 0 0 0 4px rgba(232, 101, 26, 0.08);
}
.adv-search__input-wrap svg {
  width: 18px;
  height: 18px;
  color: #8a9bb5;
  flex-shrink: 0;
}
.adv-search__input-wrap input {
  width: 100%;
  padding: 12px 0;
  font-size: clamp(0.9rem, 0.85rem + 0.35vw, 1rem);
  color: #0a1628;
}
.adv-search__input-wrap input::placeholder {
  color: #b8c5d6;
}

.adv-search__select-wrap {
  position: relative;
}
.adv-search__select-wrap select {
  width: 100%;
  padding: 12px 4rem 12px 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  color: #0a1628;
  background: #ffffff;
  cursor: pointer;
  appearance: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.adv-search__select-wrap select:focus {
  border-color: #e8651a;
  box-shadow: 0 0 0 4px rgba(232, 101, 26, 0.08);
}
.adv-search__select-wrap svg {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #8a9bb5;
  pointer-events: none;
}

.adv-search__field--btn .btn {
  width: 100%;
  padding: 12px 24px;
  height: 46px;
}

.adv-search__active {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
}

.adv-search__active-label {
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  color: #8a9bb5;
  font-weight: 500;
}

.adv-search__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  padding: 4px 12px;
  background: rgba(232, 101, 26, 0.15);
  color: #e8651a;
  border-radius: 100px;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.adv-search__tag:hover {
  background: #e8651a;
  color: #ffffff;
}

.adv-search__clear {
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  color: #8a9bb5;
  margin-left: 0.5rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.adv-search__clear:hover {
  color: #e8651a;
}

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}
.products-toolbar__count {
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  color: #8a9bb5;
}
.products-toolbar__count strong {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #0a1628;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
}
.products-toolbar__right {
  display: flex;
  gap: 0.25rem;
}

.view-toggle {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  color: #8a9bb5;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.view-toggle svg {
  width: 18px;
  height: 18px;
}
.view-toggle.active, .view-toggle:hover {
  background: #0a1628;
  border-color: #0a1628;
  color: #ffffff;
}

.products-grid-view {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .products-grid-view {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .products-grid-view {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-grid-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.product-grid-card:hover {
  border-color: #e8651a;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.1);
  transform: translateY(-4px);
}
.product-grid-card:hover .product-grid-card__image img {
  transform: scale(1.05);
}
.product-grid-card:hover .product-grid-card__no {
  color: #e8651a;
}
.product-grid-card__image {
  position: relative;
  height: 160px;
  background: #f1f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .product-grid-card__image {
    height: 180px;
  }
}
.product-grid-card__image img {
  max-height: 85%;
  max-width: 85%;
  object-fit: contain;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-grid-card__body {
  padding: 1rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-grid-card__no {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 4px;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-grid-card__title {
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  color: #8a9bb5;
  margin-bottom: 0.5rem;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-grid-card__oems {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 0.25rem;
}
.product-grid-card__oems span {
  font-size: 10px;
  color: #8a9bb5;
  background: #f1f4f8;
  padding: 2px 6px;
  border-radius: 4px;
}
.product-grid-card__oems .more {
  color: #e8651a;
  font-weight: 600;
}
.product-grid-card__brands {
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  color: #e8651a;
  font-weight: 500;
}

.products-table {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.products-table__head {
  display: none;
}
@media (min-width: 992px) {
  .products-table__head {
    display: grid;
    grid-template-columns: 80px 150px 1fr 200px 160px 40px;
    gap: 1rem;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: #0a1628;
  }
  .products-table__head .products-table__col {
    font-family: "Outfit", sans-serif;
    font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
}

.products-table__row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0.5rem 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 992px) {
  .products-table__row {
    grid-template-columns: 80px 150px 1fr 200px 160px 40px;
    gap: 1rem;
  }
}
.products-table__row:last-child {
  border-bottom: none;
}
.products-table__row:hover {
  background: rgba(232, 101, 26, 0.02);
}
.products-table__row:hover .products-table__no {
  color: #e8651a;
}
.products-table__row:hover .products-table__col--arrow svg {
  color: #e8651a;
  transform: translateX(3px);
}

.products-table__img {
  width: 70px;
  height: 56px;
  background: #f1f4f8;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
@media (min-width: 992px) {
  .products-table__img {
    width: 80px;
    height: 60px;
  }
}
.products-table__img img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
}
.products-table__img .product-card__badge {
  position: absolute;
  top: 2px;
  left: 2px;
  font-size: 8px;
  padding: 2px 5px;
}

.products-table__no {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  font-weight: 700;
  color: #0a1628;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.products-table__title {
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  color: #8a9bb5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.products-table__oems {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.products-table__oems span {
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  color: #0a1628;
  background: #f1f4f8;
  padding: 2px 8px;
  border-radius: 4px;
  font-family: "JetBrains Mono", monospace;
  font-weight: 500;
}
.products-table__oems .more {
  background: rgba(232, 101, 26, 0.15);
  color: #e8651a;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
}

.products-table__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.products-table__brands span {
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  font-weight: 600;
  color: #e8651a;
  background: rgba(232, 101, 26, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
}
.products-table__brands .more {
  background: rgba(10, 22, 40, 0.06);
  color: #8a9bb5;
}

.products-table__col--arrow svg {
  width: 18px;
  height: 18px;
  color: #b8c5d6;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 991px) {
  .products-table__row {
    grid-template-areas: "img info" "img oems";
  }
  .products-table__col--img {
    grid-area: img;
  }
  .products-table__col--no,
  .products-table__col--title {
    grid-area: info;
    display: inline;
  }
  .products-table__col--no {
    grid-area: auto;
  }
  .products-table__col--title {
    grid-area: auto;
  }
  .products-table__col--oem {
    grid-column: 2;
  }
  .products-table__col--brand {
    grid-column: 2;
  }
  .products-table__col--arrow {
    display: none;
  }
}
.products-list-view {
  display: grid;
  gap: 1rem;
}

.product-list-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.5rem;
  align-items: center;
  padding: 1.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (min-width: 768px) {
  .product-list-card {
    grid-template-columns: 120px 1fr auto;
  }
}
.product-list-card:hover {
  border-color: #e8651a;
  box-shadow: 0 4px 16px rgba(10, 22, 40, 0.1);
  transform: translateX(4px);
}
.product-list-card:hover .product-list-card__arrow {
  color: #e8651a;
  opacity: 1;
}
.product-list-card__image {
  position: relative;
  width: 100px;
  height: 80px;
  background: #f1f4f8;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .product-list-card__image {
    width: 120px;
    height: 90px;
  }
}
.product-list-card__image img {
  max-height: 90%;
  max-width: 90%;
  object-fit: contain;
}
.product-list-card__body {
  min-width: 0;
}
.product-list-card__no {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 2px;
}
.product-list-card__title {
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  color: #8a9bb5;
  margin-bottom: 0.5rem;
}
.product-list-card__oems {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}
.product-list-card__vehicles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}
.product-list-card__vehicles span {
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  color: #8a9bb5;
  background: #f1f4f8;
  padding: 2px 8px;
  border-radius: 4px;
}
.product-list-card__arrow {
  color: #b8c5d6;
  opacity: 0.4;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-list-card__arrow svg {
  width: 20px;
  height: 20px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 4rem;
}

.pagination__btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  font-weight: 500;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  color: #0a1628;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.pagination__btn:hover, .pagination__btn.active {
  background: #e8651a;
  border-color: #e8651a;
  color: #ffffff;
}

.no-results {
  text-align: center;
  padding: 8rem 1.5rem;
  color: #8a9bb5;
}
.no-results svg {
  margin: 0 auto 1.5rem;
  color: #b8c5d6;
}
.no-results h3 {
  font-family: "Outfit", sans-serif;
  color: #0a1628;
  margin-bottom: 0.5rem;
}

.product-detail {
  padding: 4rem 0 clamp(4rem, 3rem + 5vw, 8rem);
}
.product-detail__grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 992px) {
  .product-detail__grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
}
.product-detail__image-main {
  background: #f1f4f8;
  border-radius: 12px;
  padding: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.product-detail__image-main img {
  max-height: 350px;
  max-width: 100%;
  object-fit: contain;
}
.product-detail__badge {
  display: inline-block;
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #e8651a, #f07a35);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.product-detail__no {
  font-family: "JetBrains Mono", monospace;
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.25rem);
  font-weight: 900;
  color: #0a1628;
  margin-bottom: 0.25rem;
}
.product-detail__title {
  font-size: clamp(1.15rem, 1rem + 0.75vw, 1.5rem);
  font-weight: 500;
  color: #8a9bb5;
  margin-bottom: 2.5rem;
}
.product-detail__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #f1f4f8;
  border-radius: 8px;
}
.product-detail__table-section {
  margin-top: 2.5rem;
}
.product-detail__table-section h3 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
  font-weight: 600;
  color: #0a1628;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e8651a;
  display: inline-block;
}
.product-detail__vehicles {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid #e2e8f0;
}

.detail-meta-item__label {
  display: block;
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  color: #8a9bb5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.detail-meta-item__value {
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  font-weight: 600;
  color: #0a1628;
}

.detail-table {
  overflow-x: auto;
}
.detail-table table {
  width: 100%;
  border-collapse: collapse;
}
.detail-table table th {
  text-align: left;
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
  font-weight: 600;
  color: #8a9bb5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  background: #f1f4f8;
  border-bottom: 2px solid #e2e8f0;
}
.detail-table table td {
  padding: 0.5rem 1rem;
  font-size: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
  color: #0a1628;
  border-bottom: 1px solid #e2e8f0;
}
.detail-table table tr:hover td {
  background: rgba(232, 101, 26, 0.03);
}

.contact-map {
  margin-top: -1px;
}

@media (max-width: 575px) {
  .hero__title {
    letter-spacing: -0.03em;
  }
  .hero__actions {
    flex-direction: column;
  }
  .hero__actions .btn {
    width: 100%;
  }
  .stats__grid {
    gap: 1.5rem;
  }
  .stat-item {
    padding: 1rem 0;
    text-align: center;
  }
  .quality__badge {
    position: static;
    margin-top: 1.5rem;
    display: inline-block;
  }
  .contact-cta__form {
    padding: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .hero__geometric .geo-ring {
    width: 650px;
    height: 650px;
  }
  .hero__geometric .geo-ring:nth-child(2) {
    width: 520px;
    height: 520px;
  }
  .hero__geometric .geo-ring:nth-child(3) {
    width: 360px;
    height: 360px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
  }
  .brands__track {
    animation: none;
  }
}
