﻿:root {
  --navy: #0d2d52;
  --blue: #1766a6;
  --sky: #eaf6ff;
  --ice: #f6fbff;
  --text: #243244;
  --muted: #64748b;
  --line: #d9e7f3;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(13, 45, 82, 0.12);
  --soft-shadow: 0 10px 24px rgba(13, 45, 82, 0.09);
  --radius: 8px;
  --max: 1180px;
  --inox-dark: #2c2d2e;
  --inox-deep: #3d3d3d;
  --inox-mid-dark: #575757;
  --inox-mid: #7e7e80;
  --inox-base: #959697;
  --inox-light: #c0c0c2;
  --inox-highlight: #dcdcde;
  --inox-cool-light: #bec0c4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(180deg, #f4fbff 0%, #edf7ff 100%);
  border-bottom: 1px solid rgba(27, 113, 185, 0.14);
  box-shadow: 0 8px 24px rgba(8, 38, 70, 0.06);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  min-height: 96px;
  padding: 8px 12px;
  border: 1px solid rgba(27, 113, 185, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(8, 38, 70, 0.08);
  overflow: hidden;
}

.brand img {
  display: block;
  width: 155px;
  max-width: 155px;
  max-height: 86px;
  height: auto;
  object-fit: contain;
  transform: scale(1.08);
  transform-origin: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 12px 18px;
  border-radius: 999px;
  color: #082b52;
  font-size: 16px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: rgba(255, 255, 255, 0.72);
  color: #082b52;
  border-color: rgba(27, 113, 185, 0.18);
  box-shadow: 0 8px 18px rgba(8, 38, 70, 0.06);
  transform: translateY(-1px);
}

.main-nav a.is-active {
  background: rgba(223, 241, 255, 0.95);
  color: #082b52;
  border-color: rgba(27, 113, 185, 0.24);
  box-shadow: 0 8px 20px rgba(8, 38, 70, 0.08);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section {
  padding: 84px 0;
}

.section.alt {
  background: linear-gradient(180deg, var(--ice), #ffffff);
}

.home-space-section {
  padding-top: 28px;
}

.home-space-section .split {
  gap: 72px;
}

.home-space-section .hero-actions {
  margin-top: 24px;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 850px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(38px, 5vw, 68px);
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
}

h3 {
  font-size: 21px;
}

p {
  margin: 0;
}

.lead {
  margin-top: 18px;
  color: #3d4f63;
  font-size: 19px;
  max-width: 800px;
}

.hero {
  padding: 42px 0 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(86, 176, 239, 0.18), transparent 28%),
    linear-gradient(180deg, #f5fbff 0%, #ffffff 74%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(370px, 0.33fr) minmax(0, 0.67fr);
  gap: 54px;
  align-items: center;
  width: calc(100% - 64px);
  max-width: 1440px;
  margin: 0 auto;
}

.hero-stack {
  display: grid;
  gap: 34px;
}

.hero-copy {
  max-width: 500px;
  padding: 0;
  text-align: left;
}

.hero-copy h1 {
  font-size: clamp(44px, 4.8vw, 68px);
}

.hero-copy .lead {
  margin: 16px 0 0;
  max-width: 490px;
  font-size: 17px;
  line-height: 1.68;
}

.hero-copy .lead + .lead {
  margin-top: 12px;
}

.hero-note {
  margin-top: 20px;
  max-width: 490px;
  color: #3d4f63;
  font-size: 17px;
  line-height: 1.7;
}

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

.hero-media-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  padding-right: 130px;
}

.hero-media-actions .btn {
  min-width: 168px;
}

.warranty-seal {
  position: absolute;
  top: calc(100% - 88px);
  right: 2px;
  z-index: 3;
  width: 158px;
  height: 158px;
  border: 2px solid rgba(23, 102, 166, 0.85);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 14px 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  text-align: center;
  box-shadow: 0 14px 28px rgba(8, 38, 70, 0.14);
  pointer-events: none;
}

.warranty-seal::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(23, 102, 166, 0.5);
  border-radius: 50%;
}

.warranty-seal::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(23, 102, 166, 0.28);
  background: repeating-conic-gradient(
    from 2deg,
    transparent 0deg 7deg,
    rgba(23, 102, 166, 0.09) 7deg 10deg
  );
  mask: radial-gradient(circle, transparent 0 72px, #000 73px);
  pointer-events: none;
}

.warranty-seal-mark {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100%;
  margin-bottom: 7px;
}

.warranty-seal-mark span {
  width: 21px;
  height: 1px;
  background: rgba(23, 102, 166, 0.66);
}

.warranty-seal-mark img {
  width: 28px;
  height: 35px;
  object-fit: contain;
}

.warranty-seal strong,
.warranty-seal small {
  position: relative;
  z-index: 1;
}

.warranty-seal strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.warranty-seal small {
  display: block;
  margin-top: 8px;
  color: #1c5f99;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 20px;
  color: var(--navy);
  font-weight: 800;
}

.hero-benefits span {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(27, 113, 185, 0.18);
  border-radius: 999px;
  background: rgba(235, 247, 255, 0.9);
  color: #0b2b4f;
  font-size: 14px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.hero-photo-card {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
}

.hero-main-photo {
  aspect-ratio: 21 / 10;
  height: auto;
  min-height: 0;
  max-height: none;
}

.hero-frame-stage {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  margin-left: auto;
  margin-right: auto;
}

.hero-frame-stage::after {
  content: none !important;
  position: absolute;
  inset: 10.5% 6.2% 8.2% 6.2%;
  z-index: 3;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  pointer-events: none;
}

.hero-frame-photos {
  position: absolute;
  inset: 10.5% 6.2% 8.2% 6.2%;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  overflow: hidden;
  background: rgba(196, 207, 216, 0.78);
}

.hero-frame-photos--secondary,
.hero-frame-photos--composite {
  display: none;
}

.hero-frame-stage.is-slide-2-test .hero-frame-photos--primary,
.hero-frame-stage.is-slide-composite-test .hero-frame-photos--primary {
  display: none;
}

.hero-frame-stage.is-slide-2-test .hero-frame-photos--secondary {
  display: grid;
}

.hero-frame-stage.is-slide-composite-test .hero-frame-photos--composite {
  display: block;
}

.hero-frame-photos--composite .hero-frame-photo {
  object-fit: fill;
  object-position: center center;
}

.hero-frame-photos--secondary .hero-frame-photo:nth-child(1) {
  object-fit: cover;
  object-position: center center;
}

.hero-frame-photos--secondary .hero-frame-photo:nth-child(2) {
  object-fit: cover;
  object-position: center center;
}

.hero-frame-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-frame-photo:nth-child(1) {
  object-position: center center;
}

.hero-frame-photo:nth-child(2) {
  object-position: center center;
}

.hero-frame-photos,
.hero-frame-photos::before,
.hero-frame-photos::after,
.hero-frame-photo,
.hero-frame-photo::before,
.hero-frame-photo::after {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.hero-frame-photos::before,
.hero-frame-photos::after,
.hero-frame-photo::before,
.hero-frame-photo::after {
  content: none !important;
}

.hero-frame-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.hero-door-assembly {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-door-mask {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  clip-path: inset(10.5% 6.2% 8.2% 6.2%);
  pointer-events: none;
}

.hero-door-panel {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translateY(0);
}

.hero-frame-stage.is-door-animated .hero-door-assembly {
  z-index: auto;
}

.hero-door-handle {
  position: absolute;
  left: 50%;
  bottom: 7.2%;
  z-index: 4;
  width: 150px;
  height: 18px;
  border: 1px solid rgba(35, 42, 48, 0.62);
  border-radius: 999px;
  background:
    linear-gradient(
      180deg,
      #f6f8f9 0%,
      #c9d0d5 18%,
      #8e989f 38%,
      #4f5961 55%,
      #9aa4ab 74%,
      #eef2f4 100%
    );
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.85),
    inset 0 -2px 4px rgba(0, 0, 0, 0.36),
    0 3px 6px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-door-handle::before,
.hero-door-handle::after {
  content: "";
  position: absolute;
  top: 1px;
  width: 20px;
  height: 16px;
  border-radius: 7px;
  background:
    linear-gradient(
      180deg,
      #eceff1 0%,
      #a8b1b8 34%,
      #58616a 62%,
      #c9d0d5 100%
    );
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.65),
    inset 0 -2px 3px rgba(0, 0, 0, 0.25);
}

.hero-door-handle::before {
  left: -6px;
}

.hero-door-handle::after {
  right: -6px;
}

.hero-frame-stage *,
.hero-frame-stage *::before,
.hero-frame-stage *::after {
  border-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

.hero-frame-stage .hero-door-handle {
  border-color: rgba(35, 42, 48, 0.62) !important;
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.85),
    inset 0 -2px 4px rgba(0, 0, 0, 0.36),
    0 3px 6px rgba(0, 0, 0, 0.22) !important;
}

.hero-frame-stage .hero-door-handle::before,
.hero-frame-stage .hero-door-handle::after {
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.65),
    inset 0 -2px 3px rgba(0, 0, 0, 0.28) !important;
}

.hero-door-closed {
  position: absolute;
  inset: 10.5% 6.2% 8.2% 6.2%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #17212b;
  text-align: center;
  background:
    linear-gradient(
      90deg,
      rgba(70, 72, 70, 0.98) 0%,
      rgba(122, 124, 121, 0.99) 16%,
      rgba(190, 192, 188, 0.99) 34%,
      rgba(146, 149, 145, 0.99) 50%,
      rgba(73, 76, 74, 0.99) 64%,
      rgba(174, 176, 172, 0.99) 82%,
      rgba(63, 65, 63, 0.98) 100%
    );
  box-shadow:
    inset 0 12px 18px rgba(0, 0, 0, 0.2),
    inset 0 -14px 20px rgba(0, 0, 0, 0.26),
    inset 0 2px 5px rgba(255, 255, 255, 0.22),
    inset 18px 0 22px rgba(0, 0, 0, 0.18),
    inset -18px 0 22px rgba(0, 0, 0, 0.18) !important;
  pointer-events: none;
}

.hero-door-closed::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      rgba(0, 0, 0, 0.018) 2px,
      transparent 5px
    );
  opacity: 0.34;
  pointer-events: none;
}

.hero-door-closed::after {
  content: none;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.45),
      rgba(255, 255, 255, 0.55),
      rgba(0, 0, 0, 0.35)
    );
  opacity: 0.65;
  pointer-events: none;
  transform: translateX(-50%);
}

.hero-door-logo {
  position: relative;
  z-index: 1;
  display: block;
  width: min(290px, 38%);
  height: auto;
  opacity: 0.9;
  mix-blend-mode: multiply;
  filter: contrast(1.1) saturate(1.05);
  transform: translateY(-6px);
}

.hero-door-logo-tagline {
  position: relative;
  z-index: 1;
  margin-top: 1px;
  color: #26323b;
  font-size: clamp(10px, 0.82vw, 14px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.045em;
  transform: translateY(-6px);
}

.hero-door-subtitle {
  position: relative;
  z-index: 1;
  margin-top: 7px;
  color: #26323b;
  font-size: clamp(10px, 0.92vw, 15px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.035em;
  transform: translateY(-6px);
}

.hero-door-contact {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
  margin-top: 13px;
  color: #202b34;
  font-size: clamp(12px, 1.02vw, 16px);
  font-weight: 700;
  transform: translateY(-6px);
}

.hero-billboard,
.lift-portal {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  aspect-ratio: 2.16 / 1;
  max-height: 500px;
  padding: 12px 12px 36px;
  border: 1px solid rgba(40, 50, 58, 0.35);
  border-radius: 26px;
  overflow: hidden;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      rgba(0, 0, 0, 0.025) 2px,
      transparent 4px
    ),
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.92), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, transparent 20%, rgba(35, 43, 50, 0.2) 100%),
    linear-gradient(
      180deg,
      #eef1f4 0%,
      #d9dde2 14%,
      #b9bec4 38%,
      #7d858d 100%
    );
  background-blend-mode: overlay, normal;
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.8),
    inset 0 -3px 8px rgba(0, 0, 0, 0.25),
    inset 10px 0 14px rgba(255, 255, 255, 0.18),
    inset -10px 0 14px rgba(34, 42, 50, 0.18),
    0 18px 38px rgba(8, 38, 70, 0.16);
}

.lift-recess {
  position: absolute;
  inset: 12px 12px 30px;
  z-index: 1;
  border-radius: 18px 18px 7px 7px;
  overflow: hidden;
  padding: 18px 14px 0;
  background:
    linear-gradient(180deg, #d8dde2 0%, #c9ced4 18%, #b9bec4 42%, #8f969d 100%);
  box-shadow:
    inset 12px 0 16px rgba(0, 0, 0, 0.16),
    inset -12px 0 16px rgba(0, 0, 0, 0.16),
    inset 0 11px 16px rgba(0, 0, 0, 0.18),
    inset 0 -7px 12px rgba(255, 255, 255, 0.22);
}

.lift-recess::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 4;
  height: 18px;
  border-radius: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, rgba(0, 0, 0, 0.025) 2px, transparent 6px),
    linear-gradient(
      180deg,
      rgba(238, 241, 244, 0.72) 0%,
      rgba(201, 206, 212, 0.62) 44%,
      rgba(143, 150, 157, 0.34) 82%,
      rgba(119, 127, 135, 0.18) 100%
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    0 5px 9px rgba(0, 0, 0, 0.12);
  pointer-events: none;
}

.lift-recess::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  box-shadow:
    inset 11px 0 14px rgba(0, 0, 0, 0.14),
    inset -11px 0 14px rgba(0, 0, 0, 0.14),
    inset 0 -5px 8px rgba(0, 0, 0, 0.05);
}

.lift-viewport {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  width: 100%;
  height: 100%;
  min-width: 0;
  overflow: hidden;
}

.lift-viewport::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(119, 127, 135, 0.28) 0%, rgba(185, 190, 196, 0.16) 2.2%, transparent 5%, transparent 95%, rgba(185, 190, 196, 0.16) 97.8%, rgba(119, 127, 135, 0.28) 100%);
}

.lift-viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow:
    inset 9px 0 12px rgba(0, 0, 0, 0.12),
    inset -9px 0 12px rgba(0, 0, 0, 0.12),
    inset 0 -6px 10px rgba(0, 0, 0, 0.06);
}

.hero-billboard-half {
  position: relative;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-billboard-fill {
  display: none;
}

.hero-billboard-main {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  padding: 0;
  margin: 0;
  border: 0;
  box-shadow: none;
}

.hero-billboard-half-right .hero-billboard-main {
  width: calc(100% + 18px);
  height: calc(100% + 18px);
  margin: -9px;
}

.lift-door-overlay {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 12px;
  height: calc(100% - 36px);
  transform: translateY(100%);
  transition: transform 1100ms cubic-bezier(0.4, 0, 0.2, 1);
  background:
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.035) 0,
      rgba(255, 255, 255, 0.035) 1px,
      rgba(0, 0, 0, 0.025) 2px,
      transparent 4px
    ),
    linear-gradient(90deg, #777f87 0%, #d8dde2 38%, #b9bec4 58%, #777f87 100%);
  z-index: 5;
  border-radius: 8px 8px 0 0;
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.38);
}

.lift-portal.is-closed .lift-door-overlay {
  transform: translateY(0);
}

.lift-door-handle {
  position: absolute;
  top: -8px;
  left: 50%;
  width: 146px;
  height: 14px;
  border-radius: 999px;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, rgba(37, 45, 52, 0.48) 0%, rgba(255, 255, 255, 0.18) 11%, transparent 23%, transparent 77%, rgba(255, 255, 255, 0.18) 89%, rgba(37, 45, 52, 0.48) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, rgba(0, 0, 0, 0.025) 2px, transparent 7px),
    linear-gradient(
      180deg,
      #f3f5f6 0%,
      #d8dde2 18%,
      #aeb5bb 40%,
      #777f87 54%,
      #c9ced4 78%,
      #eef1f4 100%
    );
  border: 1px solid rgba(92, 101, 110, 0.5);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.95),
    inset 0 -2px 3px rgba(0, 0, 0, 0.24),
    0 4px 8px rgba(8, 38, 70, 0.16);
}

.lift-door-handle::before,
.lift-door-handle::after {
  content: none;
  position: absolute;
  top: -3px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, #f6f7f8 0%, #cfd5d9 28%, #818b93 54%, #384149 78%, #20272d 100%);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.62),
    inset 0 -2px 3px rgba(0, 0, 0, 0.32),
    0 3px 6px rgba(8, 38, 70, 0.16);
}

.lift-door-handle::before {
  left: -7px;
}

.lift-door-handle::after {
  right: -7px;
}

.outer-lift-shell {
  display: block;
  position: relative;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.lift-recess-box {
  position: absolute;
  inset: 0 0 18px;
  border-radius: 12px 12px 6px 6px;
  overflow: hidden;
  background: #8f969d;
  box-shadow:
    0 15px 26px rgba(8, 38, 70, 0.14),
    inset 0 0 0 1px rgba(108, 116, 124, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.lift-recess-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 4;
  height: 32px;
  left: 36px;
  right: 36px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.024) 0 1px, rgba(0, 0, 0, 0.016) 2px, transparent 6px),
    linear-gradient(180deg, #dfe4e8 0%, #b9c0c7 58%, #8f969d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -1px 0 rgba(60, 66, 72, 0.35),
    0 10px 14px rgba(0, 0, 0, 0.2);
}

.lift-recess-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  height: 56px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.026) 0 1px, rgba(0, 0, 0, 0.018) 2px, transparent 7px),
    linear-gradient(180deg, #cbd1d6 0%, #e1e5e8 22%, #9aa2aa 58%, #747d86 100%);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.6),
    inset 0 -3px 5px rgba(0, 0, 0, 0.24),
    0 -12px 18px rgba(255, 255, 255, 0.08);
}

.left-recess-wall,
.right-recess-wall {
  position: absolute;
  top: 32px;
  bottom: 56px;
  z-index: 4;
  width: 36px;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0 1px, rgba(0, 0, 0, 0.018) 2px, transparent 7px),
    linear-gradient(90deg, #d7dce1 0%, #aeb6be 38%, #7f8790 100%);
  box-shadow:
    inset -1px 0 0 rgba(255, 255, 255, 0.22),
    inset 1px 0 0 rgba(255, 255, 255, 0.44),
    7px 0 13px rgba(0, 0, 0, 0.22);
  pointer-events: none;
}

.left-recess-wall {
  left: 0;
}

.right-recess-wall {
  right: 0;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0 1px, rgba(0, 0, 0, 0.018) 2px, transparent 7px),
    linear-gradient(90deg, #7f8790 0%, #aeb6be 62%, #d7dce1 100%);
  box-shadow:
    inset -1px 0 0 rgba(255, 255, 255, 0.44),
    inset 1px 0 0 rgba(255, 255, 255, 0.22),
    -7px 0 13px rgba(0, 0, 0, 0.22);
}

.image-viewport {
  position: absolute;
  left: 36px;
  right: 36px;
  top: 32px;
  bottom: 56px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 8%, transparent 92%, rgba(0, 0, 0, 0.12)),
    #d8dde2;
  box-shadow:
    inset 0 10px 15px rgba(0, 0, 0, 0.2),
    inset 8px 0 12px rgba(0, 0, 0, 0.12),
    inset -8px 0 12px rgba(0, 0, 0, 0.12),
    inset 0 -8px 12px rgba(95, 104, 113, 0.18);
}

.image-viewport::before {
  content: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(245, 247, 248, 0.9), rgba(176, 184, 191, 0.76) 54%, rgba(91, 100, 108, 0.5) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), transparent),
    linear-gradient(180deg, rgba(245, 247, 248, 0.86), rgba(176, 184, 191, 0.72) 54%, rgba(91, 100, 108, 0.46) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), transparent),
    linear-gradient(180deg, rgba(245, 247, 248, 0.82), rgba(176, 184, 191, 0.68) 54%, rgba(91, 100, 108, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), transparent);
  background-repeat: no-repeat;
  background-size:
    86% 5px,
    84% 8px,
    86% 5px,
    84% 8px,
    86% 5px,
    84% 8px;
  background-position:
    center 28%,
    center calc(28% + 5px),
    center 52%,
    center calc(52% + 5px),
    center 76%,
    center calc(76% + 5px);
  pointer-events: none;
}

.image-viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow:
    inset 8px 0 10px rgba(0, 0, 0, 0.1),
    inset -8px 0 10px rgba(0, 0, 0, 0.1),
    inset 0 -26px 22px rgba(116, 125, 134, 0.3);
}

.outer-lift-shell .hero-billboard-half,
.outer-lift-shell .hero-billboard-main {
  height: 100%;
}

.outer-lift-shell .hero-billboard-main {
  opacity: 1;
}

.outer-lift-shell .lift-door-overlay {
  left: 0;
  right: 0;
  top: auto;
  bottom: 0;
  height: 32px;
  transform: none;
  border-radius: 0 0 8px 8px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.03) 0 1px, rgba(0, 0, 0, 0.018) 2px, transparent 6px),
    linear-gradient(180deg, #d8dde2 0%, #b9bec4 34%, #8f969d 66%, #747d86 100%);
  box-shadow:
    inset 0 1px 2px rgba(255, 255, 255, 0.64),
    inset 0 -2px 4px rgba(0, 0, 0, 0.22);
}

.outer-lift-shell .lift-door-handle {
  top: -7px;
  width: 132px;
  height: 13px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, rgba(0, 0, 0, 0.02) 2px, transparent 7px),
    linear-gradient(180deg, #eef1f4 0%, #c9ced4 24%, #8f969d 58%, #d8dde2 100%);
  border-color: rgba(119, 127, 135, 0.48);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.82),
    inset 0 -2px 3px rgba(0, 0, 0, 0.22),
    0 3px 6px rgba(8, 38, 70, 0.14);
}

.hero-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
}

.hero-dots span {
  width: 15px;
  height: 15px;
  border: 1px solid rgba(23, 102, 166, 0.45);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.86);
}

.hero-dots .is-active {
  border-color: var(--blue);
  background: var(--blue);
}

.hero-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  align-items: center;
  margin-top: 54px;
  padding: 28px 0 26px;
  border-top: 1px solid rgba(27, 113, 185, 0.08);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.hero-trust-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(27, 113, 185, 0.18);
  border-radius: 50%;
  background: rgba(228, 245, 255, 0.82);
  color: var(--blue);
}

.hero-trust-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.hero-trust-item small {
  display: block;
  margin-top: 5px;
  color: #496176;
  font-size: 14px;
  line-height: 1.4;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  transition: 0.2s ease;
}

.btn.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 12px 22px rgba(23, 102, 166, 0.22);
}

.btn.primary:hover {
  background: var(--navy);
}

.btn.secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.btn.secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.feature-grid,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}

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

.cards-grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7fbff;
  padding: 24px;
  box-shadow: var(--soft-shadow);
}

.benefit-card,
.icon-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.feature-grid .card {
  background: linear-gradient(180deg, #f7fbff, #eef7ff);
  border-color: #cfe4f5;
  box-shadow: 0 14px 28px rgba(13, 45, 82, 0.1);
}

.benefits-section {
  padding-top: 46px;
}

.benefits-section .benefits-grid {
  margin-top: 26px;
  align-items: stretch;
}

.benefit-card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  padding: 42px 40px 36px;
  background:
    radial-gradient(circle at top right, rgba(23, 102, 166, 0.12), transparent 34%),
    linear-gradient(180deg, #f8fcff 0%, #eef7ff 100%);
  border-color: #bddcf1;
  box-shadow: 0 16px 34px rgba(13, 45, 82, 0.13);
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: #1766a6;
  box-shadow: 0 22px 46px rgba(13, 45, 82, 0.18);
}

.benefit-top,
.benefit-card h3,
.benefit-card p {
  position: relative;
  z-index: 1;
}

.benefit-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.benefit-icon {
  width: 96px;
  height: 96px;
  min-width: 96px;
  min-height: 96px;
  border: 1px solid #c9e2f4;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 18px rgba(13, 45, 82, 0.08);
}

.benefit-icon svg,
.benefit-icon img {
  width: 74px !important;
  height: 64px !important;
}

.benefit-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-icon img {
  object-fit: contain;
}

.benefit-icon i {
  font-size: 58px !important;
  line-height: 1;
}

.benefit-number {
  color: rgba(13, 45, 82, 0.24);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.benefit-card h3 {
  margin-bottom: 13px;
}

.benefit-card p {
  color: #40576d;
  font-weight: 500;
}

.card h3 {
  margin-bottom: 10px;
}

.icon-card {
  min-height: 100%;
}

.icon-card:hover {
  transform: translateY(-6px);
  border-color: #1766a6;
  box-shadow: 0 20px 42px rgba(13, 45, 82, 0.16);
}

.card-icon-img {
  width: 112px;
  height: 96px;
  object-fit: contain;
  margin-bottom: 18px;
}

.cards-grid.two .card-icon-img {
  width: 126px;
  height: 104px;
}

.icon-mark {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--navy));
  font-weight: 900;
}

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

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}

.media-frame img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.video-block video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #00111f;
}

.installation-video-section {
  padding-top: 58px;
}

.installation-video-wrap {
  max-width: 430px;
  margin-top: 28px;
}

.installation-video-card {
  padding: 10px;
  background: #f7fbff;
}

.installation-video-card video {
  width: 100%;
  max-height: 720px;
  display: block;
  object-fit: contain;
  background: #071827;
  border-radius: 6px;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.process-section {
  padding-top: 28px;
}

.custom-control-section {
  padding-bottom: 46px;
}

.process-step {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, var(--sky));
  color: var(--navy);
  box-shadow: var(--soft-shadow);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border: 1px solid rgba(27, 113, 185, 0.18);
  border-radius: 8px;
  background: #ffffff;
  color: rgba(8, 43, 82, 0.38);
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.process-step p {
  color: #2c4258;
  line-height: 1.65;
}

.page-hero {
  padding: 72px 0;
  background: linear-gradient(135deg, #f6fbff, #ffffff 62%, #eaf6ff);
  border-bottom: 1px solid var(--line);
}

.application-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.68fr);
  gap: 64px;
  align-items: center;
}

.application-hero-media img {
  height: 360px;
  object-fit: cover;
}

.application-types {
  padding-bottom: 70px;
}

.application-examples {
  padding-top: 72px;
}

.application-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.application-photo-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.application-photo-card {
  padding: 0;
  overflow: hidden;
}

.application-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: block;
  object-fit: contain;
  object-position: center center;
  background: #f3f8fc;
}

.application-photo-card img.application-photo-control-crop {
  object-position: center center;
}

.application-photo-card img.application-photo-fit {
  object-fit: contain;
  object-position: center center;
  background: #f3f8fc;
}

.application-photo-card div {
  padding: 22px;
}

.application-photo-card h3 {
  margin-bottom: 10px;
}

.application-more-examples {
  padding-top: 72px;
}

.application-more-examples .container {
  width: min(1260px, calc(100% - 32px));
}

.application-more-examples .narrow {
  max-width: 980px;
}

.application-more-examples .application-photo-grid {
  margin-top: 34px;
}

.application-more-examples .application-photo-card {
  box-shadow: 0 16px 34px rgba(13, 45, 82, 0.1);
}

.application-more-examples .application-photo-card img {
  aspect-ratio: 4 / 5;
  padding: 0;
}

.application-more-examples .application-photo-card div {
  padding: 24px 26px 26px;
}

.application-more-examples .application-photo-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.application-more-examples .application-photo-card p {
  font-size: 16px;
  line-height: 1.55;
}

.application-cta-section {
  padding-top: 72px;
}

.application-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 34px;
  border: 1px solid rgba(27, 113, 185, 0.16);
  border-radius: 8px;
  background: linear-gradient(135deg, #f6fbff, #ffffff 58%, #eaf6ff);
  box-shadow: 0 16px 34px rgba(8, 38, 70, 0.08);
}

.application-cta .lead {
  max-width: 720px;
}

.custom-solution-block {
  margin-top: 36px;
}

.custom-page-hero {
  padding-bottom: 34px;
}

.custom-solution-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 410px));
  justify-content: center;
  gap: 28px;
}

.custom-solution-photo {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3f8fc;
  box-shadow: var(--soft-shadow);
  padding: 10px;
}

.custom-solution-photo img {
  width: 100%;
  height: 390px;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.custom-detail-cards-section {
  padding-top: 24px;
}

.cards-grid.two.custom-detail-grid {
  grid-template-columns: repeat(3, 1fr);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-weight: 800;
  padding: 10px 15px;
}

.filter-btn.is-active,
.filter-btn:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

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

.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f3f8fc;
  cursor: pointer;
  box-shadow: var(--soft-shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.3s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 25, 46, 0), rgba(3, 25, 46, 0.82));
  opacity: 0.78;
  transition: 0.2s ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  text-align: left;
}

.gallery-caption strong {
  display: block;
  font-size: 17px;
  line-height: 1.25;
}

.gallery-caption span {
  display: block;
  margin-top: 5px;
  color: #dbeeff;
  font-size: 14px;
}

.zoom-icon {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.contact-gallery-card img {
  object-fit: contain;
  padding: 22px;
  background: var(--white);
}

.control-gallery-card img {
  object-fit: contain;
  padding: 12px;
  background: #f7fbff;
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.control-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.control-card img {
  width: 100%;
  height: 520px;
  object-fit: contain;
  background: #f7fbff;
}

.control-card div {
  padding: 18px;
}

.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
}

.promo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px;
  cursor: pointer;
  box-shadow: var(--soft-shadow);
}

.promo-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
}

.promo-video-section {
  padding-top: 70px;
}

.promo-video-wrap {
  display: grid;
  justify-items: center;
  gap: 26px;
  text-align: center;
}

.promo-video-wrap h2 {
  max-width: 760px;
}

.promo-video-card {
  width: min(420px, 100%);
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.promo-video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  border-radius: 6px;
  background: #071828;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-list a,
.contact-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.contact-list strong {
  display: block;
  color: var(--navy);
}

.form {
  display: grid;
  gap: 14px;
}

.form label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--text);
  background: var(--white);
}

.form textarea {
  min-height: 150px;
  resize: vertical;
}

.map {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.site-footer {
  padding: 46px 0;
  background: var(--navy);
  color: #dcecff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 30px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 14px;
  background: var(--white);
  border-radius: 8px;
  padding: 8px;
}

.footer-nav {
  display: grid;
  gap: 8px;
}

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

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(2, 13, 24, 0.9);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-dialog {
  width: min(1100px, 100%);
  color: var(--white);
}

.lightbox-media {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 62vh;
}

.lightbox img {
  max-height: 74vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  cursor: pointer;
  font-size: 28px;
  font-weight: 900;
}

.lightbox-close {
  top: -6px;
  right: 0;
  width: 44px;
  height: 44px;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  width: 48px;
  height: 58px;
  transform: translateY(-50%);
}

.lightbox-prev {
  left: 0;
}

.lightbox-next {
  right: 0;
}

.lightbox-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 14px;
  color: #e7f4ff;
}

.lightbox-title {
  font-weight: 800;
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    border-radius: 8px;
  }

  .hero-stack,
  .hero-layout,
  .application-hero-grid,
  .split,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 560px;
    text-align: center;
    margin: 0 auto;
  }

  .hero-copy .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-layout {
    width: calc(100% - 32px);
    gap: 34px;
  }

  .hero-actions,
  .hero-benefits {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-media-actions {
    padding-right: 0;
  }

  .warranty-seal {
    position: relative;
    top: auto;
    right: auto;
    margin: 24px auto 0;
  }

  .hero-trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: calc(100% - 32px);
    gap: 22px;
    margin-top: 34px;
  }

  .feature-grid,
  .cards-grid,
  .cards-grid.two,
  .cards-grid.four,
  .application-photo-grid,
  .application-photo-grid-two,
  .custom-solution-photos,
  .control-grid,
  .promo-grid,
  .gallery-grid,
  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-grid.two.custom-detail-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .application-cta {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 640px) {
  .section {
    padding: 58px 0;
  }

  .brand img {
    max-width: 112px;
    max-height: 68px;
    width: auto;
  }

  .brand {
    width: 136px;
    min-height: 88px;
    padding: 9px 12px;
    border-radius: 18px;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-billboard {
    padding: 8px 8px 30px;
    border-radius: 22px;
  }

  .lift-recess {
    inset: 8px 8px 30px;
    border-radius: 15px 15px 6px 6px;
  }

  .lift-door-overlay {
    left: 8px;
    right: 8px;
    top: 8px;
    height: calc(100% - 38px);
  }

  .lift-door-handle {
    top: -10px;
    width: min(138px, 36%);
    height: 18px;
  }

  .lift-door-handle::before,
  .lift-door-handle::after {
    width: 20px;
    height: 20px;
  }

  .hero-dots {
    margin-top: 14px;
  }

  .hero-media-actions .btn {
    width: 100%;
    min-width: 0;
  }

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

  .feature-grid,
  .cards-grid,
  .cards-grid.two,
  .cards-grid.four,
  .application-photo-grid,
  .application-photo-grid-two,
  .custom-solution-photos,
  .control-grid,
  .promo-grid,
  .gallery-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .cards-grid.two.custom-detail-grid {
    grid-template-columns: 1fr;
  }

  .application-hero-media img,
  .application-photo-card img {
    aspect-ratio: 4 / 5;
  }

  .application-cta {
    padding: 24px;
  }

  .installation-video-card video {
    max-height: 68vh;
  }

  .hero-main-photo {
    height: auto;
  }

  .benefit-card {
    padding: 32px 28px;
  }

  .benefit-top {
    margin-bottom: 26px;
  }

  .benefit-icon {
    width: 76px;
    height: 76px;
    min-width: 76px;
    min-height: 76px;
  }

  .benefit-icon svg,
  .benefit-icon img {
    width: 46px !important;
    height: 46px !important;
  }

  .benefit-icon i {
    font-size: 46px !important;
  }

  .benefit-number {
    font-size: 14px;
  }

  .media-frame img {
    height: 320px;
  }

  .control-card img {
    height: 460px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 50px;
    font-size: 24px;
  }

  .lightbox-meta {
    display: block;
  }
}

