/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --green: #c7a707;
  --green-dark: #9a8005;
  --green-mid: #d4b520;
  --green-light: #fdf3c0;
  --green-lighter: #fffbea;
  --accent: #2d5a3d;
  --accent-dark: #1e3d2a;
  --text: #1a1a2e;
  --muted: #5f6368;
  --white: #ffffff;
  --bg: #fdfaf0;
  --border: #eddfa8;
  --radius: 10px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(199,167,7,.08);
  --shadow: 0 8px 32px rgba(199,167,7,.14);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.15);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', 'Segoe UI', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: min(92%, 1200px); margin-inline: auto; }
section { padding: 96px 0; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin-inline: auto; }
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-light); color: var(--green);
  font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; padding: 6px 14px; border-radius: 30px; margin-bottom: 14px;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.2; margin-bottom: 16px; color: var(--text); }
.section-subtitle { color: var(--muted); max-width: 640px; line-height: 1.8; font-size: .97rem; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 30px; border-radius: 50px; font-weight: 700;
  font-size: .93rem; cursor: pointer; transition: var(--transition); border: none;
}
.btn-primary { background: var(--green); color: var(--accent); box-shadow: 0 4px 16px rgba(199,167,7,.35); }
.btn-primary:hover { background: var(--green-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(199,167,7,.45); }
.btn-outline { background: transparent; color: var(--green); border: 2px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }

/* ── Stats Strip ── */
.stats-strip {
  background: #111; border-bottom: 1px solid #222;
}
.stats-strip-inner {
  width: min(92%, 1200px); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.ss-item {
  display: flex; align-items: center; gap: 14px; flex: 1; justify-content: center;
}
.ss-item i {
  font-size: 1.6rem; color: var(--green); flex-shrink: 0;
}
.ss-item div { display: flex; flex-direction: column; }
.ss-num { font-size: 1.1rem; font-weight: 900; color: #fff; line-height: 1.2; }
.ss-label { font-size: .72rem; color: rgba(255,255,255,.5); font-weight: 500; margin-top: 2px; }
.ss-divider { width: 1px; height: 36px; background: rgba(255,255,255,.12); flex-shrink: 0; }
@media (max-width: 900px) {
  .stats-strip-inner { flex-wrap: wrap; gap: 16px; padding: 20px 0; }
  .ss-divider { display: none; }
  .ss-item { flex: 0 0 30%; justify-content: flex-start; }
}
@media (max-width: 500px) {
  .ss-item { flex: 0 0 45%; }
}


.top-bar {
  background: var(--accent); color: rgba(255,255,255,.85);
  font-size: .78rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 38px;
}
.top-bar-left { display: flex; align-items: center; gap: 24px; }
.top-bar-left a, .top-bar-left span {
  color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.top-bar-left a:hover { color: var(--green); }
.top-bar-left i { color: var(--green); font-size: .75rem; }
.top-bar-right { display: flex; align-items: center; gap: 14px; }
.top-bar-right a {
  color: rgba(255,255,255,.6); font-size: .85rem;
  transition: var(--transition);
}
.top-bar-right a:hover { color: var(--green); }
.top-bar-cin {
  color: rgba(255,255,255,.5); font-size: .72rem; font-weight: 500;
  border-left: 1px solid rgba(255,255,255,.15); padding-left: 12px; margin-left: 4px;
  display: flex; align-items: center; gap: 5px; letter-spacing: .3px;
}
.top-bar-cin i { color: var(--green); font-size: .7rem; }

/* ── Header ── */
header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
  transition: box-shadow var(--transition);
}
header.scrolled { box-shadow: var(--shadow-sm); }
.nav-wrapper { display: flex; align-items: center; justify-content: space-between; height: 100px; }
.logo img { height: 90px; width: auto; }
nav > ul { display: flex; align-items: center; gap: 2px; }
nav > ul > li { position: relative; }
nav > ul > li > a {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 13px; font-weight: 600; font-size: .88rem;
  border-radius: var(--radius); transition: var(--transition); color: var(--text);
}
nav > ul > li > a:hover,
nav > ul > li.active > a { color: var(--green); background: var(--green-light); }
.nav-cta { background: var(--green) !important; color: var(--accent) !important; border-radius: 50px !important; padding: 8px 18px !important; }
.nav-cta:hover { background: var(--green-dark) !important; color: var(--white) !important; }
.nav-cta i { color: var(--accent) !important; }

/* Dropdown */
nav ul li ul {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  position: absolute; top: 100%; left: 0;
  padding-top: 10px;
  background: transparent;
  min-width: 300px;
}
nav ul li ul::before {
  content: '';
  display: block;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--green);
  padding: 10px;
  position: absolute;
  inset: 10px 0 0 0;
  z-index: -1;
}
nav ul li ul li {
  position: relative;
  z-index: 1;
}
nav ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
nav ul li ul li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; font-size: .86rem; color: var(--text);
  transition: var(--transition); border-radius: var(--radius);
}
nav ul li ul li a i { color: var(--green); width: 16px; text-align: center; }
nav ul li ul li a:hover { background: var(--green-light); color: var(--green); padding-left: 18px; }
.has-dropdown > a::after { content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: .7rem; margin-left: 2px; color: var(--muted); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }
.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); }

/* ── Hero Slider ── */
.hero { position: relative; overflow: hidden; padding: 0px;}
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; z-index: 0; pointer-events: none; }
.hero-slide.active { position: relative; opacity: 1; z-index: 1; pointer-events: auto; }
.hero-slide-img { display: block; width: 100%; height: auto; }

/* Slider Controls */
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  color: var(--white); width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); backdrop-filter: blur(4px);
  font-size: .95rem;
}
.slider-btn:hover { background: var(--green); border-color: var(--green); color: var(--accent); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }
.slider-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 8px;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4); cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--green); width: 28px; border-radius: 4px; }

/* ── Stats Section ── */
.stats-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.stats-item {
  text-align: center; padding: 48px 24px;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
}
.stats-item:last-child { border-right: none; }
.stats-item:hover { background: rgba(255,255,255,.05); }
.stats-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(199,167,7,.15); border: 2px solid rgba(199,167,7,.3);
  color: var(--green); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
}
.stats-item:hover .stats-icon { background: var(--green); color: var(--accent); border-color: var(--green); }
.stats-num { font-size: 2.6rem; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 8px; transition: color var(--transition); }
.stats-label { font-size: .78rem; color: rgba(255,255,255,.7); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }


/* ── About ── */
.about { background: var(--white); }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-text p { color: var(--muted); line-height: 1.9; margin-bottom: 18px; font-size: .95rem; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 480px; object-fit: cover; display: block; }

/* ── Vision & Mission ── */
.vm-section { background: var(--bg); }
.vm-section .container { display: flex; flex-direction: column; gap: 80px; }
.vm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.vm-row.reverse .vm-image { order: 2; }
.vm-row.reverse .vm-content { order: 1; }
.vm-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.vm-image img { width: 100%; height: 420px; object-fit: cover; display: block; }
.vm-content p { color: var(--muted); line-height: 1.9; margin-bottom: 18px; font-size: .95rem; }
.vm-sdgs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.vm-sdgs span {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--green-light); color: var(--green-dark);
  font-size: .75rem; font-weight: 700; padding: 7px 14px;
  border-radius: 30px; border: 1px solid var(--border);
}
.vm-sdgs span i { color: var(--green); font-size: .72rem; }

/* ── Team ── */
.team { background: var(--bg); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px; }
.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.team-photo {
  height: 260px; background: linear-gradient(135deg, var(--green-light), #f0d95a);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; display: block; transition: transform .4s ease; }
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-info { padding: 22px 20px; }
.team-info h4 { font-weight: 800; margin-bottom: 4px; font-size: .97rem; }
.team-info > span { font-size: .82rem; color: var(--green); font-weight: 600; }
.team-socials { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
.team-socials a {
  width: 34px; height: 34px; border-radius: 50%; background: var(--green-light);
  color: var(--green); display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: var(--transition);
}
.team-socials a:hover { background: var(--green); color: var(--white); }

/* ── Services ── */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 24px; }
.service-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-lg);
  padding: 36px 28px; transition: var(--transition); cursor: pointer;
  display: block; position: relative; overflow: hidden;
  background: var(--white);
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--green-lighter), transparent);
  opacity: 0; transition: var(--transition);
}
.service-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-6px); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 60px; height: 60px; background: var(--green-light);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--green); margin-bottom: 20px;
  transition: var(--transition); position: relative;
}
.service-card:hover .service-icon { background: var(--green); color: var(--white); }
.service-card h4 { font-size: .97rem; font-weight: 800; margin-bottom: 10px; position: relative; }
.service-card p { font-size: .85rem; color: var(--muted); line-height: 1.75; position: relative; }
.service-card .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; color: var(--green); font-weight: 700;
  font-size: .83rem; position: relative; transition: var(--transition);
}
.service-card:hover .arrow { gap: 10px; }

/* ── Clients ── */
.clients { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: var(--white); }
.clients .section-title { color: var(--white); }
.clients .section-subtitle { color: rgba(255,255,255,.75); }
.clients-tag { background: rgba(255,255,255,.15) !important; color: var(--white) !important; }
.clients-swiper { margin-top: 48px; padding-bottom: 4px; }
.client-logo-slide {
  background: var(--white); border-radius: var(--radius);
  padding: 20px 28px; display: flex; align-items: center;
  justify-content: center; height: 100px;
  transition: var(--transition);
}
.client-logo-slide:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.client-logo-slide img { max-height: 55px; max-width: 140px; width: auto; object-fit: contain; filter: grayscale(30%); transition: var(--transition); }
.client-logo-slide:hover img { filter: grayscale(0%); }

/* ── Impact ── */
.impact { background: var(--bg); padding: 0; }
.impact-hero {
  position: relative; height: 420px;
  display: flex; align-items: center;
  overflow: hidden; margin-bottom: 0;
}
.impact-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0;
}
.impact-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,.78) 45%, rgba(0,0,0,.3) 100%);
}
.impact-hero-content {
  position: relative; z-index: 2; max-width: 680px;
}
.impact-hero-content h2 {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 900;
  color: var(--white); line-height: 1.2; margin: 14px 0 18px;
}
.impact-hero-content p {
  color: rgba(255,255,255,.8); font-size: .97rem; line-height: 1.85;
}
.impact-content { padding: 64px 0; }
.impact-cards-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-bottom: 56px; }
.impact-info-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; border: 1.5px solid var(--border);
  transition: var(--transition);
}
.impact-info-card:hover { border-color: var(--green); box-shadow: var(--shadow); transform: translateY(-4px); }
.impact-info-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--green-light); color: var(--green);
  font-size: 1.4rem; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.impact-info-card h3 { font-size: 1rem; font-weight: 800; margin-bottom: 14px; color: var(--text); }
.impact-info-card p { font-size: .86rem; color: var(--muted); line-height: 1.8; margin-bottom: 10px; }
.impact-stats-mini { display: flex; flex-direction: column; gap: 12px; margin: 16px 0; padding: 16px; background: var(--green-light); border-radius: var(--radius); border-left: 4px solid var(--green); }
.impact-mini-num { display: block; font-size: 1.3rem; font-weight: 900; color: var(--green); line-height: 1; }
.impact-mini-label { display: block; font-size: .72rem; color: var(--muted); font-weight: 600; margin-top: 3px; text-transform: uppercase; letter-spacing: .5px; }

/* Impact Table */
.impact-table-wrap { background: var(--white); border-radius: var(--radius-lg); border: 1.5px solid var(--border); overflow: hidden; }
.impact-table-title { padding: 24px 28px; font-size: 1rem; font-weight: 800; color: var(--text); border-bottom: 1.5px solid var(--border); display: flex; align-items: center; gap: 10px; }
.impact-table-title i { color: var(--green); }
.table-scroll { overflow-x: auto; }
.impact-table { width: 100%; border-collapse: collapse; font-size: .86rem; }
.impact-table thead tr { background: var(--accent); }
.impact-table thead th { padding: 14px 20px; text-align: left; color: var(--white); font-weight: 700; font-size: .78rem; text-transform: uppercase; letter-spacing: .5px; white-space: nowrap; }
.impact-table tbody tr { border-bottom: 1px solid var(--border); transition: var(--transition); }
.impact-table tbody tr:last-child { border-bottom: none; }
.impact-table tbody tr:hover { background: var(--green-lighter); }
.impact-table tbody td { padding: 14px 20px; color: var(--muted); line-height: 1.6; }
.impact-table .highlight-row { background: var(--green-light); }
.impact-table .highlight-row td { color: var(--accent); }
.impact-table .highlight-row:hover { background: var(--green-light); }

/* ── FAQ ── */
.faq { background: var(--white); }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.faq-item.open { border-color: var(--green); }
.faq-q {
  width: 100%; text-align: left; padding: 20px 24px;
  font-weight: 700; font-size: .95rem; background: none; border: none;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  color: var(--text); transition: var(--transition); gap: 16px;
}
.faq-q:hover { color: var(--green); }
.faq-q .icon {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; transition: var(--transition);
}
.faq-item.open .faq-q .icon { background: var(--green); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 12px; color: var(--muted); font-size: .9rem; line-height: 1.8; }
.faq-bullets { padding: 0 24px 20px; display: flex; flex-direction: column; gap: 10px; }
.faq-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: .88rem; color: var(--muted); line-height: 1.7; }
.faq-bullets li i { color: var(--green); font-size: .8rem; margin-top: 4px; flex-shrink: 0; background: var(--green-light); width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.faq-item.open .faq-a { max-height: 600px; }

/* ── Footer ── */
footer { background: #1e3d2a; color: rgba(255,255,255,.8); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand img { display: none; }
.footer-logo-text { font-size: 1.2rem; font-weight: 900; color: var(--white); margin-bottom: 16px; line-height: 1.3; text-transform: uppercase; letter-spacing: 1px; }
.footer-logo-text span { color: var(--green); }
.footer-brand p { font-size: .85rem; line-height: 1.85; color: rgba(255,255,255,.55); max-width: 280px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: var(--transition); border: 1px solid rgba(255,255,255,.1);
}
.footer-socials a:hover { background: var(--green); color: var(--accent); border-color: var(--green); }
.footer-col h5 { color: var(--white); font-size: .85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: .84rem; color: rgba(255,255,255,.55); transition: var(--transition);
  display: flex; align-items: center; gap: 8px;
}
.footer-col ul li a i { font-size: .65rem; }
.footer-col ul li a:hover { color: var(--green);  padding-left: 4px; }

/* Footer Contact */
.footer-contact li { margin-bottom: 16px !important; }
.footer-contact li a {
  align-items: flex-start !important;
  gap: 12px !important;
  padding-left: 0 !important;
}
.footer-contact li a:hover { padding-left: 0 !important; color: var(--green) !important; }
.fc-icon {
  width: 34px; height: 34px; flex-shrink: 0;
  background: rgba(199,167,7,.12); border: 1px solid rgba(199,167,7,.25);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: .9rem; transition: var(--transition);
}
.footer-contact li a:hover .fc-icon { background: var(--green); color: var(--accent); border-color: var(--green); }
.footer-contact li a span:last-child { padding-top: 6px; line-height: 1.6; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; font-size: .8rem; color: rgba(255,255,255,.35);
  flex-wrap: wrap; gap: 8px;
}
.footer-bottom i { color: var(--green); }

/* ── Responsive ── */
@media (max-width: 968px) {
  .hero .container, .about .container { grid-template-columns: 1fr; gap: 48px; }
  .vm-row, .vm-row.reverse .vm-image, .vm-row.reverse .vm-content { grid-template-columns: 1fr; order: unset; }
  .vm-row { grid-template-columns: 1fr; }
  .vm-row.reverse .vm-image { order: 0; }
  .vm-row.reverse .vm-content { order: 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .vm-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-item:nth-child(3) { border-right: none; }
  .stats-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.1); }
  .stats-item:nth-child(5) { border-top: 1px solid rgba(255,255,255,.1); border-right: none; }
  .impact-grid { grid-template-columns: repeat(3, 1fr); }
  .impact-card:nth-child(3) { border-right: none; }
  .impact-card:nth-child(4), .impact-card:nth-child(5) { border-top: 1px solid var(--border); }
  .impact-hero { height: 360px; }
  .impact-cards-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  section { padding: 64px 0; }
  .hamburger { display: flex; }
  nav {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: var(--white); box-shadow: var(--shadow); padding: 16px 20px 28px;
    border-top: 1px solid var(--border);
  }
  nav.open { display: block; }
  nav > ul { flex-direction: column; gap: 0; align-items: stretch; }
  nav > ul > li > a { padding: 13px 8px; border-radius: 0; border-bottom: 1px solid #f0f0f0; }
  nav ul li ul { visibility: hidden; opacity: 0; max-height: 0; overflow: hidden; pointer-events: none; position: static; box-shadow: none; border: none; padding-left: 16px; border-top: none; min-width: unset; transform: none; transition: none; }
  nav ul li.sub-open > ul { visibility: visible; opacity: 1; max-height: 600px; pointer-events: auto; }
  .has-dropdown > a::after { float: right; }
  .footer-grid { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .nav-cta { border-radius: var(--radius) !important; }
  .hero { height: 100svh; }
  .hero-content h1 { font-size: 1.9rem; }
  .slider-btn { display: none; }
  .slider-dots { bottom: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stats-item:last-child { border-bottom: none; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-card { border-right: none; border-bottom: 1px solid var(--border); }
  .impact-card:last-child { border-bottom: none; }
  .impact-hero { height: 300px; }
  .impact-cards-row { grid-template-columns: 1fr; }
}
