/* ── FORTIS DATA GROUP — SHARED STYLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --navy-light: #1a3358;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dim: #8a6f2e;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --text: #1a2b42;
  --text-muted: #4a6080;
  --text-light: #7a90a8;
  --border: rgba(201, 168, 76, 0.2);
  --font: 'Georgia', 'Times New Roman', serif;
  --sans: 'Segoe UI', 'Inter', system-ui, sans-serif;
  --mono: 'Courier New', monospace;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--text); line-height: 1.7; overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 3rem; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark { width: 38px; height: 38px; background: linear-gradient(135deg, var(--gold), var(--gold-dim)); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem; color: var(--navy); font-family: var(--font); }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: 0.95rem; font-weight: 700; color: var(--white); letter-spacing: 0.02em; line-height: 1.1; }
.logo-tagline { font-size: 0.6rem; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }
nav ul { display: flex; gap: 2rem; list-style: none; align-items: center; }
nav a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.82rem; letter-spacing: 0.04em; transition: color 0.2s; }
nav a:hover { color: var(--gold-light); }
nav a.active { color: var(--gold-light); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 8px 20px !important; border-radius: 4px; font-weight: 700 !important; font-size: 0.78rem !important; letter-spacing: 0.06em !important; text-transform: uppercase; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* CLEARANCE BAR */
.clearance-bar { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 0.9rem 3rem; }
.clearance-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.clearance-item { display: flex; align-items: center; gap: 8px; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.clearance-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 6px #22c55e; }
.clearance-item strong { color: var(--gold-light); font-weight: 600; }

/* PAGE HERO (inner pages) */
.page-hero { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 120px 3rem 5rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px); background-size: 80px 80px; }
.page-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.page-label { display: flex; align-items: center; gap: 10px; margin-bottom: 0.75rem; }
.page-label::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.page-label span { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.page-hero h1 { font-family: var(--font); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--white); line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 1rem; }
.page-hero h1 span { color: var(--gold); }
.page-hero p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 580px; line-height: 1.8; }

/* SECTIONS */
.section { padding: 5rem 3rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); }
hr.divider { border: none; border-top: 1px solid rgba(201,168,76,0.12); margin: 0; }

/* SECTION LABELS */
.section-label { display: flex; align-items: center; gap: 10px; margin-bottom: 0.6rem; }
.section-label::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.section-label span { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
h2.section-title { font-family: var(--font); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--navy); letter-spacing: -0.02em; margin-bottom: 0.75rem; line-height: 1.2; }
h2.section-title-light { color: var(--white); }
.section-desc { color: var(--text-muted); font-size: 1rem; max-width: 580px; margin-bottom: 3rem; line-height: 1.75; }
.section-desc-light { color: rgba(255,255,255,0.55); }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 0.85rem 2rem; border-radius: 4px; font-size: 0.85rem; font-weight: 600; text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase; transition: all 0.2s; cursor: pointer; border: none; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 1px solid var(--gold-dim); }
.btn-outline:hover { background: rgba(201,168,76,0.08); }
.btn-outline-white { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold-light); }

/* CTA BLOCK */
.cta-block { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); border-top: 1px solid var(--border); padding: 4rem 3rem; text-align: center; }
.cta-block h2 { font-family: var(--font); font-size: 2rem; color: var(--white); margin-bottom: 0.75rem; }
.cta-block h2 span { color: var(--gold); }
.cta-block p { color: rgba(255,255,255,0.5); font-size: 0.95rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer { background: var(--navy); border-top: 1px solid var(--border); padding: 2rem 3rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }

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

/* MOBILE */
@media (max-width: 900px) {
  nav ul { display: none; }
  nav { padding: 0 1.5rem; }
  .page-hero { padding: 100px 1.5rem 3rem; }
  .section { padding: 3rem 1.5rem; }
  .clearance-bar { padding: 0.9rem 1.5rem; }
  footer { padding: 1.5rem; }
  .cta-block { padding: 3rem 1.5rem; }
}
