:root {
  --navy: #0B1D33;
  --navy-light: #122a47;
  --charcoal: #1a1a2e;
  --slate: #2d3a4a;
  --gold: #D4A843;
  --gold-light: #E8C96A;
  --gold-dim: rgba(212, 168, 67, 0.15);
  --white: #F5F2ED;
  --gray: #9BA3AF;
  --gray-light: #C8CDD3;
  --bg: #0B1D33;
  --fg: #F5F2ED;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 6% 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--gold-dim);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  width: fit-content;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 800px;
  margin-bottom: 24px;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--gray-light);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 6%;
  background: var(--charcoal);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.2), transparent);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 600px;
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--navy-light);
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: 12px;
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s;
}

.service-card:hover {
  border-color: rgba(212, 168, 67, 0.35);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.service-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ===== HOW IT WORKS ===== */
.process {
  padding: 100px 6%;
  background: var(--navy);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 12px;
}

.step {
  position: relative;
  padding: 32px 0;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(212, 168, 67, 0.12);
  line-height: 1;
  margin-bottom: 12px;
}

.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== MARKET ===== */
.market {
  padding: 100px 6%;
  background: var(--charcoal);
  position: relative;
}

.market::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.2), transparent);
}

.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.market-numbers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.market-stat {
  background: var(--navy);
  border: 1px solid rgba(212, 168, 67, 0.1);
  border-radius: 12px;
  padding: 28px 24px;
}

.market-stat .big {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.market-stat .desc {
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 8px;
  line-height: 1.5;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 6%;
  background: var(--navy);
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 20px;
  position: relative;
}

.closing p {
  font-size: 1.05rem;
  color: var(--gray-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* ===== FOOTER ===== */
footer {
  padding: 40px 6%;
  border-top: 1px solid rgba(212, 168, 67, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

.footer-meta {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== SITE NAV ===== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(11, 29, 51, 0.92);
  border-bottom: 1px solid rgba(212, 168, 67, 0.08);
  backdrop-filter: blur(10px);
}
.site-nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.site-nav-cta {
  display: inline-block;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
}
.site-nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

/* ===== HERO CTA ===== */
.hero-cta {
  display: inline-block;
  padding: 16px 32px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  margin-bottom: 48px;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
  width: fit-content;
}
.hero-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ===== CLOSING CTA ===== */
.closing-cta {
  display: inline-block;
  margin-top: 36px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  position: relative;
  transition: background 0.2s, transform 0.15s;
}
.closing-cta:hover { background: var(--gold-light); transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .market-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-stats {
    gap: 32px;
  }

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

  .hero {
    padding: 100px 5% 60px;
  }

  .market-numbers {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .market-numbers {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
    text-align: center;
  }
}