:root {
  --navy:       #1a2b4a;
  --navy-dark:  #0f1c32;
  --navy-mid:   #243660;
  --olive:      #6b7c3a;
  --olive-light:#8a9e4a;
  --olive-pale: #c8d48a;
  --white:      #ffffff;
  --off-white:  #f4f6f2;
  --gray-light: #e8ecf0;
  --text-dark:  #1a2b4a;
  --text-mid:   #3d4f6e;
  --text-muted: #6b7c95;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 124, 58, 0.2);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-brand-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: rgba(30, 45, 70, 0.9);
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.footer-brand-name {
  color: rgba(255, 255, 255, 0.92);
}

.logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--olive), var(--olive-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 16px;
  color: var(--white);
  letter-spacing: -1px;
}

.logo-text {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.logo-text span { color: var(--olive-light); }

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: rgba(30, 45, 70, 0.75);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 16px; right: 16px;
  height: 2px;
  background: var(--olive-light);
  transform: scaleX(0);
  transition: transform 0.25s;
  border-radius: 2px;
}

.nav-links a:hover { color: rgba(30, 45, 70, 1); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: rgba(30, 45, 70, 1); }
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: linear-gradient(135deg, var(--olive), var(--olive-light)) !important;
  color: var(--white) !important;
  padding: 8px 20px !important;
  border-radius: 6px !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(107,124,58,0.5) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ────────────────────────────────────────────── */
#home {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 5% 60px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.shape-1 {
  width: 600px; height: 600px;
  background: var(--olive);
  top: -200px; right: -100px;
  animation: float1 8s ease-in-out infinite;
}

.shape-2 {
  width: 400px; height: 400px;
  background: var(--olive-light);
  bottom: -150px; left: -100px;
  animation: float2 10s ease-in-out infinite;
}

.shape-3 {
  width: 300px; height: 300px;
  background: #4a7abf;
  top: 50%; left: 40%;
  transform: translate(-50%, -50%);
  animation: float1 12s ease-in-out infinite reverse;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(25px) scale(0.95); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107, 124, 58, 0.2);
  border: 1px solid rgba(138, 158, 74, 0.4);
  color: var(--olive-pale);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0;
  animation: slideUp 0.6s 0.2s forwards;
}

.badge-dot {
  width: 6px; height: 6px;
  background: var(--olive-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
  animation: slideUp 0.6s 0.4s forwards;
}

.hero-title .accent { color: var(--olive-light); }

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
  opacity: 0;
  animation: slideUp 0.6s 0.6s forwards;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideUp 0.6s 0.8s forwards;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn-primary {
  background: linear-gradient(135deg, var(--olive), var(--olive-light));
  color: var(--white);
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(107, 124, 58, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107, 124, 58, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-secondary:hover {
  border-color: var(--olive-light);
  color: var(--olive-pale);
  background: rgba(107, 124, 58, 0.1);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  animation: slideLeft 0.8s 0.5s forwards;
}

@keyframes slideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

.metric-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 20px 24px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  cursor: default;
}

.metric-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(138, 158, 74, 0.4);
  transform: translateX(-6px);
}

.metric-card .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.metric-card .value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
}

.metric-card .value span { color: var(--olive-light); }

.metric-card .sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

.metric-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── SECTIONS COMMON ─────────────────────────────────── */
section { padding: 100px 5%; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--olive);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
}

/* ── WHAT WE DO ──────────────────────────────────────── */
#what-we-do {
  background: var(--off-white);
  position: relative;
}

.services-header {
  text-align: center;
  margin-bottom: 60px;
}

.services-header .section-label { justify-content: center; }
.services-header .section-desc { margin: 0 auto; }

.services-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid var(--gray-light);
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.tab-btn:hover { border-color: var(--olive); color: var(--olive); }

.tab-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.services-panels { position: relative; }

.service-panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.service-panel.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.service-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.panel-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 20px;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  position: relative;
  overflow: hidden;
}

.panel-icon-wrap {
  text-align: center;
  position: relative;
  z-index: 1;
}

.panel-icon {
  font-size: 5rem;
  display: block;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.panel-icon-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.panel-svg-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.panel-svg {
  width: 100%;
  max-width: 260px;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.4));
}

.panel-visual::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: rgba(107, 124, 58, 0.2);
  border-radius: 50%;
}

.panel-visual::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 140px; height: 140px;
  background: rgba(107, 124, 58, 0.15);
  border-radius: 50%;
}

.panel-content h3 {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.panel-content p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-mid);
}

.feature-list li::before {
  content: '';
  width: 18px; height: 18px;
  min-width: 18px;
  background: var(--olive);
  border-radius: 50%;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 10px 8px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── ABOUT ───────────────────────────────────────────── */
#about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-visual { position: relative; }

.about-photo-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-img-placeholder {
  width: 100%;
  height: 420px;
  background: linear-gradient(140deg, var(--navy-dark), var(--navy-mid));
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.5);
}

.about-img-placeholder .big-icon { font-size: 4rem; }

.about-svg-frame {
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-svg {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}

.about-stats {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 8px 40px rgba(26,43,74,0.15);
  border: 1px solid var(--gray-light);
}

.stat-row {
  display: flex;
  gap: 24px;
}

.stat-item { text-align: center; }

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
}

.stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  background: var(--gray-light);
  align-self: stretch;
}

.about-accent-bar {
  position: absolute;
  top: 24px; left: -16px;
  width: 6px; height: 80px;
  background: linear-gradient(to bottom, var(--olive), var(--olive-light));
  border-radius: 3px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 32px;
}

/* ── SECTORS BLOCK ───────────────────────────────────── */
.sectors-block {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--gray-light);
}

.sectors-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--olive);
  margin-bottom: 14px;
}

.sectors-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sector-tag {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(107,124,58,0.08);
  border: 1px solid rgba(107,124,58,0.3);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.sector-tag:hover {
  background: rgba(107,124,58,0.18);
  border-color: var(--olive);
  color: var(--navy);
}

.sector-tag--more {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
  font-style: italic;
}

.sector-tag--more:hover {
  background: var(--olive-light);
  border-color: var(--olive-light);
  color: var(--white);
}

/* ── ASSOCIATIONS BLOCK ──────────────────────────────── */
.associations-block {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-light);
}

.associations-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.associations-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.5;
}

.assoc-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--olive), var(--olive-light));
}

.value-card {
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 18px;
  transition: all 0.3s;
  cursor: default;
}

.value-card:hover {
  border-color: var(--olive);
  background: rgba(107, 124, 58, 0.04);
  transform: translateY(-2px);
}

.value-card .icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
}

.value-card h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.value-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── TEAM SLIDER ─────────────────────────────────────── */
.team-section {
  background: var(--navy-dark);
  padding: 80px 5%;
}

.team-header {
  text-align: center;
  margin-bottom: 50px;
}

.team-header .section-title { color: var(--white); }
.team-header .section-label { color: var(--olive-light); }
.team-header .section-label::before { background: var(--olive-light); }
.team-header .section-desc { color: rgba(255,255,255,0.6); margin: 0 auto; }

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
}

.team-card {
  flex: 1 1 180px;
  max-width: 200px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: default;
}

.team-card:hover {
  background: rgba(255,255,255,0.13);
  border-color: var(--olive-light);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--olive), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
  border: 3px solid rgba(255,255,255,0.15);
}

.team-card h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-card .role {
  color: var(--olive-light);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.team-card .bio {
  color: rgba(255,255,255,0.55);
  font-size: 0.84rem;
  line-height: 1.6;
}

/* ── TEAM BLURB ──────────────────────────────────────── */
.team-blurb {
  max-width: 860px;
  margin: 0 auto 48px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(107,124,58,0.25);
  border-radius: 16px;
  padding: 36px 40px;
}

.team-blurb p {
  color: rgba(255,255,255,0.7);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.team-blurb p:last-of-type { margin-bottom: 0; }

.team-blurb strong { color: var(--olive-light); font-weight: 700; }

.team-blurb-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
}

.blurb-stat {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.blurb-stat:last-child { border-right: none; }

.blurb-stat-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--olive-light);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.blurb-stat-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .team-blurb { padding: 24px 20px; }
  .blurb-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding: 14px 0; }
  .blurb-stat:last-child { border-bottom: none; }
}

/* ── TEAM WIDE CARDS ─────────────────────────────────── */
.team-grid-wide {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.team-card-wide {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 40px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.team-card-wide:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--olive-light);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0,0,0,0.3);
}

.team-card-wide-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
}

.team-card-wide-body {
  flex: 1;
}

.team-card-wide-role {
  color: var(--olive-light);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.team-card-wide-name {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.team-card-wide-bio {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  line-height: 1.75;
}

@media (max-width: 600px) {
  .team-card-wide {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 24px;
  }
}


/* ── PARTNERS ────────────────────────────────────────── */
#partners {
  background: var(--off-white);
  overflow: hidden;
}

.partners-header {
  text-align: center;
  margin-bottom: 50px;
}

.partners-header .section-label { justify-content: center; }
.partners-header .section-desc { margin: 0 auto; }

.partners-stage {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.partners-carousel-wrap {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

.partners-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-card {
  flex: 0 0 calc(100% - 0px);
  width: 100%;
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: 20px;
  padding: 48px 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  box-shadow: 0 4px 24px rgba(26,43,74,0.08);
}

.partner-card:hover {
  border-color: var(--olive);
  box-shadow: 0 10px 40px rgba(26,43,74,0.13);
}

.partner-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.partner-logo-icon {
  width: 220px;
  height: 220px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 4.8rem;
  font-weight: 900;
  letter-spacing: -1px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.22);
}

.partner-logo-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 32px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.partner-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--olive);
}

.partner-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
}

.partner-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  max-width: 560px;
}

.partner-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-top: 4px;
}

.badge {
  background: rgba(107, 124, 58, 0.1);
  color: var(--olive);
  border: 1px solid rgba(107, 124, 58, 0.25);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 600;
}

.partners-prev,
.partners-next {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--gray-light);
  background: var(--white);
  color: var(--navy);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(26,43,74,0.12);
}

.partners-prev:hover,
.partners-next:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.partners-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.partners-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-light);
  cursor: pointer;
  transition: all 0.3s;
  border: 1px solid rgba(26,43,74,0.15);
}

.partners-dot.active {
  background: var(--navy);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 640px) {
  .partners-stage { gap: 10px; }
  .partners-prev, .partners-next { width: 36px; height: 36px; font-size: 0.9rem; }
}

/* ── CONTACT ─────────────────────────────────────────── */
#contact { background: var(--off-white); }

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-items { display: flex; flex-direction: column; gap: 18px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon-wrap {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text { font-size: 0.9rem; }
.contact-item-text .label { color: var(--text-muted); font-size: 0.78rem; margin-bottom: 2px; }
.contact-item-text .value { color: var(--navy); font-weight: 600; }

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 40px rgba(26,43,74,0.08);
  border: 1px solid var(--gray-light);
}

.form-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.25s;
  font-family: inherit;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(107,124,58,0.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.5px;
}

.form-submit:hover {
  background: linear-gradient(135deg, var(--olive), var(--olive-light));
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107,124,58,0.35);
}

.toast {
  display: none;
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  margin-top: 12px;
  border-left: 4px solid var(--olive);
  align-items: center;
  gap: 8px;
}

.toast.show { display: flex; animation: slideUp 0.3s; }

/* ── FOOTER ──────────────────────────────────────────── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 50px 5% 30px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 12px;
}

.footer-col h5 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }

.footer-col ul a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--olive-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a { color: var(--olive-light); text-decoration: none; }

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-panel-inner { grid-template-columns: 1fr; gap: 30px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }

  /* pull stats out of absolute flow so it doesn't overflow */
  .about-visual { padding-bottom: 0; }
  .about-stats {
    position: static;
    margin-top: 20px;
    border-radius: 12px;
  }
  .stat-row { flex-wrap: wrap; gap: 16px; justify-content: center; }

  /* accent bar bleeds off-screen on narrow viewports — hide it */
  .about-accent-bar { display: none; }

  /* shrink fixed-height image frame */
  .about-img-placeholder { height: 300px; }
}

@media (max-width: 640px) {
  nav { padding: 0 4%; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 70px; left: 0; right: 0; background: rgba(255,255,255,0.97); padding: 20px; gap: 4px; border-bottom: 1px solid rgba(107,124,58,0.2); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  section { padding: 70px 5%; }
  .hero-grid { text-align: center; }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .metric-row { grid-template-columns: 1fr; }

  /* about section mobile */
  .about-img-placeholder { height: 240px; }
  .about-svg { max-width: 200px; }
  .about-stats { padding: 16px; }
  .stat-row { gap: 12px; }
  .stat-num { font-size: 1.4rem; }
  .stat-lbl { white-space: normal; font-size: 0.7rem; }
  .stat-divider { display: none; }

  /* sectors & associations */
  .sectors-tags { gap: 6px; }
  .sector-tag { font-size: 0.75rem; padding: 4px 10px; }
  .associations-list li { font-size: 0.85rem; }
}
