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

:root {
  --bg:       #f5f3ee;
  --bg2:      #edeae3;
  --white:    #fdfcfa;
  --navy:     #003F76;
  --orange:   #e54d18;
  --orange2:  #ff6b35;
  --text:     #111111;
  --muted:    #5a5a5a;
  --dim:      #999;
  --border:   rgba(0,0,0,0.1);
  --border2:  rgba(0,0,0,0.06);
  --nav-h:    72px;
  --ease:     cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  background: #f5f3ee;
  color-scheme: light;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f5f3ee;
  background: var(--bg);
  color: #111111;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── NAV ──────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(245,243,238,0.96);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
}
.nav-logo svg { height: 32px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  padding: 8px 16px; border-radius: 6px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--muted);
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: rgba(0,0,0,0.06); }
.nav-cta {
  background: var(--navy) !important; color: #fff !important;
  border-radius: 6px !important;
}
.nav-cta:hover { background: #00529e !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 6px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; border: none; transition: 0.25s var(--ease);
}
.btn-dark { background: var(--navy); color: #fff; }
.btn-dark:hover { background: #00529e; transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: #fff !important; }
.btn-orange:hover { background: var(--orange2) !important; color: #fff !important; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(229,77,24,0.3); }
.btn-outline { background: transparent; color: var(--text); border: 1.5px solid rgba(0,0,0,0.2); }
.btn-outline:hover { border-color: var(--text); }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

/* ── SECTION ──────────────────────────────────────── */
.section { padding: 100px 48px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); display: flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.label::before { content: ''; width: 28px; height: 2px; background: var(--orange); flex-shrink: 0; }

/* ── DIVIDER ──────────────────────────────────────── */
.divider { width: 100%; height: 1px; background: var(--border); }

/* ── BADGES ───────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 12px; border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
}
.badge-dark { background: var(--navy); color: #fff; }
.badge-orange { background: rgba(229,77,24,0.1); color: var(--orange); border: 1px solid rgba(229,77,24,0.2); }
.badge-green { background: rgba(34,197,94,0.1); color: #16a34a; border: 1px solid rgba(34,197,94,0.2); }
.badge-white { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.2); }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--navy); color: #fff;
  padding: 72px 48px 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 20px; line-height: 1.8; }
.footer-title { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.3);
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ── PAGE HERO ────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 72px) 48px 72px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 1280px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(52px, 7vw, 96px); margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--muted); max-width: 560px; line-height: 1.65; font-family: 'Barlow', sans-serif; font-weight: 400; }

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1024px) {
  .section { padding: 72px 24px; }
  .nav { padding: 0 24px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--bg); border-bottom: 1px solid var(--border);
    padding: 20px 24px; gap: 4px;
  }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer { padding: 48px 24px 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-hero { padding: calc(var(--nav-h) + 40px) 24px 48px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── Scroll animations ────────────────────────────────── */
.will-anim {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1),
              transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.will-anim.anim-in {
  opacity: 1;
  transform: none;
}
