/* Basis-Styles */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

/* gemeinsame Content-Linie für alle Inhalte */
:root {
    --content-start: 1.5rem;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

/* Typografie für Vision, Vorteile, Ablauf */

.inter-vision {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 50px;
}

#vision h2,
#vorteile h2,
#ablauf h2,
#standorte h2,
#service h2,
#kontakt h2 {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 50px;
}

/* Fließtexte in den drei Bereichen */

#vision p,
#vorteile p,
#ablauf p,
#standorte p,
#service p,
#kontakt p {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-size: 24px;
}

/* Abstände Vision / Vorteile / Ablauf etwas enger */

#vision .section-inner {
    padding-top: 4rem;
    padding-bottom: 1.5rem;
}

#vorteile .section-inner {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

#ablauf .section-inner {
    padding-top: 1.5rem;
    padding-bottom: 4rem;
}

/* Hero-Card */

.hero-card {
    max-width: 350px;
    background-color: #f15a24;
    color: #fff;
    padding: 1.8rem 1.8rem;
    border-radius: 16px;

    margin-right: 30rem;
    margin-bottom: -120px;
    z-index: 20;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.hero-card h1 {
    font-size: 2.0rem;
    line-height: 1.15;
    margin-bottom: 0.6rem;
}

.hero-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1.0rem;
}

/* Hilfsklassen */

.section {
    width: 100%;
}

/* alle Inhalte starten an derselben vertikalen Linie */
.section-inner {
    max-width: 1200px;
    padding: 4rem var(--content-start);
    margin: 0 auto;
}

.section-dark {
    background-color: #000;
}

.section-panel {
    background-color: #ffffff;
}

/* Buttons */

.btn {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: #fff;
    color: #0180A2;
}

.btn-primary:hover {
    filter: brightness(1.1);
}

.btn-secondary {
    background-color: transparent;
    color: #f15a24;
    border: 2px solid #f15a24;
}

.btn-secondary:hover {
    background-color: #f15a24;
    color: #fff;
}

.btn-full {
    width: 100%;
}

/* Überschriften – Basis */

h1, h2, h3 {
    margin: 0 0 1rem;
    font-weight: 600;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.2rem;
	color: #1483A0;
}

/* Header / Navigation */

.site-header {
    position: relative;
    background-color: #fff;
    z-index: 20;
}

/* Top-Bar */

.top-bar {
    position: relative;
    background-color: #fff;
    z-index: 100;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
}

.logo img {
    max-height: 40px;
}

/* Hero */

.hero {
    position: relative;
    width: 100%;
    /*height: 55vh;*/
    min-height: 420px;
    background-image: url("../img/hero1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* türkiser Rahmen oben rechts */
.hero-logo::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border: 30px solid #37b4c8;
  border-bottom: none;
  border-left: none;
  top: 0px;
  right: 0px;
}

/* türkiser Rahmen unten links */
.hero::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border: 30px solid #37b4c8;
  border-top: none;
  border-right: none;
  bottom: 0px;
  left: 0px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--content-start);

    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.logo {
    width: 320px;
    max-width: 40vw;
}

.hero-left {
    max-width: 360px;
}

.hero-logo img {
    max-width: 420px;
    height: auto;
    padding: 2.0rem 2.0rem;
}

.hero-tagline {
    font-size: 2.2rem;
    font-weight: 800;
    margin-top: 0.5rem;
}

/* Panels */

/* Panel für "Deine Vorteile" optisch links erweitern */
.panel-first {
    border-top-right-radius: 32px;
    border-bottom-right-radius: 32px;
    background-color: #E2F5F9;
    
    /* Panel nach links hinausschieben (z.B. 12rem) */
    margin-left: -12rem;             /* Panel ragt weiter raus */
    
    /* Inhalt bleibt auf exakt derselben Linie wie vorher */
    padding: 2.5rem 2rem 3rem calc(12rem + var(--content-start));
}

.panel-second {
    border-top-left-radius: 32px;
    border-bottom-left-radius: 32px;
    background-color: #E2F5F9;

    /* Panel nach rechts hinausschieben (bleibt!) */
    margin-right: -12rem;
 
    /* gleiches Grid wie oben: gleicher Start & gleiche Innenbreite */
    padding: 2.5rem 14rem 3rem calc(var(--content-start) + 1.5rem);
}

.panel {
    border-radius: 32px;
    padding: 2.5rem 2rem 3rem;
}

.panel-blue {
    background-color: #E2F5F9;
    color: #000;
}

.panel h2 {
    margin-bottom: 2rem;
}

/* Grid für Vorteile & So funktioniert's */
/* → 3 Spalten nebeneinander, oben & unten exakt gleich breit */

.panel-grid {
    display: grid;
    gap: 2rem;
}

.panel-grid-3 {
    grid-template-columns: 1fr;
}

.feature {
    text-align: center;
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-icon img {
    max-width: 72px;
    height: auto;
}

.feature h3 {
    margin-bottom: 0.5rem;
    text-transform: uppercase;
	color: #1483A0;
}

/* Split Layouts (zwei Spalten) */

.section-inner-split {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.split-text {
    flex: 1;
}

.split-text p {
    max-width: 480px;
}

.split-media {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

/* =========================================================
   STANDORTE
   ========================================================= */

#standorte {
  background-color: #fff;
  color: #000;
}

#standorte .section-inner-split {
  align-items: center;
  gap: 3rem;
}

#standorte .split-text p {
  max-width: 320px;
  margin-bottom: 1.75rem;
}

/* Button wie im Layout: orange Vollfläche */
#standorte .btn,
#standorte .btn-secondary {
  background-color: #f15a24;
  color: #fff;
  border: none;
  padding: 0.75rem 2.2rem;
  border-radius: 4px;
  font-weight: 600;
}

#standorte .btn:hover,
#standorte .btn-secondary:hover {
  filter: brightness(1.05);
}

/* Smartphone-Bild leicht über dem Marker, mit türkisem Block dahinter */

#standorte .img-smartphone {
  max-width: 600px;
}

#standorte .split-media {
    position: relative;  /* wichtig, damit die ::before/::after richtig sitzen */
}

/* türkiser Rahmen oben rechts */
#standorte .split-media::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border: 8px solid #37b4c8;
  border-bottom: none;
  border-left: none;
  top: -20px;
  right: -20px;
}

/* türkiser Rahmen unten links */
#standorte .split-media::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border: 8px solid #37b4c8;
  border-top: none;
  border-right: none;
  bottom: -20px;
  left: -20px;
}

/* Service / Kontakt Bilder */

/* =========================================================
   UNSER SERVICE
   ========================================================= */

#service {
  background-color: #fff;
  color: #000;
}

/* Bild links, Text rechts – wie im Layout */
#service .section-inner-split {
  align-items: center;
  gap: 3rem;
}

/* .section-inner-reverse überschreiben */
#service .section-inner-reverse {
  flex-direction: row;
}

/* Bild mit Ecken-Akzenten */

#service .split-media {
  position: relative;
  flex: 1;
  left: -3rem; 
}

.img-service {
  max-width: 600px;
  display: block;
}

/* türkiser Rahmen oben rechts */
#service .split-media::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border: 8px solid #37b4c8;
  border-bottom: none;
  border-left: none;
  top: -20px;
  right: 85px;
}

/* türkiser Rahmen unten links */
#service .split-media::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border: 8px solid #37b4c8;
  border-top: none;
  border-right: none;
  bottom: -20px;
  left: 45px;
}

/* Textspalte */

#service .split-text {
  flex: 1;
  max-width: 380px;
}

#service .split-text p {
  margin-bottom: 0.75rem;
}

/* Orange CTA-Button wie in der Grafik */

#service .btn-primary {
  background-color: #f15a24;
  color: #fff;
  border: none;
  padding: 0.75rem 2.4rem;
  border-radius: 4px;
  margin-top: 1rem;
}

#service .btn-primary:hover {
  filter: brightness(1.05);
}


/* Kontakt */

#kontakt {
  background-color: #fff;
  color: #000;
}

.section-contact {
    align-items: flex-start;
}

.split-form {
    flex: 1;
    width: 100%;
}

.contact-form {
    width: 100%;
}

.form-group {
    margin-bottom: 1.1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border-radius: 6px;
    border: 1px solid #555;
    background-color: transparent;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f15a24;
}

#kontakt .greeting {
    margin-top: 2rem;
    font-family: "Montserrat", cursive;
    font-weight: 800;
    color: #107D91;
	font-size: 40px
}

/* Formular als weiße Karte mit Ecken-Akzenten */

.contact-form {
  position: relative;
  background-color: #fff;
  padding: 1.8rem 1.9rem 2rem;
  border-radius: 8px;
  border: 1px solid #e2e2e2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* türkiser Rahmen oben rechts */
.contact-form::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border: 8px solid #37b4c8;
  border-bottom: none;
  border-left: none;
  top: -20px;
  right: -20px;
}

/* türkiser Rahmen unten links */
.contact-form::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  border: 8px solid #37b4c8;
  border-top: none;
  border-right: none;
  bottom: -20px;
  left: -20px;
}

/* Input-Felder: weiße Boxen wie im Layout */

.contact-form .form-group input,
.contact-form .form-group textarea {
  background-color: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  color: #000;
}

.contact-form .form-group label {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}

/* Orange "Nachricht senden"-Button */

#kontakt .btn-primary.btn-full {
  background-color: #f15a24;
  color: #fff;
  border-radius: 4px;
  padding: 0.85rem 1.4rem;
  margin-top: 0.5rem;
}

#kontakt .btn-primary.btn-full:hover {
  filter: brightness(1.05);
}

/* Footer */

.site-footer {
    background-color: #f1f1f1;
    color: #37b4c8;
    padding: 1rem 1.5rem;
    font-size: 0.85rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-inner a {
    color: #37b4c8;
    text-decoration: none;
}

.footer-inner a:hover {
    text-decoration: underline;
}

/* RESPONSIVE ------------------------------------------------- */

@media (min-width: 640px) {
    /* ab hier 3 Spalten: die 3 oben stehen genau über den 3 unten */
    .panel-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-inner {
        padding-top: 8rem;
        padding-bottom: 5rem;
    }
}

@media (min-width: 768px) {

    .hero-inner {
        flex-direction: row;
        justify-content: flex-end;
        align-items: flex-end;
    }

    .hero-left {
        max-width: 420px;
    }

    .section-inner-split {
        flex-direction: row;
        align-items: center;
    }

    .section-inner-reverse {
        flex-direction: row-reverse;
    }

}

@media (min-width: 1024px) {
    h2 {
        font-size: 2.4rem;
    }

    .hero-tagline {
        font-size: 2.8rem;
    }

    .hero-card {
        max-width: 360px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 2rem 0;
        background-position: center top;
    }

    .hero-card {
        max-width: 90%;
        padding: 1rem 1.4rem;
        margin-top: 2rem;
        margin-bottom: -4rem;
    }

    .hero-inner {
        justify-content: center;
    }
}

/* Vision-Hintergrund */

#vision {
    background-color: #fff !important;
    color: #000;
}

/* ============================================
   RESPONSIVE ERWEITERUNGEN (Layout beibehalten)
   ============================================ */

/* <= 1024px: kleinere Laptops / Tablets quer */
@media (max-width: 1024px) {

  /* Hero: Karte nicht so brutal nach rechts geschoben */
  .hero-inner {
    justify-content: center;
    align-items: flex-end;
  }

  .hero-card {
    max-width: 420px;
    margin-right: 0;
    margin-bottom: -10px;
  }

  /* Panels etwas „zahmer“, aber links/rechts noch sichtbar */
  .panel-first {
    margin-left: -6rem;
    padding: 2.5rem 2rem 3rem calc(6rem + var(--content-start));
  }

  .panel-second {
    margin-right: -6rem;
    padding: 2.5rem 8rem 3rem calc(var(--content-start) + 1rem);
  }

  #standorte .section-inner-split,
  #service .section-inner-split,
  #kontakt .section-inner-split {
    gap: 2rem;
  }

  #standorte .img-smartphone,
  .img-service {
    max-width: 100%;
  }
}

/* <= 768px: Tablets hoch / große Phones */
@media (max-width: 768px) {

  /* Typo etwas runterdrehen */
  #vision h2,
  #vorteile h2,
  #ablauf h2,
  #standorte h2,
  #service h2,
  #kontakt h2 {
    font-size: 38px;
  }

  #vision p,
  #vorteile p,
  #ablauf p,
  #standorte p,
  #service p,
  #kontakt p {
    font-size: 18px;
  }

  .section-inner {
    padding: 3rem 1.5rem;
  }

  /* Split-Layouts untereinander statt nebeneinander */
  .section-inner-split {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Panels: keine großen Negativ-Margins mehr, volle Breite */
  .panel-first,
  .panel-second {
    margin-left: 0;
    margin-right: 0;
    padding: 2rem 1.5rem 2.5rem 1.5rem;
  }

  .panel-grid-3 {
    grid-template-columns: 1fr;
  }

  /* Service-Bild nicht nach links verschoben */
  #service .split-media {
    left: 0;
  }

  /* Deko-Rahmen auf kleineren Screens ausblenden */
  #standorte .split-media::before,
  #standorte .split-media::after,
  #service .split-media::before,
  #service .split-media::after,
  .contact-form::before,
  .contact-form::after {
    display: none;
  }

  /* Kontakt: etwas kompakter */
  #kontakt .section-inner-split {
    align-items: stretch;
  }

  #kontakt .split-form {
    width: 100%;
  }
}

/* <= 480px: Smartphones */
@media (max-width: 480px) {

  body {
    font-size: 16px;
  }

  .top-bar {
    padding: 0.8rem 1rem;
  }

  .logo img {
    max-height: 32px;
  }

  /* Hero: nicht fix hoch, Card schön mittig */
  .hero {
    height: auto;
    min-height: 0;
    padding: 2.5rem 0 2rem;
    background-position: center top;
  }

  .hero-inner {
    justify-content: center;
    align-items: flex-end;
  }

  .hero-card {
    max-width: 100%;
    margin: 0 auto -2rem;
    padding: 1.2rem 1.4rem;
  }

  .hero-card h1 {
    font-size: 1.6rem;
  }

  .hero-card p {
    font-size: 0.95rem;
  }

  /* Überschriften auf Handy nicht zu riesig */
  #vision h2,
  #vorteile h2,
  #ablauf h2,
  #standorte h2,
  #service h2,
  #kontakt h2 {
    font-size: 30px;
  }

  /* Greeting etwas kleiner auf Handy */
  #kontakt .greeting {
    font-size: 28px;
  }
}

/* Service & Kontakt: mobile Optimierung */
@media (max-width: 768px) {

  /* SERVICE: Bild unter Text und Button */
  #service .section-inner-split {
    flex-direction: column;   /* Elemente untereinander */
  }

  /* Reihenfolge umdrehen: erst Text/CTA, dann Bild */
  #service .split-text {
    order: 1;
  }

  #service .split-media {
    order: 2;
    align-self: center;       /* Bild mittig */
  }

  /* KONTAKT: ähnlich zentriert wie STANDORTE */
  #kontakt .section-inner-split {
    flex-direction: column;
    align-items: center;         /* beide Blöcke zentriert im Container */
    text-align: left;            /* Text trotzdem linksbündig lassen */
  }

  #kontakt .split-text,
  #kontakt .split-form {
    width: 100%;
    max-width: 480px;            /* schmale, hübsche Spalte */
  }

  #kontakt .contact-form {
    width: 100%;
  }
}

/* ============================================
   MOBILE – SERVICE & KONTAKT zentrieren wie STANDORTE
   ============================================ */
@media (max-width: 768px) {

  /* SERVICE – zentrieren wie Standorte */
  #service .section-inner-split {
    flex-direction: column;
    align-items: center;        /* zentriert den Inhalt */
    text-align: center;         /* Text mittig */
  }

  #service .split-text,
  #service .split-media {
    width: 100%;
    max-width: 450px;          /* schlanke Spalten */
  }

  #service .split-media {
    order: 2;                  /* Bild unter Text */
  }

  #service .split-text {
    order: 1;
  }

  /* KONTAKT – genauso zentrieren */
  #kontakt .section-inner-split {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  #kontakt .split-text,
  #kontakt .split-form,
  #kontakt .contact-form {
    width: 100%;
    max-width: 450px;
  }
}

/* =================================================
   MOBILE – ALLE SECTIONS ZENTRIEREN (max-width: 768px)
   ================================================= */
@media (max-width: 768px) {

  /* Sektion-Container immer untereinander & zentriert */
  #vision .section-inner,
  #vorteile .section-inner,
  #ablauf .section-inner,
  #standorte .section-inner,
  #service .section-inner,
  #kontakt .section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;      /* Zentrierung im Container */
    text-align: center;       /* Text mittig */
  }

  /* Grids (Deine Vorteile / So funktioniert's) mittig */
  #vorteile .panel-grid,
  #ablauf .panel-grid {
    justify-items: center;
  }

  /* Panels – volle Breite auf Mobile */
  .panel-first,
  .panel-second,
  .panel {
    margin-left: 0;
    margin-right: 0;
    padding: 2rem 1.6rem 2.5rem 1.6rem !important;
  }

  /* Split-Layouts (z.B. Standorte / Service / Kontakt) */
  .section-inner-split {
    flex-direction: column;
    align-items: center;   /* Schlüsselpunkt! */
    text-align: center;
  }

  /* Einheitliche max-Breite der Content-Spalten */
  #vision .split-text,
  #vorteile .split-text,
  #ablauf .split-text,
  #standorte .split-text,
  #service .split-text,
  #kontakt .split-text,
  #kontakt .split-form {
    width: 100%;
    max-width: 450px;
  }

  /* Bilder im Split-Bereich */
  #standorte .split-media,
  #service .split-media,
  #kontakt .split-media {
    order: 2;                /* unter dem Text */
    margin-top: 1.5rem;
    align-self: center;
  }
}

@media (max-width: 768px) {
    #standorte .split-text p {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}


/* Tablets / Phones → variable Höhe erlaubt */
@media (max-width: 1024px) {
  .hero {
    height: auto;
    padding-bottom: 4rem;  /* Platz für Card */
  }
}

/* HERO-LOGO-ELEMENTE im Responsive ausblenden */
@media (max-width: 768px) {
    .hero-logo::before,
    .hero::after {
        display: none !important;
        content: none !important;
    }
}

/* ============================================
   MOBILE HERO – gezielte Anpassungen
   ============================================ */

  /* Hero-Grafik weiter nach links schieben */
@media (max-width: 640px) {
    .hero {
        background-position: calc(50% - 200px) center; /* 2cm nach links geschoben */
    }

  /* Logo 20% kleiner */
  .hero-logo img {
    max-width: 60% !important;   /* vorher 100% → 20% kleiner */
  }

  /* Card weiter unten schieben */
  .hero-card {
    margin-top: 14rem !important;   /* mehr Abstand zum Logo */
    margin-bottom: -80px; !important;              /* kein Overlap mehr */
    max-width: 90%;
  }
}

/* HERO-LOGO: nur im Responsive 15px höher + weiße Transparenz direkt hinter dem Bild */
@media (max-width: 768px) {

    /* Wrapper eng um das Logo-Bild */
    .hero-logo-inner {
        position: relative;
        display: inline-block;
        top: -25px;  /* Logo 15px nach oben */
    /*     background: rgba(255, 255, 255, 0.4);  /* weiße Transparenz nur hinter dem Logo */*/
        border-radius: 5px;  /* optional, kannst du reduzieren */
    }

    /* Padding vom Bild auf Mobile entfernen, damit der Hintergrund NICHT riesig wird */
    .hero-logo img {
        padding: 0;
        display: block;
    }
}

/* Standard: nur Desktop-Logo sichtbar */
.hero-logo .logo-mobile {
    display: none;
}
.hero-logo .logo-desktop {
    display: block;
}

@media (max-width: 768px) {
    .hero-logo-inner img {
        content: url("../img/logo-ecopro_gross.png"); /* NUR im Responsive! */
        top: 0px;  /* wie gewünscht */
		left: 5px;
        position: relative;
    }
}

/* RESPONSIVE – beide Panels gleich breit */
@media (max-width: 768px) {
    .panel-first h2
	{
        min-width: 230px;
    }
}

@media (max-width: 1440px) {
/* türkiser Rahmen unten links */
	.hero::after 
	{
		content: "";
		position: absolute;
		width: 250px;
		height: 250px;
		border: 30px solid #37b4c8;
		border-top: none;
		border-right: none;
		bottom: 62px;
		left: 0px;
	}
}

@media (max-width: 930px) {
/* türkiser Rahmen unten links */
	.hero::after 
	{
		content: "";
		position: absolute;
		width: 250px;
		height: 250px;
		border: 30px solid #37b4c8;
		border-top: none;
		border-right: none;
		bottom: 78px;
		left: 0px;
	}
	
	  /* Card weiter unten schieben */
	.hero-card 
	{
		margin-top: 14rem !important;   /* mehr Abstand zum Logo */
		margin-bottom: -180px; !important;              /* kein Overlap mehr */
		max-width: 40%;
	}
	
	.hero 
	{
        background-position: calc(50% - 280px) center; /* 2cm nach links geschoben */
    }
	
	.inter-vision 
	{
		margin-left: 2.0rem
	}
}

@media (max-width: 430px) {
    .hero {
        background-position: calc(50% - 180px) center; /* 2cm nach links geschoben */
    }

  /* Logo 20% kleiner */
  .hero-logo img {
    max-width: 60% !important;   /* vorher 100% → 20% kleiner */
  }

  /* Card weiter unten schieben */
  .hero-card {
    margin-top: 14rem !important;   /* mehr Abstand zum Logo */
    margin-bottom: -80px; !important;              /* kein Overlap mehr */
    max-width: 90%;
  }
}