
:root {
  --green-950: #0F2F24;
  --green-500: #164B37;
  --green-800: #1F6B4A;
  --green-700: #2F8F5B;
  --green-500: #56B870;
  --green-300: #B7E36B;

  --mint-100: #EAF8EF;
  --mint-50: #F5FCF7;

  --white: #FAF8F1;
  --sand: #EFE7D6;
  --white: #FFFFFF;

  --accent-lime: #C8F04A;
  --accent-apricot: #F2A65A;
  --accent-blue: #DCEFF2;

  --black: #121714;
  --anthracite: #242A26;
  --muted: #64706A;

  --border: rgba(22, 75, 55, 0.14);
  --shadow: 0 24px 70px rgba(15, 47, 36, 0.13);
  --shadow-soft: 0 12px 35px rgba(15, 47, 36, 0.08);

  --radius-lg: 28px;
  --radius-md: 18px;
  --max: 1240px;

  --font-head: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Open Sans", Arial, Helvetica, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: #ffffff;
  color: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
}
img { width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 94px 0; }
.section-soft { background: #ffffff; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--green-700); text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; font-weight: 800; margin-bottom: 16px; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: 0.6; }
h1,h2,h3 { font-family: var(--font-head); font-weight: 500; line-height: 1.08; color: var(--green-950); }
h1 { font-size: clamp(44px, 7vw, 56px); letter-spacing: -0.04em; }
h2 { font-size: clamp(32px, 4.8vw, 36px); letter-spacing: -0.035em; margin-bottom: 18px; }
h3 { font-size: 28px; margin-bottom: 12px; }
p { color: var(--muted); font-size: 16px; }
.lead { font-size: clamp(18px, 2vw, 21px); max-width: 820px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 999px; padding: 15px 24px; font-weight: 800; font-size: 14px; border: 1px solid transparent; cursor: pointer; transition: 0.2s ease; min-height: 52px; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green-500); color: var(--white); box-shadow: 0 14px 30px rgba(18,37,29,.18); }
.btn-primary:hover { background: var(--green-950); }
.btn-light { background: rgba(255,255,255,0.13); color: var(--white); border-color: rgba(255,255,255,0.35); backdrop-filter: blur(8px); }
.btn-outline { background: transparent; color: var(--green-500); border-color: rgba(31,58,46,0.32); }
.btn-outline:hover { background: var(--green-500); color: var(--white); }
.site-header { position: fixed; top:0; left:0; right:0; z-index:100; padding: 18px 0; transition: .25s ease; }
.site-header.is-scrolled, .site-header.subpage { background: rgba(247,244,239,.94); backdrop-filter: blur(18px); box-shadow: 0 8px 30px rgba(18,37,29,.08); padding: 12px 0; }
.nav { display:flex; align-items:center; justify-content:space-between; gap:26px; }
.brand { display:flex; align-items:center; gap:13px; color: var(--white); min-width:190px; }
.site-header.is-scrolled .brand, .site-header.subpage .brand { color: var(--green-950); }
.brand-mark { width:44px; height:44px; border:1px solid currentColor; border-radius:50%; display:grid; place-items:center; flex:0 0 auto; }
.brand-mark svg { width:25px; height:25px; }
.brand-name { font-weight:500; letter-spacing:.08em; font-size:18px; line-height:1; }
.brand-sub { display:block; font-size:10px; font-weight:700; letter-spacing:.18em; text-transform:uppercase; opacity:.75; margin-top:6px; }
.nav-links { display:flex; align-items:center; gap:28px; color:rgba(255,255,255,.9); font-size:14px; font-weight:500; text-transform:uppercase; }
.site-header.is-scrolled .nav-links, .site-header.subpage .nav-links { color: var(--green-950); }
.nav-links a { position:relative; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-7px; width:0; height:2px; background:currentColor; transition:.2s ease; }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.site-header:not(.is-scrolled):not(.subpage) .header-cta .btn-primary { background:rgba(255,255,255,.14); border-color:rgba(255,255,255,.32); backdrop-filter: blur(8px); }
.menu-toggle { display:none; width:48px; height:48px; border:1px solid rgba(255,255,255,.35); background:rgba(255,255,255,.08); border-radius:999px; color:var(--white); cursor:pointer; }
.site-header.is-scrolled .menu-toggle, .site-header.subpage .menu-toggle { color:var(--green-950); border-color:rgba(31,58,46,.2); background:rgba(255,255,255,.5); }
.menu-toggle span { display:block; width:20px; height:2px; background:currentColor; margin:4px auto; }
.mobile-menu { display:none; }
.hero::after { content:""; position:absolute; inset:auto 0 0; height:140px; background:linear-gradient(to top, var(--white), transparent); pointer-events:none; }
.hero-inner { position:relative; z-index:2; padding-top:92px; max-width:800px; }
.hero .eyebrow, .hero h1 { color:var(--white); }
.hero .lead { margin-top:24px; color:rgba(255,255,255,.88); }
.hero-actions { display:flex; flex-wrap:wrap; gap:14px; margin-top:34px; }
.hero-badges { display:flex; flex-wrap:wrap; gap:12px; margin-top:40px; }
.hero-badge { padding:10px 14px; border-radius:999px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.22); color:rgba(255,255,255,.9); font-size:13px; backdrop-filter: blur(8px); }
.page-hero { padding: 178px 0 92px; background: linear-gradient(135deg, var(--green-950), var(--green-700)); color: var(--white); position:relative; overflow:hidden; }
.page-hero::after { content:""; position:absolute; right:-140px; bottom:-220px; width:560px; height:560px; background:rgba(255,255,255,.06); border-radius:50%; }
.page-hero .container { position:relative; z-index:1; }
.page-hero h1, .page-hero .eyebrow { color:var(--white); }
.page-hero p { color:rgba(255,255,255,.84); margin-top:22px; }
.breadcrumb { margin-top:22px; color:rgba(255,255,255,.7); font-size:14px; }
.trust-strip { margin-top:-54px; position:relative; z-index:5; }
.trust-grid { background:var(--white); border-radius:var(--radius-lg); box-shadow:var(--shadow); display:grid; grid-template-columns:repeat(3,1fr); overflow:hidden; }
.trust-item { padding:34px 30px; border-right:1px solid var(--border); display:flex; gap:18px; align-items:flex-start; }
.trust-item:last-child { border-right:0; }
.trust-icon { width:46px; height:46px; border-radius:50%; background:#edf2e9; color:var(--green-500); display:grid; place-items:center; flex:0 0 auto; font-size:22px; }
.trust-item strong { display:block; color:var(--green-950); font-size:18px; margin-bottom:6px; }
.trust-item p { font-size:14px; }
.split { display:grid; grid-template-columns:.95fr 1.05fr; gap:34px; align-items:stretch; }
.split.reverse { grid-template-columns:1.05fr .95fr; }
.panel { border-radius:var(--radius-lg); overflow:hidden; min-height:480px; box-shadow:var(--shadow-soft); }
.panel-text { background:var(--green-500); padding:clamp(36px,5vw,62px); color:var(--white); display:flex; flex-direction:column; justify-content:center; }
.panel-text .eyebrow, .panel-text h2 { color:var(--white); }
.panel-text p { color:rgba(255,255,255,.82); margin-bottom:24px; }
.panel-image { position:relative; }
.panel-image img { height:100%; object-fit:cover; }
.image-label { position:absolute; left:22px; bottom:22px; padding:12px 16px; border-radius:999px; background:rgba(18,37,29,.72); color:var(--white); font-size:13px; backdrop-filter:blur(10px); }
.section-head { display:flex; justify-content:space-between; align-items:end; gap:30px; margin-bottom:44px; }
.section-head p { max-width:560px; }
.concept-grid, .card-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.concept-card, .info-card { background:var(--white); border-radius:var(--radius-md); overflow:hidden; box-shadow:var(--shadow-soft); transition:.25s ease; }
.concept-card:hover, .info-card:hover { transform:translateY(-6px); box-shadow:var(--shadow); }
.concept-card img { height:230px; object-fit:cover; }
.concept-content, .info-card { padding:26px; }
.concept-content h3 { font-size:25px; }
.plant-list { margin-top:18px; padding-top:18px; border-top:1px solid var(--border); color:var(--green-800); font-size:14px; font-weight:750; }
.service-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.service-card { background:var(--white); border:1px solid var(--border); border-radius:var(--radius-md); padding:28px 24px; min-height:210px; }
.service-card .icon { font-size:34px; color:var(--green-700); margin-bottom:18px; }
.service-card h3, .process-step h3 { font-family:var(--font-body); font-size:18px; font-weight:500; letter-spacing:-.02em; }
.audience-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.audience-card { min-height:330px; border-radius:var(--radius-md); overflow:hidden; position:relative; display:flex; align-items:flex-end; background-size:cover; background-position:center; box-shadow:var(--shadow-soft); }
.audience-card::before { content:""; position:absolute; inset:0; background:linear-gradient(to top, rgba(18,37,29,.82), rgba(18,37,29,.12)); }
.audience-content { position:relative; z-index:1; padding:28px; color:var(--white); }
.audience-content h3 { color:var(--white); font-size:26px; }
.audience-content p { color:rgba(255,255,255,.84); }
.process { counter-reset:step; display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.process-step { background:var(--white); border-radius:var(--radius-md); padding:30px 24px; box-shadow:var(--shadow-soft); min-height:230px; }
.process-step::before { counter-increment:step; content:counter(step); width:42px; height:42px; border-radius:50%; background:var(--green-500); color:var(--white); display:grid; place-items:center; font-weight:500; margin-bottom:28px; }
.table-wrap { overflow-x:auto; border-radius:var(--radius-md); box-shadow:var(--shadow-soft); background:var(--white); }
table { width:100%; border-collapse:collapse; min-width:760px; }
th, td { padding:18px 20px; text-align:left; border-bottom:1px solid var(--border); vertical-align:top; }
th { background:#edf2e9; color:var(--green-950); font-size:14px; text-transform:uppercase; letter-spacing:.08em; }
td strong { color:var(--green-950); }
.faq { display:grid; gap:12px; }
details { background:var(--white); border-radius:16px; box-shadow:var(--shadow-soft); padding:22px 24px; }
summary { cursor:pointer; font-weight:500; color:var(--green-950); }
details p { margin-top:14px; }
.contact-wrap { display:grid; grid-template-columns:.9fr 1.1fr; gap:34px; align-items:start; }
.contact-info { background:linear-gradient(rgba(18,37,29,.78), rgba(18,37,29,.78)), url("images/contact-green.jpg") center/cover no-repeat; border-radius:var(--radius-lg); padding:clamp(34px,5vw,58px); color:var(--white); min-height:610px; display:flex; flex-direction:column; justify-content:space-between; box-shadow:var(--shadow); }
.contact-info h2, .contact-info .eyebrow { color:var(--white); }
.contact-info p { color:rgba(255,255,255,.86); }
.contact-details { display:grid; gap:14px; margin-top:34px; }
.contact-detail { padding:16px 18px; background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.18); border-radius:16px; backdrop-filter:blur(10px); }
.contact-detail strong { display:block; font-size:13px; letter-spacing:.12em; text-transform:uppercase; opacity:.72; margin-bottom:4px; }
.form-card { background:var(--white); border-radius:var(--radius-lg); padding:clamp(28px,5vw,46px); box-shadow:var(--shadow); }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.form-field { display:grid; gap:8px; margin-bottom:18px; }
.form-field.full { grid-column:1/-1; }
label { font-size:13px; font-weight:500; color:var(--green-950); }
input, select, textarea { width:100%; border:1px solid rgba(31,58,46,.18); border-radius:14px; background:#fbfaf7; padding:14px 15px; outline:none; color:var(--black); }
textarea { min-height:150px; resize:vertical; }
input:focus, select:focus, textarea:focus { border-color:var(--green-700); box-shadow:0 0 0 4px rgba(52,92,73,.12); }
.checkbox-row { display:flex; gap:12px; align-items:flex-start; margin:8px 0 24px; }
.checkbox-row input { width:18px; height:18px; margin-top:4px; accent-color:var(--green-500); flex:0 0 auto; }
.checkbox-row label { color:var(--muted); font-weight:500; line-height:1.5; }
.form-note { font-size:13px; margin-top:16px; }
.success-message { display:none; margin-top:18px; padding:16px; border-radius:14px; background:#edf5ed; color:var(--green-500); font-weight:750; }
.success-message.is-visible { display:block; }
.cta-band { background:linear-gradient(120deg, var(--green-950), var(--green-700)); color:var(--white); border-radius:var(--radius-lg); padding:58px; display:flex; align-items:center; justify-content:space-between; gap:28px; box-shadow:var(--shadow); }
.cta-band h2, .cta-band .eyebrow { color:var(--white); }
.cta-band p { color:rgba(255,255,255,.84); max-width:680px; }
.footer { background:var(--green-950); color:rgba(255,255,255,.8); padding:54px 0 34px; }
.footer-grid { display:grid; grid-template-columns:1.3fr repeat(3,1fr); gap:40px; margin-bottom:42px; }
.footer h3 { font-family:var(--font-body); font-size:16px; font-weight:500; color:var(--white); margin-bottom:16px; }
.footer p, .footer a { color:rgba(255,255,255,.72); font-size:14px; }
.footer a:hover { color:var(--white); }
.footer-links { display:grid; gap:8px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.12); padding-top:22px; display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; font-size:13px; }
@media (max-width:1080px) {
  .nav-links,.header-cta { display:none; }
  .menu-toggle { display:block; }
  .mobile-menu { display:none; position:fixed; inset:78px 20px auto 20px; background:rgba(247,244,239,.98); backdrop-filter:blur(18px); border:1px solid var(--border); border-radius:24px; box-shadow:var(--shadow); padding:18px; z-index:99; }
  .mobile-menu.is-open { display:block; }
  .mobile-menu a { display:block; padding:14px 12px; color:var(--green-950); font-weight:800; border-bottom:1px solid var(--border); }
  .mobile-menu a:last-child { border-bottom:0; }
  .trust-grid,.split,.split.reverse,.contact-wrap { grid-template-columns:1fr; }
  .concept-grid,.card-grid,.service-grid { grid-template-columns:repeat(2,1fr); }
  .audience-grid,.process { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .panel { min-height:auto; }
  .panel-image img { height:420px; }
}
@media (max-width:720px) {
  .container { width:min(calc(100% - 28px), var(--max)); }
  .section { padding:70px 0; }
  .trust-grid,.concept-grid,.card-grid,.service-grid,.audience-grid,.process,.footer-grid,.form-grid { grid-template-columns:1fr; }
  .trust-item { border-right:0; border-bottom:1px solid var(--border); }
  .trust-item:last-child { border-bottom:0; }
  .section-head { display:block; }
  .section-head .btn { margin-top:24px; }
  .hero { min-height:92svh; }
  .hero-inner { padding-top:120px; }
  .page-hero { padding: 150px 0 72px; }
  .panel-image img { height:330px; }
  .audience-card { min-height:260px; }
  .contact-info { min-height:520px; }
  .cta-band { padding:36px 26px; display:block; }
  .cta-band .btn { margin-top:24px; }
}
@media (max-width: 500px) {
  .solution-content.active {
    display: block;
  }
  @media (max-width: 720px) {
  .brand-image img {
    height: 42px;
    max-width: 210px;
  }
}

  .solution-images {
    min-height: 360px;
    margin-bottom: 40px;
  }

  .solution-img-main {
    width: 76%;
    height: 270px;
  }

  .solution-img-small {
    width: 70%;
    height: 230px;
    border-width: 7px;
  }

  .solution-text {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .solution-tab-nav {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }

  .solution-tab {
    white-space: nowrap;
  }

  .solution-images {
    min-height: 310px;
  }

  .solution-img-main {
    width: 82%;
    height: 230px;
  }

  .solution-img-small {
    width: 74%;
    height: 200px;
  }
}
.seo-text {
  background: var(--white);
}

.seo-content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.seo-content h2 {
  margin-bottom: 32px;
}

.seo-content p {
  margin-bottom: 0;
  font-size: 17px;
  line-height: 1.85;
  text-align: left;
}

.seo-divider {
  width: 90px;
  height: 2px;
  margin: 34px auto;
  background: linear-gradient(
    90deg,
    transparent,
    var(--green-700),
    var(--accent-lime),
    var(--green-700),
    transparent
  );
  border-radius: 999px;
}

/* ==============================
   Solution Tabs Startseite
   ============================== */

.solution-tabs {
  background: var(--white);
}

.solution-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 38px;
}

.solution-tab-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 58px;
}

.solution-tab {
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: var(--mint-100);
  color: var(--green-950);
  border-radius: 999px;
  padding: 15px 25px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: 0.25s ease;
  box-shadow: 0 8px 22px rgba(15, 47, 36, 0.06);
}

.solution-tab:hover {
  transform: translateY(-2px);
  background: #ffffff;
}

.solution-tab.active {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: var(--white);
  box-shadow: 0 14px 30px rgba(47, 143, 91, 0.24);
}

.solution-content {
  display: none;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 70px;
}

.solution-content.active {
  display: grid;
}

.solution-images {
  position: relative;
  min-height: 440px;
}

.solution-img-main {
  width: 72%;
  height: 360px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.solution-img-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 68%;
  height: 300px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: var(--shadow);
  border: 10px solid var(--white);
}

.solution-text {
  max-width: 620px;
}

.solution-text h3 {
  font-family: var(--font-body);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--green-950);
  margin-bottom: 24px;
}

.solution-text p {
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 30px;
  color: var(--muted);
}

@media (max-width: 500px) {
  .solution-content.active {
    display: block;
  }

  .solution-images {
    min-height: 360px;
    margin-bottom: 40px;
  }

  .solution-img-main {
    width: 76%;
    height: 270px;
  }

  .solution-img-small {
    width: 70%;
    height: 230px;
    border-width: 7px;
  }

  .solution-text {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .solution-tab-nav {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }

  .solution-tab {
    white-space: nowrap;
  }

  .solution-images {
    min-height: 310px;
  }

  .solution-img-main {
    width: 82%;
    height: 230px;
  }

  .solution-img-small {
    width: 74%;
    height: 200px;
  }
}


/* =========================================
   City Green Feature Rows
   ========================================= */

.cg-feature-section {
  background: var(--white);
  padding-top: 90px;
  padding-bottom: 90px;
}

.cg-feature-section-alt {
  background: linear-gradient(135deg, var(--mint-50) 0%, var(--white) 100%);
}

.cg-feature-row {
  display: grid !important;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 78px;
  align-items: center;
}

.cg-feature-row-reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.cg-feature-row-reverse .cg-feature-text {
  order: 2;
}

.cg-feature-row-reverse .cg-feature-image {
  order: 1;
}

.cg-feature-text {
  max-width: 660px;
}

.cg-feature-text h2 {
  margin-bottom: 26px;
}

.cg-feature-text p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--muted);
  margin-bottom: 18px;
}

.cg-feature-text .btn {
  margin-top: 12px;
}

.cg-feature-image img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
}
/* =========================================
   City Green Why Cards Section
   ========================================= */

.cg-why-section {
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
}

.cg-why-head {
  max-width: 920px;
  margin-bottom: 48px;
}

.cg-why-head h2 {
  max-width: 860px;
  margin-bottom: 24px;
}

.cg-why-head p {
  max-width: 840px;
  font-size: 18px;
  line-height: 1.85;
  color: var(--muted);
}

.cg-why-cards {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.cg-why-card {
  min-height: 230px;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(22, 75, 55, 0.14);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(15, 47, 36, 0.06);
  transition: 0.25s ease;
}

.cg-why-card:hover {
  background: #ffffff;
  border-color: rgba(47, 143, 91, 0.28);
  transform: translateY(-4px);
  box-shadow: 0 20px 54px rgba(15, 47, 36, 0.1);
}

.cg-why-card h3 {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--green-950);
  margin-bottom: 14px;
}

.cg-why-card p {
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--muted);
}
@media (max-width: 1080px) {
  .cg-why-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .cg-why-section {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .cg-why-head {
    margin-bottom: 34px;
  }

  .cg-why-head p {
    font-size: 17px;
  }

  .cg-why-cards {
    grid-template-columns: 1fr;
  }

  .cg-why-card {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 20px;
  }
}
/* =========================================
   Header Logo Wechsel beim Scrollen
   ========================================= */

.brand-switch {
  display: flex;
  align-items: center;
  position: relative;
  min-width: 260px;
  height: 58px;
}

.brand-switch .logo {
  position: absolute;
  left: 0;
  top: 50%;
  width: auto;
  height: 58px;
  max-width: 260px;
  object-fit: contain;
  transform: translateY(-50%);
  transition: opacity 0.25s ease;
}

/* Standard auf Hero: weißes Logo */
.logo-light {
  opacity: 1;
}

.logo-dark {
  opacity: 0;
}

/* Beim Scrollen: dunkles/grünes Logo */
.site-header.is-scrolled .logo-light,
.site-header.subpage .logo-light {
  opacity: 0;
}

.site-header.is-scrolled .logo-dark,
.site-header.subpage .logo-dark {
  opacity: 1;
}

/* Logo etwas kleiner im Sticky-Zustand */
.site-header.is-scrolled .brand-switch .logo,
.site-header.subpage .brand-switch .logo {
  height: 48px;
}

.site-header.is-scrolled .brand-switch,
.site-header.subpage .brand-switch {
  height: 48px;
}

/* =========================================
   Mobile Fix Feature Sections
   ========================================= */

@media (max-width: 980px) {
  .cg-feature-row,
  .cg-feature-row-reverse {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .cg-feature-row-reverse .cg-feature-text,
  .cg-feature-row-reverse .cg-feature-image {
    order: initial !important;
  }

  .cg-feature-text {
    max-width: none !important;
    width: 100% !important;
  }

  .cg-feature-text p {
    font-size: 17px;
    line-height: 1.75;
  }

  .cg-feature-image {
    width: 100% !important;
  }

  .cg-feature-image img {
    width: 100% !important;
    height: auto !important;
    max-height: 420px;
    object-fit: cover;
    border-radius: 28px;
  }
}

@media (max-width: 640px) {
  .cg-feature-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .cg-feature-text h2 {
    font-size: 36px;
    line-height: 1.12;
  }

  .cg-feature-text p {
    font-size: 16px;
    line-height: 1.7;
  }

  .cg-feature-image img {
    max-height: 320px;
    border-radius: 22px;
  }
}
/* =========================================
   Concept Section statt Tabs
   ========================================= */

.cg-concept-section {
  background: #ffffff;
  padding-top: 110px;
  padding-bottom: 110px;
}

.cg-concept-head {
  max-width: 900px;
  margin: 0 auto 64px;
  text-align: center;
}

.cg-concept-head h2 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
}

.cg-concept-head p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.85;
  color: var(--muted);
}

.cg-concept-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.cg-concept-photo {
  position: relative;
  width: 100%;
}

.cg-concept-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 0 90px 0 90px;
  box-shadow: 0 28px 70px rgba(15, 47, 36, 0.12);
}

.cg-concept-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.cg-concept-card {
  display: block;
  min-height: 285px;
  padding: 34px 32px 30px;
  background: linear-gradient(135deg, #f2fbf6 0%, #ffffff 100%);
  border: 1px solid rgba(22, 75, 55, 0.12);
  border-radius: 28px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 16px 42px rgba(15, 47, 36, 0.07);
  transition: 0.25s ease;
}

.cg-concept-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 143, 91, 0.28);
  box-shadow: 0 24px 62px rgba(15, 47, 36, 0.12);
}

.cg-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--green-900);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cg-concept-card h3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.02em;
  color: var(--green-950);
  margin-bottom: 12px;
}

.cg-concept-card p {
  font-size: 15.8px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 22px;
}

.cg-concept-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cg-concept-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--green-900);
}

.cg-concept-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}
/* =========================================
   Concept Section statt Tabs
   ========================================= */

.cg-concept-section {
  background: #ffffff;
  padding-top: 110px;
  padding-bottom: 110px;
}

.cg-concept-head {
  max-width: 900px;
  margin: 0 auto 64px;
  text-align: center;
}

.cg-concept-head h2 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
}

.cg-concept-head p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.85;
  color: var(--muted);
}

.cg-concept-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.cg-concept-photo {
  position: relative;
  width: 100%;
}

.cg-concept-photo img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 0 90px 0 90px;
  box-shadow: 0 28px 70px rgba(15, 47, 36, 0.12);
}

.cg-concept-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.cg-concept-card {
  display: block;
  min-height: 285px;
  padding: 34px 32px 30px;
  background: linear-gradient(135deg, #f2fbf6 0%, #ffffff 100%);
  border: 1px solid rgba(22, 75, 55, 0.12);
  border-radius: 28px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 16px 42px rgba(15, 47, 36, 0.07);
  transition: 0.25s ease;
}

.cg-concept-card:hover {
  transform: translateY(-5px);
  border-color: rgba(47, 143, 91, 0.28);
  box-shadow: 0 24px 62px rgba(15, 47, 36, 0.12);
}

.cg-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: var(--green-900);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cg-concept-card h3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--green-950);
  margin-bottom: 12px;
}

.cg-concept-card p {
  font-size: 15.8px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 22px;
}

.cg-concept-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cg-concept-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--green-900);
}

.cg-concept-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}
@media (max-width: 1080px) {
  .cg-concept-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .cg-concept-photo img {
    height: 460px;
  }
}

@media (max-width: 760px) {
  .cg-concept-section {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .cg-concept-head {
    text-align: left;
    margin-bottom: 38px;
  }

  .cg-concept-head p {
    font-size: 17px;
  }

  .cg-concept-cards {
    grid-template-columns: 1fr;
  }

  .cg-concept-photo img {
    height: 340px;
    border-radius: 0 54px 0 54px;
  }

  .cg-concept-card {
    min-height: auto;
    padding: 28px 24px;
    border-radius: 24px;
  }
}

.cg-concept-card li::before {
  content: "✓" !important;
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--green-900);
  font-weight: 900;
}
/* =========================================
   Hero Image direkt über HTML
   ========================================= */

/* =========================================
   Hero Fix nach Umstellung auf HTML-Bild
   ========================================= */

.hero-with-image {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--green-950);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(8, 32, 22, 0.78) 0%,
      rgba(8, 32, 22, 0.58) 42%,
      rgba(8, 32, 22, 0.22) 100%
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding-top: 120px;
  color: #ffffff;
}

.hero-content .eyebrow {
  color: #ffffff;
  opacity: 0.95;
}

.hero-content .eyebrow::before {
  background: rgba(255, 255, 255, 0.75);
}

.hero-content h1 {
  max-width: 980px;
  margin-top: 28px;
  margin-bottom: 28px;
  color: #ffffff;
  font-size: clamp(56px, 6.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-content p {
  max-width: 980px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 48px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 760px) {
  .hero-with-image {
    min-height: 86vh;
  }

  .hero-content {
    padding-top: 110px;
  }

  .hero-content h1 {
    font-size: 46px;
    line-height: 1.08;
  }

  .hero-content p {
    font-size: 18px;
    line-height: 1.65;
  }

  .hero-actions {
    gap: 14px;
    margin-bottom: 34px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-tags {
    gap: 10px;
  }

  .hero-tags span {
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
  }
}