/* ============================================================
   BROCH SECURITY — shared site styles
   Corporate, trust-first. Navy/blue system, Space Grotesk + Inter.
   ============================================================ */
:root {
  --navy: #0F2438;
  --navy-2: #16324A;
  --steel: #1E4D8C;
  --signal: #3E8EDE;
  --slate: #5B6472;
  --mist: #F4F6F8;
  --line: #E3E8ED;
  --green: #2E7D50;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 32px; }

/* ---- NAV ---- */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: rgba(255,255,255,0.94);
  backdrop-filter: blur(8px); z-index: 50;
}
.logo { display: flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 17px; letter-spacing: 0.3px; }
.nav-links { display: flex; gap: 30px; font-size: 14px; font-weight: 500; color: var(--slate); }
.nav-links a { transition: color 0.15s; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta { display: inline-block; background: var(--signal); color: #fff; font-weight: 600; font-size: 14px; padding: 10px 20px; border-radius: 8px; transition: background 0.15s; }
.nav-cta:hover { background: #2E7BC7; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }

/* ---- BUTTONS ---- */
.btn { display: inline-block; font-weight: 600; font-size: 14px; padding: 12px 24px; border-radius: 8px; cursor: pointer; border: none; transition: all 0.15s; font-family: 'Inter', sans-serif; }
.btn-primary { background: var(--signal); color: #fff; }
.btn-primary:hover { background: #2E7BC7; }
.btn-ghost { border: 1px solid #33506E; color: #fff; background: none; }
.btn-ghost:hover { background: rgba(255,255,255,0.06); }
.btn-outline { border: 1px solid var(--line); color: var(--navy); background: none; }
.btn-outline:hover { border-color: var(--signal); }

/* ---- HERO / PAGE HEADERS ---- */
.hero { background: var(--navy); position: relative; overflow: hidden; padding: 96px 0 84px; }
.hero-rings { position: absolute; right: -160px; top: 50%; transform: translateY(-50%); width: 640px; height: 640px; opacity: 0.45; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; max-width: 640px; }
.eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--signal); margin-bottom: 18px; }
h1.hero-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 46px; line-height: 1.13; color: #fff; margin-bottom: 20px; letter-spacing: -0.6px; }
.hero-sub { font-size: 17px; color: #A9BFD6; max-width: 520px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.page-header { background: var(--navy); position: relative; overflow: hidden; padding: 72px 0 60px; }
.page-header .eyebrow { margin-bottom: 14px; }
h1.page-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 40px; color: #fff; margin-bottom: 14px; max-width: 700px; letter-spacing: -0.5px; }
.page-sub { font-size: 16px; color: #A9BFD6; max-width: 580px; }

/* ---- TRUST BAR ---- */
.trust { padding: 28px 0; border-bottom: 1px solid var(--line); }
.trust-row { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.trust-label { font-size: 12px; color: var(--slate); font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.trust-badges { display: flex; gap: 26px; flex-wrap: wrap; }
.badge { font-size: 13px; font-weight: 500; color: var(--navy); display: flex; align-items: center; gap: 8px; }
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--signal); flex-shrink: 0; }

/* ---- SECTIONS ---- */
.section { padding: 84px 0; }
.section.tight { padding: 60px 0; }
.section.mist { background: var(--mist); }
.section-head { max-width: 600px; margin-bottom: 46px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-eyebrow { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--steel); margin-bottom: 12px; }
h2.section-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 32px; margin-bottom: 14px; letter-spacing: -0.3px; }
.section-desc { color: var(--slate); font-size: 16px; }

/* ---- CARDS GRID ---- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  border: 1px solid var(--line); border-radius: 14px; padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card.hover:hover { box-shadow: 0 12px 30px rgba(15,36,56,0.08); transform: translateY(-2px); }
.card.featured { border: 2px solid var(--signal); }
.card-icon { width: 46px; height: 46px; border-radius: 11px; background: var(--mist); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; }
.card-kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--slate); margin-bottom: 10px; }
h3.card-title { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 19px; margin-bottom: 10px; }
.card-desc { font-size: 14px; color: var(--slate); margin-bottom: 18px; }
.card-link { font-size: 13px; font-weight: 600; color: var(--steel); }
.card-list { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 20px; }
.card-list li { font-size: 13.5px; color: var(--navy); display: flex; gap: 9px; align-items: flex-start; }
.card-list li::before { content: "—"; color: var(--signal); flex-shrink: 0; }

/* ---- FEATURE / SPLIT ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.feature-list { display: flex; flex-direction: column; gap: 24px; }
.feature-item { display: flex; gap: 16px; }
.feature-num { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 15px; color: var(--signal); min-width: 26px; }
.feature-title { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.feature-desc { font-size: 14px; color: var(--slate); }
.visual-panel { background: var(--navy); border-radius: 16px; min-height: 320px; display: flex; align-items: center; justify-content: center; }

/* ---- GUARANTEE BAND ---- */
.guarantee { background: linear-gradient(135deg, #0F2438 0%, #1E4D8C 100%); border-radius: 20px; padding: 52px 48px; color: #fff; }
.guarantee .eyebrow { color: #8FC0F0; }
.guarantee h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 28px; margin-bottom: 14px; max-width: 620px; letter-spacing: -0.3px; }
.guarantee p { color: #C5D8EC; font-size: 15px; max-width: 620px; margin-bottom: 8px; }
.guarantee .fine { font-size: 12px; color: #7E9AB8; margin-top: 16px; }

/* ---- CTA BANNER ---- */
.cta-banner { background: var(--navy); border-radius: 20px; padding: 54px 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 26px; color: #fff; max-width: 460px; }
.cta-banner p { color: #A9BFD6; font-size: 14px; margin-top: 8px; max-width: 460px; }

/* ---- FOOTER ---- */
footer { border-top: 1px solid var(--line); padding: 56px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 14px; }
.footer-brand p { font-size: 13px; color: var(--slate); max-width: 280px; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--navy); margin-bottom: 14px; font-weight: 700; }
.footer-col a { display: block; font-size: 13.5px; color: var(--slate); margin-bottom: 9px; transition: color 0.15s; }
.footer-col a:hover { color: var(--navy); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12.5px; color: var(--slate); }
.footer-legal { font-size: 12.5px; color: var(--slate); display: flex; gap: 20px; }

/* ---- MISC ---- */
.pill { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--steel); background: #E9EEF4; padding: 5px 12px; border-radius: 100px; }
.center { text-align: center; }
.mt-lg { margin-top: 40px; }

/* ---- RESPONSIVE ---- */
@media (max-width: 860px) {
  .grid-3, .grid-2, .split, .footer-grid { grid-template-columns: 1fr; }
  .split { gap: 32px; }
  .footer-grid { gap: 28px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 64px; left: 0; right: 0; flex-direction: column; background: #fff; padding: 20px 32px; border-bottom: 1px solid var(--line); gap: 18px; }
  .nav-toggle { display: block; }
  h1.hero-title { font-size: 33px; }
  h1.page-title { font-size: 30px; }
  h2.section-title { font-size: 26px; }
  .guarantee, .cta-banner { padding: 36px 28px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
