/* ============================================================
   Evergreen Life Partner LP – Stylesheet
   Palette orientiert an evergreenlife.it (Grün/Natur/Wellness)
   ============================================================ */
:root {
  --green: #2f7a3f;
  --green-dark: #1d4d2a;
  --green-darker: #143620;
  --green-light: #5aa66c;
  --mint: #eaf3ec;
  --mint-2: #f4f8f3;
  --gold: #c8a24a;
  --gold-dark: #a8842f;
  --ink: #1f2a22;
  --muted: #5d6b60;
  --line: #dfe8e1;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(20, 54, 32, .10);
  --shadow-sm: 0 4px 14px rgba(20, 54, 32, .08);
  --maxw: 1140px;
  --font: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1, h2, h3 { line-height: 1.2; color: var(--green-darker); margin: 0 0 .5em; font-weight: 800; letter-spacing: -.01em; }
h1 { font-size: clamp(2rem, 5vw, 3.3rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
.lead { font-size: 1.18rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  padding: .85em 1.6em; border-radius: 999px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  border: 2px solid transparent; transition: .2s ease; text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--green); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--green-dark); }
.btn-gold { background: var(--gold); color: #2a2208; }
.btn-gold:hover { background: var(--gold-dark); color:#fff; }
.btn-outline { background: transparent; color: var(--green-dark); border-color: var(--green); }
.btn-outline:hover { background: var(--mint); }
.btn-lg { padding: 1.05em 2.1em; font-size: 1.08rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; color: var(--green-darker); font-size: 1.15rem; }
.brand:hover { text-decoration: none; }
.brand-logo { height: 56px; width: 56px; display: block; }
.brand .leaf {
  width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--green-light), var(--green-dark));
  display: grid; place-items: center; color: #fff; font-size: 18px;
}
.nav-links { display: flex; align-items: center; gap: 22px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: .97rem; }
.nav-links a:hover { color: var(--green); text-decoration: none; }
.nav-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch { display: flex; gap: 4px; background: var(--mint); border-radius: 999px; padding: 4px; }
.lang-switch a {
  padding: 5px 11px; border-radius: 999px; font-size: .82rem; font-weight: 700;
  color: var(--muted); text-transform: uppercase; letter-spacing: .03em;
}
.lang-switch a.active { background: var(--green); color: #fff; }
.lang-switch a:hover { text-decoration: none; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--green-darker); margin: 5px 0; transition: .2s; }
.nav-cta-mobile { display: none; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 500px at 80% -10%, rgba(90,166,108,.25), transparent),
    linear-gradient(160deg, var(--mint-2), #fff 60%);
  padding: clamp(48px, 8vw, 96px) 0;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.eyebrow {
  display: inline-block; background: var(--mint); color: var(--green-dark);
  font-weight: 700; font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 18px;
}
.hero p.lead { margin-bottom: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero-note { font-size: .9rem; color: var(--muted); }
.hero-visual {
  background: linear-gradient(160deg, var(--green-dark), var(--green));
  border-radius: var(--radius-lg); padding: 38px; color: #fff; box-shadow: var(--shadow);
}
.hero-visual h3 { color: #fff; }
.hero-visual ul { list-style: none; padding: 0; margin: 0; }
.hero-visual li { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.hero-visual li:last-child { border-bottom: 0; }
.hero-visual .check { color: var(--gold); font-weight: 900; }

/* ---------- Sections ---------- */
section { padding: clamp(52px, 7vw, 84px) 0; }
.section-head { max-width: 720px; margin: 0 auto 46px; text-align: center; }
.section-head .lead { margin-bottom: 0; }
.bg-mint { background: var(--mint-2); }

/* ---------- Cards / Grid ---------- */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); transition: .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--mint);
  display: grid; place-items: center; font-size: 26px; margin-bottom: 16px;
}
.card h3 { margin-bottom: .35em; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }

/* Product card */
.product {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: .2s;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product .thumb {
  height: 150px; background: linear-gradient(160deg, var(--green-light), var(--green-dark));
  display: grid; place-items: center; color: #fff; font-size: 46px;
}
.product .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product h3 { font-size: 1.12rem; margin-bottom: .3em; }
.product .desc { color: var(--muted); font-size: .93rem; flex: 1; }
.product .price { font-weight: 800; color: var(--green-dark); font-size: 1.15rem; margin: 12px 0 14px; }
.badge { display:inline-block; font-size:.72rem; font-weight:700; text-transform:uppercase; letter-spacing:.05em;
  background: var(--mint); color: var(--green-dark); padding: 4px 10px; border-radius: 999px; margin-bottom: 10px; align-self:flex-start;}

/* ---------- Two paths ---------- */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.path {
  border-radius: var(--radius-lg); padding: 38px; box-shadow: var(--shadow);
}
.path.customer { background: var(--mint-2); border: 1px solid var(--line); }
.path.partner { background: linear-gradient(160deg, var(--green-dark), var(--green-darker)); color: #fff; }
.path.partner h2, .path.partner h3 { color: #fff; }
.path ul { list-style: none; padding: 0; margin: 0 0 24px; }
.path li { display: flex; gap: 10px; padding: 8px 0; }
.path li .check { color: var(--gold); font-weight: 900; }
.path.customer li .check { color: var(--green); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(160deg, var(--green), var(--green-dark));
  color: #fff; text-align: center; border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px); box-shadow: var(--shadow);
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,.9); max-width: 620px; margin: 0 auto 26px; }
.cta-banner .hero-cta { justify-content: center; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 22px; margin-bottom: 14px; box-shadow: var(--shadow-sm);
}
.faq summary { font-weight: 700; cursor: pointer; color: var(--green-darker); list-style: none; display:flex; justify-content:space-between; align-items:center; gap:12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; color: var(--green); }
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 14px 0 0; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-darker); color: #cfe0d4; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.site-footer h4 { color: #fff; font-size: 1rem; margin: 0 0 14px; }
.site-footer a { color: #cfe0d4; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { padding: 4px 0; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 1.15rem; margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); padding-top: 22px; font-size: .86rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.disclaimer { font-size: .8rem; color: #9fb6a6; margin-top: 14px; max-width: 760px; }

/* ---------- Legal pages ---------- */
.legal { padding: clamp(40px,6vw,72px) 0; }
.legal-wrap { max-width: 820px; margin: 0 auto; }
.legal h2 { margin-top: 1.6em; font-size: 1.4rem; }
.legal h1 { margin-bottom: .6em; }
.legal p, .legal li { color: var(--ink); }
.legal .muted { color: var(--muted); font-size: .92rem; }
.note-box { background: var(--mint); border-left: 4px solid var(--gold); padding: 14px 18px; border-radius: 8px; margin: 18px 0; font-size: .92rem; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .paths { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { position: fixed; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column;
    align-items: flex-start; padding: 18px 22px; gap: 6px; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-130%); transition: .25s; }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; padding: 8px 0; }
  .nav-toggle { display: block; }
  /* Header-CTA auf Mobil ausblenden – Platz für Sprachschalter + Menü */
  .nav-actions .btn-primary { display: none; }
  .nav { gap: 10px; }
  .nav-actions { gap: 8px; }
  .nav-cta-mobile { display: block; }
  .nav-cta-mobile a { display: inline-block; background: var(--green); color: #fff !important; padding: 10px 18px; border-radius: 999px; font-weight: 700; }
  .nav-cta-mobile a:hover { background: var(--green-dark); text-decoration: none; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
