:root {
  --void: #070508;
  --abyss: #0f0a0c;
  --ash: #1a1216;
  --line: rgba(255, 120, 60, 0.22);
  --text: #f2e8e4;
  --text-soft: #b8a8a0;
  --ember: #e6391f;
  --ember-deep: #9e1f12;
  --flame: #ff6b35;
  --pupil-gold: #ffd166;
  --glow: rgba(230, 57, 31, 0.45);
  --card: rgba(22, 14, 18, 0.85);
  --ok: #5cb88a;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
  --radius: 18px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--void);
  line-height: 1.55;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 45% at 50% -5%, rgba(230, 57, 31, 0.18), transparent 55%),
    radial-gradient(ellipse 60% 35% at 85% 20%, rgba(255, 107, 53, 0.08), transparent 50%),
    radial-gradient(ellipse 50% 30% at 10% 80%, rgba(196, 30, 15, 0.06), transparent 45%);
}

body > * {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--ember);
  color: #fff;
  padding: 8px 12px;
  z-index: 20;
}

.skip:focus {
  top: 12px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(7, 5, 8, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 0 12px var(--glow));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: "Cinzel", "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--pupil-gold);
}

.brand-text span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.nav {
  display: flex;
  gap: 22px;
  font-size: 15px;
}

.nav a {
  text-decoration: none;
  color: var(--text-soft);
}

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.phone {
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  color: var(--pupil-gold);
}

.menu-btn {
  display: none;
  border: 1px solid var(--line);
  background: var(--ash);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 10px;
}

.hero {
  padding: 48px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 320px;
}

.eye-emblem {
  width: min(100%, 340px);
  height: auto;
  display: block;
  aspect-ratio: 1;
  filter: drop-shadow(0 0 40px var(--glow)) drop-shadow(0 0 80px rgba(255, 107, 53, 0.2));
  animation: eye-pulse 4s ease-in-out infinite;
}

@keyframes eye-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 32px var(--glow)) drop-shadow(0 0 60px rgba(255, 107, 53, 0.15));
  }
  50% {
    filter: drop-shadow(0 0 48px rgba(255, 107, 53, 0.55)) drop-shadow(0 0 90px rgba(230, 57, 31, 0.25));
  }
}

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

h1,
h2,
h3 {
  font-family: "Cinzel", "Times New Roman", serif;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-weight: 600;
}

h1 {
  font-size: clamp(30px, 4.5vw, 52px);
  margin: 0 0 16px;
  text-shadow: 0 0 40px rgba(230, 57, 31, 0.25);
}

.lead {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 48ch;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 13px 20px;
  font: inherit;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(135deg, var(--flame), var(--ember));
  color: #fff;
  box-shadow: 0 8px 28px rgba(230, 57, 31, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff7f4d, var(--ember-deep));
}

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

.btn-ghost:hover {
  border-color: var(--flame);
  color: var(--pupil-gold);
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.facts li {
  min-width: 140px;
  color: var(--text-soft);
}

.facts b {
  display: block;
  font-size: 20px;
  color: var(--pupil-gold);
  font-family: "Cinzel", serif;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin: 0 0 16px;
  font-size: 26px;
  color: var(--pupil-gold);
}

.checklist {
  margin: 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  padding: 10px 0 10px 28px;
  border-top: 1px solid var(--line);
  position: relative;
  color: var(--text-soft);
}

.checklist li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 10px var(--glow);
  position: absolute;
  left: 0;
  top: 17px;
}

.section {
  padding: 64px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head-split {
  margin-top: 40px;
  margin-bottom: 20px;
}

.muted {
  color: var(--text-soft);
}

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

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

.card h3 {
  margin: 8px 0 10px;
  font-size: 22px;
  color: var(--pupil-gold);
}

.card p {
  color: var(--text-soft);
  margin: 0;
}

.icon {
  width: 48px;
  height: 48px;
}

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

.card .checklist {
  margin-top: 4px;
}

.card .checklist li.muted-line {
  color: var(--text-soft);
  opacity: 0.92;
}

.card .checklist li.muted-line::before {
  background: #4a322c;
  box-shadow: none;
  opacity: 0.55;
}

.card-oko {
  border-color: rgba(255, 107, 53, 0.32);
}

.gates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.gate {
  border-radius: 24px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
}

.gate-art {
  height: 180px;
  display: grid;
  place-items: center;
}

.gate-art.slide {
  background: linear-gradient(160deg, #1a1216, #0a0608);
}

.gate-art.swing {
  background: linear-gradient(160deg, #2a1010, #0f0808);
}

.gate-body {
  padding: 22px;
}

.gate-body p,
.gate-body ul {
  color: var(--text-soft);
}

.gate-body h3 {
  color: var(--pupil-gold);
}

.gate-body ul {
  margin: 0;
  padding-left: 18px;
}

.cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  background: var(--ash);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--text-soft);
}

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

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

.step span {
  display: block;
  color: var(--flame);
  font-weight: 800;
  margin-bottom: 8px;
  font-family: "Cinzel", serif;
}

.step p {
  color: var(--text-soft);
  margin: 0;
}

.faq details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 18px;
  margin-bottom: 10px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

.faq p {
  color: var(--text-soft);
  margin: 10px 0 0;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-card h2 {
  color: var(--pupil-gold);
}

.contact-card a {
  color: var(--flame);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.max-qr {
  margin: 18px 0 0;
  padding: 0;
}

.max-qr img {
  display: block;
  width: min(220px, 100%);
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.max-qr figcaption {
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-soft);
}

form {
  background: var(--ash);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}

form h2 {
  color: var(--pupil-gold);
}

label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin: 12px 0 6px;
  color: var(--text-soft);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: var(--void);
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(255, 107, 53, 0.45);
  border-color: var(--flame);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: var(--text-soft);
}

.success {
  display: none;
  color: var(--ok);
  font-weight: 700;
}

footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 40px;
  color: var(--text-soft);
  font-size: 14px;
  background: var(--abyss);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-grid strong {
  font-family: "Cinzel", serif;
  color: var(--pupil-gold);
  letter-spacing: 0.08em;
}

.footer-grid a {
  color: var(--flame);
  text-decoration: none;
}

.fixed-call {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 11;
  box-shadow: 0 12px 40px rgba(230, 57, 31, 0.4);
}

.legal-body {
  max-width: 720px;
}

.legal-body h2 {
  margin-top: 28px;
  font-size: 22px;
  color: var(--pupil-gold);
}

.legal-body p,
.legal-body li {
  color: var(--text-soft);
}

.legal-body a {
  color: var(--flame);
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 0 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
}

.consent input {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
}

.consent a {
  color: var(--flame);
}

@media (max-width: 900px) {
  .nav,
  .header-cta .btn {
    display: none;
  }

  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    background: var(--abyss);
    padding: 16px 20px 20px;
    border-bottom: 1px solid var(--line);
  }

  .menu-btn {
    display: inline-flex;
  }

  .hero-grid,
  .cards,
  .gates,
  .steps,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 220px;
  }

  .eye-emblem {
    width: 220px;
  }

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