:root {
  --navy: #0D1B2A;
  --navy-light: #13263A;
  --gold: #E6BE8A;
  --black: #050505;
  --white: #FFFFFF;
  --gray: #D1D5DB;
  --muted: #9CA3AF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
}

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

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(230, 190, 138, 0.35);
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 1px;
}

.logo-text strong {
  font-weight: 700;
}

.logo-subtext {
  font-weight: 400;
}

.logo-image {
  height: 80px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
}

.nav-item {
  position: relative;
}

.nav a,
.nav-link {
  color: var(--gray);
}

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

.dropdown {
  display: inline-flex;
  flex-direction: column;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-buffer {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: rgba(13, 27, 42, 0.98);
  border: 1px solid rgba(230, 190, 138, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  padding: 14px;
  border-radius: 14px;
  min-width: 260px;
  z-index: 10;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-link,
.dropdown-cta {
  display: block;
  color: var(--gray);
  margin-bottom: 12px;
}

.dropdown-link:hover {
  color: var(--gold);
}

.dropdown-cta {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-align: center;
}

.dropdown-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

/* HERO */
.hero {
  min-height: 85vh;
  padding: 120px 8%;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  background:
    radial-gradient(circle at top right, rgba(230, 190, 138, 0.12), transparent 35%),
    var(--navy);
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 32px;
  max-width: 760px;
}

.hero-headline h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 0;
}

.hero-logo {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 2.75rem;
}

.hero-logo img {
  max-width: 100%;
  height: auto;
  max-height: 500px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-text {
  color: var(--gray);
  font-size: 1.2rem;
  max-width: 640px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  outline: 1px solid var(--gold);
}

.btn-secondary {
  border: 1px solid var(--gold);
  color: var(--gold);
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--navy);
}

/* RESULTS */
.results {
  scroll-margin-top: 130px;
  background: var(--black);
  text-align: center;
  padding: 80px 8%;
  border-top: 1px solid rgba(230, 190, 138, 0.18);
  border-bottom: 1px solid rgba(230, 190, 138, 0.18);
}

.results h2 {
  color: var(--gold);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1;
}

.results-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 12px;
}

.results-text {
  color: var(--muted);
  margin-top: 10px;
}

/* GENERAL SECTIONS */
.section {
  scroll-margin-top: 130px;
  padding: 90px 8%;
  max-width: 1200px;
  margin: auto;
}

.section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 22px;
}

.section p {
  color: var(--gray);
  max-width: 850px;
  margin-bottom: 16px;
}

.dark-section {
  max-width: none;
  background: var(--black);
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
  max-width: 1200px;
}

.card {
  background: var(--navy-light);
  border: 1px solid rgba(230, 190, 138, 0.22);
  border-radius: 18px;
  padding: 26px;
  color: var(--white);
  font-weight: 700;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: var(--gold);
}

.card p {
  color: var(--gray);
  font-weight: 400;
  margin-bottom: 0;
}

/* STEPS */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.steps-note {
  margin-top: 56px;
  color: rgba(156, 163, 175, 0.95);
  font-size: 0.98rem;
  text-align: center;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.step {
  background: var(--navy-light);
  border-radius: 18px;
  padding: 26px;
  border: 1px solid rgba(230, 190, 138, 0.18);
}

.step span {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.9rem;
}

.step h3 {
  margin: 12px 0;
}

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

/* CONTACT */
.contact-section {
  scroll-margin-top: 130px;
  background: var(--black);
  padding: 90px 8%;
}

.contact-box {
  max-width: 760px;
  margin: auto;
  background: var(--navy);
  border: 1px solid rgba(230, 190, 138, 0.4);
  border-radius: 24px;
  padding: 42px;
}

.contact-box h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-box p {
  color: var(--gray);
  margin-bottom: 24px;
}

form {
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  background: var(--black);
  color: var(--white);
  border: 1px solid rgba(230, 190, 138, 0.3);
  border-radius: 12px;
  padding: 14px;
  font-size: 1rem;
}

input::placeholder,
textarea::placeholder {
  color: var(--muted);
}

.file-label {
  border: 1px dashed rgba(230, 190, 138, 0.55);
  padding: 14px;
  border-radius: 12px;
  color: var(--gold);
  cursor: pointer;
}

.file-label input {
  display: block;
  margin-top: 10px;
  border: none;
  padding: 0;
}

button {
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 999px;
  padding: 15px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
}

button:hover {
  background: transparent;
  color: var(--gold);
  outline: 1px solid var(--gold);
}

.privacy-note {
  font-size: 0.85rem;
  color: var(--muted) !important;
  margin-top: 18px;
  margin-bottom: 0;
}

.privacy-note:last-of-type {
  margin-bottom: 0;
}

.legal-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 90px 8%;
  color: var(--white);
}

.legal-page h1 {
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1.05;
  margin-bottom: 22px;
  color: var(--gold);
}

.legal-page h2 {
  color: var(--gold);
  margin-top: 42px;
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
}

.legal-page p {
  color: var(--gray);
  margin-bottom: 18px;
  max-width: 860px;
}

/* FOOTER */
.footer {
  background: var(--navy);
  text-align: center;
  padding: 34px 8%;
  color: var(--muted);
  border-top: 1px solid rgba(230, 190, 138, 0.2);
}

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

.footer-links {
  margin-top: 16px;
  color: rgba(156, 163, 175, 0.75);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-links a {
  color: rgba(156, 163, 175, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: rgba(229, 231, 235, 0.85);
}

.footer-links span {
  margin: 0 8px;
  color: rgba(156, 163, 175, 0.65);
}

/* MOBILE */
@media (max-width: 850px) {
  .header {
    flex-direction: column;
    gap: 14px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .hero {
    padding: 90px 8%;
    min-height: auto;
  }

  .card-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .contact-box {
    padding: 28px;
  }
}