*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-primary:  #059669;
  --green-hover:    #047857;
  --green-forest:   #052E16;
  --green-mid:      #065F46;
  --green-lime:     #84CC16;
  --green-teal:     #0D9488;
  --green-sage:     #D1FAE5;
  --green-mint:     #ECFDF5;
  --white:          #FAFAF9;
  --cream:          #F7FEE7;
  --gray-light:     #F0FDF4;
  --gray-border:    #D1FAE5;
  --gray-mid:       #6B7280;
  --gray-dark:      #374151;
  --charcoal:       #1C1917;
  --grad-main:      linear-gradient(135deg, #059669 0%, #10B981 45%, #84CC16 100%);
  --grad-forest:    linear-gradient(150deg, #052E16 0%, #064E3B 60%, #065F46 100%);
  --grad-hero:      linear-gradient(145deg, #F0FDF4 0%, #ECFDF5 40%, #F7FEE7 100%);
  --grad-card:      linear-gradient(145deg, #FAFAF9 0%, #F0FDF4 100%);
  --shadow-xs:  0 2px 8px  rgba(5,150,105,.08);
  --shadow-sm:  0 4px 16px rgba(5,150,105,.12);
  --shadow-md:  0 8px 32px rgba(5,150,105,.16);
  --shadow-lg:  0 20px 60px rgba(5,150,105,.20);
  --shadow-xl:  0 32px 80px rgba(5,150,105,.25);
  --radius: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
}

/* ── UTILITIES ──────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-mint); color: var(--green-forest);
  padding: 6px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
  text-transform: uppercase; margin-bottom: 20px;
}
.badge::before { content: ''; width: 8px; height: 8px; background: var(--green-primary); border-radius: 50%; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--charcoal); margin-bottom: 16px; }
.section-sub { font-size: 1.1rem; color: var(--gray-dark); max-width: 600px; line-height: 1.7; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-main); color: #fff;
  padding: 14px 28px; border-radius: 100px;
  font-weight: 600; font-size: 15px; border: none; cursor: pointer;
  transition: all 0.3s ease; text-decoration: none; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(5,150,105,0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(5,150,105,0.4); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--green-primary);
  padding: 13px 28px; border-radius: 100px;
  font-weight: 600; font-size: 15px; border: 2px solid var(--green-primary);
  cursor: pointer; transition: all 0.3s ease; text-decoration: none; white-space: nowrap;
}
.btn-secondary:hover { background: var(--green-primary); color: #fff; transform: translateY(-2px); }

/* ── REVEAL ANIMATIONS ────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all 0.4s ease;
}
#navbar.scrolled {
  background: rgba(250,250,249,0.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(5,150,105,0.08);
  padding: 12px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--green-forest); }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--gray-dark); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--green-primary); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(20px);
  padding: 32px 24px; flex-direction: column; gap: 16px; z-index: 999; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1.1rem; font-weight: 600; color: var(--charcoal); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--gray-border); }
.mobile-menu a:hover { color: var(--green-primary); }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
#hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--grad-hero); position: relative; overflow: hidden; padding-top: 80px;
}
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; pointer-events: none;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(5,150,105,.28), transparent); top: -100px; right: -100px; animation-delay: 0s; }
.hero-blob-2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(132,204,22,.22), transparent); bottom: -80px; left: -80px; animation-delay: 3s; }
.hero-blob-3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(13,148,136,.18), transparent); top: 50%; right: 30%; animation-delay: 6s; }
@keyframes blobFloat { 0%,100%{transform:translateY(0) scale(1)} 50%{transform:translateY(-30px) scale(1.05)} }

.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(5,150,105,0.1); border: 1px solid rgba(5,150,105,0.2); color: var(--green-primary); padding: 8px 18px; border-radius: 100px; font-size: 13px; font-weight: 600; margin-bottom: 24px; }
.hero-badge-dot { width: 8px; height: 8px; background: var(--green-primary); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
.hero-title { font-size: clamp(2.4rem, 4.5vw, 3.8rem); font-weight: 800; color: var(--charcoal); margin-bottom: 20px; letter-spacing: -0.02em; }
.hero-title .highlight { background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-sub { font-size: 1.1rem; color: var(--gray-dark); margin-bottom: 36px; line-height: 1.8; max-width: 520px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-feature {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.8); border: 1px solid rgba(5,150,105,0.15);
  padding: 8px 16px; border-radius: 100px; font-size: 13px; font-weight: 500; color: var(--gray-dark);
  backdrop-filter: blur(10px);
}
.hero-feature-icon { font-size: 16px; }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-orb {
  width: 420px; height: 420px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(5,150,105,.12), rgba(132,204,22,.10));
  border: 2px solid rgba(5,150,105,0.15);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  animation: orbPulse 4s ease-in-out infinite;
}
@keyframes orbPulse { 0%,100%{transform:scale(1);box-shadow:0 0 0 0 rgba(5,150,105,0.1)} 50%{transform:scale(1.02);box-shadow:0 0 60px 20px rgba(5,150,105,0.08)} }
.hero-orb-inner { width: 320px; height: 320px; border-radius: 50%; background: linear-gradient(135deg, rgba(5,150,105,.08), rgba(16,185,129,.12)); border: 2px solid rgba(5,150,105,0.12); display: flex; align-items: center; justify-content: center; }
.hero-center-icon { font-size: 80px; animation: spin 20s linear infinite; }
@keyframes spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.floating-card {
  position: absolute; background: white; border-radius: 16px;
  padding: 12px 18px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10); border: 1px solid rgba(5,150,105,0.12);
  font-weight: 600; font-size: 13px; color: var(--charcoal);
  animation: floatCard 3s ease-in-out infinite;
}
.hero-visual .floating-card:nth-child(4) { top: 40px; left: -20px; animation-delay: 0s; }
.hero-visual .floating-card:nth-child(5) { top: 40px; right: -20px; animation-delay: 1.5s; }
.hero-visual .floating-card:nth-child(6) { bottom: 60px; left: -10px; animation-delay: 1s; }
.hero-visual .floating-card:nth-child(7) { bottom: 60px; right: -10px; animation-delay: 2.5s; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.floating-card .card-icon { font-size: 24px; }
.counter-small { font-size: 11px; color: var(--green-primary); font-weight: 700; }

.orbit-ring {
  position: absolute; border-radius: 50%; border: 1px dashed rgba(5,150,105,0.2);
  animation: orbitSpin 15s linear infinite;
}
.orbit-ring-1 { width: 460px; height: 460px; }
.orbit-ring-2 { width: 520px; height: 520px; animation-duration: 25s; animation-direction: reverse; }
.orbit-dot {
  position: absolute; width: 10px; height: 10px; background: var(--green-primary);
  border-radius: 50%; top: -5px; left: 50%; transform: translateX(-50%);
}
@keyframes orbitSpin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

/* Metrics strip */
.hero-metrics { display: flex; gap: 40px; margin-top: 16px; }
.hero-metric-val { font-size: 1.8rem; font-weight: 800; color: var(--green-primary); }
.hero-metric-label { font-size: 12px; color: var(--gray-dark); }

/* ══════════════════════════════════════════════
   TRUSTED BY
══════════════════════════════════════════════ */
#trusted { background: var(--white); padding: 64px 0; border-top: 1px solid var(--gray-border); }
.trusted-title { text-align: center; font-size: 14px; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 40px; }
.trusted-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.trusted-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: var(--gray-light); border: 1px solid var(--gray-border);
  padding: 20px 28px; border-radius: 16px; font-size: 13px; font-weight: 600;
  color: var(--gray-dark); transition: all 0.3s; cursor: default;
  min-width: 130px;
}
.trusted-card:hover { background: var(--green-mint); border-color: rgba(5,150,105,0.3); color: var(--green-forest); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.trusted-card .tc-icon { font-size: 28px; }

/* ══════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════ */
#about { background: var(--gray-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-box {
  width: 100%; aspect-ratio: 4/3; border-radius: var(--radius-lg);
  background: var(--grad-main);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px; position: relative; overflow: hidden;
}
.about-img-box::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff10' fill-rule='evenodd'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.about-stat-card {
  position: absolute; background: white; border-radius: 16px;
  padding: 14px 20px; box-shadow: var(--shadow-md); text-align: center;
}
.about-stat-card:nth-child(2) { bottom: -24px; left: -24px; }
.about-stat-card:nth-child(3) { top: -24px; right: -24px; }
.stat-val { font-size: 1.6rem; font-weight: 800; color: var(--green-primary); }
.stat-label { font-size: 11px; color: var(--gray-dark); }

.about-text p { color: var(--gray-dark); line-height: 1.8; margin-bottom: 16px; }
.about-values { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.about-value-chip {
  display: flex; align-items: center; gap: 8px;
  background: var(--green-mint); padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--green-forest);
}

/* ══════════════════════════════════════════════
   VISION & MISSION
══════════════════════════════════════════════ */
#vision { background: var(--grad-forest); position: relative; overflow: hidden; }
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.glass-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg); padding: 48px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.glass-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-main);
}
.glass-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(5,150,105,0.25); }
.glass-card .gc-icon { font-size: 48px; margin-bottom: 24px; display: block; }
.glass-card h3 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.glass-card p { color: rgba(255,255,255,0.7); line-height: 1.8; }
.vision-header { text-align: center; margin-bottom: 56px; }
.vision-header .section-title { color: #fff; }
.vision-header .section-sub { color: rgba(255,255,255,0.6); margin: 0 auto; }

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
#services { background: var(--white); }
.services-header { text-align: center; margin-bottom: 56px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--gray-light); border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg); padding: 36px 32px;
  transition: all 0.4s; cursor: default; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(5,150,105,.05), rgba(16,185,129,.05));
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { border-color: rgba(5,150,105,0.3); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::after { opacity: 1; }
.service-card:hover .service-icon-wrap { background: var(--grad-main); }
.service-card:hover .service-icon { filter: brightness(0) invert(1); }
.service-icon-wrap { width: 64px; height: 64px; border-radius: 16px; background: var(--green-mint); display: flex; align-items: center; justify-content: center; margin-bottom: 24px; transition: all 0.4s; }
.service-icon { font-size: 30px; }
.service-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--gray-dark); line-height: 1.7; flex: 1; margin-bottom: 24px; }
.service-link { display: inline-flex; align-items: center; gap: 6px; color: var(--green-primary); font-size: 13px; font-weight: 600; text-decoration: none; transition: gap 0.3s; }
.service-link:hover { gap: 10px; }

/* ══════════════════════════════════════════════
   WHY CHOOSE – BENTO GRID
══════════════════════════════════════════════ */
#why { background: var(--gray-light); }
.why-header { text-align: center; margin-bottom: 56px; }
.why-header .section-sub { margin: 0 auto; }
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); grid-template-rows: auto auto; gap: 20px; }
.bento-cell {
  background: var(--white); border: 1px solid var(--gray-border); border-radius: var(--radius-lg);
  padding: 36px; transition: all 0.3s; position: relative; overflow: hidden;
}
.bento-cell:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(5,150,105,0.25); }
.bento-cell.span-3 { grid-column: span 3; }
.bento-cell.span-4 { grid-column: span 4; }
.bento-cell.span-5 { grid-column: span 5; }
.bento-cell.span-7 { grid-column: span 7; }
.bento-cell.span-8 { grid-column: span 8; }
.bento-cell.featured { background: var(--grad-main); }
.bento-cell.featured .bc-icon, .bento-cell.featured h3, .bento-cell.featured p { color: white; }
.bc-icon { font-size: 40px; margin-bottom: 20px; display: block; }
.bento-cell h3 { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 10px; }
.bento-cell p { font-size: 14px; color: var(--gray-dark); line-height: 1.7; }
.bento-big-num { font-size: 3rem; font-weight: 800; color: var(--green-primary); line-height: 1; margin-bottom: 8px; }
.bento-cell.featured .bento-big-num { color: rgba(255,255,255,0.9); }

/* ══════════════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════════════ */
#industries { background: var(--white); }
.industries-header { text-align: center; margin-bottom: 56px; }
.industries-header .section-sub { margin: 0 auto; }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-card {
  background: var(--gray-light); border: 1px solid var(--gray-border); border-radius: var(--radius);
  padding: 28px 20px; text-align: center; transition: all 0.3s; cursor: default;
}
.industry-card:hover { background: var(--green-mint); border-color: rgba(5,150,105,0.3); transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.industry-icon { font-size: 36px; margin-bottom: 12px; display: block; }
.industry-card span:last-child { font-size: 13px; font-weight: 600; color: var(--gray-dark); }
.industry-card:hover span:last-child { color: var(--green-forest); }

/* ══════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════ */
#process { background: var(--gray-light); }
.process-header { text-align: center; margin-bottom: 64px; }
.process-header .section-sub { margin: 0 auto; }
.process-timeline { display: flex; align-items: flex-start; gap: 0; position: relative; }
.process-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.process-step:not(:last-child)::after {
  content: ''; position: absolute; top: 28px; left: 50%; width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--green-primary), var(--green-lime));
  z-index: 0;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--grad-main);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 18px; z-index: 1;
  position: relative; box-shadow: 0 4px 20px rgba(5,150,105,0.3);
  transition: transform 0.3s;
}
.process-step:hover .step-num { transform: scale(1.15); }
.step-icon { font-size: 20px; }
.step-content { margin-top: 24px; padding: 0 12px; }
.step-content h3 { font-size: 14px; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.step-content p { font-size: 12px; color: var(--gray-dark); line-height: 1.6; }
.step-badge { display: inline-block; background: var(--green-mint); color: var(--green-forest); font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 100px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }

/* Mobile process */
.process-timeline-mobile { display: none; flex-direction: column; gap: 0; }
.mobile-step { display: flex; gap: 24px; padding-bottom: 32px; position: relative; }
.mobile-step:not(:last-child) .mobile-step-line { position: absolute; left: 27px; top: 56px; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--green-primary), var(--green-lime)); }
.mobile-step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--grad-main); display: flex; align-items: center; justify-content: center; color: white; font-weight: 800; font-size: 18px; flex-shrink: 0; z-index: 1; box-shadow: 0 4px 20px rgba(5,150,105,0.3); }
.mobile-step-content { padding-top: 12px; }
.mobile-step-content h3 { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 6px; }
.mobile-step-content p { font-size: 14px; color: var(--gray-dark); line-height: 1.7; }

/* ══════════════════════════════════════════════
   IMPACT
══════════════════════════════════════════════ */
#impact { background: var(--grad-forest); position: relative; overflow: hidden; }
.impact-bg-pattern {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 32px 32px;
}
.impact-header { text-align: center; margin-bottom: 64px; }
.impact-header .section-title { color: white; }
.impact-header .section-sub { color: rgba(255,255,255,0.7); margin: 0 auto; }
.impact-counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 56px; }
.impact-counter {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 40px 24px; text-align: center;
  backdrop-filter: blur(10px); transition: all 0.3s;
}
.impact-counter:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.counter-val { font-size: 3rem; font-weight: 800; color: var(--green-lime); font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1; margin-bottom: 12px; }
.counter-label { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500; }
.counter-icon { font-size: 32px; margin-bottom: 16px; }
.impact-goals { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.impact-goal {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 24px 20px; text-align: center;
  font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500;
  transition: all 0.3s;
}
.impact-goal:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
.impact-goal .ig-icon { font-size: 28px; display: block; margin-bottom: 10px; }

/* ══════════════════════════════════════════════
   TEAM
══════════════════════════════════════════════ */
#team { background: var(--white); }
.team-header { text-align: center; margin-bottom: 56px; }
.team-header .section-sub { margin: 0 auto; }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 760px; margin: 0 auto; }
.team-card {
  background: var(--gray-light); border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg); padding: 40px; text-align: center;
  transition: all 0.4s; position: relative; overflow: hidden;
}
.team-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-main);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(5,150,105,0.25); }
.team-avatar {
  width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 24px;
  background: var(--grad-main); display: flex; align-items: center; justify-content: center;
  font-size: 48px; border: 4px solid white; box-shadow: 0 8px 24px rgba(5,150,105,0.25);
}
.team-name { font-size: 1.25rem; font-weight: 800; color: var(--charcoal); margin-bottom: 4px; }
.team-role { font-size: 13px; font-weight: 600; color: var(--green-primary); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.team-bio { font-size: 14px; color: var(--gray-dark); line-height: 1.7; margin-bottom: 20px; }
.team-linkedin {
  display: inline-flex; align-items: center; gap: 6px;
  background: #0A66C2; color: white; padding: 8px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; text-decoration: none; transition: all 0.3s;
}
.team-linkedin:hover { background: #004182; transform: scale(1.05); }

/* ══════════════════════════════════════════════
   FOUNDER MESSAGE
══════════════════════════════════════════════ */
#founder { background: var(--gray-light); }
.founder-inner {
  max-width: 900px; margin: 0 auto;
  background: var(--white); border-radius: var(--radius-lg); padding: 64px;
  border: 1px solid var(--gray-border); box-shadow: var(--shadow-md);
  position: relative;
}
.founder-quote-mark {
  font-size: 120px; color: var(--green-mint); font-family: Georgia, serif;
  line-height: 0.7; float: left; margin-right: 8px; margin-bottom: -16px;
}
.founder-quote-text { font-size: 1.25rem; color: var(--charcoal); line-height: 1.8; font-style: italic; font-weight: 500; margin-bottom: 32px; }
.founder-sig { display: flex; align-items: center; gap: 20px; }
.founder-sig-avatar { width: 64px; height: 64px; border-radius: 50%; background: var(--grad-main); display: flex; align-items: center; justify-content: center; font-size: 28px; flex-shrink: 0; }
.founder-sig-name { font-size: 1.1rem; font-weight: 800; color: var(--charcoal); }
.founder-sig-title { font-size: 13px; color: var(--green-primary); font-weight: 600; }
.founder-line { width: 60px; height: 2px; background: var(--grad-main); margin: 8px 0; }

/* ══════════════════════════════════════════════
   CTA
══════════════════════════════════════════════ */
#cta { background: var(--grad-main); position: relative; overflow: hidden; }
.cta-particles { position: absolute; inset: 0; pointer-events: none; }
.cta-particle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  animation: ctaFloat linear infinite;
}
@keyframes ctaFloat { from{transform:translateY(100%) scale(0)} to{transform:translateY(-200%) scale(1)} }
.cta-inner { position: relative; text-align: center; padding: 96px 0; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: white; margin-bottom: 20px; }
.cta-inner p { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 40px; line-height: 1.7; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.btn-cta-white { display: inline-flex; align-items: center; gap: 8px; background: white; color: var(--green-forest); padding: 14px 32px; border-radius: 100px; font-weight: 700; font-size: 15px; text-decoration: none; transition: all 0.3s; box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-cta-white:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(0,0,0,0.2); }
.btn-cta-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: white; padding: 13px 32px; border-radius: 100px; font-weight: 700; font-size: 15px; text-decoration: none; border: 2px solid rgba(255,255,255,0.6); transition: all 0.3s; }
.btn-cta-outline:hover { background: rgba(255,255,255,0.15); border-color: white; transform: translateY(-3px); }
.cta-glow { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,0.15), transparent); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; animation: glowPulse 3s ease-in-out infinite; }
@keyframes glowPulse { 0%,100%{opacity:0.5;transform:translate(-50%,-50%) scale(1)} 50%{opacity:1;transform:translate(-50%,-50%) scale(1.1)} }

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
#contact { background: var(--white); }
.contact-header { text-align: center; margin-bottom: 56px; }
.contact-header .section-sub { margin: 0 auto; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  background: var(--gray-light); border: 1px solid var(--gray-border); border-radius: var(--radius);
  padding: 24px; display: flex; align-items: flex-start; gap: 16px; transition: all 0.3s;
}
.contact-card:hover { border-color: rgba(5,150,105,0.3); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.cc-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--green-mint); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.cc-title { font-size: 13px; font-weight: 700; color: var(--gray-dark); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.cc-val { font-size: 14px; color: var(--charcoal); line-height: 1.6; }
.cc-val a { color: var(--green-primary); text-decoration: none; font-weight: 600; }
.cc-val a:hover { text-decoration: underline; }
.map-placeholder { background: linear-gradient(135deg, #F0FDF4, #D1FAE5); border: 2px solid rgba(5,150,105,0.15); border-radius: var(--radius); height: 200px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 12px; font-size: 14px; color: var(--gray-dark); }

.contact-form-wrap { background: var(--gray-light); border: 1px solid var(--gray-border); border-radius: var(--radius-lg); padding: 40px; }
.form-title { font-size: 1.3rem; font-weight: 700; color: var(--charcoal); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: span 2; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--gray-border); border-radius: 12px;
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--charcoal);
  background: white; transition: all 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-primary); box-shadow: 0 0 0 3px rgba(5,150,105,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; margin-top: 8px; justify-content: center; }
.form-success { display: none; background: var(--green-mint); border: 1px solid rgba(5,150,105,0.3); border-radius: 12px; padding: 16px; text-align: center; color: var(--green-forest); font-weight: 600; font-size: 14px; margin-top: 12px; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
#footer { background: var(--grad-forest); color: rgba(255,255,255,0.7); }
.footer-main { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding: 64px 0 48px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: all 0.3s; text-decoration: none; color: rgba(255,255,255,0.7); }
.social-btn:hover { background: var(--green-primary); transform: translateY(-2px); color: #fff; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--green-lime); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 12px; }
.footer-bottom-links a:hover { color: var(--green-lime); }

/* ══════════════════════════════════════════════
   SCROLL TO TOP
══════════════════════════════════════════════ */
#scrollTop {
  position: fixed; bottom: 28px; right: 28px; z-index: 500;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--grad-main); color: white; border: none; cursor: pointer;
  font-size: 20px; display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(5,150,105,0.4); transition: all 0.3s;
}
#scrollTop.visible { display: flex; }
#scrollTop:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(5,150,105,0.5); }

/* ══════════════════════════════════════════════
   ECO TICKER MARQUEE
══════════════════════════════════════════════ */
#ticker { background: var(--grad-forest); padding: 18px 0; overflow: hidden; position: relative; }
.ticker-track { display: flex; gap: 48px; width: max-content; animation: tickerScroll 30s linear infinite; }
#ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes tickerScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.ticker-item { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 14px; font-weight: 600; white-space: nowrap; }
.ticker-item .ti-icon { font-size: 18px; }
.ticker-item .ti-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green-lime); margin-left: 38px; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
#testimonials { background: var(--grad-hero); position: relative; overflow: hidden; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: var(--white); border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg); padding: 36px; position: relative;
  transition: all 0.4s; display: flex; flex-direction: column;
}
.testi-card::before {
  content: '"'; position: absolute; top: 20px; right: 28px;
  font-size: 72px; font-family: Georgia, serif; color: var(--green-sage);
  line-height: 1; pointer-events: none;
}
.testi-card:hover { transform: translateY(-6px) rotate(-0.5deg); box-shadow: var(--shadow-lg); border-color: rgba(5,150,105,0.3); }
.testi-stars { color: #F59E0B; font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-text { font-size: 14px; color: var(--gray-dark); line-height: 1.8; font-style: italic; flex: 1; margin-bottom: 24px; }
.testi-who { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--gray-border); }
.testi-av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-main); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.testi-name { font-size: 14px; font-weight: 700; color: var(--charcoal); }
.testi-org  { font-size: 12px; color: var(--gray-mid); }

/* ══════════════════════════════════════════════
   FAQ (HOME)
══════════════════════════════════════════════ */
#faq { background: var(--white); }
.faq-wrap { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.hfaq-item { background: var(--gray-light); border: 1px solid var(--gray-border); border-radius: var(--radius); overflow: hidden; transition: all 0.3s; }
.hfaq-item:hover { border-color: rgba(5,150,105,0.3); box-shadow: var(--shadow-sm); }
.hfaq-item.open { background: var(--white); border-color: rgba(5,150,105,0.35); box-shadow: var(--shadow-sm); }
.hfaq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; cursor: pointer; font-weight: 600; color: var(--charcoal); font-size: 15px; font-family: 'Plus Jakarta Sans', sans-serif; background: none; border: none; text-align: left; }
.hfaq-q .hfaq-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--green-mint); color: var(--green-primary); display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700; flex-shrink: 0; transition: all 0.3s; }
.hfaq-item.open .hfaq-icon { background: var(--grad-main); color: #fff; transform: rotate(45deg); }
.hfaq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; padding: 0 24px; }
.hfaq-item.open .hfaq-a { max-height: 2000px; padding: 0 24px 20px; }
.hfaq-a p, .hfaq-a ul, .hfaq-a ol { font-size: 14px; color: var(--gray-dark); line-height: 1.8; margin: 0 0 12px; }
.hfaq-a ul { list-style: disc; padding-left: 20px; }
.hfaq-a ol { list-style: decimal; padding-left: 20px; }
.hfaq-a li { margin-bottom: 6px; }
.hfaq-a p:last-child, .hfaq-a ul:last-child, .hfaq-a ol:last-child, .hfaq-a li:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════
   ANIMATION UPGRADES
══════════════════════════════════════════════ */
.hero-title .highlight {
  background-size: 200% auto;
  animation: gradientShift 4s ease-in-out infinite alternate;
}
@keyframes gradientShift { from{background-position:0% center} to{background-position:100% center} }
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -80%; width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg); transition: none;
}
.btn-primary:hover::after { animation: btnShine 0.8s ease; }
@keyframes btnShine { from{left:-80%} to{left:130%} }
.service-icon-wrap, .cc-icon, .ind-icon-wrap { transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), background 0.4s; }
.service-card:hover .service-icon-wrap { transform: scale(1.1) rotate(-6deg); }
.industry-card:hover .industry-icon { display: inline-block; animation: iconBounce 0.5s ease; }
@keyframes iconBounce { 0%,100%{transform:translateY(0)} 40%{transform:translateY(-8px)} 70%{transform:translateY(2px)} }
.impact-counter { position: relative; overflow: hidden; }
.impact-counter::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green-lime), var(--green-teal));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.impact-counter:hover::after { transform: scaleX(1); }
.badge { position: relative; overflow: hidden; }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(.34,1.56,.64,1); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }
#vision::before, #impact::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 60 Q20 40 40 40 Q40 60 20 60Z' fill='%23ffffff06'/%3E%3Cpath d='M60 25 Q60 10 75 10 Q75 25 60 25Z' fill='%23ffffff05'/%3E%3C/svg%3E");
  background-size: 80px 80px;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-counters { grid-template-columns: repeat(2, 1fr); }
  .impact-goals { grid-template-columns: repeat(3, 1fr); }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .industries-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .bento-cell.span-3 { grid-column: span 6; }
  .bento-cell.span-4 { grid-column: span 6; }
  .bento-cell.span-5 { grid-column: span 6; }
  .bento-cell.span-7 { grid-column: span 12; }
  .bento-cell.span-8 { grid-column: span 12; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-features { justify-content: center; }
  .hero-metrics { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-orb { width: 280px; height: 280px; }
  .hero-orb-inner { width: 200px; height: 200px; }
  .orbit-ring-1 { width: 310px; height: 310px; }
  .orbit-ring-2 { width: 350px; height: 350px; }
  .floating-card { font-size: 11px; padding: 8px 12px; }
  .floating-card .card-icon { font-size: 18px; }
  .about-grid { grid-template-columns: 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-cell.span-3, .bento-cell.span-4, .bento-cell.span-5, .bento-cell.span-7, .bento-cell.span-8 { grid-column: span 2; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { display: none; }
  .process-timeline-mobile { display: flex; }
  .impact-counters { grid-template-columns: repeat(2, 1fr); }
  .impact-goals { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: span 1; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .founder-inner { padding: 40px 28px; }
  .trusted-grid { justify-content: center; }
  .counter-val { font-size: 2.2rem; }
  .hero-visual .floating-card:nth-child(4) { top: 0;  left: 0; }
  .hero-visual .floating-card:nth-child(5) { top: 0;  right: 0; }
  .hero-visual .floating-card:nth-child(6) { bottom: 12px; left: 0; }
  .hero-visual .floating-card:nth-child(7) { bottom: 12px; right: 0; }
}

/* Bootstrap sm breakpoint — small phones */
@media (max-width: 576px) {
  .section { padding: 48px 0; }
  .section-sm { padding: 40px 0; }
  .container { padding: 0 16px; }
  .section-title { font-size: 1.6rem; }
  .section-sub { font-size: 1rem; }
  .hero-title { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-primary, .hero-btns .btn-secondary { width: 100%; justify-content: center; }
  .hero-orb { width: 230px; height: 230px; }
  .hero-orb-inner { width: 160px; height: 160px; }
  .hero-center-icon { font-size: 56px; }
  .orbit-ring-1 { width: 255px; height: 255px; }
  .orbit-ring-2 { width: 285px; height: 285px; }
  .hero-metrics { gap: 20px; flex-wrap: wrap; }
  .hero-metric-val { font-size: 1.4rem; }
  .impact-counters { grid-template-columns: 1fr; gap: 16px; }
  .counter-val { font-size: 2.4rem; }
  .impact-counter { padding: 28px 20px; }
  .service-card, .bento-cell { padding: 28px 22px; }
  .glass-card { padding: 32px 24px; }
  .team-card { padding: 32px 24px; }
  .testi-card { padding: 28px 22px; }
  .contact-form-wrap { padding: 28px 20px; }
  .founder-inner { padding: 32px 20px; }
  .founder-quote-text { font-size: 1.05rem; }
  .cta-inner { padding: 64px 0; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .btn-cta-white, .btn-cta-outline { justify-content: center; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; padding: 48px 0 32px; }
  .ticker-item { font-size: 12px; }
  .hfaq-q { font-size: 14px; padding: 16px 18px; }
  .mobile-step { gap: 16px; }
  .mobile-step-num { width: 48px; height: 48px; font-size: 16px; }
  .mobile-step:not(:last-child) .mobile-step-line { left: 23px; top: 48px; }
  #scrollTop { width: 42px; height: 42px; bottom: 20px; right: 16px; }
}

@media (max-width: 480px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .impact-goals { grid-template-columns: 1fr 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-cell.span-3, .bento-cell.span-4, .bento-cell.span-5, .bento-cell.span-7, .bento-cell.span-8 { grid-column: span 1; }
}

@media (min-width: 1400px) {
  .container { max-width: 1320px; }
}
