@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #071d3d;
  --navy-2: #0d2a52;
  --navy-3: #123862;
  --gold: #c7962d;
  --gold-light: #f0cc70;
  --cream: #faf8f1;
  --ink: #101d2f;
  --muted: #637083;
  --white: #ffffff;
  --border: rgba(7, 29, 61, .10);
  --shadow: 0 20px 50px rgba(7, 29, 61, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 2rem)); margin: 0 auto; }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(7,29,61,.08);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  display: block;
  width: 178px;
  height: 62px;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: multiply;
}
.nav-links { display: flex; gap: 2rem; font-size: .9rem; font-weight: 700; }
.nav-links a { color: #334155; transition: color .2s; }
.nav-links a:hover { color: var(--gold); }
.menu-toggle { display: none; border: 0; background: none; color: var(--navy); font-size: 1.5rem; }

/* Hero */
.hero {
  min-height: 820px;
  padding: 8.5rem 0 6rem;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 20%, rgba(199,150,45,.16), transparent 28%),
    linear-gradient(135deg, #05172f 0%, var(--navy) 50%, #020c1c 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero-orbit {
  position: absolute;
  border: 1px solid rgba(199,150,45,.18);
  border-radius: 50%;
  pointer-events: none;
}
.hero-orbit-one { width: 650px; height: 650px; top: -250px; right: -180px; }
.hero-orbit-two { width: 420px; height: 420px; bottom: -250px; left: -160px; }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: center;
  margin: 0 auto;
}
.hero-logo-wrap {
  width: 128px;
  height: 128px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 18px 45px rgba(0,0,0,.3);
}
.hero-logo-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold-light);
  letter-spacing: .24em;
  font-size: .72rem;
  font-weight: 800;
}
h1 {
  margin: 0 auto;
  max-width: 900px;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
h1 span { color: var(--gold-light); }
.hero-copy {
  max-width: 720px;
  margin: 1.7rem auto 0;
  color: rgba(255,255,255,.72);
  font-size: 1.05rem;
}
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 1.25rem;
  border-radius: 10px;
  font-weight: 800;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  color: var(--navy);
  background: linear-gradient(135deg, #f0cc70, var(--gold));
  box-shadow: 0 12px 28px rgba(199,150,45,.25);
}
.btn-outline {
  color: #fff;
  border: 1px solid rgba(240,204,112,.38);
  background: rgba(255,255,255,.04);
}
.btn-outline:hover { background: rgba(240,204,112,.08); }
.trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .9rem;
  margin-top: 3rem;
  color: rgba(255,255,255,.58);
  font-size: .84rem;
}
.stars { color: var(--gold-light); letter-spacing: .15rem; }

/* Features */
.section { padding: 7rem 0; }
.features { background: var(--cream); }
.section-heading { max-width: 700px; margin-bottom: 3rem; }
.section-kicker {
  margin: 0 0 .55rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .72rem;
  font-weight: 900;
}
h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -.04em;
}
.section-heading > p:last-child, .contact-card p {
  color: var(--muted);
  margin: 1rem 0 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.feature-card {
  min-height: 235px;
  padding: 1.7rem;
  background: #fff;
  border: 1px solid rgba(7,29,61,.08);
  border-radius: 16px;
  box-shadow: 0 5px 25px rgba(7,29,61,.035);
  border-top: 3px solid transparent;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-top-color: var(--gold);
}
.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
  color: var(--gold);
  background: rgba(199,150,45,.11);
  border: 1px solid rgba(199,150,45,.18);
  border-radius: 12px;
  font-size: 1.4rem;
  font-weight: 800;
}
.feature-card h3 { margin: 0; color: var(--navy); font-size: 1.1rem; }
.feature-card p { margin: .55rem 0 0; color: var(--muted); font-size: .92rem; }

/* Contact */
.contact { background: #fff; }
.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3rem;
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(circle at 85% 20%, rgba(199,150,45,.18), transparent 30%),
    linear-gradient(135deg, var(--navy), #0d2a52);
  box-shadow: var(--shadow);
}
.contact-card h2 { color: #fff; }
.contact-card .section-kicker { color: var(--gold-light); }
.contact-card p { color: rgba(255,255,255,.68); max-width: 650px; }
.contact-card .btn { flex-shrink: 0; }

/* Footer */
footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  color: #64748b;
  font-size: .8rem;
}
.footer-inner { display: flex; justify-content: space-between; gap: 1rem; }

/* Mobile */
@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 76px; left: 1rem; right: 1rem;
    padding: 1rem;
    flex-direction: column;
    gap: .8rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .brand img { width: 145px; height: 58px; }
  .hero { min-height: 740px; padding-top: 8.5rem; }
  .hero-logo-wrap { width: 105px; height: 105px; }
  .trust { align-items: center; flex-direction: column; gap: .25rem; text-align: center; }
  .feature-grid { grid-template-columns: 1fr; }
  .contact-card { align-items: flex-start; flex-direction: column; padding: 2rem; }
  .footer-inner { flex-direction: column; }
}
