/* GreenTone AB – delad stilmall */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:#2d6a2d; --lime:#b5d44a; --earth:#8b6340;
  --cream:#f5f0e8; --dark:#1a2e1a; --text:#2c2c2c;
}

html { scroll-behavior: smooth; }
body { font-family:'Karla',sans-serif; background:var(--cream); color:var(--text); overflow-x:hidden; }

/* NAV */
nav {
  background:var(--dark); padding:1rem 2rem; display:flex; align-items:center;
  justify-content:space-between; position:sticky; top:0; z-index:100; gap:1rem;
}
.logo { display:flex; align-items:center; flex-shrink:0; }
.logo svg { height:42px; width:auto; display:block; }
nav ul { list-style:none; display:flex; gap:1.75rem; }
nav ul a { color:#ccc; text-decoration:none; font-size:.95rem; transition:color .2s; white-space:nowrap; }
nav ul a:hover, nav ul a.active { color:var(--lime); }

/* HERO */
.hero {
  background:var(--dark); padding:5rem 2rem; position:relative; overflow:hidden;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse 60% 60% at 25% 70%, rgba(45,106,45,.5) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 25%, rgba(181,212,74,.12) 0%, transparent 60%);
}
.hero-inner { position:relative; max-width:1060px; margin:0 auto; }
.hero-tag {
  display:inline-block; background:var(--lime); color:var(--dark); font-weight:700;
  font-size:.75rem; letter-spacing:.1em; text-transform:uppercase;
  padding:.35rem .9rem; border-radius:2px; margin-bottom:1.5rem;
}
.hero h1 {
  font-family:'Fraunces',serif; font-size:clamp(2.2rem,5.5vw,4rem); color:#fff;
  line-height:1.08; font-weight:900; max-width:16ch;
}
.hero h1 em { color:var(--lime); font-style:italic; }
.hero p { color:#b0c4b0; font-size:1.1rem; margin-top:1.5rem; max-width:52ch; line-height:1.65; }

/* SECTIONS */
section { padding:4.5rem 2rem; }
.container { max-width:1060px; margin:0 auto; }
.section-label {
  font-size:.75rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase;
  color:var(--green); margin-bottom:.6rem;
}
h2 {
  font-family:'Fraunces',serif; font-size:clamp(1.8rem,3.6vw,2.7rem); font-weight:900;
  color:var(--dark); line-height:1.12; margin-bottom:1rem;
}
.lead { font-size:1.05rem; line-height:1.7; color:#555; max-width:62ch; }
.white { background:#fff; }

/* BULLETS */
.checklist { list-style:none; display:flex; flex-direction:column; gap:1.1rem; margin-top:2rem; }
.checklist li { display:flex; gap:1rem; align-items:flex-start; line-height:1.6; color:#444; }
.checklist .check {
  background:var(--lime); color:var(--dark); border-radius:50%; width:1.5rem; height:1.5rem;
  display:grid; place-items:center; font-size:.75rem; font-weight:700; flex-shrink:0; margin-top:.15rem;
}

/* CARDS */
.cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(270px,1fr)); gap:1.5rem; margin-top:2.5rem; }
.card {
  background:var(--cream); border-radius:8px; padding:2rem; border-left:5px solid var(--lime);
  transition:transform .2s, box-shadow .2s;
}
.white .card { background:var(--cream); }
.card:hover { transform:translateY(-4px); box-shadow:0 12px 30px rgba(0,0,0,.08); }
.card h3 { font-family:'Fraunces',serif; font-size:1.25rem; color:var(--dark); margin-bottom:.6rem; }
.card p { font-size:.95rem; line-height:1.6; color:#555; }

/* STEPS */
.steps { display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); gap:2rem; margin-top:2.5rem; }
.step-num { font-family:'Fraunces',serif; font-size:3.5rem; font-weight:900; color:var(--lime); opacity:.3; line-height:1; }
.dark-sec .step-num { opacity:.4; }
.step h3 { font-family:'Fraunces',serif; font-size:1.15rem; margin:.4rem 0 .5rem; }
.step p { font-size:.93rem; line-height:1.6; }

/* DARK SECTION */
.dark-sec { background:var(--dark); color:#fff; }
.dark-sec h2, .dark-sec h3 { color:#fff; }
.dark-sec .section-label { color:var(--lime); }
.dark-sec .lead, .dark-sec p { color:#9ab09a; }

/* STATS */
.stats { display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:1.25rem; margin-top:2.5rem; }
.stat { background:rgba(255,255,255,.07); border-radius:8px; padding:1.75rem 1.25rem; text-align:center; }
.stat b { display:block; font-family:'Fraunces',serif; font-size:2rem; color:var(--lime); line-height:1; }
.stat span { display:block; font-size:.85rem; color:#9ab09a; margin-top:.6rem; line-height:1.45; }

/* TABLE */
.table-wrap { overflow-x:auto; margin-top:2.5rem; border-radius:8px; }
table { width:100%; border-collapse:collapse; min-width:560px; background:#fff; }
thead { background:var(--dark); }
thead th {
  text-align:left; padding:.85rem 1rem; font-size:.72rem; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; color:var(--lime);
}
tbody td { padding:.85rem 1rem; font-size:.95rem; border-bottom:1px solid #eee; }
tbody tr:nth-child(odd) { background:var(--cream); }
tbody td:first-child { font-weight:700; color:var(--dark); }
tbody td:last-child { font-weight:700; color:var(--green); white-space:nowrap; }
.table-note { font-size:.85rem; color:var(--earth); font-style:italic; margin-top:1rem; }

/* FAQ */
.faq { margin-top:2.5rem; display:flex; flex-direction:column; gap:.75rem; }
details {
  background:#fff; border-radius:8px; padding:1.25rem 1.5rem; border-left:4px solid var(--lime);
}
details summary {
  font-family:'Fraunces',serif; font-size:1.05rem; font-weight:700; color:var(--dark);
  cursor:pointer; list-style:none; display:flex; justify-content:space-between; gap:1rem;
}
details summary::-webkit-details-marker { display:none; }
details summary::after { content:'+'; color:var(--green); font-size:1.4rem; line-height:1; }
details[open] summary::after { content:'−'; }
details p { margin-top:.9rem; font-size:.95rem; line-height:1.65; color:#555; }

/* CTA */
.cta { background:var(--green); color:#fff; text-align:center; }
.cta h2 { color:#fff; }
.cta p { color:rgba(255,255,255,.8); max-width:52ch; margin:0 auto 2rem; line-height:1.65; }
.cta-boxes { display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:1.25rem; text-align:left; margin-top:2rem; }
.cta-box { background:rgba(255,255,255,.1); border-radius:8px; padding:1.4rem; }
.cta-box .label {
  font-size:.72rem; font-weight:700; letter-spacing:.1em; text-transform:uppercase;
  color:var(--lime); margin-bottom:.4rem;
}
.cta-box p { color:#fff; font-size:.98rem; margin:0; text-align:left; line-height:1.5; }
.cta-box a { color:#fff; }
.btn {
  display:inline-block; background:var(--lime); color:var(--dark); font-weight:700;
  padding:.85rem 2rem; border-radius:4px; text-decoration:none; margin-top:2rem;
  transition:filter .2s, transform .15s;
}
.btn:hover { filter:brightness(1.08); transform:translateY(-2px); }

/* FOOTER */
footer { background:var(--dark); color:#667766; text-align:center; padding:2.5rem 2rem; font-size:.85rem; }
footer svg { height:48px; width:auto; margin-bottom:.8rem; }
footer a { color:var(--lime); text-decoration:none; }
footer .org { margin-top:.4rem; font-size:.78rem; color:#556655; }

/* REVEAL */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width:760px) {
  nav ul { gap:1rem; font-size:.85rem; }
  nav ul a { font-size:.85rem; }
}
@media (max-width:560px) {
  nav { flex-direction:column; align-items:flex-start; }
  .logo svg { height:34px; }
  nav ul { flex-wrap:wrap; gap:.9rem; }
  section { padding:3.5rem 1.25rem; }
  .hero { padding:3.5rem 1.25rem; }
}
