/* Greenlight Check – gemeinsames Stylesheet für alle Seiten */
:root { --ink:#1a2530; --mut:#5d6d7e; --acc:#14532d; --acc2:#1f9d4d; --cta:#15803d; --warn:#c0392b; --ok:#1f9d4d; --line:#e5e8eb; }
* { box-sizing:border-box; margin:0; }
body { font-family:'Segoe UI',system-ui,sans-serif; color:var(--ink); line-height:1.6; }
.wrap { max-width:1040px; margin:0 auto; padding:0 24px; }
a.btn, button.btn { display:inline-block; background:var(--cta); color:#fff; font-size:17px; font-weight:600; padding:14px 32px; border:none; border-radius:8px; cursor:pointer; text-decoration:none; }
a.btn:hover, button.btn:hover { background:#0f5132; }
a.btn:focus-visible, button.btn:focus-visible, input:focus-visible, textarea:focus-visible, a:focus-visible { outline:3px solid #14532d; outline-offset:2px; }

/* Topbar */
.topbar { background:#14532d; padding:9px 0; font-size:14px; text-align:center; color:#eafaf1; }

/* Header + Navigation */
header { padding:14px 0; border-bottom:1px solid var(--line); position:sticky; top:0; background:#fff; z-index:20; }
header .wrap { display:flex; align-items:center; gap:20px; flex-wrap:wrap; }
header img.logo { height:52px; width:auto; display:block; }
header .claim { font-size:13px; color:var(--mut); }
nav.main { margin-left:auto; display:flex; gap:22px; flex-wrap:wrap; align-items:center; }
nav.main a { text-decoration:none; color:var(--ink); font-size:15px; font-weight:600; }
nav.main a:hover, nav.main a[aria-current="page"] { color:var(--cta); }
nav.main a.navcta { background:var(--cta); color:#fff; padding:9px 18px; border-radius:8px; }
nav.main a.navcta:hover { background:#0f5132; color:#fff; }

/* Hero */
.hero { padding:64px 0 52px; background:linear-gradient(180deg,#f2faf5,#fff); }
.hero .wrap { display:grid; grid-template-columns:1.2fr .9fr; gap:48px; align-items:center; }
h1 { font-size:40px; line-height:1.2; }
h1 em { font-style:normal; color:var(--cta); }
.hero p.lead { font-size:19px; color:var(--mut); margin:18px 0 8px; }
.checks { list-style:none; padding:0; margin:22px 0 0; font-size:16px; }
.checks li { padding:7px 0 7px 30px; position:relative; }
.checks li::before { content:"✓"; position:absolute; left:0; color:var(--ok); font-weight:700; }
.trust { font-size:13.5px; color:var(--mut); margin-top:16px; }

/* Card / forms */
.card { background:#fff; border:1px solid var(--line); border-radius:14px; padding:30px; box-shadow:0 12px 40px rgba(15,61,30,.12); }
.card h2 { font-size:20px; margin-bottom:4px; }
.card p { font-size:14px; color:var(--mut); margin-bottom:16px; }
.card label, form.std label { display:block; font-size:14px; font-weight:600; margin:12px 0 4px; }
.card input, form.std input, form.std textarea { width:100%; padding:12px 14px; font-size:15px; border:1.5px solid #b0bec5; border-radius:8px; font-family:inherit; }
.card button { width:100%; margin-top:18px; }
.card .fine { font-size:12px; color:var(--mut); margin-top:12px; }

/* Stats band */
.band { background:#0f3d1e; color:#fff; padding:36px 0; }
.band .wrap { display:flex; gap:48px; justify-content:center; text-align:center; flex-wrap:wrap; }
.band b { font-size:34px; display:block; color:#63d36f; }
.band span { font-size:14px; color:#d5dbdb; }

section { padding:60px 0; }
section h2.sec { font-size:29px; text-align:center; margin-bottom:10px; }
section p.secsub { text-align:center; color:var(--mut); max-width:640px; margin:0 auto 40px; }

/* Steps / value cards */
.steps { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.step { background:#f8fafb; border:1px solid var(--line); border-radius:12px; padding:26px; }
.step .n { width:38px; height:38px; border-radius:50%; background:var(--acc); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:700; margin-bottom:14px; }
.step .ic { font-size:30px; margin-bottom:10px; }
.step h3 { font-size:17px; margin-bottom:8px; }
.step p { font-size:14.5px; color:var(--mut); }

/* two-column value */
.duo { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.duo .step { padding:30px; }

/* Pricing */
.prices { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; align-items:stretch; }
.price { border:1px solid var(--line); border-radius:14px; padding:30px 26px; display:flex; flex-direction:column; }
.price.hot { border:2px solid var(--acc2); position:relative; }
.price.hot::before { content:"Meistgewählt"; position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--acc2); color:#fff; font-size:12px; padding:3px 14px; border-radius:20px; }
.price h3 { font-size:18px; }
.price .amt { font-size:34px; font-weight:700; margin:10px 0 2px; }
.price .per { font-size:13px; color:var(--mut); margin-bottom:16px; }
.price ul { list-style:none; padding:0; flex:1; }
.price li { font-size:14.5px; padding:7px 0 7px 26px; position:relative; }
.price li::before { content:"✓"; position:absolute; left:0; color:var(--ok); font-weight:700; }
.price a.btn { text-align:center; margin-top:18px; }
.price a.btn.ghost { background:#fff; color:var(--acc); border:2px solid var(--acc); }

/* Comparison table */
.compare { width:100%; border-collapse:collapse; margin-top:8px; font-size:15px; }
.compare th, .compare td { padding:13px 16px; text-align:left; border-bottom:1px solid var(--line); }
.compare th.us { color:var(--acc); }
.compare td.us { font-weight:600; color:var(--acc); }
.compare tbody tr:hover { background:#f8fafb; }
.compare td.no { color:var(--mut); }

/* Report teaser */
.teaser { display:grid; grid-template-columns:1.1fr 1fr; gap:32px; align-items:center; background:#f2faf5; border:1px solid #cde9d8; border-radius:16px; padding:34px; }
.teaser h3 { font-size:22px; margin-bottom:10px; }
.teaser p { color:var(--mut); font-size:15px; margin-bottom:18px; }
.teaser .mock { background:#fff; border:1px solid var(--line); border-radius:10px; padding:18px; box-shadow:0 8px 24px rgba(15,61,30,.1); font-size:12.5px; }
.teaser .mock .bar { height:9px; border-radius:5px; margin:7px 0; }

/* About / founder */
.about { display:grid; grid-template-columns:200px 1fr; gap:36px; align-items:start; }
.about .photo { width:200px; height:200px; border-radius:14px; object-fit:cover; display:block; box-shadow:0 8px 24px rgba(15,61,30,.15); }
.about h3 { font-size:22px; margin-bottom:4px; }
.about .role { color:var(--acc2); font-weight:600; font-size:14px; margin-bottom:14px; }
.about p { color:var(--mut); font-size:15.5px; margin-bottom:12px; }

/* Contact */
.contact { background:#0f3d1e; color:#fff; border-radius:16px; padding:40px; display:grid; grid-template-columns:1fr 1fr; gap:34px; align-items:center; }
.contact h2 { font-size:26px; margin-bottom:10px; }
.contact p { color:#d5dbdb; font-size:15px; }
.contact a { color:#63d36f; }
.contact form label { display:block; font-size:13.5px; font-weight:600; margin:10px 0 4px; color:#fff; }
.contact form input, .contact form textarea { width:100%; padding:11px 13px; font-size:15px; border:none; border-radius:8px; font-family:inherit; }
.contact form button { width:100%; margin-top:14px; }

/* CTA row */
.ctarow { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.ctacard { border:1px solid var(--line); border-radius:14px; padding:28px; text-align:center; background:#fff; display:flex; flex-direction:column; }
.ctacard h3 { font-size:18px; margin-bottom:8px; }
.ctacard p { font-size:14.5px; color:var(--mut); flex:1; margin-bottom:16px; }

/* FAQ */
.faq details { border-bottom:1px solid var(--line); padding:16px 4px; }
.faq summary { font-weight:600; font-size:16.5px; cursor:pointer; }
.faq p { margin-top:10px; color:var(--mut); font-size:15px; }

/* generic page intro */
.pagehead { background:linear-gradient(180deg,#f2faf5,#fff); padding:56px 0 40px; text-align:center; }
.pagehead h1 { font-size:34px; }
.pagehead p { color:var(--mut); font-size:18px; max-width:640px; margin:14px auto 0; }

footer { background:#f4f6f7; padding:36px 0; font-size:13px; color:var(--mut); }
footer a { color:var(--mut); }
footer nav { margin-bottom:8px; }
footer nav a { margin-right:16px; font-weight:600; }

@media(max-width:820px){
  .hero .wrap, .steps, .prices, .duo, .teaser, .about, .contact, .ctarow { grid-template-columns:1fr; }
  h1 { font-size:31px; }
  header .wrap { gap:12px; }
  nav.main { margin-left:0; width:100%; gap:16px; }
  .about .photo { width:160px; height:160px; }
}

/* Sprachumschalter DE / FR / IT */
.langsw{display:inline-flex;gap:6px;margin-left:12px;font-size:13px;align-items:center}
.langsw a{padding:2px 7px;border-radius:5px;color:#5a6b6b;text-decoration:none;font-weight:700;letter-spacing:.3px}
.langsw a:hover{background:#f0f4f4}
.langsw a[aria-current="true"]{background:#eaf5ea;color:#1f7a33}
