:root {
  --navy: #061947;
  --navy-2: #0b255f;
  --blue: #55c7f6;
  --blue-2: #22aeea;
  --cyan: #92e2ff;
  --cyan-soft: #eefaff;
  --sky: #f4fbff;
  --ink: #101b35;
  --muted: #64708a;
  --line: #dce8f5;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(6, 25, 71, 0.13);
  --brand-blue-rgb: 85, 199, 246;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Roboto, Arial, sans-serif;
}

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

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.with-icon {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

button,
input,
textarea {
  font: inherit;
}

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

.topbar {
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(90deg, var(--blue-2), var(--blue));
  font-size: 13px;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
}

.topbar__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(220, 232, 245, 0.9);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
}

.brand__logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand__logo--full {
  height: 58px;
}

.brand__logo--mark {
  display: none;
  height: 58px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.nav-menu a {
  position: relative;
  padding: 10px 0;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 0;
  color: var(--blue);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
}

.nav-dropdown__toggle::after {
  width: 7px;
  height: 7px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 150px;
  margin-top: 10px;
  padding: 10px;
  background: var(--white);
  border: 1px solid rgba(220, 232, 245, 0.9);
  border-radius: 10px;
  box-shadow: 0 18px 45px rgba(6, 25, 71, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

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

.nav-dropdown__menu a {
  padding: 11px 8px;
  white-space: nowrap;
  font-weight: 500;
}

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

.nav-dropdown__menu a:hover {
  color: var(--blue);
}

.nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--navy);
  border: 0;
  border-radius: 14px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 34px;
  background: #fff;
}

.hero--catalog {
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 999px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 40px;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.hero__title {
  max-width: none;
  margin: 42px 0 18px;
  color: #111;
  font-size: 40px;
  line-height: 1.18;
  letter-spacing: -0.035em;
  font-weight: 700;
}

h2 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 40px;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h3 {
  color: var(--navy);
}

.hero__content p,
.section__heading p,
.split-section p,
.footer p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.search-card {
  max-width: 620px;
  margin: 28px 0 20px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.catalog-searchbar {
  display: grid;
  grid-template-columns: 160px 1fr 100px;
  gap: 12px;
  align-items: stretch;
}

.catalog-button,
.cart-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.catalog-button {
  gap: 10px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border: 2px solid var(--blue);
}

.catalog-button .icon,
.cart-pill .icon {
  font-size: 17px;
}

.cart-pill {
  gap: 8px;
  color: var(--navy);
  background: #f5f7fb;
  border: 1px solid var(--line);
}

.search-card--catalog {
  display: grid;
  grid-template-columns: 1fr auto 52px;
  max-width: none;
  min-height: 42px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 2px solid var(--blue);
  border-radius: 4px;
  box-shadow: none;
}

.search-card label {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.search-card__row {
  display: flex;
  gap: 10px;
}

.search-card input,
.quote-form input,
.quote-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-card input {
  min-height: 52px;
  padding: 0 16px;
}

.search-card--catalog input {
  min-height: 40px;
  border: 0;
  border-radius: 0;
  font-size: 14px;
}

.interchange-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: #333;
  background: #fff;
  border-left: 1px solid var(--line);
  font-size: 14px;
  white-space: nowrap;
}

.search-card--catalog .interchange-check {
  display: inline-flex;
  margin: 0;
  color: #333;
  font-size: 14px;
  font-weight: 400;
}

.interchange-check input {
  width: auto;
  min-height: auto;
  accent-color: var(--blue);
}

.search-card button {
  min-width: 120px;
  color: var(--navy);
  cursor: pointer;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border: 0;
  border-radius: 14px;
  font-weight: 900;
}

.search-card--catalog button {
  min-width: 52px;
  min-height: 40px;
  color: transparent;
  background:
    linear-gradient(45deg, transparent 53%, #111 54%, #111 61%, transparent 62%) 30px 26px / 14px 14px no-repeat,
    radial-gradient(circle at 45% 43%, transparent 0 7px, #111 8px 10px, transparent 11px) center / 28px 28px no-repeat,
    #fff;
  border-left: 1px solid var(--line);
  border-radius: 0;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(var(--brand-blue-rgb), 0.12);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 15px;
  font-weight: 900;
}

.button--primary {
  color: var(--navy);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 14px 28px rgba(var(--brand-blue-rgb), 0.24);
}

.button--ghost {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

.banner-slider {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--white);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.banner-frame {
  width: 100%;
  overflow: hidden;
  background: #f4f5f7;
  border: 1px solid #e3e6ec;
  border-radius: 0;
}

.banner-slider__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.banner-slider__image.is-active {
  opacity: 1;
}

.banner-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  background: rgba(0, 0, 0, 0.32);
  border: 0;
  border-radius: 50%;
  font-size: 38px;
  line-height: 1;
  transform: translateY(-50%);
}

.banner-control--prev {
  left: 18px;
}

.banner-control--next {
  right: 18px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.hero__stats div,
.quick-tools__grid a,
.category-card,
.quote-card,
.quote-form,
.supply-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(6, 25, 71, 0.08);
}

.hero__stats div {
  position: relative;
  padding: 16px 16px 16px 72px;
  border-radius: 18px;
}

.stat-icon {
  position: absolute;
  top: 16px;
  left: 16px;
  display: grid !important;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue) !important;
  background: var(--cyan-soft);
  border: 1px solid rgba(var(--brand-blue-rgb), 0.16);
  border-radius: 8px;
  font-size: 22px;
  margin-top: 0 !important;
}

.hero__stats strong {
  display: block;
  color: var(--blue);
  font-size: 22px;
  font-weight: 900;
}

.hero__stats span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.visual-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 18px;
  overflow: hidden;
  background: var(--white);
  border: 0;
}

.visual-tile {
  position: relative;
  min-height: 190px;
  overflow: hidden;
  color: #fff;
  background-color: #8f8f8f;
  background-position: center;
  background-size: cover;
  border: 0;
}

.visual-tile::before {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(84, 84, 84, 0.42);
  transition: background 0.2s ease;
}

.visual-tile:hover::before {
  background: rgba(84, 84, 84, 0.28);
}

.visual-tile div {
  position: relative;
  z-index: 1;
  max-width: 72%;
  padding: 18px 16px;
}

.visual-tile h3 {
  margin-bottom: 6px;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.visual-tile span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.visual-tile p {
  display: none;
}

.visual-tile--japanese {
  background-image: url("assets/Cars section/Japan.png");
}

.visual-tile--european {
  background-image: url("assets/Cars section/Europe.png");
}

.visual-tile--american {
  background-image: url("assets/Cars section/American.png");
}

.visual-tile--korean {
  background-image: url("assets/Cars section/korea.png");
}

.visual-tile--luxury {
  background-image: url("assets/Cars section/luxery.png");
}

.visual-tile--kits {
  background-image: url("assets/Cars section/parts.png");
}

.visual-tile--offroad {
  background-image: url("assets/Cars section/offroad.png");
}

.visual-tile--wheels {
  background-image: url("assets/Cars section/wheel.png");
}

.visual-tile--truck {
  background-image: url("assets/Cars section/truck.png");
}

.quick-tools {
  padding: 24px 0;
  background: var(--white);
}

.quick-tools__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.quick-tools__grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  color: var(--navy);
  border-radius: 18px;
  font-weight: 900;
}

.quick-tools__grid span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--blue);
  background: var(--cyan-soft);
  border: 1px solid rgba(var(--brand-blue-rgb), 0.16);
  border-radius: 8px;
  font-size: 20px;
}

.section {
  padding: 82px 0;
}

.page-hero {
  padding: 64px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(91, 215, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #ffffff, #eaf8ff);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 36px;
}

.page-hero p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.page-hero img {
  overflow: hidden;
  border: 8px solid var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.company-hero {
  padding: 72px 0;
  background:
    radial-gradient(circle at 84% 12%, rgba(91, 215, 255, 0.24), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #f4fbff 56%, #eaf8ff 100%);
}

.about-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 18%, rgba(91, 215, 255, 0.24), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(9, 109, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #031132 0%, #061947 52%, #0b255f 100%);
}

.about-hero::after {
  position: absolute;
  inset: auto -8% -42% -8%;
  height: 52%;
  content: "";
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50% 50% 0 0;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.about-hero__logo {
  display: inline-flex;
  padding: 18px 22px;
  margin-bottom: 28px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.about-hero__logo img {
  width: min(310px, 74vw);
}

.about-hero .eyebrow {
  color: var(--cyan);
}

.about-hero h1 {
  max-width: 880px;
  margin: 14px auto 18px;
  color: var(--white);
  font-size: 40px;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.about-hero p {
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.75;
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.about-hero .company-proof {
  width: min(760px, 100%);
}

.about-hero .company-proof div {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.14);
}

.company-hero__grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 42px;
  align-items: center;
}

.company-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: 40px;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.company-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.company-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.company-logo-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 24px;
  padding: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 251, 255, 0.92)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.company-logo-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  background: rgba(91, 215, 255, 0.18);
  border-radius: 50%;
}

.company-logo-card img {
  position: relative;
  z-index: 1;
  width: min(280px, 100%);
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.company-logo-card__meta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.company-logo-card__meta span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.company-logo-card__meta strong {
  color: var(--navy);
}

.company-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.company-proof div {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(6, 25, 71, 0.06);
}

.company-proof strong {
  display: block;
  color: var(--blue);
  font-size: 24px;
  line-height: 1;
}

.company-proof span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.about-story__grid,
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: start;
}

.about-story__panel,
.contact-info-panel {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(6, 25, 71, 0.08);
}

.about-story__panel p,
.contact-info-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.detail-grid,
.values-grid,
.contact-methods {
  display: grid;
  gap: 16px;
}

.detail-grid {
  grid-template-columns: repeat(3, 1fr);
}

.values-grid {
  grid-template-columns: repeat(4, 1fr);
}

.detail-card,
.value-card,
.contact-method {
  display: grid;
  gap: 10px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(6, 25, 71, 0.06);
}

.detail-card .icon,
.value-card .icon,
.contact-method .icon {
  width: 38px;
  height: 38px;
  color: #7b8495;
}

.detail-card strong,
.value-card strong,
.contact-method strong {
  color: var(--navy);
  font-size: 18px;
}

.detail-card p,
.value-card p,
.contact-method span,
.contact-method a {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.contact-method a {
  color: var(--blue);
  font-weight: 900;
}

.contact-form-card {
  padding: 10px;
  background:
    radial-gradient(circle at 90% 10%, rgba(91, 215, 255, 0.22), transparent 28%),
    linear-gradient(135deg, var(--blue-2), var(--blue));
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(6, 25, 71, 0.06);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: var(--navy);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  width: 10px;
  height: 10px;
  content: "";
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(225deg);
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.section--soft {
  background: linear-gradient(180deg, var(--sky), #ffffff);
}

.section__heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.catalog-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-card {
  min-height: 245px;
  padding: 24px;
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-card__icon {
  display: grid;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--blue);
  background: var(--cyan-soft);
  border: 1px solid rgba(var(--brand-blue-rgb), 0.16);
  border-radius: 10px;
  font-size: 26px;
  font-weight: 900;
}

.category-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.category-card p {
  color: var(--muted);
  line-height: 1.6;
}

.category-card span {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.brand-strip span {
  display: grid;
  min-height: 78px;
  place-items: center;
  color: var(--navy);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 900;
  text-align: center;
}

.catalog-table {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.catalog-table__row {
  display: grid;
  grid-template-columns: 1fr 1.45fr 1.25fr 150px;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.catalog-table__row:last-child {
  border-bottom: 0;
}

.catalog-table__head {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-table__row span:first-child {
  color: var(--navy);
  font-weight: 900;
}

.catalog-table__row span {
  color: var(--muted);
  line-height: 1.55;
}

.catalog-table__row a {
  display: inline-flex;
  justify-content: center;
  padding: 11px 14px;
  color: var(--white);
  background: var(--blue);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 900;
}

.brand-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.brand-index a {
  padding: 18px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(6, 25, 71, 0.06);
  font-weight: 900;
  text-align: center;
}

.category-page {
  padding: 28px 0 82px;
  background: var(--white);
}

.category-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 26px;
  color: #9aa2ad;
  font-size: 13px;
}

.category-breadcrumb a,
.category-breadcrumb strong {
  color: #596170;
  font-weight: 700;
}

.category-breadcrumb span::before,
.category-breadcrumb strong::before {
  margin-right: 10px;
  color: #c4c9d1;
  content: ">";
}

.category-layout {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 46px;
  align-items: start;
}

.category-sidebar {
  display: grid;
  gap: 10px;
  padding-top: 48px;
}

.category-sidebar div {
  display: grid;
  gap: 10px;
}

.category-sidebar a {
  color: #596170;
  font-size: 14px;
  font-weight: 700;
}

.category-sidebar a::after {
  margin-left: 7px;
  color: #b6bcc6;
  content: "›";
}

.category-sidebar a:hover {
  color: #111827;
}

.category-content__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}

.category-content h1 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 40px;
  line-height: 1.12;
}

.category-content h1 span {
  color: #9aa2ad;
  font-size: 0.58em;
  font-weight: 600;
}

.category-content p {
  max-width: 680px;
  margin: 0;
  color: #6f7784;
  line-height: 1.6;
}

.category-quote {
  min-width: max-content;
  padding: 12px 16px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
}

.category-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 46px 96px;
  align-items: center;
  max-width: 760px;
  margin: 0 auto;
}

.category-logo-grid a {
  display: grid;
  min-height: 132px;
  place-items: center;
  color: #111827;
  text-align: center;
}

.category-logo-grid img {
  width: min(220px, 82%);
  max-height: 96px;
  object-fit: contain;
}

.category-logo-grid a > strong {
  display: grid;
  min-width: 190px;
  min-height: 82px;
  place-items: center;
  color: #303846;
  border: 1px solid #dfe3e8;
  font-size: 20px;
  font-weight: 900;
}

.category-logo-grid a > span {
  margin-top: 12px;
  color: #7a828f;
  font-size: 13px;
  font-weight: 700;
}

.category-sidebar a.is-active {
  color: #111827;
  font-weight: 900;
}

.category-wheel-catalog {
  display: grid;
  gap: 24px;
  max-width: 980px;
}

.wheel-filter-panel {
  padding: 18px;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
}

.wheel-filter-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  color: #111827;
  font-size: 14px;
}

.wheel-filter-panel__head span {
  color: #8b94a3;
  font-weight: 700;
}

.wheel-filter-panel__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.wheel-filter-panel label {
  display: grid;
  gap: 7px;
  color: #596170;
  font-size: 12px;
  font-weight: 800;
}

.wheel-filter-panel select,
.wheel-filter-panel input {
  min-height: 40px;
  padding: 0 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-weight: 800;
}

.wheel-filter-panel input {
  background: var(--white);
  border: 1px solid #e5e7eb;
  font-weight: 600;
}

.wheel-result-list {
  display: grid;
  gap: 28px;
}

.wheel-result-card {
  display: grid;
  grid-template-columns: 118px 1fr auto;
  gap: 18px;
  align-items: start;
  padding-bottom: 22px;
  border-bottom: 1px solid #edf0f3;
}

.wheel-result-card__image {
  display: grid;
  min-height: 112px;
  place-items: center;
}

.wheel-result-card__image img {
  width: 104px;
  height: 104px;
  object-fit: contain;
}

.wheel-result-card__body h3 {
  margin: 0 0 3px;
  color: #111827;
  font-size: 16px;
  font-weight: 900;
}

.wheel-result-card__body > span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #8b94a3;
  font-size: 12px;
  font-weight: 800;
}

.wheel-result-card table {
  width: 100%;
  border-collapse: collapse;
  color: #596170;
  font-size: 12px;
}

.wheel-result-card th {
  padding: 9px 10px;
  color: #6b7280;
  background: #f3f4f6;
  font-weight: 900;
  text-align: left;
}

.wheel-result-card td {
  padding: 9px 10px;
  border-bottom: 1px solid #eef1f5;
  font-weight: 700;
}

.wheel-result-card__request {
  min-width: 86px;
  padding: 10px 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-2), var(--blue));
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.wheel-empty {
  padding: 22px;
  color: #6f7784;
  background: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.modal-open {
  overflow: hidden;
}

.request-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
}

.request-modal.is-open {
  display: grid;
}

.request-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.52);
  backdrop-filter: blur(6px);
}

.request-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 34px;
  background: var(--white);
  border: 1px solid #e3e7ed;
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(17, 24, 39, 0.22);
}

.request-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #6b7280;
  background: #f7f8fa;
  border: 1px solid #e3e7ed;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.request-modal__intro {
  max-width: 560px;
  margin-bottom: 24px;
}

.request-modal__intro span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.request-modal__intro h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 40px;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.request-modal__intro p,
.request-modal__success p {
  margin: 0;
  color: #596170;
  line-height: 1.65;
}

.request-modal__form {
  display: grid;
  gap: 16px;
}

.request-modal__form label {
  display: grid;
  gap: 8px;
  color: #303846;
  font-size: 13px;
  font-weight: 900;
}

.request-modal__form input,
.request-modal__form textarea,
.request-modal__form select {
  width: 100%;
  border: 1px solid #d8dde5;
  border-radius: 12px;
  padding: 14px 15px;
  color: #111827;
  background: #fff;
  font-weight: 600;
}

.request-modal__form select {
  min-height: 50px;
  cursor: pointer;
}

.request-modal__form input:focus,
.request-modal__form textarea:focus,
.request-modal__form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(var(--brand-blue-rgb), 0.16);
  outline: none;
}

.request-modal__form textarea {
  resize: vertical;
}

.request-modal__success {
  display: grid;
  gap: 16px;
  margin-top: 2px;
  padding: 22px;
  background: var(--cyan-soft);
  border: 1px solid rgba(var(--brand-blue-rgb), 0.18);
  border-radius: 16px;
}

.request-modal__success[hidden] {
  display: none !important;
}

.request-modal__success strong {
  color: #111827;
  font-size: 22px;
  font-weight: 900;
}

.request-modal__success .button {
  width: min(100%, 520px);
  justify-self: center;
}

.model-lookup-page {
  background: var(--white);
}

.model-lookup {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  padding-block: 76px;
}

.model-lookup__panel {
  max-width: 430px;
  margin: 0 auto;
}

.model-lookup__panel h1,
.model-lookup__panel h2 {
  max-width: 360px;
  margin: 0 0 16px;
  color: #111827;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.model-lookup__panel h2 {
  font-size: 40px;
}

.model-lookup__panel p {
  max-width: 360px;
  margin: 0 0 28px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.65;
}

.vin-lookup-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  overflow: hidden;
  max-width: 380px;
  background: #fff;
  border: 1px solid #d6dbe3;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.04);
}

.vin-lookup-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.vin-lookup-form input {
  min-height: 50px;
  border: 0;
  padding: 0 16px;
  color: #111827;
  font-size: 14px;
  font-weight: 600;
}

.vin-lookup-form button {
  border: 0;
  padding: 0 18px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.model-lookup__panel small {
  display: block;
  margin-top: 12px;
  color: #8a929f;
  font-size: 12px;
  line-height: 1.5;
}

.lookup-brand-card {
  display: inline-grid;
  min-width: 210px;
  margin-top: 22px;
  padding: 16px 18px;
  background: #f7f8fa;
  border: 1px solid #e3e7ed;
  border-radius: 12px;
}

.lookup-brand-card strong {
  color: #111827;
  font-size: 16px;
  font-weight: 900;
}

.lookup-brand-card span {
  margin-top: 5px;
  color: #7a828f;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.model-lookup__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #dfe3e8;
}

.model-lookup__divider span {
  position: absolute;
  top: 42%;
  left: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #6b7280;
  background: var(--white);
  border: 1px solid #dfe3e8;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  transform: translate(-50%, -50%);
}

.parameter-form {
  display: grid;
  gap: 20px;
  max-width: 420px;
}

.parameter-form label {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
}

.parameter-form label > strong {
  color: #111827;
  font-size: 14px;
  font-weight: 900;
}

.parameter-select,
.parameter-form select {
  min-height: 48px;
  width: 100%;
  padding: 0 16px;
  color: #111827;
  background: #f7f8fa;
  border: 1px solid #d6dbe3;
  border-radius: 10px;
  font-weight: 800;
}

.parameter-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.parameter-select em {
  color: #8a929f;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.parameter-form select {
  color: #8a929f;
  background: var(--white);
  font-weight: 600;
}

.parameter-form .button {
  width: fit-content;
  margin-left: 128px;
}

.catalog-browser {
  overflow: hidden;
  background: var(--white);
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 0 18px;
  background: var(--white);
  border-bottom: 1px solid #dfe3e8;
}

.catalog-tabs a,
.catalog-tabs button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  border-radius: 0;
  padding: 17px 0 13px;
  color: #6f7784;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: color 0.2s ease;
}

.catalog-tab-icon,
.moto-catalog-icon,
.common-catalogs__icon {
  display: grid;
  width: 24px;
  height: 24px;
  min-width: 24px;
  place-items: center;
  color: #8a8f98;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.catalog-tab-icon {
  display: none;
}

.catalog-tab-icon .icon,
.moto-catalog-icon .icon,
.common-catalogs__icon .icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-tabs a.is-active,
.catalog-tabs button.is-active {
  color: #111827;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.catalog-tabs a:hover,
.catalog-tabs button:hover,
.catalog-tabs a:focus-visible,
.catalog-tabs button:focus-visible {
  color: #111827;
  background: transparent;
  border-color: transparent;
  outline: none;
}

.catalog-tabs a.is-active:hover,
.catalog-tabs button.is-active:hover,
.catalog-tabs a.is-active:focus-visible,
.catalog-tabs button.is-active:focus-visible {
  color: #111827;
  background: transparent;
}

.catalog-tabs a.is-active .catalog-tab-icon,
.catalog-tabs button.is-active .catalog-tab-icon {
  color: var(--blue);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.catalog-tabs a.is-active::after,
.catalog-tabs button.is-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  display: block;
  height: 2px;
  content: "";
  background: #111827;
}

.catalog-panel {
  display: none;
}

.catalog-panel.is-active {
  display: block;
  animation: catalogPanelIn 0.28s ease both;
}

@keyframes catalogPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.catalog-letters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  border-bottom: 1px solid #edf0f4;
}

.catalog-letters span {
  display: grid;
  min-width: auto;
  height: auto;
  place-items: center;
  color: var(--blue);
  background: transparent;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  font-weight: 900;
  box-shadow: none;
}

.oem-brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  padding: 0;
  background: #eceff3;
  border-top: 0;
}

.oem-brand-grid a {
  display: flex;
  align-items: center;
  min-height: 68px;
  gap: 14px;
  padding: 14px 16px;
  color: #303846;
  background: #f8f8f8;
  border: 0;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, color 0.2s ease;
}

.oem-brand-grid a:hover {
  z-index: 1;
  color: #111827;
  background: var(--white);
  box-shadow: none;
  transform: none;
}

.oem-brand-grid img {
  width: 58px;
  min-width: 58px;
  height: 36px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.76;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.oem-brand-grid a:hover img {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.04);
}

.catalog-link-index {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 34px;
  padding: 26px 20px 34px;
}

.catalog-link-index--wide {
  grid-template-columns: repeat(5, 1fr);
}

.catalog-link-index div {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 7px 8px;
  align-content: start;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.catalog-link-index strong {
  grid-column: 1;
  display: block;
  width: auto;
  height: auto;
  color: var(--blue);
  background: transparent;
  border-radius: 0;
  font-size: 13px;
  line-height: 1.4;
}

.catalog-link-index a {
  grid-column: 2;
  color: #596170;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 0;
  transition: color 0.2s ease;
}

.catalog-link-index a:hover {
  color: #111827;
  transform: none;
}

.moto-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  padding: 22px;
  background: var(--white);
}

.moto-catalog-grid a {
  display: grid;
  min-height: 104px;
  place-items: center;
  padding: 20px;
  color: #4b5568;
  background: #f5f5f5;
  border: 0;
  border-radius: 0;
  font-size: 15px;
  font-weight: 900;
  text-align: center;
  box-shadow: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.moto-catalog-grid img {
  width: min(150px, 78%);
  max-height: 48px;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.2s ease;
}

.moto-catalog-grid a:hover {
  color: #111827;
  background: var(--white);
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.moto-catalog-grid a:hover img {
  transform: scale(1.04);
}

.moto-catalog-card--text {
  gap: 12px;
}

.moto-catalog-card--text strong {
  color: #3f4652;
  font-size: 14px;
}

.moto-catalog-card--text:hover strong {
  color: #111827;
}

.common-catalogs {
  padding: 26px 20px 34px;
}

.common-catalogs p {
  margin-bottom: 24px;
  color: #6a7282;
  line-height: 1.5;
}

.common-catalogs p strong {
  color: #4a5262;
}

.common-catalogs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 32px;
}

.common-catalogs__grid a {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  min-height: 72px;
  padding: 12px 0;
  color: #586276;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #dfe3e8;
  border-radius: 0;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.common-catalogs__icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  color: #8a8f98;
  background: transparent;
  border-radius: 0;
}

.common-catalogs__grid a:hover {
  color: #111827;
  border-color: #dfe3e8;
  box-shadow: none;
  transform: none;
}

.split-section__grid,
.quote-section__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 42px;
}

.service-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.service-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 14px;
  align-items: start;
  padding: 20px;
  background: var(--sky);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.service-list__icon {
  display: grid !important;
  grid-row: span 2;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--blue) !important;
  background: var(--cyan-soft);
  border: 1px solid rgba(var(--brand-blue-rgb), 0.16);
  border-radius: 8px;
  font-size: 23px;
  line-height: 1;
  margin-top: 0 !important;
}

.service-list strong,
.service-list span {
  display: block;
}

.service-list strong {
  color: var(--navy);
  font-size: 18px;
}

.service-list span {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.6;
}

.supply-card {
  overflow: hidden;
  padding: 10px;
  border-radius: 30px;
}

.supply-card img {
  border-radius: 22px;
}

.product-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(6, 25, 71, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card__image {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  background: #eef6ff;
  border: 1px solid rgba(var(--brand-blue-rgb), 0.16);
  border-radius: 12px;
}

.product-card__image img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

.product-card h3 {
  margin-bottom: 6px;
  font-size: 18px;
}

.product-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-card__meta span {
  padding: 7px 10px;
  color: var(--blue);
  background: var(--cyan-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.latest-news {
  background: var(--white);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(6, 25, 71, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.news-card__date {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.news-card strong {
  min-height: 58px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
}

.news-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: #f6f8fb;
  border-radius: 18px;
}

.news-detail-list {
  display: grid;
  gap: 28px;
}

.news-detail-card {
  scroll-margin-top: 130px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 36px rgba(6, 25, 71, 0.08);
}

.news-detail-card h2 {
  margin: 10px 0 14px;
  font-size: 40px;
}

.news-detail-card p {
  color: var(--muted);
  line-height: 1.75;
}

.news-detail-card img {
  width: 100%;
  max-height: 440px;
  object-fit: contain;
  background: #f6f8fb;
  border-radius: 22px;
}

.quote-section {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(91, 215, 255, 0.24), transparent 28%),
    linear-gradient(135deg, var(--blue-2), var(--blue));
}

.quote-section h2,
.quote-section .eyebrow {
  color: var(--white);
}

.quote-section p {
  color: rgba(255, 255, 255, 0.78);
}

.quote-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 14px;
  align-items: start;
  margin-top: 26px;
  padding: 22px;
  color: var(--navy);
  border-radius: 22px;
}

.quote-card__icon {
  display: grid;
  grid-row: span 2;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--blue);
  background: var(--cyan-soft);
  border: 1px solid rgba(var(--brand-blue-rgb), 0.16);
  border-radius: 8px;
  font-size: 24px;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-cards div {
  display: grid;
  gap: 8px;
  padding: 20px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 18px;
}

.contact-cards strong {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-cards a,
.contact-cards span {
  color: var(--blue);
  font-weight: 900;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border-radius: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 900;
}

.quote-form input,
.quote-form textarea,
.quote-form select {
  padding: 14px 15px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form select {
  min-height: 51px;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.quote-form button {
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 0;
  color: var(--muted) !important;
  font-size: 13px !important;
  line-height: 1.55 !important;
}

.footer {
  padding: 56px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  background: #164189;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 34px;
}

.brand--footer {
  display: inline-flex;
  color: var(--white);
}

.footer h3 {
  color: var(--white);
}

.footer a,
.footer span {
  display: block;
  margin-bottom: 10px;
}

.footer a.with-icon {
  display: inline-flex;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 25;
  display: flex;
  flex-direction: column;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  gap: 2px;
  place-items: center;
  color: var(--navy);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(6, 25, 71, 0.14);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.whatsapp-float img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}

.whatsapp-float span {
  font-size: 11px;
}

@media (max-width: 980px) {
  .topbar__inner,
  .hero__grid,
  .page-hero__grid,
  .company-hero__grid,
  .about-story__grid,
  .contact-layout,
  .split-section__grid,
  .quote-section__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .hero__grid,
  .split-section__grid,
  .quote-section__grid,
  .news-detail-card {
    display: grid;
  }

  .topbar__inner {
    display: grid;
  }

  .topbar__links {
    justify-content: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-dropdown__toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown__menu {
    position: static;
    min-width: 0;
    margin-top: 6px;
    padding: 4px 0 0 16px;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .nav-dropdown:hover .nav-dropdown__menu,
  .nav-dropdown:focus-within .nav-dropdown__menu {
    transform: none;
  }

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

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

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

  .catalog-searchbar {
    grid-template-columns: 1fr;
  }

  .news-detail-card {
    grid-template-columns: 1fr;
  }

  .search-card--catalog {
    grid-template-columns: 1fr auto 52px;
  }

  .catalog-table__row {
    grid-template-columns: 1fr;
  }

  .catalog-table__head {
    display: none;
  }

  .brand-strip {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .oem-brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .catalog-link-index,
  .catalog-link-index--wide {
    grid-template-columns: repeat(3, 1fr);
  }

  .detail-grid,
  .values-grid,
  .company-proof {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .category-sidebar {
    grid-template-columns: repeat(3, 1fr);
    padding-top: 0;
  }

  .category-logo-grid {
    gap: 32px 42px;
    max-width: none;
  }

  .wheel-filter-panel__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wheel-result-card {
    grid-template-columns: 96px 1fr;
  }

  .wheel-result-card__request {
    grid-column: 2;
    justify-self: start;
  }

  .model-lookup {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: auto;
    padding-block: 54px;
  }

  .model-lookup__divider {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    height: 1px;
  }

  .model-lookup__divider span {
    top: 50%;
  }

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

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

  .navbar {
    min-height: 72px;
  }

  .brand__logo--full {
    display: none;
  }

  .brand__logo--mark {
    display: block;
    height: 52px;
  }

  .hero {
    padding-top: 34px;
  }

  .search-card__row,
  .hero__stats,
  .quick-tools__grid,
  .catalog-grid,
  .product-grid,
  .news-grid,
  .brand-strip,
  .brand-index,
  .oem-brand-grid,
  .catalog-link-index,
  .catalog-link-index--wide,
  .moto-catalog-grid,
  .common-catalogs__grid,
  .company-proof,
  .detail-grid,
  .values-grid,
  .visual-catalog,
  .category-sidebar,
  .category-logo-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .wheel-filter-panel__grid,
  .wheel-result-card {
    grid-template-columns: 1fr;
  }

  .wheel-result-card__request {
    grid-column: auto;
  }

  .wheel-result-card table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .category-content__head {
    display: grid;
  }

  .category-logo-grid a {
    min-height: 112px;
  }

  .model-lookup__panel {
    max-width: none;
    width: 100%;
  }

  .parameter-form label {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .parameter-form .button {
    margin-left: 0;
  }

  .catalog-tabs {
    gap: 14px;
  }

  .catalog-tabs a,
  .catalog-tabs button {
    padding-block: 14px;
    font-size: 13px;
  }

  .catalog-letters {
    gap: 6px;
  }

  .visual-tile {
    min-height: 180px;
  }

  .visual-tile div {
    max-width: 82%;
  }

  .search-card__row {
    display: grid;
  }

  .search-card--catalog {
    grid-template-columns: 1fr 52px;
  }

  .search-card--catalog .interchange-check {
    display: none;
  }

  .hero__title {
    margin-top: 20px;
  }

  .banner-control {
    width: 38px;
    height: 38px;
    font-size: 30px;
  }

  .search-card button {
    min-height: 50px;
  }

  .section {
    padding: 58px 0;
  }

  .footer__bottom {
    display: grid;
  }
}
