@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Amiri:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --green:        #1a6b3a;
  --green-dark:   #0d3d20;
  --green-mid:    #25914f;
  --green-light:  #d4eddc;
  --gold:         #c9922a;
  --gold-bright:  #f0b840;
  --gold-pale:    #fdf5e0;
  --gold-dark:    #8c620d;
  --white:        #ffffff;
  --off-white:    #f8f9f4;
  --dark:         #0b1f11;
  --dark-mid:     #162b1d;
  --text:         #1c2e22;
  --text-mid:     #4a6352;
  --text-muted:   #7a9080;
  --transition:   all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm:    0 4px 20px rgba(0,0,0,0.06);
  --shadow-md:    0 12px 40px rgba(0,0,0,0.12);
  --shadow-lg:    0 30px 60px rgba(0,0,0,0.18);
  --radius:       20px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--off-white);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.15; }
h4, h5, p, a, span, li { font-family: 'Outfit', sans-serif; }

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; width: 100%;
  padding: 22px 70px;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 999;
  transition: var(--transition);
}

nav.scrolled {
  padding: 14px 70px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px) saturate(200%);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

.nav-logo { height: 52px; transition: var(--transition); }
nav.scrolled .nav-logo { height: 44px; }

.nav-links { display: flex; gap: 38px; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 13.5px; font-weight: 600;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--white); transition: var(--transition);
}
nav.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--gold-bright) !important; }

.btn-nav {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 11px 28px; border-radius: 50px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.5px;
  text-decoration: none; transition: var(--transition);
  border: 2px solid var(--gold);
}
.btn-nav:hover {
  background: transparent !important;
  color: var(--gold) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,146,42,0.3);
}

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
nav.scrolled .hamburger span { background: var(--text); }

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative; display: flex; align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.38; filter: saturate(0.7) brightness(0.9);
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(115deg,
    rgba(10, 30, 15, 0.97) 0%,
    rgba(26, 107, 58, 0.55) 60%,
    rgba(201, 146, 42, 0.15) 100%);
}

/* animated bokeh orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
  animation: floatOrb 8s ease-in-out infinite alternate;
}
.hero-orb-1 { width: 500px; height: 500px; right: -80px; top: -100px; background: rgba(26,107,58,0.35); animation-delay: 0s; }
.hero-orb-2 { width: 350px; height: 350px; right: 200px; bottom: -80px; background: rgba(201,146,42,0.25); animation-delay: 2s; }
.hero-orb-3 { width: 250px; height: 250px; left: 40%; top: 20%; background: rgba(37,145,79,0.18); animation-delay: 4s; }

@keyframes floatOrb { from { transform: translateY(0) scale(1); } to { transform: translateY(-30px) scale(1.08); } }

.hero-content {
  position: relative; z-index: 10;
  padding: 140px 80px 80px;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,146,42,0.18);
  border: 1px solid rgba(201,146,42,0.4);
  backdrop-filter: blur(10px);
  padding: 8px 20px; border-radius: 50px;
  margin-bottom: 30px;
}
.hero-badge span { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-bright); }
.hero-badge::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-bright); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(1.4); } }

.hero h1 {
  font-size: 78px; font-weight: 900;
  color: var(--white); margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero h1 em { color: var(--gold-bright); font-style: italic; }

.hero-desc {
  font-size: 19px; color: rgba(255,255,255,0.75);
  max-width: 580px; margin-bottom: 48px; font-weight: 400;
}

.hero-btns { display: flex; gap: 18px; flex-wrap: wrap; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); padding: 16px 40px; border-radius: 50px;
  text-decoration: none; font-weight: 800; font-size: 15px;
  letter-spacing: 0.3px; transition: var(--transition);
  box-shadow: 0 8px 30px rgba(201,146,42,0.4);
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201,146,42,0.55); }

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white); padding: 16px 40px; border-radius: 50px;
  text-decoration: none; font-weight: 600; font-size: 15px;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-3px); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px; z-index: 10;
}
.hero-scroll span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollAnim 2s ease-in-out infinite; }
@keyframes scrollAnim { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ══════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════ */
.stats-bar {
  background: var(--green-dark);
  padding: 0 80px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 3px solid var(--gold);
}

.stat-item {
  padding: 50px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.04); }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 58px; font-weight: 900;
  color: var(--gold-bright); line-height: 1;
  display: block; margin-bottom: 8px;
}
.stat-suffix { font-size: 38px; }
.stat-label {
  font-size: 12px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
}

/* ══════════════════════════════════════════
   SECTION BASE
══════════════════════════════════════════ */
.section { padding: 130px 80px; }

.eyebrow {
  display: inline-block;
  font-size: 11.5px; font-weight: 800; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
  padding: 6px 16px; border-radius: 50px;
  background: rgba(201,146,42,0.1);
  border: 1px solid rgba(201,146,42,0.25);
}

.section-title {
  font-size: 52px; color: var(--text);
  margin-bottom: 20px;
}
.section-title em { color: var(--green); font-style: italic; }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-bright); }

.section-desc { font-size: 18px; color: var(--text-mid); max-width: 620px; }
.section-desc.light { color: rgba(255,255,255,0.6); }

.section-header { text-align: center; margin-bottom: 80px; }
.section-header .section-desc { margin: 0 auto; }

/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about { background: var(--white); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 90px; align-items: center;
}

.about-text-block { font-size: 17px; color: var(--text-mid); margin-bottom: 40px; line-height: 1.8; }

.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }

.pillar {
  padding: 24px; border-radius: 16px;
  background: var(--off-white);
  border: 1.5px solid transparent;
  transition: var(--transition);
}
.pillar:hover {
  border-color: var(--green);
  background: var(--green-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}
.pillar-icon { font-size: 30px; margin-bottom: 12px; display: block; }
.pillar h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.pillar p { font-size: 13px; color: var(--text-muted); }

.about-visual { position: relative; }
.about-img { width: 100%; border-radius: 24px; box-shadow: var(--shadow-lg); display: block; }

.about-badge {
  position: absolute; bottom: -36px; left: -36px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  padding: 36px; border-radius: 20px;
  box-shadow: 0 20px 50px rgba(26,107,58,0.35);
  text-align: center;
}
.about-badge .big-num {
  font-family: 'Playfair Display', serif;
  font-size: 52px; font-weight: 900; line-height: 1;
  color: var(--gold-bright); display: block;
}
.about-badge .big-label { font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; opacity: 0.8; margin-top: 6px; display: block; }

.about-strip {
  margin-top: 80px; padding: 40px 50px;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: 24px; display: flex; gap: 60px; align-items: center;
  box-shadow: var(--shadow-md);
}
.strip-item { text-align: center; }
.strip-num { font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 900; color: var(--gold-bright); display: block; }
.strip-lbl { font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.6); display: block; margin-top: 4px; }
.strip-divider { width: 1px; background: rgba(255,255,255,0.15); align-self: stretch; }

/* ══════════════════════════════════════════
   PROGRAMS
══════════════════════════════════════════ */
.programs { background: var(--off-white); }

.programs-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}

.prog-card {
  border-radius: var(--radius); overflow: hidden;
  position: relative; height: 480px;
  cursor: pointer; transition: var(--transition);
}
.prog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.prog-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: var(--transition);
}
.prog-card:hover img { transform: scale(1.07); }

.prog-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,31,17,0.97) 0%, rgba(11,31,17,0.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px;
}

.prog-tag {
  display: inline-block;
  background: var(--gold); color: var(--dark);
  font-size: 10px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 50px;
  margin-bottom: 14px; width: fit-content;
}

.prog-overlay h3 { font-size: 26px; color: var(--white); margin-bottom: 12px; }

.prog-overlay p {
  font-size: 14px; color: rgba(255,255,255,0.65);
  transform: translateY(16px); opacity: 0;
  transition: var(--transition);
}
.prog-card:hover .prog-overlay p { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════
   VOCATIONAL TRADES
══════════════════════════════════════════ */
.trades {
  background: var(--dark);
  position: relative; overflow: hidden;
}
.trades::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--green));
}

.trades-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px;
}

.trade-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px; padding: 36px;
  text-align: center; transition: var(--transition);
  position: relative; overflow: hidden;
}
.trade-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,107,58,0.15), transparent);
  opacity: 0; transition: var(--transition);
}
.trade-card:hover { border-color: var(--gold); transform: translateY(-6px); }
.trade-card:hover::before { opacity: 1; }

.trade-icon { font-size: 44px; display: block; margin-bottom: 20px; }
.trade-card h4 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.trade-card p { font-size: 13.5px; color: rgba(255,255,255,0.45); }
.trade-num {
  position: absolute; top: 20px; right: 24px;
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  color: var(--gold); opacity: 0.6;
}

/* ══════════════════════════════════════════
   IMPACT QUOTE STRIP
══════════════════════════════════════════ */
.quote-strip {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 90px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.quote-strip::before {
  content: '"'; font-family: 'Playfair Display', serif;
  font-size: 400px; line-height: 1;
  color: rgba(255,255,255,0.04);
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.quote-strip blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 38px; font-style: italic;
  color: var(--white); max-width: 900px;
  margin: 0 auto 24px; line-height: 1.45;
  position: relative; z-index: 1;
}
.quote-strip blockquote em { color: var(--gold-bright); font-style: normal; }
.quote-strip cite { font-size: 14px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════
   CONTACT / CTA
══════════════════════════════════════════ */
.cta-section {
  background: var(--off-white); padding: 130px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.cta-content .section-title { margin-bottom: 20px; }
.cta-content p { font-size: 17px; color: var(--text-mid); margin-bottom: 36px; line-height: 1.8; }

.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--white); border-radius: 16px; padding: 22px 28px;
  border: 1.5px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--green); transform: translateX(6px); }
.contact-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--green-light); display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.contact-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-value { font-size: 16px; font-weight: 600; color: var(--text); }

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
footer {
  background: var(--dark-mid);
  padding: 80px 80px 36px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 80px; margin-bottom: 60px;
}

.footer-logo { height: 56px; margin-bottom: 22px; display: block; }
.footer-about { font-size: 14.5px; color: rgba(255,255,255,0.5); max-width: 360px; line-height: 1.8; margin-bottom: 28px; }

.social-row { display: flex; gap: 12px; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; text-decoration: none;
  transition: var(--transition);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); transform: translateY(-3px); }

.footer-col h5 {
  font-size: 13px; font-weight: 800; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold-bright);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a {
  text-decoration: none; font-size: 14.5px;
  color: rgba(255,255,255,0.5); transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--white); padding-left: 6px; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 13px; color: rgba(255,255,255,0.3);
}
.footer-bottom span { color: var(--gold); }

/* ══════════════════════════════════════════
   THE STAKES
══════════════════════════════════════════ */
.stakes {
  background: linear-gradient(150deg, var(--green-dark) 0%, var(--dark) 100%);
  position: relative; overflow: hidden;
}
.stakes::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green-mid), var(--gold));
}
.stakes-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.stakes-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.stakes-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px; padding: 28px;
  transition: var(--transition);
}
.stakes-card:hover {
  background: rgba(201,146,42,0.12);
  border-color: rgba(201,146,42,0.4);
  transform: translateY(-4px);
}
.stakes-icon { font-size: 32px; display: block; margin-bottom: 14px; }
.stakes-card h4 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.stakes-card p { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ══════════════════════════════════════════
   THREE PILLARS
══════════════════════════════════════════ */
.pillars-section { background: var(--off-white); }

.pillars-big {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}

.pillar-big {
  border-radius: 24px; padding: 52px 40px;
  position: relative; overflow: hidden;
  transition: var(--transition);
}
.pillar-big:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.pillar-green { background: linear-gradient(150deg, var(--green), var(--green-dark)); }
.pillar-gold  { background: linear-gradient(150deg, var(--gold-dark), #5a3d08); }
.pillar-dark  { background: linear-gradient(150deg, #1c2e22, var(--dark)); border: 1px solid rgba(255,255,255,0.06); }

.pillar-big-num {
  position: absolute; top: 30px; right: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 80px; font-weight: 900;
  color: rgba(255,255,255,0.06); line-height: 1;
}
.pillar-big-icon { font-size: 48px; display: block; margin-bottom: 24px; }
.pillar-big h3 { font-size: 30px; color: var(--white); margin-bottom: 16px; }
.pillar-big p { font-size: 15px; color: rgba(255,255,255,0.65); line-height: 1.75; margin-bottom: 28px; }

.pillar-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pillar-list li {
  font-size: 13.5px; color: rgba(255,255,255,0.55);
  padding-left: 20px; position: relative;
}
.pillar-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--gold-bright); font-weight: 700;
}

/* ══════════════════════════════════════════
   STRATEGIC ALLIANCE
══════════════════════════════════════════ */
.alliance {
  background: var(--dark);
  position: relative;
}
.alliance-inner {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 90px; align-items: center;
}
.alliance-logos {
  display: flex; align-items: center; justify-content: center;
  gap: 30px;
}
.alliance-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 36px 28px;
  text-align: center; flex: 1; transition: var(--transition);
}
.alliance-card:hover { border-color: var(--gold); background: rgba(201,146,42,0.08); }
.alliance-logo-box {
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.alliance-logo-box.ndlea { background: rgba(201,146,42,0.15); }
.alliance-card h4 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.alliance-card p { font-size: 13px; color: rgba(255,255,255,0.45); }
.alliance-plus {
  font-size: 28px; color: var(--gold); font-weight: 900; flex-shrink: 0;
}

/* ══════════════════════════════════════════
   THE PLAN
══════════════════════════════════════════ */
.plan-section { background: var(--white); }

.plan-steps {
  display: flex; flex-direction: column; gap: 0;
  max-width: 820px; margin: 0 auto;
}
.plan-step {
  display: grid; grid-template-columns: 80px 40px 1fr;
  gap: 0 30px; align-items: start;
}
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: var(--white);
  font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; box-shadow: 0 8px 24px rgba(26,107,58,0.35);
  position: relative; z-index: 1;
}
.step-connector {
  width: 2px;
  background: linear-gradient(to bottom, var(--green), rgba(201,146,42,0.3));
  height: 120px; margin: 0 auto;
  margin-top: -4px;
}
.step-connector.last { background: transparent; }
.step-body { padding: 12px 0 50px; }
.step-label { font-size: 11px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.step-body h3 { font-size: 30px; color: var(--text); margin-bottom: 14px; }
.step-body p { font-size: 16px; color: var(--text-mid); line-height: 1.8; }

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.cta-section {
  background: var(--off-white); padding: 130px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.cta-content p { font-size: 17px; color: var(--text-mid); line-height: 1.8; }

.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green); padding: 16px 40px; border-radius: 50px;
  text-decoration: none; font-weight: 700; font-size: 15px;
  transition: var(--transition);
}
.btn-outline-dark:hover {
  background: var(--green); color: var(--white);
  transform: translateY(-3px); box-shadow: 0 10px 28px rgba(26,107,58,0.3);
}

.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: center; gap: 20px;
  background: var(--white); border-radius: 16px; padding: 22px 28px;
  border: 1.5px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.contact-card:hover { border-color: var(--green); transform: translateX(6px); box-shadow: var(--shadow-sm); }
.contact-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--green-light); display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.contact-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-value { font-size: 15px; font-weight: 600; color: var(--text); }

/* ══════════════════════════════════════════
   FOOTER BRAND COL
══════════════════════════════════════════ */
.footer-brand-col { /* alias */ }
footer { background: var(--dark-mid); padding: 80px 80px 36px; }

/* ══════════════════════════════════════════
   SCROLL REVEAL
══════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(36px); transition: 0.85s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: 0.85s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: 0.85s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  nav, nav.scrolled { padding: 18px 40px; }
  .section { padding: 100px 40px; }
  .hero-content { padding: 130px 40px 80px; }
  .hero h1 { font-size: 60px; }
  .stats-bar { padding: 0 40px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { margin-top: 50px; }
  .about-badge { left: -10px; }
  .programs-grid { grid-template-columns: repeat(2, 1fr); }
  .trades-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-section { grid-template-columns: 1fr; }
  .about-strip { flex-wrap: wrap; gap: 30px; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 44px; }
  .hero-content { padding: 120px 28px 60px; }
  .section-title { font-size: 36px; }
  .section { padding: 80px 28px; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); padding: 0 28px; }
  .programs-grid { grid-template-columns: 1fr; }
  .trades-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 50px; }
  footer { padding: 60px 28px 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .quote-strip { padding: 70px 28px; }
  .quote-strip blockquote { font-size: 24px; }
  .cta-section { padding: 80px 28px; grid-template-columns: 1fr; }
  .stakes-inner { grid-template-columns: 1fr; gap: 50px; }
  .stakes-cards { grid-template-columns: 1fr; }
  .pillars-big { grid-template-columns: 1fr; }
  .alliance-inner { grid-template-columns: 1fr; gap: 50px; }
  .alliance-logos { flex-direction: column; }
  .plan-step { grid-template-columns: 60px 30px 1fr; gap: 0 20px; }
  .step-num { width: 56px; height: 56px; font-size: 22px; }
}

/* ── Mobile Nav Open */
.nav-links.mobile-open {
  display: flex; flex-direction: column;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11,31,17,0.97);
  backdrop-filter: blur(20px);
  align-items: center; justify-content: center;
  gap: 36px; z-index: 998;
}
.nav-links.mobile-open a {
  font-size: 26px !important; color: var(--white) !important;
  letter-spacing: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
