
@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("static/fonts/onest-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("static/fonts/onest-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --red: #dc3327;
  --red-deep: #b8261c;
  --ink: #17191b;
  --dark: #141618;
  --dark-2: #0e1013;
  --paper: #ffffff;
  --gray: #f1f2f2;
  --line: #d5d7d8;
  --muted: #666b70;

  --on-dark: #f4f5f5;
  --on-dark-muted: rgba(244, 245, 245, 0.64);
  --dark-line: rgba(244, 245, 245, 0.14);

  --r-lg: 28px;
  --r-md: 20px;
  --r-sm: 14px;

  --header-h: 78px;

  --font: "Onest", "Golos Text", system-ui, -apple-system, "Segoe UI", sans-serif;

  --display: clamp(2.35rem, 5.2vw, 4.7rem);
  --h1-inner: clamp(2rem, 3.8vw, 3.3rem);
  --h2: clamp(1.65rem, 3vw, 2.6rem);
  --h3: clamp(1.12rem, 1.6vw, 1.35rem);
  --lede: clamp(1.02rem, 1.35vw, 1.2rem);

  --shadow-1: 0 1px 2px rgba(23, 25, 27, 0.05), 0 10px 30px rgba(23, 25, 27, 0.07);
  --shadow-2: 0 2px 6px rgba(23, 25, 27, 0.08), 0 24px 60px rgba(23, 25, 27, 0.16);

  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

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

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

h1, h2, h3, h4, p, ul, ol, dl, figure { margin: 0; }

ul[class], ol[class] { padding: 0; list-style: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button { cursor: pointer; background: none; border: 0; padding: 0; }

[hidden] { display: none !important; }

::selection { background: var(--red); color: #fff; }

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 200;
  padding: 0.7rem 1.1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 999px;
  transform: translateY(-300%);
  transition: transform 0.25s;
}

.skip-link:focus-visible { transform: none; }

.m-container {
  width: min(100% - 2.5rem, 1280px);
  margin-inline: auto;
}

.m-section {
  padding-block: clamp(3rem, 6vw, 5.25rem);
  position: relative;
}

.m-section--gray { background: var(--gray); }

.m-section--dark {
  background: var(--dark);
  color: var(--on-dark);
}

.m-section--tight { padding-block: clamp(2.5rem, 5vw, 4.5rem); }

.m-section--flush-top { padding-top: 0; }

.m-sec-head { margin-bottom: clamp(1.6rem, 3.2vw, 2.5rem); }

.m-sec-head--center {
  text-align: center;
  margin-inline: auto;
  max-width: 52rem;
}

.m-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.m-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
}

.m-section--dark .m-kicker { color: var(--on-dark-muted); }

.m-h2 {
  font-size: var(--h2);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.022em;
  text-wrap: balance;
  max-width: 24ch;
}

.m-sec-head--center .m-h2 { margin-inline: auto; }

.m-h1-section {
  font-size: var(--h1-inner);
  font-weight: 780;
  letter-spacing: -0.025em;
  line-height: 1.08;
  text-wrap: balance;
  max-width: 26ch;
  margin-top: 0.9rem;
}

.m-lede {
  margin-top: 1.1rem;
  max-width: 46rem;
  font-size: var(--lede);
  line-height: 1.6;
  color: var(--muted);
}

.m-section--dark .m-lede { color: var(--on-dark-muted); }

.m-accent { color: var(--red); }

.m-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  font-weight: 640;
  font-size: 0.98rem;
  line-height: 1.15;
  letter-spacing: 0.002em;
  white-space: nowrap;
  transition: background-color 0.22s var(--ease), color 0.22s var(--ease),
    border-color 0.22s var(--ease), transform 0.22s var(--ease);
}

.m-btn:active { transform: scale(0.97); }

.m-btn .m-btn-arrow {
  flex: none;
  transition: transform 0.25s var(--ease);
}

.m-btn:hover .m-btn-arrow { transform: translateX(4px); }

.m-btn--red { background: var(--red); color: #fff; }
.m-btn--red:hover { background: var(--red-deep); }

.m-btn--dark { background: var(--ink); color: #fff; }
.m-btn--dark:hover { background: #000; }

.m-btn--outline {
  border: 1.5px solid var(--line);
  color: var(--ink);
  background: transparent;
}
.m-btn--outline:hover { border-color: var(--ink); }

.m-btn--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.32);
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(6px);
}
.m-btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.1); }

.m-btn--white { background: #fff; color: var(--ink); }
.m-btn--white:hover { background: var(--gray); }

.m-btn--sm { min-height: 44px; padding: 0.6rem 1.25rem; font-size: 0.92rem; }

.m-btn-arrow { width: 17px; height: 17px; }

.m-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease),
    backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
  color: #fff;
}

.m-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: -1;
  height: calc(var(--header-h) + 4rem);
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(8, 10, 11, 0.94) 0%,
    rgba(8, 10, 11, 0.78) 42%,
    rgba(8, 10, 11, 0.34) 74%,
    rgba(8, 10, 11, 0) 100%
  );
  transition: opacity 0.3s var(--ease);
}

.m-header.is-scrolled::before { opacity: 0; }

.m-header.is-scrolled {
  background: rgba(14, 16, 19, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body.nav-open .m-header {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

.m-header-inner {
  width: min(100% - 2.5rem, 1280px);
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.m-brand {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: none;
  position: relative;
  z-index: 130;
}

.m-brand img {
  width: clamp(150px, 14vw, 196px);
  height: auto;

  filter: brightness(0) invert(1);
}

.m-brand small {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.m-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-left: auto;
}

.m-nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.m-nav-links a {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 540;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.2s, background-color 0.2s;
}

.m-nav-links a:hover { color: #fff; background: rgba(255, 255, 255, 0.09); }

.m-nav-links a[aria-current="page"] {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.m-nav-extra {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.m-nav-phone {
  font-size: 0.95rem;
  font-weight: 640;
  font-variant-numeric: tabular-nums;
  color: #fff;
  white-space: nowrap;
}

.m-nav-phone:hover { color: rgba(255, 255, 255, 0.75); }

.m-messengers { display: flex; gap: 0.45rem; }

.m-messenger {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: background-color 0.2s, transform 0.2s;
}

.m-messenger:hover { background: rgba(255, 255, 255, 0.22); transform: translateY(-2px); }

.m-messenger img { width: 21px; height: 21px; border-radius: 50%; }

.m-burger {
  display: none;
  position: relative;
  z-index: 130;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  flex: none;
  margin-left: auto;
}

.m-burger span,
.m-burger::before,
.m-burger::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.m-burger::before { transform: translate(-50%, calc(-50% - 6px)); }
.m-burger span { transform: translate(-50%, -50%); }
.m-burger::after { transform: translate(-50%, calc(-50% + 6px)); }

body.nav-open .m-burger::before { transform: translate(-50%, -50%) rotate(45deg); }
body.nav-open .m-burger span { opacity: 0; }
body.nav-open .m-burger::after { transform: translate(-50%, -50%) rotate(-45deg); }

@media (max-width: 1023px) {
  .m-burger { display: block; }

  .m-nav {
    position: fixed;
    inset: 0;
    z-index: 120;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-end;
    gap: 2rem;
    padding: calc(var(--header-h) + 1rem) 1.5rem 2.2rem;
    background: rgba(10, 12, 14, 0.97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), visibility 0.3s;
  }

  .m-nav.is-open { opacity: 1; visibility: visible; }

  .m-nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    margin-top: auto;
  }

  .m-nav-links a {
    font-size: clamp(1.7rem, 6.5vw, 2.2rem);
    font-weight: 680;
    letter-spacing: -0.02em;
    padding: 0.35rem 0;
    border-radius: 0;
    background: none !important;
  }

  .m-nav-links a[aria-current="page"] { color: var(--red); }

  .m-nav-extra {
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .m-nav-phone { font-size: 1.15rem; }

  .m-nav-extra .m-btn { flex: 1 1 100%; }

  body.nav-open { overflow: hidden; }
}

.m-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(92vh, 960px);
  min-height: min(92svh, 960px);
  padding: calc(var(--header-h) + 2rem) 0 clamp(1.6rem, 3.5vw, 2.8rem);
  background: var(--dark);
  color: var(--on-dark);
  overflow: clip;
}

.m-hero--short {
  min-height: min(62vh, 640px);
  min-height: min(62svh, 640px);
}

.m-hero--scrim-soft::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(8, 10, 11, 0.56) 0%,
    rgba(8, 10, 11, 0.44) 35%,
    rgba(8, 10, 11, 0.22) 60%,
    rgba(8, 10, 11, 0) 80%
  );
}

.m-hero--tall {
  min-height: min(56.25vw, 900px);
}

.m-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 12, 14, 0.42) 0%, rgba(10, 12, 14, 0.05) 34%, rgba(10, 12, 14, 0.18) 62%, rgba(10, 12, 14, 0.78) 100%);
  pointer-events: none;
}

.m-hero--scrim-left::after {
  background:
    linear-gradient(100deg, rgba(8, 10, 11, 0.70) 0%, rgba(8, 10, 11, 0.58) 34%, rgba(8, 10, 11, 0.16) 66%, rgba(8, 10, 11, 0.24) 100%);
}

@media (min-width: 641px) {
  .m-hero--scrim-left .m-hero-media { object-position: 50% 20%; }
}

.m-hero--scrim-left .m-hero-head-row {
  margin-bottom: clamp(1.5rem, 9vh, 6.5rem);
}

@media (max-width: 640px) {
  #company-hero-title { font-size: min(var(--display), 7vw); }
}

@media (max-width: 640px) {
  .m-hero-media { object-position: 57% 42%; }

  .m-hero--scrim-left::after {
    background: linear-gradient(
      180deg,
      rgba(8, 10, 11, 0.46) 0%,
      rgba(8, 10, 11, 0.20) 32%,
      rgba(8, 10, 11, 0.56) 68%,
      rgba(8, 10, 11, 0.88) 100%
    );
  }
}

.m-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 3.5vw, 2.6rem);
}

.m-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  width: fit-content;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(14, 16, 19, 0.35);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.m-hero-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 12px rgba(220, 51, 39, 0.9);
}

.m-hero h1 {
  font-size: var(--display);
  font-weight: 800;
  line-height: 0.99;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  max-width: 21ch;
}

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

.m-hero-sub {
  max-width: 34rem;
  font-size: var(--lede);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
}

.m-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
}

.m-hero-head { display: grid; gap: 1.4rem; }

.m-hero-sticker {
  position: absolute;
  right: 0;
  bottom: 0;
  width: clamp(92px, 10vw, 148px);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.4));
}

.m-hero-head-row {
  position: relative;
  display: grid;
  gap: 1.4rem;
  padding-right: clamp(100px, 12vw, 170px);
}

.m-hero-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.m-hero-fact {
  padding: 1.05rem 1.3rem 1.15rem;
  background: rgba(14, 16, 19, 0.55);
  display: grid;
  gap: 0.2rem;
}

.m-hero-fact strong {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 720;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
}

.m-hero-fact > span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
}

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

@media (max-width: 900px) {
  .m-hero-facts, .m-hero-facts-3 { grid-template-columns: 1fr 1fr; }

  .m-hero-facts-3 .m-hero-fact:last-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .m-hero { min-height: min(96svh, 860px); }
  .m-hero-facts { grid-template-columns: 1fr 1fr; }
  .m-hero-fact { padding: 0.85rem 1rem 0.95rem; }
  .m-hero-actions .m-btn { flex: 1 1 auto; }
}

.m-first { padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem)); }

.m-page-head .m-kicker { color: var(--on-dark-muted); }

.m-hero-photo {
  position: relative;
  min-height: clamp(380px, 58vh, 620px);
  background: var(--dark);
  overflow: clip;
}

.m-hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 12, 14, 0.55) 0%, rgba(10, 12, 14, 0) 38%);
}

@media (max-width: 760px) {
  .m-hero-photo img { object-position: 38% center; }
}

.m-marquee {
  overflow: clip;
  padding-block: clamp(1rem, 2vw, 1.5rem);
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.m-section--dark .m-marquee,
.m-marquee--dark {
  background: var(--dark);
  border-color: var(--dark-line);
}

.m-marquee-track {
  display: flex;
  gap: 3.2rem;
  width: max-content;
  animation: m-marquee 26s linear infinite;
}

.m-marquee span {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  flex: none;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
}

.m-marquee--dark span { color: rgba(255, 255, 255, 0.85); }

.m-marquee i {
  font-style: normal;
  color: var(--red);
}

@keyframes m-marquee {
  to { transform: translateX(-50%); }
}

.m-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.25rem);
}

.m-bento-card {
  grid-column: span 6;
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: var(--r-lg);
  background: var(--gray);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;

  min-height: clamp(160px, 17vw, 205px);
  overflow: clip;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.m-bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }

.m-bento-card :is(h2, h3) {

  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 720;
  letter-spacing: -0.02em;
  line-height: 1.12;
  max-width: 26ch;

  margin-top: 0.55rem;
}

.m-bento-card p {
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--muted);
  max-width: 50ch;
}

.m-bento-num {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.m-bento-card--red { background: var(--red); color: #fff; }
.m-bento-card--red p { color: rgba(255, 255, 255, 0.82); }
.m-bento-card--red .m-bento-num { color: rgba(255, 255, 255, 0.6); }

.m-bento-card--dark { background: var(--dark); color: var(--on-dark); }
.m-bento-card--dark p { color: var(--on-dark-muted); }
.m-bento-card--dark .m-bento-num { color: var(--on-dark-muted); }

@media (max-width: 860px) {
  .m-bento-card { grid-column: 1 / -1; min-height: 0; }
}

.m-series {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.9rem, 1.8vw, 1.4rem);
}

.m-series-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  overflow: clip;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}

.m-series-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
  border-color: transparent;
}

.m-series-media {
  display: block;
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 3 / 2;
  padding: clamp(0.35rem, 0.9vw, 0.7rem);
  overflow: clip;
  background: #fff;
}

.m-series-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s var(--ease);
}

.m-series-card:hover .m-series-media img { transform: scale(1.045); }

.m-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  width: fit-content;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 640;
  letter-spacing: 0.02em;
  background: var(--ink);
  color: #fff;
}

.m-chip--red { background: var(--red); }

.m-chip--soft {
  background: rgba(23, 25, 27, 0.06);
  color: var(--ink);
}

.m-section--dark .m-chip--soft {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.m-inline-link {
  color: var(--red);
  font-weight: 620;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.m-inline-link:hover { color: var(--red-deep); }

.m-chip--outline-dark {
  background: rgba(14, 16, 19, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.m-series-status { position: absolute; top: 1.1rem; left: 1.1rem; }

.m-series-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: clamp(1.4rem, 2.6vw, 2.1rem);
  flex: 1;
}

.m-series-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.m-series-body h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 760;
  letter-spacing: -0.02em;
}

.m-series-spec {
  display: grid;
  gap: 0.15rem;
  font-size: 0.9rem;
  font-weight: 620;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.m-series-spec > span + span { font-weight: 560; color: var(--muted); }

.m-series-spec > span > span { margin-left: 0.55em; }

.m-series-text {
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 46ch;
}

.m-series-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.9rem;
  font-weight: 640;
  font-size: 0.95rem;
  color: var(--red);
}

.m-series-more svg { transition: transform 0.3s var(--ease); }
.m-series-card:hover .m-series-more svg { transform: translateX(5px); }

.m-round-arrow {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  color: var(--ink);
  flex: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, transform 0.4s var(--ease);
}

.m-series-card:hover .m-round-arrow {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: rotate(-45deg);
}

@media (max-width: 860px) {
  .m-series { grid-template-columns: 1fr; }
}

#models .m-lede { max-width: 64rem; }

#models.m-section { padding-block: clamp(2.25rem, 4vw, 2.75rem); }

#models .m-sec-head { margin-bottom: clamp(1.1rem, 2vw, 1.5rem); }

#models .m-lede { margin-top: 0.6rem; }

.m-series--compact .m-series-media { aspect-ratio: 2 / 1; }

.m-series--compact .m-series-media img { object-position: center 62%; }

.m-series--compact .m-series-body { padding: 1.2rem 1.5rem 1.35rem; gap: 0.5rem; }

.m-series--compact .m-series-more { padding-top: 0.5rem; }

.m-band {
  position: relative;
  border-radius: var(--r-lg);
  overflow: clip;
  min-height: clamp(380px, 46vw, 520px);
  display: flex;
  align-items: flex-end;
  background: var(--dark);
  color: var(--on-dark);
}

.m-band > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(10, 12, 14, 0) 30%, rgba(10, 12, 14, 0.82) 82%);
}

.m-band--scrim-left::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(10, 12, 14, 0.82) 0%,
    rgba(10, 12, 14, 0.62) 30%,
    rgba(10, 12, 14, 0.18) 55%,
    rgba(10, 12, 14, 0) 70%
  );
}

@media (max-width: 760px) {
  .m-band--scrim-left::before {
    background: linear-gradient(
      180deg,
      rgba(10, 12, 14, 0) 20%,
      rgba(10, 12, 14, 0.5) 48%,
      rgba(10, 12, 14, 0.86) 100%
    );
  }
}

.m-band-panel {
  position: relative;
  z-index: 2;
  padding: clamp(1.5rem, 3.5vw, 2.8rem);
  display: grid;
  gap: 0.9rem;
  max-width: 36rem;
}

.m-band-panel h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 730;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.m-band-panel p { color: rgba(255, 255, 255, 0.78); }

.m-band-panel .m-btn { width: fit-content; margin-top: 0.4rem; }

.m-band--low { min-height: clamp(360px, 38vw, 470px); }

.m-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.25rem);
}

.m-service-item {
  padding: clamp(1.4rem, 2.4vw, 2rem);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  gap: 0.6rem;
  align-content: start;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.m-service-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }

.m-service-num {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  color: var(--red);
}

.m-service-item h3 {
  font-size: var(--h3);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.m-service-item p { font-size: 0.95rem; color: var(--muted); }

@media (max-width: 980px) { .m-service-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .m-service-grid { grid-template-columns: 1fr; } }

.m-cta-panel {
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 160% at 85% -20%, #ff5a4c 0%, rgba(255, 90, 76, 0) 55%),
    var(--red);
  color: #fff;
  padding: clamp(1.8rem, 4vw, 3.4rem);
  overflow: clip;
  position: relative;
}

.m-cta-panel h2 {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 760;
  letter-spacing: -0.022em;
  line-height: 1.08;
  max-width: 22ch;
}

.m-cta-panel .m-cta-sub {
  margin-top: 0.9rem;
  max-width: 44rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--lede);
}

.m-quick-form { margin-top: clamp(1.5rem, 3vw, 2.2rem); display: grid; gap: 0.9rem; }

.m-quick-form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 0.7rem;
}

.m-quick-form input[type="text"],
.m-quick-form input[type="tel"],
.m-quick-form input[type="email"],
.m-quick-form input:not([type]) {
  min-height: 54px;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: #fff;
  color: var(--ink);
  width: 100%;
  transition: box-shadow 0.2s;
}

.m-quick-form input::placeholder { color: var(--muted); }

.m-quick-form input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(23, 25, 27, 0.35);
}

@media (max-width: 900px) {
  .m-quick-form-row { grid-template-columns: 1fr 1fr; }
  .m-quick-form-row .m-btn { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .m-quick-form-row { grid-template-columns: 1fr; }
}

.m-consent {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 46rem;
  cursor: pointer;
}

.m-cta-panel .m-consent { color: rgba(255, 255, 255, 0.72); }

.m-consent input {
  appearance: none;
  flex: none;
  width: 19px;
  height: 19px;
  margin-top: 0.1rem;
  border-radius: 6px;
  border: 1.5px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.m-consent input::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--red);
  transform: scale(0);
  transition: transform 0.18s var(--ease);
}

.m-consent input:checked::before { transform: scale(1); }

.m-cta-panel .m-consent input { border-color: rgba(255, 255, 255, 0.4); }
.m-cta-panel .m-consent input::before { background: var(--ink); }

.m-consent-doc { text-decoration: underline; text-underline-offset: 2px; }

.m-passport-cta .m-split { align-items: stretch; }
.m-passport-cta .m-form-card { align-content: start; }

.m-passport-cta .m-media-card {
  background: #fff;
  border: 1px solid var(--line);
}

.m-passport-cta .m-cta-sub {
  color: var(--muted);
  font-size: var(--lede);
  max-width: 46ch;
}

.m-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 4.5vw, 4.5rem);
  align-items: center;
}

.m-split--media-left > .m-split-media { order: -1; }

.m-split-copy { display: grid; gap: 1.05rem; align-content: center; justify-items: start; }

.m-split-copy--tight .m-kicker { margin-bottom: 0; }

.m-split--top { align-items: start; }

.m-split-copy .m-h2 { max-width: 20ch; }

.m-split-copy p { color: var(--muted); max-width: 50ch; }

.m-split-copy--tight .m-h2 { max-width: 26ch; }
.m-split-copy--tight p { max-width: 56ch; }

.m-section--dark .m-split-copy p { color: var(--on-dark-muted); }

.m-split-media { position: relative; }

.m-media-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: clip;
  background: var(--gray);
}

.m-media-card img,
.m-media-card video { width: 100%; height: auto; display: block; }

.m-media-offset { position: relative; }

.m-media-offset::before {
  content: "";
  position: absolute;
  inset: clamp(1rem, 2.5vw, 1.8rem) calc(clamp(1rem, 2.5vw, 1.8rem) * -1)
    calc(clamp(1rem, 2.5vw, 1.8rem) * -1) clamp(1rem, 2.5vw, 1.8rem);
  border-radius: var(--r-lg);
  background: var(--red);
}

.m-media-offset .m-media-card { position: relative; }

@media (max-width: 900px) {
  .m-split { grid-template-columns: 1fr; }
  .m-split--media-left > .m-split-media { order: 0; }
}

.m-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
  width: 100%;
  justify-self: stretch;
}

.m-metric {
  display: grid;
  gap: 0.25rem;
  padding-left: 1.1rem;
  border-left: 2px solid var(--red);
}

.m-metric strong {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 780;
  letter-spacing: -0.025em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.m-metric > span { font-size: 0.88rem; color: var(--muted); }

.m-section--dark .m-metric > span { color: var(--on-dark-muted); }

#origin-s13 .m-metric strong { white-space: normal; }
#origin-s13 .m-metric { align-content: space-between; }

.m-faq { display: grid; gap: 0.7rem; max-width: 56rem; }

.m-faq details {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: #fff;
  overflow: clip;
  transition: border-color 0.25s;
}

.m-faq details[open] { border-color: var(--ink); }

.m-faq summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 640;
  letter-spacing: -0.01em;
  cursor: pointer;
}

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

.m-faq-icon {
  position: relative;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gray);
  transition: background-color 0.25s, transform 0.35s var(--ease);
}

.m-faq-icon::before,
.m-faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1.8px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: background-color 0.25s;
}

.m-faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.m-faq details[open] .m-faq-icon {
  background: var(--red);
  transform: rotate(45deg);
}

.m-faq details[open] .m-faq-icon::before,
.m-faq details[open] .m-faq-icon::after { background: #fff; }

.m-faq-body {
  padding: 0 1.4rem 1.3rem;
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
  max-width: 62ch;
}

.m-faq-body strong { color: var(--ink); }

.m-faq-body .m-btn { width: fit-content; margin-top: 0.3rem; }

.m-faq-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  padding: clamp(1.4rem, 2.6vw, 2rem);
  border-radius: var(--r-lg);
  background: var(--dark);
  color: var(--on-dark);
}

.m-faq-cta h2 {
  font-size: clamp(1.3rem, 2.2vw, 1.8rem);
  font-weight: 720;
  letter-spacing: -0.02em;
}

.m-faq-cta-copy p { margin-top: 0.3rem; color: var(--on-dark-muted); }

.m-faq-cta-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.m-contact-action {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1.3rem 0.75rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s;
}

.m-contact-action:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-1);
  border-color: transparent;
}

.m-faq-cta .m-contact-action { border-color: transparent; }

.m-contact-action-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray);
  overflow: clip;
  flex: none;
}

.m-contact-action-icon img { width: 44px; height: 44px; object-fit: cover; }

.m-contact-action-icon svg { width: 22px; height: 22px; }

.m-contact-action-text { display: grid; line-height: 1.25; }

.m-contact-action-text strong { font-size: 0.98rem; font-weight: 680; }

.m-contact-action-text span { font-size: 0.8rem; color: var(--muted); }

.m-footer {
  background: var(--dark-2);
  color: var(--on-dark);
  padding-top: clamp(3.5rem, 7vw, 6rem);
  overflow: clip;
}

.m-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: clamp(1rem, 2vw, 1.5rem);
}

.m-footer-brand { display: grid; gap: 1rem; align-content: start; justify-items: start; }

.m-footer-brand img {
  width: 210px;
  filter: brightness(0) invert(1);
}

.m-footer-brand p {
  color: var(--on-dark-muted);
  font-size: 0.95rem;
  max-width: 34ch;
}

.m-footer h4 {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-dark-muted);
  margin-bottom: 1.1rem;
}

.m-footer-list { display: grid; gap: 0.55rem; }

.m-footer-list a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.m-footer-list a:hover { color: var(--red); }

.m-footer-list li { color: var(--on-dark-muted); font-size: 0.95rem; }

.m-footer-list li strong { color: #fff; font-weight: 640; }

.m-footer-messengers { display: flex; gap: 0.5rem; margin-top: 0.6rem; }

.m-footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding-block: 1.4rem;
  border-top: 1px solid var(--dark-line);
  color: var(--on-dark-muted);
  font-size: 0.85rem;
}

.m-footer-wordmark {
  padding-inline: 2vw;
  margin-bottom: clamp(0.6rem, 1.5vw, 1rem);
}

.m-footer-wordmark img {
  width: 100%;
  filter: brightness(0) invert(1);
  opacity: 0.07;
}

@media (max-width: 860px) {
  .m-footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
}

.m-chat {
  position: fixed;
  right: clamp(0.9rem, 2vw, 1.6rem);
  bottom: clamp(0.9rem, 2vw, 1.6rem);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.m-chat-label {
  padding: 0.6rem 1.05rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-1);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.m-chat:hover .m-chat-label,
.m-chat:focus-visible .m-chat-label { opacity: 1; transform: none; }

.m-chat-button {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 28px rgba(220, 51, 39, 0.45);
  transition: transform 0.3s var(--ease), background-color 0.25s;
}

.m-chat:hover .m-chat-button { transform: translateY(-3px); background: var(--red-deep); }

.m-chat-button svg { width: 26px; height: 26px; }

@media (max-width: 700px) {
  .m-chat-label { display: none; }
}

.m-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-block: 1px solid var(--line);
}

.m-stat-strip > div {
  background: var(--paper);
  padding: clamp(1.4rem, 3vw, 2.2rem) clamp(1.2rem, 2.5vw, 2rem);
  display: grid;
  gap: 0.2rem;
}

.m-stat-strip strong {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 780;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}

.m-stat-strip span { color: var(--muted); font-size: 0.9rem; }

@media (max-width: 640px) {
  .m-stat-strip { grid-template-columns: 1fr; }
}

.m-feature-rows { display: grid; gap: 0; margin-top: 0.4rem; }

.m-feature-rows p {
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 52ch;
}

.m-feature-rows p:last-child { border-bottom: 1px solid var(--line); }

.m-feature-rows strong { color: var(--ink); font-weight: 680; }

.m-models {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.25rem);
}

.m-model-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  overflow: clip;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

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

.m-model-media {
  width: 100%;
  min-height: 0;
  aspect-ratio: 7 / 5;
  overflow: clip;
  background: linear-gradient(180deg, #f7f8f8, #ebecec);
}

.m-model-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 92%;
}

.m-model-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: clamp(1.3rem, 2.2vw, 1.8rem);
  flex: 1;
}

.m-model-body h3 {
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 760;
  letter-spacing: -0.02em;
}

.m-model-spec {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  font-size: 0.9rem;
  font-weight: 620;
  font-variant-numeric: tabular-nums;
}

.m-model-note { font-size: 0.92rem; color: var(--muted); }

.m-model-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
}

.m-model-price {
  font-size: clamp(1.3rem, 1.9vw, 1.6rem);
  font-weight: 780;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) { .m-models { grid-template-columns: 1fr; } }

.m-tabs { display: flow-root; }

.m-tab-input { position: absolute; opacity: 0; pointer-events: none; }

.m-tab-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  width: fit-content;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(23, 25, 27, 0.06);
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}

.m-tab-label {
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 620;
  color: var(--muted);
  cursor: pointer;
  transition: background-color 0.25s, color 0.25s, box-shadow 0.25s;
}

.m-tab-label:hover { color: var(--ink); }

#tab-description:focus-visible ~ .m-tab-labels label[for="tab-description"],
#tab-specs:focus-visible ~ .m-tab-labels label[for="tab-specs"],
#tab-photos:focus-visible ~ .m-tab-labels label[for="tab-photos"],
#tab-features:focus-visible ~ .m-tab-labels label[for="tab-features"],
#tab-technicals:focus-visible ~ .m-tab-labels label[for="tab-technicals"],
#tab-video:focus-visible ~ .m-tab-labels label[for="tab-video"] {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.m-tab-panel { display: none; }

#tab-description:checked ~ .m-tab-labels label[for="tab-description"],
#tab-specs:checked ~ .m-tab-labels label[for="tab-specs"],
#tab-photos:checked ~ .m-tab-labels label[for="tab-photos"],
#tab-features:checked ~ .m-tab-labels label[for="tab-features"],
#tab-technicals:checked ~ .m-tab-labels label[for="tab-technicals"],
#tab-video:checked ~ .m-tab-labels label[for="tab-video"] {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-1);
}

#tab-description:checked ~ #panel-description,
#tab-specs:checked ~ #panel-specs,
#tab-photos:checked ~ #panel-photos,
#tab-features:checked ~ #panel-features,
#tab-technicals:checked ~ #panel-technicals,
#tab-video:checked ~ #panel-video { display: block; }

.m-spec-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: start;
}

@media (max-width: 860px) { .m-spec-columns { grid-template-columns: 1fr; } }

.m-prose { display: grid; gap: 0.9rem; }

.m-prose p { color: var(--muted); }

.m-prose p strong { color: var(--ink); }

.m-spec-h {
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 1.2rem;
}

.m-spec-rows { display: grid; }

.m-spec-rows li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.68rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.m-spec-rows strong { font-weight: 540; color: var(--muted); }

.m-spec-rows span {
  font-weight: 660;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.m-check-list { display: grid; gap: 0.55rem; }

#panel-description .m-check-list { display: block; }

#panel-description .m-check-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.2rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.94rem;
  font-weight: 540;
  color: var(--muted);
}

#panel-description .m-check-list li::before {
  content: "✓";
  order: 2;
  flex: none;
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  background: none;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 700;
}

.m-check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.97rem;
}

.m-check-list li::before {
  content: "";
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
  border-radius: 50%;
  background: var(--red) url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="none" stroke="white" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" d="M5.4 10.6l3 3L14.8 7.2"/></svg>') center / 13px no-repeat;
}

.m-option-list { display: grid; gap: 0.55rem; }

.m-option-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.97rem;
  color: var(--muted);
}

.m-option-list li::before {
  content: "";
  flex: none;
  width: 20px;
  height: 20px;
  margin-top: 0.1rem;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill="none" stroke="%23666b70" stroke-width="2" stroke-linecap="round" d="M10 6v8M6 10h8"/></svg>') center / 12px no-repeat;
}

.m-benefits { display: flex; flex-wrap: wrap; gap: 0.45rem; }

.m-benefits span {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(23, 25, 27, 0.055);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}

.m-section--dark .m-benefits span {
  background: rgba(255, 255, 255, 0.1);
  color: var(--on-dark);
}

.m-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.25rem);
}

.m-feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.9rem 0.9rem 1.5rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

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

.m-feature-media {
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--r-lg) - 8px);
  overflow: clip;
  background: var(--gray);
  margin-bottom: 0.4rem;
}

.m-feature-media img,
.m-feature-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-feature-media--zoom img { transform: scale(1.15); }

.m-feature-media--right video { object-position: 100% 50%; }

.m-feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  padding-inline: 0.5rem;
}

.m-feature-card .m-benefits { padding-inline: 0.5rem; }

.m-feature-card p {
  font-size: 0.92rem;
  color: var(--muted);
  padding-inline: 0.5rem;
}

@media (max-width: 980px) { .m-feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .m-feature-grid { grid-template-columns: 1fr; } }

.m-video-frame {
  border-radius: var(--r-lg);
  overflow: clip;
  background: var(--dark);
}

.m-video-frame video { width: 100%; height: auto; }

.m-form-card {
  display: grid;
  gap: 0.9rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
}

.m-section--dark .m-form-card { border-color: transparent; }

.m-form-card label:not(.m-consent) { display: grid; gap: 0.35rem; }

.m-form-card label:not(.m-consent) span {
  font-size: 0.8rem;
  font-weight: 620;
  color: var(--muted);
}

.m-form-card input:not([type="checkbox"]) {
  min-height: 52px;
  padding: 0.8rem 1.15rem;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--line);
  background: #fff;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.m-form-card input:not([type="checkbox"]):focus-visible {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220, 51, 39, 0.15);
}

.m-form-card .m-btn { width: 100%; }

.m-gallery { display: grid; gap: 0.8rem; }

.gallery-stage {
  position: relative;
  border-radius: var(--r-lg);
  overflow: clip;
  background: var(--gray);
}

.gallery-slide { aspect-ratio: 3 / 2; }

.gallery-slide img,
.gallery-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #fff;
  display: block;
}

.gallery-slide img.gallery-keep-left {
  object-position: left center;
}

.gallery-slide img.gallery-tall {
  object-fit: contain;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-1);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink);
  transition: background-color 0.25s, color 0.25s, transform 0.25s;
}

.gallery-arrow:hover { background: var(--red); color: #fff; }

.gallery-arrow-prev { left: 1rem; }
.gallery-arrow-next { right: 1rem; }

.gallery-counter {
  position: absolute;
  left: 1.1rem;
  bottom: 1rem;
  z-index: 3;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(14, 16, 19, 0.72);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.gallery-size {
  position: absolute;
  left: 1.1rem;
  top: 1rem;
  z-index: 3;
  max-width: calc(100% - 2.2rem);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(14, 16, 19, 0.72);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

@media (max-width: 560px) {
  .gallery-size { left: 0.7rem; top: 0.7rem; font-size: 0.74rem; padding: 0.3rem 0.7rem; }
}

.gallery-thumbs {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
}

.gallery-thumb {
  flex: none;
  width: 104px;
  border-radius: var(--r-sm);
  overflow: clip;
  border: 2px solid transparent;
  opacity: 0.72;
  transition: opacity 0.2s, border-color 0.2s;
  background: var(--gray);
}

.gallery-thumb img { width: 100%; height: 68px; object-fit: cover; }

.gallery-thumb:hover { opacity: 1; }

.gallery-thumb.is-active { opacity: 1; border-color: var(--red); }

@media (max-width: 640px) {
  .gallery-arrow { width: 42px; height: 42px; }
  .gallery-thumb { width: 84px; }
  .gallery-thumb img { height: 56px; }
}

.m-slideshow .slideshow-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: clip;
  background: var(--gray);
}

.m-slideshow .slideshow-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.9s var(--ease);
}

.m-slideshow .slideshow-frame img.is-active { opacity: 1; }

.m-origin {
  position: relative;
  overflow: clip;
  background: var(--dark);
  color: var(--on-dark);
}

.m-origin-slides {
  position: absolute;
  inset: 0;
}

.m-origin-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s var(--ease);
}

.m-origin-slides img.is-active { opacity: 1; }

.m-origin-slides .slideshow-frame { position: absolute; inset: 0; }

.m-culture-points { display: grid; gap: 0.6rem; margin-top: 0.4rem; }

.m-culture-points li {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 620;
  letter-spacing: -0.01em;
}

.m-culture-points li::before {
  content: "";
  flex: none;
  width: 22px;
  height: 3px;
  border-radius: 3px;
  background: var(--red);
  transform: translateY(-4px);
}

.m-origin::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 12, 14, 0.9) 0%, rgba(10, 12, 14, 0.55) 55%, rgba(10, 12, 14, 0.25) 100%);
}

.m-origin > .m-container {
  position: relative;
  z-index: 2;
  padding-block: clamp(4.5rem, 9vw, 8.5rem);
}

.m-origin-copy { display: grid; gap: 1.2rem; max-width: 38rem; justify-items: start; }

.m-origin-copy .m-h2 { max-width: none; }

.m-origin-copy > p { color: rgba(255, 255, 255, 0.78); }

.m-origin .m-metrics { margin-block: 0.6rem; width: 100%; }

.m-origin .m-metric > span { color: rgba(255, 255, 255, 0.62); }

.m-origin-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-table-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: #fff;
  overflow: clip;
}

.m-segment-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.m-segment-table thead th {
  text-align: left;
  padding: 1rem 1.4rem;
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--gray);
  border-bottom: 1px solid var(--line);
}

.m-segment-table tbody th,
.m-segment-table tbody td {
  padding: 1.05rem 1.4rem;
  vertical-align: top;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.m-segment-table tbody tr:last-child th,
.m-segment-table tbody tr:last-child td { border-bottom: 0; }

.m-segment-table tbody tr { transition: background-color 0.2s; }

.m-segment-table tbody tr:hover { background: #fafbfb; }

.m-segment-table thead th:nth-child(1) { width: 28%; }
.m-segment-table thead th:nth-child(2) { width: 40%; }
.m-segment-table thead th:nth-child(3) { width: 32%; }

.m-industry {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.25rem 0.85rem;
  align-items: center;
}

.m-industry-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: rgba(220, 51, 39, 0.08);
  color: var(--red);
}

.m-industry-name { font-weight: 680; font-size: 1rem; letter-spacing: -0.01em; }

.m-industry-note {
  grid-column: 2;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--muted);
}

.m-segment-table td { color: var(--muted); }

.m-thickness { display: grid; gap: 0.15rem; }

.m-thickness strong {
  font-size: 1.15rem;
  font-weight: 760;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.m-thickness span { font-size: 0.85rem; }

@media (max-width: 760px) {
  .m-segment-table thead { display: none; }
  .m-segment-table, .m-segment-table tbody, .m-segment-table tr,
  .m-segment-table th, .m-segment-table td { display: block; width: 100%; }
  .m-segment-table tbody tr { padding: 1.1rem 1.2rem; border-bottom: 1px solid var(--line); }
  .m-segment-table tbody tr:last-child { border-bottom: 0; }
  .m-segment-table tbody th, .m-segment-table tbody td { padding: 0.35rem 0; border: 0; }
  .m-thickness { margin-top: 0.3rem; }
}

.m-note {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.4rem;
  padding: 1rem 1.3rem;
  border-radius: var(--r-md);
  background: var(--gray);
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 56rem;
}

.m-note::before {
  content: "";
  flex: none;
  width: 3px;
  border-radius: 3px;
  background: var(--red);
}

.m-size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.8rem, 1.6vw, 1.25rem);
}

.m-size-card {
  position: relative;
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  border-radius: var(--r-lg);
  background: var(--gray);
  display: grid;
  gap: 0.5rem;
  align-content: start;
  overflow: clip;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.m-size-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }

.m-size-card h3 {
  font-size: 1.05rem;
  font-weight: 680;
  color: var(--muted);
}

.m-size-field {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1.05;
}

.m-size-note { font-size: 0.93rem; color: var(--muted); max-width: 30ch; }

.m-size-power {
  margin-top: 0.6rem;
  width: fit-content;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 0.83rem;
  font-weight: 640;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 860px) { .m-size-grid { grid-template-columns: 1fr; } }

.m-size-link { margin-top: 1.8rem; }

.quiz {
  max-width: 56rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 3.5vw, 2.8rem);
  border-radius: var(--r-lg);
  background: #fff;
  border: 1px solid var(--line);
}

.quiz-progress {
  height: 6px;
  border-radius: 999px;
  background: var(--gray);
  overflow: clip;
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

.quiz-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--red);
  transition: width 0.4s var(--ease);
}

.quiz-step { border: 0; padding: 0; margin: 0; }

.quiz-legend {
  display: grid;
  gap: 0.5rem;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  font-weight: 720;
  letter-spacing: -0.02em;
  padding: 0;
  margin-bottom: 0.4rem;
}

.quiz-legend:focus { outline: none; }

.quiz-counter {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.quiz-hint { color: var(--muted); font-size: 0.95rem; margin-bottom: 1.4rem; }

.quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }

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

.quiz-option {
  position: relative;
  display: block;
  padding: 1.05rem 1.2rem;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line);
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, transform 0.2s var(--ease);
}

.quiz-option:hover { border-color: var(--ink); }

.quiz-option:has(input:checked) {
  border-color: var(--red);
  background: rgba(220, 51, 39, 0.05);
}

.quiz-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.quiz-option > span { display: grid; gap: 0.15rem; font-size: 0.88rem; color: var(--muted); }

.quiz-option strong { font-size: 0.99rem; font-weight: 660; color: var(--ink); letter-spacing: -0.01em; }

.quiz-next { margin-top: 1.2rem; }

.quiz-back {
  margin-top: 1.4rem;
  font-size: 0.92rem;
  font-weight: 620;
  color: var(--muted);
  transition: color 0.2s;
}

.quiz-back:hover { color: var(--ink); }

@media (max-width: 720px) {
  .quiz-options, .quiz-options-compact { grid-template-columns: 1fr; }
}

.quiz-result { display: grid; gap: 1rem; }

.quiz-result-label {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.quiz-result-value {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}

.quiz-result-note { color: var(--muted); max-width: 56ch; }

.quiz-result-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

.quiz-result-facts > div {
  padding: 1rem 1.2rem;
  border-radius: var(--r-md);
  background: var(--gray);
  display: grid;
  gap: 0.2rem;
}

.quiz-result-facts dt { font-size: 0.8rem; color: var(--muted); }

.quiz-result-facts dd {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 740;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}

.quiz-result-spread {
  font-size: 0.92rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 1.1rem;
}

.quiz-result-spread strong { color: var(--ink); }

.quiz-result-spread ul {
  margin-top: 0.5rem;
  display: grid;
  gap: 0.3rem;
  padding-left: 1.1rem;
  list-style: disc;
}

.quiz-method {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 0;
  overflow: clip;
}

.quiz-method summary {
  list-style: none;
  padding: 0.9rem 1.2rem;
  font-weight: 640;
  font-size: 0.95rem;
  cursor: pointer;
}

.quiz-method summary::-webkit-details-marker { display: none; }

.quiz-method summary::before { content: "+ "; color: var(--red); font-weight: 800; }

.quiz-method[open] summary::before { content: "− "; }

.quiz-method > div {
  padding: 0 1.2rem 1.1rem;
  display: grid;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.quiz-disclaimer { font-size: 0.8rem; color: var(--muted); }

@media (max-width: 560px) {
  .quiz-result-facts { grid-template-columns: 1fr; }
}

.m-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(240px, 26vw, 330px);
  gap: 0.9rem;
  overflow-x: auto;
  padding-bottom: 0.6rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.m-strip figure {
  scroll-snap-align: start;
  display: grid;
  gap: 0.6rem;
}

.m-strip .m-strip-media {
  border-radius: var(--r-md);
  overflow: clip;
  aspect-ratio: 4 / 3;
  background: var(--gray);
}

.m-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.m-strip figure:hover img { transform: scale(1.05); }

.m-strip figcaption {
  font-size: 0.9rem;
  font-weight: 620;
  color: var(--ink);
}

.m-shops {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 1.6vw, 1.4rem);
  margin-top: clamp(1.8rem, 3.5vw, 2.8rem);
}

.m-shops figure { position: relative; display: grid; }

.m-shop-media {
  display: block;
  border-radius: var(--r-md);
  overflow: clip;
  aspect-ratio: 4 / 3;
  background: var(--gray);
}

.m-shop-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.m-shops figure:hover img { transform: scale(1.05); }

.m-shops figcaption {
  position: absolute;
  left: 1.1rem;
  top: 1rem;
  z-index: 2;
  max-width: calc(100% - 2.2rem);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(14, 16, 19, 0.72);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

@media (max-width: 560px) {
  .m-shops figcaption { left: 0.7rem; top: 0.7rem; font-size: 0.74rem; padding: 0.3rem 0.7rem; }
}

@media (max-width: 900px) {
  .m-shops { grid-template-columns: 1fr; }
}

.m-shops--lead { grid-template-columns: 1.55fr 1fr; }

.m-shops--lead figure:first-child { grid-row: 1 / span 2; }

.m-shops--lead figure:first-child .m-shop-media {
  aspect-ratio: auto;
  height: 100%;
  min-height: 0;
}

.m-shops--lead figure:not(:first-child) .m-shop-media { aspect-ratio: 16 / 9; }

@media (max-width: 900px) {

  .m-shops--lead { grid-template-columns: 1fr; }
  .m-shops--lead figure:first-child { grid-row: auto; }
  .m-shops--lead figure:first-child .m-shop-media { height: auto; }
  .m-shops--lead figure:not(:first-child) .m-shop-media { aspect-ratio: 4 / 3; }
}

.m-tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.m-metrics + .m-tag-row { margin-top: clamp(1.8rem, 3.5vw, 2.8rem); }

.m-metrics-source + .m-tag-row { margin-top: clamp(1.8rem, 3.5vw, 2.8rem); }

.m-metrics-source {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
}

.m-tag-row + .m-strip { margin-top: clamp(1.8rem, 3.5vw, 2.8rem); }

.m-tag-row li {
  padding: 0.55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

.m-steps {
  display: grid;
  gap: 0;
  counter-reset: step;
}

.m-steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.2rem;
  padding: 1.4rem 0;
  border-top: 1px solid var(--line);
}

.m-steps li:last-child { border-bottom: 1px solid var(--line); }

.m-steps li::before {
  content: "0" counter(step);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--red);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.m-steps strong {
  display: block;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 0.35rem;
}

.m-steps p { color: var(--muted); font-size: 0.96rem; max-width: 56ch; }

@media (max-width: 560px) {
  .m-steps li { grid-template-columns: 1fr; gap: 0.4rem; }
}

.m-page-head {
  background: var(--dark);
  color: var(--on-dark);
  padding: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem)) 0 clamp(2.5rem, 6vw, 4.5rem);
  position: relative;
  overflow: clip;
}

.m-page-head::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 51, 39, 0.28), transparent 65%);
  pointer-events: none;
}

.m-page-head h1 {
  font-size: var(--h1-inner);
  font-weight: 780;
  letter-spacing: -0.025em;
  line-height: 1.05;
  max-width: 20ch;
}

.m-page-head .m-lede { color: var(--on-dark-muted); }

.m-page-head--photo::after { display: none; }

.m-page-head--photo .m-page-head-media {
  position: absolute;
  inset: 0 auto 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 58%;
}

.m-page-head--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(8, 10, 11, 0.93) 0%,
    rgba(8, 10, 11, 0.87) 45%,
    rgba(8, 10, 11, 0.46) 75%,
    rgba(8, 10, 11, 0.28) 100%
  );
  pointer-events: none;

  z-index: 1;
}

.m-page-head--photo .m-container { position: relative; z-index: 2; }

.m-page-head--photo h1 {
  text-transform: uppercase;
  max-width: none;
}

.m-page-head--photo .m-contact-grid { margin-top: clamp(1.6rem, 3vw, 2.4rem); }

.m-page-head--photo .m-contact-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(14, 16, 19, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: var(--on-dark);
}

.m-page-head--photo .m-contact-card:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(14, 16, 19, 0.7);
}

.m-page-head--photo .m-contact-action-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--on-dark);
}

.m-page-head--photo .m-contact-action-text span { color: var(--on-dark-muted); }

@media (max-width: 900px) {
  .m-page-head--photo h1 { font-size: min(var(--h1-inner), 5.7vw); }
}

.m-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.7rem, 1.4vw, 1.1rem);
}

.m-contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.3rem;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.m-contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-1); }

@media (max-width: 980px) { .m-contact-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .m-contact-grid { grid-template-columns: 1fr; } }

.m-contact-grid + .m-sec-head { margin-top: clamp(2.8rem, 6vw, 4.5rem); margin-bottom: 1.6rem; }

.m-map { margin-top: clamp(1.1rem, 2vw, 1.6rem); }

.m-map-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.m-map-tab {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 620;
  cursor: pointer;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}

.m-map-tab:hover { color: var(--ink); border-color: var(--ink); }

.m-map-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.m-map-frame {
  position: relative;
  aspect-ratio: 8 / 3;
  border-radius: var(--r-md);
  overflow: clip;
  background: var(--gray);
}

.m-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.m-map-frame.is-locked iframe { pointer-events: none; }

.m-map-lock {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  color: transparent;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.m-map-lock:hover,
.m-map-lock:focus-visible {
  background: rgba(17, 17, 17, 0.32);
  color: #fff;
}

.m-map-lock span {
  padding: 0.6rem 1.15rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.78);
  font-size: 0.92rem;
  font-weight: 620;
  opacity: 0;
  transition: opacity 0.2s var(--ease);
}

.m-map-lock:hover span,
.m-map-lock:focus-visible span { opacity: 1; }

.m-map-frame:not(.is-locked) .m-map-lock { display: none; }

.m-map-frame:focus { outline: none; }

.m-map-frame:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.m-map-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  margin-top: 0.6rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.m-map-note a { color: var(--red); font-weight: 620; }
.m-map-note a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .m-map-frame { aspect-ratio: 3 / 2; }
}

.m-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.7rem, 1.4vw, 1.1rem);
}

.m-facts > div {
  padding: 1.4rem 1.5rem;
  border-radius: var(--r-md);
  background: var(--gray);
  display: grid;
  gap: 0.3rem;
  align-content: start;
}

.m-facts dt {
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.m-facts dd { margin: 0; font-weight: 620; font-size: 1rem; line-height: 1.45; }

@media (max-width: 860px) { .m-facts { grid-template-columns: 1fr; } }

.m-expert-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  width: 100%;
}

.m-expert-facts > div {
  padding: 1.1rem 1.3rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  gap: 0.2rem;
}

.m-expert-facts dt { font-size: 0.78rem; color: var(--on-dark-muted); }

.m-expert-facts dd {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 740;
  letter-spacing: -0.015em;
  font-variant-numeric: tabular-nums;
}

.m-fine-print { font-size: 0.82rem; color: var(--on-dark-muted); max-width: 48ch; }

.page-expert,
.page-dxf { background: var(--gray); }

.page-expert .m-section,
.page-dxf .m-section { background: transparent; }

.page-expert .m-header::before,
.page-dxf .m-header::before { opacity: 0; }

.page-expert .m-header,
.page-dxf .m-header {
  background: rgba(14, 16, 19, 0.88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.page-expert .m-expert-facts > div {
  background: #fff;
  border-color: rgba(15, 17, 20, 0.07);
}

.page-expert .m-expert-facts dt { color: var(--muted); }

html.m-js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--d, 0s);
}

html.m-js [data-reveal].is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }

  html.m-js [data-reveal] { opacity: 1; transform: none; }

  .m-marquee-track { animation: none; }
}

.m-form-note {
  grid-column: 1 / -1;
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.m-form-note--ok { color: #1f6b45; }
.m-form-note--error { color: var(--red-deep); }

.m-section--dark .m-form-note,
.m-cta-panel .m-form-note { color: #fff; }
.m-section--dark .m-form-note--error,
.m-cta-panel .m-form-note--error { color: #fff; font-weight: 600; }

.m-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
