@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/manrope-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("/assets/fonts/unbounded-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --paper: #f5f7fa;
  --white: #ffffff;
  --ink: #151a21;
  --muted: #667180;
  --line: #d7dde5;
  --blue: #244dff;
  --blue-dark: #1837bc;
  --blue-soft: #dfe6ff;
  --coral: #ff5c45;
  --yellow: #ffe67a;
  --success: #1b8a5a;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(18, 30, 53, 0.14);
  --shell: min(1240px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.modal-open,
body.lightbox-open {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

button {
  color: inherit;
}

svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.06;
}

h1 {
  font-size: clamp(3rem, 6.1vw, 6.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4.35rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 2rem);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  background: var(--white);
  padding: 12px 18px;
  border: 2px solid var(--blue);
}

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

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

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35c283;
  box-shadow: 0 0 0 5px rgba(53, 194, 131, 0.12);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 22px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button svg,
.text-link svg,
.card-link svg,
.catalog-card b svg {
  transition: transform 180ms ease;
}

.button:hover svg,
.text-link:hover svg,
.solution-card:hover .card-link svg,
.catalog-card:hover b svg {
  transform: translateX(4px);
}

.button-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(255, 92, 69, 0.23);
}

.button-primary:hover {
  background: #ff735e;
}

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

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

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

.button-small {
  min-height: 42px;
  padding-inline: 16px;
  font-size: 0.82rem;
}

.button-large {
  min-height: 66px;
  padding-inline: 28px;
}

.button-wide {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid rgba(21, 26, 33, 0.08);
  background: rgba(245, 247, 250, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  min-height: 78px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}

.brand {
  display: grid;
  grid-template-columns: 24px auto;
  align-items: center;
  column-gap: 8px;
  font-family: "Unbounded", "Arial Black", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.brand small {
  grid-column: 2;
  color: var(--muted);
  font-family: "Manrope", sans-serif;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.brand-line {
  position: relative;
  width: 24px;
  height: 24px;
  grid-row: 1 / 3;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.brand-line::before,
.brand-line::after {
  position: absolute;
  content: "";
  background: var(--coral);
}

.brand-line::before {
  width: 16px;
  height: 2px;
  top: 5px;
  left: 8px;
}

.brand-line::after {
  width: 2px;
  height: 8px;
  top: 5px;
  right: -1px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.desktop-nav a {
  position: relative;
  padding-block: 26px;
  color: #3f4854;
  font-size: 0.86rem;
  font-weight: 600;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-link {
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  overflow: hidden;
  padding: 54px 0 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(470px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-block: 50px 80px;
}

.hero-copy > * {
  animation: hero-enter 680ms both cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-copy > *:nth-child(2) { animation-delay: 80ms; }
.hero-copy > *:nth-child(3) { animation-delay: 150ms; }
.hero-copy > *:nth-child(4) { animation-delay: 220ms; }
.hero-copy > *:nth-child(5) { animation-delay: 290ms; }

.hero-visual {
  animation: hero-visual-enter 900ms 140ms both cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes hero-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
}

@keyframes hero-visual-enter {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
  }
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-family: "Unbounded", "Arial Black", sans-serif;
  font-weight: 600;
  letter-spacing: -0.065em;
}

.hero h1 em {
  position: relative;
  color: var(--blue);
  font-style: normal;
  white-space: nowrap;
}

.hero h1 em::after {
  position: absolute;
  right: 2%;
  bottom: 0.01em;
  left: 1%;
  height: 0.08em;
  background: var(--coral);
  content: "";
  transform: rotate(-1deg);
}

.hero-lead {
  max-width: 660px;
  margin-bottom: 32px;
  color: #3f4854;
  font-size: clamp(1.06rem, 1.5vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.micro-proof {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 0.82rem;
}

.micro-proof svg {
  color: var(--success);
}

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

.ceiling-card {
  position: absolute;
  width: min(48vw, 650px);
  height: 670px;
  top: 0;
  left: 0;
  overflow: hidden;
  border-radius: 4px 4px 48% 4px;
  background: #ccd2d9;
  box-shadow: var(--shadow);
}

.ceiling-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 24, 41, 0.02) 45%, rgba(15, 24, 41, 0.55) 100%);
  content: "";
}

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

.ceiling-card-master img {
  object-position: 47% center;
}

.ceiling-card-master::after {
  background: linear-gradient(180deg, rgba(15, 24, 41, 0.02) 35%, rgba(15, 24, 41, 0.72) 100%);
}

.ceiling-grid {
  position: absolute;
  z-index: 2;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
}

.laser {
  position: absolute;
  z-index: 3;
  height: 3px;
  background: var(--coral);
  box-shadow: 0 0 18px rgba(255, 92, 69, 0.85);
  transform-origin: left;
}

.laser::after {
  position: absolute;
  width: 8px;
  height: 8px;
  top: -3px;
  right: -3px;
  border-radius: 50%;
  background: var(--white);
  content: "";
  box-shadow: 0 0 18px var(--coral);
}

.laser-one {
  width: 83%;
  top: 21%;
  left: 10%;
  transform: rotate(8deg);
}

.laser-two {
  width: 55%;
  top: 15%;
  left: 58%;
  transform: rotate(97deg);
}

.visual-label {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.72rem;
  line-height: 1.2;
}

.visual-label b {
  font-family: "Unbounded", sans-serif;
  font-size: 1.05rem;
}

.label-top {
  top: 35%;
  left: 7%;
}

.label-bottom {
  left: 7%;
  bottom: 10%;
}

.hero-badge {
  position: absolute;
  z-index: 6;
  display: flex;
  width: 176px;
  height: 176px;
  right: -28px;
  bottom: 42px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  transform: rotate(7deg);
}

.hero-badge strong {
  font-family: "Unbounded", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.hero-badge span {
  margin-top: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.trust-rail {
  display: grid;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.trust-rail span {
  padding: 20px 12px;
  border-right: 1px solid var(--line);
  color: #4a5564;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.founder-section {
  scroll-margin-top: 90px;
  background: var(--ink);
  color: var(--white);
}

.founder-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  gap: clamp(44px, 8vw, 120px);
}

.founder-photo {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #37404b;
}

.founder-photo::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(10, 16, 24, 0.86));
  content: "";
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.founder-photo > span {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 34px;
  left: 36px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.founder-photo small {
  display: block;
  margin-top: 8px;
  color: #b8c1cb;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.founder-copy h2 {
  max-width: 880px;
  margin-bottom: 34px;
}

.founder-copy > p:not(.eyebrow) {
  max-width: 760px;
  color: #c6ced7;
  font-size: 1.04rem;
  line-height: 1.75;
}

.founder-facts {
  display: grid;
  width: 100%;
  margin: 34px 0 42px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #37404b;
  border-bottom: 1px solid #37404b;
}

.founder-facts span {
  min-height: 130px;
  border-right: 1px solid #37404b;
  padding: 24px 20px;
  color: #aeb8c3;
  font-size: 0.75rem;
  font-weight: 800;
}

.founder-facts span:last-child {
  border-right: 0;
}

.founder-facts b {
  display: block;
  margin-bottom: 28px;
  color: var(--coral);
  font-family: "Unbounded", sans-serif;
  font-size: 0.9rem;
}

.trust-rail span:last-child {
  border-right: 0;
}

.section {
  padding-block: clamp(84px, 10vw, 148px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 56px;
}

.section-heading.wide {
  max-width: 1100px;
}

.section-heading h2 {
  margin-bottom: 20px;
}

.section-heading > p:last-child {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.08rem;
}

.heading-row {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.heading-row > div {
  max-width: 820px;
}

.heading-row > p {
  max-width: 370px;
  margin-bottom: 0;
  color: var(--muted);
}

.problem-section {
  background: var(--white);
}

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

.problem-grid article {
  min-height: 310px;
  padding: clamp(28px, 4vw, 52px);
  background: var(--white);
}

.problem-grid article > span {
  display: inline-block;
  margin-bottom: 66px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.problem-grid h3 {
  max-width: 300px;
}

.problem-grid p {
  color: var(--muted);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: 360px 320px;
  gap: 14px;
}

.solution-card {
  position: relative;
  display: flex;
  min-height: 260px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  padding: 32px;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
  transition: transform 220ms ease;
}

.solution-card:hover {
  transform: translateY(-5px);
}

.solution-card-large {
  grid-row: 1 / 3;
  background: var(--ink);
}

.solution-card-large::before {
  position: absolute;
  z-index: -1;
  width: 64%;
  aspect-ratio: 1;
  top: 10%;
  right: -12%;
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(255, 255, 255, 0.035),
    0 0 0 96px rgba(255, 255, 255, 0.025);
  content: "";
}

.solution-card-large::after {
  position: absolute;
  z-index: -1;
  width: 116%;
  height: 2px;
  top: 31%;
  left: -8%;
  background: var(--coral);
  box-shadow: 0 0 16px var(--coral);
  content: "";
  transform: rotate(7deg);
}

.card-blue {
  grid-column: 2 / 4;
  background: var(--blue);
}

.card-blue::before,
.card-blue::after {
  position: absolute;
  z-index: -1;
  height: 10px;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.7);
  content: "";
}

.card-blue::before {
  width: 72%;
  top: 27%;
  left: 24%;
  transform: rotate(-9deg);
}

.card-blue::after {
  width: 54%;
  top: 9%;
  left: 48%;
  transform: rotate(63deg);
}

.card-shadow {
  background: #e7ebf2;
  color: var(--ink);
}

.card-shadow::before,
.card-shadow::after {
  position: absolute;
  z-index: -1;
  top: 18%;
  right: -8%;
  width: 76%;
  height: 26%;
  border-top: 5px solid var(--ink);
  border-left: 5px solid var(--ink);
  content: "";
}

.card-shadow::after {
  top: calc(18% + 13px);
  right: calc(-8% - 13px);
  border-color: var(--blue);
}

.card-coral {
  background: var(--coral);
  color: var(--ink);
}

.card-coral::after {
  position: absolute;
  z-index: -1;
  width: 62%;
  height: 22%;
  top: 18%;
  right: -8%;
  border: 5px solid var(--ink);
  border-bottom: 0;
  content: "";
}

.card-number {
  font-family: "Unbounded", sans-serif;
  font-size: 0.8rem;
}

.solution-card p {
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-card h3 {
  max-width: 460px;
  margin-bottom: 24px;
  font-size: clamp(1.4rem, 2.4vw, 2.5rem);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
}

.promo-section {
  padding-block: 34px;
  background: var(--yellow);
}

.promo-grid {
  display: grid;
  min-height: 520px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 60px;
}

.promo-copy {
  padding-block: 50px;
}

.promo-copy h2 {
  max-width: 700px;
}

.promo-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin-bottom: 32px;
  font-size: 1.08rem;
}

.promo-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255, 230, 122, 0.96) 0 18%, transparent 18.5%),
    var(--paper);
  isolation: isolate;
}

.promo-visual::before,
.promo-visual::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.promo-visual::before {
  inset: 11%;
  border: 1px solid rgba(21, 26, 33, 0.42);
  border-radius: 50%;
}

.promo-visual::after {
  width: 76%;
  height: 1px;
  top: 50%;
  left: 12%;
  background: rgba(21, 26, 33, 0.2);
  box-shadow: 0 -120px 0 rgba(21, 26, 33, 0.09), 0 120px 0 rgba(21, 26, 33, 0.09);
}

.promo-big {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(8rem, 17vw, 14rem);
  font-weight: 700;
  letter-spacing: -0.12em;
  line-height: 1;
  transform: translate(-54%, -50%);
}

.promo-caption {
  position: absolute;
  z-index: 4;
  right: 10%;
  bottom: 9%;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lamp {
  position: absolute;
  z-index: 3;
  width: 48px;
  height: 48px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 7px var(--yellow), 0 0 34px 10px rgba(255, 230, 122, 0.72);
  animation: lamp-float 3.4s ease-in-out infinite;
}

.lamp::before,
.lamp::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.lamp::before {
  inset: 6px;
  border: 1px solid var(--ink);
}

.lamp::after {
  inset: 14px;
  background: var(--yellow);
  box-shadow: 0 0 16px rgba(255, 230, 122, 0.95);
}

.lamp-1 { top: 16%; left: 20%; animation-delay: -0.3s; }
.lamp-2 { top: 7%; left: 46%; animation-delay: -1.4s; }
.lamp-3 { top: 18%; right: 17%; animation-delay: -2.1s; }
.lamp-4 { bottom: 18%; left: 17%; animation-delay: -1.8s; }
.lamp-5 { bottom: 7%; left: 48%; animation-delay: -0.8s; }
.lamp-6 { right: 18%; bottom: 20%; animation-delay: -2.7s; }

@keyframes lamp-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.04); }
}

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

.process-section .eyebrow {
  color: #8fa6ff;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #39414c;
  list-style: none;
}

.process-list li {
  display: grid;
  min-height: 160px;
  grid-template-columns: 90px 1fr 180px;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid #39414c;
}

.process-list li > span {
  color: var(--coral);
  font-family: "Unbounded", sans-serif;
  font-size: 0.86rem;
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: 1.7rem;
}

.process-list p {
  max-width: 700px;
  margin-bottom: 0;
  color: #aeb7c3;
}

.process-list small {
  color: #aeb7c3;
  font-weight: 800;
  text-align: right;
}

.quiz-section {
  background: var(--blue-soft);
}

.quiz-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: start;
  gap: clamp(48px, 8vw, 120px);
}

.quiz-intro {
  position: sticky;
  top: 130px;
}

.quiz-intro h2 {
  margin-bottom: 24px;
}

.quiz-intro > p:not(.eyebrow) {
  color: #4e5c70;
  font-size: 1.08rem;
}

.quiz-promise {
  display: flex;
  margin-top: 36px;
  flex-direction: column;
  gap: 12px;
}

.quiz-promise span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
}

.quiz-promise svg {
  color: var(--success);
}

.ceiling-quiz {
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 52px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.quiz-step {
  margin-bottom: 34px;
}

.quiz-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-weight: 800;
}

.quiz-label output {
  color: var(--blue);
  font-family: "Unbounded", sans-serif;
  font-size: 1.25rem;
}

input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 8px;
  appearance: none;
  background: linear-gradient(90deg, var(--blue) 0 21%, var(--line) 21% 100%);
}

input[type="range"]::-webkit-slider-thumb {
  width: 26px;
  height: 26px;
  border: 5px solid var(--white);
  border-radius: 50%;
  appearance: none;
  background: var(--blue);
  box-shadow: 0 3px 14px rgba(36, 77, 255, 0.35);
}

.range-marks {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.74rem;
}

.ceiling-quiz fieldset {
  display: grid;
  margin: 0 0 28px;
  padding: 0;
  border: 0;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.ceiling-quiz legend {
  margin-bottom: 14px;
  font-weight: 800;
}

.choice {
  cursor: pointer;
}

.choice input {
  position: absolute;
  opacity: 0;
}

.choice span {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px 16px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 180ms ease, border 180ms ease;
}

.choice input:checked + span {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue-dark);
}

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

.quiz-select {
  display: flex;
  margin-bottom: 24px;
  flex-direction: column;
  gap: 9px;
  font-weight: 800;
}

.quiz-select select,
.lead-form input,
.lead-form select {
  width: 100%;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--white);
}

.guarantee-section {
  background: var(--white);
}

.guarantee-top {
  display: grid;
  margin-bottom: 60px;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 80px;
}

.guarantee-top h2 {
  margin-bottom: 0;
}

.guarantee-top > p {
  color: var(--muted);
  font-size: 1.06rem;
}

.guarantee-grid {
  display: grid;
  margin-bottom: 32px;
  border: 1px solid var(--line);
  grid-template-columns: repeat(4, 1fr);
}

.guarantee-grid article {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  border-right: 1px solid var(--line);
  padding: 34px 28px;
}

.guarantee-grid article:last-child {
  border-right: 0;
}

.guarantee-grid strong {
  margin-bottom: auto;
  color: var(--blue);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 1;
}

.guarantee-grid span {
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 800;
}

.guarantee-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.guarantee-grid .guarantee-word {
  background: var(--ink);
  color: var(--white);
}

.guarantee-grid .guarantee-word strong {
  color: var(--coral);
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 270px;
  gap: 14px;
}

.inspiration-grid figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #c8ced6;
}

.gallery-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: #c8ced6;
  cursor: zoom-in;
}

.gallery-trigger::after {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  background: rgba(15, 20, 27, 0.52);
  color: var(--white);
  content: "+";
  font-size: 1.35rem;
  line-height: 1;
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 200ms ease, transform 200ms ease, background 200ms ease;
}

.gallery-trigger:hover::after,
.gallery-trigger:focus-visible::after {
  opacity: 1;
  transform: scale(1);
}

.inspiration-grid .project-featured { grid-column: 1 / 8; grid-row: 1 / 3; }
.inspiration-grid figure:nth-child(2) { grid-column: 8 / 13; grid-row: 1; }
.inspiration-grid figure:nth-child(3) { grid-column: 8 / 13; grid-row: 2; }
.inspiration-grid figure:nth-child(4) { grid-column: 1 / 5; grid-row: 3; }
.inspiration-grid figure:nth-child(5) { grid-column: 5 / 9; grid-row: 3; }
.inspiration-grid figure:nth-child(6) { grid-column: 9 / 13; grid-row: 3; }

.inspiration-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.inspiration-grid figure:hover img {
  transform: scale(1.025);
}

.inspiration-grid figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-radius: 4px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
}

.inspiration-grid figcaption span {
  color: var(--muted);
  font-size: 0.78rem;
}

.works-link-row {
  display: flex;
  margin-top: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.works-link-row > span {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.works-overview {
  padding-bottom: 42px;
  background: var(--ink);
  color: var(--white);
}

.works-overview-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1.25fr;
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
}

.works-overview-grid > div {
  display: flex;
  flex-direction: column;
}

.works-overview-grid strong {
  color: var(--coral);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(5rem, 12vw, 10rem);
  line-height: 0.82;
}

.works-overview-grid span {
  margin-top: 22px;
  font-weight: 800;
}

.works-overview-grid p {
  max-width: 670px;
  margin: 0;
  color: #b8c0cb;
  font-size: clamp(1rem, 1.65vw, 1.3rem);
}

.case-nav {
  display: grid;
  margin-top: 54px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #343c47;
  border-left: 1px solid #343c47;
}

.case-nav a {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 13px;
  border-right: 1px solid #343c47;
  border-bottom: 1px solid #343c47;
  padding: 16px 20px;
  font-size: 0.88rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.case-nav a:hover {
  background: var(--blue);
  color: var(--white);
}

.case-nav span {
  color: var(--coral);
  font-family: "Unbounded", sans-serif;
  font-size: 0.68rem;
}

.case-project {
  scroll-margin-top: 84px;
  border-bottom: 1px solid var(--line);
}

.case-project:nth-child(even) {
  background: var(--white);
}

.case-project-head {
  display: grid;
  margin-bottom: clamp(34px, 5vw, 60px);
  grid-template-columns: 110px 1fr auto;
  align-items: start;
  gap: clamp(24px, 5vw, 70px);
}

.case-project-head > span,
.case-project-head > strong {
  padding-top: 12px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-project-head h2 {
  margin-bottom: 18px;
}

.case-project-head p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.case-project-head > strong {
  color: var(--muted);
  white-space: nowrap;
}

.case-photo-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-flow: dense;
  grid-auto-rows: 250px;
  gap: 14px;
}

.case-photo-grid figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  grid-column: span 4;
  border-radius: var(--radius);
  background: #c8ced6;
}

.case-photo-grid figure:nth-child(7n + 1) {
  grid-column: span 8;
  grid-row: span 2;
}

.case-photo-grid figure:nth-child(7n + 4) {
  grid-column: span 5;
}

.case-photo-grid figure:nth-child(7n + 5) {
  grid-column: span 7;
}

.case-photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.case-photo-grid figure:hover img {
  transform: scale(1.035);
}

.case-photo-grid figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  border-radius: 4px;
  padding: 13px 15px;
  background: rgba(255, 255, 255, 0.91);
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.case-photo-grid figcaption span {
  color: var(--muted);
  font-size: 0.68rem;
}

.case-photo-grid figcaption b {
  max-width: 56%;
  text-align: right;
  font-size: 0.76rem;
}

.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

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

[data-counter] {
  font-variant-numeric: tabular-nums;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.sticky-heading {
  position: sticky;
  top: 130px;
  margin-bottom: 0;
}

.sticky-heading .button {
  margin-top: 24px;
}

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

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

.faq-list summary {
  display: grid;
  padding: 28px 0;
  cursor: pointer;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  font-size: 1.12rem;
  font-weight: 800;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  font-size: 1.3rem;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > div {
  max-width: 660px;
  color: var(--muted);
}

.faq-list details > div p {
  padding-bottom: 26px;
}

.cta-band {
  background: var(--blue);
  color: var(--white);
}

.cta-band-inner {
  display: grid;
  min-height: 430px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.cta-band .eyebrow {
  color: #bdc9ff;
}

.cta-band h2 {
  max-width: 850px;
  margin-bottom: 18px;
}

.cta-band p:not(.eyebrow) {
  max-width: 710px;
  margin-bottom: 0;
  color: #d9e0ff;
}

.page-hero {
  padding: 26px 0 0;
}

.breadcrumbs {
  display: flex;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
}

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

.page-hero-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.page-hero-copy {
  padding-bottom: 70px;
}

.page-hero h1 {
  margin-bottom: 28px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.06em;
}

.lead {
  max-width: 760px;
  color: #475363;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.page-hero-image {
  position: relative;
  height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: 4px 4px 44% 4px;
}

.page-hero-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 18, 28, 0.6));
  content: "";
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-image figcaption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  left: 26px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
}

.measure {
  position: absolute;
  z-index: 3;
  top: 20%;
  left: 10%;
  color: var(--white);
  font-family: "Unbounded", sans-serif;
  font-size: 0.7rem;
}

.measure::after {
  position: absolute;
  width: 250px;
  height: 1px;
  top: 26px;
  left: 0;
  background: var(--white);
  content: "";
}

.laser-line {
  position: absolute;
  z-index: 3;
  width: 76%;
  height: 3px;
  top: 30%;
  left: 20%;
  background: var(--coral);
  box-shadow: 0 0 18px var(--coral);
  transform: rotate(-8deg);
}

.fact-strip {
  display: grid;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.fact-strip span {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.fact-strip span:last-child {
  border-right: 0;
}

.fact-strip svg {
  color: var(--success);
}

.editorial-stack {
  border-top: 1px solid var(--line);
}

.editorial-stack article {
  display: grid;
  min-height: 220px;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 36px;
  border-bottom: 1px solid var(--line);
}

.stack-index {
  color: var(--blue);
  font-family: "Unbounded", sans-serif;
  font-size: 0.85rem;
}

.editorial-stack article > div {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 60px;
}

.editorial-stack h3 {
  margin-bottom: 0;
}

.editorial-stack p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-blue {
  background: var(--blue);
  color: var(--white);
}

.section-blue .eyebrow {
  color: #becaff;
}

.split-content {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: clamp(50px, 9vw, 130px);
}

.check-list {
  display: flex;
  flex-direction: column;
}

.check-list p {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  padding-block: 19px;
  font-weight: 800;
}

.check-list svg {
  color: var(--yellow);
}

.page-hero-compact {
  padding: 60px 0 20px;
  border-bottom: 1px solid var(--line);
}

.compact-copy {
  max-width: 1030px;
  padding-block: 40px 82px;
}

.compact-copy h1 {
  max-width: 1000px;
}

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

.catalog-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 50px);
  background: var(--white);
  transition: border 180ms ease, transform 180ms ease;
}

.catalog-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
}

.catalog-card > span {
  margin-bottom: auto;
  color: var(--blue);
  font-family: "Unbounded", sans-serif;
  font-size: 0.78rem;
}

.catalog-card h2 {
  font-size: 2rem;
}

.catalog-card p {
  color: var(--muted);
}

.catalog-card b {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
}

.room-links {
  display: flex;
  margin-top: 64px;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.room-links h2 {
  width: 100%;
  font-size: 2.3rem;
}

.room-links a {
  border: 1px solid var(--line);
  border-radius: 99px;
  padding: 13px 19px;
  background: var(--white);
  font-weight: 800;
}

.room-links a:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.price-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: start;
  gap: 80px;
}

.price-factors {
  border-top: 1px solid var(--line);
}

.price-factors article {
  display: grid;
  min-height: 160px;
  grid-template-columns: 70px 1fr;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid var(--line);
}

.price-factors article > span {
  color: var(--blue);
  font-family: "Unbounded", sans-serif;
  font-size: 0.75rem;
}

.price-factors h2 {
  margin-bottom: 7px;
  font-size: 1.7rem;
}

.price-factors p {
  margin-bottom: 0;
  color: var(--muted);
}

.price-aside {
  position: sticky;
  top: 120px;
  border-radius: var(--radius);
  padding: 42px;
  background: var(--blue-soft);
}

.price-aside h2 {
  font-size: 2.2rem;
}

.price-aside ul {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.price-aside li {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(36, 77, 255, 0.18);
  padding-block: 13px;
  font-weight: 800;
}

.price-aside li svg {
  color: var(--success);
}

.offers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.offer-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  align-items: flex-start;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 64px);
  background: var(--yellow);
}

.offer-card.offer-main {
  background: var(--blue);
  color: var(--white);
}

.offer-card > span {
  margin-bottom: auto;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card h2 {
  max-width: 570px;
}

.offer-card p {
  max-width: 570px;
  margin-bottom: 32px;
}

.offer-terms {
  max-width: 840px;
  margin-top: 70px;
}

.offer-terms h2 {
  font-size: 2.2rem;
}

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

.warranty-grid article {
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 50px);
  background: var(--white);
}

.warranty-grid strong {
  display: block;
  margin-bottom: 80px;
  color: var(--blue);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
}

.warranty-grid h2 {
  font-size: 1.8rem;
}

.warranty-grid p {
  max-width: 560px;
  color: var(--muted);
}

.warranty-process {
  margin-top: 90px;
}

.warranty-process h2 {
  max-width: 740px;
}

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

.warranty-process li {
  min-height: 190px;
  border-top: 2px solid var(--ink);
  border-right: 1px solid var(--line);
  padding: 24px;
  font-weight: 800;
}

.warranty-process li span {
  display: block;
  margin-bottom: 56px;
  color: var(--blue);
  font-family: "Unbounded", sans-serif;
  font-size: 0.8rem;
}

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

.contact-card,
.contact-form-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(30px, 4vw, 50px);
  background: var(--white);
}

.contact-card p {
  margin-bottom: auto;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  letter-spacing: -0.04em;
}

.contact-card span {
  color: var(--muted);
}

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

.contact-form-card {
  grid-column: 1 / 3;
  min-height: 380px;
  background: var(--blue-soft);
}

.contact-form-card h2 {
  max-width: 700px;
}

.contact-form-card > p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
}

.legal-copy h2 {
  margin: 56px 0 18px;
  font-size: 1.8rem;
}

.legal-copy p {
  color: #4f5b69;
}

.site-footer {
  padding: 80px 0 28px;
  background: var(--ink);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 0.8fr;
  gap: 60px;
}

.brand-footer {
  width: fit-content;
  margin-bottom: 28px;
}

.brand-footer .brand-line {
  border-color: var(--white);
}

.footer-grid > div:first-child p {
  max-width: 380px;
  color: #aeb7c3;
}

.footer-grid h2 {
  margin-bottom: 22px;
  color: #778392;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: #cbd2da;
  font-size: 0.86rem;
}

.footer-grid a:hover {
  color: var(--coral);
}

.footer-grid .footer-phone {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 800;
}

.footer-bottom {
  display: flex;
  margin-top: 70px;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid #333c47;
  padding-top: 22px;
  color: #7f8a98;
  font-size: 0.68rem;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  z-index: 120;
  display: grid;
  inset: 0;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 20, 0.72);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  z-index: 2;
  width: min(100%, 600px);
  max-height: calc(100vh - 40px);
  overflow: auto;
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 54px);
  background: var(--white);
  box-shadow: var(--shadow);
}

.modal-card h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 3.3rem);
}

.modal-card > p:not(.eyebrow) {
  color: var(--muted);
}

.modal-close {
  position: absolute;
  display: grid;
  width: 42px;
  height: 42px;
  top: 14px;
  right: 14px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
}

.lead-form {
  display: flex;
  margin-top: 30px;
  flex-direction: column;
  gap: 16px;
}

.lead-form > label:not(.consent) {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 800;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--muted);
  font-size: 0.72rem;
}

.consent input {
  margin-top: 4px;
}

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

.modal-note {
  display: flex;
  margin-top: 18px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--muted);
  font-size: 0.74rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  z-index: 180;
  display: grid;
  inset: 0;
  place-items: center;
  padding: 24px;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 15, 0.94);
  backdrop-filter: blur(18px);
}

.lightbox-dialog {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 1440px);
  height: min(90vh, 920px);
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 18px;
}

.lightbox-dialog figure {
  display: grid;
  min-width: 0;
  height: 100%;
  margin: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: #0c1118;
}

.lightbox-dialog img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.lightbox-dialog figcaption {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 20px;
  background: #111721;
  color: var(--white);
}

.lightbox-dialog figcaption span {
  color: #8f9aa8;
  font-family: "Unbounded", sans-serif;
  font-size: 0.7rem;
  white-space: nowrap;
}

.lightbox-dialog figcaption b {
  font-size: 0.9rem;
  text-align: right;
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(17, 23, 33, 0.8);
  color: var(--white);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  border-color: var(--coral);
  background: var(--coral);
  transform: scale(1.06);
}

.lightbox-close {
  position: fixed;
  z-index: 3;
  top: 20px;
  right: 20px;
  font-size: 1.75rem;
  line-height: 1;
}

.lightbox-nav {
  align-self: center;
}

.lightbox-nav svg {
  width: 22px;
  height: 22px;
}

.lightbox-prev svg {
  transform: rotate(180deg);
}

.mobile-action-bar {
  display: none;
}

.knowledge-home {
  background: var(--ink);
  color: var(--white);
}

.knowledge-home .section-heading > p:last-child {
  color: #aeb7c3;
}

.knowledge-home-grid,
.knowledge-grid,
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.knowledge-home-grid > a,
.knowledge-card,
.related-grid > a {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #343c47;
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 46px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.knowledge-home-grid > a:hover,
.knowledge-card:hover,
.related-grid > a:hover {
  transform: translateY(-4px);
}

.knowledge-home-grid > a:nth-child(1),
.knowledge-home-grid > a:nth-child(4) {
  background: var(--blue);
}

.knowledge-home-grid span,
.knowledge-card > span {
  margin-bottom: auto;
  color: var(--coral);
  font-family: "Unbounded", sans-serif;
  font-size: 0.72rem;
}

.knowledge-home-grid h3 {
  margin: 52px 0 14px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.knowledge-home-grid p {
  color: #d0d7df;
}

.knowledge-home-grid b,
.knowledge-card b,
.related-grid b {
  display: flex;
  margin-top: 24px;
  align-items: center;
  gap: 8px;
}

.knowledge-card {
  min-height: 390px;
  border-color: var(--line);
  background: var(--white);
}

.knowledge-card:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.knowledge-card > p {
  margin: 44px 0 12px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.knowledge-card h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.cluster-nav {
  padding-top: 0;
}

.cluster-nav .shell > div {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.cluster-nav a {
  display: flex;
  min-height: 110px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-right: 1px solid var(--line);
  padding: 24px;
  font-weight: 800;
}

.cluster-nav a:last-child {
  border-right: 0;
}

.article-hero {
  padding: 42px 0 0;
  background: linear-gradient(180deg, var(--blue-soft), var(--white));
}

.article-hero-grid {
  display: grid;
  padding: 48px 0 62px;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(36px, 7vw, 100px);
}

.article-hero h1 {
  max-width: 980px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.4vw, 6.8rem);
}

.article-hero .lead {
  max-width: 820px;
}

.article-hero-grid > aside {
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--yellow);
}

.article-hero-grid > aside > span {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-hero-grid > aside p {
  margin: 38px 0 28px;
  font-size: 1.08rem;
  font-weight: 800;
}

.article-body {
  padding-top: 100px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
  gap: clamp(50px, 8vw, 130px);
}

.article-intro {
  margin: 0 0 80px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 700;
  line-height: 1.45;
}

.article-main > section {
  position: relative;
  scroll-margin-top: 120px;
  border-top: 1px solid var(--line);
  padding: 70px 0;
}

.article-main h2 {
  max-width: 800px;
  margin: 0 0 28px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.article-main section > p:not(.eyebrow) {
  max-width: 780px;
  color: #46515f;
  font-size: 1.06rem;
  line-height: 1.82;
}

.article-index {
  display: block;
  margin-bottom: 32px;
  color: var(--blue);
  font-family: "Unbounded", sans-serif;
  font-size: 0.72rem;
}

.article-aside {
  position: sticky;
  top: 110px;
}

.article-aside > div {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--ink);
  padding-left: 24px;
}

.article-aside a {
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.article-aside a:hover {
  color: var(--blue);
}

.table-scroll {
  margin-top: 32px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-table-section table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  background: var(--white);
}

.article-table-section th,
.article-table-section td {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px;
  text-align: left;
  vertical-align: top;
}

.article-table-section th {
  background: var(--ink);
  color: var(--white);
  font-size: 0.8rem;
}

.article-table-section td:first-child {
  font-weight: 800;
}

.article-faq {
  background: var(--blue-soft);
}

.article-sources {
  background: var(--ink);
  color: var(--white);
}

.article-sources .shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(40px, 8vw, 120px);
}

.article-sources h2 {
  margin-bottom: 20px;
}

.article-sources p:not(.eyebrow) {
  color: #aeb7c3;
}

.article-sources ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-sources li {
  border-top: 1px solid #343c47;
}

.article-sources li:last-child {
  border-bottom: 1px solid #343c47;
}

.article-sources a {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #dce2e9;
  font-weight: 800;
}

.article-sources a:hover {
  color: var(--coral);
}

.related-grid > a {
  min-height: 310px;
  border-color: var(--line);
  background: var(--white);
}

.related-grid > a p {
  margin-bottom: auto;
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.related-grid > a h3 {
  margin-top: 50px;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 36px, 960px);
  }

  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    width: 17px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] {
    border-color: var(--ink);
    background: var(--ink);
  }

  .menu-toggle[aria-expanded="true"] span:not(.sr-only) {
    background: var(--white);
  }

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

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

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

  .mobile-menu {
    position: absolute;
    z-index: 90;
    display: flex;
    width: min(420px, 100%);
    height: calc(100dvh - 79px);
    top: 100%;
    right: 0;
    bottom: auto;
    padding: 34px;
    flex-direction: column;
    gap: 4px;
    border-left: 1px solid #343c47;
    background: var(--ink);
    color: var(--white);
    box-shadow: -20px 30px 60px rgba(8, 13, 20, 0.38);
    opacity: 1;
    isolation: isolate;
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .mobile-menu.is-open {
    transform: translateX(0);
  }

  .mobile-menu a {
    border-bottom: 1px solid #343c47;
    padding-block: 18px;
    font-size: 1.1rem;
    font-weight: 800;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus-visible {
    color: var(--coral);
  }

  .hero-grid {
    grid-template-columns: 1fr 0.8fr;
    gap: 30px;
  }

  .hero-visual {
    min-height: 560px;
  }

  .ceiling-card {
    width: 46vw;
    height: 560px;
  }

  .hero-badge {
    width: 140px;
    height: 140px;
    right: -10px;
  }

  .hero-badge strong {
    font-size: 1.5rem;
  }

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

  .guarantee-grid article:nth-child(2) {
    border-right: 0;
  }

  .guarantee-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .page-hero-image {
    height: 520px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .footer-grid > div:last-child {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 28px, 720px);
  }

  body {
    padding-bottom: 70px;
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2rem, 8vw, 3.3rem);
  }

  .header-actions .button {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .hero {
    padding-top: 24px;
  }

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

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

  .founder-photo {
    min-height: 680px;
  }

  .hero-copy {
    padding-block: 36px 18px;
  }

  .hero h1 {
    max-width: 680px;
  }

  .hero h1 em {
    white-space: normal;
  }

  .hero-visual {
    min-height: 600px;
  }

  .ceiling-card {
    width: 100%;
    height: 590px;
  }

  .hero-badge {
    right: 8px;
  }

  .trust-rail {
    margin-top: 30px;
    grid-template-columns: 1fr 1fr;
  }

  .trust-rail span:nth-child(2) {
    border-right: 0;
  }

  .trust-rail span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .problem-grid article {
    min-height: auto;
  }

  .problem-grid article > span {
    margin-bottom: 38px;
  }

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

  .solution-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .solution-card-large,
  .card-blue {
    min-height: 420px;
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .promo-grid,
  .quiz-shell,
  .guarantee-top,
  .faq-grid,
  .split-content,
  .price-layout {
    grid-template-columns: 1fr;
  }

  .promo-grid {
    gap: 16px;
  }

  .promo-visual {
    min-height: 360px;
  }

  .process-list li {
    grid-template-columns: 60px 1fr;
    padding-block: 30px;
  }

  .process-list small {
    display: none;
  }

  .quiz-intro,
  .sticky-heading,
  .price-aside {
    position: static;
  }

  .guarantee-top {
    gap: 24px;
  }

  .inspiration-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .inspiration-grid figure,
  .inspiration-grid .project-featured,
  .inspiration-grid figure:nth-child(2),
  .inspiration-grid figure:nth-child(3),
  .inspiration-grid figure:nth-child(4),
  .inspiration-grid figure:nth-child(5),
  .inspiration-grid figure:nth-child(6) {
    min-height: 440px;
    grid-column: auto;
    grid-row: auto;
    margin-top: 0;
  }

  .works-link-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .works-overview-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

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

  .case-project-head {
    grid-template-columns: 80px 1fr;
    gap: 20px;
  }

  .case-project-head > strong {
    grid-column: 2;
    padding-top: 0;
  }

  .case-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 330px;
  }

  .case-photo-grid figure,
  .case-photo-grid figure:nth-child(7n + 4),
  .case-photo-grid figure:nth-child(7n + 5) {
    grid-column: span 1;
  }

  .case-photo-grid figure:nth-child(7n + 1) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .lightbox {
    padding: 16px;
  }

  .lightbox-dialog {
    height: min(86vh, 820px);
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 8px;
  }

  .lightbox-nav {
    width: 44px;
    height: 44px;
  }

  .faq-grid {
    gap: 50px;
  }

  .cta-band-inner {
    min-height: 500px;
    grid-template-columns: 1fr;
    align-content: center;
  }

  .page-hero-copy {
    padding-bottom: 20px;
  }

  .page-hero-image {
    height: 560px;
  }

  .fact-strip {
    grid-template-columns: 1fr;
  }

  .fact-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact-strip span:last-child {
    border-bottom: 0;
  }

  .editorial-stack article {
    grid-template-columns: 50px 1fr;
  }

  .editorial-stack article > div {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-block: 38px;
  }

  .catalog-grid,
  .offers-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card {
    grid-column: auto;
  }

  .warranty-process ol {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .knowledge-home-grid,
  .knowledge-grid,
  .related-grid,
  .article-hero-grid,
  .article-layout,
  .article-sources .shell {
    grid-template-columns: 1fr;
  }

  .knowledge-home-grid > a,
  .knowledge-card,
  .related-grid > a {
    min-height: 300px;
  }

  .cluster-nav .shell > div {
    grid-template-columns: 1fr;
  }

  .cluster-nav a {
    min-height: 80px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .article-hero-grid {
    padding-bottom: 42px;
  }

  .article-hero h1 {
    font-size: clamp(2.8rem, 10vw, 5.5rem);
  }

  .article-layout {
    gap: 0;
  }

  .article-aside {
    display: none;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 75;
    display: grid;
    height: 66px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 86px 1fr;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--white);
    box-shadow: 0 14px 40px rgba(10, 18, 28, 0.3);
  }

  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    border-right: 1px solid #343c47;
    font-size: 0.65rem;
    font-weight: 800;
  }

  .mobile-action-bar button {
    border: 0;
    background: var(--coral);
    cursor: pointer;
    font-weight: 800;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .header-inner {
    min-height: 68px;
    gap: 12px;
  }

  .hero h1 {
    font-size: clamp(1.75rem, 7.6vw, 3.2rem);
    letter-spacing: -0.07em;
  }

  .hero-lead {
    font-size: 1rem;
    overflow-wrap: anywhere;
  }

  .mobile-menu {
    height: calc(100dvh - 69px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .button {
    min-height: 60px;
    padding-inline: 16px;
    font-size: 0.88rem;
  }

  .hero-visual {
    min-height: 455px;
  }

  .founder-photo {
    min-height: 560px;
  }

  .founder-photo > span {
    right: 24px;
    bottom: 24px;
    left: 24px;
  }

  .founder-facts {
    grid-template-columns: 1fr;
  }

  .founder-facts span {
    min-height: 96px;
    border-right: 0;
    border-bottom: 1px solid #37404b;
  }

  .founder-facts span:last-child {
    border-bottom: 0;
  }

  .founder-facts b {
    margin-bottom: 14px;
  }

  .ceiling-card {
    height: 440px;
    border-radius: 4px 4px 38% 4px;
  }

  .hero-badge {
    width: 112px;
    height: 112px;
    bottom: 8px;
  }

  .hero-badge strong {
    font-size: 1.2rem;
  }

  .hero-badge span {
    font-size: 0.58rem;
  }

  .visual-label {
    font-size: 0.6rem;
  }

  .label-top {
    top: 41%;
  }

  .section {
    padding-block: 78px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .solution-grid {
    display: flex;
    flex-direction: column;
  }

  .solution-card,
  .solution-card-large,
  .card-blue {
    min-height: 330px;
  }

  .promo-big {
    font-size: 14rem;
  }

  .lamp {
    width: 38px;
    height: 38px;
  }

  .process-list li {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .ceiling-quiz fieldset {
    grid-template-columns: 1fr;
  }

  .guarantee-grid,
  .warranty-grid {
    grid-template-columns: 1fr;
  }

  .guarantee-grid article {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .inspiration-grid figure,
  .inspiration-grid .project-featured,
  .inspiration-grid figure:nth-child(2),
  .inspiration-grid figure:nth-child(3),
  .inspiration-grid figure:nth-child(4),
  .inspiration-grid figure:nth-child(5),
  .inspiration-grid figure:nth-child(6) {
    min-height: 400px;
  }

  .inspiration-grid figcaption {
    flex-direction: column;
    gap: 2px;
  }

  .gallery-trigger::after {
    width: 36px;
    height: 36px;
    opacity: 1;
    transform: scale(1);
  }

  .works-overview {
    padding-bottom: 30px;
  }

  .works-overview-grid strong {
    font-size: 5.4rem;
  }

  .case-nav {
    display: flex;
    width: 100%;
    margin-top: 40px;
    overflow-x: auto;
    border-left: 0;
    padding-inline: 12px;
    scrollbar-width: thin;
  }

  .case-nav a {
    min-width: 230px;
    border: 1px solid #343c47;
    border-right: 0;
  }

  .case-nav a:last-child {
    border-right: 1px solid #343c47;
  }

  .case-project-head {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .case-project-head > span {
    grid-column: 1;
  }

  .case-project-head > div {
    grid-column: 1 / 3;
  }

  .case-project-head > strong {
    grid-column: 2;
    grid-row: 1;
    padding-top: 12px;
  }

  .case-photo-grid {
    display: flex;
    flex-direction: column;
  }

  .case-photo-grid figure,
  .case-photo-grid figure:nth-child(7n + 1),
  .case-photo-grid figure:nth-child(7n + 4),
  .case-photo-grid figure:nth-child(7n + 5) {
    min-height: 420px;
  }

  .case-photo-grid figcaption {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .case-photo-grid figcaption b {
    max-width: 100%;
    text-align: left;
  }

  .lightbox {
    padding: 10px;
  }

  .lightbox-dialog {
    height: calc(100dvh - 20px);
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) 52px;
  }

  .lightbox-dialog figure {
    grid-column: 1;
    grid-row: 1;
  }

  .lightbox-dialog figcaption {
    min-height: 76px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
  }

  .lightbox-dialog figcaption b {
    text-align: left;
  }

  .lightbox-nav {
    position: absolute;
    z-index: 4;
    bottom: 9px;
  }

  .lightbox-prev {
    left: 50%;
    margin-left: -54px;
  }

  .lightbox-next {
    right: 50%;
    margin-right: -54px;
  }

  .lightbox-close {
    top: 18px;
    right: 18px;
    width: 46px;
    height: 46px;
    background: rgba(17, 23, 33, 0.9);
  }

  .cta-band-inner {
    gap: 34px;
  }

  .page-hero-image {
    height: 430px;
  }

  .editorial-stack article {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 24px;
  }

  .catalog-card,
  .offer-card {
    min-height: 400px;
  }

  .price-aside {
    padding: 28px;
  }

  .warranty-process ol {
    grid-template-columns: 1fr;
  }

  .warranty-process li {
    min-height: 140px;
    border-right: 0;
  }

  .warranty-process li span {
    margin-bottom: 26px;
  }

  .contact-card a,
  .contact-card strong {
    font-size: 1.4rem;
  }

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

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .knowledge-home-grid > a,
  .knowledge-card,
  .related-grid > a {
    min-height: 270px;
    padding: 28px;
  }

  .article-hero {
    padding-top: 24px;
  }

  .article-hero-grid {
    padding-top: 32px;
  }

  .article-hero h1 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .article-hero-grid > aside {
    padding: 26px;
  }

  .article-intro {
    margin-bottom: 54px;
  }

  .article-main > section {
    padding: 54px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
