/* ===== RESET & BASE ===== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --green:#15803d;--green-dark:#166534;--green-light:#22c55e;
  --lime:#a3e635;--lime-light:#d9f99d;
  --brown:#78350f;--brown-light:#92400e;
  --cream:#fefdf5;--white:#ffffff;
  --text:#1a1a1a;--text-light:#4a4a4a;--text-muted:#6b7280;
  --radius:16px;--radius-sm:10px;--radius-lg:24px;
  --shadow:0 4px 24px rgba(21,128,61,.08);
  --shadow-lg:0 12px 40px rgba(21,128,61,.12);
  --shadow-card:0 2px 16px rgba(0,0,0,.06);
  --transition:all .3s cubic-bezier(.4,0,.2,1);
  --max-w:1200px;
  --font-heading:'Fraunces',serif;
  --font-body:'Work Sans',sans-serif;
}
html{scroll-behavior:smooth;font-size:16px}
body{font-family:var(--font-body);color:var(--text);background:var(--cream);line-height:1.7;overflow-x:hidden}
img{max-width:100%;height:auto;display:block}
a{color:var(--green);text-decoration:none;transition:var(--transition)}
a:hover{color:var(--green-dark)}
ul,ol{list-style:none}
h1,h2,h3,h4,h5,h6{font-family:var(--font-heading);font-weight:700;line-height:1.25;color:var(--brown)}
h1{font-size:clamp(2rem,5vw,3.2rem)}
h2{font-size:clamp(1.6rem,4vw,2.4rem)}
h3{font-size:clamp(1.2rem,3vw,1.6rem)}
h4{font-size:1.15rem}
p{margin-bottom:1rem}

/* ===== UTILITY ===== */
.container{max-width:var(--max-w);margin:0 auto;padding:0 1.5rem}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}
.section{padding:5rem 0}
.section-alt{background:var(--white)}
.section-green{background:var(--green);color:var(--white)}
.section-green h2,.section-green h3,.section-green h4{color:var(--white)}
.text-center{text-align:center}
.text-green{color:var(--green)}
.text-brown{color:var(--brown)}
.text-lime{color:var(--lime)}
.mb-1{margin-bottom:.5rem}
.mb-2{margin-bottom:1rem}
.mb-3{margin-bottom:1.5rem}
.mb-4{margin-bottom:2rem}
.mb-5{margin-bottom:3rem}

/* ===== LEAF DECORATION (CSS nature motif) ===== */
.leaf-decoration{position:relative}
.leaf-decoration::before{
  content:'';position:absolute;width:120px;height:120px;
  background:radial-gradient(ellipse at 30% 50%,rgba(163,230,53,.15) 0%,transparent 70%);
  border-radius:60% 40% 50% 50%;top:-40px;right:-30px;transform:rotate(-25deg);pointer-events:none;z-index:0;
}
.leaf-decoration::after{
  content:'';position:absolute;width:80px;height:80px;
  background:radial-gradient(ellipse at 60% 40%,rgba(21,128,61,.08) 0%,transparent 70%);
  border-radius:40% 60% 50% 50%;bottom:-20px;left:-20px;transform:rotate(15deg);pointer-events:none;z-index:0;
}
.leaf-left::before{left:-30px;right:auto}

/* ===== ORGANIC SHAPES ===== */
.organic-blob{
  position:absolute;border-radius:50% 40% 60% 50%;opacity:.06;pointer-events:none;z-index:0;
}
.blob-1{width:400px;height:400px;background:var(--green);top:-100px;right:-150px}
.blob-2{width:300px;height:300px;background:var(--lime);bottom:-80px;left:-120px}
.blob-3{width:250px;height:250px;background:var(--brown);top:50%;right:-100px;border-radius:40% 60% 50% 50%}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.85rem 2rem;border-radius:var(--radius);font-weight:600;
  font-family:var(--font-body);font-size:1rem;
  cursor:pointer;border:2px solid transparent;transition:var(--transition);
  text-align:center;line-height:1.4;
}
.btn-primary{background:var(--green);color:var(--white)}
.btn-primary:hover{background:var(--green-dark);color:var(--white);transform:translateY(-2px);box-shadow:var(--shadow-lg)}
.btn-secondary{background:transparent;color:var(--green);border-color:var(--green)}
.btn-secondary:hover{background:var(--green);color:var(--white);transform:translateY(-2px)}
.btn-lime{background:var(--lime);color:var(--green-dark)}
.btn-lime:hover{background:#bef264;transform:translateY(-2px);box-shadow:var(--shadow-lg)}
.btn-white{background:var(--white);color:var(--green)}
.btn-white:hover{background:var(--cream);transform:translateY(-2px)}
.btn svg,.btn-icon{width:18px;height:18px;flex-shrink:0}

/* ===== HEADER / NAV ===== */
.site-header{
  position:fixed;top:0;left:0;width:100%;z-index:1000;
  background:rgba(254,253,245,.92);backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(21,128,61,.08);transition:var(--transition);
}
.site-header.scrolled{box-shadow:0 2px 20px rgba(0,0,0,.08)}
.nav-wrapper{display:flex;align-items:center;justify-content:space-between;padding:.75rem 0}
.nav-logo{display:flex;align-items:center;gap:.6rem;font-family:var(--font-heading);font-size:1.3rem;font-weight:700;color:var(--green)}
.nav-logo svg{width:36px;height:36px}
.nav-links{display:flex;align-items:center;gap:.25rem}
.nav-links a{padding:.5rem .85rem;border-radius:var(--radius-sm);font-size:.92rem;font-weight:500;color:var(--text);transition:var(--transition)}
.nav-links a:hover,.nav-links a.active{color:var(--green);background:rgba(21,128,61,.06)}
.nav-cta{margin-left:.5rem}
.mobile-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:.5rem}
.mobile-toggle span{display:block;width:24px;height:2px;background:var(--text);border-radius:2px;transition:var(--transition)}

/* ===== HERO ===== */
.hero{
  position:relative;padding:10rem 0 6rem;overflow:hidden;
  background:linear-gradient(160deg,rgba(254,253,245,0.85) 0%,rgba(236,252,203,0.85) 50%,rgba(220,252,231,0.85) 100%), url('../images/hero.png') center/cover no-repeat;
}
.hero-content{position:relative;z-index:1;max-width:750px}
.hero-badge{
  display:inline-flex;align-items:center;gap:.5rem;
  padding:.4rem 1rem;border-radius:50px;
  background:rgba(21,128,61,.08);color:var(--green);
  font-size:.85rem;font-weight:600;margin-bottom:1.5rem;
}
.hero-badge svg{width:16px;height:16px}
.hero h1{margin-bottom:1.5rem}
.hero h1 span{color:var(--green);display:inline}
.hero p{font-size:1.15rem;color:var(--text-light);margin-bottom:2rem;max-width:600px}
.hero-actions{display:flex;gap:1rem;flex-wrap:wrap}
.hero-visual{
  position:absolute;right:-5%;top:50%;transform:translateY(-50%);
  width:500px;height:500px;opacity:.12;pointer-events:none;z-index:0;
}
.hero-visual svg{width:100%;height:100%}
.hero-stats{display:flex;gap:2.5rem;margin-top:3rem;padding-top:2rem;border-top:1px solid rgba(21,128,61,.12)}
.hero-stat{text-align:left}
.hero-stat .num{font-family:var(--font-heading);font-size:2rem;font-weight:700;color:var(--green);display:block}
.hero-stat .label{font-size:.85rem;color:var(--text-muted)}

/* ===== PILLAR CARDS ===== */
.pillars-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1.5rem;margin-top:3rem}
.pillar-card{
  position:relative;background:var(--white);border-radius:var(--radius);padding:2rem 1.5rem;
  box-shadow:var(--shadow-card);transition:var(--transition);overflow:hidden;
  border:1px solid rgba(21,128,61,.06);
}
.pillar-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.pillar-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:4px;
  background:linear-gradient(90deg,var(--green),var(--lime));border-radius:var(--radius) var(--radius) 0 0;
}
.pillar-icon{
  width:56px;height:56px;border-radius:14px;
  background:linear-gradient(135deg,rgba(21,128,61,.08),rgba(163,230,53,.12));
  display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem;
}
.pillar-icon svg{width:28px;height:28px;color:var(--green)}
.pillar-card h3{margin-bottom:.75rem;font-size:1.15rem}
.pillar-card p{font-size:.92rem;color:var(--text-light);margin-bottom:0}

/* ===== ENERGY BALANCE ===== */
.energy-compare{display:grid;grid-template-columns:1fr auto 1fr;gap:2rem;align-items:start;margin-top:3rem}
.energy-card{background:var(--white);border-radius:var(--radius);padding:2rem;box-shadow:var(--shadow-card);border:1px solid rgba(21,128,61,.06)}
.energy-card.before{border-top:4px solid #ef4444}
.energy-card.after{border-top:4px solid var(--green)}
.energy-card h3{margin-bottom:1.5rem;display:flex;align-items:center;gap:.5rem}
.energy-card h3 .tag{
  font-size:.75rem;font-family:var(--font-body);font-weight:600;
  padding:.2rem .6rem;border-radius:50px;
}
.before .tag{background:#fef2f2;color:#dc2626}
.after .tag{background:#f0fdf4;color:#15803d}
.energy-row{display:flex;justify-content:space-between;padding:.6rem 0;border-bottom:1px solid rgba(0,0,0,.05);font-size:.92rem}
.energy-row:last-child{border-bottom:none;font-weight:600}
.energy-arrow{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.5rem;
  font-family:var(--font-heading);font-weight:700;color:var(--green);font-size:1.1rem;
}
.energy-arrow svg{width:48px;height:48px;color:var(--green)}

/* ===== SUBSIDIES ===== */
.subsidies-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:1.5rem;margin-top:3rem}
.subsidy-card{
  background:var(--white);border-radius:var(--radius);padding:1.75rem;
  box-shadow:var(--shadow-card);border-left:4px solid var(--green);transition:var(--transition);
}
.subsidy-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.subsidy-card h4{margin-bottom:.5rem;color:var(--green)}
.subsidy-card .amount{font-family:var(--font-heading);font-size:1.5rem;font-weight:700;color:var(--brown);display:block;margin-bottom:.5rem}
.subsidy-card p{font-size:.9rem;color:var(--text-light);margin-bottom:0}

/* ===== FUN FACTS ===== */
.facts-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));gap:1.25rem;margin-top:3rem}
.fact-card{
  background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.15);
  border-radius:var(--radius);padding:1.5rem;transition:var(--transition);
}
.fact-card:hover{background:rgba(255,255,255,.18);transform:translateY(-2px)}
.fact-card .fact-num{
  font-family:var(--font-heading);font-size:2rem;font-weight:700;
  color:var(--lime);display:block;margin-bottom:.25rem;
}
.fact-card p{color:rgba(255,255,255,.9);font-size:.92rem;margin-bottom:0}

/* ===== BLOG CARDS ===== */
.blog-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(340px,1fr));gap:1.5rem;margin-top:3rem}
.blog-card{
  background:var(--white);border-radius:var(--radius);overflow:hidden;
  box-shadow:var(--shadow-card);transition:var(--transition);
  border:1px solid rgba(21,128,61,.06);display:flex;flex-direction:column;
}
.blog-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.blog-card-img{
  height:200px;background:linear-gradient(135deg,#dcfce7,#ecfccb);
  display:flex;align-items:center;justify-content:center;position:relative;overflow:hidden;
}
.blog-card-img svg{width:64px;height:64px;color:var(--green);opacity:.4}
.blog-card-img .cat-badge{
  position:absolute;top:1rem;left:1rem;
  background:var(--green);color:var(--white);
  font-size:.75rem;font-weight:600;padding:.3rem .75rem;border-radius:50px;
}
.blog-card-body{padding:1.5rem;flex:1;display:flex;flex-direction:column}
.blog-card-body h3{font-size:1.1rem;margin-bottom:.5rem}
.blog-card-body h3 a{color:var(--brown)}
.blog-card-body h3 a:hover{color:var(--green)}
.blog-card-body p{font-size:.9rem;color:var(--text-light);flex:1}
.blog-card-meta{display:flex;align-items:center;justify-content:space-between;font-size:.8rem;color:var(--text-muted);margin-top:.75rem;padding-top:.75rem;border-top:1px solid rgba(0,0,0,.05)}
.blog-card-meta .read-more{color:var(--green);font-weight:600;display:flex;align-items:center;gap:.3rem}

/* ===== FAQ ===== */
.faq-list{max-width:800px;margin:3rem auto 0}
.faq-item{border-bottom:1px solid rgba(21,128,61,.1);overflow:hidden}
.faq-question{
  display:flex;align-items:center;justify-content:space-between;gap:1rem;
  padding:1.25rem 0;cursor:pointer;font-weight:600;font-size:1.05rem;
  color:var(--brown);transition:var(--transition);background:none;border:none;
  width:100%;text-align:left;font-family:var(--font-body);
}
.faq-question:hover{color:var(--green)}
.faq-question svg{width:20px;height:20px;flex-shrink:0;transition:var(--transition);color:var(--green)}
.faq-item.open .faq-question svg{transform:rotate(180deg)}
.faq-answer{max-height:0;overflow:hidden;transition:max-height .4s ease}
.faq-answer-inner{padding:0 0 1.25rem;color:var(--text-light);font-size:.95rem;line-height:1.8}

/* ===== CTA SECTION ===== */
.cta-section{
  background:linear-gradient(135deg,var(--green) 0%,#166534 100%);
  padding:4rem 0;text-align:center;position:relative;overflow:hidden;
}
.cta-section::before{
  content:'';position:absolute;width:600px;height:600px;
  background:radial-gradient(circle,rgba(163,230,53,.15) 0%,transparent 70%);
  top:-200px;right:-200px;border-radius:50%;
}
.cta-section h2{color:var(--white);margin-bottom:1rem;position:relative;z-index:1}
.cta-section p{color:rgba(255,255,255,.85);font-size:1.1rem;margin-bottom:2rem;max-width:600px;margin-left:auto;margin-right:auto;position:relative;z-index:1}
.cta-section .btn{position:relative;z-index:1}

/* ===== FOOTER ===== */
.site-footer{background:#0f2a16;color:rgba(255,255,255,.7);padding:4rem 0 0}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2.5rem}
.footer-brand h3{color:var(--white);font-size:1.3rem;margin-bottom:.75rem;display:flex;align-items:center;gap:.5rem}
.footer-brand p{font-size:.9rem;line-height:1.7}
.footer-col h4{color:var(--lime);font-size:.9rem;text-transform:uppercase;letter-spacing:1px;margin-bottom:1rem;font-family:var(--font-body);font-weight:600}
.footer-col ul li{margin-bottom:.5rem}
.footer-col ul li a{color:rgba(255,255,255,.6);font-size:.9rem}
.footer-col ul li a:hover{color:var(--lime)}
.footer-bottom{margin-top:3rem;padding:1.5rem 0;border-top:1px solid rgba(255,255,255,.08);display:flex;justify-content:space-between;align-items:center;font-size:.82rem;flex-wrap:wrap;gap:1rem}
.footer-bottom a{color:rgba(255,255,255,.5)}
.footer-bottom a:hover{color:var(--lime)}

/* ===== BLOG PAGE ===== */
.page-header{
  padding:8rem 0 3rem;
  background:linear-gradient(160deg,var(--cream) 0%,#ecfccb 50%,#dcfce7 100%);
  text-align:center;position:relative;overflow:hidden;
}
.page-header h1{margin-bottom:1rem}
.page-header p{font-size:1.1rem;color:var(--text-light);max-width:600px;margin:0 auto}
.blog-grid-full{display:grid;grid-template-columns:repeat(auto-fill,minmax(340px,1fr));gap:1.5rem}

/* ===== BLOG POST / ARTICLE ===== */
.article-header{
  padding:8rem 0 3rem;
  background:linear-gradient(160deg,var(--cream) 0%,#ecfccb 50%,#dcfce7 100%);
  position:relative;overflow:hidden;
}
.article-header .breadcrumb{display:flex;align-items:center;gap:.5rem;font-size:.85rem;color:var(--text-muted);margin-bottom:1.5rem}
.article-header .breadcrumb a{color:var(--green)}
.article-header h1{max-width:800px;margin-bottom:1rem}
.article-meta{display:flex;align-items:center;gap:1.5rem;font-size:.9rem;color:var(--text-muted);flex-wrap:wrap}
.article-meta span{display:flex;align-items:center;gap:.3rem}

.article-content{max-width:800px;margin:0 auto;padding:3rem 1.5rem}
.article-content h2{margin:2.5rem 0 1rem;padding-top:1rem;border-top:1px solid rgba(21,128,61,.1)}
.article-content h2:first-of-type{border-top:none;padding-top:0}
.article-content h3{margin:2rem 0 .75rem;color:var(--green)}
.article-content p{color:var(--text-light);margin-bottom:1.25rem}
.article-content ul,.article-content ol{margin:1rem 0 1.5rem 1.5rem;color:var(--text-light)}
.article-content ul{list-style:none;margin-left:0}
.article-content ul li{position:relative;padding-left:1.5rem;margin-bottom:.5rem}
.article-content ul li::before{content:'';position:absolute;left:0;top:.6rem;width:8px;height:8px;background:var(--lime);border-radius:50%}
.article-content ol{list-style:decimal}
.article-content ol li{margin-bottom:.5rem}
.article-content strong{color:var(--text);font-weight:600}
.article-content blockquote{
  border-left:4px solid var(--green);padding:1rem 1.5rem;margin:1.5rem 0;
  background:rgba(21,128,61,.04);border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  font-style:italic;color:var(--text-light);
}
.article-content table{width:100%;border-collapse:collapse;margin:1.5rem 0;font-size:.9rem}
.article-content table th{background:var(--green);color:var(--white);padding:.75rem 1rem;text-align:left;font-weight:600}
.article-content table td{padding:.65rem 1rem;border-bottom:1px solid rgba(0,0,0,.06)}
.article-content table tr:hover{background:rgba(21,128,61,.03)}

.info-box{
  background:linear-gradient(135deg,rgba(21,128,61,.04),rgba(163,230,53,.06));
  border:1px solid rgba(21,128,61,.12);border-radius:var(--radius);
  padding:1.5rem;margin:1.5rem 0;
}
.info-box h4{color:var(--green);margin-bottom:.5rem;display:flex;align-items:center;gap:.5rem}
.info-box p{margin-bottom:0;font-size:.92rem}

.article-cta{
  background:linear-gradient(135deg,var(--green),#166534);
  border-radius:var(--radius);padding:2.5rem;text-align:center;margin:3rem 0;color:var(--white);
}
.article-cta h3{color:var(--white);margin-bottom:.75rem}
.article-cta p{color:rgba(255,255,255,.85);margin-bottom:1.25rem}

/* ===== WISSEN PAGE ===== */
.wissen-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem;margin-top:2rem}
.wissen-card{
  background:var(--white);border-radius:var(--radius);padding:2rem;
  box-shadow:var(--shadow-card);border:1px solid rgba(21,128,61,.06);transition:var(--transition);
}
.wissen-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-lg)}
.wissen-card h3{margin-bottom:.75rem;font-size:1.1rem}
.wissen-card p{font-size:.9rem;color:var(--text-light)}

/* ===== LEGAL PAGES ===== */
.legal-content{max-width:800px;margin:0 auto;padding:3rem 1.5rem}
.legal-content h2{margin:2rem 0 1rem;font-size:1.4rem}
.legal-content h3{margin:1.5rem 0 .75rem;font-size:1.15rem;color:var(--green)}
.legal-content p,.legal-content li{color:var(--text-light);font-size:.95rem}
.legal-content ul{list-style:disc;margin:1rem 0 1.5rem 1.5rem}
.legal-content ul li{margin-bottom:.4rem}
.legal-content address{font-style:normal;line-height:1.8}

/* ===== SCROLL TO TOP ===== */
.scroll-top{
  position:fixed;bottom:2rem;right:2rem;width:48px;height:48px;
  border-radius:50%;background:var(--green);color:var(--white);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;border:none;opacity:0;visibility:hidden;
  transition:var(--transition);box-shadow:var(--shadow);z-index:999;
}
.scroll-top.visible{opacity:1;visibility:visible}
.scroll-top:hover{background:var(--green-dark);transform:translateY(-3px)}
.scroll-top svg{width:20px;height:20px}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .energy-compare{grid-template-columns:1fr;gap:1rem}
  .energy-arrow{flex-direction:row;padding:1rem 0}
  .energy-arrow svg{transform:rotate(90deg)}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  .section{padding:3.5rem 0}
  .nav-links{
    position:fixed;top:0;right:-100%;width:280px;height:100vh;
    background:var(--cream);flex-direction:column;padding:5rem 2rem 2rem;
    box-shadow:-4px 0 20px rgba(0,0,0,.1);transition:right .35s ease;
    align-items:flex-start;gap:.25rem;z-index:1001;
  }
  .nav-links.open{right:0}
  .nav-cta{margin-left:0;margin-top:1rem}
  .mobile-toggle{display:flex;z-index:1002}
  .mobile-toggle.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
  .mobile-toggle.open span:nth-child(2){opacity:0}
  .mobile-toggle.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
  .mobile-overlay{
    position:fixed;inset:0;background:rgba(0,0,0,.4);z-index:1000;
    opacity:0;visibility:hidden;transition:var(--transition);
  }
  .mobile-overlay.open{opacity:1;visibility:visible}
  .hero{padding:7rem 0 4rem}
  .hero-stats{flex-direction:column;gap:1rem}
  .pillars-grid{grid-template-columns:1fr 1fr}
  .blog-grid,.blog-grid-full{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;text-align:center}
}
@media(max-width:480px){
  .pillars-grid{grid-template-columns:1fr}
  .hero-actions{flex-direction:column}
  .hero-actions .btn{width:100%;justify-content:center}
  .subsidies-grid{grid-template-columns:1fr}
}


/* === Mobile Logo Size === */
@media (max-width: 768px) {
  .logo img, .nav-logo img, .navbar-brand img, .nav-brand img, .navbar__logo img {
    height: 36px !important;
  }
}