:root {
  --bg: #f5f2ec;
  --surface: #fffdf8;
  --card: rgba(255, 253, 248, 0.88);
  --dark: #101318;
  --ink: #20242c;
  --muted: #6c7280;
  --line: #ded6c8;
  --gold: #b9872f;
  --gold2: #e3c16a;
  --blue: #163d75;
  --blue2: #0b63ce;
  --success: #129c5b;
  --radius: 18px;
  --shadow: 0 28px 80px rgba(16, 19, 24, .12);
  --soft: 0 16px 44px rgba(16, 19, 24, .08);
  --max: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  min-width: 320px;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at 12% 8%, rgba(227, 193, 106, .24), transparent 30%),
    radial-gradient(circle at 86% 12%, rgba(22, 61, 117, .12), transparent 32%),
    linear-gradient(135deg, #fbfaf6 0%, var(--bg) 52%, #ece7dc 100%);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.mono { font-family: "SFMono-Regular", Consolas, "JetBrains Mono", monospace; }
.container { width: min(100% - 40px, var(--max)); margin: 0 auto; }

.lux-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid rgba(222, 214, 200, .8);
  background: rgba(255, 253, 248, .82);
  backdrop-filter: blur(22px);
  transition: all .3s ease;
}
.lux-header.scrolled { box-shadow: 0 12px 40px rgba(16, 19, 24, .1); }
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.header-actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.header-actions .btn {
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 11px;
  font-size: 13px;
  letter-spacing: .01em;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
}
.header-actions .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}
.brand { display: inline-grid; grid-template-columns: 78px auto; align-items: center; gap: 12px; min-width: max-content; }
.brand::before {
  content: "";
  grid-row: 1 / span 2;
  width: 78px;
  height: 52px;
  border: 0;
  border-radius: 0;
  background: url("logo-transparent.png") center / contain no-repeat;
  box-shadow: none;
  transition: all .3s ease;
}
.brand:hover::before {
  transform: translateY(-1px);
}
.brand strong { color: var(--dark); font-size: 27px; font-weight: 900; letter-spacing: .06em; }
.brand span { color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 2px; }
.nav a {
  position: relative; padding: 29px 8px 26px; color: var(--muted);
  font-size: 14px; font-weight: 750; transition: all .3s ease;
}
.nav a::after {
  content: ""; position: absolute; right: 8px; bottom: 0; left: 8px; height: 3px;
  border-radius: 3px 3px 0 0; background: linear-gradient(90deg, var(--gold), var(--gold2));
  transform: scaleX(0); transform-origin: left; transition: all .3s ease;
}
.nav a:hover, .nav a.active { color: var(--dark); }
.nav a.active::after { transform: scaleX(1); }
.burger {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  border-radius: 14px; background: var(--surface);
}
.burger span { display: block; width: 21px; height: 2px; margin: 5px auto; background: var(--dark); transition: all .3s ease; }
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 13px 20px; overflow: hidden; border: 1px solid var(--gold);
  border-radius: 14px; background: transparent; color: var(--dark); font-weight: 850;
  transition: all .3s ease;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(120deg, var(--gold), var(--gold2));
  clip-path: inset(0 100% 0 0); transition: all .3s ease;
}
.btn:hover { color: #111; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(185, 135, 47, .22); }
.btn:hover::before { clip-path: inset(0); }
.btn-primary {
  background: linear-gradient(120deg, var(--dark), #252b35);
  border-color: var(--dark); color: #fff; box-shadow: 0 18px 42px rgba(16, 19, 24, .2);
}
.btn-primary::before { background: linear-gradient(120deg, var(--gold), var(--gold2)); }
.btn-primary:hover { color: #111; }
.header-actions .btn-telegram {
  border-color: rgba(36, 155, 215, .5);
  background: rgba(36, 155, 215, .12);
  color: #d9f2ff;
}
.header-actions .btn-telegram::before { background: linear-gradient(120deg, #1e9bd7, #176eac); }
.header-actions .btn-telegram:hover {
  color: #fff;
  box-shadow: 0 0 18px rgba(36, 155, 215, .16), 0 12px 28px rgba(0, 0, 0, .28);
}

.hero {
  position: relative; padding: 96px 0 84px; overflow: hidden;
  background:
    linear-gradient(rgba(16,19,24,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16,19,24,.04) 1px, transparent 1px);
  background-size: 42px 42px;
}
.hero::before {
  content: ""; position: absolute; inset: 36px 4% auto auto; width: 44vw; height: 44vw;
  border: 1px solid rgba(185, 135, 47, .26); border-radius: 50%; pointer-events: none;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; }
.kicker { color: var(--gold); font-size: 12px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
h1, h2, h3 { color: var(--dark); line-height: 1.08; letter-spacing: -.02em; }
h1 { margin-top: 18px; font-size: clamp(42px, 6vw, 84px); font-weight: 900; max-width: 830px; }
h2 { font-size: clamp(30px, 4vw, 52px); font-weight: 900; margin-bottom: 18px; }
h3 { font-size: 21px; font-weight: 850; }
p { color: var(--muted); }
.lead { margin-top: 22px; max-width: 780px; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.tech-line {
  margin-top: 24px; padding: 15px 18px; border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: var(--radius); background: rgba(255,255,255,.58); color: var(--dark); font-size: 13px;
}
.command-card {
  padding: 28px; border: 1px solid rgba(185,135,47,.32); border-radius: 24px;
  background: linear-gradient(145deg, rgba(16,19,24,.94), rgba(28,34,43,.94));
  box-shadow: var(--shadow); color: #fff;
}
.command-card h2 { color: #fff; font-size: 28px; }
.status { display: inline-flex; align-items: center; gap: 8px; padding: 7px 11px; border-radius: 999px; background: rgba(18,156,91,.12); color: #0a7844; font-weight: 850; font-size: 12px; }
.status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 6px rgba(18,156,91,.12); }
.command-card .status { color: #d8ffe9; background: rgba(18,156,91,.16); }
.progress-row { margin-top: 18px; }
.progress-top { display: flex; justify-content: space-between; color: #dce4ef; font-size: 13px; }
.bar { height: 8px; margin-top: 8px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.12); }
.bar span { display: block; width: var(--w); height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold2)); animation: fill 1.1s ease both; }
@keyframes fill { from { transform: scaleX(0); transform-origin: left; } to { transform: scaleX(1); transform-origin: left; } }

.section { padding: 92px 0; }
.section-head { max-width: 850px; margin-bottom: 38px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; align-items: start; }
.card {
  position: relative; overflow: hidden; padding: 28px; border: 1px solid rgba(222,214,200,.9);
  border-radius: var(--radius); background: var(--card); box-shadow: var(--soft);
  transition: all .3s ease;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent); opacity: .65;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(185,135,47,.46); }
.icon { width: 46px; height: 46px; margin-bottom: 20px; color: var(--gold); }
.metric strong { display: block; color: var(--dark); font-size: 44px; line-height: 1; }
.metric span, .num { color: var(--gold); font-weight: 900; }
.num { display: block; margin-bottom: 16px; font-size: 28px; }
.list { display: grid; gap: 12px; list-style: none; }
.list li { position: relative; padding-left: 28px; color: var(--muted); }
.list li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.timeline { display: grid; gap: 18px; max-width: 960px; }
.timeline .card { display: grid; grid-template-columns: 54px 1fr auto; gap: 18px; align-items: start; }
.process-video-showcase { margin-top: 48px; }
.process-video-head {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 20px;
  text-align: center;
}
.process-video-head h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(28px, 3.2vw, 42px);
}
.process-video-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.process-video-tile {
  position: relative;
  overflow: hidden;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 8, 7, .72);
  box-shadow: var(--soft);
}
.process-video-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 50%, rgba(4, 5, 4, .78)),
    linear-gradient(90deg, rgba(200, 164, 93, .12), transparent 30%, rgba(125, 183, 123, .12));
}
.process-video-frame {
  aspect-ratio: 9 / 14;
  background: #050605;
}
.process-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}
.pill { display: inline-flex; align-items: center; gap: 8px; width: max-content; padding: 7px 11px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--blue); font-size: 12px; font-weight: 850; }
.req-table { display: grid; margin-top: 20px; }
.req-row { display: grid; grid-template-columns: 190px 1fr; gap: 18px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.req-row dt { color: var(--muted); font-weight: 850; }
.req-row dd { color: var(--dark); font-weight: 800; }
.cta {
  margin-top: 38px; padding: 36px; border-radius: 24px;
  background: linear-gradient(120deg, #101318, #252b35 62%, #53401e);
  color: #fff; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: space-between; gap: 22px;
}
.cta h2, .cta p { color: #fff; }
.case-route { margin: 14px 0 18px; color: var(--gold); font-weight: 900; }
.faq-item { margin-bottom: 14px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); box-shadow: var(--soft); overflow: hidden; }
.faq-q { width: 100%; display: flex; justify-content: space-between; gap: 16px; padding: 21px 24px; border: 0; background: transparent; color: var(--dark); font-weight: 850; text-align: left; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 24px 22px; }
.faq-item.open .arrow { transform: rotate(180deg); }
.arrow { color: var(--gold); transition: all .3s ease; }
.field { display: grid; gap: 8px; margin-bottom: 14px; }
.field label { color: var(--dark); font-weight: 850; font-size: 14px; }
.field input, .field textarea {
  width: 100%; padding: 14px 15px; border: 1px solid var(--line); border-radius: 14px;
  background: rgba(255,255,255,.82); color: var(--ink); outline: none; transition: all .3s ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(185,135,47,.12); }
.footer { padding: 64px 0 28px; background: var(--dark); color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.1fr 1.1fr; gap: 32px; }
.footer h3, .footer .brand strong { color: #fff; }
.footer p, .footer li, .footer a { color: #b8c0cc; font-size: 14px; }
.footer ul { display: grid; gap: 8px; list-style: none; }
.footer-bottom { margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 50px; height: 50px; border: 0; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold2)); color: #111; font-size: 22px;
  box-shadow: 0 18px 38px rgba(185,135,47,.32); opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .3s ease;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.popup, .toast {
  position: fixed; z-index: 100; opacity: 0; visibility: hidden; transition: all .3s ease;
}
.popup { inset: 0; display: grid; place-items: center; padding: 22px; background: rgba(16,19,24,.58); backdrop-filter: blur(14px); }
.popup.show, .toast.show { opacity: 1; visibility: visible; }
.popup-card { width: min(100%, 440px); padding: 34px; border-radius: 24px; background: var(--surface); box-shadow: var(--shadow); text-align: center; transform: translateY(14px); transition: all .3s ease; }
.popup.show .popup-card { transform: translateY(0); }
.toast { right: 22px; bottom: 86px; padding: 14px 18px; border-radius: 14px; background: var(--dark); color: #fff; box-shadow: var(--shadow); }

@media (max-width: 980px) {
  .nav { position: fixed; top: 82px; right: 18px; left: 18px; display: grid; padding: 10px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,248,.96); box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: all .3s ease; }
  .nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 13px 12px; }
  .burger { display: block; }
  .hide-mobile { display: none; }
  .hero-grid, .grid-2 { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-video-head { align-items: center; }
  .process-video-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, var(--max)); }
  .header-inner { gap: 12px; min-height: 74px; }
  .brand { grid-template-columns: 58px auto; gap: 9px; min-width: 0; }
  .brand::before { width: 58px; height: 40px; }
  .brand strong { font-size: 22px; }
  .brand span { font-size: 9px; letter-spacing: .08em; line-height: 1.15; }
  .to-top { right: 14px; bottom: 22px; width: 46px; height: 46px; }
  .section, .hero { padding: 62px 0; }
  .grid-3, .grid-4, .footer-grid { grid-template-columns: 1fr; }
  .process-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-actions, .cta { display: grid; }
  .btn { width: 100%; }
  .timeline .card, .req-row { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .process-video-grid { grid-template-columns: 1fr; }
}

/* Neon executive redesign */
:root {
  --bg: #030711;
  --surface: rgba(7, 12, 23, .94);
  --card: rgba(9, 15, 28, .9);
  --dark: #f7fbff;
  --ink: #e7f0ff;
  --muted: #a6a092;
  --line: rgba(189, 166, 122, .24);
  --gold: #c8a45d;
  --gold2: #e2c782;
  --blue: #5f6b5a;
  --blue2: #9aa37d;
  --success: #7db77b;
  --shadow: 0 28px 78px rgba(0, 0, 0, .42);
  --soft: 0 16px 44px rgba(0, 0, 0, .32);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 6%, rgba(200, 164, 93, .13), transparent 34%),
    radial-gradient(circle at 86% 8%, rgba(95, 107, 90, .14), transparent 32%),
    linear-gradient(135deg, #040504 0%, #10120f 48%, #060807 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .24;
  pointer-events: none;
  background:
    linear-gradient(rgba(189, 166, 122, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(189, 166, 122, .055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(200, 164, 93, .035) 45%, transparent 58%);
  transform: translateX(-70%);
  animation: neonScan 7s ease-in-out infinite;
}

@keyframes neonScan {
  0%, 18% { transform: translateX(-75%); opacity: 0; }
  42% { opacity: 1; }
  100% { transform: translateX(75%); opacity: 0; }
}

.lux-header {
  border-bottom-color: rgba(189, 166, 122, .18);
  background: rgba(7, 8, 7, .9);
  box-shadow: 0 1px 0 rgba(255,255,255,.04) inset;
}

.lux-header.scrolled {
  box-shadow: 0 14px 38px rgba(0, 0, 0, .44);
}

.brand strong {
  color: #f8fbff;
  text-shadow: 0 0 16px rgba(200, 164, 93, .16);
}

.brand span,
.kicker,
.num,
.case-route {
  color: var(--gold);
  text-shadow: none;
}

.nav a {
  color: #8da1bd;
}

.nav a::after {
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  box-shadow: 0 0 10px rgba(200, 164, 93, .28);
}

.nav a:hover,
.nav a.active {
  color: #ffffff;
}

.burger {
  border-color: rgba(189, 166, 122, .22);
  background: rgba(14, 16, 14, .88);
}

.burger span {
  background: #e7f0ff;
}

.btn {
  border-color: rgba(200, 164, 93, .58);
  background: rgba(12, 13, 11, .58);
  color: #f7fbff;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}

.btn::before {
  background: linear-gradient(120deg, #8d6b2f, #c8a45d 55%, #e2c782);
}

.btn:hover {
  color: #fff;
  box-shadow: 0 0 18px rgba(200, 164, 93, .16), 0 16px 34px rgba(0, 0, 0, .36);
}

.btn-primary {
  border-color: rgba(200, 164, 93, .62);
  background: linear-gradient(120deg, #151712, #2a2f27);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .36);
}

.btn-primary::before {
  background: linear-gradient(120deg, #8d6b2f, #c8a45d, #e2c782);
}

.hero {
  min-height: 700px;
  padding: 112px 0 92px;
  background:
    radial-gradient(circle at 72% 34%, rgba(200, 164, 93, .08), transparent 28%),
    linear-gradient(rgba(189,166,122,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(189,166,122,.055) 1px, transparent 1px),
    linear-gradient(135deg, rgba(5,9,20,.1), rgba(0,0,0,.16));
  background-size: auto, 42px 42px, 42px 42px, auto;
}

.hero-video {
  background: #03050c;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .42;
  filter: saturate(.82) contrast(1.08) brightness(.54) sepia(.1);
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(4, 5, 4, .94) 0%, rgba(8, 10, 8, .84) 47%, rgba(8, 10, 8, .7) 100%),
    radial-gradient(circle at 74% 34%, rgba(200, 164, 93, .1), transparent 30%),
    linear-gradient(rgba(189,166,122,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(189,166,122,.045) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
}

.hero-video .hero-grid {
  z-index: 2;
}

.inner-video-page {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #040504;
}

.inner-bg-video {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
  filter: saturate(.9) contrast(1.04) brightness(.72) sepia(.08);
}

.inner-video-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 5, 4, .46), rgba(4, 5, 4, .7)),
    radial-gradient(circle at 76% 14%, rgba(200, 164, 93, .1), transparent 30%),
    linear-gradient(rgba(189,166,122,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(189,166,122,.035) 1px, transparent 1px);
  background-size: auto, auto, 58px 58px, 58px 58px;
}

.inner-video-page .section {
  position: relative;
  z-index: 1;
  min-height: 64vh;
}

.hero::before {
  border-color: rgba(200, 164, 93, .12);
  box-shadow: inset 0 0 62px rgba(200, 164, 93, .05);
}

h1 {
  color: #ffffff;
  text-shadow: 0 0 24px rgba(200, 164, 93, .1);
}

h2,
h3 {
  color: #f7fbff;
}

p,
.lead {
  color: var(--muted);
}

.lead {
  color: #b8c7dd;
}

.tech-line {
  border-color: rgba(189, 166, 122, .24);
  border-left-color: var(--gold);
  background: linear-gradient(90deg, rgba(200, 164, 93, .1), rgba(10, 11, 9, .72));
  color: #eee2c8;
  box-shadow: inset 0 0 18px rgba(200, 164, 93, .04);
}

.command-card {
  border-color: rgba(189, 166, 122, .26);
  background:
    linear-gradient(135deg, rgba(200, 164, 93, .1), transparent 38%),
    linear-gradient(180deg, rgba(13, 15, 13, .96), rgba(4, 5, 4, .97));
  box-shadow: 0 30px 80px rgba(0, 0, 0, .52);
}

.command-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 28px 28px;
}

.status {
  background: rgba(32, 255, 148, .12);
  color: #caffdf;
  border: 1px solid rgba(32, 255, 148, .22);
}

.status::before {
  background: var(--success);
  box-shadow: 0 0 16px rgba(32, 255, 148, .9), 0 0 0 6px rgba(32,255,148,.12);
}

.bar {
  background: rgba(255,255,255,.1);
  box-shadow: inset 0 0 14px rgba(0,0,0,.4);
}

.bar span {
  background: linear-gradient(90deg, #7db77b, #c8a45d);
  box-shadow: 0 0 10px rgba(200, 164, 93, .3);
}

.card,
.faq-item,
.popup-card {
  border-color: rgba(189, 166, 122, .18);
  background:
    linear-gradient(145deg, rgba(14, 16, 14, .95), rgba(7, 8, 7, .92));
  box-shadow: var(--soft), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
}

.card::before {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold2), transparent);
  opacity: .9;
}

.card:hover,
.faq-item:hover {
  border-color: rgba(200, 164, 93, .34);
  box-shadow: 0 22px 62px rgba(0, 0, 0, .48);
}

.metric strong {
  color: #ffffff;
  text-shadow: none;
}

.list li,
.req-row dt,
.footer p,
.footer li,
.footer a {
  color: var(--muted);
}

.list li::before {
  color: var(--success);
  text-shadow: 0 0 8px rgba(32, 255, 148, .45);
}

.pill {
  border-color: rgba(189, 166, 122, .24);
  background: rgba(200, 164, 93, .08);
  color: #ead8a7;
}

.req-row {
  border-bottom-color: rgba(189, 166, 122, .14);
}

.req-row dd {
  color: #f7fbff;
}

.cta {
  background:
    radial-gradient(circle at 84% 18%, rgba(200, 164, 93, .16), transparent 30%),
    linear-gradient(120deg, #070806, #151912 52%, #060705);
  border: 1px solid rgba(189, 166, 122, .24);
  box-shadow: 0 28px 76px rgba(0, 0, 0, .42);
}

.faq-q {
  color: #f7fbff;
}

.arrow {
  color: var(--gold);
  text-shadow: none;
}

.field label {
  color: #f7fbff;
}

.field input,
.field textarea {
  border-color: rgba(189, 166, 122, .18);
  background: rgba(5, 6, 5, .68);
  color: #f7fbff;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 164, 93, .1);
}

.footer {
  background:
    radial-gradient(circle at 82% 10%, rgba(200, 164, 93, .07), transparent 28%),
    #040504;
  border-top: 1px solid rgba(189, 166, 122, .16);
}

.footer-bottom {
  border-top-color: rgba(189, 166, 122, .14);
}

.to-top {
  background: linear-gradient(135deg, #8d6b2f, #c8a45d);
  color: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .42);
}

.toast {
  background: #050914;
  border: 1px solid rgba(189, 166, 122, .28);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .42);
}

@media (max-width: 1200px) {
  .nav {
    position: fixed;
    top: 82px;
    right: 18px;
    left: 18px;
    display: grid;
    padding: 10px;
    border: 1px solid rgba(189, 166, 122, .16);
    border-radius: var(--radius);
    background: rgba(7, 8, 7, .96);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .3s ease;
  }
  .nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav a { padding: 13px 12px; }
  .burger { display: block; }
  .hide-mobile { display: none; }
}

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

@media (max-width: 980px) {
  .nav {
    border-color: rgba(189, 166, 122, .16);
    background: rgba(7, 8, 7, .96);
  }

  .hero-bg-video {
    opacity: .34;
  }

  .hero-video::after {
    background:
      linear-gradient(180deg, rgba(4, 5, 4, .92), rgba(8, 10, 8, .84)),
      linear-gradient(rgba(189,166,122,.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(189,166,122,.04) 1px, transparent 1px);
    background-size: auto, 48px 48px, 48px 48px;
  }
}

/* Reviews */
.reviews-hero-section {
  padding: 108px 0 54px;
}

.reviews-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 44px;
  align-items: end;
}

.reviews-anchor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.reviews-hero-card {
  overflow: hidden;
  border: 1px solid rgba(189, 166, 122, .24);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(200, 164, 93, .14), transparent 38%),
    rgba(7, 8, 7, .84);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
}

.reviews-hero-card div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  border-bottom: 1px solid rgba(189, 166, 122, .14);
}

.reviews-hero-card div:last-child {
  border-bottom: 0;
}

.reviews-hero-card span {
  color: #fff;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
}

.reviews-hero-card p {
  max-width: 120px;
  margin: 0;
  color: #d9cba9;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
  text-align: right;
}

.reviews-text-section {
  padding-top: 54px;
}

.reviews-section-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.reviews-section-bar h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(28px, 3vw, 44px);
}

.reviews-section-bar p {
  max-width: 380px;
  margin: 0;
}

.reviews-page-status {
  width: max-content;
  padding: 10px 14px;
  border: 1px solid rgba(189, 166, 122, .22);
  border-radius: 999px;
  background: rgba(200, 164, 93, .08);
  color: #ead8a7;
  font-size: 13px;
  font-weight: 850;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.review-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(189, 166, 122, .18);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(14, 16, 14, .95), rgba(7, 8, 7, .92));
  box-shadow: var(--soft), inset 0 1px 0 rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold2), transparent);
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 164, 93, .34);
  box-shadow: 0 22px 62px rgba(0, 0, 0, .48);
}

.review-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.review-person {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  display: grid;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(200, 164, 93, .28);
  border-radius: 14px;
  background: linear-gradient(135deg, #2a2f27, #11130f);
  color: #fff;
  font-size: 15px;
  font-weight: 900;
}

.review-person h3 {
  margin: 0 0 4px;
  overflow-wrap: anywhere;
  font-size: 18px;
  letter-spacing: 0;
}

.review-city {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.review-rating {
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 1px solid rgba(200, 164, 93, .24);
  border-radius: 999px;
  background: rgba(200, 164, 93, .08);
  color: var(--gold2);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.review-meta span {
  min-width: 0;
  padding: 7px 10px;
  border: 1px solid rgba(189, 166, 122, .16);
  border-radius: 999px;
  background: rgba(255,255,255,.035);
  color: #d6d0c3;
  font-size: 12px;
  font-weight: 780;
}

.review-text {
  color: #c9c1ad;
  font-size: 14.5px;
  line-height: 1.72;
}

.review-text.is-collapsed {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.review-more {
  align-self: flex-start;
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: var(--gold2);
  font-size: 13px;
  font-weight: 900;
}

.review-more:hover {
  color: #fff;
}

.reviews-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.reviews-pagination button {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(189, 166, 122, .2);
  border-radius: 12px;
  background: rgba(7, 8, 7, .72);
  color: #d6d0c3;
  font-weight: 900;
  transition: all .25s ease;
}

.reviews-pagination button:hover,
.reviews-pagination button.active {
  border-color: rgba(200, 164, 93, .58);
  background: linear-gradient(135deg, #8d6b2f, #c8a45d);
  color: #fff;
}

.photo-reviews-section {
  padding-top: 54px;
}

.photo-review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.photo-review-card {
  display: block;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(189, 166, 122, .18);
  border-radius: var(--radius);
  background: rgba(7, 8, 7, .86);
  box-shadow: var(--soft);
  cursor: pointer;
}

.photo-review-card img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 14;
  object-fit: cover;
  transition: transform .35s ease, filter .35s ease;
}

.photo-review-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0, 0, 0, .74);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.photo-lightbox.show {
  opacity: 1;
  visibility: visible;
}

.photo-lightbox-dialog {
  display: grid;
  width: min(100%, 940px);
  max-height: 92vh;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(189, 166, 122, .24);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(14, 16, 14, .98), rgba(7, 8, 7, .96));
  box-shadow: var(--shadow);
}

.photo-lightbox-close {
  justify-self: end;
  padding: 8px 12px;
  border: 1px solid rgba(189, 166, 122, .22);
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  color: #f7fbff;
  font-size: 13px;
  font-weight: 900;
}

.photo-lightbox-dialog img {
  display: block;
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 14px;
  background: #050505;
}

.photo-lightbox-bottom {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) 120px;
  gap: 12px;
  align-items: center;
}

.photo-lightbox-bottom .btn {
  min-height: 42px;
  padding: 9px 12px;
  border-radius: 12px;
}

.photo-lightbox-bottom p {
  margin: 0;
  color: #d9cba9;
  font-size: 13px;
  font-weight: 850;
  text-align: center;
}

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

  .reviews-section-bar {
    display: grid;
    align-items: start;
  }

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

  .photo-review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .reviews-hero-section {
    padding: 66px 0 34px;
  }

  .reviews-grid,
  .photo-review-grid {
    grid-template-columns: 1fr;
  }

  .reviews-hero-card div {
    padding: 20px;
  }

  .reviews-hero-card span {
    font-size: 44px;
  }

  .reviews-section-bar h2 {
    font-size: 28px;
  }

  .review-card {
    padding: 20px;
  }

  .review-card-head {
    flex-direction: column;
  }

  .photo-lightbox-bottom {
    grid-template-columns: 1fr;
  }
}
