* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {

  /* PRIMARY ECO COLORS */
  --forest: #0F3D2E;
  --forest-light: #14532D;
  --eco: #22C55E;
  --eco-light: #4ADE80;

  /* EARTH COLORS */
  --earth: #F5F5DC;
  --sand: #E7E0D4;

  /* DARK */
  --dark: #07130B;
  --dark-soft: #0B1F16;

  /* TEXT */
  --white: #ffffff;
  --text-soft: rgba(255,255,255,0.72);

  /* GLASS */
  --glass: rgba(34,197,94,0.08);
  --glass-border: rgba(74,222,128,0.15);

    --text: #163020;
    --text-soft: #4F6F52;

}

body {
  font-family: 'Inter', sans-serif;
  background: 
linear-gradient(
180deg,
#F6FFF8 0%,
#ECFDF3 40%,
#E8F5E9 100%
);
  color: #163020;
  overflow-x: hidden;
}

body::before {

  content: '';

  position: fixed;

  inset: 0;

  background-image:
  radial-gradient(
    rgba(255,255,255,0.02) 1px,
    transparent 1px
  );

  background-size: 3px 3px;

  pointer-events: none;

  opacity: 0.4;

}

.container {
  width: min(1200px, 92%);
  margin: auto;
}

.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,0.78);
    border-bottom:1px solid rgba(34,197,94,0.08);
  box-shadow:0 10px 30px rgba(20,83,45,0.05);
}

nav a.active {

  color: #16A34A;

  position: relative;

}

nav a.active::after {

  content: '';

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 100%;
  height: 2px;

  background: #22C55E;

  border-radius: 999px;

}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 24px;
  font-weight: 800;
}

nav {
  display: flex;
  gap: 28px;
}

nav a,
footer a {

  color: #2D4A35;

  text-decoration: none;

  font-weight: 500;

  transition: 0.3s ease;

}

nav a:hover {

  color: #22C55E;

}

.nav-buttons {
  display: flex;
  gap: 14px;
}

.btn-primary,
.btn-outline {
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.btn-primary {

  background:
  linear-gradient(
  135deg,
  #22C55E,
  #16A34A
  );

  color: white;

  box-shadow:
  0 10px 30px rgba(34,197,94,0.18);
}

.btn-primary:hover {

  transform: translateY(-3px);

  box-shadow:
  0 18px 40px rgba(34,197,94,0.35);

}

.btn-outline {

  border:
  1px solid rgba(34,197,94,0.2);

  color: #14532D;

  background: white;
}

.cta-box .btn-primary {

  background: white;

  color: #14532D;

  font-weight: 700;

  box-shadow:
  0 12px 30px rgba(0,0,0,0.12);

}

.cta-box .btn-primary:hover {

  transform:
  translateY(-4px)
  scale(1.03);

  background: #F6FFF8;

}
.stats-section,
.impact-section {
  background: #F6FFF8;
}

.calculator-section,
.movement-section {
  background: #FFFFFF;
}

.campaign-section {
  background: #F0FDF4;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {

  position: absolute;
  inset: 0;

  background:

    radial-gradient(
      circle at top right,
      rgba(34,197,94,0.15),
      transparent 30%
    ),

    radial-gradient(
      circle at bottom left,
      rgba(74,222,128,0.12),
      transparent 35%
    ),

    radial-gradient(
      circle at center,
      rgba(187,247,208,0.3),
      transparent 60%
    );
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 80px;
  align-items: center;
}

.hero-badge,
.section-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 65px;
  line-height: 1.1;
  margin-bottom: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero p {
  color: #4F6F52;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.big-btn {
  padding: 18px 32px;
}

.social-proof {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.social-proof strong {
  display: block;
  font-size: 24px;
}

.social-proof span {
  color: #6B8A73;
}

.hero-visual {
  position: relative;
  height: 600px;
}

.earth-card {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.earth-circle {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background:
radial-gradient(
circle at top,
#86EFAC,
#22C55E
);
  box-shadow: 0 0 120px rgba(34,197,94,0.4);
  animation: floating 6s infinite ease-in-out;
}

@keyframes floating {
  0%,100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.floating-card {
  position: absolute;
  padding: 18px 22px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,0.1);
}

.card-1 {
  top: 100px;
  left: 0;
}

.card-2 {
  bottom: 100px;
  right: 0;
}

.movement-floating-card {

  position: absolute;

  top: 40px;
  right: 30px;

  padding: 14px 20px;

  background: white;

  border-radius: 18px;

  box-shadow:
  0 10px 30px rgba(20,83,45,0.08);

  font-weight: 600;

  color: #14532D;

  z-index: 5;

  font-size: 15px;

}

.movement-floating-card.second {

  top: auto;

  bottom: 40px;

  left: 30px;

}

.movement-floating-card.second {

  top: auto;

  bottom: 40px;

  left: 30px;

}

.stats-section,
.calculator-section,
.campaign-section,
.impact-section,
.movement-section,
.cta-section {
  padding: 120px 0;
}

.stats-grid,
.campaign-grid,
.dashboard-grid {
  display: grid;
  gap: 30px;
}

.stats-grid {
  grid-template-columns: repeat(4,1fr);
}

.stat-card,
.campaign-card,
.dashboard-card,
.glass-card {

  background:
  rgba(20,83,45,0.25);

  border:
  1px solid rgba(74,222,128,0.12);

  backdrop-filter: blur(20px);

  box-shadow:
  0 10px 30px rgba(0,0,0,0.18);

}

.stat-card {
  padding: 40px;
  text-align: center;
}

.stat-card h2 {
  font-size: 54px;
  color: var(--eco);
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 52px;
  margin-bottom: 20px;
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 40px;
}

.calculator-form,
.calculator-result {
  padding: 40px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
}

.form-group input {
  width: 100%;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(34,197,94,0.08);
  backdrop-filter: blur(16px);

box-shadow:
0 10px 40px rgba(20,83,45,0.06);
  color: #163020;
}

.full-btn {
  width: 100%;
}

.result-number {
  font-size: 72px;
  color: var(--eco);
  margin: 30px 0;
}

.equivalent-box {
  margin: 30px 0;
  display: grid;
  gap: 14px;
}

.campaign-grid {
  grid-template-columns: repeat(3,1fr);
}

.campaign-image {
  height: 240px;
  border-radius: 32px 32px 0 0;
}

.image-1 {
  background: linear-gradient(135deg,#14532D,#22C55E);
}

.image-2 {
  background: linear-gradient(
135deg,
#14532D,
#22C55E
);
}

.image-3 {
  background: linear-gradient(
135deg,
#1B4332,
#2D6A4F
);
}

.campaign-content {
  padding: 30px;
}

.campaign-tag {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--eco);
}

.progress-bar {
  height: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  overflow: hidden;
  margin: 24px 0;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg,#22C55E,#0EA5E9);
}

.campaign-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.dashboard-grid {
  grid-template-columns: 2fr 1fr 1fr;
}

.dashboard-card {
  padding: 40px;
}

.chart-placeholder {
  height: 300px;
  display: flex;
  align-items: flex-end;
}

.chart-bars {
  width: 100%;
  display: flex;
  gap: 20px;
  align-items: flex-end;
  height: 100%;
}

.chart-bars span {
  flex: 1;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(180deg,#22C55E,#14532D);
}

.activity-feed {
  list-style: none;
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.impact-item {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}

.movement-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 60px;
  align-items: center;
}

.movement-content h2 {
  font-size: 54px;
  margin-bottom: 24px;
}

.movement-actions {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  margin-top: 40px;
}

.movement-item {

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 18px 22px;

  background: white;

  border-radius: 18px;

  border:
  1px solid rgba(34,197,94,0.08);

  box-shadow:
  0 8px 24px rgba(20,83,45,0.05);

  font-weight: 600;

  color: #14532D;

  transition: all 0.3s ease;

  cursor: pointer;

}

.movement-item:hover {

  transform: translateY(-4px);

  background:
  linear-gradient(
  135deg,
  #22C55E,
  #16A34A
  );

  color: white;

  box-shadow:
  0 15px 35px rgba(34,197,94,0.18);

transform:
  translateY(-4px)
  scale(1.02);
}


.movement-item span {

  font-size: 22px;

}

.movement-visual {

  position: relative;

  width: 100%;

  min-height: 420px;

  border-radius: 40px;

  background:
  linear-gradient(
  135deg,
  #DFF7E2,
  #F6FFF8
  );

  border:
  1px solid rgba(34,197,94,0.08);

  overflow: hidden;

  display: flex;

  justify-content: center;

  align-items: center;

  box-shadow:
  0 20px 50px rgba(20,83,45,0.08);

}

.earth-icon {

  position: absolute;

  font-size: 180px;

  z-index: 3;

  animation:
  floatingEarth 6s ease-in-out infinite;

}

@keyframes floatingEarth {

  0%,100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

}

.glow-circle {

  position: absolute;

  width: 380px;
  height: 380px;

  border-radius: 50%;

  background:
  radial-gradient(
  circle,
  rgba(34,197,94,0.45) 0%,
  rgba(34,197,94,0.15) 40%,
  transparent 75%
  );

  filter: blur(50px);

}

.cta-box {

  text-align: center;

  padding: 90px 80px;

  border-radius: 40px;

  background:
  linear-gradient(
  135deg,
  #2D6A4F 0%,
  #40916C 50%,
  #74C69D 100%
  );

  position: relative;

  overflow: hidden;

  box-shadow:
  0 25px 60px rgba(45,106,79,0.15);

}

.cta-box::before {

  content: '';

  position: absolute;

  width: 500px;
  height: 500px;

  background:
  radial-gradient(
  rgba(255,255,255,0.15),
  transparent 70%
  );

  top: -200px;
  right: -100px;

  border-radius: 50%;

}

p,
span,
li,
label {
    color: var(--text-soft);
}


.cta-box h2 {

  font-size: 64px;

  line-height: 1.1;

  margin-bottom: 24px;

  color: #F8FFF9;

}

.cta-box p {

  color:
  rgba(255,255,255,0.82);

  font-size: 20px;

  margin-bottom: 40px;

}

footer {
  background: #ECFDF3;
}

footer a {
  color: #4F6F52;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

footer h4 {
  margin-bottom: 20px;
}

footer a {
  display: block;
  margin-bottom: 14px;
}

.mobile-cta {
  display: none;
}

@media(max-width:991px) {

  nav,
  .nav-buttons {
    display: none;
  }

  .hero-grid,
  .calculator-grid,
  .movement-grid,
  .dashboard-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .campaign-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-visual {
    height: 400px;
  }

  .earth-circle {

  background:
  radial-gradient(
  circle at top,
  #4ADE80,
  #14532D
  );

  box-shadow:
  0 0 180px rgba(34,197,94,0.45);

}

  .social-proof {
    flex-direction: column;
  }

  .section-header h2,
  .movement-content h2,
  .cta-box h2 {
    font-size: 38px;
  }

  .mobile-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    gap: 14px;
    z-index: 999;
  }

  .mobile-cta a {
    flex: 1;
    padding: 18px;
    text-align: center;
    border-radius: 999px;
    text-decoration: none;
    background: linear-gradient(135deg,#22C55E,#14532D);
    color: #163020;
  }

}