/* ═══════════════════════════════════════════════
   OUTPLAT SECURITY — v7
   DNA: Site 3 feel · Brand colours · Logo fixed
   Fonts: Fraunces (display) + DM Sans (body)
   Brand: #1b1464 · #ff650d · #0071ba
   ═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  /* ── site-3 backgrounds, kept exactly ── */
  --navy:      #0D1625;
  --navy2:     #111F38;
  --navy-mid:  #1A2B5F;

  /* ── brand blues mapped in ── */
  --blue:      #0071ba;   /* was #1E6FBF */
  --blue2:     #4BB8F0;   /* was #4B9FE1 — slightly lifted for italic contrast */
  --deep:      #1b1464;   /* brand deep navy, replaces navy-mid in accents */

  /* ── brand orange ── */
  --orange:    #ff650d;   /* was #F05A1A */
  --orange2:   #ff7d2e;   /* was #FF7A3D */

  /* ── type & chrome, site-3 values ── */
  --white:     #FFFFFF;
  --slate:     #94A3B8;
  --steel:     #CBD5E1;
  --border:    rgba(255,255,255,0.07);

  /* ── fonts ── */
  --font-head: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ══ 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,22,37,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a.primary { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important; color: #fff !important;
  padding: 9px 20px; border-radius: 6px;
  font-weight: 600 !important; font-size: 13px !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange2) !important; }

/* ══ BUTTONS ══════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff;
  padding: 14px 30px; border-radius: 7px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--orange2); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--steel);
  padding: 14px 30px; border-radius: 7px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.14);
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.35); color: #fff; }

/* ══ LAYOUT ═══════════════════════════════════════ */
.page-wrap { max-width: 1200px; margin: 0 auto; padding: 0 5%; }

/* ══ SECTION LABELS ═══════════════════════════════ */
.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before {
  content: ''; display: block;
  width: 22px; height: 1.5px; background: var(--orange); flex-shrink: 0;
}
.section-label.center { justify-content: center; }
.section-label.center::before { display: none; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.2vw, 2.9rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em; color: var(--white);
  margin-bottom: 18px;
}
.section-title em { font-style: italic; font-weight: 300; color: var(--blue2); }
.section-title.center { text-align: center; }

.section-body {
  font-size: 16px; color: var(--slate);
  line-height: 1.75; font-weight: 300;
  margin-bottom: 48px;
}
.section-body.center { text-align: center; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ══ DIVIDER ══════════════════════════════════════ */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07) 20%, rgba(255,255,255,0.07) 80%, transparent);
}

/* ══ STATS BAR ════════════════════════════════════ */
.stats-bar {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 5%;
  display: flex; justify-content: center; gap: 80px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.1rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.04em; line-height: 1;
}
.stat-num span { color: var(--orange); }
.stat-label {
  font-size: 11px; color: var(--slate);
  text-transform: uppercase; letter-spacing: 0.09em;
  margin-top: 6px; font-weight: 500;
}

/* ══ DARK CARD ════════════════════════════════════ */
.dark-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background 0.25s, border-color 0.25s;
}
.dark-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.13);
}

/* ══ CTA BAND ═════════════════════════════════════ */
.cta-band {
  background: var(--navy-mid);
  padding: 96px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,101,13,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band .section-title { max-width: 540px; margin: 0 auto 18px; position: relative; }
.cta-band .section-body  { position: relative; }
.cta-actions {
  display: flex; justify-content: center;
  align-items: center; gap: 14px; flex-wrap: wrap; position: relative;
}
.cta-contacts {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap;
  margin-top: 26px; position: relative;
}
.cta-contacts a {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none;
  transition: color 0.2s;
}
.cta-contacts a:hover { color: rgba(255,255,255,0.8); }

/* ══ FOOTER ═══════════════════════════════════════ */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 52px 5% 32px;
}
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 44px; max-width: 1200px;
  margin-left: auto; margin-right: auto;
}
.footer-logo { display: flex; align-items: center; margin-bottom: 14px; }
.footer-logo img { height: 36px; width: auto; }
.footer-tagline {
  font-size: 13px; color: rgba(255,255,255,0.32);
  line-height: 1.65; font-weight: 300; max-width: 240px;
}
.footer-col h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  text-decoration: none; font-size: 13px;
  color: rgba(255,255,255,0.45); transition: color 0.2s; font-weight: 300;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--border); padding-top: 22px;
  flex-wrap: wrap; gap: 12px; max-width: 1200px; margin: 0 auto;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.22); font-weight: 300; }
.footer-perth { font-size: 12px; color: rgba(255,255,255,0.22); }

/* ══ PAGE HERO ════════════════════════════════════ */
.page-hero {
  padding: 140px 5% 80px;
  background: var(--navy);
  position: relative; overflow: hidden;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,113,186,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,113,186,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 30% 50%, black 20%, transparent 80%);
}
.page-hero-glow {
  position: absolute; top: -10%; left: 20%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(0,113,186,0.1) 0%, transparent 68%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 780px; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em; color: var(--white);
  margin-bottom: 18px;
}
.page-hero h1 em { font-style: italic; font-weight: 300; color: var(--blue2); }
.page-hero p {
  font-size: 17px; color: var(--slate);
  max-width: 580px; line-height: 1.75; font-weight: 300;
  margin-bottom: 32px;
}

/* ══ ANIMATE ══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.4; transform:scale(0.65); }
}

/* ══ BADGE ════════════════════════════════════════ */
.badge {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(255,101,13,0.4);
  background: rgba(255,101,13,0.08);
  padding: 6px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.09em;
  color: #FDBA96; text-transform: uppercase; margin-bottom: 28px;
}
.badge::before {
  content: ''; display: block; width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}

/* ══ FW CHIPS ═════════════════════════════════════ */
.fw-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.fw-chip {
  font-size: 10px; font-weight: 600;
  padding: 4px 10px; border-radius: 3px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--steel); letter-spacing: 0.03em;
}
