:root {
  --ink: #031d28;
  --ink-soft: #0a2a36;
  --ink-lift: #123845;
  --teal: #55d5c6;
  --teal-dark: #27aa9e;
  --orange: #f28a3a;
  --orange-dark: #d96c1d;
  --paper: #f2f1ec;
  --paper-warm: #e9e6dd;
  --white: #ffffff;
  --text: #17323c;
  --muted: #647680;
  --line: rgba(3, 29, 40, 0.15);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 70px rgba(3, 29, 40, 0.16);
  --font-body: "Manrope", sans-serif;
  --font-display: "Oswald", sans-serif;
  --container: 1240px;
  --header-height: 86px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

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

[hidden] {
  display: none !important;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 18px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.market-note {
  position: relative;
  z-index: 110;
  background: var(--orange);
  color: var(--ink);
  font-size: 12px;
  letter-spacing: 0.02em;
}

.market-note__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.market-note strong {
  font-weight: 800;
}

.status-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 5px rgba(3, 29, 40, 0.12);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 29, 40, 0.92);
  color: var(--white);
  backdrop-filter: blur(16px);
  transition: height 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(3, 29, 40, 0.97);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.site-header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  min-width: 176px;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

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

.brand span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
}

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

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
  white-space: nowrap;
}

.header-contact span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.header-contact a {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 13px 24px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button--small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 11px;
}

.button--outline {
  border-color: rgba(85, 213, 198, 0.7);
  background: transparent;
  color: var(--white);
}

.button--outline:hover {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--ink);
}

.button--accent {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(242, 138, 58, 0.18);
}

.button--accent:hover {
  background: #ff9a4c;
  box-shadow: 0 16px 42px rgba(242, 138, 58, 0.3);
}

.button--accent svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--large {
  min-height: 62px;
  padding-inline: 30px;
}

.button--dark {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button--dark:hover {
  background: var(--ink-lift);
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero__image,
.hero__grid,
.hero::after {
  position: absolute;
  inset: 0;
}

.hero__image {
  background-image: linear-gradient(90deg, rgba(3, 29, 40, 0.99) 0%, rgba(3, 29, 40, 0.84) 42%, rgba(3, 29, 40, 0.22) 76%, rgba(3, 29, 40, 0.12) 100%), url("assets/images/hero-laser.webp");
  background-position: center;
  background-size: cover;
  filter: saturate(0.9) contrast(1.06);
  transform: scale(1.015);
}

.hero__grid {
  opacity: 0.13;
  background-image: linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, black, transparent 76%);
}

.hero::after {
  background: linear-gradient(180deg, transparent 60%, var(--ink) 100%);
  content: "";
  pointer-events: none;
}

.hero__line {
  position: absolute;
  z-index: 1;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(85, 213, 198, 0.45), transparent);
  transform: rotate(14deg);
}

.hero__line--one {
  top: -100px;
  right: 29%;
  height: 800px;
}

.hero__line--two {
  right: 12%;
  bottom: -220px;
  height: 650px;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 660px;
  align-items: center;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 0.65fr);
  gap: 72px;
  padding-top: 60px;
  padding-bottom: 70px;
}

.hero__content {
  max-width: 810px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow span + span {
  position: relative;
  padding-left: 28px;
}

.eyebrow span + span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 1px;
  background: var(--orange);
  content: "";
}

.hero h1 {
  max-width: 820px;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: clamp(56px, 6.2vw, 94px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  color: var(--teal);
  font-style: normal;
}

.hero__lead {
  max-width: 665px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 34px;
}

.hero__phone {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__phone span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero__phone strong {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

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

.hero__trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 600;
}

.hero__trust svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 2;
}

.hero-card {
  position: relative;
  align-self: end;
  margin-bottom: 36px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 26px;
  background: rgba(3, 29, 40, 0.8);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.hero-card::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 64px;
  height: 4px;
  background: var(--orange);
  content: "";
}

.hero-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-card__label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-card__time {
  border: 1px solid rgba(85, 213, 198, 0.5);
  padding: 4px 8px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.05em;
}

.hero-card__number {
  position: absolute;
  top: 62px;
  right: 24px;
  color: rgba(255, 255, 255, 0.06);
  font-family: var(--font-display);
  font-size: 110px;
  font-weight: 700;
  line-height: 1;
}

.hero-card h2 {
  position: relative;
  max-width: 260px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.18;
  text-transform: uppercase;
}

.hero-card p {
  position: relative;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: 0 0 4px;
  background: transparent;
  color: var(--teal);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link span,
.text-link b {
  font-size: 17px;
  font-weight: 500;
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:hover b {
  transform: translate(3px, -3px);
}

.text-link--light {
  color: var(--white);
}

.hero-card__footer {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card__footer span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card__footer span + span::before {
  margin-right: 10px;
  color: var(--orange);
  content: "/";
}

.hero-metrics {
  position: relative;
  z-index: 3;
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: repeat(4, 1fr);
}

.hero-metrics > div {
  display: flex;
  min-height: 130px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 22px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-metrics > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-metrics strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-metrics span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 600;
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 70px;
  margin-bottom: 54px;
}

.section-heading h2,
.about h2,
.lead-section h2,
.faq__intro h2,
.contacts h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  text-transform: uppercase;
}

.section-heading > p {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 14px;
}

.section-heading--light h2,
.lead-section h2,
.contacts h2 {
  color: var(--white);
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.58);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.kicker::before {
  width: 26px;
  height: 2px;
  background: currentColor;
  content: "";
}

.kicker--light {
  color: var(--teal);
}

.categories {
  position: relative;
  background: var(--paper);
}

.categories::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 32%;
  height: 100%;
  opacity: 0.35;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 31px, rgba(3, 29, 40, 0.05) 32px);
  content: "";
  pointer-events: none;
}

.category-grid {
  position: relative;
  display: grid;
  min-height: 420px;
  grid-template-columns: 1.25fr 0.85fr 0.85fr;
  gap: 14px;
}

.category-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.22) contrast(1.04);
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1), filter 400ms ease;
}

.category-card:hover img {
  filter: grayscale(0) contrast(1.04);
  transform: scale(1.045);
}

.category-card--rounds img {
  object-position: 0 54%;
  transform: translateX(18%) scale(2.75);
  transform-origin: 22% 48%;
}

.category-card--rounds:hover img {
  transform: translateX(18%) scale(2.9);
}

.category-card--sheets img {
  object-position: 50% 46%;
}

.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 29, 40, 0.06) 20%, rgba(3, 29, 40, 0.92) 100%);
}

.category-card--wide .category-card__overlay {
  background: linear-gradient(90deg, rgba(3, 29, 40, 0.2), rgba(3, 29, 40, 0.84)), linear-gradient(180deg, transparent 30%, rgba(3, 29, 40, 0.86));
}

.category-card__index {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-family: var(--font-display);
  font-size: 14px;
}

.category-card__content {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) 50px;
  grid-template-rows: 18px 76px 44px;
  gap: 6px 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.category-card__content > span {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: end;
  color: var(--teal);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-card h3 {
  display: flex;
  min-height: 76px;
  align-items: flex-start;
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
}

.category-card p {
  display: flex;
  min-height: 44px;
  align-items: flex-start;
  grid-column: 1;
  grid-row: 3;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.55;
}

.round-link {
  position: static;
  display: grid;
  width: 48px;
  height: 48px;
  align-self: end;
  grid-column: 2;
  grid-row: 2 / 4;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 22px;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.round-link:hover {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--ink);
  transform: rotate(12deg);
}

.about {
  overflow: hidden;
  background: var(--white);
}

.about__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 90px;
}

.about__media {
  position: relative;
  min-height: 560px;
}

.about__image-main {
  position: absolute;
  inset: 0 54px 44px 0;
  overflow: hidden;
  background: var(--ink);
}

.about__image-main::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3, 29, 40, 0.12), rgba(3, 29, 40, 0.5));
  content: "";
}

.about__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__stamp {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 245px;
  min-height: 138px;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: var(--teal);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.about__stamp strong {
  font-family: var(--font-display);
  font-size: 58px;
  line-height: 1;
}

.about__stamp span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about__measure {
  position: absolute;
  bottom: 4px;
  left: 0;
  display: flex;
  width: calc(100% - 270px);
  align-items: flex-end;
  justify-content: space-between;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 10px;
}

.about__measure i {
  width: 1px;
  height: 9px;
  background: var(--line);
}

.about__content > p {
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 14px;
}

.about__content h2 {
  margin-bottom: 28px;
}

.about__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 30px 0;
  background: var(--line);
}

.about__facts div {
  display: flex;
  min-height: 105px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 20px;
  background: var(--paper);
}

.about__facts strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 24px;
  text-transform: uppercase;
}

.about__facts span {
  color: var(--muted);
  font-size: 11px;
}

.advantages {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.advantages::before {
  position: absolute;
  top: -280px;
  right: -250px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(85, 213, 198, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(85, 213, 198, 0.025), 0 0 0 180px rgba(85, 213, 198, 0.018);
  content: "";
}

.advantages-grid {
  position: relative;
  display: grid;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
  grid-template-columns: repeat(4, 1fr);
}

.advantage-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: background 260ms ease, transform 260ms ease;
}

.advantage-card:hover {
  z-index: 1;
  background: var(--ink-lift);
  transform: translateY(-4px);
}

.advantage-card > span {
  display: block;
  margin-bottom: 52px;
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 14px;
}

.advantage-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  line-height: 1.14;
  text-transform: uppercase;
}

.advantage-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
}

.advantage-card--cta {
  background: var(--teal);
  color: var(--ink);
}

.advantage-card--cta:hover {
  background: #6ae0d3;
}

.advantage-card--cta > span,
.advantage-card--cta .text-link {
  color: var(--ink);
}

.advantage-card--cta .text-link {
  margin-top: 20px;
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.catalog {
  background: var(--paper-warm);
}

.catalog-table {
  border-top: 2px solid var(--ink);
}

.catalog-table__head,
.catalog-row {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(300px, 1.35fr) minmax(120px, 0.55fr) minmax(150px, 0.7fr) minmax(170px, 0.65fr);
  gap: 22px;
}

.catalog-table__head {
  min-height: 52px;
  border-bottom: 1px solid var(--ink);
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-row {
  min-height: 94px;
  border-bottom: 1px solid rgba(3, 29, 40, 0.2);
  transition: background 180ms ease, padding 180ms ease;
}

.catalog-row:hover {
  padding-inline: 16px;
  background: rgba(255, 255, 255, 0.58);
}

.catalog-row > div {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

.catalog-row > div b {
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
}

.catalog-row h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
}

.catalog-row > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.catalog-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 0 0 5px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.catalog-action b {
  font-size: 18px;
  font-weight: 500;
  transition: transform 180ms ease;
}

.catalog-action:hover b {
  transform: translate(3px, -3px);
}

.cut-offer {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.cut-offer__image {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 29, 40, 0.98) 0%, rgba(3, 29, 40, 0.77) 48%, rgba(3, 29, 40, 0.28) 100%), url("assets/images/hero-laser.webp") center/cover;
  filter: saturate(0.82);
}

.cut-offer::before {
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.13);
  content: "";
}

.cut-offer::after {
  position: absolute;
  z-index: 1;
  right: -80px;
  bottom: -270px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(242, 138, 58, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(242, 138, 58, 0.025), 0 0 0 140px rgba(242, 138, 58, 0.018);
  content: "";
}

.cut-offer__inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 650px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}

.cut-offer__content {
  max-width: 650px;
}

.cut-offer h2 {
  margin-bottom: 24px;
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 86px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}

.cut-offer h2 em {
  color: var(--orange);
  font-style: normal;
}

.cut-offer__content > p {
  max-width: 570px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 15px;
}

.cut-offer__specs {
  display: flex;
  align-self: stretch;
  flex-direction: column;
  justify-content: center;
}

.cut-offer__specs div {
  display: grid;
  min-height: 100px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: 56px 1fr;
  gap: 18px;
}

.cut-offer__specs span {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 14px;
}

.cut-offer__specs strong {
  max-width: 310px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}

.process {
  background: var(--white);
}

.process-list {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
}

.process-list::before {
  position: absolute;
  top: 35px;
  right: 12.5%;
  left: 12.5%;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-list li {
  position: relative;
  padding-right: 36px;
}

.process-list li + li {
  padding-left: 24px;
}

.process-list > li > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: 16px;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.process-list li:hover > span {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--teal);
}

.process-list h3 {
  margin-bottom: 11px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.lead-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--ink-soft);
  color: var(--white);
}

.lead-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 70%);
}

.lead-section__grid {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}

.lead-section__content {
  padding-top: 18px;
}

.lead-section h2 {
  margin-bottom: 24px;
}

.lead-section__content > p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.lead-section__content ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lead-section__content li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 700;
}

.lead-section__content li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 15px;
  height: 1px;
  background: var(--orange);
  content: "";
}

.lead-form {
  padding: 38px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.22);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(3, 29, 40, 0.24);
  border-radius: 0;
  padding: 9px 0 12px;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 86px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9aa5a9;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--teal-dark);
  box-shadow: 0 1px 0 var(--teal-dark);
}

.field input.is-invalid,
.field textarea.is-invalid {
  border-color: #c64040;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0 20px;
  color: var(--muted);
  cursor: pointer;
  font-size: 9px;
  line-height: 1.5;
}

.consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--teal-dark);
}

.consent a {
  border-bottom: 1px solid currentColor;
}

.button--form {
  width: 100%;
}

.form-note {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.delivery {
  background: var(--paper);
}

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

.delivery-card {
  position: relative;
  min-height: 430px;
  padding: 34px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

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

.delivery-card--primary {
  border-color: var(--teal-dark);
  background: var(--teal);
}

.delivery-card--primary:hover {
  background: #69dfd2;
}

.delivery-card__index {
  position: absolute;
  top: 26px;
  right: 28px;
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: 14px;
}

.delivery-card > svg {
  width: 60px;
  height: 60px;
  margin: 30px 0 54px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.delivery-card h3 {
  margin-bottom: 20px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  text-transform: uppercase;
}

.delivery-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.delivery-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 12px;
}

.delivery-card--primary li {
  color: rgba(3, 29, 40, 0.72);
}

.delivery-card li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 1px;
  background: var(--orange-dark);
  content: "";
}

.faq {
  background: var(--white);
}

.faq__grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
}

.faq__intro {
  position: sticky;
  top: 110px;
}

.faq__intro h2 {
  margin-bottom: 22px;
}

.faq__intro p {
  max-width: 390px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  border-top: 2px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  min-height: 82px;
  align-items: center;
  grid-template-columns: 38px 1fr 26px;
  gap: 18px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  list-style: none;
  text-transform: uppercase;
}

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

.faq-list summary > span {
  color: var(--orange-dark);
  font-size: 12px;
}

.faq-list summary i {
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 11px;
  left: 4px;
  width: 16px;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: transform 200ms ease;
}

.faq-list summary i::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 26px 26px 56px;
  color: var(--muted);
  font-size: 13px;
}

.contacts {
  padding: 110px 0;
  background: var(--ink);
  color: var(--white);
}

.contacts__grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
}

.contacts h2 {
  margin-bottom: 38px;
}

.contact-list {
  display: grid;
  gap: 0;
  margin-bottom: 34px;
  border-top: 1px solid var(--line-light);
}

.contact-list > div {
  display: grid;
  min-height: 76px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 90px 1fr;
  gap: 20px;
}

.contact-list span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list strong,
.contact-list address {
  color: var(--white);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}

.contact-list a {
  transition: color 180ms ease;
}

.contact-list a:hover {
  color: var(--teal);
}

.contacts__map {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--paper-warm);
}

.contacts__map::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  pointer-events: none;
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: grayscale(0.7) contrast(1.05);
}

.contacts__map > a {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  padding: 12px 16px;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer {
  background: #02141c;
  color: var(--white);
}

.site-footer__top {
  display: grid;
  min-height: 190px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
}

.brand--footer img {
  width: 196px;
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.site-footer__legal strong {
  font-size: 12px;
}

.site-footer__legal span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.site-footer__links a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
}

.site-footer__bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
}

.mobile-cta {
  position: fixed;
  z-index: 90;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 0 20px;
  background: var(--orange);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mobile-cta span {
  font-size: 20px;
}

.quick-form-modal {
  width: min(930px, calc(100% - 40px));
  max-height: min(720px, calc(100dvh - 40px));
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  overflow: visible;
}

.quick-form-modal::backdrop {
  background: rgba(1, 14, 20, 0.82);
  backdrop-filter: blur(8px);
}

.quick-form-modal[open] {
  animation: dialog-in 260ms ease both;
}

.quick-form-modal__shell {
  position: relative;
  display: grid;
  max-height: min(720px, calc(100dvh - 40px));
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  grid-template-columns: 0.42fr 0.58fr;
}

.quick-form-modal__close {
  position: absolute;
  z-index: 5;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(3, 29, 40, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  cursor: pointer;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

.quick-form-modal__aside {
  position: relative;
  display: flex;
  min-height: 620px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 44px 40px;
  background-color: var(--ink);
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 39px, rgba(255, 255, 255, 0.035) 40px);
  color: var(--white);
}

.quick-form-modal__mark {
  position: absolute;
  top: 34px;
  right: -4px;
  color: rgba(255, 255, 255, 0.055);
  font-family: var(--font-display);
  font-size: 190px;
  font-weight: 700;
  line-height: 0.8;
}

.quick-form-modal__aside > div {
  position: relative;
  z-index: 1;
  margin-top: auto;
  margin-bottom: 54px;
}

.quick-form-modal__aside h2 {
  max-width: 330px;
  margin: 14px 0 18px;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 600;
  line-height: 1.06;
  text-transform: uppercase;
}

.quick-form-modal__aside p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.quick-form-modal__aside ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  list-style: none;
}

.quick-form-modal__aside li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quick-form-modal__aside li::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 1px;
  background: var(--orange);
  content: "";
}

.quick-form {
  min-height: 620px;
  overflow-y: auto;
  padding: 46px 48px 38px;
}

.quick-form__heading {
  padding-right: 40px;
  margin-bottom: 28px;
}

.quick-form__heading > span {
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quick-form__heading h3 {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  line-height: 1.1;
  text-transform: uppercase;
}

.quick-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.quick-form__grid textarea {
  min-height: 72px;
}

.quick-form__consent {
  margin: 20px 0 18px;
}

.quiz-modal {
  width: min(1120px, calc(100% - 40px));
  max-height: min(820px, calc(100dvh - 40px));
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--text);
  overflow: visible;
}

.quiz-modal::backdrop {
  background: rgba(1, 14, 20, 0.82);
  backdrop-filter: blur(8px);
}

.quiz-modal[open] {
  animation: dialog-in 260ms ease both;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.quiz-modal__shell {
  position: relative;
  display: grid;
  max-height: min(820px, calc(100dvh - 40px));
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.45);
  grid-template-columns: 0.38fr 0.62fr;
}

.quiz-modal__close {
  position: absolute;
  z-index: 5;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(3, 29, 40, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  cursor: pointer;
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

.quiz-modal__aside {
  display: flex;
  min-height: 690px;
  flex-direction: column;
  justify-content: space-between;
  padding: 42px;
  background: var(--ink);
  color: var(--white);
}

.brand--quiz img {
  width: 170px;
}

.quiz-modal__aside h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 37px;
  font-weight: 600;
  line-height: 1.08;
  text-transform: uppercase;
}

.quiz-modal__aside p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.quiz-modal__aside ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quiz-modal__aside li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.quiz-modal__aside li::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 1px;
  background: var(--orange);
  content: "";
}

.quiz {
  display: flex;
  min-height: 690px;
  flex-direction: column;
  overflow-y: auto;
  padding: 42px 48px 34px;
}

.quiz__progress {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-right: 45px;
}

.quiz__progress-track {
  height: 3px;
  flex: 1;
  overflow: hidden;
  background: var(--paper-warm);
}

.quiz__progress-track span {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--orange);
  transition: width 250ms ease;
}

.quiz__progress > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
}

.quiz-step {
  display: none;
  padding: 44px 0 28px;
}

.quiz-step.is-active {
  display: block;
  animation: step-in 220ms ease both;
}

@keyframes step-in {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.quiz-step__label {
  display: block;
  margin-bottom: 9px;
  color: var(--orange-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quiz-step h3 {
  max-width: 590px;
  margin-bottom: 28px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 35px;
  font-weight: 600;
  line-height: 1.12;
  text-transform: uppercase;
}

.quiz-step > p {
  max-width: 560px;
  margin: -14px 0 24px;
  color: var(--muted);
  font-size: 12px;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quiz-options label {
  position: relative;
  cursor: pointer;
}

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

.quiz-options label > span {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  padding: 13px 42px 13px 18px;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.quiz-options label > span::after {
  position: absolute;
  top: 50%;
  right: 17px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1px solid rgba(3, 29, 40, 0.28);
  border-radius: 50%;
  color: var(--white);
  content: "✓";
  font-size: 10px;
  transform: translateY(-50%);
}

.quiz-options input:checked + span {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.quiz-options input:checked + span::after {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--ink);
}

.quiz-options input:focus-visible + span {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
}

.quiz-other {
  margin-top: 16px;
}

.quiz-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.consent--quiz {
  margin-bottom: 0;
}

.quiz__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.quiz-back {
  border: 0;
  padding: 12px 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quiz-back:disabled {
  cursor: default;
  opacity: 0.25;
}

.quiz-next,
.quiz-submit {
  min-width: 180px;
}

.quiz-next:disabled {
  cursor: not-allowed;
  opacity: 0.38;
  box-shadow: none;
  transform: none;
}

.toast {
  position: fixed;
  z-index: 1200;
  top: 22px;
  right: 22px;
  display: grid;
  width: min(410px, calc(100% - 32px));
  align-items: center;
  grid-template-columns: 42px 1fr 28px;
  gap: 14px;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-16px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.toast__icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: var(--ink);
  font-weight: 900;
}

.toast > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.toast strong {
  color: var(--ink);
  font-size: 13px;
}

.toast span {
  color: var(--muted);
  font-size: 10px;
}

.toast button {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 22px;
}

.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  max-width: 780px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-inline: auto;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(3, 29, 40, 0.96);
  color: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 10px;
  line-height: 1.55;
}

.cookie-banner p a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.cookie-banner > div {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.cookie-button {
  min-height: 40px;
  border: 1px solid var(--teal);
  padding: 8px 14px;
  background: var(--teal);
  color: var(--ink);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cookie-button--secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1180px) {
  .site-header__inner {
    gap: 18px;
  }

  .main-nav {
    gap: 15px;
  }

  .main-nav a {
    font-size: 11px;
  }

  .header-contact {
    display: none;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.6fr);
    gap: 40px;
  }

  .about__grid,
  .lead-section__grid,
  .faq__grid {
    gap: 60px;
  }

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

  .advantage-card {
    min-height: 230px;
  }

  .catalog-table__head,
  .catalog-row {
    grid-template-columns: minmax(270px, 1.2fr) 0.55fr 0.65fr 0.7fr;
  }

  .quiz-modal__aside {
    padding: 34px;
  }

  .quiz {
    padding-inline: 38px;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 90px 0;
  }

  .site-header > .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header .button--outline,
  .main-nav {
    display: none;
  }

  .site-header .brand {
    margin-right: auto;
  }

  .site-header .header-contact {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav.is-open {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    margin: 0;
    padding: 12px 24px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(3, 29, 40, 0.99);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
  }

  .main-nav.is-open a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    min-height: 650px;
    grid-template-columns: 1fr;
    padding-top: 75px;
  }

  .hero__content {
    max-width: 750px;
  }

  .hero-card {
    display: none;
  }

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

  .hero-metrics > div:nth-child(2) {
    border-right: 0;
  }

  .hero-metrics > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .category-grid {
    min-height: auto;
    grid-template-columns: 1fr 1fr;
  }

  .category-card {
    min-height: 410px;
  }

  .category-card--wide {
    grid-column: 1 / -1;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .about__media {
    min-height: 520px;
  }

  .catalog-table__head {
    display: none;
  }

  .catalog-table {
    border-top-width: 1px;
  }

  .catalog-row {
    grid-template-columns: minmax(250px, 1.3fr) 0.7fr 0.9fr;
  }

  .catalog-row .catalog-action {
    grid-column: 1 / -1;
    width: max-content;
    margin: -10px 0 18px 47px;
  }

  .cut-offer__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
  }

  .process-list {
    grid-template-columns: 1fr 1fr;
    gap: 46px 0;
  }

  .process-list::before {
    display: none;
  }

  .lead-section__grid,
  .faq__grid,
  .contacts__grid {
    grid-template-columns: 1fr;
  }

  .lead-section__content {
    max-width: 680px;
  }

  .delivery-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .faq__intro {
    position: static;
  }

  .contacts__content {
    max-width: 650px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__links {
    align-items: flex-start;
    grid-column: 1 / -1;
    padding-bottom: 28px;
  }

  .quick-form-modal__shell {
    grid-template-columns: 0.38fr 0.62fr;
  }

  .quick-form-modal__aside {
    padding: 36px 30px;
  }

  .quick-form-modal__aside h2 {
    font-size: 35px;
  }

  .quick-form {
    padding-inline: 36px;
  }

  .quiz-modal__shell {
    grid-template-columns: 0.32fr 0.68fr;
  }

  .quiz-modal__aside {
    padding: 28px;
  }

  .quiz-modal__aside h2 {
    font-size: 29px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .market-note__inner {
    min-height: 31px;
    font-size: 9px;
  }

  .market-note strong {
    display: none;
  }

  .site-header .header-contact {
    display: none;
  }

  .brand img {
    width: 152px;
  }

  .brand span {
    display: none;
  }

  .hero__image {
    background-image: linear-gradient(90deg, rgba(3, 29, 40, 0.98), rgba(3, 29, 40, 0.74)), url("assets/images/hero-laser.webp");
    background-position: 61% center;
  }

  .hero__inner {
    min-height: 650px;
    padding-top: 55px;
    padding-bottom: 45px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 9px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(44px, 14vw, 64px);
  }

  .hero__lead {
    font-size: 15px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero__phone {
    width: max-content;
  }

  .hero__trust {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .hero-metrics > div {
    min-height: 105px;
    padding: 18px;
  }

  .hero-metrics strong {
    font-size: 25px;
  }

  .hero-metrics span {
    font-size: 9px;
  }

  .section-heading {
    display: block;
    margin-bottom: 36px;
  }

  .section-heading h2,
  .about h2,
  .lead-section h2,
  .faq__intro h2,
  .contacts h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .section-heading > p {
    margin-top: 20px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card--wide {
    min-height: 390px;
    grid-column: auto;
  }

  .category-card h3 {
    min-height: 68px;
    font-size: 29px;
  }

  .category-card__content {
    right: 20px;
    bottom: 20px;
    left: 20px;
    grid-template-rows: 18px 68px 44px;
  }

  .about__media {
    min-height: 420px;
  }

  .about__image-main {
    right: 28px;
    bottom: 50px;
  }

  .about__stamp {
    width: 210px;
    min-height: 118px;
  }

  .about__facts {
    grid-template-columns: 1fr;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    min-height: 210px;
  }

  .advantage-card > span {
    margin-bottom: 30px;
  }

  .catalog-row {
    display: grid;
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 22px 0;
  }

  .catalog-row:hover {
    padding: 22px 12px;
  }

  .catalog-row > div {
    align-items: baseline;
    grid-column: 1 / -1;
  }

  .catalog-row h3 {
    font-size: 23px;
  }

  .catalog-row .catalog-action {
    grid-column: 1 / -1;
    margin: 10px 0 0 47px;
  }

  .cut-offer,
  .cut-offer__inner {
    min-height: auto;
  }

  .cut-offer::before {
    display: none;
  }

  .cut-offer__inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .cut-offer h2 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .cut-offer__specs div {
    min-height: 80px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .process-list li,
  .process-list li + li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    padding: 0;
  }

  .process-list > li > span {
    width: 58px;
    height: 58px;
    margin: 0;
  }

  .lead-section {
    padding: 72px 0;
  }

  .lead-section__grid {
    gap: 40px;
  }

  .lead-form {
    padding: 28px 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field--wide {
    grid-column: auto;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .delivery-card,
  .delivery-card:last-child {
    min-height: 385px;
    grid-column: auto;
  }

  .faq__grid,
  .contacts__grid {
    gap: 48px;
  }

  .faq-list summary {
    grid-template-columns: 28px 1fr 24px;
    gap: 10px;
    font-size: 17px;
  }

  .faq-list details p {
    margin-left: 38px;
  }

  .contacts {
    padding: 76px 0;
  }

  .contacts__map,
  .contacts__map iframe {
    min-height: 430px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 40px 0;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0 90px;
  }

  .site-footer__links {
    grid-column: auto;
    padding-bottom: 0;
  }

  .mobile-cta {
    display: flex;
  }

  .quick-form-modal {
    width: 100%;
    max-width: 100vw !important;
    max-height: 100dvh;
    margin: 0;
  }

  .quick-form-modal__shell {
    max-height: 100dvh;
    min-height: 100dvh;
    grid-template-columns: 1fr;
  }

  .quick-form-modal__aside {
    display: none;
  }

  .quick-form {
    min-height: 100dvh;
    padding: 58px 22px calc(28px + env(safe-area-inset-bottom));
  }

  .quick-form__heading {
    padding-right: 28px;
    margin-bottom: 24px;
  }

  .quick-form__heading h3 {
    font-size: 30px;
  }

  .quick-form__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .quick-form__grid .field--wide {
    grid-column: auto;
  }

  .quiz-modal {
    width: 100%;
    max-height: 100dvh;
    margin: 0;
  }

  .quiz-modal__shell {
    max-height: 100dvh;
    min-height: 100dvh;
    grid-template-columns: 1fr;
  }

  .quiz-modal__aside {
    display: none;
  }

  .quiz {
    min-height: 100dvh;
    padding: 32px 22px 24px;
  }

  .quiz__progress {
    padding-right: 42px;
  }

  .quiz-step {
    padding-top: 38px;
  }

  .quiz-step h3 {
    margin-bottom: 24px;
    font-size: 30px;
  }

  .quiz-options,
  .quiz-contact-grid {
    grid-template-columns: 1fr;
  }

  .quiz-options label > span {
    min-height: 52px;
  }

  .quiz__controls {
    position: sticky;
    bottom: 0;
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--white);
  }

  .quiz-next,
  .quiz-submit {
    min-width: 150px;
  }

  .cookie-banner {
    bottom: 82px;
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .cookie-banner > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 430px) {
  .market-note__inner {
    justify-content: flex-start;
  }

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

  .hero-metrics > div {
    min-height: 84px;
    border-right: 1px solid rgba(255, 255, 255, 0.14) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-metrics > div:last-child {
    border-bottom: 0;
  }

  .about__media {
    min-height: 360px;
  }

  .about__stamp {
    width: 180px;
    min-height: 102px;
    padding: 18px;
  }

  .about__stamp strong {
    font-size: 45px;
  }

  .about__measure {
    display: none;
  }

  .catalog-row > span {
    font-size: 10px;
  }

  .contact-list > div {
    align-items: start;
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 17px 0;
  }

  .quiz__controls {
    gap: 8px;
  }

  .quiz-back {
    width: 64px;
    font-size: 8px;
  }

  .quiz-next,
  .quiz-submit {
    min-width: 0;
    flex: 1;
    padding-inline: 14px;
    font-size: 10px;
  }

  .cookie-banner > div {
    grid-template-columns: 1fr;
  }
}
