:root {
  --green-dark: #0b3d2e;
  --green: #1a7a4c;
  --green-mid: #2fa96a;
  --green-light: #d9f2e3;
  --white: #ffffff;
  --off-white: #f6faf8;
  --text: #123324;
  --text-soft: #4a6459;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- NAV ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--green-light);
  transition: box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(11, 61, 46, 0.08);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-wrap span {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--green-dark);
  letter-spacing: 0.5px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--green-mid);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--green);
}

nav a:hover::after {
  width: 100%;
}

/* ---------- SCROLL PROGRESS BAR ---------- */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
  width: 0%;
  z-index: 1100;
  transition: width 0.1s linear;
}

/* ---------- SECTIONS ---------- */
section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 8vw 80px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* fade-up reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger.visible > * {
  transition-delay: calc(var(--i, 0) * 0.12s);
}

/* ---------- HERO ---------- */
#hero {
  background: radial-gradient(circle at 20% 20%, var(--green-light) 0%, var(--white) 55%);
  position: relative;
  text-align: center;
  flex-direction: column;
}

#hero .section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
  animation: float 5s ease-in-out infinite;
}

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

#hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--green-dark);
  font-weight: 800;
  letter-spacing: -1px;
}

#hero p.tagline {
  font-size: 1.25rem;
  color: var(--text-soft);
  max-width: 620px;
}

.stat-strip {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.stat-box {
  background: var(--white);
  border: 1px solid var(--green-light);
  border-radius: 14px;
  padding: 20px 28px;
  box-shadow: 0 8px 24px rgba(11, 61, 46, 0.06);
  min-width: 160px;
}

.stat-box .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--green);
}

.stat-box .label {
  font-size: 0.85rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--green);
  font-size: 0.8rem;
  animation: bounce 2s infinite;
}

.scroll-cue .chevron {
  width: 14px;
  height: 14px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ---------- SECTION HEADINGS ---------- */
.eyebrow {
  color: var(--green-mid);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--green-dark);
  margin-bottom: 20px;
  font-weight: 800;
}

/* ---------- WHAT WE DO ---------- */
#what-we-do {
  background: var(--off-white);
}

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.wwd-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 26px;
  border: 1px solid var(--green-light);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.wwd-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(11, 61, 46, 0.1);
  border-color: var(--green-mid);
}

.wwd-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--green);
  font-size: 1.4rem;
  font-weight: 700;
}

.wwd-card h3 {
  color: var(--green-dark);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.wwd-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.performance-banner {
  margin-top: 50px;
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  border-radius: 18px;
  padding: 40px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.performance-banner .big-num {
  font-size: 3rem;
  font-weight: 800;
}

.performance-banner p {
  max-width: 480px;
  opacity: 0.92;
}

/* ---------- PARTNERS ---------- */
#partners {
  background: var(--white);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.partner-card {
  text-align: center;
  padding: 34px 22px;
  border-radius: 16px;
  background: var(--off-white);
  border: 1px solid transparent;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.partner-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 32px rgba(11, 61, 46, 0.1);
  background: var(--white);
  border-color: var(--green-light);
}

.avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-mid));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}

.partner-card.featured {
  background: var(--green-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.partner-card.featured::before {
  content: 'KEY INVESTOR';
  position: absolute;
  top: 14px;
  right: -34px;
  background: var(--green-mid);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 4px 40px;
  transform: rotate(35deg);
  letter-spacing: 1px;
}

.partner-card.featured .avatar {
  background: linear-gradient(135deg, #ffffff, var(--green-light));
  color: var(--green-dark);
}

.partner-card h3 {
  color: inherit;
  margin-bottom: 6px;
}

.partner-card.featured h3 {
  color: var(--white);
}

.partner-role {
  font-size: 0.85rem;
  color: var(--green-mid);
  font-weight: 600;
  margin-bottom: 10px;
}

.partner-card.featured .partner-role {
  color: var(--green-light);
}

.partner-return {
  display: inline-block;
  margin-top: 8px;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--green);
}

.partner-card.featured .partner-return {
  color: #a9f0c8;
}

.partner-card p.desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 8px;
}

.partner-card.featured p.desc {
  color: #d6ede0;
}

/* ---------- CONTACT ---------- */
#contact {
  background: var(--green-dark);
  color: var(--white);
}

#contact h2 {
  color: var(--white);
}

#contact .eyebrow {
  color: var(--green-mid);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  margin-top: 30px;
}

@media (max-width: 800px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 18px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(6px);
}

.contact-item .ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item .ci-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green-light);
}

.contact-item a, .contact-item span.value {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-form {
  background: var(--white);
  color: var(--text);
  border-radius: 16px;
  padding: 32px;
}

.contact-form h3 {
  color: var(--green-dark);
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #cfe6d8;
  margin-bottom: 16px;
  font-family: inherit;
  font-size: 0.95rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px var(--green-light);
}

.contact-form button {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 10px;
}

/* ---------- FOOTER ---------- */
footer {
  background: #062a1e;
  color: var(--green-light);
  text-align: center;
  padding: 26px;
  font-size: 0.85rem;
}

footer strong {
  color: var(--white);
}
