@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600&display=swap');

:root {
  --navy:       #0b1f3a;
  --navy-mid:   #132d52;
  --navy-light: #1a3a65;
  --blue:       #1e6fbf;
  --blue-mid:   #2e8de8;
  --blue-light: #4aaeff;
  --white:      #ffffff;
  --off-white:  #f0f4f8;
  --gray:       #6b7a8d;
  --gray-light: #d1dce8;
  --text:       #0d1b2e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
h1,h2,h3,h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; line-height: 1.1; }
ul { list-style: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

.section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 12px;
}

.btn {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 34px; cursor: pointer; border: none;
  clip-path: polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
  transition: background .2s, transform .15s;
}
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-mid); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--blue-light); }
.btn-outline:hover { background: var(--blue-light); color: var(--navy); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 2px solid var(--blue); }
.btn-outline-dark:hover { background: var(--blue); color: var(--white); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* PAGE BANNER */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 55%, #0f2e54 100%);
  padding: 140px 0 90px; text-align: center; position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 80px,
    rgba(255,255,255,.015) 80px, rgba(255,255,255,.015) 81px);
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { font-size: clamp(2.8rem,6vw,5rem); color: var(--white); margin-bottom: 14px; }
.page-banner p { font-size: 1.05rem; color: #8aa0be; max-width: 580px; margin: 0 auto; }
.banner-line { width: 56px; height: 4px; background: var(--blue-mid); margin: 22px auto 0; }

/* NAVBAR */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(11,31,58,0.96); backdrop-filter: blur(14px);
  border-bottom: 2px solid rgba(74,174,255,0.18);
  transition: box-shadow .3s, background .3s;
}
.navbar.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.5); background: rgba(11,31,58,0.99); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo img { height: 56px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #b8ccdf; transition: color .2s;
  position: relative; padding-bottom: 10px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--blue-light); transition: width .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 8px !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); transition: transform .25s, opacity .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--navy); max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  border-bottom: 2px solid var(--blue);
}
.mobile-menu.open { max-height: 460px; padding: 12px 0 24px; }
.mobile-menu a {
  display: block; padding: 13px 28px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: #b8ccdf; transition: color .2s, background .2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--white); background: rgba(255,255,255,.04); }
.mobile-menu .m-cta { margin: 14px 28px 0; display: block; text-align: center; }

/* FOOTER */
footer { background: var(--navy); border-top: 3px solid var(--blue); color: var(--gray-light); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 48px; padding: 64px 28px 48px; }
.footer-brand p { font-size: .9rem; color: #8aa0be; line-height: 1.75; max-width: 280px; margin-top: 14px; }
.footer-logo { height: 48px; }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 3px;
  background: var(--navy-mid); border: 1px solid rgba(74,174,255,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue-light); font-size: .9rem; transition: background .2s;
}
.footer-socials a:hover { background: var(--blue); color: var(--white); }
.footer-col h4 {
  font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 18px; padding-bottom: 8px;
  border-bottom: 1px solid rgba(74,174,255,.18);
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: .9rem; color: #8aa0be; transition: color .2s; }
.footer-col ul li a:hover { color: var(--white); }
.footer-col ul li span { font-size: .9rem; color: #8aa0be; }
.fci { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.fci-icon { font-size: .95rem; color: var(--blue-light); flex-shrink: 0; margin-top: 2px; }
.fci-text { font-size: .9rem; color: #8aa0be; line-height: 1.5; }
.fci-text a { color: #8aa0be; transition: color .2s; }
.fci-text a:hover { color: var(--white); }
.footer-bottom { background: rgba(0,0,0,.22); border-top: 1px solid rgba(255,255,255,.05); }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 28px; flex-wrap: wrap; gap: 10px;
  max-width: 1180px; margin: 0 auto;
}
.footer-bottom-inner p { font-size: .8rem; color: #4a6a8a; }

@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media(max-width:860px){ .nav-links { display: none; } .hamburger { display: flex; } .mobile-menu { display: flex; } }
@media(max-width:580px){ .footer-grid { grid-template-columns: 1fr; } .footer-bottom-inner { flex-direction: column; text-align: center; } }
