:root {
      --bg: #050505;
      --bg-soft: #0d0d0d;
      --panel: #111111;
      --panel-2: #171717;
      --gold: #d5a63a;
      --gold-light: #f2cf70;
      --gold-dark: #8b6516;
      --text: #f3f3f3;
      --muted: #b7b7b7;
      --line: rgba(213, 166, 58, .28);
      --max: 1180px;
      --radius: 20px;
      --shadow: 0 22px 70px rgba(0, 0, 0, .45);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--text);
      background:
        radial-gradient(circle at 50% 0%, rgba(213,166,58,.08), transparent 30rem),
        var(--bg);
      font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.65;
      letter-spacing: .01em;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; }
    button, input, textarea, select { font: inherit; }
    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3 { line-height: 1.12; letter-spacing: -.025em; }
    h1 { font-size: clamp(2.65rem, 6vw, 5.8rem); margin-bottom: 1.35rem; }
    h2 { font-size: clamp(2rem, 4vw, 3.65rem); margin-bottom: 1.4rem; }
    h3 { font-size: 1.28rem; }
    p { color: var(--muted); }
    strong { color: #fff; }

    .container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
    .narrow { width: min(calc(100% - 36px), 820px); margin-inline: auto; }
    .section { padding: 100px 0; position: relative; }
    .section-tight { padding: 72px 0; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: .65rem;
      color: var(--gold-light);
      text-transform: uppercase;
      letter-spacing: .16em;
      font-size: .78rem;
      font-weight: 800;
      margin-bottom: 1rem;
    }
    .eyebrow::before {
      content: "";
      width: 34px;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-light));
    }
    .gold { color: var(--gold-light); }
    .lead { font-size: clamp(1.15rem, 2.1vw, 1.42rem); max-width: 820px; }
    .small { font-size: .92rem; }
    .center { text-align: center; }
    .center .lead { margin-inline: auto; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(5,5,5,.83);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .nav {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      text-decoration: none;
      font-weight: 900;
      letter-spacing: .12em;
      color: var(--gold-light);
      white-space: nowrap;
    }
    .nav-links { display: flex; align-items: center; gap: 22px; }
    .nav-links a {
      text-decoration: none;
      color: #d0d0d0;
      font-size: .92rem;
    }
    .nav-links a:hover { color: var(--gold-light); }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 24px;
      border-radius: 999px;
      text-decoration: none;
      border: 1px solid transparent;
      font-weight: 800;
      cursor: pointer;
      transition: .22s ease;
      text-align: center;
    }
    .btn-gold {
      color: #080808;
      background: linear-gradient(135deg, #f2d172 0%, #b98119 100%);
      box-shadow: 0 12px 32px rgba(213,166,58,.2);
    }
    .btn-gold:hover { transform: translateY(-2px); filter: brightness(1.08); }
    .btn-outline { border-color: var(--line); color: var(--gold-light); background: rgba(255,255,255,.02); }
    .btn-outline:hover { background: rgba(213,166,58,.09); }
    .btn-small { min-height: 42px; padding: 0 18px; font-size: .88rem; }

    .hero {
      min-height: calc(100vh - 72px);
      display: grid;
      align-items: center;
      overflow: hidden;
      position: relative;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, #050505 0%, rgba(5,5,5,.94) 39%, rgba(5,5,5,.2) 70%, rgba(5,5,5,.65) 100%);
      z-index: 1;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 73% 37%;
      opacity: .58;
      filter: contrast(1.07);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      padding: 86px 0;
      max-width: 760px;
    }
    .hero h1 span { display: block; }
    .hero-sub {
      font-size: clamp(1.08rem, 2vw, 1.35rem);
      max-width: 680px;
      margin-bottom: 2rem;
      color: #d6d6d6;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 22px; }
    .facts { display: flex; flex-wrap: wrap; gap: 10px; }
    .fact {
      padding: 8px 13px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: #d8d8d8;
      background: rgba(0,0,0,.38);
      font-size: .88rem;
    }

    .quote {
      border-left: 3px solid var(--gold);
      padding: 18px 0 18px 24px;
      font-size: clamp(1.35rem, 2.8vw, 2.15rem);
      line-height: 1.35;
      color: #fff;
      margin: 34px 0;
    }

    .grid { display: grid; gap: 22px; }
    .grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

    .card {
      background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow);
    }
    .card:hover { border-color: var(--line); }
    .card-number {
      width: 43px;
      height: 43px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #090909;
      font-weight: 900;
      background: linear-gradient(145deg, var(--gold-light), var(--gold-dark));
      margin-bottom: 22px;
    }
    .card p:last-child { margin-bottom: 0; }

    .checklist { list-style: none; padding: 0; margin: 28px 0 0; }
    .checklist li {
      position: relative;
      padding: 10px 0 10px 34px;
      color: #d2d2d2;
      border-bottom: 1px solid rgba(255,255,255,.055);
    }
    .checklist li:last-child { border-bottom: 0; }
    .checklist li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--gold-light);
      font-weight: 900;
    }

    .split {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 56px;
      align-items: center;
    }
    .media-card {
      border-radius: 28px;
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      background: #000;
    }
    .media-card img { width: 100%; height: auto; }

    .band {
      background:
        linear-gradient(120deg, rgba(213,166,58,.12), rgba(213,166,58,.02)),
        var(--bg-soft);
      border-block: 1px solid var(--line);
    }

    .steps { counter-reset: step; }
    .step {
      display: grid;
      grid-template-columns: 64px 1fr;
      gap: 22px;
      padding: 24px 0;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .step:last-child { border-bottom: 0; }
    .step::before {
      counter-increment: step;
      content: counter(step);
      width: 54px;
      height: 54px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      border: 1px solid var(--line);
      color: var(--gold-light);
      font-size: 1.3rem;
      font-weight: 900;
    }

    .price-card {
      max-width: 780px;
      margin: 40px auto 0;
      text-align: center;
      padding: clamp(32px, 6vw, 64px);
      border: 1px solid var(--line);
      background:
        radial-gradient(circle at 50% 0%, rgba(213,166,58,.14), transparent 45%),
        var(--panel);
      border-radius: 28px;
      box-shadow: var(--shadow);
    }
    .price {
      font-size: clamp(3rem, 7vw, 5.5rem);
      line-height: 1;
      color: var(--gold-light);
      font-weight: 900;
      margin: 12px 0;
    }
    .old-price { color: #8e8e8e; text-decoration: line-through; font-size: 1.1rem; }

    .faq-list { display: grid; gap: 12px; margin-top: 36px; }
    details {
      background: var(--panel);
      border: 1px solid rgba(255,255,255,.075);
      border-radius: 16px;
      overflow: hidden;
    }
    details[open] { border-color: var(--line); }
    summary {
      list-style: none;
      cursor: pointer;
      padding: 21px 58px 21px 22px;
      font-weight: 800;
      position: relative;
      color: #f4f4f4;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: "+";
      position: absolute;
      right: 22px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--gold-light);
      font-size: 1.5rem;
      font-weight: 400;
    }
    details[open] summary::after { content: "–"; }
    .faq-content { padding: 0 22px 22px; }
    .faq-content p:last-child { margin-bottom: 0; }

    .form-card {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 26px;
      padding: clamp(24px, 5vw, 48px);
      box-shadow: var(--shadow);
    }
    .form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
    .field { display: grid; gap: 8px; }
    .field.full { grid-column: 1 / -1; }
    label { font-size: .92rem; font-weight: 750; color: #e7e7e7; }
    input, textarea, select {
      width: 100%;
      border: 1px solid rgba(255,255,255,.13);
      background: #090909;
      color: #fff;
      border-radius: 12px;
      padding: 14px 15px;
      outline: none;
    }
    input:focus, textarea:focus, select:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(213,166,58,.12); }
    textarea { min-height: 130px; resize: vertical; }
    .consent {
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: start;
      gap: 12px;
      color: var(--muted);
      font-size: .9rem;
    }
    .consent input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--gold); }
    .form-note {
      margin-top: 18px;
      padding: 14px 16px;
      border-left: 2px solid var(--gold);
      background: rgba(213,166,58,.06);
      color: #c8c8c8;
      font-size: .9rem;
    }

    .footer {
      padding: 52px 0 34px;
      border-top: 1px solid rgba(255,255,255,.07);
      background: #030303;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr .6fr;
      gap: 32px;
    }
    .footer a { color: #c7c7c7; text-decoration: none; }
    .footer a:hover { color: var(--gold-light); }
    .legal { color: #7d7d7d; font-size: .82rem; margin-top: 32px; }

    .mobile-cta {
      display: none;
      position: fixed;
      z-index: 60;
      left: 14px;
      right: 14px;
      bottom: 14px;
    }
    .mobile-cta .btn { width: 100%; box-shadow: 0 10px 35px rgba(0,0,0,.55); }

    @media (max-width: 940px) {
      .nav-links a:not(.btn) { display: none; }
      .split, .grid-3, .grid-6 { grid-template-columns: 1fr; }
      .grid-2 { grid-template-columns: 1fr; }
      .hero::before {
        background: linear-gradient(180deg, rgba(5,5,5,.5) 0%, rgba(5,5,5,.84) 45%, #050505 100%);
      }
      .hero-bg { object-position: 60% 34%; opacity: .45; }
      .hero-content { padding-top: 42vh; }
      .footer-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 700px) {
      .section { padding: 76px 0; }
      .nav .btn { display: none; }
      .form-grid { grid-template-columns: 1fr; }
      .field.full { grid-column: auto; }
      .mobile-cta { display: block; }
      body { padding-bottom: 76px; }
      .hero { min-height: 880px; }
      .hero-content { padding-top: 360px; padding-bottom: 60px; }
      .hero-actions .btn { width: 100%; }
      .facts { align-items: stretch; }
      .fact { flex: 1 1 45%; text-align: center; }
    }

/* Legal and system pages */
.legal-hero {
  padding: 86px 0 34px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0%, rgba(213,166,58,.11), transparent 30rem),
    var(--bg-soft);
}
.legal-page {
  padding: 56px 0 96px;
}
.legal-copy {
  width: min(calc(100% - 36px), 900px);
  margin-inline: auto;
}
.legal-copy h2 {
  margin-top: 2.6rem;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}
.legal-copy h3 {
  margin-top: 1.8rem;
}
.legal-copy ul, .legal-copy ol {
  color: var(--muted);
  padding-left: 1.35rem;
}
.legal-copy li {
  margin: .45rem 0;
}
.legal-copy a {
  color: var(--gold-light);
}
.legal-box {
  padding: 22px;
  margin: 24px 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(213,166,58,.055);
}
.notice-success, .notice-error {
  max-width: 760px;
  margin: 36px auto 0;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.notice-error {
  border-color: rgba(210, 85, 85, .55);
}
.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.inline-link {
  color: var(--gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.footer-links a {
  white-space: nowrap;
}
