﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1B2D5E;
  --navy-dark:   #0D1A3A;
  --green:       #2E7D4F;
  --green-light: #3DAA68;
  --red:         #C0392B;
  --cream:       #FAF9F6;
  --cream-2:     #F0EDE6;
  --white:       #FFFFFF;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: rgba(250,249,246,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(27,45,94,0.08);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(27,45,94,0.10); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo svg { width: 40px; height: 40px; }
.nav-logo-text { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--navy); line-height: 1.1; }
.nav-logo-text span { color: var(--green); }

.nav-links { display: flex; align-items: center; gap: 8px; list-style: none; position: relative; }
.nav-links > li { position: relative; }
.nav-links a {
  text-decoration: none; font-size: .8rem; font-weight: 600;
  color: var(--navy); letter-spacing: .05em; text-transform: uppercase;
  padding: 8px 12px; border-radius: 0;
  transition: color .2s, background .2s;
  display: flex; align-items: center; gap: 4px;
}
.nav-links a:hover, .nav-links a.active { color: var(--green); background: rgba(46,125,79,0.08); }
.nav-links .btn-nav {
  background: var(--navy) !important; color: var(--white) !important;
  padding: 10px 20px !important; border-radius: 0 !important;
  transition: background .2s, transform .2s !important;
}
.nav-links .btn-nav:hover { background: var(--green) !important; transform: translateY(-1px); }

/* dropdown */
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: 0;
  box-shadow: 0 12px 40px rgba(27,45,94,0.14);
  padding: 8px; min-width: 200px;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s;
  border: 1px solid rgba(27,45,94,0.06);
}
.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 0;
  font-size: .82rem; text-transform: none; letter-spacing: 0;
  color: var(--navy) !important; background: transparent !important;
}
.dropdown a:hover { background: rgba(46,125,79,0.08) !important; color: var(--green) !important; }
.dropdown a .d-icon { font-size: 1.1rem; }
.caret { font-size: .65rem; opacity: .5; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--navy-dark);
  padding: 140px 48px 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,125,79,0.2) 0%, transparent 70%);
  top: -100px; right: -100px; border-radius: 50%; pointer-events: none;
}
.page-hero .label {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-light); margin-bottom: 14px;
}
.page-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700; color: var(--white); line-height: 1.0;
  max-width: 720px; margin-bottom: 20px;
}
.page-hero p {
  color: rgba(255,255,255,0.65); font-size: 1.05rem;
  line-height: 1.7; max-width: 560px;
}

/* ── COMMON SECTIONS ── */
.section { padding: 80px 48px; max-width: 1200px; margin: 0 auto; }
.section-alt { background: var(--cream-2); }
.section-alt .section { margin: 0 auto; }

.section-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green); margin-bottom: 14px;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700; color: var(--navy); margin-bottom: 16px; line-height: 1.05;
}
.section-sub {
  color: rgba(27,45,94,0.65); font-size: 1rem;
  line-height: 1.75; max-width: 620px; margin-bottom: 48px;
}

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; border: none; cursor: pointer; font-family: 'Inter', sans-serif; font-weight: 700; border-radius: 0; transition: background .2s, transform .2s, box-shadow .2s; }
.btn-primary { background: var(--green); color: var(--white); padding: 14px 32px; font-size: .95rem; box-shadow: 0 4px 20px rgba(46,125,79,.3); }
.btn-primary:hover { background: var(--green-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(46,125,79,.4); }
.btn-outline { background: transparent; color: var(--navy); padding: 12px 28px; font-size: .9rem; border: 1.5px solid rgba(27,45,94,.25); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-danger { background: #C0392B; color: var(--white); padding: 14px 32px; font-size: .95rem; }
.btn-danger:hover { background: #E74C3C; transform: translateY(-2px); }

/* ── CARDS ── */
.card { background: var(--white); border-radius: 0; padding: 32px; border: 1.5px solid transparent; transition: border-color .25s, transform .25s, box-shadow .25s; }
.card:hover { border-color: rgba(46,125,79,.3); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(27,45,94,.08); }

/* ── FADE UP ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── MARQUEE ── */
.marquee-wrap { background: var(--green); padding: 13px 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-flex; animation: marquee 22s linear infinite; }
.marquee-track span { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: .14em; text-transform: uppercase; color: var(--white); padding: 0 28px; }
.marquee-track span.dot { color: rgba(255,255,255,.45); padding: 0 8px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── FOOTER ── */
footer { background: #EEF2F8; padding: 64px 48px 40px; color: rgba(27,45,94,.65); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 48px; border-bottom: 1px solid rgba(27,45,94,.12); margin-bottom: 32px; }
.footer-brand p { font-size: .85rem; margin-top: 14px; max-width: 260px; line-height: 1.7; color: rgba(27,45,94,.6); }
.footer-links h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .9rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(27,45,94,.4); margin-bottom: 14px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(27,45,94,.7); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--navy); }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }
.social-pill { display: inline-flex; align-items: center; gap: 6px; background: rgba(27,45,94,.08); color: rgba(27,45,94,.75); padding: 8px 16px; border-radius: 0; font-size: .8rem; font-weight: 600; text-decoration: none; transition: background .2s, color .2s; border: 1px solid rgba(27,45,94,.12); }
.social-pill:hover { background: var(--navy); color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: .78rem; flex-wrap: wrap; gap: 10px; color: rgba(27,45,94,.45); }
.footer-bottom a { color: rgba(27,45,94,.4); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 14px 24px; }
  .page-hero { padding: 120px 24px 60px; }
  .section { padding: 60px 24px; }
  footer { padding: 48px 24px 32px; }
}
@media (max-width: 640px) {
  .nav-links .hide-mobile { display: none; }
}



