:root {
  --bg: #070707;
  --bg-soft: #111111;
  --bg-card: #151515;
  --text: #f2f2f2;
  --muted: #b8b8b8;
  --gold: #c8a24a;
  --gold-strong: #e1bc64;
  --gold-deep: #8d6a27;
  --line: rgba(200, 162, 74, 0.28);
  --overlay-heavy: rgba(0, 0, 0, 0.72);
  --overlay-medium: rgba(0, 0, 0, 0.64);
  --radius: 14px;
  --container: 1180px;
  --shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, rgba(200, 162, 74, 0.08), transparent 45%), var(--bg);
  line-height: 1.6;
}

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

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 4.75rem 0;
  overflow: clip;
}

.section-alt {
  background: linear-gradient(145deg, #0f0f0f, #090909);
}

.section-header {
  max-width: 760px;
  margin-bottom: 2rem;
}

.kicker {
  display: inline-block;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-strong);
  font-weight: 700;
  font-size: 0.76rem;
  margin-bottom: 0.35rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Montserrat", "Arial Black", sans-serif;
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5.8vw, 4.2rem);
  letter-spacing: 0.01em;
  margin-bottom: 0.8rem;
}

h2 {
  font-size: clamp(1.55rem, 3.8vw, 2.5rem);
  margin-bottom: 0.9rem;
}

h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  margin-bottom: 0.6rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--muted);
}

.gold-line {
  height: 2px;
  width: 92px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.1rem 0 1.6rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.btn-primary {
  background: linear-gradient(120deg, var(--gold), var(--gold-strong));
  color: #14120c;
  box-shadow: 0 10px 25px rgba(198, 161, 73, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(198, 161, 73, 0.34);
}

.btn-outline {
  border-color: rgba(200, 162, 74, 0.7);
  color: var(--gold-strong);
  background: rgba(200, 162, 74, 0.06);
}

.btn-outline:hover {
  background: rgba(200, 162, 74, 0.15);
  transform: translateY(-2px);
}

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

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(200, 162, 74, 0.2), rgba(200, 162, 74, 0.02));
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 0.87rem;
  font-weight: 900;
}

.brand small {
  display: block;
  color: var(--gold-strong);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.nav-links a {
  font-size: 0.93rem;
  font-weight: 600;
  color: #e5e5e5;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 180ms ease;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--gold-strong);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}

.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  padding: 0.8rem 0 1.2rem;
}

.mobile-panel.open {
  display: block;
}

.mobile-links {
  display: grid;
  gap: 0.55rem;
}

.mobile-links a {
  padding: 0.55rem 0;
  color: #ececec;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  padding: 6rem 0 5rem;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(0, 0, 0, 0.78), var(--overlay-heavy));
}

.hero-content {
  max-width: 760px;
}

.hero p {
  font-size: 1.08rem;
  max-width: 640px;
}

.trustbar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #0b0b0b;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 1rem 0;
}

.trust-item {
  border: 1px solid rgba(200, 162, 74, 0.22);
  border-radius: 999px;
  text-align: center;
  padding: 0.55rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #ece2c6;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(200, 162, 74, 0.2);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 162, 74, 0.58);
  background: linear-gradient(170deg, rgba(200, 162, 74, 0.08), rgba(255, 255, 255, 0.01));
}

.icon-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(200, 162, 74, 0.5);
  color: var(--gold-strong);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.bg-split {
  position: relative;
}

.bg-split .section-bg::after {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.65));
}

.list-check {
  margin: 0;
  padding-left: 1.05rem;
}

.list-check li {
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.list-check li::marker {
  color: var(--gold);
}

.table-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.02);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

th,
td {
  text-align: left;
  padding: 0.9rem 0.9rem;
  border-bottom: 1px solid rgba(200, 162, 74, 0.14);
}

th {
  color: var(--gold-strong);
  font-family: "Montserrat", sans-serif;
}

.form-grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

input,
textarea,
select {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(200, 162, 74, 0.35);
  background: #111;
  color: #f4f4f4;
  padding: 0.75rem 0.85rem;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(200, 162, 74, 0.32);
  border-color: var(--gold);
}

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

.steps {
  display: grid;
  gap: 0.8rem;
}

.step {
  padding: 0.9rem;
  border-radius: 12px;
  border: 1px solid rgba(200, 162, 74, 0.26);
  background: rgba(200, 162, 74, 0.06);
}

.step strong {
  color: var(--gold-strong);
}

.faq-item {
  border: 1px solid rgba(200, 162, 74, 0.24);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.8rem;
  background: rgba(255, 255, 255, 0.02);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: #f0e9d9;
}

.faq-item p {
  margin-top: 0.8rem;
}

.strip {
  border: 1px solid rgba(200, 162, 74, 0.36);
  background: linear-gradient(90deg, rgba(200, 162, 74, 0.15), rgba(0, 0, 0, 0.45));
  border-radius: var(--radius);
  padding: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer {
  border-top: 1px solid var(--line);
  background: #060606;
  padding: 2.4rem 0 1.2rem;
}

.footer-grid {
  display: grid;
  gap: 1.2rem;
}

.footer small,
.footer p {
  margin: 0;
  color: #9f9f9f;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 720px) {
  .trust-items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .form-grid .full {
    grid-column: span 2;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .nav-toggle,
  .mobile-panel {
    display: none;
  }

  .nav-cta {
    display: inline-flex;
  }

  .hero {
    padding-top: 7rem;
  }
}

@media (max-width: 979px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
}
