/*
 * AuroraGourmet Website Styles
 * Sauber auf mobile optimiert, Navbar fix + transparent, Burger-Menü inkl.
 */


@font-face{font-family:Montserrat;src:url('fonts/montserrat-v30-latin-regular.woff2') format('woff2');font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:Montserrat;src:url('fonts/montserrat-v30-latin-600.woff2')    format('woff2');font-weight:600;font-style:normal;font-display:swap}
@font-face{font-family:Montserrat;src:url('fonts/montserrat-v30-latin-700.woff2')    format('woff2');font-weight:700;font-style:normal;font-display:swap}





/* ==================== Farben & Basis ==================== */
:root {
  --color-dark:   #211638;   /* Overlays, Footer */
  --color-light:  #f7f3eb;   /* helle Sektionen */
  --color-accent: #ffd400;   /* Gelb-Highlight */
  --color-primary:#37254f;   /* Texte/Buttons */
  --color-muted:  #6b5a8c;   /* Sekundärtexte */
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}




body {
  /* Leichter Background – optional: dein Myzel-Muster */
  background-image:
    url("images/mycel.png"),
    linear-gradient(180deg, #ffffff 0%, #e9f2f7 60%, #cfe5f0 100%);
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: right top, center;
  font-family: "Montserrat", "Montserrat Medium", Arial, sans-serif;
  color: var(--color-primary);
  line-height: 1.6;
}

/* Bessere Scroll-Ziele (fixe Navbar) */
:target { scroll-margin-top: 84px; }

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  background: transparent; box-shadow: none; z-index: 1000;
  padding: 0.8rem 1rem;
  transition: background-color .3s ease, padding .3s ease;
}

/* Logo links */
.navbar .logo { display: flex; align-items: center; }
.navbar .logo img { height: 120px; }

/* Links mittig (Desktop sichtbar) */
.nav-links {
  display: flex; align-items: center; gap: 1rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--color-muted); }

/* Kontakt-CTA immer rechts */
.navbar .contact-link {
  margin-left: auto;
  padding: 0.5rem 1rem;
  background-color: var(--color-accent);
  color: var(--color-dark);
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color .2s ease;
}
.navbar .contact-link:hover { background-color: #e6bc00; }

/* Burger-Button (mobil sichtbar) */
.menu-toggle {
  display: none;  /* Desktop: verstecken */
  border: none; background: none; cursor: pointer;
  padding: .25rem; margin-left: .5rem;
}
.menu-toggle .bar {
  display: block; width: 22px; height: 2px; margin: 5px 0;
  background: var(--color-primary);
  transition: transform .25s ease, opacity .25s ease;
}

/* Scroll-Effekt (Hintergrund ab Scroll) */
.navbar.scrolled {
  background-color: rgba(247,243,235,0.95);
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  height: 90vh; /* genug Raum; Navbar liegt transparent drüber */
  width: 100%;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(33, 22, 56, 0.3);
}
.hero-content {
  position: relative; z-index: 2; color: #fff; padding: 0 1rem;
}
.hero-content h1 {
  font-size: 3rem; margin: 0; line-height: 1.2;
}
.hero-content .highlight { color: var(--color-accent); }
.hero-content p { margin: 1rem auto 2rem; max-width: 720px; font-size: 1.1rem; }
.hero-content .btn {
  display: inline-block;
  background-color: var(--color-accent); color: var(--color-dark);
  padding: 0.8rem 1.6rem; border-radius: 30px;
  text-decoration: none; font-weight: bold;
  transition: background-color .2s ease;
}
.hero-content .btn:hover { background-color: #e6bc00; }

/* ==================== SECTIONS (allgemein) ==================== */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  background: transparent;
}
.section h2 {
  margin: 0 0 1rem 0;
  font-size: 2rem;
  color: var(--color-dark);
}
.section p {
  max-width: 800px;
  margin-bottom: 2rem;
  color: var(--color-muted);
}

/* ==================== VALUE GRID ==================== */
.values-grid {
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; margin-top: 2rem;
}
.value-item {
  background-color: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  width: 260px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  text-align: left;
}
.value-item img {
  width: 100%; height: 150px; object-fit: cover;
  border-top-left-radius: 12px; border-top-right-radius: 12px;
  margin-bottom: 0.75rem;
}
.value-item h3 {
  margin: 0 0 0.5rem 0;
  color: var(--color-dark);
}
.value-item p { color: var(--color-muted); font-size: 0.95rem; }

/* ==================== CARDS (Produkte & Rezepte) ==================== */
.card-grid {
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center;
}
.card {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border-radius: 12px;
  width: 260px;
  overflow: hidden;
  transition: transform .2s ease;
}
.card:hover { transform: translateY(-4px); }
.card img { width: 100%; height: 170px; object-fit: cover; display: block; }
.card h3 {
  margin: 0.8rem 0 0.4rem; font-size: 1.25rem; color: var(--color-dark); text-align: center;
}
.card p {
  padding: 0 1rem 1.2rem; font-size: 0.95rem; color: var(--color-muted); text-align: center;
}





/* ==================== ADVANTAGES ==================== */
.advantages ul {
  list-style: none; padding-left: 0; margin: 0;
  line-height: 1.6; font-size: 1rem; color: var(--color-primary);
}
.advantages li { margin-bottom: 1rem; position: relative; padding-left: 1.5rem; }
.advantages li::before {
  content: "•"; position: absolute; left: 0; top: 0;
  color: var(--color-accent); font-size: 1.2rem; line-height: 1;
}
.adv-image { text-align: center; margin-top: 2rem; }
.adv-image img {
  max-width: 100%; height: auto; border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ==================== FUNDING ==================== */
.funding .program {
  background-color: #fff; border-radius: 12px; padding: 1.5rem; margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.funding .program h3 { margin: 0 0 .5rem 0; color: var(--color-dark); }
.funding .program p { color: var(--color-muted); }

/* ==================== TESTIMONIALS ==================== */
.testimonials .testimonial-grid {
  display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; margin-top: 2rem;
}
.testimonials .testimonial {
  background-color: #fff; border-radius: 12px; padding: 1.5rem; max-width: 320px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex; flex-direction: column; justify-content: space-between;
}
.testimonials .quote { font-style: italic; color: var(--color-primary); margin-bottom: 0.8rem; }
.testimonials .author { color: var(--color-muted); font-size: 0.9rem; align-self: flex-end; }

/* ==================== CONTACT ==================== */
.contact form {
  max-width: 600px; margin: 0 auto; display: flex; flex-direction: column;
}
.contact input, .contact textarea {
  margin-bottom: 1rem; padding: 0.8rem; border: 1px solid #ddd; border-radius: 6px; font-size: 1rem;
}
.contact button {
  background-color: var(--color-accent); color: var(--color-dark);
  padding: 0.8rem; border: none; border-radius: 30px; font-weight: bold; cursor: pointer;
}
.contact button:hover { background-color: #e6bc00; }

/* ==================== FOOTER ==================== */
footer {
  background-color: var(--color-dark); color: #fff; text-align: center; padding: 1rem 0;
}
footer .footer-content {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  max-width: 1200px; margin: 0 auto; padding: 0 1rem;
}
footer .footer-nav { display: flex; gap: 1.5rem; }
footer .footer-nav a { color: #fff; text-decoration: none; font-size: 0.9rem; }
footer .footer-nav a:hover { text-decoration: underline; }

/* ==================== MOBILE ==================== */
@media (max-width: 892px) {
  /* Burger sichtbar machen, Nav als Overlay klappbar */
  .menu-toggle { display: inline-block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(247,243,235,0.98);
    backdrop-filter: blur(6px);
    overflow: hidden;
    max-height: 0;              /* eingeklappt */
    transition: max-height .3s ease, padding .3s ease;
    padding: 0 1rem;
  }
  .nav-links a {
    display: block;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 1rem;
  }
  .navbar.open .nav-links {
    max-height: 60vh;           /* ausgeklappt */
    padding: 0.5rem 1rem 0.75rem;
  }
}

/* Kompaktere Navbar & Hero auf kleineren Screens */
@media (max-width: 768px) {
  .navbar { padding: 0.5rem 0.8rem; }
  .navbar .logo img { height: 40px; }
  .hero { height: 75vh; }
  .hero-content h1 { font-size: 2rem; }
  .hero-content p { font-size: 0.95rem; }
  .card { width: 100%; max-width: 360px; }
}

/* ==================== Burger-Animation (optional) ==================== */
.navbar.open .menu-toggle .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar.open .menu-toggle .bar:nth-child(2) { opacity: 0; }
.navbar.open .menu-toggle .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Franchise Hero helpers ===== */
.hero--franchise { background-color: var(--color-dark); position: relative; }
.hero--franchise .hero-bg { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center; z-index:1; }
.hero--franchise .hero-overlay { position:absolute; inset:0; background:rgba(33,22,56,.4); z-index:2; }
.hero--franchise .hero-content { position:relative; z-index:3; }
.section--white { background-color: #fff; }


/* Rezepte-Karten: keine Link-Unterstreichung/Farbe */
#rezepte .card,
#rezepte .card:link,
#rezepte .card:visited { text-decoration: none; display: block; color: inherit; }
#rezepte .card h3, #rezepte .card p { text-decoration: none; }

/* Mobile: Burger-Menü vertikal + vollbreit */
@media (max-width: 892px){
  .nav-links{
    position: fixed; top:64px; left:0; right:0;
    display: none;                      /* ausgeblendet bis Burger aktiv */
    flex-direction: column !important;  /* statt horizontal */
    align-items: flex-start;
    gap: .8rem;
    padding: 14px 20px;
    background: #fff;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    z-index: 1000;
  }
  .navbar.open .nav-links{ display:flex; }
  .menu-toggle{ display:block; }
  .contact-link{ display:none; }        /* optional auf Mobile ausblenden */
  .nav-links a{ display:block; width:100%; }
}

@media (max-width: 892px){
  body:has(.hero--franchise) .navbar{ padding-left:0 !important; }
  body:has(.hero--franchise) .logo{ margin-left:0 !important; }
}


/* ==================== INVESTOR CALCULATOR ==================== */
.calculator {
  background:#fff;
  border-radius:12px;
  box-shadow:0 4px 12px rgba(0,0,0,0.05);
  padding:1.5rem;
  max-width:1000px;
  margin:2rem auto;
}
.calculator .grid {
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:1rem 2rem;
}
.calculator label { font-weight:600; font-size:0.95rem; color:var(--color-dark); }
.calculator input, .calculator select {
  width:100%; padding:0.6rem 0.8rem; border:1px solid #ddd; border-radius:8px; font-size:1rem;
}
.calculator .results {
  margin-top:1.5rem; padding-top:1rem; border-top:1px dashed #ddd;
  display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:1rem;
}
.stat { background:#f9f7ff; border:1px solid rgba(0,0,0,0.04); border-radius:10px; padding:1rem; text-align:center; }
.stat .label { color:var(--color-muted); font-size:0.9rem; }
.stat .value { color:var(--color-dark); font-size:1.3rem; font-weight:700; }
@media (max-width: 768px) {
  .calculator .grid { grid-template-columns:1fr; }
  .calculator .results { grid-template-columns:1fr; }
}
.badge {
  display:inline-block; background:var(--color-accent); color:var(--color-dark);
  padding:0.2rem 0.6rem; border-radius:999px; font-weight:700; font-size:0.8rem;
}

/* ==============================
   ROI-Kalkulator
   ============================== */

.calculator {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  padding: 2rem;
  margin-top: 2rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.calculator h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.calculator .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.calculator label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
  color: var(--color-dark, #222);
}

.calculator input,
.calculator select {
  width: 100%;
  padding: 0.5rem 0.7rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

.calculator input:focus,
.calculator select:focus {
  border-color: var(--color-primary, #6b3fa0);
  outline: none;
  box-shadow: 0 0 0 2px rgba(107,63,160,0.15);
}

.calculator .results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.calculator .stat {
  background: var(--color-light, #f9f9fb);
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.calculator .stat .label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted, #666);
  margin-bottom: 0.3rem;
}

.calculator .stat .value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary, #6b3fa0);
}

@media (max-width: 600px) {
  .calculator {
    padding: 1.2rem;
  }
  .calculator .grid {
    grid-template-columns: 1fr;
  }
  .calculator .results {
    grid-template-columns: 1fr 1fr;
  }
}



/* ===== Badges (z.B. ROI-Hinweis) ===== */
.badge{
  display:inline-block;
  padding:.25rem .6rem;
  border-radius:999px;
  font-weight:700;
  font-size:.8rem;
  background:var(--color-accent,#ffd400);
  color:var(--color-dark,#211638);
}
.badge.outline{
  background:transparent;
  border:2px solid var(--color-accent,#ffd400);
  color:var(--color-dark,#211638);
}
.badge.success{ background:#d4f8df; color:#0f6a2f; }
.badge.info{ background:#e8f1ff; color:#184c9e; }

/* ===== ROI-Kalkulator ===== */
.calculator{
  background:#fff;
  border-radius:1rem;
  box-shadow:0 4px 20px rgba(0,0,0,.08);
  padding:2rem;
  margin:2rem auto 0 auto;
  max-width:960px;
}
.calculator .grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1.2rem;
}
.calculator label{
  display:block;
  font-weight:600;
  font-size:.9rem;
  margin-bottom:.3rem;
  color:var(--color-dark,#222);
}
.calculator input,
.calculator select{
  width:100%;
  padding:.5rem .7rem;
  border:1px solid #ddd;
  border-radius:.5rem;
  font-size:.95rem;
  transition:border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.calculator input:focus,
.calculator select:focus{
  border-color:var(--color-primary,#6b3fa0);
  outline:none;
  box-shadow:0 0 0 2px rgba(107,63,160,.15);
}
.calculator input:disabled{
  background:#f6f6f8;
  opacity:.6;
  cursor:not-allowed;
}
.calculator .results{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:1rem;
  margin-top:2rem;
}
.calculator .stat{
  background:var(--color-light,#f9f9fb);
  border-radius:.75rem;
  padding:1rem;
  text-align:center;
  box-shadow:inset 0 1px 3px rgba(0,0,0,.05);
}
.calculator .stat .label{
  font-size:.85rem;
  font-weight:600;
  color:var(--color-muted,#666);
  margin-bottom:.3rem;
}
.calculator .stat .value{
  font-size:1.2rem;
  font-weight:700;
  color:var(--color-primary,#6b3fa0);
}
@media (max-width:600px){
  .calculator{ padding:1.2rem; }
  .calculator .grid{ grid-template-columns:1fr; }
  .calculator .results{ grid-template-columns:1fr 1fr; }
}

/* ===== Presets (optional) ===== */
.preset-row{
  display:flex; gap:.5rem; flex-wrap:wrap; margin-top:.25rem;
}
.preset{
  border:1px solid #ddd; border-radius:.5rem;
  padding:.3rem .6rem; font-size:.85rem; cursor:pointer;
  background:#fff;
}
.preset:hover{ border-color:var(--color-primary,#6b3fa0); }


/* ==================== INVESTOR CALCULATOR ==================== */
.calculator {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 2rem;
  max-width: 720px;
  margin: 2rem auto;
}

.calculator h2 {
  margin-top: 0;
  text-align: center;
  color: var(--color-dark);
}

.calculator label {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--color-primary);
}

.calculator input,
.calculator select {
  width: 100%;
  padding: 0.6rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-top: 0.3rem;
  font-size: 1rem;
}

.calculator button {
  margin-top: 1.5rem;
  padding: 0.8rem 1.2rem;
  background-color: var(--color-accent);
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  display: block;
  width: 100%;
}

.calculator button:hover {
  background-color: #e6bc00;
}

.results {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--color-light);
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.6;
}


/* Disabled-Optik für nicht benötigte Felder */
.is-disabled { opacity:.55; pointer-events:none; }
.is-disabled input, .is-disabled select { background:#f5f5f7; }





.hero { position: relative; }
.hero-overlay { 
  position: absolute; inset: 0; 
  z-index: 0; 
  pointer-events: none;      /* <- wichtig */
}
.hero-content, .navbar, .contact-link { 
  position: relative; 
  z-index: 2;                /* über dem Overlay */
}


/* Labels dürfen Klicks nicht abfangen */
label { pointer-events: none; }

/* Inputs sicher benutzbar (falls irgendwo überschrieben) */
input, textarea, select {
  pointer-events: auto !important;
  user-select: text !important;
}

/* Falls ein fieldset versehentlich disabled ist */
fieldset[disabled] { border: 0; }


/* ========== Franchise Forms ========== */
.form-card { 
  max-width: 420px; margin: 0 auto; padding: 24px;
  background: #fff; border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.form-grid {
  display: grid; gap: 12px;
}

.form-grid label {
  font-weight: 600; font-size: .95rem; color: #1a2730;
}

.form-grid input {
  width: 100%; padding: 10px 12px; border-radius: 10px;
  border: 1px solid #d7dee4; background: #f9fbfc;
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.form-grid input:focus {
  outline: none; border-color: #1f6f6f;
  background: #fff; box-shadow: 0 0 0 3px rgba(31,111,111,.15);
}

.contact-link.btn-full {
  display: inline-block; width: 100%;
  text-align: center; padding: 12px 16px; border-radius: 12px;
}

#msg { margin-top: 8px; font-size: .95rem; }


/* ===== Anpassung für Container Konzept ===== */

.hero.sub-hero{position:relative}
.hero.sub-hero::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(90deg, rgba(15,23,42,.45) 0%, rgba(15,23,42,0) 55%);
  z-index:1
}
.hero.sub-hero .hero-content{position:relative;z-index:2}


.hero.sub-hero .hero-content h1{font-size:clamp(32px,4.5vw,52px);letter-spacing:-.2px}
.hero.sub-hero .hero-content p{max-width:640px}


@media(max-width:900px){
 .hero.sub-hero .hero-content{text-align:center}
 .hero.sub-hero .hero-image{margin-top:12px}
}



/* ===== 6 m Subpage Hero (Text nicht abgeschnitten, Bild leicht gezoomt) ===== */
.hero.sub-hero{
  position:relative;
  display:grid; 
  grid-template-columns: 1.05fr 1fr;  /* Text | Bild */
  gap: clamp(16px,3vw,32px);
  align-items:center;
  height:auto; 
  min-height:72vh;
  text-align:left;
  padding: clamp(84px,12vh,120px) clamp(16px,5vw,48px) 24px; /* oben Platz für Navbar */
  overflow:visible; /* verhindert Abschneiden */
}
.hero.sub-hero::before{ /* leichte Abdunklung links für bessere Lesbarkeit */
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(90deg, rgba(33,22,56,.40) 0%, rgba(33,22,56,0) 55%);
  z-index:0;
}
.hero.sub-hero .hero-content{position:relative; z-index:2; max-width: 62ch;}
.hero.sub-hero .hero-content h1{margin:0 0 .6rem; font-size:clamp(32px,4.6vw,56px); letter-spacing:-.2px;}
.hero.sub-hero .hero-content p{margin:0 0 1rem;}

.hero.sub-hero .hero-image{
  position:relative; z-index:1;
  overflow:hidden; border-radius:16px; 
  box-shadow:0 12px 40px rgba(2,6,23,.15);
}
.hero.sub-hero .hero-image img{
  display:block; width:100%; height:100%; max-height:520px; object-fit:cover;
  transform: scale(1.06);            /* leichter Zoom */
  transform-origin: center; 
}

/* Mobile: stapeln, mittig */
@media (max-width: 980px){
  .hero.sub-hero{ grid-template-columns:1fr; min-height:auto; padding-top:96px; }
  .hero.sub-hero .hero-content{ text-align:center; margin:0 auto; }
  .hero.sub-hero .hero-image{ order:2; margin-top:12px; }
  .hero.sub-hero::before{ background:linear-gradient(180deg, rgba(33,22,56,.35) 0%, rgba(33,22,56,0) 45%); }
}


#konzept .container{max-width:1120px}
#konzept p{max-width:62ch}
#konzept .benefits{display:grid;grid-template-columns:repeat(3,minmax(220px,1fr));gap:8px 24px;list-style:none;padding:0}
#konzept .benefits li{position:relative;padding-left:28px}
#konzept .benefits li:before{
  content:"";position:absolute;left:0.5px;top:.45em;width:16px;height:16px;border-radius:50%;
  background:conic-gradient(#10B981, #059669);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M9.6 16.2 5.8 12.4l-1.4 1.4 5.2 5.2L20 8.6 18.6 7.2z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M9.6 16.2 5.8 12.4l-1.4 1.4 5.2 5.2L20 8.6 18.6 7.2z'/%3E%3C/svg%3E") center/16px 16px no-repeat;
}
@media(max-width:900px){#konzept .benefits{grid-template-columns:1fr}}


/* Vorteile-Block */


/* --- Vorteile: KPI-Pills gleich breit & zentriert --- */
.vorteile-grid{display:grid;grid-template-columns:repeat(3,minmax(260px,1fr));gap:16px 24px}
.v-col{display:grid;grid-template-rows:1fr auto;align-items:start}

/* Karte füllt Spalte */
.v-card{height:100%}

/* OPTION A: fixe, gleiche Pillenbreite (empfohlen) */
:root{ --kpi-w: 240px; }  /* bei Bedarf anpassen */
.kpi-item{
  width: var(--kpi-w);
  justify-self:center;            /* mittig in der Spalte */
  margin-top:12px;
  display:flex; justify-content:center; align-items:center; gap:10px;
  text-align:center;
  padding:10px 14px; background:#fff;
  border:1px dashed #E2E8F0; border-radius:12px;
  box-shadow:0 8px 22px rgba(2,6,23,.08);
  font-weight:600;
}
.kpi-item strong{font-weight:800}
.kpi-item span{color:var(--color-muted,#64748B)}

/* OPTION B: exakt Kartenbreite (statt fixer Breite) */
/* .kpi-item{ width:100%; }  -> falls du die Pillen so groß wie die Karte willst */

@media(max-width:900px){
  .vorteile-grid{grid-template-columns:1fr}
  .kpi-item{ width:min(360px,100%); }
}


/* Vorteile: Karten + zentrierte KPI gleich breit */
#vorteile .vorteile-grid{
  display:grid; grid-template-columns:repeat(3, minmax(260px,1fr));
  gap:24px;
}
#vorteile .v-col{
  display:flex; flex-direction:column; align-items:center;
}
#vorteile .v-card{ width:100%; height:100%; }

#vorteile .kpi{
  width:240px;                       /* einheitliche Breite */
  margin-top:12px;
  padding:10px 14px;
  display:flex; justify-content:center; align-items:center; gap:10px;
  text-align:center; background:#fff;
  border:1px dashed #E2E8F0; border-radius:12px;
  box-shadow:0 8px 22px rgba(2,6,23,.08);
  font-weight:600;
}
#vorteile .kpi strong{ font-weight:800; }
#vorteile .kpi span{ color:#64748B; }

@media (max-width:900px){
  #vorteile .vorteile-grid{ grid-template-columns:1fr; }
  #vorteile .kpi{ width:min(340px,100%); }
}

/* So funktioniert’s */
#so-funktionierts .steps{
  list-style:none; margin:12px 0 0; padding:0;
  display:grid; grid-template-columns:repeat(4,minmax(220px,1fr));
  gap:16px 22px; align-items:stretch;
}
#so-funktionierts .step{
  position:relative; background:#fff; border:1px solid rgba(2,6,23,.06);
  border-radius:16px; box-shadow:0 10px 28px rgba(2,6,23,.08);
  padding:22px 18px 18px; min-height:170px;
}
#so-funktionierts .step .num{
  position:absolute; top:-12px; left:14px; width:36px; height:36px;
  display:grid; place-items:center; border-radius:999px;
  background:linear-gradient(135deg,#10B981,#059669); color:#fff; font-weight:800;
  box-shadow:0 6px 16px rgba(16,185,129,.35);
}
#so-funktionierts .step h3{
  margin:18px 0 8px; font-size:1.05rem; line-height:1.2;
}
#so-funktionierts .step p{ color:#64748B; margin:0 }

/* Pfeil-Connectoren (nur Desktop) */
@media (min-width:901px){
  #so-funktionierts .step::after{
    content:""; position:absolute; right:-12px; top:50%; transform:translateY(-50%);
    width:24px; height:2px; background:#CBD5E1;
    box-shadow:8px 0 0 #CBD5E1; /* kleiner Doppelpfeil-Effekt */
  }
  #so-funktionierts .step:last-child::after{ display:none; }
}

/* Mobil: 2 Spalten, dann 1 Spalte */
@media (max-width:900px){
  #so-funktionierts .steps{ grid-template-columns:repeat(2,1fr) }
}
@media (max-width:560px){
  #so-funktionierts .steps{ grid-template-columns:1fr }
}


#einsatz .einsatz-grid{
  display:grid; grid-template-columns:1.05fr 1fr; gap:24px; align-items:start;
}
#einsatz .usecases{margin:.5rem 0 1rem; padding-left:1.1rem}
#einsatz .usecases li{margin:.35rem 0}
#einsatz .note{font-size:.85rem; color:#667085; margin-top:.5rem}

.media-pair{display:grid; grid-template-columns:1fr; gap:14px}
.media-pair figure{margin:0; background:#fff; border:1px solid rgba(2,6,23,.06);
  border-radius:16px; box-shadow:0 10px 28px rgba(2,6,23,.08); overflow:hidden}
.media-pair img{display:block; width:100%; height:280px; object-fit:cover}
.media-pair figcaption{font-size:.9rem; color:#64748B; padding:8px 12px}

@media(max-width:980px){
  #einsatz .einsatz-grid{grid-template-columns:1fr}
  .media-pair img{height:240px}
}
/* CTA: Jetzt anfragen */
.btn-cta{
  --bg1:#10B981; --bg2:#059669;
  display:inline-flex; align-items:center; gap:10px;
  padding:12px 18px; border-radius:999px;
  font-weight:800; letter-spacing:.2px; color:#fff;
  background:linear-gradient(135deg,var(--bg1),var(--bg2));
  box-shadow:0 12px 24px rgba(16,185,129,.35);
  text-decoration:none; transition:transform .15s, box-shadow .15s, filter .15s;
}
.btn-cta::after{ content:"→"; font-weight:900; transition:transform .15s; }
.btn-cta:hover{ transform:translateY(-1px); box-shadow:0 16px 36px rgba(16,185,129,.45); }
.btn-cta:hover::after{ transform:translateX(2px); }
.btn-cta:active{ transform:none; filter:saturate(.95); }
.btn-cta:focus-visible{ outline:3px solid rgba(16,185,129,.35); outline-offset:3px; }

@media (max-width:560px){
  .btn-cta{ width:100%; justify-content:center; }
}


/* --- FIX: Navbar wieder fixiert --- */
:root{ --nav-h:72px; }

.navbar{
  position: fixed !important;
  top:0; left:0; right:0; width:100%;
  z-index: 9999;
}

/* Transparenz beim Scrollen (wie zuvor) */
.navbar.scrolled{
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(8px);
  box-shadow: 0 2px 14px rgba(2,6,23,.08);
}

/* Nur auf der 6-m-Unterseite oben Platz lassen */
.subpage-6m .section:first-of-type{ padding-top: calc(var(--nav-h) + 12px); }

/* Angenehme Anker-Sprünge */
html{ scroll-padding-top: var(--nav-h); }


/* Subpage-Hero: Abdunklung bis zum linken Rand */
.hero.sub-hero{
  /* vorhandenes Padding etc. bleibt */
  background-image: linear-gradient(90deg, rgba(33,22,56,.40) 0%, rgba(33,22,56,0) 55%) !important;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* altes Overlay/Pseudo-Element für diese Unterseite deaktivieren */
.hero.sub-hero::before,
.hero.sub-hero .hero-overlay{
  content: none !important;
  display: none !important;
}


/* Hero full-bleed + dunkle Fläche bis ganz links */
.hero.sub-hero{
  position: relative;
  max-width: none;               /* löst die .section-Begrenzung */
  width: 100vw;
  margin-left: calc(50% - 50vw); /* bis Seitenrand ziehen */
  margin-right: calc(50% - 50vw);

  background: linear-gradient(90deg,
    rgba(33,22,56,.45) 0%,
    rgba(33,22,56,.18) 38%,
    rgba(33,22,56,0) 66%) !important;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* andere Overlays für diese Unterseite aus */
.hero.sub-hero::before,
.hero.sub-hero .hero-overlay{ display:none !important; }

/* Innenabstände wieder herstellen */
.hero.sub-hero .hero-content,
.hero.sub-hero .hero-image{
  padding-left: clamp(16px,5vw,48px);
  padding-right: clamp(16px,5vw,48px);
}


/* ===== TrailerPod / 6m Unterseite sauber kapseln ===== */
.subpage-6m{ --nav-h:72px; overflow-x:hidden; }

/* Nav nur hier fixieren + Anker-Offset */
.subpage-6m .navbar{ position:fixed; top:0; left:0; right:0; z-index:9999; }
html{ scroll-behavior:smooth; scroll-padding-top: var(--nav-h, 0px); }
.subpage-6m .section:first-of-type{ padding-top: calc(var(--nav-h) + 12px); }

/* Hero: full-bleed + dunkler Verlauf bis ganz links */
.subpage-6m .hero.sub-hero{
  position:relative;
  max-width:none; width:100vw;
  margin-left:calc(50% - 50vw); margin-right:calc(50% - 50vw);
  background:linear-gradient(90deg, rgba(33,22,56,.45) 0%, rgba(33,22,56,.18) 38%, rgba(33,22,56,0) 66%) !important;
  background-size:100% 100%; background-repeat:no-repeat;
}
.subpage-6m .hero.sub-hero::before,
.subpage-6m .hero.sub-hero .hero-overlay{ display:none !important; }
.subpage-6m .hero.sub-hero .hero-content{ position:relative; z-index:2; max-width:62ch; padding: clamp(84px,12vh,120px) clamp(16px,5vw,48px) 24px; }
.subpage-6m .hero.sub-hero .hero-image{ padding:0 clamp(16px,5vw,48px) 24px; }
.subpage-6m .hero.sub-hero .hero-image img{ display:block; width:100%; height:auto; max-height:520px; object-fit:cover; border-radius:16px; box-shadow:0 12px 40px rgba(2,6,23,.15); transform:scale(1.06); transform-origin:center; }

/* Vorteile + KPI (nur hier) */
.subpage-6m #vorteile .vorteile-grid{ display:grid; grid-template-columns:repeat(3, minmax(260px,1fr)); gap:16px 24px; }
.subpage-6m #vorteile .v-col{ display:grid; grid-template-rows:1fr auto; align-items:start; }
.subpage-6m #vorteile .v-card{ height:100%; }
.subpage-6m #vorteile .kpi,
.subpage-6m #vorteile .kpi-item{
  width:240px; justify-self:center; margin-top:12px;
  display:flex; justify-content:center; align-items:center; gap:10px;
  text-align:center; padding:10px 14px; background:#fff;
  border:1px dashed #E2E8F0; border-radius:12px; box-shadow:0 8px 22px rgba(2,6,23,.08); font-weight:600;
}
.subpage-6m #vorteile .kpi strong,
.subpage-6m #vorteile .kpi-item strong{ font-weight:800; }
@media (max-width:900px){
  .subpage-6m #vorteile .vorteile-grid{ grid-template-columns:1fr; }
  .subpage-6m #vorteile .kpi, .subpage-6m #vorteile .kpi-item{ width:min(340px,100%); }
}

/* Steps */
.subpage-6m #so-funktionierts .steps{ list-style:none; margin:12px 0 0; padding:0; display:grid; grid-template-columns:repeat(4,minmax(220px,1fr)); gap:16px 22px; }
.subpage-6m #so-funktionierts .step{ position:relative; background:#fff; border:1px solid rgba(2,6,23,.06); border-radius:16px; box-shadow:0 10px 28px rgba(2,6,23,.08); padding:22px 18px 18px; min-height:170px; }
.subpage-6m #so-funktionierts .step .num{ position:absolute; top:-12px; left:14px; width:36px; height:36px; display:grid; place-items:center; border-radius:999px; background:linear-gradient(135deg,#10B981,#059669); color:#fff; font-weight:800; box-shadow:0 6px 16px rgba(16,185,129,.35); }
@media (max-width:900px){ .subpage-6m #so-funktionierts .steps{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .subpage-6m #so-funktionierts .steps{ grid-template-columns:1fr; } }

/* Einsatz */
.subpage-6m #einsatz .einsatz-grid{ display:grid; grid-template-columns:1.05fr 1fr; gap:24px; align-items:start; }
.subpage-6m #einsatz .media-pair img{ display:block; width:100%; height:280px; object-fit:cover; }
@media(max-width:980px){ .subpage-6m #einsatz .einsatz-grid{ grid-template-columns:1fr; } .subpage-6m #einsatz .media-pair img{ height:240px; } }



/* Hover-Effekt → wird groß & zeigt Bild */
.leaflet-marker-icon:hover .fr-marker {
  transform: scale(6) !important; /* größer */
  background-image: var(--img) !important;
  background-size: cover !important;
  background-position: center !important;
  border-color: #fff !important;
  box-shadow: 0 10px 24px rgba(0,0,0,.25),
              0 0 0 6px rgba(255,212,0,.25) !important;
}

/* Label unter der Bubble */
.fr-label {
  position: absolute !important;
  left: 50% !important;
  top: 100% !important;       /* unterhalb */
  margin-top: 6px !important; /* Abstand */
  transform: translateX(-50%) !important;
  padding: .25rem .5rem !important;
  border-radius: .5rem !important;
  background: #fff !important;
  border: 1px solid #ece7ff !important;
  font: 600 12px/1.2 Montserrat, system-ui !important;
  color: #37254f !important;
  white-space: nowrap !important;
  box-shadow: 0 8px 18px rgba(33,22,56,.12) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity .18s ease !important;
}
.leaflet-marker-icon:hover .fr-label {
  opacity: 1 !important;
}


/* --- Support: hübscher Look --- */
.hd-underline{
  position:relative; display:inline-block; padding-bottom:.3rem;
}
.hd-underline::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:6px;
  background: linear-gradient(90deg,#ffd400,rgba(255,212,0,0));
  border-radius:6px;
}

.support-grid{
  margin-top:1.25rem;
  display:grid; gap:1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
}
.support-card{
  background:#fff; border-radius:14px; padding:1.2rem 1.1rem;
  border:1px solid rgba(55,37,79,.06);
  box-shadow: 0 6px 20px rgba(33,22,56,.06), inset 0 0 0 1px rgba(255,212,0,.0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.support-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(33,22,56,.12), inset 0 0 0 1px rgba(255,212,0,.35);
  border-color: rgba(255,212,0,.5);
}
.support-card .icon{
  width:42px;height:42px;border-radius:50%;
  display:inline-grid;place-items:center;margin-bottom:.6rem;
  background: radial-gradient(ellipse at top, #ffd400 0%, #ffe980 70%, #fff 100%);
  color:#211638; box-shadow:0 6px 14px rgba(255,212,0,.35);
}
.support-card h3{
  margin:.2rem 0 .25rem; color:var(--color-dark);
  font-size:1.05rem;
}
.support-card p{ margin:0; color:var(--color-muted); }

.support-cta{
  display:inline-block; margin-top:1.2rem;
  padding:.6rem 1rem; border-radius:999px;
  background:var(--color-accent); color:var(--color-dark); text-decoration:none; font-weight:700;
  box-shadow:0 6px 14px rgba(255,212,0,.35);
}
.support-cta:hover{ background:#e6bc00; }


/* --- Steps "So wirst du Partner" --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h3 {
  margin: .8rem 1rem .3rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #37254f;
  position: relative;
}

.card p {
  margin: 0 1rem 1.2rem;
  color: #555;
  font-size: .95rem;
  line-height: 1.45;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 26px rgba(0,0,0,.12);
}

.card h3::before {
  content: "✓";
  position: absolute;
  left: -1.6rem;
  top: 0;
  color: #ffd400;
  font-size: 1.2rem;
  font-weight: bold;
}


/* === Für Supermärkte & Händler – Card-Upgrade === */
.values-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:1.5rem;
  margin-top:1.25rem;
}

.value-item{
  background:#fff;
  border-radius:18px;
  padding:1.1rem;
  border:1px solid rgba(55,37,79,.08);
  box-shadow:0 6px 18px rgba(0,0,0,.06);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position:relative;
  overflow:hidden;
  min-height: 100%;
}

/* zarter Aurora-Glow */
.value-item::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(120px 80px at 20% 0%, rgba(255,212,0,.14), transparent 60%),
              radial-gradient(140px 90px at 80% 0%, rgba(255,212,0,.12), transparent 65%);
  pointer-events:none;
  opacity:.7;
}

.value-item:hover{
  transform:translateY(-6px);
  box-shadow:0 14px 32px rgba(0,0,0,.12);
  border-color:rgba(255,212,0,.45);
}

/* Bild */
.value-item img{
  width:100%;
  aspect-ratio: 4/3;      /* konsistente Höhe */
  object-fit:cover;
  border-radius:14px;
  display:block;
  transition:transform .35s ease;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
}
.value-item:hover img{ transform:scale(1.03); }

/* Titel & Text */
.value-item h3{
  margin:.9rem .2rem .35rem;
  font-size:1.15rem;
  color:#201431; /* dunkler, kontrastreicher */
}
.value-item p{
  margin:0 .2rem .2rem;
  color:#5c5470;
  line-height:1.5;
}

/* dezente Trennung Bild/Text */
.value-item h3::before{
  content:"";
  display:block;
  height:6px;
  width:64px;
  border-radius:6px;
  background:linear-gradient(90deg,#ffd400,rgba(255,212,0,0));
  margin:.7rem 0 .4rem;
}


/* === Warum AuroraFranchise === */
/* === Warum AuroraFranchise === */
.section-franchise-why {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 2.2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
  /* margin: 2rem 0;  <-- ENTFERNEN, da deine .section-Klasse bereits margin hat */
}

.section-franchise-why::before {
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(240px 140px at top left, rgba(255,212,0,.12), transparent 70%),
              radial-gradient(280px 180px at bottom right, rgba(55,37,79,.08), transparent 70%);
  pointer-events:none;
}

.section-franchise-why h2 {
  margin-top:0;
  margin-bottom:.6rem;
  font-size:1.6rem;
  color:#211638;
  position:relative;
}

.section-franchise-why p {
  margin:0 0 1.4rem;
  color:#555;
  line-height:1.5;
}

.section-franchise-why ul {
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:.9rem;
}

.section-franchise-why li {
  padding-left:2rem;
  position:relative;
  font-size:.98rem;
  line-height:1.45;
  color:#37254f;
}

.section-franchise-why li strong {
  color:#211638;
}

.section-franchise-why li::before {
  content:"✔";
  position:absolute;
  left:0; top:0;
  color:#ffd400;
  font-weight:700;
}
/* Warum AuroraFranchise – hübscher Block */
.section-franchise-why {
  background:#fff;
  border-radius:18px;
  padding:2rem 2.2rem;
  box-shadow:0 6px 20px rgba(0,0,0,.06);
  position:relative;
  overflow:hidden;
}

.section-franchise-why::before {
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(240px 140px at top left, rgba(255,212,0,.12), transparent 70%),
              radial-gradient(280px 180px at bottom right, rgba(55,37,79,.08), transparent 70%);
  pointer-events:none;
}

.section-franchise-why h2 {
  margin-top:0;
  margin-bottom:.6rem;
  font-size:1.6rem;
  color:#211638;
  position:relative;
}

.section-franchise-why p {
  margin:0 0 1.4rem;
  color:#555;
  line-height:1.5;
}

.section-franchise-why ul {
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:.9rem;
}

.section-franchise-why li {
  padding-left:2rem;
  position:relative;
  font-size:.98rem;
  line-height:1.45;
  color:#37254f;
}

.section-franchise-why li strong { color:#211638; }

.section-franchise-why li::before {
  content:"✔";
  position:absolute;
  left:0; top:0;
  color:#ffd400;
  font-weight:700;
}


/* ===== Fancy Testimonials ===== */
.fancy-testimonials .testimonial-grid{
  gap: 1.6rem;
}
.fancy-testimonials .testimonial{
  position: relative;
  border-radius: 16px;
  padding: 1.2rem 1.25rem 1rem 1.25rem;
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(255,212,0,.14), transparent 55%),
    #fff;
  border: 1px solid rgba(55,37,79,.08);
  box-shadow:
    0 10px 30px rgba(33,22,56,.08),
    inset 0 1px 0 rgba(255,255,255,.8);
  transition: transform .18s ease, box-shadow .18s ease;
}
.fancy-testimonials .testimonial:hover{
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(33,22,56,.12);
}
.fancy-testimonials .testimonial::before{
  content: "❝";
  position: absolute; top: -.6rem; left: .8rem;
  font-size: 2.4rem; line-height: 1; color: rgba(55,37,79,.12);
  pointer-events: none;
}
.fancy-testimonials blockquote{
  margin: 0 0 .8rem 0;
  font-style: italic;
  color: var(--color-primary);
}
.fancy-testimonials .stars{
  letter-spacing: .14rem;
  font-size: .9rem;
  color: #ffbf00; /* passt zu var(--color-accent) */
  margin-bottom: .4rem;
  user-select: none;
}
.fancy-testimonials figcaption{
  display: flex; align-items: center; gap: .6rem;
  font-size: .9rem; color: var(--color-muted);
}
.fancy-testimonials .avatar{
  width: 28px; height: 28px; border-radius: 50%;
  object-fit: cover; flex: 0 0 28px;
  border: 2px solid #fff; box-shadow: 0 0 0 2px rgba(55,37,79,.08);
}

/* ===== Kontaktkarte aufwerten ===== */
.section.contact{
  position: relative;
}
.section.contact::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(600px 300px at 70% 10%, rgba(255,212,0,.12), transparent 60%);
  pointer-events:none;
}
.contact form{
  background:#fff;
  border:1px solid rgba(55,37,79,.08);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(33,22,56,.08);
  padding: 1.2rem;
}
.contact input, .contact textarea{
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,.08);
  background: #fbfafc;
}
.contact input:focus, .contact textarea:focus{
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(55,37,79,.15);
  outline: 0;
}
.contact button{
  border-radius: 999px;
  font-weight: 800;
  letter-spacing:.02em;
  box-shadow: 0 10px 24px rgba(255,212,0,.35);
}
.contact button:hover{
  transform: translateY(-1px);
}


/* Navigation aktiver Link */
.nav-links a.is-active {
  color: var(--color-muted);
  text-decoration: underline;
}

/* Badges in Vorteilen */
.badge {
  display:inline-block;
  padding:.25rem .6rem;
  border-radius:999px;
  font-weight:700;
  font-size:.8rem;
  background:var(--color-accent,#ffd400);
  color:var(--color-dark,#211638);
}


/* Unterstreichung bei Produktkarten entfernen */
.products .card,
.products .card h3,
.products .card p {
  text-decoration: none !important;
  color: inherit;
}

/* Falls Links speziell eingefärbt sind */
.products .card:hover h3 {
  color: var(--color-accent); /* optional schöner Hover-Effekt */
}


/* ===== Investor Page – Design Additions ===== */

/* Hero präsenter/„teurer“ */
.hero.hero--investor { height: 72vh; }
.hero--investor .hero-overlay{
  background: linear-gradient(180deg, rgba(33,22,56,.25), rgba(33,22,56,.55));
}
.hero--investor .hero-content h1{ font-size:3.2rem; letter-spacing:.2px; }
.hero--investor .hero-content p{ max-width:760px; }
.hero .btn{ box-shadow:0 8px 24px rgba(0,0,0,.18); }

/* KPI-Leiste im Hero */
.kpi-row{
  display:flex; gap:1rem; flex-wrap:wrap; justify-content:center; margin-top:1rem;
}
.kpi{
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(4px);
  color:#fff; padding:.45rem .8rem; border-radius:999px;
  font-size:.92rem; line-height:1.1;
  display:flex; gap:.35rem; align-items:baseline;
}
.kpi strong{ font-size:1.05rem; }

/* Benefits als Kacheln */
.benefits{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1rem;
}
.benefit{
  background:#fff; border-radius:14px; padding:1.2rem;
  box-shadow:0 6px 16px rgba(0,0,0,.06);
}
.benefit h3{ margin:.2rem 0 .25rem; color:var(--color-dark); }
.benefit p{ margin:0; color:var(--color-muted); }

/* Module-Karten konsistent */
.values-grid{ align-items:stretch; }
.value-item{ display:flex; flex-direction:column; height:100%; }
.value-item img{
  width:100%; height:auto; aspect-ratio:16/10; object-fit:cover;
  border-radius:10px; margin-bottom:.6rem;
}

/* Franchise-Pläne */
.plans{
  display:grid; gap:1rem;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
}
.plan{
  background:#fff; border-radius:12px; padding:1rem 1.2rem;
  box-shadow:0 6px 16px rgba(0,0,0,.06);
}
.plan h3{ margin:.1rem 0 .2rem; color:var(--color-dark); }
.plan p{ margin:0; color:var(--color-muted); }

/* Badge leicht kontrastreicher */
.badge{
  border:1px solid rgba(0,0,0,.06);
  padding:.28rem .7rem;
}

/* Typografie/Weißraum Feinschliff */
.section h2{ font-size:2.2rem; margin:0 0 .6rem; }
.section p{ margin:0 0 1.2rem; }

/* Disabled-Optik (wird im Script genutzt) */
.is-disabled{ opacity:.55; pointer-events:none; }
.is-disabled input, .is-disabled select{ background:#f5f5f7; }

/* Sticky CTA auf Mobile */
@media (max-width: 892px){
  .sticky-cta{
    position:fixed; left:16px; right:16px; bottom:14px; z-index:1100;
    text-align:center;
  }
}


.advantages ul { list-style:disc; padding-left:1.2rem; }
.advantages li::before { content:none; }


/* ===== Team-Seite (ergänzend) ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.team-card .team-head{
  display:flex; align-items:center; gap:16px;
  padding: 1rem 1rem 0;
}
.team-card .team-name{ margin:0; color: var(--color-dark); }
.team-card .role{ margin:.15rem 0 0; color: var(--color-muted); }
.team-card .avatar{
  width:84px; height:84px; border-radius:999px; object-fit:cover;
  border:4px solid #e9f3ee;
}
.team-card .bullets{
  margin: .5rem 1.2rem 1.2rem;
  padding-left: 1rem;
}
.team-card .bullets li{ margin:.25rem 0; }

/* Button-Reuse (falls nicht vorhanden) */
.btn{
  display:inline-block; padding:.8rem 1.2rem; border-radius:30px;
  background: var(--color-accent); color: var(--color-dark);
  text-decoration:none; font-weight:700;
}
.btn:hover{ background:#e6bc00; }








/* ===== TEAM HERO – Wellenlayout + Float (clean) ===== */

/* Ebenen */
.hero--team::before{ z-index:1 !important; }              /* Verlauf */
.team-collage{ position:absolute; inset:0; z-index:2 !important; pointer-events:none; transform: translateY(170px) !important; }
.hero--team .hero-content{ position:relative; z-index:3 !important; }
.hero--team .hero-content h1{ margin-bottom:.25rem; }
.hero--team .hero-content p{ opacity:.9; }

/* Avatare schärfer */
.team-collage .bubble,
.team-card .avatar{
  border-radius:999px; object-fit:cover; transform:translateZ(0);
  image-rendering:-webkit-optimize-contrast; image-rendering:crisp-edges;
  filter:contrast(105%) saturate(105%);
  box-shadow:0 6px 18px rgba(0,0,0,.16), inset 0 0 0 4px rgba(255,255,255,.85);
}

/* FLOAT-Animation */
@keyframes floatY{
  0%   { transform: translate(-50%,-50%) translateY(0); }
  50%  { transform: translate(-50%,-50%) translateY(-10px); }
  100% { transform: translate(-50%,-50%) translateY(0); }
}
/* Basis-Transform + Float aktivieren */
.team-collage .bubble{
  transform: translate(-50%,-50%);
  animation: floatY 8s ease-in-out infinite;
}
/* leichte Variationen */
.team-collage .b1{ animation-duration:7.5s; animation-delay:.1s; }
.team-collage .b2{ animation-duration:8.8s; animation-delay:.4s; }
.team-collage .b3{ animation-duration:9.6s; animation-delay:.2s; }
.team-collage .b4{ animation-duration:8.2s; animation-delay:.6s; }
.team-collage .b5{ animation-duration:7.8s; animation-delay:.3s; }
.team-collage .bubble:hover{ animation-play-state:paused; }
@media (prefers-reduced-motion:reduce){ .team-collage .bubble{ animation:none !important; } }

/* DESKTOP: Wellen-/Halbkreis-Layout – KEIN transform hier! */
@media (min-width:901px){
  /* Uwe kleiner & tiefer links */
  .team-collage .b1{ left:18%; top:62%; width:180px; height:180px; }
  /* Francesco höher */
  .team-collage .b2{ left:33%; top:48%; width:210px; height:210px; }
  /* Zentrum am höchsten & am größten */
  .team-collage .b3{ left:50%; top:40%; width:224px; height:224px; }
  /* Peter spiegelnd */
  .team-collage .b4{ left:67%; top:48%; width:206px; height:206px; }
  /* Tommy rechts, wieder tiefer */
  .team-collage .b5{ left:82%; top:62%; width:190px; height:190px; }
}

/* MOBILE: kompakt & versetzt – KEIN transform hier! */
@media (max-width:900px){
  .team-collage{ transform: translateY(100px) !important; }
  .team-collage .b1{ left:22%; top:70%; width:120px; height:120px; }
  .team-collage .b2{ left:42%; top:54%; width:130px; height:130px; }
  .team-collage .b3{ left:62%; top:46%; width:140px; height:140px; }
  .team-collage .b4{ left:50%; top:78%; width:122px; height:122px; }
  .team-collage .b5{ left:78%; top:72%; width:126px; height:126px; }
}


/* ===== TEAM HERO – volle Breite + Hierarchie (angepasst) ===== */

/* globaler Offset */
.team-collage{ transform: translateY(160px) !important; }

/* Standard für alle Bubbles */
.team-collage .bubble{ width: var(--size); height: var(--size); }

/* DESKTOP */
@media (min-width:901px){
  /* Uwe tiefer */
  .team-collage .b1{
    --size: clamp(170px, 14vw, 230px);
    left: 18%; top: 78%;
  }
  /* Francesco tiefer */
  .team-collage .b2{
    --size: clamp(190px, 16vw, 250px);
    left: 33%; top: 70%;
  }
  /* Sebastian (kleiner, etwas unterhalb der Headline) */
  .team-collage .b3{
    --size: clamp(150px, 12vw, 190px);
    left: 50%; top: 84%;
  }
  /* Peter knapp unter Headline rechts */
  .team-collage .b4{
    --size: clamp(160px, 13vw, 220px);
    left: 67%; top: 78%;
  }
  /* Tommy ähnlich, leicht tiefer */
  .team-collage .b5{
    --size: clamp(150px, 12vw, 200px);
    left: 82%; top: 82%;
  }
}


/* MOBILE */
@media (max-width: 900px){
  .team-collage{ transform: translateY(100px) !important; }

  .team-collage .b2{ --size: clamp(130px, 34vw, 180px); left: 28%; top: 46%; z-index:5; } /* Francesco größer */
  .team-collage .b1{ --size: clamp(120px, 28vw, 160px); left: 12%; top: 64%; z-index:4; }
  .team-collage .b3{ --size: clamp(100px, 24vw, 130px); left: 50%; top: 76%; z-index:3; } /* Sebastian kleiner, tiefer */
  .team-collage .b4{ --size: clamp(110px, 28vw, 160px); left: 72%; top: 54%; z-index:4; }
  .team-collage .b5{ --size: clamp(110px, 26vw, 150px); left: 88%; top: 68%; z-index:3; }
}

/* ===== TEAM HERO – FINAL OVERRIDE (unterhalb Headline) ===== */
.hero--team .team-collage{ 
  transform: translateY(240px) !important;  /* Collage noch tiefer */
}

@media (min-width:901px){
  /* Uwe – links unten */
  .hero--team .team-collage .b1{
    left:18% !important; 
    top:82% !important; 
    --size: clamp(170px,14vw,230px) !important;
  }
  /* Francesco – etwas größer, links-mitte */
  .hero--team .team-collage .b2{
    left:33% !important; 
    top:78% !important; 
    --size: clamp(200px,17vw,240px) !important;
  }
  /* Sebastian – kleiner, deutlich tiefer */
  .hero--team .team-collage .b3{
    left:50% !important; 
    top:88% !important; 
    --size: clamp(150px,12vw,190px) !important;
  }
  /* Peter – rechts mittig, leicht tiefer */
  .hero--team .team-collage .b4{
    left:67% !important; 
    top:80% !important; 
    --size: clamp(160px,13vw,220px) !important;
  }
  /* Tommy – rechts außen, ebenfalls tiefer */
  .hero--team .team-collage .b5{
    left:82% !important; 
    top:85% !important; 
    --size: clamp(150px,12vw,200px) !important;
  }
}

@media (max-width:900px){
  .hero--team .team-collage{ 
    transform: translateY(140px) !important; 
  }
  .hero--team .team-collage .b1{
    left:22% !important; 
    top:84% !important; 
    --size: clamp(120px,28vw,160px) !important;
  }
  .hero--team .team-collage .b2{
    left:42% !important; 
    top:78% !important; 
    --size: clamp(150px,34vw,190px) !important;
  }
  .hero--team .team-collage .b3{
    left:50% !important; 
    top:92% !important; 
    --size: clamp(100px,24vw,130px) !important;
  }
  .hero--team .team-collage .b4{
    left:72% !important; 
    top:82% !important; 
    --size: clamp(120px,28vw,160px) !important;
  }
  .hero--team .team-collage .b5{
    left:88% !important; 
    top:86% !important; 
    --size: clamp(110px,26vw,150px) !important;
  }
}


/* ===== TEAM HERO – Headline frei + Mobile nach rechts ===== */

/* Collage deutlich tiefer */
.hero--team .team-collage{ transform: translateY(280px) !important; }

/* Headline/Text bleibt darüber */
.hero--team .hero-content{ z-index: 4 !important; }

/* DESKTOP (>=901px): alle Bubbles klar unter der Headline */
@media (min-width:901px){
  .hero--team .team-collage .b1{ left:18% !important; top:86% !important; --size: clamp(170px,14vw,230px) !important; }
  .hero--team .team-collage .b2{ left:34% !important; top:82% !important; --size: clamp(180px,17vw,260px) !important; }
  .hero--team .team-collage .b3{ left:50% !important; top:98% !important; --size: clamp(150px,12vw,190px) !important; }
  .hero--team .team-collage .b4{ left:67% !important; top:89% !important; --size: clamp(160px,13vw,220px) !important; }
  .hero--team .team-collage .b5{ left:82% !important; top:93% !important; --size: clamp(150px,12vw,200px) !important; }
}

/* MOBILE (<=900px): nach rechts schieben + alle tiefer */
@media (max-width:900px){
  /* Collage nach unten und leicht nach rechts (verhindert Abschneiden links) */
  .hero--team .team-collage{ transform: translate(6vw, 160px) !important; }

  /* Linke Kante schützen (Uwe nicht abschneiden) */
  .hero--team .team-collage .b1{ left:35% !important; top:88% !important; --size: clamp(120px,28vw,160px) !important; }
  .hero--team .team-collage .b2{ left:54% !important; top:82% !important; --size: clamp(130px,34vw,190px) !important; }
  .hero--team .team-collage .b3{ left:58% !important; top:96% !important; --size: clamp(100px,24vw,130px) !important; }
  .hero--team .team-collage .b4{ left:74% !important; top:86% !important; --size: clamp(120px,28vw,160px) !important; }
  .hero--team .team-collage .b5{ left:92% !important; top:90% !important; --size: clamp(110px,26vw,150px) !important; }
}


/* — Swiss Seal — */
.seal-swiss{display:inline-flex;align-items:center;gap:.45rem;
  background:#fff;border:1px solid #efeaff;border-radius:999px;
  padding:.25rem .55rem;font-weight:700;font-size:.85rem;color:#211638;
  box-shadow:0 4px 12px rgba(33,22,56,.06)}
.seal-swiss svg{width:18px;height:18px;display:block}
.seal-swiss .txt{white-space:nowrap}

/* kompakte Variante (nur Icon) */
.seal-swiss.is-compact{padding:.2rem;border-radius:999px}
.seal-swiss.is-compact .txt{display:none}

/* für Karten-Ecke (Home-Card) */
.corner-seal{position:absolute;top:10px;right:10px;z-index:2}
.card{position:relative}


/* --- Hero badge fixes & Swiss seal (scoped to EffectBär hero) --- */
.hero--effectbar .badges{
  display:flex; gap:.5rem; flex-wrap:wrap; justify-content:center; align-items:center;
  margin:.6rem 0 1.1rem;
}
.hero--effectbar .badge{
  display:inline-block;             /* verhindert „Aufblasen“ */
  padding:.35rem .8rem;
  line-height:1;                    /* kompakt */
  border-radius:999px;
  background:#ffd400; color:#211638; font-weight:700; font-size:.9rem;
  height:auto;                      /* falls global etwas height vererbt */
}

/* Swiss seal als kompakte Badge */
.hero--effectbar .seal-swiss-badge{
  display:inline-flex; align-items:center; gap:.45rem;
  background:#fff; color:#211638;
  border:1px solid #efeaff; border-radius:999px;
  padding:.3rem .6rem; font-weight:700; font-size:.9rem;
  box-shadow:0 6px 18px rgba(33,22,56,.06);
}
.hero--effectbar .seal-swiss-badge svg{
  width:18px; height:18px; display:block;
  border-radius:4px;                /* weiche Ecken des roten Felds */
}

/* sehr kleine Screens: nur das Kreuz zeigen, Text ausblenden */
@media (max-width: 480px){
  .hero--effectbar .seal-swiss-badge .txt{ display:none; }
  .hero--effectbar .seal-swiss-badge{ padding:.3rem; }
}
/* === EffectBär: Chips im Hero unabhängig von globaler .badge === */
.hero--effectbar .chips{display:flex;gap:.5rem;flex-wrap:wrap;justify-content:center;align-items:center;margin:.65rem 0 1.1rem}
.hero--effectbar .eb-chip{
  display:inline-block !important;
  height:auto !important;
  min-height:0 !important;
  line-height:1 !important;
  padding:.35rem .8rem !important;
  border-radius:999px !important;
  background:#ffd400 !important;
  color:#211638 !important;
  font-weight:700 !important;
  font-size:.9rem !important;
  box-shadow:none !important;
  border:0 !important;
  white-space:nowrap !important;
}

/* Kompaktes Schweizer Siegel im gleichen Look */
.hero--effectbar .eb-chip--swiss{
  background:#fff !important; color:#211638 !important; border:1px solid #efeaff !important;
  display:inline-flex !important; align-items:center !important; gap:.45rem;
  padding:.3rem .6rem !important;
}
.hero--effectbar .eb-chip--swiss svg{width:18px;height:18px;display:block;border-radius:4px}
@media (max-width:480px){ .hero--effectbar .eb-chip--swiss .txt{display:none} .hero--effectbar .eb-chip--swiss{padding:.3rem !important} }



/* EffectBär – kompakte Chips im Hero */
.hero--effectbar .chips{
  display:flex;gap:.5rem;flex-wrap:wrap;justify-content:center;align-items:center;
  margin:.65rem 0 1.1rem;
}
.hero--effectbar .eb-chip{
  display:inline-block;
  height:auto; line-height:1; padding:.35rem .8rem;
  border-radius:999px; background:#ffd400; color:#211638;
  font-weight:700; font-size:.9rem; white-space:nowrap;
}

/* Swiss seal ohne SVG – immer 18×18 px */
.hero--effectbar .eb-chip--swiss{
  background:#fff; color:#211638; border:1px solid #efeaff;
  display:inline-flex; align-items:center; gap:.45rem;
  padding:.3rem .6rem;
}
.hero--effectbar .eb-chip--swiss::before{
  content:""; width:18px; height:18px; flex:0 0 18px; border-radius:4px; display:inline-block;
  /* rotes Feld + weißes Kreuz via 2 Gradients */
  background:
    linear-gradient(#fff,#fff) center/60% 20% no-repeat,
    linear-gradient(#fff,#fff) center/20% 60% no-repeat,
    #E30613;
}
/* sehr kleine Screens: Text ausblenden, nur Flagge zeigen */
@media (max-width:480px){
  .hero--effectbar .eb-chip--swiss .txt{ display:none; }
  .hero--effectbar .eb-chip--swiss{ padding:.3rem; }
}


/* EffectBär: kompakter Schweiz-Chip – verhindert doppelte Icons */
.hero--effectbar .swiss-chip{
  display:inline-flex;align-items:center;gap:.45rem;
  background:#fff;border:1px solid #efeaff;border-radius:999px;
  padding:.3rem .6rem;font-weight:700;font-size:.9rem;color:#211638;
  box-shadow:0 6px 18px rgba(33,22,56,.06);
}
/* nur EIN Icon rendern */
.hero--effectbar .swiss-chip::before,
.hero--effectbar .swiss-chip::after{ content:none !important; }
.hero--effectbar .swiss-chip svg{ width:18px;height:18px;display:block;border-radius:4px; }
@media (max-width:480px){
  .hero--effectbar .swiss-chip .txt{ display:none; }
  .hero--effectbar .swiss-chip{ padding:.3rem; }
}
