/* ============================================
   ETC AdBlue — Page-Specific Styles
   Products, Wiki, Bayilik, Login, Contact, etc.
   ============================================ */

/* ═══════════════════════════════════════
   PAGE HEADER (Inner Pages)
   ═══════════════════════════════════════ */

.page-header {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--color-navy) 0%,
    var(--color-primary-dark) 60%,
    var(--color-primary) 100%
  );
  color: var(--color-white);
  padding: var(--space-16) 0 var(--space-20) 0;
  margin-top: var(--header-height);
  overflow: hidden;
  z-index: 1;
}

/* Subtle background orb pattern */
.page-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 180, 216, 0.15) 0%,
    transparent 70%
  );
  z-index: -1;
  pointer-events: none;
}

.page-header__content {
  position: relative;
  z-index: 2;
}

.page-header__breadcrumbs {
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.page-header__breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-base);
}

.page-header__breadcrumbs a:hover {
  color: var(--color-white);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.page-header__breadcrumbs span.separator {
  color: rgba(255, 255, 255, 0.4);
}

.page-header__breadcrumbs span:not(.separator) {
  color: var(--color-white);
  font-weight: var(--fw-medium);
}

.page-header__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-header__description {
  max-width: 600px;
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  line-height: var(--lh-relaxed);
}

/* ═══════════════════════════════════════
   PRODUCTS PAGE
   ═══════════════════════════════════════ */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}

/* Product Card */
.product-card {
  background: var(--color-white);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  transition: var(--transition-all);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary-lighter);
}

.product-card__image-wrap {
  position: relative;
  background: var(--color-gray-50);
  padding: var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  overflow: hidden;
}

.product-card__image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 60%,
    var(--color-primary-lighter) 100%
  );
  opacity: 0;
  transition: opacity var(--duration-base) var(--ease-out);
}

.product-card:hover .product-card__image-wrap::after {
  opacity: 1;
}

.product-card__image {
  max-height: 180px;
  width: auto;
  object-fit: contain;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.product-card__body {
  padding: var(--space-5) var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__code {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  margin-bottom: var(--space-1);
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-2);
}

.product-card__desc {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  line-height: var(--lh-relaxed);
  flex: 1;
}

.product-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary);
}

.product-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.product-card:hover .product-card__link svg {
  transform: translateX(4px);
}

/* Premium Product Card Modifications */
.product-card--premium {
  border: 1px solid var(--color-gray-100);
  border-radius: var(--radius-xl);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: var(--transition-all);
}

.product-card--premium:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--color-primary-light);
}

.product-card__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  background: var(--color-primary);
  color: var(--color-white);
  padding: var(--space-1) var(--space-3);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  border-radius: var(--radius-full);
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.product-card__hover-cta {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-all);
  z-index: 10;
  backdrop-filter: blur(4px);
}

.product-card--premium:hover .product-card__hover-cta {
  opacity: 1;
}

.product-card__hover-cta .btn {
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card--premium:hover .product-card__hover-cta .btn {
  transform: translateY(0);
}

/* ── Product Detail ── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: start;
}

.product-detail__gallery {
  position: sticky;
  top: calc(var(--header-height) + var(--space-6));
}

.product-detail__main-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--color-gray-200);
  cursor: zoom-in;
}

.product-detail__info h1 {
  font-size: var(--fs-3xl);
  margin-bottom: var(--space-2);
}

.product-detail__code {
  font-size: var(--fs-sm);
  color: var(--color-primary);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-6);
}

.product-detail__description {
  color: var(--color-gray-600);
  margin-bottom: var(--space-8);
  line-height: var(--lh-relaxed);
}

/* Specs table */
.specs-table {
  width: 100%;
  margin-bottom: var(--space-8);
}

.specs-table th {
  width: 40%;
  background: var(--color-gray-50);
  font-size: var(--fs-sm);
}

.specs-table td {
  font-size: var(--fs-sm);
  color: var(--color-gray-700);
}

/* Advantages list */
.advantages-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-8);
}

.advantages-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-3) 0;
  font-size: var(--fs-sm);
  color: var(--color-gray-700);
}

.advantages-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-success);
  margin-top: 1px;
}

@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .product-detail__gallery {
    position: static;
  }
}

/* ═══════════════════════════════════════
   WIKI / BILINÇLI TÜKETICI
   ═══════════════════════════════════════ */

.wiki-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #06172b;
  color: #fff;
}
.wiki-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wiki-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 14, 31, 0.97) 0%,
    rgba(3, 20, 43, 0.76) 42%,
    rgba(3, 20, 43, 0.08) 76%
  );
}
.wiki-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 145px;
  padding-bottom: 60px;
}
.wiki-hero__eyebrow {
  display: block;
  margin-top: 30px;
  color: #36b9eb;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.wiki-hero h1 {
  max-width: 720px;
  margin: 16px 0 20px;
  color: #fff;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.055em;
}
.wiki-hero p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1.7;
}
.wiki-category-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.wiki-sidebar {
  padding: 24px;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.wiki-sidebar > h3 {
  margin: 0 0 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-gray-200);
  font-size: 18px;
}
.wiki-cat-link {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 0;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--color-gray-700);
  font: inherit;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
}
.wiki-cat-link span:last-child {
  min-width: 26px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--color-gray-100);
  font-size: 11px;
  text-align: center;
}
.wiki-cat-link:hover,
.wiki-cat-link.is-active {
  background: var(--color-primary-ghost);
  color: var(--color-primary);
}
.wiki-search {
  position: relative;
  margin-bottom: 28px;
}
.wiki-search input {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px 14px 48px;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  background: #fff;
  font-size: 16px;
  outline: 0;
  box-shadow: var(--shadow-sm);
}
.wiki-search input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-ghost);
}
.wiki-articles .card[hidden] {
  display: none;
}
.wiki-empty {
  padding: 44px;
  border: 1px dashed var(--color-gray-300);
  border-radius: var(--radius-lg);
  background: #fff;
  color: var(--color-gray-500);
  text-align: center;
}

.wiki-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--space-10);
  align-items: start;
}

/* Sidebar */
.wiki-sidebar {
  position: sticky;
  top: calc(var(--header-height) + var(--space-6));
}

.wiki-sidebar__search {
  margin-bottom: var(--space-6);
}

.wiki-sidebar__title {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-gray-900);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  margin-bottom: var(--space-4);
}

.wiki-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wiki-sidebar__list li {
  margin: 0;
}

.wiki-sidebar__link {
  display: block;
  padding: var(--space-2) var(--space-4);
  font-size: var(--fs-sm);
  color: var(--color-gray-600);
  border-radius: var(--radius-md);
  border-left: 3px solid transparent;
  transition: var(--transition-all);
}

.wiki-sidebar__link:hover {
  color: var(--color-primary);
  background-color: var(--color-primary-ghost);
}

.wiki-sidebar__link.is-active {
  color: var(--color-primary);
  background-color: var(--color-primary-lighter);
  border-left-color: var(--color-primary);
  font-weight: var(--fw-medium);
}

/* Article content */
.article-content {
  max-width: 780px;
}

.article-content h2 {
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}

.article-content h3 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-3);
}

.article-content p {
  margin-bottom: var(--space-5);
  max-width: none;
}

.article-content img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: var(--space-6) 0;
}

@media (max-width: 768px) {
  .wiki-hero {
    min-height: 520px;
  }
  .wiki-hero__image {
    object-position: 64% center;
  }
  .wiki-hero::after {
    background: linear-gradient(
      0deg,
      rgba(2, 14, 31, 0.97),
      rgba(3, 20, 43, 0.58) 68%,
      rgba(3, 20, 43, 0.12)
    );
  }
  .wiki-hero__content {
    padding-top: 120px;
    padding-bottom: 44px;
  }
  .wiki-hero h1 {
    font-size: clamp(40px, 11vw, 58px);
  }
  .wiki-hero p {
    font-size: 16px;
  }
  .wiki-layout {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .wiki-sidebar {
    position: static;
    overflow-x: auto;
    padding: 16px;
  }
  .wiki-sidebar > h3 {
    display: none;
  }
  .wiki-category-list {
    flex-direction: row;
    width: max-content;
  }
  .wiki-cat-link {
    width: auto;
    white-space: nowrap;
  }
}

.article-category {
  display: inline-flex;
  margin-top: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.article-reading {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}
.article-cover {
  display: block;
  width: 100%;
  max-height: 430px;
  margin: 0 auto 38px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.article-content {
  font-size: 17px;
  line-height: 1.8;
}
.article-content .article-summary {
  padding: 24px 28px;
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  background: var(--color-primary-ghost);
  color: var(--color-navy);
  font-weight: 600;
}
.article-content .article-warning {
  margin: 30px 0;
  padding: 22px 24px;
  border: 1px solid #f2d487;
  border-radius: var(--radius-lg);
  background: #fff8e5;
  color: #6f5200;
}
.article-content ul {
  padding-left: 22px;
}
.article-content li {
  margin: 10px 0;
}
.article-toc {
  margin: 30px 0;
  padding: 24px 28px;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  background: var(--color-gray-50);
}
.article-toc strong {
  color: var(--color-navy);
}
.article-toc ol {
  margin: 12px 0 0;
  padding-left: 20px;
}
.article-toc a {
  color: var(--color-primary);
}
.article-next-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 44px;
  padding: 30px;
  border-radius: var(--radius-xl);
  background: var(--color-navy);
  color: #fff;
}
.article-next-step strong {
  font-size: 20px;
  color: #fff;
}
.news-detail__body .article-next-step strong { color: #fff; }
.article-next-step .btn,
.news-detail__body .article-next-step .btn {
  color: #fff;
}
.article-next-step p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}
@media (max-width: 600px) {
  .article-next-step {
    flex-direction: column;
    align-items: flex-start;
  }
  .article-next-step .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════ */

.timeline {
  position: relative;
  padding-left: var(--space-10);
}

.timeline::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--color-primary),
    var(--color-gray-200)
  );
}

.timeline__item {
  position: relative;
  padding-bottom: var(--space-8);
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: calc(-1 * var(--space-10) + 8px);
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background-color: var(--color-primary);
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-md);
}

.timeline__year {
  font-family: var(--font-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.timeline__title {
  font-family: var(--font-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-2);
}

.timeline__text {
  font-size: var(--fs-sm);
  color: var(--color-gray-600);
  line-height: var(--lh-relaxed);
}

/* ═══════════════════════════════════════
   DEALERSHIP APPLICATION FORM
   ═══════════════════════════════════════ */

.dealership-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-12);
  align-items: start;
}

.dealership-form {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-md);
}

.dealership-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.advantage-card {
  padding: var(--space-6);
  background: var(--color-gray-50);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
  border-left: 4px solid var(--color-primary);
  transition: var(--transition-all);
}

.advantage-card:hover {
  background: var(--color-primary-lighter);
  transform: translateX(4px);
}

.advantage-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--color-gray-900);
  margin-bottom: var(--space-2);
}

.advantage-card__text {
  font-size: var(--fs-sm);
  color: var(--color-gray-600);
  line-height: var(--lh-relaxed);
}

@media (max-width: 768px) {
  .dealership-layout {
    grid-template-columns: 1fr;
  }

  .dealership-form__row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════
   DEALER LOGIN
   ═══════════════════════════════════════ */

.login-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  overflow: hidden;
}

.login-page__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.login-page__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  filter: blur(3px) brightness(0.3);
}

.login-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-2xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-2xl);
}

.login-card__logo {
  text-align: center;
  margin-bottom: var(--space-8);
}

.login-card__logo-text {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-navy);
}

.login-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--color-gray-900);
  text-align: center;
  margin-bottom: var(--space-2);
}

.login-card__subtitle {
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  text-align: center;
  margin-bottom: var(--space-8);
}

.login-card__forgot {
  display: block;
  text-align: right;
  font-size: var(--fs-sm);
  color: var(--color-primary);
  margin-top: calc(-1 * var(--space-3));
  margin-bottom: var(--space-6);
}

.login-card__forgot:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

.login-card__footer {
  text-align: center;
  margin-top: var(--space-6);
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
}

/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--space-12);
  align-items: start;
}

.contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-lighter);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  flex-shrink: 0;
}

.contact-info__icon svg {
  width: 22px;
  height: 22px;
}

.contact-info__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  color: var(--color-gray-400);
  margin-bottom: var(--space-1);
}

.contact-info__value {
  font-size: var(--fs-base);
  color: var(--color-gray-900);
  font-weight: var(--fw-medium);
}

.contact-info__value a {
  color: var(--color-gray-900);
}

.contact-info__value a:hover {
  color: var(--color-primary);
}

.contact-form {
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-gray-200);
  box-shadow: var(--shadow-md);
}

.contact-map {
  margin-top: var(--space-12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 400px;
  background: var(--color-gray-100);
  border: 1px solid var(--color-gray-200);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 280px;
  }
}

/* ═══════════════════════════════════════
   CTA BANNER (Bayilik)
   ═══════════════════════════════════════ */

.cta-banner {
  position: relative;
  padding: var(--space-16) 0;
  background: linear-gradient(
    135deg,
    var(--color-primary) 0%,
    var(--color-primary-dark) 50%,
    var(--color-navy) 100%
  );
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.1);
  pointer-events: none;
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  margin-bottom: var(--space-4);
}

.cta-banner__text {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-8);
}

.cta-banner__actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-banner {
    padding: var(--space-12) 0;
  }
  .cta-banner__title {
    font-size: var(--fs-2xl);
  }
}

/* ═══════════════════════════════════════
   SEARCH SECTION (Home)
   ═══════════════════════════════════════ */

.search-section {
  position: relative;
  z-index: 3;
  margin-top: calc(-1 * var(--space-10));
  padding: 0 var(--container-padding);
}

.search-section__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
  background: var(--color-white);
  padding: var(--space-8);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-gray-200);
}

.search-section__label {
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--color-gray-500);
  margin-bottom: var(--space-4);
}

@media (max-width: 992px) {
  .wiki-layout {
    grid-template-columns: 1fr !important;
  }
  .wiki-sidebar {
    position: relative !important;
    top: 0 !important;
  }
}

/* ═══════════════════════════════════════
   PRODUCT CATALOG & DETAIL
   ═══════════════════════════════════════ */

/* Corporate pages */
.corporate-page {
  background: #f7f9fc;
}
.corporate-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #071a2d;
  color: #fff;
}
.corporate-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.corporate-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 15, 33, 0.96) 0%,
    rgba(3, 18, 39, 0.76) 38%,
    rgba(3, 18, 39, 0.12) 72%
  );
}
.corporate-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 620px;
  padding-top: 152px;
  padding-bottom: 54px;
}
.corporate-hero__content .page-header__breadcrumbs {
  min-height: 24px;
  margin: 0;
}
.corporate-hero__content h1 {
  width: min(100%, 780px);
  min-height: 162px;
  display: flex;
  align-items: flex-start;
  margin: 24px 0 20px;
  color: #fff;
  font-size: clamp(52px, 5.4vw, 78px);
  line-height: 1.01;
  letter-spacing: -0.052em;
  text-wrap: balance;
}
.corporate-hero__content p {
  width: min(100%, 680px);
  min-height: 62px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.7;
  text-wrap: pretty;
}
.corporate-hero .page-header__breadcrumbs,
.corporate-hero .page-header__breadcrumbs a {
  color: rgba(255, 255, 255, 0.72);
}
.corporate-body {
  padding: 88px 0;
  background: #fff;
}
.corporate-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}
.corporate-intro__eyebrow {
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.corporate-intro h2 {
  margin: 14px 0 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}
.corporate-intro__copy p {
  margin: 0 0 18px;
  color: var(--color-gray-600);
  font-size: 17px;
  line-height: 1.8;
}
.corporate-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 58px;
}
.corporate-pillar {
  padding: 28px;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  background: #f8fafc;
}
.corporate-pillar strong {
  display: block;
  margin-bottom: 10px;
  color: var(--color-navy);
  font-size: 18px;
}
.corporate-pillar p {
  margin: 0;
  color: var(--color-gray-600);
  line-height: 1.65;
}
.corporate-values {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 768px) {
  .corporate-hero {
    min-height: 560px;
  }
  .corporate-hero__image {
    object-position: 62% center;
  }
  .corporate-hero::after {
    background: linear-gradient(
      0deg,
      rgba(3, 15, 33, 0.96) 0%,
      rgba(3, 18, 39, 0.62) 62%,
      rgba(3, 18, 39, 0.15) 100%
    );
  }
  .corporate-hero__content {
    min-height: 560px;
    padding-top: 126px;
    padding-bottom: 42px;
  }
  .corporate-hero__content h1 {
    min-height: 0;
    margin-top: 20px;
    font-size: clamp(38px, 10.5vw, 56px);
    line-height: 1.02;
    text-wrap: wrap;
  }
  .corporate-hero__content p {
    min-height: 0;
    font-size: 16px;
    line-height: 1.6;
  }
  .corporate-body {
    padding: 64px 0;
  }
  .corporate-intro,
  .corporate-pillars,
  .corporate-values {
    grid-template-columns: 1fr;
  }
  .corporate-intro {
    gap: 28px;
  }
  .corporate-pillars {
    margin-top: 38px;
  }
}

@media (max-width: 420px) {
  .corporate-hero,
  .corporate-hero__content {
    min-height: 530px;
  }
  .corporate-hero__content {
    padding-top: 112px;
  }
  .corporate-hero__content h1 {
    font-size: clamp(34px, 10vw, 44px);
  }
}

/* Products brand introduction */
.product-brand-hero {
  position: relative;
  overflow: hidden;
  margin-top: var(--header-height, 100px);
  padding: 88px 0 74px;
  background: linear-gradient(125deg, #06172b 0%, #0a3157 62%, #0757b9 100%);
  color: #fff;
}
.product-brand-hero::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -180px;
  border: 72px solid rgba(46, 185, 235, 0.13);
  border-radius: 50%;
}
.product-brand-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 70px;
  align-items: center;
}
.product-brand-hero__eyebrow {
  color: #42c5f5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.product-brand-hero h1 {
  max-width: 800px;
  margin: 18px 0 20px;
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.05em;
}
.product-brand-hero h1 span {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: #168ee1;
  background: linear-gradient(
    90deg,
    #168ee1 0%,
    #249fdf 22%,
    #ffd21f 50%,
    #f28a24 72%,
    #e72c32 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-brand-hero__copy p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.7;
}
.product-brand-hero__brand {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  text-align: center;
}
.product-brand-hero__brand img {
  width: min(100%, 250px);
  height: auto;
}
.product-brand-hero__brand span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .product-brand-hero {
    padding: 64px 0 54px;
  }
  .product-brand-hero__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .product-brand-hero h1 {
    font-size: clamp(40px, 11vw, 58px);
  }
  .product-brand-hero__brand {
    min-height: 170px;
    padding: 28px;
  }
}

.product-catalog-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 72px;
  background: linear-gradient(125deg, #071a2d, #0b3151);
  color: var(--color-white);
}

.product-catalog-hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -90px;
  top: -170px;
  border: 76px solid rgba(24, 173, 228, 0.13);
  border-radius: 50%;
}

.product-catalog-hero__content {
  position: relative;
  z-index: 1;
}
.product-catalog-hero .page-header__breadcrumbs {
  color: rgba(255, 255, 255, 0.68);
}
.product-catalog-hero .page-header__breadcrumbs a {
  color: var(--color-white);
}
.product-catalog-hero h1 {
  max-width: 820px;
  margin: 22px 0 18px;
  color: var(--color-white);
  font-size: clamp(44px, 7vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.product-catalog-hero h1 span {
  color: #30b9eb;
}
.product-catalog-hero p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.7;
}

.product-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}
.product-filter-bar button {
  padding: 11px 17px;
  border: 1px solid var(--color-gray-300);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-navy);
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s ease;
}
.product-filter-bar button:hover,
.product-filter-bar button.is-active {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.catalog-card {
  --product-accent: #0aa9e8;
  --product-dark: #173f90;
  display: grid;
  grid-template-rows: auto 300px 1fr;
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  background: var(--color-gray-50);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}
.catalog-card__meta {
  display: flex;
  justify-content: space-between;
  padding: 18px 22px 0;
  color: var(--product-dark);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.catalog-card__visual {
  position: relative;
  display: grid;
  place-items: center;
  margin: 12px 25px 0;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--product-accent) 16%, white),
    transparent 66%
  );
}
.catalog-card__visual::before {
  content: "";
  position: absolute;
  width: 205px;
  height: 205px;
  border: 1px solid color-mix(in srgb, var(--product-accent) 38%, white);
  border-radius: 50%;
}
.catalog-card__visual img {
  position: relative;
  z-index: 1;
  width: auto;
  height: 275px;
  object-fit: contain;
  filter: drop-shadow(0 20px 18px rgba(18, 35, 52, 0.16));
  transition: transform 0.25s ease;
}
.catalog-card:hover .catalog-card__visual img {
  transform: translateY(-6px);
}
.catalog-card__body {
  padding: 28px 30px 30px;
  border-top: 1px solid var(--color-gray-200);
  background: var(--color-white);
}
.catalog-card__family {
  margin: 0;
  color: var(--product-accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.catalog-card__body h2 {
  margin: 8px 0 10px;
  font-size: 29px;
  letter-spacing: -0.035em;
}
.catalog-card__body > p:not(.catalog-card__family) {
  min-height: 50px;
  margin: 0;
  color: var(--color-gray-600);
  line-height: 1.6;
}
.catalog-card__variants {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}
.catalog-card__variants span {
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--color-gray-100);
  font-size: 12px;
  font-weight: 800;
}
.catalog-card__link {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--color-gray-200);
  color: var(--product-dark);
  font-weight: 800;
  text-decoration: none;
}
.catalog-card__link span {
  color: var(--product-accent);
}

.product-detail-page {
  --product-accent: #0aa9e8;
  --product-dark: #173f90;
}
.product-detail-hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: transparent;
  color: var(--color-gray-900, #111827);
  padding-top: var(--header-height);
}
.product-detail-hero::after {
  display: none;
}
.product-detail-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 600px;
}
.product-detail-hero__copy {
  padding: 40px 0;
}
.product-detail-hero__back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--color-gray-500, #6b7280);
  font-size: 13px;
  text-decoration: none;
}
.product-detail-hero__eyebrow {
  color: var(--product-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.product-detail-hero h1 {
  max-width: 660px;
  margin: 20px 0 24px;
  color: var(--color-gray-900, #111827);
  font-size: clamp(48px, 6vw, 78px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}
.product-detail-hero__summary {
  max-width: 600px;
  margin: 0;
  color: var(--color-gray-600, #4b5563);
  font-size: 17px;
  line-height: 1.7;
}
.product-detail-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
}
.product-detail-hero__badges span {
  padding: 8px 12px;
  border: 1px solid var(--color-gray-300, #d1d5db);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: var(--color-gray-700, #374151);
}
.product-variant-selector {
  margin-top: 34px;
}
.product-variant-selector > strong {
  display: block;
  margin-bottom: 11px;
  color: var(--color-gray-500, #6b7280);
  font-size: 12px;
}
.product-variant-selector__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-variant-selector button {
  min-width: 76px;
  padding: 11px 15px;
  border: 1px solid var(--color-gray-300, #d1d5db);
  border-radius: 5px;
  background: transparent;
  color: var(--color-gray-800, #1f2937);
  font-weight: 800;
  cursor: pointer;
}
.product-variant-selector button:hover,
.product-variant-selector button.is-active {
  border-color: var(--product-dark);
  background: var(--product-dark);
  color: var(--color-white);
}
.product-detail-hero__visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 610px;
}
.product-detail-hero__visual img {
  width: auto;
  height: 540px;
  object-fit: contain;
  filter: drop-shadow(0 34px 24px rgba(0, 0, 0, 0.34));
}
.product-detail-hero__variant {
  position: absolute;
  right: 10%;
  bottom: 55px;
  padding: 10px 14px;
  border-radius: 5px;
  background: var(--product-accent);
  color: var(--color-white);
  font-weight: 800;
}

.product-detail-content {
  padding: 95px 0;
}
.product-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.product-intro h2 {
  margin: 10px 0 18px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}
.product-intro p {
  color: var(--color-gray-600);
  font-size: 17px;
  line-height: 1.8;
}
.product-benefits {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--color-gray-200);
}
.product-benefits li {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-gray-200);
  font-weight: 700;
  line-height: 1.5;
}
.product-benefits span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--product-accent);
  color: var(--color-white);
}
.product-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 80px 0;
  border: 1px solid var(--color-gray-200);
}
.product-specs div {
  min-height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 23px;
  border-right: 1px solid var(--color-gray-200);
}
.product-specs div:last-child {
  border-right: 0;
}
.product-specs span {
  color: var(--color-gray-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-specs strong {
  margin-top: 10px;
  font-size: 18px;
}
.product-technical {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 25px;
}
.product-table-panel,
.product-warning-panel {
  padding: 40px;
  border: 1px solid var(--color-gray-200);
  background: var(--color-gray-50);
}
.product-table-panel h2,
.product-warning-panel h2 {
  margin: 10px 0 26px;
  font-size: 34px;
}
.product-table-scroll {
  overflow-x: auto;
}
.product-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
}
.product-table th,
.product-table td {
  padding: 15px 16px;
  border: 1px solid var(--color-gray-200);
  text-align: left;
  white-space: nowrap;
}
.product-table th {
  background: var(--color-navy);
  color: var(--color-white);
  font-size: 12px;
}
.product-table td {
  font-size: 14px;
  font-weight: 700;
}
.product-warning-panel {
  background: #f6f1e5;
}
.product-warning-panel__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f2c91c;
  font-weight: 900;
}
.product-warning-panel ul {
  padding-left: 20px;
  color: var(--color-gray-700);
  line-height: 1.65;
}
.product-warning-panel li {
  margin: 11px 0;
}
.product-contact-cta {
  margin-top: 72px;
  padding: 48px 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  background: var(--color-navy);
  color: var(--color-white);
}
.product-contact-cta h2 {
  max-width: 700px;
  margin: 8px 0 0;
  color: var(--color-white);
  font-size: 38px;
}

@media (max-width: 900px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .product-detail-hero__inner,
  .product-intro,
  .product-technical {
    grid-template-columns: 1fr;
  }
  .product-detail-hero__copy {
    padding-bottom: 20px;
  }
  .product-detail-hero__visual {
    min-height: 520px;
  }
  .product-detail-hero__visual img {
    height: 470px;
  }
  .product-specs {
    grid-template-columns: 1fr 1fr;
  }
  .product-specs div:nth-child(2) {
    border-right: 0;
  }
  .product-specs div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--color-gray-200);
  }
  .product-contact-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .product-catalog-hero {
    padding: 90px 0 60px;
  }
  .catalog-card {
    grid-template-rows: auto 260px 1fr;
  }
  .catalog-card__visual img {
    height: 240px;
  }
  .catalog-card__body {
    padding: 24px 22px;
  }
  .product-detail-hero__copy {
    padding-top: 45px;
  }
  .product-detail-hero__back {
    margin-bottom: 36px;
  }
  .product-detail-hero__visual {
    min-height: 440px;
  }
  .product-detail-hero__visual img {
    height: 400px;
  }
  .product-detail-content {
    padding: 70px 0;
  }
  .product-specs {
    grid-template-columns: 1fr;
  }
  .product-specs div {
    border-right: 0;
    border-bottom: 1px solid var(--color-gray-200);
  }
  .product-table-panel,
  .product-warning-panel {
    padding: 27px 20px;
  }
  .product-contact-cta {
    padding: 38px 28px;
  }
  .product-contact-cta h2 {
    font-size: 30px;
  }
}

/* Dealership application and contact pages */
.action-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #04142b;
}

.action-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.action-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 15, 35, 0.96) 0%,
    rgba(3, 24, 55, 0.82) 42%,
    rgba(3, 24, 55, 0.18) 76%,
    rgba(3, 24, 55, 0.08) 100%
  );
}

.action-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 180px;
  padding-bottom: 72px;
}

.action-hero__eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  color: #f5c400;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.action-hero h1 {
  max-width: 760px;
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.action-hero p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.7;
}

.form-intro {
  margin-bottom: 28px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.dealership-form-logo { display: none; }

.form-responsive-row {
  gap: 18px;
  margin-bottom: 18px;
}

.form-consent {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px 12px;
  align-items: start;
  margin: 22px 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

.form-consent input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--color-primary);
}

.form-consent .form__error {
  grid-column: 2;
}

.form-consent input.form__input--error {
  outline: 2px solid var(--color-error);
  outline-offset: 2px;
}

.contact-location-note {
  padding: 42px 0;
  background: #edf3f9;
  color: #314158;
}

.contact-location-note strong {
  display: block;
  margin-bottom: 7px;
  color: #071d3a;
  font-size: 18px;
}

.contact-location-note p {
  max-width: 760px;
  margin: 0;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .dealership-form-logo {
    display: block;
    width: min(180px, 58%);
    height: auto;
    margin: 0 auto var(--space-6);
  }

  .dealership-form-card > h3 { text-align: center; }

  .action-hero {
    min-height: 520px;
  }

  .action-hero__image {
    object-position: 62% center;
  }

  .action-hero::after {
    background: linear-gradient(
      90deg,
      rgba(2, 15, 35, 0.97) 0%,
      rgba(3, 24, 55, 0.86) 65%,
      rgba(3, 24, 55, 0.5) 100%
    );
  }

  .action-hero__content {
    padding-top: 148px;
    padding-bottom: 52px;
  }

  .action-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .action-hero p {
    font-size: 16px;
    line-height: 1.6;
  }

  .form-responsive-row {
    grid-template-columns: 1fr !important;
  }
}

/* Product pages: touch-first tablet and phone layout */
@media (max-width: 900px) {
  .product-catalog-page,
  .product-detail-page {
    overflow-x: clip;
  }

  .product-catalog-hero h1,
  .product-detail-hero h1 {
    max-width: 100%;
    font-size: clamp(42px, 9vw, 64px);
    overflow-wrap: anywhere;
  }

  .product-filter-bar {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .product-filter-bar::-webkit-scrollbar {
    display: none;
  }

  .product-filter-bar button {
    flex: 0 0 auto;
    min-height: 44px;
    white-space: nowrap;
  }

  .catalog-card,
  .catalog-card__body > p:not(.catalog-card__family) {
    min-height: 0;
  }

  .catalog-card__link,
  .product-detail-hero__back,
  .product-contact-cta .btn {
    min-height: 44px;
  }

  .product-detail-hero,
  .product-detail-hero__inner {
    min-height: 0;
  }

  .product-detail-hero__copy {
    padding: 54px 0 12px;
  }

  .product-detail-hero__visual {
    min-height: 460px;
  }

  .product-detail-hero__visual img {
    width: min(90vw, 430px);
    height: clamp(350px, 58vw, 450px);
    max-width: 100%;
  }

  .product-variant-selector button {
    min-height: 44px;
  }

  .product-table-scroll {
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 560px) {
  .product-catalog-hero {
    padding: 76px 0 50px;
  }

  .product-catalog-hero h1,
  .product-detail-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1.02;
  }

  .product-catalog-hero p,
  .product-detail-hero__summary {
    font-size: 16px;
    line-height: 1.65;
  }

  .product-filter-bar {
    margin-right: -16px;
    margin-left: -16px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .catalog-grid {
    gap: 18px;
  }

  .catalog-card {
    grid-template-rows: auto 230px auto;
  }

  .catalog-card__meta {
    padding: 18px 20px 0;
  }

  .catalog-card__visual img {
    height: 215px;
    max-width: 86%;
  }

  .catalog-card__body {
    padding: 20px;
  }

  .catalog-card__body h2 {
    font-size: 24px;
  }

  .product-detail-hero__copy {
    padding-top: 42px;
  }

  .product-detail-hero__back {
    display: inline-flex;
    align-items: center;
    margin-bottom: 28px;
  }

  .product-detail-hero__badges {
    gap: 8px;
  }

  .product-detail-hero__badges span {
    padding: 7px 10px;
    font-size: 11px;
  }

  .product-variant-selector__buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .product-variant-selector button {
    min-width: 0;
    padding-right: 8px;
    padding-left: 8px;
  }

  .product-detail-hero__visual {
    min-height: 390px;
  }

  .product-detail-hero__visual img {
    width: min(88vw, 360px);
    height: 360px;
  }

  .product-detail-hero__variant {
    right: 16px;
    bottom: 18px;
  }

  .product-detail-content {
    padding: 62px 0;
  }

  .product-intro {
    gap: 26px;
  }

  .product-intro h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .product-specs {
    gap: 10px;
    margin: 48px 0;
    border: 0;
  }

  .product-specs div {
    min-height: 100px;
    padding: 18px;
    border: 1px solid var(--color-gray-200);
  }

  .product-technical {
    gap: 18px;
  }

  .product-table-panel,
  .product-warning-panel {
    padding: 24px 18px;
  }

  .product-table th,
  .product-table td {
    min-width: 118px;
    padding: 12px;
  }

  .product-contact-cta {
    margin-top: 48px;
    padding: 34px 22px;
  }

  .product-contact-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .product-catalog-hero h1,
  .product-detail-hero h1 {
    font-size: 36px;
  }

  .product-detail-hero__visual {
    min-height: 350px;
  }

  .product-detail-hero__visual img {
    width: min(88vw, 320px);
    height: 320px;
  }

  .product-variant-selector button {
    font-size: 12px;
  }
}

/* All products page showcase */
.product-catalog-hero.product-catalog-hero--showcase {
  padding: 0;
  background: #020b1a;
}

.product-catalog-hero--showcase::after {
  display: none;
}

.product-catalog-hero__showcase-image {
  display: block;
  width: 100%;
  height: auto;
}

.product-catalog-hero__screen-reader-title {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Square product imagery */
.catalog-card {
  grid-template-rows: auto auto 1fr;
}

.catalog-card__visual {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.catalog-card__visual img {
  width: 82%;
  height: 82%;
  max-width: 320px;
  max-height: 320px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.product-detail-hero__visual {
  width: 100%;
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.product-detail-hero__visual img {
  width: 82%;
  height: 82%;
  max-width: 520px;
  max-height: 520px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

@media (max-width: 560px) {
  .catalog-card__visual {
    margin-right: 18px;
    margin-left: 18px;
  }

  .catalog-card__visual img,
  .product-detail-hero__visual img {
    width: 86%;
    height: 86%;
  }
}

/* Unified hero rhythm across visitor-facing inner pages */
:root {
  --inner-hero-height: 580px;
  --inner-hero-bg: #061a33;
  --inner-hero-gradient: linear-gradient(
    115deg,
    #06172b 0%,
    #0a3157 64%,
    #0757b9 100%
  );
  --inner-hero-title-size: clamp(48px, 5.2vw, 72px);
}

.page-header,
.hero,
.wiki-hero,
.corporate-hero,
.action-hero,
.product-brand-hero {
  min-height: var(--inner-hero-height);
  background-color: var(--inner-hero-bg);
}
.product-detail-hero,
.product-detail-hero__inner {
  min-height: var(--inner-hero-height);
}

.hero {
  height: clamp(700px, 85vh, 900px);
  min-height: 700px;
  aspect-ratio: auto;
}

.hero__content {
  padding-top: calc(var(--header-height) + 48px);
}

.page-header {
  display: flex;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 64px;
  background: var(--inner-hero-gradient);
}

.wiki-hero__content,
.corporate-hero__content,
.action-hero__content,
.product-brand-hero__inner {
  min-height: var(--inner-hero-height);
}

.wiki-hero__content,
.corporate-hero__content,
.action-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 118px;
  padding-bottom: 54px;
}

.wiki-hero::after,
.corporate-hero::after,
.action-hero::after {
  background: linear-gradient(
    90deg,
    rgba(2, 15, 35, 0.96) 0%,
    rgba(3, 24, 55, 0.8) 44%,
    rgba(3, 24, 55, 0.16) 78%,
    rgba(3, 24, 55, 0.08) 100%
  );
}

.page-header__title,
.wiki-hero h1,
.corporate-hero__content h1,
.action-hero h1,
.product-brand-hero h1 {
  min-height: 0;
  font-size: var(--inner-hero-title-size);
  line-height: 1;
  letter-spacing: -0.05em;
}

.page-header__description,
.wiki-hero p,
.corporate-hero__content p,
.action-hero p,
.product-brand-hero__copy p {
  min-height: 0;
  font-size: 18px;
  line-height: 1.65;
}

.product-brand-hero {
  display: flex;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--inner-hero-gradient);
}

.product-detail-hero__copy {
  padding-top: 48px;
  padding-bottom: 48px;
}

.product-detail-hero__back {
  margin-bottom: 30px;
}

.product-detail-hero__visual {
  min-height: 520px;
}

.product-detail-hero__visual img {
  width: min(82%, 460px);
  height: 460px;
}

@media (max-width: 768px) {
  :root {
    --inner-hero-height: 500px;
    --inner-hero-title-size: clamp(38px, 10.5vw, 54px);
  }

  .page-header {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .hero {
    height: 680px;
    min-height: 680px;
  }

  .hero__content {
    padding-top: calc(var(--header-height) + 30px);
  }

  .wiki-hero__content,
  .corporate-hero__content,
  .action-hero__content {
    padding-top: 104px;
    padding-bottom: 42px;
  }

  .wiki-hero::after,
  .corporate-hero::after,
  .action-hero::after {
    background: linear-gradient(
      0deg,
      rgba(2, 15, 35, 0.97) 0%,
      rgba(3, 24, 55, 0.72) 70%,
      rgba(3, 24, 55, 0.22) 100%
    );
  }

  .page-header__description,
  .wiki-hero p,
  .corporate-hero__content p,
  .action-hero p,
  .product-brand-hero__copy p {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 420px) {
  :root {
    --inner-hero-height: 480px;
    --inner-hero-title-size: clamp(34px, 10vw, 44px);
  }
}

.product-assets {
  margin-top: 80px;
  padding: 46px;
  border: 1px solid var(--color-gray-200);
  border-radius: 28px;
  background: linear-gradient(145deg, #f8fbfe, #eef5fa);
}

.product-assets__header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 30px;
}

.product-assets__header h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -.04em;
}

.product-assets__header p {
  max-width: 480px;
  margin: 0;
  color: var(--color-gray-600);
  line-height: 1.7;
}

.product-assets__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-assets__image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--color-gray-200);
  border-radius: 18px;
  background: #fff;
}

.product-assets__image img {
  width: 100%;
  height: 100%;
  padding: 18px;
  object-fit: contain;
  transition: transform .35s ease;
}

.product-assets__image span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(3, 24, 44, .82);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .25s ease, transform .25s ease;
}

.product-assets__image:hover img { transform: scale(1.045); }
.product-assets__image:hover span,
.product-assets__image:focus-visible span { opacity: 1; transform: translateY(0); }

.product-assets__document {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 18px 20px;
  border: 1px solid rgba(10, 169, 232, .22);
  border-radius: 16px;
  background: #fff;
  color: var(--color-navy);
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.product-assets__document:hover {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.product-assets__document-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 13px;
  background: #e52d3d;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.product-assets__document strong,
.product-assets__document small { display: block; }
.product-assets__document small { margin-top: 4px; color: var(--color-gray-500); }
.product-assets__document-arrow { margin-left: auto; color: var(--color-primary); font-size: 24px; }

@media (max-width: 768px) {
  .product-assets { margin-top: 46px; padding: 22px 16px; border-radius: 18px; }
  .product-assets__header { align-items: flex-start; flex-direction: column; gap: 12px; }
  .product-assets__header h2 { font-size: 28px; }
  .product-assets__header p { font-size: 14px; line-height: 1.55; }
  .product-assets__gallery {
    display: flex;
    gap: 10px;
    margin-right: -16px;
    padding-right: 16px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .product-assets__gallery::-webkit-scrollbar { display: none; }
  .product-assets__image {
    width: 126px;
    flex: 0 0 126px;
    border-radius: 14px;
    scroll-snap-align: start;
  }
  .product-assets__image img { padding: 10px; }
  .product-assets__image span { display: none; }
  .product-assets__document { gap: 11px; padding: 12px; border-radius: 13px; }
  .product-assets__document-icon { width: 40px; height: 40px; border-radius: 9px; font-size: 10px; }
  .product-assets__document strong { font-size: 13px; }
  .product-assets__document small { font-size: 10px; }
}

@media (max-width: 420px) {
  .product-assets__image { width: 112px; flex-basis: 112px; }
}

/* ==================================================
   VISITOR SITE — FINAL TABLET & MOBILE POLISH LAYER
   ================================================== */
@media (max-width: 1024px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

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

  .header,
  .header.is-scrolled {
    height: 76px;
  }

  .header__logo-img {
    width: auto;
    height: 34px;
  }

  .header__inner {
    gap: 14px;
  }

  .header__actions {
    gap: 8px;
  }

  .lang-dropdown__btn {
    min-height: 42px;
    padding: 8px 11px;
  }

  .mobile-menu {
    padding-top: 96px;
  }

  .section__header {
    margin-bottom: 36px;
  }

  .product-brand-hero__inner {
    gap: 34px;
  }

  .product-detail-hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-detail-hero__copy {
    padding-top: 112px;
    padding-bottom: 18px;
  }

  .product-detail-hero__visual {
    min-height: 410px;
  }

  .product-detail-hero__visual img {
    width: min(78vw, 420px);
    height: 410px;
  }

  .footer__main {
    gap: 34px;
  }
}

@media (max-width: 768px) {
  :root {
    --mobile-gutter: 18px;
  }

  body {
    font-size: 15px;
  }

  .container,
  .container--wide,
  .container--narrow {
    width: 100%;
    padding-right: var(--mobile-gutter);
    padding-left: var(--mobile-gutter);
  }

  .section,
  .corporate-body,
  .product-detail-content {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section--lg {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section__header {
    margin-bottom: 30px;
  }

  .section__header h2,
  .corporate-intro h2,
  .product-intro h2,
  .product-contact-cta h2 {
    font-size: clamp(28px, 8.5vw, 38px);
    line-height: 1.08;
    overflow-wrap: anywhere;
  }

  .text-lead {
    font-size: 16px;
    line-height: 1.65;
  }

  .grid,
  .layout-split,
  .corporate-intro,
  .corporate-pillars,
  .corporate-values,
  .contact-layout {
    gap: 24px;
  }

  .layout-split > *,
  .grid > *,
  .product-detail-hero__inner > *,
  .product-intro > *,
  .product-technical > * {
    min-width: 0;
  }

  .layout-split [style*="padding-left"] {
    padding-left: 0 !important;
  }

  .layout-split img,
  .article-cover {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
  }

  .header,
  .header.is-scrolled {
    height: 68px;
  }

  .header__inner {
    padding-right: 14px;
    padding-left: 14px;
  }

  .header__logo-img {
    height: 30px;
    max-width: 118px;
    object-fit: contain;
  }

  .lang-dropdown__btn {
    min-width: 62px;
    min-height: 40px;
    font-size: 13px;
  }

  .header__hamburger {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    padding-top: 84px;
  }

  .mobile-menu__link {
    min-height: 46px;
    font-size: clamp(17px, 5vw, 21px);
  }

  .mobile-menu__sub-link {
    min-height: 44px;
  }

  /* Home hero */
  .hero {
    height: min(680px, calc(100svh - 80px));
    min-height: 600px;
    padding: 0;
    align-items: flex-end;
  }

  .hero__bg img {
    object-position: center center;
  }

  .hero__overlay {
    background: linear-gradient(0deg, rgba(2, 13, 31, .96) 0%, rgba(3, 24, 55, .72) 56%, rgba(3, 24, 55, .26) 100%);
  }

  .hero__content {
    padding-top: 48px;
    padding-bottom: 104px;
  }

  .hero__grid {
    display: block;
  }

  .hero__left {
    max-width: 560px;
  }

  .hero__right {
    display: none;
  }

  .hero__title {
    margin-bottom: 18px;
    font-size: clamp(36px, 10.5vw, 50px);
    line-height: 1.02;
    letter-spacing: -.045em;
    overflow-wrap: normal;
  }

  .hero__subtitle {
    max-width: 34rem;
    font-size: 16px;
    line-height: 1.6;
  }

  .section--search-hero {
    z-index: 20 !important;
    margin-top: -32px;
    padding: 0 0 38px !important;
    transform: none !important;
  }

  .hero-search {
    width: 100%;
    min-height: 60px;
  }

  .hero-search__input {
    height: 60px;
    padding-right: 18px;
    padding-left: 54px;
    font-size: 15px;
  }

  .wiki-preview .card__image,
  .wiki-articles .card__image {
    width: calc(100% - 24px);
    margin: 12px 12px 0;
    border: 2px solid var(--color-gray-200);
    border-radius: 12px;
  }

  .stats-container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
    padding: 16px !important;
  }

  .stat-modern {
    min-width: 0;
    padding: 16px 8px;
  }

  .stat-modern__number {
    font-size: clamp(28px, 9vw, 42px);
  }

  .feature-box,
  .card,
  .product-card__body {
    padding-right: 20px;
    padding-left: 20px;
  }

  .product-card__image-wrap {
    min-height: 230px;
    padding: 16px;
  }

  .product-card__image {
    width: 100% !important;
    height: 205px !important;
    padding: 12px !important;
    object-fit: contain;
  }

  .product-card__hover-cta {
    display: none;
  }

  .partner-logo {
    min-width: 150px;
    padding: 14px 18px;
    font-size: 14px;
  }

  /* Inner page heroes */
  .page-header,
  .wiki-hero,
  .corporate-hero,
  .action-hero {
    min-height: 500px;
  }

  .page-header {
    margin-top: 68px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .wiki-hero__content,
  .corporate-hero__content,
  .action-hero__content {
    min-height: 500px;
    padding-top: 104px;
    padding-bottom: 42px;
  }

  .page-header__breadcrumbs {
    gap: 6px;
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.45;
  }

  .page-header__title,
  .wiki-hero h1,
  .corporate-hero__content h1,
  .action-hero h1,
  .product-brand-hero h1 {
    width: 100%;
    margin-top: 16px;
    margin-bottom: 16px;
    font-size: clamp(36px, 10vw, 50px);
    line-height: 1.03;
    letter-spacing: -.04em;
    overflow-wrap: anywhere;
  }

  .wiki-hero__image,
  .corporate-hero__image,
  .action-hero__image {
    object-position: 64% center;
  }

  .corporate-intro,
  .product-intro,
  .product-technical {
    grid-template-columns: minmax(0, 1fr);
  }

  .corporate-pillars,
  .corporate-values {
    grid-template-columns: minmax(0, 1fr);
  }

  .corporate-pillar {
    padding: 22px;
  }

  .corporate-body .grid img[style*="margin-top"] {
    margin-top: 0 !important;
  }

  /* Wiki */
  .wiki-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .wiki-sidebar {
    position: static;
    width: 100%;
    max-height: none;
  }

  .wiki-category-list,
  .wiki-sidebar__list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .wiki-category-list::-webkit-scrollbar,
  .wiki-sidebar__list::-webkit-scrollbar {
    display: none;
  }

  .wiki-category-list > *,
  .wiki-sidebar__list > * {
    flex: 0 0 auto;
  }

  .wiki-cat-link,
  .wiki-sidebar__link {
    min-height: 44px;
    white-space: nowrap;
  }

  .article-cover {
    border-radius: 14px;
  }

  /* Products */
  .product-brand-hero {
    min-height: auto;
    margin-top: 68px;
    padding: 52px 0;
  }

  .product-brand-hero__inner {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .product-brand-hero__brand {
    min-height: 140px;
    padding: 22px;
  }

  .product-brand-hero__brand img {
    width: min(68vw, 220px);
  }

  .product-filter-bar {
    margin-right: calc(var(--mobile-gutter) * -1);
    margin-left: calc(var(--mobile-gutter) * -1);
    padding-right: var(--mobile-gutter);
    padding-left: var(--mobile-gutter);
  }

  .catalog-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .catalog-card__body {
    padding: 22px;
  }

  .product-detail-hero,
  .product-detail-hero__inner {
    min-height: 0;
  }

  .product-detail-hero__copy {
    padding-top: 108px;
    padding-bottom: 8px;
  }

  .product-detail-hero h1 {
    font-size: clamp(36px, 11vw, 50px);
    overflow-wrap: anywhere;
  }

  .product-detail-hero__visual {
    min-height: 350px;
  }

  .product-detail-hero__visual img {
    width: min(82vw, 340px);
    height: 330px;
  }

  .product-detail-hero__variant {
    right: 12px;
    bottom: 14px;
    font-size: 12px;
  }

  .product-variant-selector__buttons {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-variant-selector button {
    min-width: 0;
    min-height: 44px;
  }

  .product-specs {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-table-scroll {
    width: 100%;
    overflow-x: auto;
  }

  .product-contact-cta {
    align-items: stretch;
    padding: 28px 20px;
  }

  .product-contact-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* Forms and contact */
  .action-hero + .section .layout-split {
    align-items: start;
  }

  .action-hero + .section .layout-split > div > div[style*="box-shadow"] {
    padding: 20px !important;
    border-radius: 16px !important;
  }

  .form__input,
  .form__select,
  .form__textarea {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
  }

  .form__textarea {
    min-height: 130px;
  }

  .form-responsive-row,
  form .grid--2 {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 16px !important;
  }

  form .btn[type="submit"] {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }

  .contact-info__item {
    gap: 14px;
    padding: 18px 0;
  }

  .contact-info__value,
  .contact-info__value a,
  .footer__contact-item,
  .footer__contact-item a {
    overflow-wrap: anywhere;
  }

  .contact-location-note {
    padding: 32px 0;
  }

  .global-search-fab {
    right: 16px;
    bottom: max(16px, env(safe-area-inset-bottom));
    width: 50px;
    height: 50px;
  }

  .global-search-fab svg {
    width: 20px;
    height: 20px;
  }

  /* Footer */
  .footer {
    padding-top: 48px;
  }

  .footer__main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    padding-bottom: 38px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__column:last-child {
    grid-column: 1 / -1;
  }

  .footer__description {
    max-width: 100%;
  }

  .footer__social-link {
    width: 44px;
    height: 44px;
  }

  .footer__links a {
    min-height: 38px;
    align-items: center;
  }

  .footer__bottom {
    align-items: center;
    flex-direction: column;
    gap: 10px;
  }

  .footer__legal {
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: clamp(6px, 2vw, 10px);
  }

  .footer__legal a {
    flex: 0 1 auto;
    font-size: clamp(8px, 2.5vw, 11px);
    line-height: 1.35;
    white-space: nowrap;
  }

  .footer__bottom {
    padding: 22px 0;
  }
}

/* Product family hero showcase */
.product-brand-hero {
  isolation: isolate;
  overflow: hidden;
  margin-top: 0;
  background: #03182c url('../images/hero/basixa-products-hero-bg.webp') center/cover no-repeat;
}

@media (min-width: 769px) {
  .product-brand-hero__inner {
    padding-top: var(--header-height, 80px);
  }
}

.product-brand-hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 24, 44, .96) 0%, rgba(3, 31, 56, .86) 38%, rgba(5, 59, 101, .34) 62%, rgba(7, 75, 128, .10) 100%);
}

.product-brand-hero__copy { position: relative; z-index: 3; }

.product-brand-hero__backdrop {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.product-brand-hero__backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,24,44,.92) 0%, rgba(3,31,56,.78) 44%, rgba(5,65,111,.48) 100%);
}

.product-brand-hero__backdrop img {
  position: absolute;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  object-fit: cover;
  opacity: .22;
  filter: saturate(.7) blur(1.5px);
  mix-blend-mode: luminosity;
}

.product-brand-hero__backdrop img:nth-child(1) { left: -80px; top: 120px; transform: rotate(-8deg); }
.product-brand-hero__backdrop img:nth-child(2) { left: 22%; top: -145px; transform: rotate(7deg); }
.product-brand-hero__backdrop img:nth-child(3) { left: 47%; bottom: -190px; transform: rotate(-5deg); }
.product-brand-hero__backdrop img:nth-child(4) { right: 14%; top: -130px; transform: rotate(6deg); }
.product-brand-hero__backdrop img:nth-child(5) { right: -105px; bottom: -155px; transform: rotate(-7deg); }

.product-brand-hero__brand {
  position: relative;
  z-index: 3;
  background: rgba(18, 78, 126, .7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.product-brand-hero__showcase {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 420px;
  overflow: hidden;
  border-radius: 32px;
  background: rgba(8, 64, 107, .24);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.11), 0 30px 70px rgba(0, 18, 36, .25);
}

.product-brand-hero__showcase::after {
  content: '';
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 38, 66, .2), transparent 26%, transparent 74%, rgba(4, 37, 65, .22)),
    linear-gradient(0deg, rgba(4, 35, 61, .38), transparent 38%);
  pointer-events: none;
}

.product-brand-hero__product {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(0, 18, 38, .28);
  transform: rotate(var(--tilt));
}

.product-brand-hero__product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.82) contrast(.96) brightness(.92);
}

.product-brand-hero__product--1 { --tilt: -5deg; left: 2%; top: 55px; width: 34%; height: 300px; }
.product-brand-hero__product--2 { --tilt: 4deg; left: 25%; top: 18px; width: 31%; height: 260px; }
.product-brand-hero__product--3 { --tilt: -2deg; left: 46%; top: 104px; width: 30%; height: 280px; }
.product-brand-hero__product--4 { --tilt: 5deg; left: 67%; top: 28px; width: 29%; height: 270px; }
.product-brand-hero__product--5 { --tilt: -4deg; right: -7%; bottom: -26px; width: 28%; height: 250px; }

@media (max-width: 1024px) {
  .product-brand-hero__showcase { height: 360px; }
}

@media (max-width: 768px) {
  .product-brand-hero { margin-top: 0; padding-top: 96px; padding-bottom: 44px; }
  .product-brand-hero__inner { grid-template-columns: minmax(0, 1fr); }
  .product-brand-hero__showcase { height: 300px; border-radius: 22px; }
  .product-brand-hero__backdrop img { width: 220px; height: 220px; opacity: .18; }
  .product-brand-hero__product--1 { top: 42px; height: 220px; }
  .product-brand-hero__product--2 { top: 18px; height: 200px; }
  .product-brand-hero__product--3 { top: 76px; height: 210px; }
  .product-brand-hero__product--4 { top: 28px; height: 200px; }
  .product-brand-hero__product--5 { bottom: -12px; height: 180px; }
}

@media (max-width: 420px) {
  :root {
    --mobile-gutter: 16px;
  }

  .header__logo-img {
    max-width: 104px;
    height: 28px;
  }

  .lang-dropdown__btn {
    min-width: 56px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .hero {
    min-height: 600px;
  }

  .hero__content {
    padding-bottom: 96px;
  }

  .hero__title,
  .page-header__title,
  .wiki-hero h1,
  .corporate-hero__content h1,
  .action-hero h1,
  .product-brand-hero h1,
  .product-detail-hero h1 {
    font-size: clamp(34px, 10vw, 42px);
  }

  .stats-container {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .product-variant-selector__buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-hero__visual {
    min-height: 310px;
  }

  .product-detail-hero__visual img {
    width: min(84vw, 300px);
    height: 290px;
  }

  .global-search-fab {
    right: 12px;
    width: 46px;
    height: 46px;
  }
}
/* Homepage news */
.home-news {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
}

.home-news::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  top: -260px;
  right: -170px;
  border-radius: 50%;
  background: rgba(10, 169, 232, .07);
  pointer-events: none;
}

.home-news__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-8);
  margin-bottom: var(--space-10);
}

.home-news__heading h2 { margin-bottom: var(--space-3); }
.home-news__heading p { max-width: 660px; margin: 0; }

.news-list-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 150px 0 82px;
  background: #041e34 url('../images/hero/news-hero-bg.webp') center/cover no-repeat;
  color: #fff;
}

.news-list-hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(2, 20, 39, .98) 0%, rgba(3, 31, 57, .9) 38%, rgba(4, 48, 81, .48) 68%, rgba(4, 56, 91, .18) 100%);
}

.news-list-hero > .container {
  position: relative;
  z-index: 1;
}

.news-list-hero::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  bottom: -290px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.035), 0 0 0 140px rgba(255,255,255,.02);
  pointer-events: none;
}

.news-list-hero h1 { margin: 0 0 var(--space-4); color: #fff; font-size: clamp(42px, 5vw, 68px); }
.news-list-hero p { max-width: 620px; margin: 0; color: rgba(255,255,255,.72); font-size: var(--fs-lg); line-height: 1.7; }
.news-list { padding: var(--space-16) 0; background: #f8fafc; }
.news-list__state { grid-column: 1 / -1; padding: var(--space-12); color: var(--color-gray-600); text-align: center; }
.news-list__state p { margin-inline: auto; }

@media (max-width: 768px) {
  .home-news__heading { align-items: flex-start; flex-direction: column; }
  .news-list-hero { padding: 116px 0 58px; }
}

.home-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-6);
}

.home-news-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.home-news-card__link {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.home-news-card__link:focus-visible {
  outline: 3px solid rgba(10, 169, 232, .35);
  outline-offset: -3px;
}

.home-news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(10, 169, 232, .35);
  box-shadow: var(--shadow-xl);
}

.home-news-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--color-gray-100);
}

.home-news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.home-news-card:hover .home-news-card__media img { transform: scale(1.045); }

.home-news-card__category {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(4, 30, 52, .88);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.home-news-card__body { padding: var(--space-6); }

.home-news-card__body time {
  display: block;
  margin-bottom: var(--space-3);
  color: var(--color-primary);
  font-size: var(--fs-sm);
  font-weight: 600;
}

.home-news-card__body h3 {
  margin: 0 0 var(--space-3);
  color: var(--color-navy);
  font-size: var(--fs-xl);
  line-height: 1.35;
}

.home-news-card__body p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--color-gray-600);
  font-size: var(--fs-sm);
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (max-width: 900px) {
  .home-news__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-news-card:last-child { grid-column: 1 / -1; max-width: calc(50% - var(--space-3)); }
}

@media (max-width: 600px) {
  .home-news__heading { margin-bottom: var(--space-8); }
  .home-news__grid { grid-template-columns: 1fr; }
  .home-news-card:last-child { grid-column: auto; max-width: none; }
}

/* News detail */
.news-detail-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 150px 0 72px;
  background: #042b46;
  color: #fff;
}

.news-detail-hero::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, #04263f 0%, #042f4e 43%, rgba(4, 47, 78, .82) 60%, rgba(4, 47, 78, .28) 100%);
}

.news-detail-hero__image {
  position: absolute;
  z-index: -2;
  inset: 0 0 0 auto;
  width: 57%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.news-detail-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.news-detail-hero__back {
  display: inline-flex;
  margin-bottom: var(--space-7);
  color: rgba(255,255,255,.72);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
}

.news-detail-hero__back:hover { color: #fff; }

.news-detail-hero__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-5);
}

.news-detail-hero__category {
  padding: 7px 12px;
  border-radius: 999px;
  background: #0aa9e8;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.news-detail-hero time { color: rgba(255,255,255,.68); font-size: var(--fs-sm); }
.wiki-article-reading { color: rgba(255,255,255,.68); font-size: var(--fs-sm); }

.news-detail-hero h1 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.news-detail { padding: var(--space-16) 0; background: #fff; }
.news-detail__article { max-width: 880px; margin: 0 auto; }

.news-detail__cover {
  width: 100%;
  max-height: 540px;
  margin: 0 0 var(--space-10);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  object-fit: cover;
}

.news-detail__excerpt {
  margin-bottom: var(--space-8);
  padding-left: var(--space-6);
  border-left: 4px solid var(--color-primary);
  color: var(--color-gray-700);
  font-size: var(--fs-xl);
  line-height: 1.7;
}

.news-detail__body { color: var(--color-gray-700); font-size: var(--fs-lg); line-height: 1.85; }
.news-detail__body h2, .news-detail__body h3 { margin: var(--space-9) 0 var(--space-4); color: var(--color-navy); }
.news-detail__body img { max-width: 100%; height: auto; border-radius: var(--radius-lg); }
.news-detail__body a { color: var(--color-primary); }

.wiki-article-detail .article-content { max-width: none; }
.wiki-article-detail .article-cover { max-height: 540px; margin-bottom: var(--space-10); }

.news-detail__state {
  padding: var(--space-16) var(--space-6);
  color: var(--color-gray-600);
  text-align: center;
}

@media (max-width: 768px) {
  .news-detail-hero { padding: 116px 0 54px; }
  .news-detail-hero::after { background: rgba(4, 38, 63, .82); }
  .news-detail-hero__image { width: 100%; opacity: .55; }
  .news-detail { padding: var(--space-10) 0; }
  .news-detail__excerpt { font-size: var(--fs-lg); }
}

/* Product detail hero — blue brand surface */
.product-detail-hero {
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 18%, rgba(41, 180, 242, .28), transparent 30%),
    linear-gradient(118deg, #03182c 0%, #07365f 55%, #0874bd 100%);
  color: #fff;
}

.product-detail-hero::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  width: 430px;
  height: 430px;
  top: -215px;
  right: -95px;
  border: 68px solid rgba(255, 255, 255, .055);
  border-radius: 50%;
  pointer-events: none;
}

.product-detail-hero h1,
.product-detail-hero__summary,
.product-detail-hero__back,
.product-variant-selector > strong {
  color: #fff;
}

.product-detail-hero__summary,
.product-detail-hero__back,
.product-variant-selector > strong {
  color: rgba(255, 255, 255, .76);
}

.product-detail-hero__back:hover {
  color: #fff;
}

.product-detail-hero__badges span {
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .9);
}

.product-variant-selector button {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .06);
  color: #fff;
}

.product-detail-hero__visual {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(5, 48, 84, .2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

@media (max-width: 900px) {
  .product-detail-hero__visual {
    border-radius: 22px;
  }
}

@media (max-width: 560px) {
  .product-detail-hero {
    padding-top: calc(var(--header-height, 80px) + 18px);
    padding-bottom: 44px;
  }

  .product-detail-hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(108px, .65fr);
    gap: 18px 12px;
    align-items: start;
  }

  .product-detail-hero__copy {
    display: contents;
  }

  .product-detail-hero__visual {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    min-height: 0;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
  }

  .product-detail-hero__visual img {
    width: 88%;
    height: 88%;
    max-width: none;
    max-height: none;
  }

  .product-detail-hero__variant {
    right: 10px;
    bottom: 10px;
    padding: 7px 9px;
    font-size: 10px;
  }

  .product-variant-selector {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    width: 100%;
    margin: 0;
  }

  .product-variant-selector > strong {
    margin-bottom: 9px;
    font-size: 11px;
    line-height: 1.35;
  }

  .product-variant-selector__buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-variant-selector button {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding: 9px 6px;
  }

  .product-detail-hero__back,
  .product-detail-hero__eyebrow,
  .product-detail-hero h1,
  .product-detail-hero__summary,
  .product-detail-hero__badges {
    grid-column: 1 / -1;
  }

  .product-detail-hero__back {
    grid-row: 2;
    margin: 8px 0 0;
  }

  .product-detail-hero__eyebrow { grid-row: 3; }
  .product-detail-hero h1 { grid-row: 4; margin: 0; }
  .product-detail-hero__summary { grid-row: 5; }
  .product-detail-hero__badges { grid-row: 6; margin-top: 2px; }
}
.legal-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--space-20) + 72px) 0 var(--space-20);
  background: linear-gradient(180deg, #03182c 0, #073a62 430px, #f4f7fa 430px, #fff 100%);
}

.legal-page::before,
.legal-page::after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.legal-page::before {
  width: 440px;
  height: 440px;
  top: -210px;
  right: -80px;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .035), 0 0 0 140px rgba(255, 255, 255, .02);
}

.legal-page::after {
  width: 280px;
  height: 280px;
  top: 220px;
  left: -180px;
  background: rgba(10, 169, 232, .13);
}

.legal-page__header,
.legal-page__content {
  max-width: 900px;
  margin-inline: auto;
}

.legal-page__header {
  position: relative;
  margin-bottom: var(--space-12);
}

.legal-page__eyebrow {
  display: inline-block;
  margin-bottom: var(--space-3);
  color: #49c7f5;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-page__header h1 {
  max-width: 760px;
  margin-bottom: var(--space-5);
  color: #fff;
  font-size: clamp(42px, 5.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.legal-page__meta {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 var(--space-5);
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .75);
  font-size: var(--fs-sm);
  backdrop-filter: blur(8px);
}

.legal-page__lead {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-size: var(--fs-lg);
  line-height: 1.7;
}

.legal-page__notice {
  position: relative;
  margin: -22px 0 var(--space-8);
  padding: var(--space-6) var(--space-6) var(--space-6) 76px;
  border: 1px solid rgba(10, 169, 232, .25);
  border-radius: var(--radius-xl);
  background: #ecf8fd;
  color: var(--color-navy);
  line-height: 1.7;
  box-shadow: 0 16px 38px rgba(3, 24, 44, .09);
}

.legal-page__notice::before {
  content: '!';
  position: absolute;
  top: 50%;
  left: var(--space-6);
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(135deg, #0aa9e8, #0874bd);
  color: #fff;
  font-weight: 800;
  transform: translateY(-50%);
  box-shadow: 0 8px 18px rgba(10, 169, 232, .24);
}

.legal-page__content section {
  position: relative;
  margin-bottom: var(--space-8);
  overflow: hidden;
  padding: var(--space-8);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-2xl);
  background: var(--color-white);
  box-shadow: 0 14px 42px rgba(3, 24, 44, .065);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.legal-page__content section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary), #36b9eb);
  opacity: .72;
}

.legal-page__content section:hover {
  border-color: rgba(10, 169, 232, .25);
  box-shadow: 0 20px 48px rgba(3, 24, 44, .095);
  transform: translateY(-2px);
}

.legal-page__content h2 {
  margin: 3px 0 var(--space-4);
  color: var(--color-navy);
  font-size: clamp(20px, 2.4vw, var(--fs-2xl));
  line-height: 1.25;
}

.legal-page__content p,
.legal-page__content li {
  color: var(--color-gray-700);
  line-height: 1.75;
}

.legal-page__content ul {
  margin: var(--space-4) 0 0;
  padding: 0;
  list-style: none;
}

.legal-page__content li {
  position: relative;
  margin: var(--space-2) 0;
  padding-left: 24px;
}

.legal-page__content li::before {
  content: '';
  position: absolute;
  top: .72em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-ghost);
}

.legal-page__content a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration-color: rgba(10, 169, 232, .35);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-page__content a:hover {
  color: var(--color-primary-dark);
  text-decoration-color: currentColor;
}

@media (max-width: 767px) {
  .legal-page {
    padding-top: calc(var(--space-12) + 72px);
    background: linear-gradient(180deg, #03182c 0, #073a62 480px, #f4f7fa 480px, #fff 100%);
  }

  .legal-page__header {
    margin-bottom: var(--space-9);
  }

  .legal-page__header h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .legal-page__notice {
    margin-top: -12px;
    padding: 64px var(--space-5) var(--space-5);
  }

  .legal-page__notice::before {
    top: var(--space-5);
    left: var(--space-5);
    transform: none;
  }

  .legal-page__content section {
    padding: var(--space-5);
    border-radius: var(--radius-xl);
  }
}

/* Sitemap */
.sitemap-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: calc(var(--space-20) + 72px) 0 var(--space-20);
  background:
    linear-gradient(180deg, #03182c 0, #06385f 390px, #f5f8fb 390px, #fff 100%);
}

.sitemap-page::before,
.sitemap-page::after {
  content: '';
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.sitemap-page::before {
  width: 460px;
  height: 460px;
  top: -210px;
  right: -90px;
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 0 0 72px rgba(255, 255, 255, .035), 0 0 0 144px rgba(255, 255, 255, .02);
}

.sitemap-page::after {
  width: 320px;
  height: 320px;
  top: 170px;
  left: -190px;
  background: rgba(10, 169, 232, .12);
  filter: blur(2px);
}

.sitemap-page__header {
  max-width: 790px;
  margin-bottom: var(--space-12);
}

.sitemap-page__eyebrow {
  display: inline-block;
  margin-bottom: var(--space-3);
  color: #49c7f5;
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sitemap-page__header h1 {
  margin-bottom: var(--space-5);
  color: #fff;
  font-size: clamp(44px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.sitemap-page__header p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: var(--fs-lg);
  line-height: 1.7;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-6);
  align-items: stretch;
}

.sitemap-card {
  position: relative;
  grid-column: span 4;
  overflow: hidden;
  padding: var(--space-7);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  background: var(--color-white);
  box-shadow: 0 16px 48px rgba(3, 24, 44, .08);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.sitemap-card:nth-child(4),
.sitemap-card:nth-child(5) {
  grid-column: span 6;
}

.sitemap-card::after {
  content: '';
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: rgba(10, 169, 232, .045);
  transition: transform .3s ease, background-color .3s ease;
}

.sitemap-card:hover {
  transform: translateY(-5px);
  border-color: rgba(10, 169, 232, .3);
  box-shadow: 0 22px 56px rgba(3, 24, 44, .12);
}

.sitemap-card:hover::after {
  transform: scale(1.3);
  background: rgba(10, 169, 232, .08);
}

.sitemap-card--wide {
  grid-column: span 4;
}

.sitemap-card h2 {
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-gray-200);
  color: var(--color-navy);
  font-size: var(--fs-xl);
}

.sitemap-card ul {
  display: grid;
  gap: var(--space-2);
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-card a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  color: var(--color-gray-700);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.sitemap-card a::before {
  content: '';
  width: 7px;
  height: 7px;
  margin-right: var(--space-3);
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px var(--color-primary-ghost);
  flex: 0 0 auto;
}

.sitemap-card a::after {
  content: '\2192';
  margin-left: auto;
  color: var(--color-gray-400);
  font-size: 17px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s ease, transform .2s ease, color .2s ease;
}

.sitemap-card a:hover,
.sitemap-card a:focus-visible {
  color: var(--color-primary);
  background: var(--color-primary-ghost);
  transform: translateX(3px);
}

.sitemap-card a:hover::after,
.sitemap-card a:focus-visible::after {
  color: var(--color-primary);
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 900px) {
  .sitemap-card,
  .sitemap-card--wide,
  .sitemap-card:nth-child(4),
  .sitemap-card:nth-child(5) {
    grid-column: span 6;
  }
}

@media (max-width: 640px) {
  .sitemap-page {
    padding-top: calc(var(--space-12) + 72px);
  }

  .sitemap-page {
    background: linear-gradient(180deg, #03182c 0, #06385f 350px, #f5f8fb 350px, #fff 100%);
  }

  .sitemap-page__header {
    margin-bottom: var(--space-9);
  }

  .sitemap-page__header h1 {
    font-size: clamp(40px, 13vw, 54px);
  }

  .sitemap-grid {
    gap: var(--space-4);
  }

  .sitemap-card,
  .sitemap-card--wide,
  .sitemap-card:nth-child(4),
  .sitemap-card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .sitemap-card {
    padding: var(--space-5);
  }
}
