/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* GLOBAL */
body {
  line-height: 1.6;
  color: #1a1a1a;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* HERO */
.hero {
  background: linear-gradient(120deg, #0b3d2e, #0a6b5c);
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

/* =================================
   FLOATING SOCIAL MEDIA SIDEBAR
================================= */

.social-sidebar {
    position: fixed;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-sidebar a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.social-sidebar a:hover {
    transform: scale(1.15);
}

/* Platform Colors */

.social-sidebar .whatsapp {
    background: #25D366;
}

.social-sidebar .instagram {
    background: linear-gradient(
        45deg,
        #f09433,
        #e6683c,
        #dc2743,
        #cc2366,
        #bc1888
    );
}

.social-sidebar .facebook {
    background: #1877F2;
}

.social-sidebar .twitter {
    background: #000000;
}

.social-sidebar .linkedin {
    background: #0077B5;
}

/* Mobile Responsive */

@media (max-width: 768px) {

    .social-sidebar {
        left: 10px;
    }

    .social-sidebar a {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}
.impact-btn{
    background:#00c27a !important;
    font-size:20px;
}

/* ===================================
   IMPACT RIBBON
=================================== */

.impact-ribbon{
    background:#0f172a;
    color:#ffffff;
    text-align:center;
    padding:12px 20px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
    border-bottom:1px solid rgba(255,255,255,.1);
}

/* ===================================
   HERO SLIDER
=================================== */

.hero-slider{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100vh;

    background-size:cover;
    background-position:center center;
    background-repeat:no-repeat;

    display:flex;
    align-items:center;
    justify-content:center;

    opacity:0;
    visibility:hidden;
    transition:all 1s ease;
}

.slide.active{
    opacity:1;
    visibility:visible;
    z-index:2;
}

/* ===================================
   DARK OVERLAY
=================================== */

.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:
    linear-gradient(
        rgba(0,0,0,.65),
        rgba(0,0,0,.55)
    );
    z-index:1;
}

/* ===================================
   CONTENT
=================================== */

.slide-content{
    position:relative;
    z-index:2;
    text-align:center;
    max-width:1000px;
    color:#ffffff;
    padding:0 20px;
}

.hero-tag{
    display:inline-block;
    background:rgba(0,194,122,.15);
    color:#ffffff;
    border:1px solid rgba(255,255,255,.25);
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:25px;
}

.slide-content h1{
    font-size:64px;
    line-height:1.1;
    font-weight:800;
    margin-bottom:25px;
}

.slide-content p{
    font-size:22px;
    line-height:1.7;
    max-width:850px;
    margin:0 auto 30px auto;
    color:rgba(255,255,255,.92);
}

/* ===================================
   IMPACT METRICS
=================================== */

.impact-metrics{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
    margin-bottom:40px;
}

.impact-metrics span{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,.15);
    padding:12px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

/* ===================================
   PREMIUM CTA BUTTONS
=================================== */

.hero-actions{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.btn-investor{
    background:#00C853;
    color:#ffffff;
    text-decoration:none;
    padding:18px 34px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.btn-investor:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.btn-carbon{
    background:#0077B6;
    color:#ffffff;
    text-decoration:none;
    padding:18px 34px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.btn-carbon:hover{
    transform:translateY(-3px);
}

.btn-download{
    background:#ffffff;
    color:#0f172a;
    text-decoration:none;
    padding:18px 34px;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.btn-download:hover{
    transform:translateY(-3px);
}

/* ===================================
   SLIDER NAVIGATION DOTS
=================================== */

.slider-dots{
    position:absolute;
    bottom:40px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
    z-index:10;
}

.slider-dots span{
    width:14px;
    height:14px;
    border-radius:50%;
    background:rgba(255,255,255,.4);
    cursor:pointer;
    transition:.3s;
}

.slider-dots span.active{
    background:#00C853;
}

/* ===================================
   FLOATING IMPACT CARD
=================================== */

.hero-stats{
    position:absolute;
    bottom:90px;
    right:40px;
    z-index:3;

    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);

    padding:20px;
    border-radius:15px;
    min-width:260px;

    border:1px solid rgba(255,255,255,.15);
}

.hero-stats h4{
    color:#fff;
    margin-bottom:10px;
}

.hero-stats p{
    font-size:14px;
    color:#fff;
    margin-bottom:8px;
}

/* ===================================
   ANIMATIONS
=================================== */

.slide-content h1{
    animation:fadeUp 1s ease;
}

.slide-content p{
    animation:fadeUp 1.3s ease;
}

.hero-actions{
    animation:fadeUp 1.6s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* ===================================
   MOBILE RESPONSIVE
=================================== */

@media(max-width:991px){

.slide-content h1{
    font-size:42px;
}

.slide-content p{
    font-size:18px;
}

.hero-slider{
    height:90vh;
}

}

@media(max-width:768px){

.slide-content h1{
    font-size:32px;
}

.slide-content p{
    font-size:16px;
}

.hero-tag{
    font-size:12px;
}

.impact-metrics{
    gap:10px;
}

.impact-metrics span{
    font-size:12px;
    padding:10px 15px;
}

.hero-actions{
    flex-direction:column;
    align-items:center;
}

.btn-investor,
.btn-carbon,
.btn-download{
    width:100%;
    max-width:320px;
    text-align:center;
}

.hero-stats{
    display:none;
}

}

/* ===================================
   SLIDER NAVIGATION BUTTONS
=================================== */

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:20;

    width:60px;
    height:60px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(10px);

    color:#ffffff;
    font-size:28px;
    font-weight:bold;
    cursor:pointer;

    transition:all .3s ease;
}

.slider-btn:hover{
    background:rgba(255,255,255,0.25);
    transform:translateY(-50%) scale(1.1);
}

.prev-slide{
    left:25px;
}

.next-slide{
    right:25px;
}

@media(max-width:768px){

.slider-btn{
    width:45px;
    height:45px;
    font-size:22px;
}

.prev-slide{
    left:10px;
}

.next-slide{
    right:10px;
}

}

/* ===================================
   DIGITAL TRANSPARENCY ECOSYSTEM
=================================== */

.bg-gradient-to-r{
    background:linear-gradient(
        135deg,
        #f0fdf4 0%,
        #ecfeff 100%
    );
}

.max-w-7xl{
    max-width:1280px;
    margin:auto;
}

.mx-auto{
    margin-left:auto;
    margin-right:auto;
}

.py-16{
    padding-top:80px;
    padding-bottom:80px;
}

.px-6{
    padding-left:24px;
    padding-right:24px;
}

/* ===================================
   SECTION HEADING
=================================== */

.text-center{
    text-align:center;
}

.mb-12{
    margin-bottom:60px;
}

.inline-block{
    display:inline-block;
}

.bg-green-100{
    background:#dcfce7;
}

.text-green-800{
    color:#166534;
}

.rounded-full{
    border-radius:999px;
}

.px-4{
    padding-left:16px;
    padding-right:16px;
}

.py-2{
    padding-top:8px;
    padding-bottom:8px;
}

.font-semibold{
    font-weight:600;
}

.text-4xl{
    font-size:2.7rem;
    line-height:1.2;
}

.text-green-900{
    color:#14532d;
}

.mb-6{
    margin-bottom:24px;
}

.text-xl{
    font-size:1.25rem;
    line-height:1.8;
}

.text-gray-700{
    color:#374151;
}

.max-w-4xl{
    max-width:900px;
}

/* ===================================
   GRID LAYOUT
=================================== */

.grid{
    display:grid;
}

.gap-8{
    gap:32px;
}

.md-grid-3{
    grid-template-columns:repeat(3,1fr);
}

/* ===================================
   CARDS
=================================== */

.bg-white{
    background:#ffffff;
}

.p-8{
    padding:32px;
}

.rounded-xl{
    border-radius:18px;
}

.shadow-lg{
    box-shadow:
    0 15px 35px rgba(0,0,0,0.08);
}

.shadow-xl{
    box-shadow:
    0 25px 60px rgba(0,0,0,0.10);
}

.card-hover{
    transition:all .35s ease;
}

.card-hover:hover{
    transform:translateY(-8px);
    box-shadow:
    0 30px 70px rgba(0,0,0,0.12);
}

.text-5xl{
    font-size:3.5rem;
}

.mb-4{
    margin-bottom:16px;
}

.text-2xl{
    font-size:1.7rem;
    line-height:1.3;
}

.font-bold{
    font-weight:700;
}

/* ===================================
   CLIMATE ECOSYSTEM FLOW BOX
=================================== */

.mt-16{
    margin-top:80px;
}

.rounded-2xl{
    border-radius:24px;
}

.p-10{
    padding:40px;
}

.grid-flow{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    align-items:center;
}

.grid-flow > div{
    padding:15px;
    transition:.3s;
}

.grid-flow > div:hover{
    transform:translateY(-5px);
}

.text-sm{
    font-size:14px;
    color:#6b7280;
}

/* ===================================
   KPI FLOW ICONS
=================================== */

.grid-flow .text-4xl{
    display:inline-flex;
    justify-content:center;
    align-items:center;

    width:80px;
    height:80px;

    border-radius:50%;
    background:#f0fdf4;

    margin-bottom:15px;
}

/* ===================================
   TRANSPARENCY CTA AREA
=================================== */

.mt-12{
    margin-top:60px;
}

.max-w-5xl{
    max-width:1050px;
}

.flex{
    display:flex;
}

.flex-wrap{
    flex-wrap:wrap;
}

.justify-center{
    justify-content:center;
}

.gap-4{
    gap:16px;
}

.text-lg{
    font-size:1.15rem;
    line-height:1.8;
}

/* ===================================
   CTA BUTTONS
=================================== */

.climate-btn{
    display:inline-block;
    padding:16px 32px;
    border-radius:10px;
    font-weight:700;
    text-decoration:none;
    transition:.3s ease;
}

.btn-wallet{
    background:#16a34a;
    color:#fff;
}

.btn-wallet:hover{
    background:#15803d;
    transform:translateY(-3px);
}

.btn-traca{
    background:#2563eb;
    color:#fff;
}

.btn-traca:hover{
    background:#1d4ed8;
    transform:translateY(-3px);
}

.btn-partner{
    background:#f59e0b;
    color:#fff;
}

.btn-partner:hover{
    background:#d97706;
    transform:translateY(-3px);
}

/* ===================================
   PREMIUM HIGHLIGHT BAR
=================================== */

.transparency-highlight{
    margin-top:50px;

    background:linear-gradient(
        135deg,
        #14532d,
        #166534
    );

    color:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;
}

.transparency-highlight h3{
    font-size:2rem;
    margin-bottom:15px;
}

.transparency-highlight p{
    font-size:1.1rem;
    opacity:.95;
}

/* ===================================
   INVESTOR BADGES
=================================== */

.partner-badges{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-top:30px;
}

.partner-badges span{
    background:#fff;
    border:1px solid #d1d5db;
    padding:12px 20px;
    border-radius:50px;
    font-weight:600;
    color:#166534;
}

/* ===================================
   MOBILE RESPONSIVE
=================================== */

@media(max-width:992px){

.md-grid-3{
    grid-template-columns:1fr;
}

.grid-flow{
    grid-template-columns:repeat(2,1fr);
}

.text-4xl{
    font-size:2.2rem;
}

.text-xl{
    font-size:1.1rem;
}

}

@media(max-width:768px){

.grid-flow{
    grid-template-columns:1fr;
}

.text-4xl{
    font-size:2rem;
}

.text-2xl{
    font-size:1.4rem;
}

.p-10{
    padding:25px;
}

.flex{
    flex-direction:column;
}

.climate-btn{
    width:100%;
    text-align:center;
}

.partner-badges{
    flex-direction:column;
    align-items:center;
}

}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.primary {
  background: #00c27a;
  color: white;
}

.secondary {
  background: #0077b6;
  color: white;
}

.outline {
  border: 2px solid white;
  color: white;
}

/* SECTIONS */
.section {
  padding: 70px 20px;
}

.light-bg {
  background: #f5f7f6;
}

.dark {
  background: #0f172a;
  color: white;
}

/* HEADINGS */
h2 {
  text-align: center;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: gray;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* CARDS */
.card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.dark-card {
  background: #1e293b;
  color: white;
}

/* HIGHLIGHT */
.highlight {
  margin-top: 30px;
  padding: 20px;
  background: #e8f5e9;
  text-align: center;
  font-style: italic;
  border-left: 5px solid #00c27a;
}

.dark-highlight {
  background: #1e293b;
  border-left: 5px solid #00c27a;
}

/* STEPS */
.steps {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 250px;
  background: #f0fdf4;
  padding: 20px;
  border-radius: 8px;
}

/* LIST */
.list {
  list-style: none;
  max-width: 700px;
  margin: auto;
  text-align: left;
}

.list li {
  margin-bottom: 10px;
}

/* ===================================
IMPACT OPPORTUNITIES
=================================== */

.impact-opportunity{
padding:100px 20px;
background:#f8fafc;
}

.section-header{
text-align:center;
max-width:900px;
margin:0 auto 70px;
}

.section-tag{
display:inline-block;
background:#dcfce7;
color:#166534;
padding:10px 20px;
border-radius:30px;
font-weight:700;
margin-bottom:20px;
}

.section-header h2{
font-size:3rem;
margin-bottom:20px;
color:#14532d;
}

.section-header p{
font-size:1.15rem;
line-height:1.8;
color:#4b5563;
}

/* ===================================
CARDS
=================================== */

.opportunity-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;
}

.opportunity-card{
background:#ffffff;
padding:35px;
border-radius:20px;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;
}

.opportunity-card:hover{
transform:translateY(-10px);
box-shadow:0 30px 50px rgba(0,0,0,.12);
}

.card-icon{
font-size:3rem;
margin-bottom:20px;
}

.opportunity-card h3{
font-size:1.5rem;
margin-bottom:15px;
color:#14532d;
}

.opportunity-card p{
margin-bottom:20px;
line-height:1.7;
}

.opportunity-card ul{
margin-bottom:25px;
padding-left:20px;
}

.opportunity-card li{
margin-bottom:8px;
}

.card-btn{
display:inline-block;
padding:12px 25px;
background:#16a34a;
color:#fff;
text-decoration:none;
border-radius:8px;
font-weight:700;
}

/* ===================================
IMPACT COUNTER
=================================== */

.impact-counter{
background:linear-gradient(135deg,#14532d,#166534);
padding:90px 20px;
color:#fff;
}

.counter-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
text-align:center;
}

.counter-item h3{
font-size:3rem;
font-weight:800;
margin-bottom:10px;
}

.counter-item p{
font-size:1.1rem;
}

/* ===================================
PARTNERSHIP CTA
=================================== */

.partner-cta{
padding:100px 20px;
text-align:center;
background:#ffffff;
}

.partner-cta h2{
font-size:3rem;
color:#14532d;
margin-bottom:20px;
}

.partner-cta p{
max-width:900px;
margin:auto;
font-size:1.15rem;
line-height:1.8;
margin-bottom:40px;
}

.cta-group{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

.btn-primary{
background:#16a34a;
color:#fff;
padding:18px 35px;
border-radius:10px;
font-weight:700;
text-decoration:none;
}

.btn-secondary{
background:#0f172a;
color:#fff;
padding:18px 35px;
border-radius:10px;
font-weight:700;
text-decoration:none;
}

/* ===================================
RESPONSIVE
=================================== */

@media(max-width:768px){

.section-header h2{
font-size:2rem;
}

.partner-cta h2{
font-size:2rem;
}

.counter-item h3{
font-size:2.2rem;
}

}

/* =====================================================
   TRUST BAR
===================================================== */

.trust-bar{
    background:linear-gradient(90deg,#14532d,#166534,#1e40af);
    color:#fff;
    padding:18px 20px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:30px;
    font-size:15px;
    font-weight:600;
}

.trust-bar span{
    display:flex;
    align-items:center;
    gap:8px;
}

/* =====================================================
   PARTNERS SECTION
===================================================== */

.partners-section{
    padding:100px 20px;
    background:#f8fafc;
}

.section-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}

.section-tag{
    display:inline-block;
    background:#dcfce7;
    color:#166534;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.section-header h2{
    font-size:3rem;
    color:#14532d;
    margin-bottom:20px;
}

.section-header p{
    font-size:1.15rem;
    line-height:1.8;
    color:#4b5563;
}

.partner-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.partner-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.partner-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.partner-card img{
    max-height:90px;
    max-width:180px;
    object-fit:contain;
    margin-bottom:20px;
}

.partner-card h3{
    color:#14532d;
    margin-bottom:12px;
}

.partner-card p{
    color:#6b7280;
    line-height:1.7;
}

/* =====================================================
   IMPACT STORIES
===================================================== */

.impact-stories{
    padding:100px 20px;
    background:#ffffff;
}

.stories-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.story-card{
    background:#f8fafc;
    border-radius:20px;
    padding:40px;
    transition:.3s;
    border-left:5px solid #16a34a;
}

.story-card:hover{
    transform:translateY(-6px);
}

.quote-icon{
    font-size:3rem;
    color:#16a34a;
    margin-bottom:15px;
}

.story-card p{
    font-style:italic;
    line-height:1.8;
    color:#374151;
    margin-bottom:20px;
}

.story-card h4{
    color:#14532d;
    font-weight:700;
}

/* =====================================================
   CLIMATE MOVEMENT SECTION
===================================================== */

.climate-movement{
    padding:100px 20px;
    background:
    linear-gradient(
        135deg,
        rgba(20,83,45,.95),
        rgba(22,101,52,.95)
    ),
    url('img/climate-bg.jpg');

    background-size:cover;
    background-position:center;
    color:#fff;
    text-align:center;
}

.climate-movement h2{
    font-size:3rem;
    margin-bottom:20px;
}

.climate-movement p{
    max-width:900px;
    margin:0 auto 50px;
    font-size:1.15rem;
    line-height:1.8;
}

.movement-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    margin-bottom:60px;
}

.movement-item{
    background:rgba(255,255,255,.10);
    backdrop-filter:blur(10px);
    padding:35px 25px;
    border-radius:20px;
    transition:.3s;
    font-size:2rem;
}

.movement-item:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,.18);
}

.movement-item h3{
    margin-top:15px;
    font-size:1.1rem;
    color:#fff;
}

.footer-cta{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#16a34a;
    color:#fff;
    padding:18px 35px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-primary:hover{
    background:#15803d;
}

.btn-secondary{
    background:#fff;
    color:#14532d;
    padding:18px 35px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-secondary:hover{
    background:#f3f4f6;
}

/* =====================================================
   PREMIUM FOOTER
===================================================== */

.seed-footer{
    background:#0f172a;
    color:#fff;
    padding-top:80px;
}

.footer-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));
    gap:50px;
    padding-bottom:50px;
}

.seed-footer h3{
    margin-bottom:20px;
    color:#fff;
}

.seed-footer p,
.seed-footer li{
    color:#cbd5e1;
    line-height:1.8;
}

.seed-footer ul{
    list-style:none;
    padding:0;
}

.seed-footer ul li{
    margin-bottom:10px;
}

.seed-footer ul li a{
    color:#cbd5e1;
    text-decoration:none;
    transition:.3s;
}

.seed-footer ul li a:hover{
    color:#16a34a;
}

.footer-badges{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:20px;
}

.footer-badges span{
    background:rgba(255,255,255,.08);
    padding:8px 14px;
    border-radius:50px;
    font-size:13px;
}

.footer-social{
    display:flex;
    gap:15px;
    margin-top:20px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#16a34a;
    transform:translateY(-3px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:25px 0;
    text-align:center;
}

.footer-bottom p{
    margin:8px 0;
    color:#94a3b8;
    font-size:14px;
}

/* =====================================================
   ANIMATIONS
===================================================== */

.partner-card,
.story-card,
.movement-item{
    animation:fadeUp .8s ease;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* =====================================================
   RESPONSIVE DESIGN
===================================================== */

@media(max-width:992px){

.section-header h2,
.climate-movement h2{
    font-size:2.4rem;
}

}

@media(max-width:768px){

.section-header h2,
.climate-movement h2{
    font-size:2rem;
}

.section-header p,
.climate-movement p{
    font-size:1rem;
}

.footer-grid{
    text-align:center;
}

.footer-social{
    justify-content:center;
}

.footer-badges{
    justify-content:center;
}

.trust-bar{
    flex-direction:column;
    gap:12px;
}

}

.impact-ribbon-final{
background:#16a34a;
color:#fff;
text-align:center;
padding:15px;
font-weight:600;
font-size:14px;
}

/* CTA */
.cta-section {
  background: linear-gradient(120deg, #0077b6, #00c27a);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

/* FOOTER */
footer {
  background: #0b3d2e;
  color: white;
  text-align: center;
  padding: 20px;
}