:root {
  --bg: #070707;
  --bg-soft: #111111;
  --text: #f6f3ea;
  --muted: #b9b6ad;
  --gold: #c8aa51;
  --gold-strong: #e0c566;
  --line: rgba(255, 255, 255, 0.14);
  --steel: #7b858b;
  --danger: #ff756d;
  --success: #9be28f;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.86), rgba(7, 7, 7, 0.34));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: #070707;
  background: var(--gold);
  transform: skewX(-12deg);
}

.brand-text,
.nav,
.header-cta {
  font-size: 14px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 32px);
  color: var(--muted);
}

.nav a,
.header-cta,
.footer a {
  text-decoration: none;
}

.nav a:hover,
.footer a:hover {
  color: var(--gold-strong);
}

.header-cta {
  padding: 10px 14px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-strong);
  text-transform: uppercase;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(18px, 5vw, 86px) 64px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.74) 42%, rgba(7, 7, 7, 0.28) 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 9px);
}

.section-dark {
  background:
    radial-gradient(circle at 18% 24%, rgba(200, 170, 81, 0.12), transparent 26%),
    linear-gradient(135deg, #080808, #101010 56%, #070707);
}

.slash {
  position: absolute;
  z-index: 2;
  top: -12vh;
  width: 10px;
  height: 122vh;
  background: linear-gradient(180deg, transparent, var(--gold-strong), transparent);
  transform: rotate(17deg);
  opacity: 0.82;
}

.slash-one {
  left: 57%;
}

.slash-two {
  left: 84%;
  opacity: 0.38;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-strong);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
  font-style: italic;
}

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

h1,
h2 {
  text-transform: uppercase;
  letter-spacing: 0;
  font-style: italic;
  line-height: 0.95;
}

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(48px, 8.2vw, 112px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5.5vw, 74px);
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.1;
}

.hero-copy {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 15px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
}

.button-primary {
  color: #080808;
  background: var(--gold-strong);
  box-shadow: 0 12px 32px rgba(200, 170, 81, 0.22);
}

.button-primary:hover {
  background: #f0d46d;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover {
  border-color: var(--gold);
}

.hero-facts span {
  padding: 10px 12px;
  border: 1px solid rgba(200, 170, 81, 0.42);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.5);
  color: var(--text);
  font-weight: 800;
}

.section {
  position: relative;
  padding: clamp(72px, 9vw, 120px) clamp(18px, 5vw, 86px);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.benefit-grid,
.case-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.info-card,
.case-card,
.price-card,
.lead-form,
.timeline article {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
}

.info-card,
.case-card,
.price-card {
  padding: 26px;
}

.info-card p,
.case-card p,
.price-card p,
.timeline p,
.form-copy p,
.price-note,
.form-note {
  color: var(--muted);
}

.card-number {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-size: 56px;
  font-weight: 900;
  font-style: italic;
  line-height: 0.9;
}

.process {
  background: #f3f0e8;
  color: #111111;
}

.process .eyebrow {
  color: #8a702e;
}

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

.timeline article {
  min-height: 220px;
  padding: 24px;
  background: #ffffff;
  color: #111111;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 36px;
  background: #111111;
  color: var(--gold-strong);
  font-weight: 900;
}

.case-preview {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 220px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.16) 0 48%, rgba(200, 170, 81, 0.42) 48% 52%, rgba(255, 255, 255, 0.08) 52% 100%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 10px),
    #151515;
}

.case-preview span {
  display: grid;
  place-items: end start;
  padding: 18px;
  color: var(--text);
  font-weight: 900;
  text-transform: uppercase;
}

.prices {
  background: #0d0f10;
}

.price-card {
  min-height: 260px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.price-card-featured {
  border-color: rgba(224, 197, 102, 0.78);
  background: linear-gradient(145deg, rgba(224, 197, 102, 0.22), rgba(255, 255, 255, 0.035));
}

.price-label {
  color: var(--gold-strong);
  font-weight: 900;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: clamp(36px, 4vw, 56px);
  font-style: italic;
  line-height: 0.95;
}

.price-note {
  max-width: 760px;
  margin: 22px 0 0;
}

.form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.form-copy {
  max-width: 620px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(8, 8, 8, 0.72);
}

.lead-form label,
.lead-form span {
  display: block;
}

.lead-form span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  outline: none;
}

.lead-form input:focus {
  border-color: var(--gold-strong);
  box-shadow: 0 0 0 3px rgba(224, 197, 102, 0.16);
}

.lead-form input::placeholder {
  color: rgba(246, 243, 234, 0.42);
}

.form-wide {
  grid-column: 1 / -1;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-note,
.form-status {
  margin: 0;
  font-size: 14px;
}

.form-status {
  min-height: 22px;
  font-weight: 800;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 5vw, 86px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #070707;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 116px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 7, 7, 0.9) 0%, rgba(7, 7, 7, 0.68) 50%, rgba(7, 7, 7, 0.94) 100%),
      repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 9px);
  }

  .benefit-grid,
  .case-grid,
  .price-grid,
  .timeline,
  .form-section {
    grid-template-columns: 1fr;
  }

  .timeline article {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .brand-text {
    display: none;
  }

  .header-cta {
    padding: 9px 10px;
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .button {
    width: 100%;
  }

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

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}
