/* ============================================================
   GalfDesign GL-01 — Landing styles
   ============================================================ */

:root {
  --bg: #0f1115;
  --bg-2: #161922;
  --surface: #ffffff;
  --surface-2: #f5f7fb;
  --surface-3: #e9edf4;
  --ink: #14181f;
  --ink-2: #2a2f3a;
  --ink-3: #545b6b;
  --muted: #8b93a4;
  --line: #e3e7ef;
  --line-dark: #232634;
  --brand: #1a2a4a;
  --brand-2: #5b7b9a;
  --accent: #c2402b;
  --accent-2: #e4583f;
  --gold: #d4a437;
  --blue: #2c6cb5;
  --red: #c2402b;
  --grad-1: linear-gradient(135deg, #c2402b 0%, #e4583f 50%, #d4a437 100%);
  --grad-2: linear-gradient(180deg, rgba(15,17,21,0) 0%, rgba(15,17,21,.85) 65%, #0f1115 100%);
  --shadow-sm: 0 2px 8px rgba(15,17,21,.06);
  --shadow-md: 0 8px 24px rgba(15,17,21,.10);
  --shadow-lg: 0 24px 60px rgba(15,17,21,.18);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --container: 1240px;
  --section-y: clamp(64px, 8vw, 120px);
  --font: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-display: 'Manrope', 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(194, 64, 43, .06);
}

.grad {
  background: var(--grad-1);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
@media (max-width: 720px) {
  .grad { white-space: normal; }
}

.section-head {
  max-width: 780px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 14px 0 16px;
  font-weight: 800;
}
.section-head p {
  font-size: 18px;
  color: var(--ink-3);
  margin: 0;
}
.section-head--light .eyebrow { color: #ffd6a8; border-color: rgba(255,214,168,.5); background: rgba(255,214,168,.06); }
.section-head--light h2 { color: #fff; }
.section-head--light p { color: #c5cbdb; }

/* ----------- buttons ----------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink);
  color: #fff;
}
.btn--primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(194,64,43,.35); }
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn--block { width: 100%; justify-content: center; }

/* =============================================================
   NAV
   ============================================================= */
.nav {
  position: fixed; top: 16px; left: 0; right: 0;
  z-index: 100;
  pointer-events: none;
}
.nav__inner {
  display: flex; align-items: center; gap: 24px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(15,17,21,.08);
  border-radius: 999px;
  padding: 10px 14px 10px 22px;
  box-shadow: 0 16px 40px rgba(15,17,21,.10);
  pointer-events: auto;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -.01em;
  color: var(--ink);
}
.brand strong { font-weight: 800; }
.brand__logo {
  display: block;
  width: auto;
  height: 26px;
  object-fit: contain;
}
.brand--light { color: #fff; }
.brand--light .brand__logo {
  height: 28px;
  filter: brightness(0) invert(1);
}

.nav__menu {
  display: flex; align-items: center; gap: 6px;
  margin-left: auto;
}
.nav__menu a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  border-radius: 999px;
  transition: all .2s;
}
.nav__menu a:hover { background: var(--surface-2); color: var(--ink); }
.nav__cta { padding: 10px 18px; font-size: 14px; }

.nav__tg {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2aabee 0%, #229ed9 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(34,158,217,.32);
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.nav__tg:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow: 0 10px 22px rgba(34,158,217,.45);
  filter: brightness(1.06);
}
.nav__tg svg {
  width: 22px; height: 22px;
  margin-left: -1px;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,.12));
}

.nav__burger {
  display: none;
  width: 40px; height: 40px;
  border: 0; background: transparent;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  cursor: pointer;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: all .25s;
}

@media (max-width: 960px) {
  .nav__menu { display: none; }
  .nav__tg { margin-left: auto; }
  .nav__burger { display: flex; }
}
@media (max-width: 560px) {
  .nav__cta { display: none; }
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 140px 0 80px;
  color: #fff;
  isolation: isolate;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-color: #0f1115;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  filter: brightness(.55) saturate(.85);
  z-index: -2;
  animation: heroZoom 18s ease-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.0); }
  to { transform: scale(1.08); }
}
.hero__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 600px at 80% 20%, rgba(194,64,43,.25), transparent 60%),
    radial-gradient(900px 700px at 10% 110%, rgba(91,123,154,.55), transparent 55%),
    linear-gradient(180deg, rgba(15,17,21,.30) 0%, rgba(15,17,21,.55) 60%, rgba(15,17,21,.85) 100%);
  z-index: -1;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 56px;
  min-height: calc(100svh - 220px);
}
.hero__copy { max-width: 760px; }
.hero__copy .eyebrow { color: #ffd6a8; border-color: rgba(255,214,168,.55); background: rgba(255,214,168,.08); }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.4vw, 84px);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.02;
  margin: 18px 0 22px;
  text-shadow: 0 4px 30px rgba(0,0,0,.4);
}
.hero__lead {
  font-size: clamp(17px, 1.6vw, 21px);
  color: #d6dbea;
  max-width: 620px;
  margin: 0 0 36px;
}
.hero__lead strong { color: #fff; font-weight: 700; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 40px;
  max-width: 720px;
}
.hero__stats > div {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 18px;
}
.hero__stats b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  background: var(--grad-1);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__stats span {
  display: block;
  font-size: 12px;
  color: #aab1c4;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

.hero__actions {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.hero__actions .btn--primary { background: #fff; color: var(--ink); }
.hero__actions .btn--primary:hover { background: var(--accent); color: #fff; box-shadow: 0 12px 30px rgba(194,64,43,.5); }

/* ----- PDF cards in hero ----- */
.hero__pdfs {
  display: flex;
  gap: 22px;
  align-items: stretch;
  perspective: 1500px;
}
.hero__pdf-float {
  flex: 0 0 auto;
  animation: heroPdfFloat 6s ease-in-out infinite;
  will-change: transform;
}
.hero__pdf-float--right {
  animation-delay: -3s;
  z-index: 1;
}
.hero__pdf-float--left { z-index: 2; }
@keyframes heroPdfFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.hero__pdf {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  width: 230px;
  padding: 14px 14px 18px;
  border-radius: 22px;
  background: linear-gradient(165deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.02) 100%);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow:
    0 30px 70px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.08);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  text-decoration: none;
  color: #fff;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
  isolation: isolate;
  overflow: hidden;
}
.hero__pdf--left { transform: rotate(-3deg); }
.hero__pdf--right { transform: rotate(3deg); }

.hero__pdf:hover {
  transform: rotate(0deg) translateY(-4px) scale(1.04);
  border-color: rgba(255,214,168,.55);
  box-shadow:
    0 40px 90px rgba(194,64,43,.30),
    0 30px 70px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.12);
}
.hero__pdf-float:has(.hero__pdf:hover) { z-index: 5; }
.hero__pdf-shine {
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.18) 50%, transparent 100%);
  transform: skewX(-18deg);
  pointer-events: none;
  z-index: 3;
}
.hero__pdf:hover .hero__pdf-shine {
  animation: heroPdfShine 1.1s ease forwards;
}
@keyframes heroPdfShine {
  to { left: 130%; }
}

.hero__pdf-cover {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.12);
  background: #fff;
  aspect-ratio: 1 / 1.4;
}
.hero__pdf--left .hero__pdf-cover img { object-position: center top; }
.hero__pdf--right .hero__pdf-cover img { object-position: center; }
.hero__pdf-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.hero__pdf:hover .hero__pdf-cover img {
  transform: scale(1.04);
}
.hero__pdf-cover::after {
  content: '';
  position: absolute;
  top: 0; left: 14px;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,.18) 30%, rgba(0,0,0,.18) 70%, transparent);
}

.hero__pdf-meta {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.hero__pdf-tag {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: #ffd6a8;
}
.hero__pdf-title {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  letter-spacing: -.01em;
  color: #fff;
}
.hero__pdf-cta {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .01em;
  transition: all .25s ease;
}
.hero__pdf-cta svg {
  width: 16px; height: 16px;
  transition: transform .25s ease;
}
.hero__pdf:hover .hero__pdf-cta {
  background: #fff; color: var(--accent);
}
.hero__pdf:hover .hero__pdf-cta svg {
  transform: translateY(2px);
}

@media (max-width: 1280px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__pdfs {
    justify-content: center;
  }
  .hero__pdf { width: 260px; }
}
@media (max-width: 600px) {
  .hero__pdfs { gap: 14px; }
  .hero__pdf { width: 200px; padding: 12px 12px 16px; }
  .hero__pdf-title { font-size: 16px; }
  .hero__pdf-cta { font-size: 13px; padding: 10px 14px; }
}
@media (max-width: 420px) {
  .hero__pdf { width: 170px; }
}

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: #aab1c4;
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  opacity: .8;
}
.hero__scroll span {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, #aab1c4);
  position: relative; overflow: hidden;
}
.hero__scroll span::after {
  content: ''; position: absolute; top: -40px; left: 0; width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, #fff);
  animation: scrollDot 2.4s linear infinite;
}
@keyframes scrollDot {
  to { transform: translateY(80px); }
}

@media (max-width: 720px) {
  .hero { padding-top: 110px; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   MARQUEE
   ============================================================= */
.marquee {
  background: var(--ink);
  color: rgba(255,255,255,.4);
  overflow: hidden;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee__track {
  display: flex; gap: 36px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee span:nth-child(odd) { color: rgba(255,255,255,.85); }
.marquee span:nth-child(even) { color: var(--accent-2); }

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

/* =============================================================
   FEATURES
   ============================================================= */
.features { padding: var(--section-y) 0; background: var(--surface); }
.features__layout {
  display: grid;
  grid-template-columns: 1fr 380px 1fr;
  grid-template-rows: repeat(6, auto);
  gap: 16px 28px;
  align-items: stretch;
}
.features__col {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1 / -1;
  gap: 16px;
}
.features__figure {
  position: relative;
  margin: 0;
  grid-row: 1 / -1;
  align-self: stretch;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  min-height: 480px;
}
.feat {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 22px 22px 64px;
  position: relative;
  transition: all .3s ease;
  height: 100%;
  min-height: 0;
}
.feat:hover {
  background: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.feat__num {
  position: absolute;
  top: 22px; left: 22px;
  width: 30px; height: 30px;
  display: inline-grid; place-items: center;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 800; letter-spacing: .04em;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}
.feat:hover .feat__num { background: var(--accent); }
.feat h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700;
  color: var(--ink);
}
.feat p {
  margin: 0;
  font-size: 14.5px; color: var(--ink-3); line-height: 1.55;
}

.features__figure img {
  width: 100%; height: 100%;
  object-fit: contain;
  background: #fff;
  filter: drop-shadow(0 30px 50px rgba(15,17,21,.15));
}
.features__figure figcaption {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line);
  padding: 6px 12px; border-radius: 999px;
  backdrop-filter: blur(6px);
}

@media (max-width: 1100px) {
  .features__layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 16px 28px;
  }
  .features__col {
    grid-template-rows: none;
    grid-row: auto;
  }
  .features__figure { grid-column: span 2; grid-row: auto; order: -1; min-height: 380px; }
}
@media (max-width: 720px) {
  .features__layout { grid-template-columns: 1fr; }
  .features__figure { grid-column: span 1; min-height: 320px; }
}

/* =============================================================
   MODULE / SPECS
   ============================================================= */
.module {
  padding: var(--section-y) 0;
  background:
    radial-gradient(800px 500px at 90% 10%, rgba(91,123,154,.10), transparent 60%),
    var(--surface-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.module__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.module__photo {
  margin: 0;
  position: sticky; top: 110px;
  background: linear-gradient(180deg, #fff 0%, #eef2f9 100%);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.module__photo img {
  width: 100%;
  filter: drop-shadow(0 30px 60px rgba(15,17,21,.15));
}
.module__dim {
  position: absolute;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  color: var(--accent);
  background: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.module__dim--w { bottom: 32px; left: 50%; transform: translateX(-50%); }
.module__dim--h { top: 50%; right: 18px; transform: translateY(-50%) rotate(90deg); transform-origin: center; }
.module__dim--d { top: 32px; left: 32px; }

.module__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800; letter-spacing: -.02em;
  line-height: 1.1;
  margin: 14px 0 18px;
}
.module__copy > p {
  color: var(--ink-3); font-size: 16.5px; margin-bottom: 14px;
}
.module__copy strong { color: var(--ink); font-weight: 700; }

.specs {
  margin-top: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.specs h3 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
}
.specs dl {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.specs dl > div {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
}
.specs dl > div:nth-last-child(-n+2) { border-bottom: 0; }
.specs dl > div:nth-child(odd) { padding-right: 16px; }
.specs dl > div:nth-child(even) { padding-left: 16px; border-left: 1px dashed var(--line); }
.specs dt { font-size: 13px; color: var(--ink-3); }
.specs dd { margin: 0; font-weight: 600; font-size: 14.5px; color: var(--ink); text-align: right; }

@media (max-width: 980px) {
  .module__grid { grid-template-columns: 1fr; gap: 36px; }
  .module__photo { position: static; }
  .specs dl { grid-template-columns: 1fr; }
  .specs dl > div:nth-child(even) { padding-left: 0; border-left: 0; }
  .specs dl > div { padding: 12px 0 !important; }
  .specs dl > div:last-child { border-bottom: 0; }
}

/* =============================================================
   COMPONENTS
   ============================================================= */
.components { padding: var(--section-y) 0; background: var(--surface); }
.components__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.components__card {
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 28px;
  align-items: center;
  transition: all .35s ease;
}
.components__card:hover {
  border-color: var(--accent);
  box-shadow: 0 30px 60px rgba(194,64,43,.12);
  transform: translateY(-4px);
}
.components__card img {
  width: 100%; height: auto;
  filter: drop-shadow(0 20px 40px rgba(15,17,21,.10));
}
.components__card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  letter-spacing: -.01em;
  margin: 0 0 12px;
}
.components__card p {
  color: var(--ink-3); margin: 0; font-size: 15px;
}

@media (max-width: 980px) {
  .components__grid { grid-template-columns: 1fr; }
  .components__card { grid-template-columns: 1fr; padding: 24px; }
}

/* =============================================================
   SCHEME
   ============================================================= */
.scheme {
  padding: var(--section-y) 0;
  background: var(--ink);
  color: #fff;
  background-image:
    radial-gradient(900px 600px at 80% -10%, rgba(194,64,43,.18), transparent 60%),
    radial-gradient(700px 600px at 0% 110%, rgba(91,123,154,.18), transparent 60%);
}
.scheme__hero {
  margin: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg);
  padding: 24px;
  overflow: hidden;
}
.scheme__hero img { width: 100%; border-radius: var(--r-md); }

.scheme__sub {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.scheme__sub figure {
  margin: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-md);
  padding: 18px;
}
.scheme__sub figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}
.scheme__sub figcaption {
  margin-top: 14px;
  font-size: 14px;
  color: #c5cbdb;
}

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

/* =============================================================
   TEMPERATURE
   ============================================================= */
.temp { padding: var(--section-y) 0; background: var(--surface-2); border-top: 1px solid var(--line); }
.temp__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(3, auto);
  gap: 22px 24px;
  align-items: stretch;
}
.temp__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 22px;
  position: relative; overflow: hidden;
  transition: all .3s ease;
}
.temp__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.temp__card::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(400px 200px at 100% 0%, currentColor, transparent 70%);
  opacity: .06;
}
.temp__card--vk { color: var(--accent); }
.temp__card--nk { color: var(--blue); }

.temp__card header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}
.temp__card h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800; letter-spacing: -.01em;
  color: var(--ink); margin: 12px 0 0;
}
.badge {
  display: inline-flex; align-items: center;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
}
.badge--red { background: rgba(194,64,43,.10); color: var(--accent); }
.badge--blue { background: rgba(44,108,181,.10); color: var(--blue); }

.temp__card img {
  width: 100%;
  height: 260px;
  min-height: 0;
  object-fit: contain;
  background: #f1f4fa; border-radius: var(--r-md);
  padding: 12px;
}
.temp__card ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; align-self: start; }
.temp__card li {
  position: relative; padding-left: 28px;
  color: var(--ink-2); font-size: 15px;
}
.temp__card li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 16px; height: 2px; background: currentColor; opacity: .8;
}

.temp__zont {
  margin: 28px 0 0;
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  align-items: center;
}
.temp__zont-img {
  display: block;
  position: relative;
  border-radius: var(--r-md);
  background: #f1f4fa;
  padding: 12px;
  overflow: hidden;
  cursor: zoom-in;
  transition: box-shadow .35s;
}
.temp__zont-img::after {
  content: '';
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(15,17,21,.65) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='M21 21l-4.3-4.3M11 8v6M8 11h6'/></svg>") center/16px no-repeat;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: scale(.85);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.temp__zont-img:hover::after { opacity: 1; transform: scale(1); }
.temp__zont-img img {
  width: 100%; height: auto;
  display: block;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.temp__zont-img:hover img { transform: scale(1.03); }
.temp__zont h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 800; margin: 0 0 12px;
}
.temp__zont p { color: var(--ink-3); margin: 0; }

@media (max-width: 880px) {
  .temp__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .temp__card {
    grid-template-rows: none;
    grid-row: auto;
  }
  .temp__zont { grid-template-columns: 1fr; }
}

/* =============================================================
   VARIANTS
   ============================================================= */
.variants { padding: var(--section-y) 0; background: var(--surface); }
.variants__row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.vcard {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative; overflow: hidden;
  transition: all .3s ease;
}
.vcard:hover {
  transform: translateY(-6px);
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  box-shadow: var(--shadow-lg);
}
.vcard__num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 900;
  line-height: 1;
  background: var(--grad-1);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 16px;
  letter-spacing: -.04em;
}
.vcard h3 {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800; letter-spacing: -.01em;
  margin: 0 0 10px;
}
.vcard p { color: var(--ink-3); margin: 0; font-size: 15px; }
.vcard:hover p { color: #c5cbdb; }
.vcard__tag {
  display: inline-block; margin-top: 14px;
  font-size: 12px; color: var(--accent);
  font-family: var(--font-display); font-weight: 600;
}

.variants__boilers {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
}
.variants__boilers h3 {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 22px;
}
.variants__boilers-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.variants__boilers-row > div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px;
  position: relative;
}
.variants__boilers-row b {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  display: block; margin-bottom: 8px;
}
.variants__boilers-row p { color: var(--ink-3); margin: 0; font-size: 14.5px; }

.variants__note {
  margin-top: 28px;
  background: linear-gradient(120deg, var(--ink) 0%, #1f2533 100%);
  color: #fff;
  border-radius: var(--r-md);
  padding: 24px 28px;
  font-size: 15px;
}
.variants__note strong {
  color: #ffd6a8;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 13px;
  display: block;
  margin-bottom: 6px;
}

@media (max-width: 880px) {
  .variants__row,
  .variants__boilers-row { grid-template-columns: 1fr; }
}

/* =============================================================
   SERVICE
   ============================================================= */
.service {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, #1a2032 0%, #0f1115 100%);
  color: #fff;
}
.service__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.scard {
  margin: 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--r-lg);
  padding: 24px;
  display: flex; flex-direction: column;
  transition: all .3s ease;
}
.scard:hover {
  background: rgba(255,255,255,.07);
  transform: translateY(-4px);
  border-color: var(--accent);
}
.scard__img {
  display: block;
  position: relative;
  background: #fff;
  border-radius: var(--r-md);
  padding: 8px;
  margin-bottom: 18px;
  cursor: zoom-in;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.scard__img::after {
  content: '';
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(15,17,21,.55) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><path d='M21 21l-4.3-4.3M11 8v6M8 11h6'/></svg>") center/16px no-repeat;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: scale(.85);
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.scard__img:hover::after { opacity: 1; transform: scale(1); }
.scard__img img {
  width: 100%; height: auto;
  display: block;
  max-height: 380px; object-fit: contain;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.scard__img:hover img { transform: scale(1.04); }
.scard__step {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: #ffd6a8;
  background: rgba(255,214,168,.10);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 10px;
}
.scard h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800;
  margin: 0 0 6px;
}
.scard p { color: #aab1c4; margin: 0; font-size: 14px; }

@media (max-width: 1100px) {
  .service__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .service__grid { grid-template-columns: 1fr; gap: 16px; }
  .scard { padding: 18px; }
  .scard__img img { max-height: 260px; }
  .scard h3 { font-size: 17px; }
}

/* =============================================================
   GALLERY
   ============================================================= */
.gallery { padding: var(--section-y) 0; background: var(--surface); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}
.gphoto {
  display: block;
  position: relative; overflow: hidden;
  border-radius: var(--r-md);
  background: var(--surface-2);
  cursor: zoom-in;
}
.gphoto img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.gphoto:hover img { transform: scale(1.08); }
.gphoto::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(15,17,21,.5) 100%);
  opacity: 0; transition: opacity .35s;
}
.gphoto:hover::after { opacity: 1; }

.gphoto--big { grid-column: span 2; grid-row: span 2; }
.gphoto--wide { grid-column: span 2; }

@media (max-width: 980px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gphoto--big { grid-column: span 2; grid-row: span 1; grid-auto-rows: 280px; }
  .gphoto--wide { grid-column: span 2; }
}

/* =============================================================
   VIDEOS
   ============================================================= */
.videos { padding: var(--section-y) 0; background: var(--surface); border-top: 1px solid var(--line); }
.videos__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.vid {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface-2);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
}
.vid:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.vid__thumb {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: #000;
  transition: transform .6s cubic-bezier(.2,.8,.2,1);
}
.vid:hover .vid__thumb { transform: scale(1.06); }
.vid__thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,17,21,.0) 40%, rgba(15,17,21,.55) 100%);
}
.vid__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(194,64,43,.45);
  transition: all .25s ease;
  z-index: 2;
  pointer-events: none;
}
.vid:hover .vid__play {
  background: #fff;
  color: var(--accent);
  transform: translate(-50%, -50%) scale(1.08);
}
.vid__play svg { width: 26px; height: 26px; margin-left: 3px; }
.vid__title {
  display: block;
  padding: 16px 18px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.005em;
  color: var(--ink);
  background: #fff;
}
.vid.is-playing { cursor: default; }
.vid.is-playing:hover { transform: none; box-shadow: var(--shadow-md); }
.vid.is-playing .vid__thumb,
.vid.is-playing .vid__play { display: none; }
.vid__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}
.vid__frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.vid__fallback {
  position: absolute;
  bottom: 10px; right: 10px;
  z-index: 3;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  background: rgba(15,17,21,.65);
  border: 1px solid rgba(255,255,255,.18);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  text-decoration: none;
  opacity: 0;
  transition: opacity .25s;
}
.vid.is-playing:hover .vid__fallback { opacity: 1; }
.vid__fallback:hover { background: var(--accent); border-color: var(--accent); }

@media (max-width: 980px) {
  .videos__grid { grid-template-columns: repeat(2, 1fr); }
  .vid__play { width: 54px; height: 54px; }
  .vid__play svg { width: 22px; height: 22px; }
}
@media (max-width: 540px) {
  .videos__grid { grid-template-columns: 1fr; }
}

/* =============================================================
   PRODUCTION
   ============================================================= */
.production {
  position: relative;
  isolation: isolate;
  padding: var(--section-y) 0;
  color: #fff;
  background: #0c0e14;
  overflow: hidden;
}
.production__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(900px 600px at 85% -10%, rgba(194,64,43,.22), transparent 60%),
    radial-gradient(700px 700px at -5% 110%, rgba(91,123,154,.22), transparent 55%),
    linear-gradient(180deg, #11131b 0%, #0a0c12 100%);
}
.production__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  opacity: .55;
}

.production__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.production__copy .eyebrow {
  color: #ffd6a8;
  border-color: rgba(255,214,168,.55);
  background: rgba(255,214,168,.06);
}
.production__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: #fff;
  margin: 16px 0 18px;
}
.production__lead {
  font-size: 17px;
  color: #c5cbdb;
  margin: 0 0 28px;
  max-width: 560px;
}
.production__lead strong { color: #fff; font-weight: 700; }

.production__perks {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.production__perks li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 16px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md);
  transition: all .3s ease;
}
.production__perks li:hover {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,214,168,.35);
  transform: translateX(4px);
}
.production__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--gold) 100%);
  color: #fff;
  flex-shrink: 0;
}
.production__icon svg { width: 22px; height: 22px; }
.production__perks b {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}
.production__perks p {
  margin: 0;
  font-size: 14px;
  color: #aab1c4;
  line-height: 1.5;
}

.production__stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 24px 36px;
  align-items: end;
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
}
.production__stats > div { display: flex; flex-direction: column; }
.production__stats b {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -.02em;
  background: var(--grad-1);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  line-height: 1;
}
.production__stats span {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #aab1c4;
  margin-top: 6px;
}

.production__media {
  position: relative;
  width: 100%;
  height: 640px;
}

/* ----- Production slider ----- */
.prod-slider {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
  background: #1a1d28;
  isolation: isolate;
}
.prod-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.prod-slider__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.06);
  transition: opacity .8s ease, transform 1.2s cubic-bezier(.2,.8,.2,1), visibility 0s linear .8s;
}
.prod-slider__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  transition: opacity .8s ease, transform 6s ease-out, visibility 0s;
}
.prod-slider__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.prod-slider__slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}

.prod-slider__nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 4;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(15,17,21,.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: grid; place-items: center;
  transition: all .25s ease;
  opacity: 0;
}
.prod-slider:hover .prod-slider__nav,
.prod-slider:focus-within .prod-slider__nav {
  opacity: 1;
}
.prod-slider__nav:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.08);
}
.prod-slider__nav svg { width: 22px; height: 22px; }
.prod-slider__nav--prev { left: 14px; }
.prod-slider__nav--next { right: 14px; }

.prod-slider__dots {
  position: absolute;
  left: 0; right: 0; bottom: 18px;
  z-index: 4;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.prod-slider__dot {
  width: 28px; height: 4px;
  border: 0;
  border-radius: 2px;
  padding: 0;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  transition: all .25s ease;
}
.prod-slider__dot:hover { background: rgba(255,255,255,.6); }
.prod-slider__dot.is-active {
  background: var(--accent);
  width: 44px;
}

.prod-slider__counter {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 4;
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #fff;
  background: rgba(15,17,21,.55);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 999px;
}
.prod-slider__counter .prod-slider__current {
  color: #ffd6a8;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .production__inner { grid-template-columns: 1fr; gap: 48px; }
  .production__media { height: 540px; max-width: 760px; margin: 0 auto; width: 100%; }
}
@media (max-width: 600px) {
  .production__media { height: 420px; }
  .prod-slider__nav { width: 40px; height: 40px; opacity: 1; background: rgba(15,17,21,.7); }
  .prod-slider__nav svg { width: 18px; height: 18px; }
  .prod-slider__counter { top: 12px; right: 12px; }
  .prod-slider__dots { bottom: 14px; }
}

/* =============================================================
   CTA
   ============================================================= */
.cta {
  position: relative; isolation: isolate;
  padding: calc(var(--section-y) + 20px) 0;
  color: #fff;
  overflow: hidden;
}
.cta__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(.35) blur(2px);
  z-index: -2;
}
.cta::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(800px 500px at 90% 100%, rgba(194,64,43,.4), transparent 50%),
    linear-gradient(180deg, rgba(15,17,21,.7) 0%, rgba(15,17,21,.85) 100%);
}
.cta__inner {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 56px; align-items: center;
}
.cta__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px); font-weight: 800;
  letter-spacing: -.02em; line-height: 1.05;
  margin: 14px 0 18px;
  color: #fff;
}
.cta__copy > p { color: #c5cbdb; font-size: 17px; margin-bottom: 22px; }
.cta__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.cta__list li {
  font-family: var(--font-display); font-weight: 600;
  color: #ffd6a8;
}

.cta__contacts {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: grid;
  gap: 18px;
}
.cta__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cta__city {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 15px;
  color: #fff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  padding: 11px 18px 11px 14px;
  border-radius: 999px;
  width: fit-content;
  backdrop-filter: blur(6px);
}
.cta__city svg {
  width: 22px; height: 22px;
  color: #ffd6a8;
  flex-shrink: 0;
}
.cta__city strong { font-weight: 800; color: #fff; }

.cta__info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px 24px;
  align-items: center;
  justify-content: start;
}
.cta__info li {
  display: inline-flex; align-items: flex-start; gap: 10px;
  font-size: 15px;
  color: #c5cbdb;
  line-height: 1.45;
}
.cta__info li svg {
  width: 18px; height: 18px;
  color: #ffd6a8;
  flex-shrink: 0;
  margin-top: 2px;
}
.cta__info-addr { grid-column: 1 / -1; }
.cta__info-addr a { font-weight: 500; }
.cta__info a {
  color: #fff;
  font-weight: 600;
  border-bottom: 1px dashed rgba(255,255,255,.25);
  transition: all .2s;
}
.cta__info a:hover {
  color: #ffd6a8;
  border-color: #ffd6a8;
}

@media (max-width: 540px) {
  .cta__info { grid-template-columns: 1fr; }
}

.cta__form {
  background: #fff; color: var(--ink);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: 0 40px 80px rgba(0,0,0,.4);
  display: grid; gap: 14px;
}
.cta__form h3 {
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  margin: 0 0 4px; letter-spacing: -.01em;
}
.cta__form label { display: grid; gap: 6px; }
.cta__form span {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3);
}
.cta__form input,
.cta__form textarea {
  font-family: inherit; font-size: 15px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--ink);
  outline: none;
  transition: all .2s;
  resize: vertical;
}
.cta__form input:focus,
.cta__form textarea:focus {
  border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 4px rgba(194,64,43,.10);
}
.cta__form .btn--primary { background: var(--accent); }
.cta__form .btn--primary:hover { background: var(--ink); }
.cta__form small { color: var(--ink-3); font-size: 12px; }

@media (max-width: 880px) {
  .cta__inner { grid-template-columns: 1fr; gap: 32px; }
}

/* =============================================================
   FOOTER
   ============================================================= */
.foot {
  background: var(--ink);
  color: #aab1c4;
  padding: 64px 0 28px;
}
.foot__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot__brand p { margin-top: 14px; max-width: 320px; font-size: 14px; }
.foot__col h4 {
  font-family: var(--font-display);
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .14em;
  color: #ffd6a8;
  margin: 0 0 18px;
}
.foot__col a {
  display: block; padding: 6px 0;
  font-size: 14.5px;
  transition: color .2s;
}
.foot__col a:hover { color: #fff; }
.foot__bottom {
  display: flex; justify-content: space-between;
  font-size: 13px; padding-top: 20px;
}

@media (max-width: 880px) {
  .foot__inner { grid-template-columns: 1fr 1fr; }
  .foot__brand { grid-column: span 2; }
  .foot__bottom { flex-direction: column; gap: 6px; text-align: left; }
}

/* =============================================================
   LIGHTBOX
   ============================================================= */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15,17,21,.95);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 88vh;
  border-radius: 8px;
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
  animation: lbIn .25s ease;
}
@keyframes lbIn { from { opacity: 0; transform: scale(.96); } }

.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(255,255,255,.10);
  color: #fff;
  border: 1px solid rgba(255,255,255,.20);
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 28px; line-height: 1;
  cursor: pointer;
  transition: all .2s;
  display: grid; place-items: center;
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav--prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover,
.lightbox__nav:hover { background: var(--accent); border-color: var(--accent); }

/* =============================================================
   REVEAL on scroll
   ============================================================= */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =============================================================
   Selection / focus
   ============================================================= */
::selection { background: var(--accent); color: #fff; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

/* =============================================================
   MOBILE REFINEMENTS
   ============================================================= */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }

  .section-head { margin-bottom: 36px; }
  .section-head h2 { font-size: clamp(24px, 6.5vw, 34px); line-height: 1.12; }
  .section-head p { font-size: 15.5px; }

  .nav { top: 12px; }
  .nav__inner { padding: 8px 8px 8px 16px; gap: 10px; }
  .brand__logo { height: 22px; }
  .nav__tg { width: 38px; height: 38px; }
  .nav__tg svg { width: 20px; height: 20px; }
  .nav__cta { padding: 9px 14px; font-size: 13px; }
  .nav__burger { width: 36px; height: 36px; }

  .hero { padding: 100px 0 60px; }
  .hero h1 { font-size: clamp(32px, 9vw, 44px); margin: 14px 0 16px; }
  .hero__lead { font-size: 15.5px; margin-bottom: 26px; }
  .hero__stats { gap: 12px; margin-bottom: 26px; }
  .hero__stats > div { padding: 14px; }
  .hero__stats span { font-size: 11px; }

  .features__copy h2,
  .module__copy h2 { font-size: 26px; }

  .module { padding: 64px 0; }
  .specs { padding: 20px; }
  .specs h3 { font-size: 13px; }
  .specs dt { font-size: 12.5px; }
  .specs dd { font-size: 13.5px; }

  .temp__card { padding: 22px; }
  .temp__card h3 { font-size: 19px; }
  .temp__card img { height: 220px; }

  .production__copy h2 { font-size: 28px; }
  .production__copy .production__lead { font-size: 15.5px; }
  .production__perks li { padding: 12px 14px; }

  .gallery__grid { gap: 8px; }

  .cta { padding: 80px 0 60px; }
  .cta__copy h2 { font-size: 28px; }
  .cta__form { padding: 24px; }

  .foot { padding: 56px 0 28px; }
  .foot__inner { gap: 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero__pdfs { gap: 10px; }
  .hero__pdf { width: 158px; padding: 10px 10px 14px; }
  .hero__pdf-meta { margin-top: 12px; gap: 8px; }
  .hero__pdf-title { font-size: 14px; }
  .hero__pdf-tag { font-size: 10px; }
  .hero__pdf-cta { font-size: 12px; padding: 9px 12px; }

  .hero__stats { grid-template-columns: 1fr; }
  .hero__stats > div { display: flex; align-items: baseline; gap: 12px; padding: 14px 18px; }
  .hero__stats b { font-size: 30px; }
  .hero__stats span { margin-top: 0; }

  .videos__grid,
  .vid__title { font-size: 15px; }
  .vid__title { padding: 14px; }

  .gallery__grid { grid-auto-rows: 160px; }

  .cta__contacts { gap: 14px; }
  .cta__info { grid-template-columns: 1fr; gap: 10px; }
}

@media (max-width: 380px) {
  .hero__pdf { width: calc(50vw - 26px); }
  .nav__cta { padding: 8px 12px; font-size: 12.5px; }
}
