:root {
  --ink: #f4f1e8;
  --muted: #b9c0c2;
  --line: #2e3a3f;
  --page: #0c1114;
  --panel: #131b20;
  --panel-strong: #18242a;
  --black: #080b0d;
  --copper: #c8733d;
  --copper-dark: #8f4824;
  --sage: #6f8c77;
  --gold: #e1b84f;
  --shadow: 0 20px 58px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--page);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(46, 58, 63, 0.95);
  background: rgba(12, 17, 20, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 2px solid var(--gold);
  background: var(--black);
  color: var(--gold);
  font-weight: 900;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text span {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: var(--black);
  cursor: pointer;
  font-weight: 800;
  box-shadow: 5px 5px 0 var(--copper-dark);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: #f0c960;
  transform: translate(2px, 2px);
  box-shadow: 3px 3px 0 var(--copper-dark);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(12, 17, 20, 0.98) 0%, rgba(12, 17, 20, 0.92) 52%, rgba(12, 17, 20, 0.7) 100%),
    repeating-linear-gradient(135deg, rgba(225, 184, 79, 0.12) 0 2px, transparent 2px 26px),
    linear-gradient(135deg, #11191e 0%, #24312d 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(300px, 0.72fr);
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 74px);
  max-height: 820px;
  margin: 0 auto;
  align-items: center;
  gap: 44px;
  padding: 72px 0 58px;
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 18px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.trust-row div {
  padding: 16px;
  border-right: 1px solid var(--line);
}

.trust-row div:last-child {
  border-right: 0;
}

.trust-row strong {
  display: block;
  font-size: 1rem;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-panel {
  align-self: end;
  margin-bottom: 26px;
  border: 2px solid var(--gold);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 2px solid var(--gold);
  background: var(--black);
  color: var(--ink);
}

.panel-top strong {
  font-size: 1.08rem;
}

.status-light {
  width: 14px;
  height: 14px;
  border: 2px solid var(--ink);
  background: var(--sage);
  border-radius: 50%;
}

.service-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.service-list li:last-child {
  border-bottom: 0;
}

.bolt {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
}

section {
  padding: 76px 0;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(260px, 0.55fr);
  gap: 44px;
  margin-bottom: 34px;
  align-items: end;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.card-number {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  margin-bottom: 28px;
  padding: 0 8px;
  background: var(--gold);
  color: var(--black);
  font-weight: 900;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
}

.band {
  background: var(--black);
  color: var(--ink);
}

.band .section-heading p,
.band .card p {
  color: var(--muted);
}

.band .card {
  border-color: rgba(225, 184, 79, 0.24);
  background: rgba(255, 255, 255, 0.045);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.step {
  min-height: 190px;
  padding: 24px;
  background: var(--panel);
}

.step strong {
  display: block;
  margin-bottom: 38px;
  color: var(--gold);
  font-size: 0.92rem;
}

.step h3 {
  margin-bottom: 8px;
}

.step p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta {
  padding: 72px 0;
  background: var(--copper-dark);
  color: var(--ink);
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  align-items: center;
  gap: 28px;
}

.cta h2 {
  margin-bottom: 12px;
}

.cta p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(244, 241, 232, 0.82);
}

.cta .button {
  background: var(--ink);
  color: var(--black);
  box-shadow: 5px 5px 0 var(--black);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--black);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 32px));
  min-height: 92px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.92rem;
}

.captcha-modal[hidden] {
  display: none;
}

.captcha-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
}

.captcha-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.captcha-dialog {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: 28px;
  border: 2px solid var(--gold);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.captcha-dialog h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.captcha-dialog p {
  color: var(--muted);
}

.captcha-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: var(--black);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.captcha-form {
  display: grid;
  gap: 12px;
}

.captcha-form label {
  font-weight: 800;
}

.captcha-form input {
  min-height: 48px;
  width: 100%;
  border: 2px solid var(--line);
  background: var(--black);
  color: var(--ink);
  padding: 0 12px;
}

.captcha-form input:focus {
  border-color: var(--gold);
  outline: 0;
}

.captcha-error {
  min-height: 24px;
  margin: 0;
  color: #ffb4a4;
  font-weight: 700;
}

.captcha-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

@media (max-width: 860px) {
  .nav {
    min-height: 66px;
  }

  .nav-links {
    display: none;
  }

  .hero-inner,
  .section-heading,
  .cta-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    max-height: none;
    padding: 58px 0 42px;
  }

  .service-panel {
    align-self: auto;
    margin-bottom: 0;
  }

  .trust-row,
  .cards,
  .process {
    grid-template-columns: 1fr;
  }

  .trust-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-row div:last-child {
    border-bottom: 0;
  }

  section {
    padding: 58px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 22px 0;
  }
}

@media (max-width: 520px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  h1 {
    font-size: 3.1rem;
  }

  .hero-actions,
  .captcha-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .card,
  .step,
  .captcha-dialog {
    padding: 20px;
  }
}
