:root{
  --c-forest:#005C53;
  --c-lime:#9FC131;
  --c-navy:#042940;
  --c-sand:#CCCC99;

  --bg:#ffffff;
  --bg-soft:#f6f7f7;
  --text:#0d1b1a;
  --muted:rgba(13,27,26,0.72);
  --border:rgba(4,41,64,0.14);

  --shadow:0 18px 50px rgba(4,41,64,0.10);
  --radius:18px;
  --radius-sm:12px;

  --container:1160px;
  --header-h:84px;

  --font:"IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
  font-weight:500;
}

img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; text-decoration:none; }
p{ margin:0 0 12px 0; }
h1,h2,h3{ line-height:1.15; margin:0 0 12px 0; letter-spacing:-0.02em; }
h1{ font-size:clamp(34px, 3.5vw, 54px); }
h2{ font-size:clamp(26px, 2.4vw, 38px); }
h3{ font-size:20px; }
.lead{ font-size:18px; color:rgba(13,27,26,0.88); }
.muted{ color:var(--muted); }
.small{ font-size:13px; }
.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0;
}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 20px;
}

.section{ padding:72px 0; }
.section.alt{ background:var(--bg-soft); }

/* HERO – Layout: Text links, Badges rechts */
.hero-grid{
  display:grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap:28px;
  align-items:center;
}

.hero-side{ display:flex; justify-content:flex-end; }

/* Text dunkel (lesbar auf hellem Hero-Background) */
.section.hero{
  padding-top: calc(32px + var(--header-h));
  padding-bottom: 48px;
  background:
    radial-gradient(1200px 600px at 15% 20%, rgba(159,193,49,0.22), transparent 60%),
    radial-gradient(900px 500px at 85% 15%, rgba(0,92,83,0.22), transparent 55%),
    linear-gradient(180deg, rgba(4,41,64,0.10), rgba(255,255,255,0.92) 55%);
}

.section.hero .hero-content h1{
  color: #042940;
  text-align: left;
}

.section.hero .hero-text{
  color: rgba(13,27,26,0.88);
  text-align: justify;
  hyphens: auto;
}

.section.hero .hero-subtext{
  color: rgba(13,27,26,0.72);
  text-align: justify;
  hyphens: auto;
}

/* Badges rechts: 2x2 und im hellen Stil */
.section.hero .trust-badges--side{
  display:grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap:20px;
  margin:0;               /* nicht mehr unter dem Hero */
  max-width: 600px;
}

.section.hero .trust-badge{
  background:#fff;
  border:1px solid var(--border);
  box-shadow: 0 10px 28px rgba(4,41,64,0.08);
  backdrop-filter: none;
  padding:26px 24px;      /* 🔑 mehr Raum für Text */
  min-height: 220px;      /* 🔑 verhindert Quetschen */
  border-radius: 20px;
  overflow:visible;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-alignment:center;
  gap:12px;
}

.section.hero .trust-badge:hover{
  background:#fff;
  border-color: rgba(159,193,49,0.55);
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(4,41,64,0.14);
}

.section.hero .trust-badge-title{
  color: rgba(4,41,64,0.92);
  font-size:15px;
  font-weight:900;
  line-height:1.25;
}

.section.hero .trust-badge-text{
  color: rgba(13,27,26,0.72);
  font-size:14px;
  line-height:1.4;
}

/* Icons im Syncharis-Stil */
.section.hero .trust-badge-icon{
  height: 56px;
  margin-bottom:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow: visible;
  color: var(--c-forest);
  flex: 0 0 auto;             /* 🔑 verhindert Schrumpfen */
}

.section.hero .trust-badge-icon svg{
  width: 44px;
  height: 44px;
  display:block;
  overflow: visible;
}

.section.highlight{
  background: var(--bg-soft);   /* gleicher Hintergrund wie andere Sections */
  padding: 48px 0;              /* reduziert */
}

.section-head{ 
  margin-bottom:22px; 
}

.section-head--with-cta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.section-head-text{ 
  max-width: 760px; 
}

#system-ansatz-preview .button-row{
  justify-content: flex-start;
}

/* Eyebrow */
.eyebrow{
  display:inline-block;
  font-size:12px;
  font-weight:800;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color: rgba(4,41,64,0.85);
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(4,41,64,0.14);
  padding:8px 12px;
  border-radius:999px;
  margin-bottom:12px;
}

/* HEADER */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  height:var(--header-h);
  display:flex;
  align-items:center;
  background:rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
  z-index:50;
}
.header-inner{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px; 
}
.brand-logo{
  height:54px;
  width:auto;
  display:block; 
}

.site-nav{ display:flex; align-items:center; gap:10px; }

/* Burger */
.nav-toggle{
  display:none;
  background:transparent;
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px;
  cursor:pointer;
}
.nav-toggle-bar{
  display:block;
  width:18px;
  height:2px;
  background:rgba(4,41,64,0.80);
  margin:4px 0;
  border-radius:2px;
}

.nav-menu{
  list-style:none;
  display:flex;
  align-items:center;
  gap:18px;
  padding:0;
  margin:0;
}
.nav-item{ position:relative; }
.nav-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  color:rgba(4,41,64,0.86);
  padding:10px 6px;
  border-radius:10px;
}
.nav-link:hover{ background:rgba(4,41,64,0.06); }
.nav-cta{ margin-left:6px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:800;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
  box-shadow:none;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 14px 30px rgba(4,41,64,0.12); }
.btn:active{ transform: translateY(0); box-shadow:none; }

.btn-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  min-height: 64px;
  padding: 0 32px;

  background: linear-gradient(135deg, var(--c-forest), var(--c-navy));
  color:#fff;

  font-weight:800;
  line-height:1.25;
}
.btn-primary:hover{
  background: var(--c-lime);
  color: var(--c-navy);
  border-color: rgba(4,41,64,0.18);
}

.btn-secondary{
  background:white;
  border-color: rgba(4,41,64,0.18);
  color:rgba(4,41,64,0.90);
}


/* Header CTA: exakt */
.btn-header-cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  min-height: 64px;
  padding: 0 32px;

  background-color: var(--c-forest);
  color:#ffffff;
  font-weight:800;
  font-size:14px;
  line-height:1.25;

  border-radius:999px;
  border:1px solid transparent;
  box-shadow:none;

  transition: background-color .15s ease,
              color .15s ease,
              box-shadow .15s ease,
              transform .15s ease;
}

.btn-header-cta:hover{
  background-color: var(--c-lime);
  color: var(--c-navy);
  box-shadow: 0 10px 26px rgba(4,41,64,0.18);
  transform: translateY(-1px);
}

.hero-panel{ display:flex; justify-content:flex-end; }

.hero-metrics{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
  margin-top:22px;
}
.metric{
  background:rgba(255,255,255,0.72);
  border:1px solid var(--border);
  border-radius: var(--radius-sm);
  padding:12px;
}
.metric-kicker{
  font-size:13px;
  font-weight:800;
  color: rgba(4,41,64,0.72);
  margin-bottom:6px;
}
.metric-value{
  font-weight:900;
  color: rgba(4,41,64,0.92);
}

.hero-panel-card{
  width:100%;
  max-width:420px;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.hero-panel-card--image{
  position: relative;
  overflow: hidden;
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.18);
  background:
    linear-gradient(135deg, rgba(4,41,64,0.88), rgba(0,92,83,0.78)),
    url("../img/forest-blue.png");
  background-size: cover;
  background-position: center;
}
.hero-panel-card--image::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(600px 260px at 70% 20%, rgba(159,193,49,0.18), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,0.00), rgba(0,0,0,0.22));
  pointer-events:none;
}
.hero-panel-card--image > *{ position:relative; z-index:1; }

.panel-kicker{
  display:inline-block;
  font-size:12px;
  font-weight:900;
  letter-spacing:0.16em;
  text-transform:uppercase;
  padding:7px 10px;
  border-radius:999px;
  background: rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
  margin-bottom:10px;
}
.panel-title{ font-weight:900; color:#fff; margin-bottom:8px; }
.panel-text{ color:rgba(255,255,255,0.86); margin-bottom:14px; }

.panel-points{ display:grid; gap:10px; margin: 14px 0; }
.panel-point{
  padding:12px;
  border-radius:14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
}
.pp-title{ font-weight:900; color:rgba(255,255,255,0.95); margin-bottom:2px; }
.pp-text{ font-size:13px; color:rgba(255,255,255,0.82); }

.panel-tags{ display:flex; flex-wrap:wrap; gap:8px; }
.tag{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.92);
  border:1px solid rgba(255,255,255,0.18);
}

/* HIGHLIGHT */
.highlight-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap:26px;
  align-items:start;
}
.pillars{ display:grid; gap:12px; }
.pillar{
  background:rgba(255,255,255,0.72);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.pillar-header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:6px;
}
.pillar-ico{ font-size:22px; }
.pillar-title{ font-weight:900; color:var(--c-navy); }
.pillar-text{ color:var(--muted); }

/* USE CASES */
.card-badge{
  font-size:12px;
  font-weight:900;
  letter-spacing:0.08em;
  color:rgba(4,41,64,0.85);
  background: rgba(204,204,153,0.35);
  border:1px solid rgba(204,204,153,0.55);
  padding:8px 10px;
  border-radius:999px;
  width:fit-content;
}
.card-arrow{
  margin-top:auto;
  font-weight:900;
  color: var(--c-forest);
}

/* 2-col blocks */
.two-col{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:22px;
  align-items:start;
}
.info-card{
  background:white;
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:14px 14px 6px;
  box-shadow: var(--shadow);
  padding-bottom: 0px;
}
.info-card-spread{
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap: 10px;
}

.info-card-spread p{
  margin: 0;                    /* entfernt unnötige Default-Abstände */
}

.info-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-top:12px;
}
.info-item{
  border:1px solid rgba(4,41,64,0.10);
  border-radius: 14px;
  padding:12px 12px 6px;
  background: rgba(4,41,64,0.03);
  padding-bottom: 2px;
}

.info-item--full{
  grid-column: 1 / -1;   /* 🔑 über gesamte Grid-Breite */
}

.info-value ul{
  margin: 6px 0 0 18px;
  padding: 0;
}

.info-value li{
  margin-bottom: 4px;
}

.two-col-cta{
  display: flex;
  justify-content: center;
  margin-top: 18px;   /* Abstand zwischen Liste und Button */
}

.info-label{ font-size:12px; font-weight:800; color:rgba(4,41,64,0.62); margin-bottom:4px; }
.info-value{ font-weight:900; color:rgba(4,41,64,0.90); }

.checklist{
  list-style:none;
  padding:0;
  margin:14px 0 0 0;
}
.checklist li{
  position:relative;
  padding-left:28px;
  margin:10px 0;
  color:rgba(13,27,26,0.86);
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--c-forest);
  font-weight:900;
}
.checklist + .button-row{
  justify-content:center;
}
.checklist-cta {
  display: inline-flex;
  margin: 28px auto 0 auto; /* mittig unter Liste */
}

/* Vorgehen – 3 Kacheln + Accordion */
.process-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:16px;
}
.process-card{
  background:white;
  border:1px solid var(--border);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: 0 10px 28px rgba(4,41,64,0.08);
}

.process-toggle{
  width:100%;
  text-align:left;
  background:transparent;
  border:0;
  cursor:pointer;
  padding:16px;
  display:grid;
  gap:6px;
  position:relative;
}
.process-h{
  font-weight:900;
  font-size:18px;
  color: rgba(4,41,64,0.92);
}
.process-sub{
  font-weight:800;
  color: rgba(4,41,64,0.78);
}
.process-result{
  margin-top:6px;
  font-size:13px;
  color: rgba(13,27,26,0.78);
}
.process-chevron{
  position:absolute;
  right:14px;
  top:16px;
  font-size:16px;
  opacity:.75;
  transition: transform .15s ease;
}

.process-panel{
  display:none;
  padding:0 16px 16px 16px;
  border-top:1px solid rgba(4,41,64,0.10);
}

.process-card.is-open .process-panel{
  display:block; }
.process-card.is-open .process-chevron{
  transform: rotate(180deg); }

.process-panel h4{
  margin:12px 0 8px 0;
  font-size:15px;
  font-weight:900;
  color: rgba(4,41,64,0.92);
}
.process-panel ul{
  margin:0 0 10px 18px;
  padding:0;
  color: rgba(13,27,26,0.84);
  font-size:14px;
}
.process-cols{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
}

/* Mini CTA unter Vorgehen */
.cta-mini{
  margin-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:18px;
  border-radius: var(--radius);
  border:1px solid rgba(4,41,64,0.14);
  background: rgba(255,255,255,0.75);
  box-shadow: var(--shadow);
}
.cta-actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* Über uns */
.ueber-text{
  max-width: 980px;
  color: rgba(13,27,26,0.86);
  margin-bottom: 18px;
}
.ueber-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap:22px;
  align-items:stretch;
}
.ueber-left{ display:grid; gap:12px; }
.ueber-right{ height:100%; }

.bullet{
  border:1px solid rgba(4,41,64,0.12);
  border-radius: var(--radius-sm);
  padding:14px;
  background: rgba(204,204,153,0.18);
}
.bullet-title{ font-weight:900; color:rgba(4,41,64,0.90); margin-bottom:4px; }
.bullet-text{ color:var(--muted); }

/* =========================================
   FOOTER – 4-Spalten Layout (Syncharis)
   ========================================= */

.site-footer{
  border-top:1px solid var(--border);
  background:#fff;
  padding: 54px 0 18px;
}

.footer-wrap{ position:relative; }

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
  gap: 26px;
  align-items:start;
}

.footer-brandcol .footer-brand{
  display:inline-flex;
  align-items:center; 
}
.footer-logo{
  height:72px;
  width:auto;
  display:block; 
}
.footer-claim{
  margin:12px 0 0 0;
  font-weight:800;
  color: rgba(4,41,64,0.78);
}

.footer-h{
  margin:0 0 10px 0;
  font-weight:900;
  color: rgba(4,41,64,0.92);
}

.footer-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}

.footer-list a{
  display:inline-flex;
  padding:6px 0;
  font-weight:800;
  color: rgba(4,41,64,0.80);
  border-radius:10px;
}
.footer-list a:hover{
  color: rgba(4,41,64,0.92);
  text-decoration: underline;
  text-decoration-color: rgba(159,193,49,0.7);
  text-underline-offset: 3px;
}

.footer-list a.is-disabled{
  opacity:.55;
  cursor:not-allowed;
  pointer-events:none;
  text-decoration:none;
}

.footer-contact{
  margin-top:14px;
  display:grid;
  gap:10px;
}

.footer-contact-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-weight:800;
  color: rgba(4,41,64,0.82);
  line-height:1.35;
}

.footer-contact-item:hover{
  color: rgba(4,41,64,0.92);
}

.footer-ico{
  width:22px;
  height:22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 22px;
  margin-top:1px;
}

.footer-bottom{
  margin-top:28px;
  padding-top:16px;
  border-top:1px solid rgba(4,41,64,0.10);
}

.footer-bottom-inner{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  color: rgba(4,41,64,0.70);
  font-weight:800;
  font-size:13px;
}

.footer-sep{ opacity:.55; }

/* Responsive */
@media (max-width: 980px){
  .footer-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-side{ justify-content:flex-start; }
  .section.hero .trust-badges--side{  
   max-width: 100%;
  }
}
/* Mobile */
@media (max-width: 900px){
  .section-head--with-cta{
    flex-direction:column;
    align-items:flex-start;
  }
  .cta-call{ white-space:normal; }
  .highlight-grid{ grid-template-columns: 1fr; }
  .two-col{ grid-template-columns: 1fr; }
  .ueber-grid{ grid-template-columns: 1fr; }
  .hero-metrics{ grid-template-columns: 1fr; }
  .process-grid{ grid-template-columns: 1fr; }
  .cta-mini{ flex-direction:column; align-items:flex-start; }
}

@media (max-width: 720px){
  .site-footer{ padding: 40px 0 16px; }
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .nav-toggle{ display:inline-flex; align-items:center; justify-content:center; }
  .nav-menu{
    position:absolute;
    top: calc(var(--header-h) + 10px);
    right: 20px;
    left: 20px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding:12px;
    border-radius: 16px;
    background: rgba(255,255,255,0.92);
    border:1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open{ display:flex; }
  .nav-cta{ margin-left:0; }

  /* Submenu in mobile should be static within the menu */
  .submenu{
    position:static;
    min-width:unset;
    box-shadow:none;
    margin:4px 0 8px 0;
    border-radius:14px;
    background:transparent;
    display:none;
  }
  .has-submenu::after{ display:none; } /* Hover-Bridge nicht nötig auf Mobile */
  .has-submenu:hover .submenu{ display:none; } /* hover aus */
  .has-submenu.is-open .submenu{ display:block; }

  .footer-inner{ flex-direction:column; align-items:flex-start; }
  .footer-right{ align-items:flex-start; }
}

/* =========================================
   VORGEHEN – Phase Cards (CLEAN VERSION)
   ========================================= */

.phase-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:18px;
  align-items:stretch;
}

@media (max-width: 980px){
  .phase-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px){
  .phase-grid{
    grid-template-columns: 1fr;
  }
}

.phase-card{
  border:1px solid var(--border);
  border-radius: var(--radius);
  background:#fff;
  box-shadow: 0 10px 28px rgba(4,41,64,0.08);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  height:100%;
}

.phase-summary{
  cursor:pointer;
  position: relative;
  padding:18px;
  padding-bottom: 56px;
  display:flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.phase-top{
  width:100%;
}

.phase-kicker{
  font-weight:900;
  letter-spacing:0.14em;
  text-transform:uppercase;
  text-align: center;
  font-size:12px;
  color: rgba(4,41,64,0.70);
  margin-bottom:10px;
}

.phase-title{
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-weight:900;
  color: rgba(4,41,64,0.92);
  font-size: clamp(18px, 1.35vw, 22px);
  line-height:1.15;
}

.phase-meta{
  display:flex;
  flex-direction:column;
  gap:8px;
  text-align: center;
  align-items:center;
  margin-bottom:12px;
}

.phase-meta-item{
  font-weight:900;
  font-size:18px;
  color: rgba(4,41,64,0.78);
}

.phase-chevron{
  width:34px;
  height:34px;
  flex:0 0 34px;
  border-radius:12px;
  border:1px solid rgba(4,41,64,0.12);
  position:absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: var(--c-forest);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  padding: 0;
  margin: 0;
}

.phase-chevron::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: translate(-50%, -55%) rotate(45deg);
  transition: transform 0.14s ease;
}

.phase-card.is-open .phase-chevron::before{
  transform: translate(-50%, -45%) rotate(-135deg);
}

.phase-outcome{
  margin-top:12px;
  background: var(--c-forest);
  color:#fff;
  font-weight:800;
  text-align:center;
  padding:14px 14px;
  border-radius: 14px;
  line-height:1.3;
  box-shadow: 0 12px 26px rgba(4,41,64,0.18);
}

/* Phase Body - MIT DISPLAY CONTROL */
.phase-body {
  display: none;
  border-top: 1px solid rgba(4,41,64,0.10);
  padding: 16px 18px 18px 18px;
  text-align: left;
  flex-grow: 1;
}

.phase-card.is-open .phase-body {
  display: block;
}

.phase-body h4{
  margin:14px 0 10px 0;
  font-size:16px;
  font-weight:900;
  color: rgba(4,41,64,0.92);
}

.phase-body ul{
  margin:0 0 10px 18px;
  padding:0;
  color: rgba(13,27,26,0.86);
}

.phase-body li{
  margin:8px 0;
}

.phase1-cta {
  margin-top: 24px;
  background: linear-gradient(135deg, rgba(0,92,83,0.08), rgba(159,193,49,0.12));
  border: 1px solid rgba(4,41,64,0.18);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 10px 28px rgba(4,41,64,0.08);
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  
  /* Diese Zeilen hinzufügen: */
  grid-column: 1 / -1; /* Spannt über alle Grid-Spalten */
}

.phase1-cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.phase1-cta-text {
  width: 100%;
}

.phase1-cta-text h3 {
  margin: 0 0 8px 0;
  font-size: 22px;
  font-weight: 900;
  color: var(--c-navy);
}

.phase1-cta-text p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.phase1-cta .btn {
  align-self: center;
}

@media (max-width: 720px) {
  .phase1-cta {
    padding: 20px 24px;
  }
  
  .phase1-cta .btn {
    width: 100%;
  }
}

.post-go-live-pillars{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.pillar{
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.pillar-header{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.pillar-icon{
  font-size: 22px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pillar-title{
  font-size: 18px;
  font-weight: 900;
  color: var(--c-navy);
  margin: 0;
}

.pillar-text{
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.pillar:hover{
  border-color: rgba(159,193,49,0.55);
  transform: translateY(-2px);
  transition: .15s ease;
}

@media (max-width: 980px){
  .post-go-live-pillars{
    grid-template-columns: 1fr;
  }
}

.cta-final{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:36px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(0,92,83,0.08), rgba(159,193,49,0.12));
  border:1px solid rgba(4,41,64,0.18);
  box-shadow: 0 24px 60px rgba(4,41,64,0.18);
}

.cta-final h2{
  margin:0 0 10px 0;
}

.kontakt-content{
  max-width: none;
  margin: 0;
}

.btn-large{
  padding:16px 28px;
  font-size:16px;
}

@media (max-width: 900px){
  .cta-final{
    flex-direction:column;
    align-items:flex-start;
  }
}

/* ========================================
   SYNCHARIS - NEUE STYLES FÜR WEBSITE 2.0
   Ergänzungen zu bestehender style.css
   ======================================== */

/* ==========================================
   HERO SECTION - AKTUALISIERT
   ========================================== */

.hero {
  background: linear-gradient(135deg, #1a3a1b 0%, #2C5F2D 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 48px;
}

.hero-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 32px;
  color: white;
  letter-spacing: -0.02em;
}

.hero-subline {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.6;
  margin-bottom: 20px;
  color: #F9FAFB;
  opacity: 0.95;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-supporting {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.6;
  margin-bottom: 48px;
  color: #F9FAFB;
  opacity: 0.85;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================
   SYSTEM SECTION - NEU / UNSER ANSATZ + Lösungsansatz
   ========================================== */

.system-section {
  background: #F9FAFB;
  padding: 48px 20px;
}

.system-section .section-intro {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  font-size: 18px;
  line-height: 1.6;
  color: #374151;
  max-width: 720px;
  margin: 0;
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.system-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid rgba(4, 41, 64, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.system-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-color: rgba(159, 193, 49, 0.4);
}

.system-icon {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.system-icon svg {
  width: 48px;
  height: 48px;
}

.system-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  height: 2.6em;
  display:flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: #1a1a1a;
  text-align: center;
}

.system-card > p {
  font-size: 16px;
  line-height: 1.6;
  color: #4B5563;
  margin-bottom: 20px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.system-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.system-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14px;
  color: #374151;
  line-height: 1.6;
}

.system-list li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: #9FC131;
  font-weight: bold;
  font-size: 18px;
}

/* ==========================================
   USE CASES GRID - 8 KACHELN
   ========================================== */

.use-cases-grid-8 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.use-case-card {
  background: white;
  padding: 28px 24px;
  border-radius: 12px;
  border: 1px solid rgba(4, 41, 64, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  position: relative;
}

.use-case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  border-color: rgba(159, 193, 49, 0.6);
}

.use-case-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.use-case-icon svg {
  width: 40px;
  height: 40px;
}

.card-badge {
  background: rgba(159, 193, 49, 0.15);
  color: #2C5F2D;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-item: center;
  justify-content: center;
  margin-bottom: 16px;
  align-self: center;
  text-align: center;
}

.use-case-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #1a1a1a;
  line-height: 1.3;
}

.use-case-card p {
  color: #4B5563;
  font-size: 14px;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 16px;
}

.card-arrow {
  color: #2C5F2D;
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
}

/* Back to top (Chevron wie phase-chevron) */
.back-to-top{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px;
  height: 44px;
  z-index: 9999;
  display: block;
  text-decoration: none;
}

.back-to-top__chevron{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(4,41,64,0.12);
  background: var(--c-forest);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 26px rgba(4,41,64,0.18);
}

/* Pfeil zeichnen (wie bei phase-chevron, nur nach oben) */
.back-to-top__chevron::before{
  content:"";
  position:absolute;
  left:50%;
  top:50%;
  width:10px;
  height:10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  /* 45deg = nach unten, -135deg = nach oben */
  transform: translate(-50%, -45%) rotate(-135deg);
  transition: transform 0.14s ease, opacity 0.14s ease;
}

/* Optional: kleines Hover-Feedback */
.back-to-top:hover .back-to-top__chevron::before{
  transform: translate(-50%, -55%) rotate(-135deg);
}


/* ==========================================
   RESPONSIVE - MOBILE & TABLET
   ========================================== */

/* Tablet */
@media (max-width: 980px) {
  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .system-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .use-cases-grid-8 {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .section.hero{
    padding-top: calc(56px + var(--header-h));
    padding-bottom: 72px;
  }
  /* Abstand zwischen Cards Mobile/Tablet */
  .info-card-spread{
    margin-top: 24px;  /* NEU - mehr Abstand zur Ergebnis-Übersicht */
  }
  
  .info-card-spread .info-grid{
    margin-top: 16px;
  }
}

/* Mobile */
@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 20px);
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .hero-subline {
    font-size: 16px;
    margin-bottom: 16px;
  }

  .hero-supporting {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .trust-badges {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 32px 0;
  }

  .section.hero .trust-badges--side{
    max-width: 100%;
    display: grid;
    repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .section.hero .trust-badges--side > *{
    transform: scale(0.9);
    transform-origin: center;
  }

  .trust-badge {
    padding: 20px;
  }

  .system-section {
    padding: 60px 20px;
  }

  .system-grid {
    gap: 24px;
  }

  .system-card {
    padding: 24px;
  }

  .use-cases-grid-8 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .use-case-card {
    min-height: auto;
    padding: 24px 20px;
  }
}

/* ==========================================
   NAVIGATION DROPDOWN ERWEITERUNG
   ========================================== */

/* =========================
   Submenu – Desktop
   ========================= */
.has-submenu{ position:relative; }

.submenu{
  position:absolute;
  top: calc(100% + 8px);
  left:0;
  min-width: 340px;

  background:#ffffff;
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:var(--shadow);

  padding:8px 0;
  display:none;
  z-index:9999;
}

.has-submenu:hover .submenu{ display:block; }
.has-submenu.is-open .submenu{ display:block; } /* Mobile-Klick (JS) */

.submenu li{ margin:0; list-style:none; }

.submenu a{
  display:block;
  font-size:14px;
  padding:12px 16px;
  border-radius:12px;
  transition: all 0.2s ease;
}

.submenu a:hover{
  background: rgba(159, 193, 49, 0.12);
  padding-left: 20px;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 32px;
}

@media (max-width: 720px) {
  .button-row {
    flex-direction: column;
    gap: 12px;
  }

  .button-row .btn {
    width: 100%;
  }
