/* ─── ClaimIQ Global Stylesheet ─── */
:root {
  --navy: #0d1b2e;
  --navy-mid: #152640;
  --navy-light: #1e3358;
  --gold: #c8941a;
  --gold-light: #e0aa3a;
  --gold-pale: rgba(200,148,26,0.12);
  --white: #ffffff;
  --offwhite: #f4f1eb;
  --text-muted: rgba(255,255,255,0.55);
  --text-mid: rgba(255,255,255,0.75);
  --border: rgba(255,255,255,0.08);
  --border-gold: rgba(200,148,26,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy); color: var(--white);
  overflow-x: hidden; font-weight: 400;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(13,27,46,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700; letter-spacing: -0.3px;
  color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-mid); text-decoration: none;
  font-size: 14px; font-weight: 400; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  background: var(--gold) !important; color: var(--navy) !important;
  padding: 9px 20px; border-radius: 6px;
  font-weight: 500 !important; font-size: 14px !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--navy-mid); border-bottom: 1px solid var(--border);
  padding: 20px 5%; z-index: 99; flex-direction: column; gap: 16px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text-mid); text-decoration: none; font-size: 16px; padding: 8px 0; border-bottom: 1px solid var(--border); }
.mobile-menu .nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 12px 20px; border-radius: 8px; text-align: center; border: none; font-weight: 500 !important; }

/* PAGE HERO */
.page-hero {
  padding: 140px 5% 80px;
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 80% 50%, rgba(30,51,88,0.5) 0%, transparent 70%),
              radial-gradient(ellipse 30% 40% at 10% 90%, rgba(200,148,26,0.05) 0%, transparent 60%);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.page-hero-tag {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 16px;
  font-family: 'DM Mono', monospace; display: block;
}
.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px); font-weight: 700;
  line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 20px;
  max-width: 700px;
}
.page-hero-title em { color: var(--gold); font-style: italic; }
.page-hero-sub {
  font-size: 17px; color: var(--text-mid); font-weight: 300;
  line-height: 1.7; max-width: 560px; margin-bottom: 36px;
}

/* BUTTONS */
.btn-primary {
  display: inline-block; padding: 13px 26px;
  background: var(--gold); color: var(--navy);
  font-size: 15px; font-weight: 500; border-radius: 8px;
  text-decoration: none; transition: all 0.2s; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost {
  display: inline-block; padding: 13px 26px;
  background: transparent; color: var(--white);
  font-size: 15px; font-weight: 400; border-radius: 8px;
  text-decoration: none; border: 1px solid var(--border); transition: all 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); background: rgba(255,255,255,0.04); }

/* SECTIONS */
.section { padding: 88px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-alt { background: var(--navy-mid); }
.section-tag {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 14px;
  font-family: 'DM Mono', monospace; display: block;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px); font-weight: 700;
  line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 14px;
}
.section-sub {
  font-size: 16px; color: var(--text-mid); font-weight: 300;
  line-height: 1.7; max-width: 560px;
}

/* DIVIDER */
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* CTA STRIP */
.cta-strip {
  background: var(--navy-mid); border-top: 1px solid var(--border);
  padding: 72px 5%; text-align: center;
}
.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 38px); font-weight: 700; margin-bottom: 14px;
}
.cta-strip h2 em { color: var(--gold); font-style: italic; }
.cta-strip p { color: var(--text-mid); font-size: 16px; font-weight: 300; margin-bottom: 32px; }
.cta-strip-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-strip-note { margin-top: 16px; font-size: 13px; color: var(--text-muted); }

/* FOOTER */
footer {
  background: var(--navy-mid); border-top: 1px solid var(--border);
  padding: 48px 5% 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
.footer-brand-logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.footer-brand-logo span { color: var(--gold); }
.footer-brand-desc { font-size: 13px; color: var(--text-muted); line-height: 1.7; font-weight: 300; max-width: 260px; }
.footer-col-title { font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted); margin-bottom: 14px; font-family: 'DM Mono', monospace; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px; border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-muted);
}
.footer-disclaimer { max-width: 1200px; margin: 16px auto 0; font-size: 11px; color: rgba(255,255,255,0.22); line-height: 1.6; font-style: italic; }

/* FADE IN */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
