*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --navy:   #0B1F3A;
    --navy2:  #112547;
    --gold:   #C8922A;
    --gold2:  #E5A832;
    --white:  #FFFFFF;
    --text:   #D0DCE8;
    --dim:    #8BA3BC;
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'Barlow', sans-serif; background: var(--navy); color: var(--white); overflow-x: hidden; }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 6vw;
    background: rgba(11,31,58,0.93);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200,146,42,0.18);
  }
  .nav-logo img { height: 44px; filter: brightness(0) invert(1); }
  .nav-links { display: flex; gap: 32px; list-style: none; }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
    font-size: 14px; letter-spacing: .08em; text-transform: uppercase;
    color: var(--text); text-decoration: none; transition: color .2s;
  }
  .nav-links a:hover { color: var(--gold2); }
  .nav-cta {
    background: var(--gold); color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 13px; letter-spacing: .1em; text-transform: uppercase;
    padding: 10px 24px; border: none; cursor: pointer;
    text-decoration: none; transition: background .2s;
  }
  .nav-cta:hover { background: var(--gold2); }

  /* HERO */
  .hero {
    min-height: 100vh; position: relative;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; padding: 120px 6vw 80px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      linear-gradient(to bottom, rgba(11,31,58,0.50) 0%, rgba(11,31,58,0.82) 65%, var(--navy) 100%),
      url('/mnt/user-data/uploads/BBC0A249-1499-45AD-9C82-F8681D01BD18.PNG') center/cover no-repeat;
  }
  .hero-bg::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: scan 4s linear infinite;
  }
  @keyframes scan { 0%{opacity:.3} 50%{opacity:1} 100%{opacity:.3} }
  .hero-inner { position: relative; z-index: 2; max-width: 820px; text-align: center; }
  .hero-eyebrow {
    font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600;
    letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
  }
  .hero-logo { height: 80px; margin-bottom: 28px; filter: brightness(0) invert(1); }
  .hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(44px, 7vw, 82px); font-weight: 800;
    line-height: 1; letter-spacing: .02em; text-transform: uppercase; margin-bottom: 12px;
  }
  .hero h1 span { color: var(--gold); }
  .hero-tagline {
    font-size: 15px; font-weight: 500; color: var(--dim);
    letter-spacing: .18em; text-transform: uppercase; margin-bottom: 40px;
  }
  .hero-tagline em { color: var(--gold); font-style: normal; }
  .hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-primary {
    background: var(--gold); color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 14px; letter-spacing: .1em; text-transform: uppercase;
    padding: 14px 36px; border: none; cursor: pointer; text-decoration: none;
    transition: background .2s, transform .15s;
  }
  .btn-primary:hover { background: var(--gold2); transform: translateY(-2px); }
  .btn-outline {
    background: transparent; color: var(--white);
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 14px; letter-spacing: .1em; text-transform: uppercase;
    padding: 14px 36px; border: 2px solid rgba(255,255,255,0.35);
    cursor: pointer; text-decoration: none; transition: border-color .2s, color .2s, transform .15s;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
  .scroll-hint {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    z-index: 2; opacity: .55; animation: bob 2s ease-in-out infinite;
  }
  .scroll-hint span { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--dim); }
  .scroll-hint svg { width: 20px; }
  @keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

  /* STATS */
  .stats-band {
    background: var(--gold); padding: 22px 6vw;
    display: flex; justify-content: center; gap: clamp(32px,5vw,80px); flex-wrap: wrap;
  }
  .stat { text-align: center; }
  .stat-num { font-family: 'Barlow Condensed', sans-serif; font-size: 32px; font-weight: 800; color: var(--navy); line-height: 1; }
  .stat-label { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: rgba(11,31,58,.7); }

  /* SECTIONS */
  section { padding: 90px 6vw; }
  .section-eye { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
  .section-title { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px,4vw,52px); font-weight: 800; text-transform: uppercase; line-height: 1.05; margin-bottom: 18px; }
  .section-title span { color: var(--gold); }
  .section-sub { color: var(--dim); font-size: 15px; max-width: 560px; line-height: 1.7; margin-bottom: 52px; }

  /* SERVICES */
  .services-bg { background: var(--navy2); }
  .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 2px; }
  .service-card {
    background: var(--navy); padding: 36px 28px;
    border-top: 3px solid transparent;
    transition: border-color .25s, background .25s;
  }
  .service-card:hover { border-color: var(--gold); background: #0f2444; }
  .service-icon { width: 52px; height: 52px; margin-bottom: 20px; color: var(--gold); }
  .service-icon svg { width: 100%; height: 100%; }
  .service-name { font-family: 'Barlow Condensed', sans-serif; font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 8px; }
  .service-desc { color: var(--dim); font-size: 14px; line-height: 1.65; }
  .service-list { color: var(--dim); font-size: 13px; line-height: 1.9; list-style: none; margin-top: 12px; }
  .service-list li { padding-left: 16px; position: relative; }
  .service-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

  /* WHY */
  .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .why-visual { position: relative; overflow: hidden; min-height: 480px; }
  .why-visual img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.55) saturate(1.1); }
  .why-visual-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent, var(--navy2)); }
  .why-content { background: var(--navy2); padding: 60px 48px; display: flex; flex-direction: column; justify-content: center; }
  .why-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
  .why-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--text); line-height: 1.5; }
  .why-check { width: 22px; height: 22px; flex-shrink: 0; background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; margin-top: 1px; }

  /* MODES */
  .modes-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
  .mode-tile { background: var(--navy2); padding: 40px 24px; text-align: center; border-bottom: 3px solid transparent; transition: border-color .2s; }
  .mode-tile:hover { border-color: var(--gold2); }
  .mode-tile svg { width: 44px; height: 44px; color: var(--gold); margin-bottom: 16px; display: block; margin-left: auto; margin-right: auto; }
  .mode-tile-name { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }

  /* CONTACT */
  .contact-section { background: var(--navy2); display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
  .contact-info { padding: 80px 6vw; }
  .contact-cards { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
  .contact-card { display: flex; align-items: center; gap: 18px; background: var(--navy); padding: 20px 24px; border-left: 3px solid var(--gold); }
  .contact-card svg { width: 24px; height: 24px; color: var(--gold); flex-shrink: 0; }
  .contact-card-label { font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--dim); margin-bottom: 3px; }
  .contact-card-value { font-size: 16px; font-weight: 600; color: var(--white); }
  .contact-form-wrap { background: var(--navy); padding: 80px 6vw; }
  .form-title { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 800; text-transform: uppercase; margin-bottom: 28px; }
  .form-row { display: flex; gap: 14px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; flex: 1; }
  .form-group label { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--dim); }
  .form-group input, .form-group select, .form-group textarea {
    background: var(--navy2); border: 1px solid rgba(200,146,42,.25);
    color: var(--white); font-family: 'Barlow', sans-serif;
    font-size: 14px; padding: 12px 16px; outline: none; transition: border-color .2s;
  }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
  .form-group textarea { resize: vertical; min-height: 100px; }
  .form-submit {
    background: var(--gold); color: var(--navy);
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 14px; letter-spacing: .12em; text-transform: uppercase;
    padding: 14px 40px; border: none; cursor: pointer;
    transition: background .2s; width: 100%; margin-top: 6px;
  }
  .form-submit:hover { background: var(--gold2); }
  /* PAGE HERO */
.page-hero{
  position:relative;
  min-height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:120px 24px 80px;
  text-align:center;
  overflow:hidden;
  background:
    linear-gradient(rgba(4,17,35,.78), rgba(4,17,35,.88)),
    url('images/services-hero.jpg') center/cover no-repeat;
}

.page-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right,
      rgba(200,146,42,.18),
      transparent 35%);
}

.page-hero-inner{
  position:relative;
  z-index:2;
  max-width:900px;
}

.breadcrumb{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom:24px;
  font-size:13px;
  color:var(--dim);
  text-transform:uppercase;
  letter-spacing:.08em;
}

.breadcrumb a{
  color:var(--gold);
  text-decoration:none;
  transition:.3s;
}

.breadcrumb a:hover{
  opacity:.8;
}

.page-eyebrow{
  display:inline-block;
  margin-bottom:16px;
  padding:6px 14px;
  background:rgba(200,146,42,.12);
  border:1px solid rgba(200,146,42,.35);
  color:var(--gold);
  font-family:'Barlow Condensed',sans-serif;
  font-size:12px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.page-title{
  font-family:'Barlow Condensed',sans-serif;
  font-size:clamp(52px,8vw,96px);
  font-weight:800;
  line-height:.95;
  text-transform:uppercase;
  margin-bottom:20px;
  color:var(--text);
}

.page-title span{
  color:var(--gold);
}

.page-subtitle{
  max-width:700px;
  margin:0 auto;
  font-size:16px;
  line-height:1.8;
  color:var(--dim);
}

@media(max-width:768px){
  .page-hero{
    min-height:340px;
    padding:100px 20px 60px;
  }

  .page-title{
    font-size:48px;
  }

  .page-subtitle{
    font-size:14px;
  }

  .breadcrumb{
    flex-wrap:wrap;
  }
}

  /* FOOTER */
  footer {
    background: #07172A; padding: 40px 6vw;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 20px; border-top: 2px solid var(--gold);
  }
  .footer-logo img { height: 36px; filter: brightness(0) invert(1); opacity: .75; }
  .footer-copy { font-size: 13px; color: var(--dim); }
  .footer-copy span { color: var(--gold); }
  .footer-rc { font-size: 12px; color: var(--dim); letter-spacing: .1em; }

  @media(max-width:900px) {
    .nav-links { display: none; }
    .why-grid, .contact-section { grid-template-columns: 1fr; }
    .why-visual { min-height: 260px; }
    .modes-row { grid-template-columns: repeat(2,1fr); }
    .form-row { flex-direction: column; gap: 0; }
  }