:root {
  --navy: #0a1628;
  --navy-light: #132038;
  --navy-mid: #1a2d4d;
  --gold: #d4a843;
  --gold-light: #f0d78c;
  --gold-dim: rgba(212,168,67,0.12);
  --white: #ffffff;
  --gray-50: #f8f9fc;
  --gray-100: #eef1f6;
  --gray-200: #dde2ec;
  --gray-400: #8892a4;
  --gray-600: #4a5568;
  --gray-800: #1a202c;
  --green: #38a169;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --radius: 16px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font-body);color:var(--gray-800);background:var(--gray-50);line-height:1.7;-webkit-font-smoothing:antialiased}

/* BRAND NAV */
.brand-nav{background:var(--navy);padding:0 48px;border-bottom:2px solid var(--gold)}
.brand-nav-inner{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;height:60px}
.brand-nav .logo{display:flex;align-items:center;gap:12px;text-decoration:none;color:var(--gold);font-family:var(--font-display);font-size:1.15rem;font-weight:800}
.brand-nav .logo .shield{font-size:1.3rem}
.brand-nav .nav-links{display:flex;gap:8px}
.brand-nav .nav-links a{color:rgba(255,255,255,0.6);text-decoration:none;font-size:0.82rem;font-weight:500;padding:8px 16px;border-radius:8px;transition:all 0.2s}
.brand-nav .nav-links a:hover{color:var(--white);background:rgba(255,255,255,0.06)}
.brand-nav .nav-links a.cta{background:var(--gold);color:var(--navy);font-weight:700}
.brand-nav .nav-links a.cta:hover{background:var(--gold-light)}

/* HERO */
.hero{background:linear-gradient(150deg,var(--navy) 0%,#0f2240 40%,var(--navy-mid) 100%);color:var(--white);padding:100px 48px 80px;position:relative;overflow:hidden;text-align:center}
.hero::before{content:'';position:absolute;top:-200px;right:-200px;width:800px;height:800px;background:radial-gradient(circle,rgba(212,168,67,0.08) 0%,transparent 60%);border-radius:50%}
.hero::after{content:'';position:absolute;bottom:-200px;left:-200px;width:700px;height:700px;background:radial-gradient(circle,rgba(212,168,67,0.05) 0%,transparent 60%);border-radius:50%}
.hero-inner{max-width:800px;margin:0 auto;position:relative;z-index:1}
.hero-shield{font-size:4rem;margin-bottom:24px;display:block;filter:drop-shadow(0 4px 20px rgba(212,168,67,0.3))}
.hero h1{font-family:var(--font-display);font-size:3.2rem;font-weight:900;line-height:1.15;margin-bottom:20px}
.hero h1 span{color:var(--gold)}
.hero .tagline{font-size:1.2rem;font-weight:300;color:rgba(255,255,255,0.7);max-width:600px;margin:0 auto 36px;line-height:1.6}
.hero .cta-row{display:flex;gap:16px;justify-content:center;flex-wrap:wrap}
.hero .cta-btn{display:inline-block;padding:14px 32px;border-radius:10px;text-decoration:none;font-weight:700;font-size:0.95rem;transition:all 0.2s}
.cta-primary{background:var(--gold);color:var(--navy)}
.cta-primary:hover{background:var(--gold-light);transform:translateY(-2px);box-shadow:0 8px 24px rgba(212,168,67,0.3)}
.cta-secondary{border:1px solid rgba(255,255,255,0.2);color:var(--white)}
.cta-secondary:hover{border-color:var(--gold);color:var(--gold)}

/* SECTIONS */
.section{padding:80px 48px}
.section-inner{max-width:1100px;margin:0 auto}
.section-dark{background:var(--navy);color:var(--white)}
.section-white{background:var(--white)}
.section h2{font-family:var(--font-display);font-size:2.2rem;font-weight:800;margin-bottom:12px}
.section-dark h2{color:var(--white)}
.section .subtitle{font-size:1.05rem;color:var(--gray-400);margin-bottom:48px;max-width:600px}
.section-dark .subtitle{color:rgba(255,255,255,0.5)}
.section-center{text-align:center}
.section-center .subtitle{margin-left:auto;margin-right:auto}

/* FEATURE GRID */
.feature-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:32px}
.feature-card{background:var(--white);border:1px solid var(--gray-200);border-radius:var(--radius);padding:32px;transition:all 0.3s}
.feature-card:hover{box-shadow:var(--shadow-lg);border-color:var(--gold);transform:translateY(-4px)}
.feature-card .icon{font-size:2rem;margin-bottom:16px}
.feature-card h3{font-size:1.05rem;font-weight:700;color:var(--navy);margin-bottom:8px}
.feature-card p{font-size:0.88rem;color:var(--gray-600);line-height:1.6}
.section-dark .feature-card{background:var(--navy-light);border-color:rgba(255,255,255,0.08)}
.section-dark .feature-card:hover{border-color:var(--gold)}
.section-dark .feature-card h3{color:var(--white)}
.section-dark .feature-card p{color:rgba(255,255,255,0.6)}

/* CASE STUDY CTA */
.case-study-cta{background:linear-gradient(135deg,var(--navy-mid),var(--navy));border-radius:var(--radius);padding:48px;display:flex;align-items:center;gap:40px;margin-top:48px;border:1px solid rgba(212,168,67,0.15)}
.case-study-cta .cs-text{flex:1}
.case-study-cta h3{font-family:var(--font-display);font-size:1.6rem;color:var(--white);margin-bottom:8px}
.case-study-cta p{color:rgba(255,255,255,0.6);font-size:0.92rem;margin-bottom:20px}
.case-study-cta .cs-stats{display:flex;gap:24px}
.cs-stat{text-align:center}
.cs-stat .val{font-size:1.6rem;font-weight:800;color:var(--gold);line-height:1}
.cs-stat .lbl{font-size:0.65rem;color:rgba(255,255,255,0.4);text-transform:uppercase;letter-spacing:0.06em;margin-top:4px}

/* PROCESS */
.process-steps{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:32px}
.step{text-align:center;padding:24px}
.step .step-num{width:48px;height:48px;background:var(--gold);color:var(--navy);font-weight:800;font-size:1.2rem;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
.step h4{font-size:0.95rem;font-weight:700;margin-bottom:6px;color:var(--navy)}
.step p{font-size:0.82rem;color:var(--gray-600);line-height:1.5}

/* FOOTER */
.brand-footer{background:var(--navy);color:rgba(255,255,255,0.4);padding:48px;border-top:2px solid var(--gold)}
.footer-inner{max-width:1100px;margin:0 auto;display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:24px}
.footer-brand{font-family:var(--font-display);font-size:1.1rem;color:var(--gold)}
.footer-links{display:flex;gap:24px}
.footer-links a{color:rgba(255,255,255,0.5);text-decoration:none;font-size:0.82rem;transition:color 0.2s}
.footer-links a:hover{color:var(--gold)}

@media(max-width:768px){
  .hero{padding:60px 24px 48px}.hero h1{font-size:2rem}
  .section{padding:48px 24px}
  .feature-grid{grid-template-columns:1fr}.process-steps{grid-template-columns:1fr 1fr}
  .case-study-cta{flex-direction:column;text-align:center}
  .brand-nav{padding:0 20px}.brand-nav .nav-links a{padding:6px 10px;font-size:0.75rem}
}
