:root {
  --brand-blue: #1AA0DA;
  --brand-orange: #F58220;
  --brand-green: #5BB947;
  --brand-navy: #0F1E3D;
  --brand-navy-2: #16264D;
  --muted: #f6f8fb;
  --text: #1c2436;
  --text-muted: #5b6478;
  --border: #e6eaf2;
  --shadow-soft: 0 12px 30px -10px rgba(26,160,218,0.25);
  --gradient-hero: linear-gradient(135deg, #0F1E3D 0%, #16264D 50%, #0F1E3D 100%);
  --gradient-brand: linear-gradient(135deg, #1AA0DA, #5BB947);
  --gradient-warm: linear-gradient(135deg, #F58220, #5BB947);
}

* { box-sizing: border-box; }

html, body { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: #fff;
  margin: 0;
  line-height: 1.6;
}

h1,h2,h3,h4,h5 { font-weight: 700; color: var(--text); letter-spacing: -0.01em; }

a { text-decoration: none; }

.text-muted-2 { color: var(--text-muted); }
.text-orange { color: var(--brand-orange) !important; }
.text-blue { color: var(--brand-blue) !important; }
.text-green { color: var(--brand-green) !important; }
.text-navy { color: var(--brand-navy) !important; }

.bg-navy { background-color: var(--brand-navy) !important; }
.bg-soft { background-color: var(--muted) !important; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .navbar-brand img { height: 46px; }
.site-header .nav-link {
  color: #2b3550 !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem !important;
  transition: color .2s;
}
.site-header .nav-link:hover,
.site-header .nav-link.active {
  color: var(--brand-blue) !important;
}
.site-header .nav-link.active { font-weight: 700; }

/* ---------- Buttons ---------- */
.btn-brand {
  background: var(--brand-orange);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 20px -8px rgba(245,130,32,0.5);
}
.btn-brand:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 12px 28px -8px rgba(245,130,32,0.6); }

.btn-outline-light-brand {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  transition: background .2s;
}
.btn-outline-light-brand:hover { background: rgba(255,255,255,0.12); color: #fff; }

.btn-ghost-blue {
  background: #fff;
  color: var(--brand-navy);
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: transform .2s;
}
.btn-ghost-blue:hover { transform: translateY(-2px); color: var(--brand-blue); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--gradient-hero);
  padding: 90px 0 100px;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
}
.hero::before {
  width: 480px; height: 480px;
  background: var(--brand-orange);
  top: -120px; right: -120px;
}
.hero::after {
  width: 420px; height: 420px;
  background: var(--brand-green);
  bottom: -160px; left: -100px;
}
.hero > .container { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
}
.hero-eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand-green); box-shadow: 0 0 10px var(--brand-green); }

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin: 18px 0 18px;
}
.hero h1 .gradient-text {
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero .lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  max-width: 580px;
}
.hero-checks {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 22px;
  max-width: 560px;
}
.hero-checks li {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-checks svg { flex: none; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
  max-width: 520px;
}
.hero-stats .stat {
  padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
}
.hero-stats .stat .num { font-size: 1.6rem; font-weight: 800; }
.hero-stats .stat .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.08em; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.hero-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -16px;
  background: linear-gradient(135deg, rgba(245,130,32,0.3), rgba(91,185,71,0.3));
  filter: blur(40px);
  z-index: -1;
  border-radius: 30px;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

.hero-floater {
  position: absolute;
  background: #fff;
  color: var(--text);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.25);
  font-size: 0.85rem;
  font-weight: 600;
  animation: floaty 4s ease-in-out infinite;
}
.hero-floater .badge-dot {
  width: 36px; height: 36px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700;
}
.hero-floater.top { top: 18px; left: -10px; }
.hero-floater.bottom { bottom: 18px; right: -12px; animation-delay: 1.5s; }

@keyframes floaty {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-marquee {
  margin-top: 64px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
}
.hero-marquee .track {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-title { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 12px; }
.section-eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--brand-orange); margin-bottom: 10px;
}

.pillar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 14px;
}

.program-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  height: 100%;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.program-card:hover { transform: translateY(-3px); border-color: rgba(26,160,218,0.4); box-shadow: 0 10px 24px -10px rgba(26,160,218,0.25); }
.program-card .num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(26,160,218,0.10); color: var(--brand-blue);
  font-weight: 700; margin-bottom: 12px;
}
.program-card h3 { font-size: 1.02rem; margin: 0; }
.program-card p { color: var(--text-muted); font-size: 0.92rem; margin: 6px 0 0; }

.image-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
}
.image-card img { width: 100%; height: 220px; object-fit: cover; display: block; }
.image-card .body { padding: 20px; }

.cta-band {
  background: var(--gradient-brand);
  color: #fff;
  border-radius: 24px;
  padding: 42px 38px;
}
.cta-band h2 { color: #fff; }

.tag-pill {
  display: inline-block; padding: 6px 14px; background: #fff;
  border: 1px solid var(--border); border-radius: 999px;
  font-size: 0.85rem; color: var(--text); margin: 4px;
}

/* Forms */
.form-control:focus { border-color: var(--brand-blue); box-shadow: 0 0 0 0.2rem rgba(26,160,218,0.15); }

/* Footer */
.site-footer {
  background: var(--brand-navy);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 24px;
}
.site-footer h5 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
.site-footer a { color: rgba(255,255,255,0.75); transition: color .2s; }
.site-footer a:hover { color: #fff; }
.site-footer .logo-box { background: #fff; padding: 10px; border-radius: 10px; display: inline-block; }
.site-footer .logo-box img { height: 40px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 36px; padding-top: 18px; font-size: 0.82rem; color: rgba(255,255,255,0.55); text-align: center; }

@media (max-width: 991.98px) {
  .hero { padding: 60px 0 80px; }
  .hero-visual { margin-top: 40px; }
  .hero-floater.top, .hero-floater.bottom { display: none; }
}
