:root {
  --bg: #050505;
  --bg-2: #0b0b0b;
  --card: #121212;
  --card-2: #1a1a1a;
  --accent: #c6ff00;
  --accent-dim: #8fbf00;
  --ink: #050505;
  --text: #f5f5f5;
  --muted: #9a9a9a;
  --silver: #c8c8c8;
  --line: #2a2a2a;
  --err: #ff6b6b;
  --radius: 12px;
  --header: 76px;
  --max: 1160px;
}

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

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

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

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

h1, h2, h3, .display {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin: 0;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--accent);
  color: var(--ink);
  padding: 8px 12px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  display: flex;
  align-items: center;
  background: rgba(5, 5, 5, .86);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--accent);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.logo img { height: 52px; width: auto; }

.nav {
  display: flex;
  gap: 18px;
  margin-left: 8px;
  font-weight: 600;
  font-size: 14px;
}

.nav a:hover,
.nav a:focus-visible { color: var(--accent); }

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone {
  color: var(--silver);
  font-weight: 700;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 18px;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.btn-primary {
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 0 24px rgba(198, 255, 0, .18);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  width: 44px;
  height: 44px;
  border-radius: 10px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 72px;
  background:
    radial-gradient(circle at 80% 10%, rgba(198, 255, 0, .16), transparent 32%),
    radial-gradient(circle at 10% 90%, rgba(198, 255, 0, .06), transparent 28%),
    linear-gradient(#0b0b0b, #050505);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr .85fr; }
}

.eyebrow {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 12px;
}

.hero h1 {
  font-size: clamp(32px, 6vw, 58px);
  line-height: 1.05;
  margin-bottom: 16px;
}

.lead {
  color: var(--silver);
  font-size: 18px;
  max-width: 52ch;
  margin: 0 0 24px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }

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

.benefit {
  display: flex;
  gap: 8px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 700;
}

.benefit span { color: var(--accent); }

.hero-visual {
  display: grid;
  place-items: center;
}

.hero-visual img {
  width: min(420px, 100%);
  filter: drop-shadow(0 0 40px rgba(198, 255, 0, .18));
}

/* Sections */
section { padding: 72px 0; }

.section-dark { background: var(--bg-2); }

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

.section-head p { margin: 0; color: var(--muted); max-width: 48ch; }

h2 { font-size: clamp(26px, 4vw, 36px); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  min-height: 148px;
  transition: border-color .2s ease, transform .2s ease;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

.card .icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #1a2a00;
  color: var(--accent);
  margin-bottom: 12px;
  font-size: 18px;
}

.card h3 { font-size: 16px; margin-bottom: 8px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }

/* Why */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.why {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.why b { display: block; margin-bottom: 4px; }
.why p { margin: 0; color: var(--muted); font-size: 14px; }

/* Prices */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.price {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
}

.price strong { color: var(--accent); white-space: nowrap; }

/* About */
.about-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 860px) {
  .about-grid { grid-template-columns: 1.3fr .7fr; }
}

.about-grid p { color: var(--silver); font-size: 17px; }

.facts {
  display: grid;
  gap: 10px;
}

.fact {
  background: var(--card);
  border-left: 3px solid var(--accent);
  border-radius: 0 10px 10px 0;
  padding: 12px 14px;
}

.fact small { color: var(--muted); display: block; }

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 8px; }
.review p { color: var(--silver); }
.review footer { color: var(--muted); font-size: 13px; margin-top: 12px; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 800px) {
  .gallery { grid-template-columns: repeat(3, 1fr); }
}

.shot {
  min-height: 160px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(198, 255, 0, .12), transparent 42%),
    var(--card-2);
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 16px;
}

.shot span { font-weight: 800; }

/* Contacts */
.contact-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: .9fr 1.1fr; }
}

.map {
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  width: 100%;
  filter: grayscale(.2) contrast(1.05);
}

.messengers { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

/* Footer */
.footer {
  border-top: 2px solid var(--accent);
  padding: 28px 0 40px;
  background: #000;
}

.footer-grid {
  display: grid;
  gap: 16px;
}

@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

.footer img { height: 56px; margin-bottom: 10px; }
.footer p, .footer a { color: var(--muted); }
.copy { margin-top: 24px; color: #666; font-size: 13px; }

/* Modal */
.modal {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  color: var(--text);
  width: min(520px, 92vw);
  max-height: 90vh;
  padding: 0;
  overflow: hidden;
}
.modal::backdrop { background: rgba(0, 0, 0, .72); }
.modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
}
.modal form {
  padding: 18px;
  display: grid;
  gap: 10px;
  max-height: calc(90vh - 64px);
  overflow-y: auto;
  overscroll-behavior: contain;
}
label, .field-label { font-size: 13px; color: var(--muted); display: block; }
.field-label { margin-bottom: 6px; }
.hint { margin: 0 0 8px; color: var(--muted); font-size: 13px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 999px;
  min-height: 40px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.chip.active {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.chip:disabled { opacity: .45; cursor: default; }
input, select, textarea {
  width: 100%;
  margin-top: 4px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
  font: inherit;
}
.modal .error { color: var(--err); min-height: 1.2em; font-size: 14px; }
.icon-btn {
  background: transparent;
  border: 0;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  background: var(--accent);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  z-index: 30;
}
.to-top.show { opacity: 1; pointer-events: auto; }

.reveal {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(16px);
    animation: fade .6s ease forwards;
  }
  @keyframes fade { to { opacity: 1; transform: none; } }
}

@media (max-width: 860px) {
  .menu-toggle { display: grid; place-items: center; }
  .nav {
    display: none;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: #0b0b0b;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 16px;
    gap: 14px;
  }
  .nav.open { display: flex; }
  .phone { display: none; }
  .hero { padding-top: 28px; }
}

@media (max-width: 520px) {
  .benefits { grid-template-columns: 1fr; }
  .header-actions .btn { padding-inline: 12px; }
}

.pd-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
  margin: 4px 0 8px;
}
.pd-consent input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 1px;
  flex: 0 0 auto;
  accent-color: var(--accent);
}
.pd-consent label { cursor: pointer; }
.pd-consent a { color: var(--accent); font-weight: 700; }
.pd-dialog {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  color: var(--text);
  width: min(560px, 94vw);
  max-height: 86vh;
  padding: 0;
  overflow: hidden;
}
.pd-dialog::backdrop { background: rgba(0, 0, 0, .72); }
.pd-dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.pd-dialog-head h3 { margin: 0; font-size: 16px; }
.pd-dialog-close {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.pd-dialog-body {
  padding: 14px 16px 18px;
  overflow-y: auto;
  max-height: calc(86vh - 58px);
  font-size: 14px;
  line-height: 1.45;
}
.pd-dialog-body p { margin: 0 0 12px; }
