:root {
  --green:       #2FA37E;
  --green-light: #9BE3A6;
  --green-bg:    #EEF9F1;
  --green-sec:   #6FBF8A;
  --accent:      #E7B86B;
  --white:       #FFFFFF;
  --text:        #1F2F2A;
  --radius:      10px;
  --shadow:      0 2px 10px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section--alt { background: var(--green-bg); }

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: #4a6a5f;
  max-width: 620px;
  line-height: 1.7;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 2px 6px rgba(0,0,0,0.10);
  letter-spacing: 0.3px;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 14px rgba(0,0,0,0.14); }
.btn--primary  { background: var(--green);    color: #fff; }
.btn--secondary{ background: transparent;     color: var(--green-sec); border: 2px solid var(--green-sec); }
.btn--outline  { background: transparent;     color: var(--green);     border: 2px solid var(--green); }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1180px;
  margin: 0 auto;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green);
  flex-shrink: 0;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 22px; height: 22px; fill: var(--green); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: color .2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover    { color: var(--green); }
.nav-links a.active   { color: var(--green); border-bottom-color: var(--green); font-weight: 600; }

.nav-right { display: flex; align-items: center; gap: 12px; }

.lang-de .nav-links { gap: 10px; }
.lang-de .nav-links a { font-size: 0.78rem; }
.lang-de .nav-right .btn--primary { font-size: 0.78rem; padding: 10px 14px; }

.lang-switcher { display: flex; gap: 4px; }
.lang-btn {
  padding: 5px 9px;
  border: 1px solid var(--green-light);
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  background: none;
  color: var(--green);
  transition: background .2s, color .2s;
}
.lang-btn.active, .lang-btn:hover { background: var(--green); color: #fff; border-color: var(--green); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

/* ── PAGE BANNER ── */
.page-banner {
  background: var(--green-bg);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(155,227,166,0.3) 0%, transparent 70%);
  pointer-events: none;
}
.page-banner .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: #5a8a70;
  margin-bottom: 16px;
}
.page-banner .breadcrumb a { color: var(--green); }
.page-banner .breadcrumb i { font-size: 0.65rem; }
.page-banner h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--text); margin-bottom: 12px; }
.page-banner p { font-size: 1.05rem; color: #4a6a5f; max-width: 560px; line-height: 1.7; }

/* ── HERO (index only) ── */
.hero {
  background: var(--white);
  padding: 90px 0 70px;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, #EEF9F1 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-bg);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--text); margin-bottom: 18px; font-weight: 700; }
.hero h1 span { color: var(--green); }
.hero-sub { font-size: 1.05rem; color: #4a6a5f; margin-bottom: 36px; line-height: 1.75; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--green-light);
}
.stat-number { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--green); }
.stat-label  { font-size: 0.8rem; color: #6a8a7f; }

.hero-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-bg) 0%, #d0f0d8 100%);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-img-placeholder i { font-size: 5rem; color: var(--green); opacity: 0.4; }
.hero-img-placeholder p { font-size: 0.85rem; color: var(--green-sec); text-align: center; padding: 0 24px; }

.hero-badge {
  position: absolute;
  bottom: 20px; left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge i { color: var(--green); font-size: 1.3rem; }
.hero-badge-text strong { display: block; font-size: 0.95rem; }
.hero-badge-text span   { font-size: 0.75rem; color: #6a8a7f; }

/* ── CARDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(47,163,126,0.13); }
.card-body { padding: 24px; }

.icon-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--green-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.icon-circle i { font-size: 1.3rem; color: var(--green); }

/* ── BENEFIT CARDS ── */
.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.benefit-icon {
  width: 60px; height: 60px;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.benefit-icon i { font-size: 1.4rem; color: var(--green); }
.benefit-card h3 { font-size: 1rem; margin-bottom: 8px; }
.benefit-card p  { font-size: 0.88rem; color: #5a7a6f; line-height: 1.6; }

/* ── OFFER CARDS ── */
.offer-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  border: 1px solid #e8f5ee;
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(47,163,126,0.15); }
.offer-img {
  height: 150px;
  background: linear-gradient(135deg, #c8eed8, var(--green-bg));
  display: flex; align-items: center; justify-content: center;
}
.offer-img i { font-size: 3rem; color: var(--green); opacity: 0.45; }
.offer-map {
  height: 150px;
  background: #1F6B52;
  padding: 12px;
  display: flex; align-items: center; justify-content: center;
}
.offer-map svg { width: 100%; height: 100%; display: block; }
.offer-map .land { fill: #fff; stroke: #14503f; stroke-width: 0.09; }
.offer-map .land.hl { fill: var(--accent); }
.offer-map .land-outline { fill: none; stroke: #0d3a2c; stroke-width: 0.12; pointer-events: none; }
.offer-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.offer-badge {
  display: inline-block;
  background: var(--green-bg);
  color: var(--green);
  font-size: 0.75rem; font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.offer-card h3 { font-size: 0.97rem; margin-bottom: 12px; }
.offer-meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; flex: 1; }
.offer-meta-row {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem; color: #5a7a6f;
}
.offer-meta-row i { color: var(--green-sec); font-size: 0.85rem; width: 16px; }

/* ── ARTICLE CARDS ── */
.article-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s;
}
.article-card:hover { transform: translateY(-3px); }
.article-thumb {
  height: 140px;
  background: linear-gradient(135deg, var(--green-bg), #c0e8cc);
  display: flex; align-items: center; justify-content: center;
}
.article-thumb i { font-size: 2.5rem; color: var(--green); opacity: 0.5; }
.article-body { padding: 20px; }
.article-tag {
  font-size: 0.75rem; font-weight: 600;
  color: var(--green-sec);
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 8px;
}
.article-card h3 { font-size: 0.95rem; line-height: 1.4; color: var(--text); }
.article-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--green); font-size: 0.83rem; font-weight: 600;
  margin-top: 12px;
}

/* ── TESTIMONIALS ── */
.testimonials-track { position: relative; overflow: hidden; margin-top: 48px; }
.testimonials-slider { display: flex; gap: 24px; transition: transform .4s ease; }
.testimonial-card {
  min-width: calc(33.33% - 16px);
  background: var(--green-bg);
  border-radius: var(--radius);
  padding: 28px;
  flex-shrink: 0;
}
.testimonial-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 12px; }
.testimonial-text { font-size: 0.92rem; line-height: 1.7; color: var(--text); font-style: italic; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex; align-items: center; justify-content: center;
}
.author-avatar i { color: var(--green); font-size: 1.1rem; }
.author-name { font-weight: 600; font-size: 0.9rem; }
.author-info { font-size: 0.78rem; color: #5a7a6f; }

.carousel-controls { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.carousel-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--green);
  background: none; color: var(--green);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, color .2s;
}
.carousel-btn:hover { background: var(--green); color: #fff; }

/* ── FAQ ── */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px;
  cursor: pointer; font-weight: 600; font-size: 0.95rem;
  user-select: none;
}
.faq-question i { color: var(--green); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  padding: 0 24px;
  font-size: 0.9rem; color: #4a6a5f; line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; padding: 0 24px 20px; }

/* ── FORM ── */
form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
label { font-size: 0.83rem; font-weight: 600; color: var(--text); }

input, select, textarea {
  padding: 12px 16px;
  border: 1.5px solid #d0e8db;
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47,163,126,0.12);
}
textarea { resize: vertical; min-height: 100px; }

.rodo-note { font-size: 0.78rem; color: #7a9a8f; line-height: 1.5; margin-top: 4px; }
.rodo-note a { color: var(--green); }

/* ── STATS BAR ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--green);
  border-radius: var(--radius);
  overflow: hidden;
}
.stats-bar-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stats-bar-item:last-child { border-right: none; }
.stats-bar-item .num { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 700; color: #fff; }
.stats-bar-item .lbl { font-size: 0.83rem; color: rgba(255,255,255,0.8); margin-top: 4px; }

/* ── PROCESS ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 48px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 30px; left: 10%; width: 80%;
  height: 2px;
  background: var(--green-light);
  z-index: 0;
}
.step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-num {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--green); color: #fff;
  font-family: 'Poppins', sans-serif; font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 0 0 6px var(--green-bg);
}
.step h4 { font-size: 0.9rem; margin-bottom: 6px; }
.step p   { font-size: 0.8rem; color: #5a7a6f; }

/* ── CTA BAND ── */
.cta-band {
  background: var(--green);
  padding: 64px 0;
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: #fff; margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1.05rem; }
.cta-band .btn--white {
  background: #fff; color: var(--green);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* ── FORWHOM ── */
.forwhom-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.forwhom-cards  { display: flex; flex-direction: column; gap: 16px; }
.forwhom-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--green-bg);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.forwhom-card i { color: var(--green); font-size: 1.2rem; margin-top: 2px; }
.forwhom-card p { font-size: 0.9rem; line-height: 1.5; }

/* ── FOOTER ── */
footer { background: var(--green-bg); padding: 60px 0 30px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p { font-size: 0.87rem; color: #4a6a5f; line-height: 1.7; margin: 12px 0 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 0.9rem;
  transition: background .2s, color .2s;
}
.social-link:hover { background: var(--green); color: #fff; }

.footer-col h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.87rem; color: #4a6a5f; transition: color .2s; }
.footer-links a:hover { color: var(--green); }

.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-row { display: flex; align-items: center; gap: 10px; font-size: 0.87rem; color: #4a6a5f; }
.footer-contact-row i { color: var(--green); width: 16px; }

.footer-bottom {
  border-top: 1px solid var(--green-light);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: #7a9a8f; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 0.8rem; color: #7a9a8f; transition: color .2s; }
.footer-bottom-links a:hover { color: var(--green); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-3         { grid-template-columns: repeat(2, 1fr); }
  .process-steps  { grid-template-columns: repeat(3, 1fr); }
  .process-steps::before { display: none; }
  .stats-bar      { grid-template-columns: repeat(2, 1fr); }
  .footer-top     { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-right .btn--primary { display: none; }
  .logo img { height: 80px !important; }
  .nav-inner { padding: 10px 16px; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; width: 100%;
    background: var(--white);
    padding: 20px 24px 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    gap: 16px; z-index: 99;
  }
  .nav-links.open .mobile-apply {
    display: block !important;
    margin-top: 4px;
  }
  .hero-inner, .forwhom-layout, .grid-2 { grid-template-columns: 1fr; }
  .hero-badge { left: 10px; bottom: 10px; }
  .grid-3     { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .testimonial-card { min-width: 100%; }
  .form-row   { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-bar  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .hero    { padding: 60px 0 50px; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .process-steps { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .page-banner { padding: 48px 0 40px; }
}
