:root {
  --navy: #0B2C4F; --navy-dark: #081e37; --gold: #C49A00;
  --gold-light: #E8B900; --white: #ffffff;
  --light-gray: #f4f6f9; --text: #2d2d2d; --text-light: #5a554b;
  --border: #e2e8f0;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji'; color: var(--text); background: #f6f4ee; line-height: 1.6; }

/* SKIP LINK */
.skip-link {
  position: absolute; top: -100%; left: 0;
  background: var(--gold); color: var(--navy);
  padding: 0.5rem 1rem; font-weight: 700; font-size: 0.9rem;
  z-index: 9999; text-decoration: none; border-radius: 0 0 4px 0;
}
.skip-link:focus { top: 0; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--navy); padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.nav-brand { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; padding: 1rem 0; }
.nav-brand .logo-circle {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1rem;
}
.nav-brand span { color: var(--white); font-size: 1.1rem; font-weight: 700; }
.nav-brand span em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; gap: 0.25rem; }
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  padding: 0.5rem 1rem; border-radius: 4px; font-size: 0.95rem; transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { background: rgba(196,154,0,0.2); color: var(--gold-light); }
.nav-links a.active { font-weight: 600; }
.nav-cta { background: var(--gold); color: var(--navy) !important; font-weight: 700 !important; padding: 0.5rem 1.25rem !important; border-radius: 4px !important; }
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: space-between;
  width: 28px; height: 20px; background: none; border: none;
  cursor: pointer; padding: 0; z-index: 1001;
}
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.u-badge-gold { background: rgba(196,154,0,0.15); border: 1px solid rgba(196,154,0,0.35); color: var(--gold-light) !important; font-weight: 600; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #15406b 100%);
  color: var(--white); padding: 5rem 2rem 4rem; text-align: center;
}
.hero .section-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1rem; }
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 1.25rem; }
.hero h1 span { color: var(--gold-light); }
.hero .sub { color: rgba(255,255,255,0.92); font-size: 1.15rem; max-width: 640px; margin: 0 auto 2rem; line-height: 1.7; }
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.5rem; }
.btn-primary { display: inline-block; background: var(--gold); color: var(--navy); padding: 0.9rem 2rem; border-radius: 6px; font-weight: 700; font-size: 0.95rem; text-decoration: none; transition: all 0.2s; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { display: inline-block; background: transparent; color: var(--white); padding: 0.9rem 2rem; border-radius: 6px; font-weight: 600; font-size: 0.95rem; text-decoration: none; border: 2px solid rgba(255,255,255,0.4); transition: all 0.2s; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.cert-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.cert-pill { background: rgba(196,154,0,0.15); border: 1px solid rgba(196,154,0,0.4); color: var(--gold-light); padding: 0.3rem 0.9rem; border-radius: 50px; font-size: 0.82rem; font-weight: 600; }

/* SECTIONS */
.container { max-width: 1100px; margin: 0 auto; }
section { padding: 5rem 2rem; }
.section-label { font-size: 0.8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #856800; margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--navy); margin-bottom: 0.75rem; }
.section-sub { color: var(--text-light); font-size: 1.05rem; line-height: 1.7; max-width: 720px; }
.section-alt { background: var(--light-gray); }

/* WHO GRID */
.who-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.who-card { background: var(--white); border-radius: 12px; padding: 2rem; border: 1px solid var(--border); border-top: 4px solid var(--gold); transition: transform 0.2s, box-shadow 0.2s; }
.who-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(11,44,79,0.1); }
.who-icon { margin-bottom: 1rem; }
.who-card h3 { color: var(--navy); font-size: 1.05rem; margin-bottom: 0.5rem; }
.who-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* COMPLIANCE CALLOUT */
.compliance-box {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: 16px; padding: 3rem; color: var(--white);
  margin-top: 3rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.compliance-box h3 { color: var(--gold-light); font-size: 1.4rem; margin-bottom: 1rem; }
.compliance-box p { color: rgba(255,255,255,0.92); line-height: 1.7; font-size: 0.95rem; }
.compliance-stats { display: flex; flex-direction: column; gap: 1.25rem; }
.stat-item { background: rgba(255,255,255,0.06); border-radius: 10px; padding: 1.25rem 1.5rem; border-left: 3px solid var(--gold); }
.stat-item .stat-num { font-size: 1.6rem; font-weight: 800; color: var(--gold-light); }
.stat-item .stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.9); margin-top: 0.15rem; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.process-step { background: var(--white); border-radius: 12px; padding: 2rem 1.5rem; border: 1px solid var(--border); text-align: center; }
.step-num { width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: var(--gold-light); font-size: 1.2rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.process-step h4 { color: var(--navy); font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; }

/* SAFEGUARDS / CONTROL FAMILIES */
.safeguards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.safeguard-card { background: var(--white); border-radius: 12px; padding: 2rem; border: 1px solid var(--border); }
.safeguard-card .sg-icon { margin-bottom: 1rem; }
.safeguard-card h4 { color: var(--navy); font-size: 1rem; margin-bottom: 1rem; }
.safeguard-card ul { list-style: none; }
.safeguard-card ul li { color: var(--text-light); font-size: 0.88rem; padding: 0.35rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 0.5rem; }
.safeguard-card ul li:last-child { border-bottom: none; }
.safeguard-card ul li::before { content: '\2022'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* DELIVERABLES */
.deliverables-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.deliverable-item { background: var(--white); border-radius: 12px; padding: 1.75rem; border: 1px solid var(--border); display: flex; gap: 1rem; align-items: flex-start; }
.deliverable-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--navy); color: var(--gold-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.deliverable-item h4 { color: var(--navy); font-size: 0.95rem; margin-bottom: 0.35rem; }
.deliverable-item p { color: var(--text-light); font-size: 0.85rem; line-height: 1.5; }

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.pricing-card { background: var(--white); border-radius: 12px; padding: 2rem; border: 2px solid var(--border); transition: all 0.25s; position: relative; }
.pricing-card.featured { border-color: var(--gold); }
.featured-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); padding: 0.25rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 700; white-space: nowrap; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(11,44,79,0.1); }
.pricing-card h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.35rem; }
.pricing-card .scope { color: var(--text-light); font-size: 0.85rem; margin-bottom: 0.75rem; }
.pricing-card .price { font-size: 2.2rem; font-weight: 800; color: var(--navy); margin-bottom: 1.25rem; }
.pricing-card .price span { font-size: 1rem; color: var(--text-light); font-weight: 400; }
.pricing-features { list-style: none; margin-bottom: 1.75rem; }
.pricing-features li { color: var(--text); font-size: 0.9rem; padding: 0.4rem 0; display: flex; gap: 0.5rem; align-items: flex-start; }
.pricing-features li::before { content: '\2713'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.pricing-card .btn-primary { width: 100%; text-align: center; display: block; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(440px, 1fr)); gap: 1.5rem; margin-top: 3rem; }
.faq-item { background: var(--white); border-radius: 12px; padding: 2rem; border: 1px solid var(--border); }
.faq-item h4 { color: var(--navy); font-size: 1rem; margin-bottom: 0.75rem; }
.faq-item p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); color: var(--white); text-align: center; padding: 5rem 2rem; }
.cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.92); font-size: 1.05rem; margin-bottom: 2rem; max-width: 580px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* LEAD FORM */
.lead-form-section { background: var(--light-gray); padding: 5rem 2rem; }
.lead-form { max-width: 760px; margin: 3rem auto 0; background: var(--white); border-radius: 12px; padding: 2.5rem; border: 1px solid var(--border); box-shadow: 0 2px 12px rgba(11,44,79,0.04); }
.lf-honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.lf-group { border: 0; padding: 0 0 1.5rem; margin: 0 0 1.5rem; border-bottom: 1px solid var(--border); }
.lf-group:last-of-type { border-bottom: 0; margin-bottom: 0.5rem; }
.lf-group legend { color: var(--navy); font-weight: 700; font-size: 1rem; padding: 0; margin-bottom: 1rem; }
.lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lf-field { display: flex; flex-direction: column; margin-bottom: 1rem; }
.lf-field > span { font-size: 0.88rem; color: var(--navy); font-weight: 600; margin-bottom: 0.35rem; }
.lf-field > span em { color: var(--gold); font-style: normal; }
.lf-field input, .lf-field select, .lf-field textarea { font: inherit; padding: 0.65rem 0.75rem; border: 1px solid var(--border); border-radius: 6px; background: var(--white); color: var(--text); transition: border-color 0.15s, box-shadow 0.15s; }
.lf-field input:focus, .lf-field select:focus, .lf-field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,154,0,0.15); }
.lf-field textarea { resize: vertical; min-height: 88px; }
.submit-btn { width: 100%; cursor: pointer; border: 0; padding: 1rem; font-size: 1rem; margin-top: 0.5rem; }
.submit-btn:disabled { opacity: 0.6; cursor: wait; }
.lf-fineprint { text-align: center; color: var(--text-light); font-size: 0.78rem; margin-top: 1rem; line-height: 1.5; }
.form-success { display: none; max-width: 760px; margin: 3rem auto 0; background: var(--white); border-radius: 12px; padding: 2.5rem; border: 1px solid var(--border); border-top: 4px solid var(--gold); text-align: center; }
.form-success h3 { color: var(--navy); font-size: 1.4rem; margin-bottom: 0.75rem; }
.form-success p { color: var(--text-light); line-height: 1.7; }

/* FOOTER */
footer { background: #0e1f3a; color: rgba(255,255,255,0.88); padding: 3rem 2rem 1.5rem; }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand span { color: var(--white); font-size: 1.1rem; font-weight: 700; }
.footer-brand span em { color: var(--gold); font-style: normal; }
.footer-brand p { margin-top: 0.75rem; font-size: 0.9rem; line-height: 1.7; }
footer h3 { color: var(--white); font-size: 0.95rem; margin-bottom: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer ul li a { color: rgba(255,255,255,0.88); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
footer ul li a:hover { color: var(--gold-light); }
.footer-bottom { max-width: 1100px; margin: 1.5rem auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* UTILITY */
.u-tc { text-align: center; }
.u-center { margin: 0 auto; text-align: center; }
.u-mt-4 { margin-top: 1rem; }

@media (max-width: 768px) {
  nav { flex-wrap: wrap; padding: 0 1rem; }
  .nav-toggle { display: flex; }
  .nav-links { display: none; width: 100%; flex-direction: column; padding: 0.5rem 0 1rem; gap: 0; }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 0.75rem 1.5rem; border-radius: 4px; font-size: 1rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links a:last-child { border-bottom: none; }
  .compliance-box { grid-template-columns: 1fr; gap: 2rem; padding: 2rem; }
  .safeguards-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  section { padding: 3.5rem 1.25rem; }
  .lead-form { padding: 1.5rem; }
  .lf-row { grid-template-columns: 1fr; gap: 0; }
  .lead-form-section { padding: 3.5rem 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
