﻿:root {
  --bg: #ffffff;
  --bg-soft: #f5f8fc;
  --bg-panel: #eef4fb;
  --bg-dark: #111317;
  --bg-dark-2: #1a1e24;
  --text: #0f1114;
  --muted: #68707c;
  --line: rgba(15, 17, 20, 0.08);
  --line-strong: rgba(15, 17, 20, 0.14);
  --white: #ffffff;
  --accent: #123a74;
  --accent-2: #2d67b3;
  --accent-soft: #dbe9fb;
  --accent-glow: rgba(74, 129, 208, 0.22);
  --shadow-soft: 0 22px 70px rgba(15, 17, 20, 0.08);
  --shadow-deep: 0 35px 120px rgba(10, 12, 16, 0.18);
  --radius-xl: 8px;
  --radius-lg: 8px;
  --radius-md: 8px;
  --content: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(77, 135, 220, 0.12), transparent 22%),
    radial-gradient(circle at top left, rgba(166, 202, 255, 0.12), transparent 20%),
    var(--bg);
}

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

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

main,
.site-header,
.site-footer {
  width: min(calc(100% - 36px), var(--content));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 144px;
  height: auto;
}

.site-nav,
.header-actions {
  display: flex;
  align-items: center;
}

.site-nav {
  justify-content: center;
  gap: 30px;
}

.site-nav a,
.header-link {
  color: var(--muted);
  font-size: 14px;
  transition: color 160ms ease;
}

.site-nav a:hover,
.header-link:hover,
.inline-link:hover {
  color: var(--text);
}

.header-actions {
  gap: 18px;
}

.language-toggle,
.icon-link {
  appearance: none;
  border: 0;
  color: #05070b;
  background: transparent;
  cursor: pointer;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
}

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

.globe-icon {
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 999px;
}

.globe-icon::before,
.globe-icon::after {
  content: "";
  position: absolute;
  inset: 4px auto;
  left: 50%;
  border-left: 2px solid currentColor;
  transform: translateX(-50%);
}

.globe-icon::after {
  inset: 9px 3px auto;
  left: 3px;
  border-left: 0;
  border-top: 2px solid currentColor;
  transform: none;
}

.chevron-icon {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

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

.search-icon::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 20px;
  height: 20px;
  border: 4px solid currentColor;
  border-radius: 999px;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 7px;
  width: 17px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: center;
}

.menu-icon {
  display: inline-grid;
  align-content: center;
  gap: 8px;
  padding: 0;
}

.menu-icon span {
  display: block;
  width: 40px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
}

.home-hero-showcase {
  min-height: 0;
  margin-top: 44px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
  gap: 28px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #eef5fb 100%);
  box-shadow: var(--shadow-soft);
}

.home-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  color: var(--text);
}

.home-kicker {
  margin: 0 0 10px;
  color: #4d6f98;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-hero-copy h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(3.2rem, 6vw, 6.1rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.home-hero-copy p:not(.home-kicker) {
  max-width: 460px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.65;
}

.hero-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 50px;
  width: max-content;
  margin-top: 30px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 18px 44px rgba(18, 58, 116, 0.24);
  font-size: 14px;
  font-weight: 800;
  text-transform: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.hero-outline-button:hover {
  transform: translateY(-2px);
}

.home-hero-visual {
  position: relative;
  min-height: 520px;
}

.hero-product-plate {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-soft);
}

.hero-product-plate img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.home-hero-dots {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 18px 44px rgba(18, 58, 116, 0.24);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: var(--white);
}

.eyebrow,
.card-label,
.mini-label {
  margin: 0 0 14px;
  color: #4d6f98;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.spotlight-copy h2,
.support-card h2,
.trade-card h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.hero {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 34px;
  align-items: center;
  padding: 44px 0 18px;
}

.hero h1 {
  max-width: 8.8ch;
  font-size: 6.8rem;
  line-height: 0.9;
}

.hero-text,
.hero-points,
.stage-card p,
.card-copy p,
.feature-copy p,
.spotlight-copy p,
.map-grid p,
.assortment-grid p,
.support-card p,
.trade-card p,
.footer-brand p,
.footer-columns a,
.footer-bottom p {
  line-height: 1.7;
}

.hero-text {
  max-width: 600px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-points {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}

.hero-points li {
  position: relative;
  padding-left: 24px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-2);
  box-shadow: 0 0 0 6px rgba(45, 103, 179, 0.14);
}

.hero-stage {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, #12141a 0%, #1e2430 45%, #141821 100%);
  box-shadow: var(--shadow-deep);
}

.hero-stage-image,
.light-grid,
.stage-card {
  position: absolute;
}

.hero-stage-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 10, 15, 0.14) 0%, rgba(7, 10, 15, 0.46) 100%);
}

.light-grid {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.96), transparent 90%);
  opacity: 0.24;
}

.stage-card {
  z-index: 2;
  padding: 24px;
  border-radius: 24px;
  backdrop-filter: blur(16px);
}

.stage-card-dark {
  top: 24px;
  left: 24px;
  width: min(320px, calc(100% - 48px));
  color: #ffffff;
  background: rgba(11, 13, 17, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stage-card-dark h2 {
  margin: 0 0 10px;
  font-size: 1.9rem;
}

.stage-card-dark p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

.stage-card-light {
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-width: min(470px, calc(100% - 48px));
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 18px 50px var(--accent-glow);
}

.stage-card-light span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stage-card-light strong {
  font-size: 17px;
}

.anchor-nav,
.category-grid,
.feature-grid,
.support-trade,
.footer-top,
.footer-columns,
.map-grid,
.assortment-grid {
  display: grid;
}

.anchor-nav {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

.anchor-nav a {
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(15, 17, 20, 0.04);
}

.anchor-nav a:hover {
  border-color: rgba(45, 103, 179, 0.24);
  box-shadow: 0 18px 50px rgba(45, 103, 179, 0.12);
}

.anchor-nav span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.anchor-nav strong {
  font-size: 15px;
}

.category-overview,
.feature-band,
.spotlight,
.site-map-band,
.assortment-band,
.support-trade {
  margin-top: 92px;
}

.section-head {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin-bottom: 28px;
}

.section-head-tight {
  max-width: 700px;
}

.section-head h2,
.spotlight-copy h2,
.support-card h2,
.trade-card h2 {
  font-size: 4.2rem;
  line-height: 0.92;
}

.category-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.category-card,
.feature-tile,
.support-card,
.trade-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.category-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
}

.category-card-wide {
  position: relative;
  justify-content: space-between;
  background:
    linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
}

.category-card-wide img {
  align-self: center;
  width: 92%;
  max-width: 560px;
  object-fit: contain;
  padding: 0 12px 16px;
}

.category-card:not(.category-card-wide) img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.card-copy,
.feature-copy,
.support-card,
.trade-card {
  padding: 26px;
}

.card-copy h3,
.feature-copy h3,
.map-grid h3,
.footer-columns h3,
.footer-brand h3 {
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.card-copy p,
.feature-copy p,
.map-grid p,
.support-card p,
.trade-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.inline-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 700;
  color: var(--accent);
}

.inline-link-light {
  color: rgba(255, 255, 255, 0.92);
}

.feature-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.feature-tile {
  min-height: 360px;
}

.feature-tile-primary {
  position: relative;
  background:
    linear-gradient(145deg, #111317 0%, #1f2a39 100%);
  color: var(--white);
}

.feature-tile-primary img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  max-width: 360px;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.32));
}

.feature-tile-primary .feature-copy {
  position: relative;
  z-index: 1;
  max-width: 62%;
}

.feature-tile-primary .feature-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-tile:not(.feature-tile-primary) {
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
}

.lifestyle-band {
  margin-top: 92px;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.lifestyle-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-card:nth-child(2) img {
  object-fit: contain;
  background: linear-gradient(180deg, #f8fbff 0%, #edf4fb 100%);
  padding: 28px;
}

.lifestyle-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 14, 20, 0.02) 26%, rgba(10, 14, 20, 0.72) 100%);
}

.lifestyle-card-large {
  min-height: 520px;
}

.lifestyle-copy {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 24px;
  color: var(--white);
}

.lifestyle-copy h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.lifestyle-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.spotlight {
  display: grid;
  grid-template-columns: 0.96fr 1.04fr;
  gap: 24px;
  padding: 0;
}

.spotlight-copy {
  padding: 26px 8px 26px 0;
}

.spotlight-copy p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.spotlight-visual {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(23, 77, 145, 0.12);
}

.spotlight-visual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.pill-list li {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.spotlight-range-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.spotlight-range-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.spotlight-range-grid span {
  color: #4d6f98;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spotlight-range-grid h4 {
  margin: 12px 0 0;
  font-size: 1.35rem;
  line-height: 1.18;
}

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

.spec-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.spec-top {
  margin-bottom: 18px;
}

.spec-top h3 {
  margin: 0;
  font-size: 1.7rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

td {
  font-size: 14px;
}

.site-map-band {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%);
}

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

.map-grid article {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(15, 17, 20, 0.05);
}

.assortment-band {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

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

.assortment-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.assortment-grid h3 {
  margin: 0;
  font-size: 18px;
}

.assortment-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.support-trade {
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.support-card,
.trade-card {
  min-height: 100%;
}

.support-card ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.support-card li {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--bg-soft);
  font-size: 14px;
  font-weight: 600;
}

.trade-card {
  background: linear-gradient(145deg, #101318 0%, #1e3252 100%);
  color: var(--white);
}

.trade-card p {
  color: rgba(255, 255, 255, 0.78);
}

.trade-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.trade-card .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.site-footer {
  margin-top: 92px;
  margin-bottom: 36px;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #0f1217 0%, #132742 100%);
  color: var(--white);
  box-shadow: var(--shadow-deep);
}

.footer-top {
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand img {
  width: 150px;
  margin-bottom: 16px;
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

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

.footer-columns h3 {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
}

.footer-columns a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 18px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 13px;
}

.subpage main {
  padding-bottom: 84px;
}

.page-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 44px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
  box-shadow: var(--shadow-soft);
}

.page-hero-dark {
  color: var(--white);
  background: linear-gradient(145deg, #101318 0%, #1d2f4d 100%);
}

.page-hero > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
}

.page-hero h1 {
  margin: 0;
  max-width: 13ch;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.page-hero-dark p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.page-hero img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 24px;
}

.catalog-section {
  margin-top: 88px;
}

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

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

.catalog-card,
.range-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.catalog-card-lead {
  grid-row: span 2;
  min-height: 580px;
}

.catalog-card img,
.range-card img {
  width: calc(100% + 48px);
  max-width: none;
  height: 240px;
  margin: -24px -24px 22px;
  object-fit: cover;
  background: var(--bg-soft);
}

.catalog-card-lead img {
  height: 360px;
  object-fit: contain;
  padding: 26px;
}

.catalog-card span,
.range-card span,
.tag-cloud span,
.contact-list span {
  color: #4d6f98;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-card h3,
.range-card h3 {
  margin: 10px 0 0;
  font-size: 1.45rem;
}

.catalog-card p,
.range-card p,
.contact-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

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

.range-card {
  min-height: 420px;
}

.range-card img {
  height: 230px;
  object-fit: contain;
  padding: 18px;
}

.portable-range-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.portable-range-grid .range-card {
  min-height: 390px;
  padding: 20px;
}

.portable-range-grid .range-card img {
  width: calc(100% + 40px);
  height: 190px;
  margin: -20px -20px 18px;
}

.portable-range-grid .range-card h3 {
  font-size: 1.08rem;
  letter-spacing: -0.03em;
}

.portable-range-grid .range-card p {
  font-size: 0.94rem;
}

.page-panel {
  margin-top: 28px;
}

.tag-cloud,
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-cloud span,
.contact-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 88px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-panel h2 {
  margin: 0;
  font-size: 2.4rem;
}

.ac-hero {
  background: linear-gradient(180deg, #ffffff 0%, #eef5fb 100%);
}

.ac-hero h1 {
  max-width: 12ch;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(3.2rem, 6vw, 6.1rem);
  font-weight: 900;
  letter-spacing: 0;
}

.ac-page .section-head h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 900;
  line-height: 1.02;
}

.ac-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.ac-tabs {
  position: sticky;
  top: 76px;
  z-index: 30;
  display: flex;
  gap: 8px;
  margin-top: 22px;
  padding: 10px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 38px rgba(15, 17, 20, 0.06);
  backdrop-filter: blur(18px);
}

.ac-tabs a {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 12px 18px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ac-tabs a:hover,
.ac-tabs a:focus-visible {
  color: var(--text);
  background: var(--bg-soft);
}

.series-section {
  margin-top: 88px;
}

.ac-series-block {
  scroll-margin-top: 150px;
  padding-top: 34px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

#series,
#portable-models {
  scroll-margin-top: 150px;
}

.series-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 22px;
}

.series-heading h3 {
  margin: 0;
  font-size: 2.15rem;
  line-height: 1.08;
}

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

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

.product-card-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portable-model-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ac-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(15, 17, 20, 0.06);
}

.series-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(15, 17, 20, 0.06);
}

.series-card img {
  width: calc(100% + 44px);
  max-width: none;
  height: 260px;
  margin: -22px -22px 22px;
  object-fit: contain;
  padding: 18px;
  background: #fff;
  border-radius: 8px 8px 0 0;
}

.series-card > span {
  color: #4d6f98;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.series-card h4 {
  margin: 10px 0 0;
  font-size: 1.45rem;
  line-height: 1.16;
}

.series-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.capacity-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.capacity-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}

.series-card dl {
  display: grid;
  gap: 0;
  margin: 18px 0 0;
}

.series-card dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.series-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.series-card dd {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.ac-product-card img {
  width: calc(100% + 36px);
  max-width: none;
  height: 220px;
  margin: -18px -18px 18px;
  object-fit: cover;
  padding: 0;
  background: #f7fafc;
  border-radius: 8px 8px 0 0;
}

.ac-product-card h4 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.2;
}

.ac-product-card p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.ac-product-card dl {
  display: grid;
  gap: 0;
  margin: auto 0 0;
}

.ac-product-card dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.ac-product-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ac-product-card dd {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.portable-feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portable-feature-band article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(15, 17, 20, 0.06);
}

.portable-feature-band span {
  color: #4d6f98;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.portable-feature-band h3 {
  margin: 12px 0 0;
  font-size: 1.45rem;
}

.portable-feature-band p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.ac-support-band {
  display: grid;
  grid-template-columns: 0.95fr 1fr auto;
  align-items: center;
  gap: 28px;
  margin-top: 88px;
  padding: 28px;
  border: 1px solid rgba(18, 58, 116, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f7ff 100%);
}

.ac-support-band h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.08;
}

.ac-support-band p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 34px;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(15, 17, 20, 0.06);
}

.product-hero > * {
  min-width: 0;
}

.product-hero-dark {
  color: var(--text);
  background: var(--white);
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 440px;
  padding: 54px 52px 54px 24px;
  min-width: 0;
}

.product-copy h1 {
  margin: 0;
  max-width: 13ch;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.35rem, 4vw, 4.2rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.product-lead {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
  overflow-wrap: anywhere;
}

.product-hero-dark .product-lead {
  color: var(--muted);
}

.product-hero-dark .button-secondary {
  color: var(--text);
  border-color: var(--line-strong);
  background: var(--white);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.product-visual {
  order: -1;
  display: grid;
  place-items: center;
  min-height: 440px;
  overflow: hidden;
  background: #fff;
}

.product-hero-dark .product-visual {
  background: #fff;
}

.product-visual img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  padding: 24px;
}

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

.product-summary-grid article {
  min-height: 112px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 45px rgba(15, 17, 20, 0.05);
}

.product-summary-grid span {
  color: #4d6f98;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-summary-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: 1.45rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  margin-top: 64px;
}

.product-panel,
.spec-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 55px rgba(15, 17, 20, 0.06);
}

.product-panel h2,
.spec-card h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.08;
}

.product-panel p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.spec-card dl {
  display: grid;
  gap: 0;
  margin: 26px 0 0;
}

.spec-card dl div {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) 1fr;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.spec-card dt {
  color: var(--muted);
  font-weight: 700;
}

.spec-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .site-header,
  .hero,
  .anchor-nav,
  .category-grid,
  .feature-grid,
  .lifestyle-grid,
  .spotlight,
  .map-grid,
  .assortment-grid,
  .page-hero,
  .product-hero,
  .product-detail-grid,
  .catalog-grid,
  .range-grid,
  .product-card-grid,
  .product-card-grid.two-up,
  .series-card-grid,
  .portable-model-grid,
  .portable-feature-band,
  .ac-support-band,
  .product-summary-grid,
  .contact-panel,
  .support-trade,
  .footer-top,
  .footer-columns,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .site-header {
    gap: 18px;
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .language-toggle {
    display: none;
  }

  .home-hero-showcase {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 56px 28px 42px;
  }

  .home-hero-copy {
    max-width: 760px;
  }

  .home-hero-copy h1 {
    max-width: 11ch;
  }

  .hero-outline-button {
    margin-top: 34px;
  }

  .home-hero-visual {
    min-height: 390px;
  }

  .hero-product-plate {
    left: 0;
    right: auto;
    width: 100%;
  }

  .hero-product-plate img {
    height: 390px;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .header-link {
    display: none;
  }

  .hero h1 {
    font-size: 5.2rem;
  }

  .section-head h2,
  .spotlight-copy h2,
  .support-card h2,
  .trade-card h2 {
    font-size: 3.4rem;
  }

  .hero-stage {
    min-height: 660px;
  }

  .feature-tile-primary .feature-copy {
    max-width: 100%;
  }

  .feature-tile-primary img {
    right: 20px;
    width: 40%;
  }

  .page-hero > div,
  .page-hero img,
  .product-copy,
  .product-visual {
    min-height: 420px;
  }

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

  .product-copy {
    padding: 34px;
  }

  .page-hero h1 {
    font-size: 3.6rem;
  }

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

  .portable-range-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ac-tabs {
    top: 70px;
  }

  .series-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-card-grid,
  .product-card-grid.two-up,
  .series-card-grid,
  .portable-model-grid,
  .portable-feature-band,
  .ac-support-band {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  main,
  .site-header,
  .site-footer {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .site-nav,
  .header-actions,
  .hero-actions,
  .trade-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-icon span {
    width: 34px;
    height: 3px;
  }

  .home-hero-showcase {
    padding: 44px 20px 30px;
  }

  .home-kicker {
    font-size: 2.15rem;
  }

  .home-hero-copy h1 {
    font-size: 3rem;
    letter-spacing: -0.05em;
  }

  .home-hero-copy p:not(.home-kicker) {
    font-size: 15px;
  }

  .hero-outline-button {
    min-width: 156px;
    min-height: 52px;
    margin-top: 26px;
    font-size: 16px;
  }

  .home-hero-visual {
    min-height: 270px;
  }

  .hero-product-plate {
    border-radius: 22px;
  }

  .hero-product-plate img {
    height: 270px;
  }

  .home-hero-dots {
    gap: 16px;
    margin-top: 22px;
    margin-bottom: 46px;
  }

  .home-hero-dots span {
    width: 42px;
    height: 5px;
  }

  .button,
  .header-link {
    width: 100%;
    text-align: center;
  }

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

  .stage-card-light {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .spotlight-copy,
  .site-map-band,
  .assortment-band,
  .site-footer,
  .support-card,
  .trade-card {
    padding-left: 22px;
    padding-right: 22px;
  }

  .spotlight {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  .spotlight-range-grid {
    grid-template-columns: 1fr;
  }

  .spotlight-copy {
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .pill-list li {
    max-width: 100%;
  }

  .table-wrap {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-map-band {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .assortment-band {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .section-head h2,
  .spotlight-copy h2,
  .support-card h2,
  .trade-card h2 {
    font-size: 2.25rem;
    line-height: 1;
  }

  .hero h1 {
    font-size: 3.25rem;
    line-height: 0.96;
  }

  .hero-text {
    font-size: 15px;
  }

  .brand img {
    width: 118px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 12px 0;
  }

  .header-actions {
    display: none;
  }

  .header-actions .button {
    width: auto;
    max-width: 172px;
    min-height: 42px;
    padding: 0 16px;
    white-space: nowrap;
    font-size: 12px;
  }

  .stage-card-dark,
  .stage-card-light {
    left: 16px;
    right: 16px;
    width: auto;
    min-width: 0;
  }

  .stage-card-light {
    bottom: 16px;
  }

  .site-footer {
    padding: 24px;
  }

  .page-hero {
    width: 100%;
    max-width: 100%;
    padding: 22px;
  }

  .page-hero,
  .page-hero > div,
  .page-hero img,
  .catalog-card,
  .series-card,
  .ac-product-card,
  .product-panel,
  .spec-card {
    min-width: 0;
  }

  .page-hero > div,
  .page-hero img {
    min-height: 320px;
  }

  .page-hero h1 {
    font-size: 2.55rem;
    line-height: 1;
  }

  .page-hero p:not(.eyebrow) {
    max-width: 290px;
    font-size: 15px;
  }

  .ac-hero h1,
  .page-hero h1 {
    max-width: calc(100vw - 64px);
    font-size: 2.45rem;
  }

  .ac-page .section-head h2 {
    max-width: calc(100vw - 32px);
    font-size: 2rem;
  }

  .product-hero {
    padding: 22px;
  }

  .product-copy,
  .product-visual {
    min-height: 300px;
  }

  .product-copy {
    padding: 24px 0 0;
  }

  .product-copy h1 {
    max-width: 100%;
    font-size: 2rem;
  }

  .product-lead {
    max-width: 100%;
    font-size: 14px;
  }

  .product-visual {
    border-radius: 8px;
  }

  .product-visual img {
    width: 100%;
    max-height: none;
  }

  .product-lead {
    font-size: 15px;
  }

  .product-actions {
    flex-direction: column;
  }

  .ac-hero-actions {
    flex-direction: column;
  }

  .ac-tabs {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    margin-right: 0;
    margin-left: 0;
    overflow: visible;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .ac-tabs a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 10px 14px;
    font-size: 12px;
    text-align: center;
  }

  .series-heading h3 {
    font-size: 1.65rem;
  }

  .product-card-grid,
  .product-card-grid.two-up,
  .series-card-grid,
  .portable-model-grid,
  .portable-feature-band,
  .ac-support-band {
    grid-template-columns: 1fr;
  }

  .ac-product-card img {
    height: 190px;
  }

  .series-card img {
    height: 210px;
  }

  .ac-support-band {
    padding: 22px;
  }

  .product-panel,
  .spec-card {
    padding: 22px;
  }

  .product-panel h2,
  .spec-card h2 {
    font-size: 1.9rem;
  }

  .spec-card dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .catalog-card-lead {
    min-height: 0;
  }

  .catalog-card,
  .range-card {
    min-height: 0;
  }

  .range-grid,
  .portable-range-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card img,
  .range-card img,
  .catalog-card-lead img {
    height: 210px;
  }

  .contact-panel {
    padding: 22px;
  }

  .contact-panel h2 {
    font-size: 1.8rem;
  }
}

