:root {
  --yellow: #F5C518;
  --yellow-dark: #D4A00A;
  --yellow-light: #FFF4CC;
  --green: #2D7A4F;
  --green-mid: #3AA06B;
  --green-light: #E8F5EE;
  --green-dark: #1A4D32;
  --white: #FFFFFF;
  --off-white: #F8F7F2;
  --gray-100: #F2F1EC;
  --gray-200: #E4E2D9;
  --gray-300: #C8C5B8;
  --gray-500: #888070;
  --gray-700: #4A4540;
  --gray-900: #1C1A16;
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 72px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --shadow-card: 0 2px 20px rgba(0,0,0,0.08);
  --shadow-lift: 0 8px 40px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; font-size: 16px; }


body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: clip;
  line-height: 1.6;
}

/* ── UTILITIES ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--wide { width: 100%; max-width: 1400px; margin: 0 auto; padding: 0 24px; }

.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--yellow-light);
  color: var(--yellow-dark);
}
.tag--green { background: var(--green-light); color: var(--green-dark); }
.tag--dark { background: var(--gray-900); color: var(--yellow); }

.section-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--yellow);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}
.section-title span { color: var(--green); }
.section-title em { color: var(--yellow-dark); font-style: normal; }

.section-subtitle {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 600px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}
.btn--primary {
  background: var(--yellow);
  color: var(--gray-900);
}
.btn--primary:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,197,24,0.4); }
.btn--green {
  background: var(--green);
  color: white;
}
.btn--green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(45,122,79,0.35); }
.btn--outline {
  background: transparent;
  color: var(--gray-900);
  border: 2px solid var(--gray-900);
}
.btn--outline:hover { background: var(--gray-900); color: white; }
.btn--outline-white {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn--outline-white:hover { background: white; color: var(--gray-900); }

.btn svg { width: 16px; height: 16px; }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.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; }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
  background: transparent;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--gray-200);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  width:40px;
  height: 40px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--gray-900);
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: white;
  line-height: 1.2;
  transition: color 0.3s;
}
.nav-logo-text small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  opacity: 0.7;
  letter-spacing: 0.04em;
}
#navbar.scrolled .nav-logo-text { color: var(--gray-900); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-links a:hover { color: white; background: rgba(255,255,255,0.12); }
#navbar.scrolled .nav-links a { color: var(--gray-700); }
#navbar.scrolled .nav-links a:hover { color: var(--gray-900); background: var(--gray-100); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; opacity: 0.7; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s ease;
  list-style: none;
  border: 1px solid var(--gray-200);
}
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: none; }
.dropdown-menu a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700) !important;
  background: none !important;
}
.dropdown-menu a:hover { background: var(--gray-100) !important; color: var(--gray-900) !important; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-cta a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 100px;
  transition: all 0.2s;
}
.nav-cta .nav-join {
  background: var(--yellow);
  color: var(--gray-900);
}
.nav-cta .nav-join:hover { background: var(--yellow-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}
#navbar.scrolled .hamburger span { background: var(--gray-900); }

/* ── HERO ── */
#hero {
  min-height: 100svh;
  background: var(--gray-900);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.hero-circle-1 {
  width: 700px;
  height: 700px;
  background: var(--yellow);
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}
.hero-circle-2 {
  width: 400px;
  height: 400px;
  background: var(--green-mid);
  bottom: -100px;
  left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,122,79,0.15) 0%, transparent 60%);
}

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

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-left {

 }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 28px;
  height: 28px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.hero-badge span {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: 0.04em;
}

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

@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 6vw, 60px);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 24px;
}
.hero-title .accent-yellow { color: var(--yellow); }
.hero-title .accent-green { color: var(--green-mid); }

.hero-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--yellow);
}
.hero-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
  line-height: 1.4;
}

.hero-right {
  position: relative;
}
.hero-visual {
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 50%, var(--yellow-dark) 100%);
}
.hero-visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
.hero-visual-placeholder svg {
  width: 64px;
  height: 64px;
  opacity: 0.3;
}
.hero-img-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
}

.hero-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lift);
}
.hero-card-1 {
  bottom: 32px;
  left: -40px;
  min-width: 180px;
}
.hero-card-2 {
  top: 32px;
  right: -40px;
  min-width: 160px;
}
.hero-card-label {
  font-size: 11px;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-weight: 600;
}
.hero-card-value {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
}
.hero-card-sub {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  margin-top: 2px;
}

/* ── TICKER ── */
.ticker {
  background: var(--yellow);
  padding: 12px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  gap: 48px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.ticker-dot {
  width: 6px;
  height: 6px;
  background: var(--gray-900);
  border-radius: 50%;
  opacity: 0.4;
}

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section--gray { background: var(--off-white); }
.section--dark { background: var(--gray-900); }
.section--green { background: var(--green-dark); }

/* ── ABOUT SUMMARY ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual-stack {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  width: 75%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  bottom: 0;
  right: 0;
  background: linear-gradient(145deg, var(--green) 0%, var(--green-dark) 100%);
}
.about-img-accent {
  position: relative;
  width: 60%;
  margin-top: 12;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  top: 0;
  left: 0;
}
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.img-placeholder svg { width: 36px; height: 36px; opacity: 0.5; }

.about-stat-bubble {
  position: absolute;
  right: -18px;
  top: 90%;
  transform: translateY(-50%);
  background: var(--yellow);
  border-radius: var(--radius-md);
  padding: 10px 12px;
  text-align: center;
  box-shadow: var(--shadow-lift);
  width: max-content;
  min-width: 120px;
}
.about-stat-bubble .num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}
.about-stat-bubble .label {
  font-size: 11px;
  color: rgba(0,0,0,0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.mission-box {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin: 24px 0;
}
.mission-box p {
  font-size: 16px;
  color: var(--green-dark);
  line-height: 1.7;
  font-style: italic;
}

/* ── IMPACT METRICS ── */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 48px;
}
.metric-cell {
  background: white;
  padding: 40px 32px;
  text-align: center;
  transition: background 0.2s;
}
.metric-cell:hover { background: var(--yellow-light); }
.metric-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1;
}
.metric-num span { color: var(--green); }
.metric-label {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 8px;
  line-height: 1.4;
  font-weight: 500;
}

/* ── PROJECTS ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.project-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.project-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.project-card-img-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  transition: transform 0.4s ease;
}
.project-card:hover .project-card-img-inner { transform: scale(1.05); }
.project-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.project-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.project-card-tag::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}
.project-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--gray-900);
}
.project-card-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}
.project-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.project-card-impact {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
}
.project-card-arrow {
  width: 32px;
  height: 32px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.project-card:hover .project-card-arrow { background: var(--yellow); }

.project-card--featured {
  grid-column: span 2;
}
.project-card--featured .project-card-img {
  aspect-ratio: 16/7;
}
.project-card--featured .project-card-title {
  font-size: 26px;
}

/* ── SDG BADGES ── */
.sdg-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.sdg-badge {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

/* ── PARTNERS ── */
.partners-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.partner-logo {
  width: 160px;
  height: 100px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.partner-logo:hover { border-color: var(--yellow); box-shadow: 0 4px 16px rgba(245,197,24,0.2); }

/* ── TEAM CARDS ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 10px;
}
.team-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: visible;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s;
}
.team-card:hover { transform: translateY(-4px); }
.team-card-photo {
  aspect-ratio: 1;
  min-height: auto;
  min-width: 0;
  width: 100%;
  height: 70%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--green-light) 0%, var(--gray-100) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
}
.team-card-photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: white;
}
.team-card-info { padding: 16px; }
.team-card-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
}
.team-card-role {
  font-size: 15px;
  color: var(--green);
  font-weight: 600;
  margin-top: 3px;
}

/* ── CTA SECTION ── */
.cta-section {
  background: var(--gray-900);
  border-radius: var(--radius-xl);
  padding: 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--yellow);
  border-radius: 50%;
  opacity: 0.05;
  top: -150px;
  right: -100px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-title span { color: var(--yellow); }
.cta-sub { font-size: 18px; color: rgba(255,255,255,0.6); margin-bottom: 36px; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--gray-900);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255,255,255,0.1);
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.page-hero-title span { color: var(--yellow); }
.page-hero-sub { font-size: 18px; color: rgba(255,255,255,0.55); margin-top: 16px; max-width: 560px; }

/* ── REFAB SPECIAL SECTION ── */
.refab-section {
  background: var(--gray-900);
  overflow: hidden;
}
.refab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.refab-left {
  background: linear-gradient(145deg, var(--green-dark) 0%, var(--green) 60%, #4DBF7A 100%);
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.refab-right {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.product-chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.stat-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-row-num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--yellow);
  min-width: 70px;
}
.stat-row-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}

/* ── GALLERY GRID ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 12px;
  margin-top: 40px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item:first-child {
  grid-row: span 2;
  grid-column: span 1;
}
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: transform 0.4s;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 4px;
}
.contact-info-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-900);
}
.contact-info-value a { color: var(--green); text-decoration: none; }
.contact-info-value a:hover { text-decoration: underline; }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-700);
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-900);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus { border-color: var(--green); }
textarea.form-input { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── SOCIAL LINKS ── */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.2s;
  color: var(--gray-700);
}
.social-link:hover { background: var(--yellow); border-color: var(--yellow); color: var(--gray-900); }

/* ── FOOTER ── */
footer {
  background: var(--gray-900);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
  margin-top: 16px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--yellow); }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── PAGE SECTIONS (hidden by default) ── */
.page { display: block; }

/* ── PROCESS STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 48px;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 16.67%;
  right: 16.67%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.step-item {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  margin: 0 auto 16px;
  border: 4px solid white;
  box-shadow: var(--shadow-card);
}
.step-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* ── FAQ / ACCORDION ── */
.accordion-item {
  border-bottom: 1px solid var(--gray-200);
}
.accordion-header {
  width: 100%;
  text-align: left;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-900);
}
.accordion-icon {
  width: 28px;
  height: 28px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
  font-size: 16px;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); background: var(--yellow); }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.accordion-body-inner {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 32px;
  margin-top: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item {
  position: relative;
  margin-bottom: 32px;
}
.timeline-dot {
  position: absolute;
  left: -29px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--yellow);
}
.timeline-year {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.timeline-text {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.6;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--gray-900);
  z-index: 99999;
  flex-direction: column;
  padding: 80px 32px 48px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  z-index: 9999999;
}


img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-card,
.about-stat-bubble {
  max-width: calc(100vw - 32px);
}

.project-card-img-inner img,
.partner-logo img,
.nav-logo-icon img,
.social-link img,
.hero-badge-dot img,
.about-img-main img,
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual-stack { height: 400px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card--featured { grid-column: span 1; }
  .refab-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .projects-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .cta-section { padding: 48px 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:first-child { grid-row: span 1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .metrics-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 1024px) {
  .hero-card-1,
  .hero-card-2,
  .about-stat-bubble {
    position: static;
    margin-top: 16px;
  }

  .hero-right {
    display: block;
  }

  .hero-visual {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .container,
  .container--wide {
    padding: 0 16px;
  }

  #hero {
    min-height: auto;
  }

  .hero-left {
    text-align: center;
  }

  .hero-badge {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-badge span {
    white-space: normal;
    line-height: 1.4;
  }

  .hero-title {
    font-size: clamp(36px, 10vw, 56px);
  }

  .hero-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .hero-circle-1 {
    width: 350px;
    height: 350px;
    top: -120px;
    right: -120px;
  }

  .hero-circle-2 {
    width: 220px;
    height: 220px;
    left: -80px;
    bottom: -60px;
  }

  .gallery-grid,
  .team-grid,
  .metrics-grid,
  .projects-grid,
  .footer-grid,
  .steps-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-content,
  .about-grid,
  .refab-grid,
  .contact-grid {
    gap: 32px;
  }

  .refab-left,
  .refab-right,
  .cta-section {
    padding: 32px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .page-hero {
    padding: 120px 0 64px;
  }
}

@media (max-width: 480px) {
  .hero-actions,
  .hero-stats {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-logo-text {
    font-size: 13px;
  }

  .section-title,
  .cta-title,
  .page-hero-title {
    word-break: break-word;
  }
}
