:root {
  --navy: #0b1d33;
  --navy-light: #142c4d;
  --gold: #c8a24a;
  --gold-light: #e6cd8a;
  --cream: #f7f4ee;
  --text: #1c1c1c;
  --muted: #5a6472;
  --radius: 10px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* Header */
header.site-header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1120px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  color: #fff;
}
.brand .brand-mark {
  color: var(--gold);
}
nav.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
nav.main-nav a {
  color: #e7ecf2;
  text-decoration: none;
  font-size: 0.95rem;
}
nav.main-nav a:hover { color: var(--gold-light); }
.header-cta {
  background: var(--gold);
  color: var(--navy);
  padding: 9px 18px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
  white-space: nowrap;
}
.header-cta:hover { background: var(--gold-light); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 70px 0 60px;
}
.hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }
.hero h1 { font-size: 2.3rem; line-height: 1.25; margin: 0 0 16px; }
.hero p.lead { font-size: 1.1rem; color: #d7dfe9; margin-bottom: 26px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  color: #f0f3f7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
.hero img.hero-img { border-radius: var(--radius); box-shadow: 0 20px 50px rgba(0,0,0,0.35); }

/* Sections */
section { padding: 60px 0; }
section.alt { background: #fff; }
h2.section-title { font-size: 1.8rem; margin: 0 0 10px; color: var(--navy); }
p.section-sub { color: var(--muted); margin-bottom: 36px; max-width: 700px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.card {
  background: #fff;
  border: 1px solid #e7e2d6;
  border-radius: var(--radius);
  padding: 28px 24px;
}
.card h3 { margin-top: 0; color: var(--navy); font-size: 1.1rem; }
.card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0; }
.card .icon { font-size: 1.8rem; margin-bottom: 12px; display: block; }

/* Route pages */
.route-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 50px 0;
}
.route-hero h1 { margin: 0 0 12px; font-size: 2rem; }
.route-path {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 18px;
}
.route-path .sep { color: var(--gold); }

.stat-row { display: flex; gap: 30px; flex-wrap: wrap; margin: 30px 0; }
.stat { }
.stat .num { font-size: 1.8rem; font-weight: 700; color: var(--navy); }
.stat .label { color: var(--muted); font-size: 0.85rem; }

table.pricing { width: 100%; border-collapse: collapse; background: #fff; }
table.pricing th, table.pricing td {
  border: 1px solid #e7e2d6;
  padding: 14px 16px;
  text-align: left;
  font-size: 0.95rem;
}
table.pricing th { background: var(--navy); color: #fff; }
table.pricing tr:nth-child(even) td { background: #faf8f3; }

.faq-item { border-bottom: 1px solid #e7e2d6; padding: 20px 0; }
.faq-item h3 { margin: 0 0 8px; color: var(--navy); font-size: 1.05rem; }
.faq-item p { margin: 0; color: var(--muted); }

.trust-strip {
  background: var(--navy);
  color: #fff;
  padding: 26px 0;
}
.trust-strip .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 20px; align-items: center; }
.trust-strip .item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; }
.trust-strip .item .g { color: var(--gold); font-weight: 700; }

.disclosure {
  background: #fbf7ec;
  border: 1px solid #ecdfb8;
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 0.9rem;
  color: #5a4a20;
  margin-top: 40px;
}
.disclosure a { color: var(--navy); font-weight: 600; }

/* Footer */
footer.site-footer {
  background: #081525;
  color: #b9c3cf;
  padding: 46px 0 24px;
  font-size: 0.9rem;
}
footer.site-footer h4 { color: #fff; margin: 0 0 14px; font-size: 1rem; }
footer .grid-2 { grid-template-columns: 1fr 1fr 1fr; }
footer.site-footer .container { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
footer.site-footer a { color: #b9c3cf; text-decoration: none; display: block; margin-bottom: 8px; }
footer.site-footer a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 34px;
  padding-top: 18px;
  font-size: 0.8rem;
  color: #7c8794;
}

@media (max-width: 880px) {
  .hero .container { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  footer.site-footer .container { grid-template-columns: 1fr 1fr; }
  nav.main-nav { display: none; }
}
