/* ============================================= */
/* GLOBAL                                         */
/* ============================================= */

html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: #0a1628;
  color: #ffffff;
}

/* ============================================= */
/* HEADER CLEAN BUILD                             */
/* ============================================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;

  background: rgba(10, 27, 55, 0.45); /* stark transparent */
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 60px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo {
  height: 92px;
  width: auto;
}

.claim-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.claim {
  font-size: 16px;
  opacity: 0.95;
}

.orb {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3ab2ff, #1478ff);
  box-shadow: 0 0 10px rgba(58,178,255,0.9);
}

/* NAVIGATION */
.nav {
  display: flex;
  gap: 26px;
}

.nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  opacity: 0.9;
  transition: 0.25s;
}

.nav a:hover {
  opacity: 1;
}

/* ============================================= */
/* HERO SECTION                                   */
/* ============================================= */

.hero {
  position: relative;
  height: auto;        /* wichtig */
  min-height: 88vh;
  margin-top: 78px;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* weniger Himmel, mehr Stadt */
  object-position: center 40%;
}

/* Gradient nur unten */
.hero-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 33%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    #0a1628 100%
  );
}

/* INNER LAYOUT */
.hero-inner {
  position: absolute;
  top: 12%;   /* Beide Elemente in den Himmel hochgezogen */
  width: 100%;
  max-width: 1200px;
  left: 50%;
  transform: translateX(-50%);

  padding: 0 60px;

  display: flex;
  justify-content: space-between;
  align-items: center; /* Text & Bubble gleiche Höhe */
}

/* ============================================= */
/* TEXT BLOCK                                     */
/* ============================================= */

.hero-text {
  max-width: 600px;
  margin-left: 25px;   /* 👉 HIERMIT rutscht der Text nach rechts */
}

.hero-text h1 {
  font-size: 46px;
  line-height: 1.15;
  margin: 0 0 18px 0;
  text-shadow: 0 3px 12px rgba(0,0,0,0.55);
}

.hero-text p {
  font-size: 20px;
  line-height: 1.45;
  max-width: 600px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
  opacity: 0.95;
}

/* ============================================= */
/* BUBBLE                                         */
/* ============================================= */

.hero-bubble {
  max-width: 420px;
  padding: 28px 34px;

  /* gleiche Farbe wie Header */
  background: rgba(10, 27, 55, 0.50);
  backdrop-filter: blur(18px);

  border-radius: 18px;

  /* Glow + Shadow */
  box-shadow:
    0 10px 35px rgba(0,0,0,0.35),
    0 0 18px rgba(58,178,255,0.35);

  color: #ffffff;
}

.hero-bubble h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 12px 0;
}

.hero-bubble p {
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
}
/* Right container: menu + language */
.header-right {
  display: flex;
  align-items: center;
  gap: 22px; /* Abstand Menü <-> DE/EN */
}

/* Language switch styling */
.lang-switch {
  font-size: 12px;
  letter-spacing: 0.5px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  color: white;
}

.lang-switch .lang {
  cursor: pointer;
  transition: 0.2s ease;
}

.lang-switch .lang:hover {
  opacity: 1;
}

.lang-switch .active {
  font-weight: 600;
  opacity: 1;
}

.lang-switch .lang-sep {
  margin: 0 4px;
  opacity: 0.6;
}
/* ============================================= */
/* DNA SECTION – premium glass cards             */
/* ============================================= */

.dna-section {
  padding: 40px 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
  color: #ffffff;
}

.section-title {
  font-size: 34px;
  margin-bottom: 40px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.35);
}

.dna-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Edles Glasmorphism */
.glass-deep {
  padding: 32px 36px;
  border-radius: 22px;

  background: rgba(15, 32, 62, 0.45);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.10);

  box-shadow: 
    0 18px 40px rgba(0,0,0,0.45),
    0 0 26px rgba(63,170,255,0.18);

  transition: 0.3s ease;
}

.glass-deep:hover {
  background: rgba(18, 40, 78, 0.52);
  box-shadow:
    0 22px 50px rgba(0,0,0,0.52),
    0 0 30px rgba(63,170,255,0.26);
}

.glass-deep h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 600;
}

.glass-deep p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.95;
}
/* ============================================= */
/* LEISTUNGEN                                    */
/* ============================================= */

.leistungen-section {
  padding: 40px 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.leistung-card {
  padding: 32px 36px;
  border-radius: 22px;
  text-align: left;
}

.leistung-card h3 {
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 600;
}

.leistung-card p {
  margin: 0;
  font-size: 15px;
  opacity: 0.95;
  line-height: 1.65;
}
/* ============================================= */
/* KI-PROJEKT / PROZESS SECTION                  */
/* ============================================= */

.prozess-section {
  padding: 40px 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.prozess-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

/* Runde Premium-Glass-Bubbles */
.glass-round {
  padding: 36px 26px;
  border-radius: 26px;

  background: rgba(15, 32, 62, 0.45);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255,255,255,0.12);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.45),
    0 0 26px rgba(63,170,255,0.18);

  transition: 0.3s ease;
}

.glass-round:hover {
  background: rgba(18, 40, 78, 0.52);
  box-shadow:
    0 22px 50px rgba(0,0,0,0.52),
    0 0 34px rgba(63,170,255,0.26);
}

.step-number {
  width: 46px;
  height: 46px;
  margin: 0 auto 16px;

  border-radius: 50%;
  background: linear-gradient(135deg, #3ab2ff, #1478ff);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  font-weight: 700;
  color: #ffffff;

  box-shadow: 0 0 12px rgba(63,170,255,0.6);
}

.prozess-step h4 {
  margin: 6px 0 12px;
  font-size: 18px;
  font-weight: 600;
}

.prozess-step p {
  margin: 0;
  font-size: 15px;
  opacity: 0.95;
  line-height: 1.55;
}
/* ============================================= */
/* WEB-PROJEKT – Premium Single Card             */
/* ============================================= */

.web-section {
  padding: 40px 60px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.web-card {
  padding: 50px 55px;
  border-radius: 26px;
  margin-top: 40px;
  color: #ffffff;
}

/* Premium Glass Variant */
.glass-premium {
  background: rgba(15, 32, 62, 0.40);
  backdrop-filter: blur(22px);

  border: 1px solid rgba(255,255,255,0.12);

  box-shadow:
    0 28px 60px rgba(0,0,0,0.55),
    0 0 38px rgba(63,170,255,0.22);
}

.web-intro {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 20px;
  opacity: 0.95;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.web-card p {
  margin: 16px 0;
  font-size: 16px;
  line-height: 1.65;
  opacity: 0.95;
}

.web-list {
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.web-list li {
  font-size: 16px;
  opacity: 0.92;
  line-height: 1.55;
  margin-bottom: 10px;
}

.web-offer {
  margin-top: 28px;
  font-size: 16px;
  opacity: 0.92;
}
/* ============================================= */
/* PROJEKTANFRAGEN – Premium Glass Accordion     */
/* ============================================= */

.projekt-section {
  padding: 40px 60px 100px;
  max-width: 1200px;
  margin: 0 auto;
}

.projekt-sub {
  margin-top: -10px;
  margin-bottom: 40px;
  opacity: 0.85;
}

.projekt-accordion {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Premium Glass Accordion Core */
.glass-accordion {
  padding: 0;
  border-radius: 22px;
  overflow: hidden;

  background: rgba(15, 32, 62, 0.38);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.10);

  box-shadow:
    0 22px 45px rgba(0,0,0,0.45),
    0 0 28px rgba(63,170,255,0.18);

  transition: 0.3s;
}

.glass-accordion summary {
  padding: 22px 28px;
  font-size: 18px;
  cursor: pointer;
  list-style: none;
}

.glass-accordion summary:hover {
  background: rgba(255,255,255,0.06);
}

.glass-accordion summary::-webkit-details-marker {
  display: none;
}

.project-card[open] summary {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* FORM INSIDE */
.project-form {
  padding: 22px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.project-form input,
.project-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;

  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.15);
  color: #ffffff;

  font-size: 14px;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.fee-note {
  margin-top: -4px;
  margin-bottom: 6px;
  font-size: 13px;
  opacity: 0.65;
  line-height: 1.45;
}
<!-- ===================================================== -->
<!-- KONTAKT & FORMULAR                                    -->
<!-- ===================================================== -->
<section class="contact-section">

  <div class="contact-inner">

    <!-- LEFT: FORM -->
    <div class="contact-form">

      <h2>Kontakt & Anfrage</h2>
      <p>Schreiben Sie uns – wir melden uns innerhalb von 24 Stunden.</p>

      <form class="form-grid">

        <div class="form-field">
          <label>Name*</label>
          <input type="text" required>
        </div>

        <div class="form-field">
          <label>E-Mail*</label>
          <input type="email" required>
        </div>

        <div class="form-field full">
          <label>Betreff</label>
          <input type="text">
        </div>

        <div class="form-field full">
          <label>Nachricht*</label>
          <textarea rows="5" required></textarea>
        </div>

        <button class="send-btn">Nachricht senden</button>

      </form>

    </div>

    <!-- RIGHT: MAP (STATIC GOOGLE WITHOUT API) -->
    <div class="contact-map">
      <iframe
        src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2660.1532417578188!2d11.297!3d48.107!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x479ddf3e8c6d7a8f%3A0xa628f812f05a3f6!2sGilching!5e0!3m2!1sde!2sde!4v0000000000"
        allowfullscreen=""
        loading="lazy">
      </iframe>
    </div>

  </div>

</section>
/* ===================================================== */
/* PRICING SECTION                                       */
/* ===================================================== */

.pricing-section {
  max-width: 1200px;
  margin: 40px auto 80px;
  padding: 0 40px;
}

.pricing-section h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.pricing-intro {
  opacity: 0.8;
  font-size: 17px;
  margin-bottom: 40px;
}

.pricing-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1;
  min-width: 260px;
  padding: 30px 34px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;

  box-shadow:
    0 12px 24px rgba(0,0,0,0.25),
    inset 0 0 20px rgba(255,255,255,0.04);
}

.pricing-card h3 {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 14px;
}

.price {
  font-size: 28px;
  margin: 0 0 10px 0;
  color: #3ab2ff;
  font-weight: 600;
}

.desc {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.55;
}

.pricing-hint {
  margin-top: 24px;
  opacity: 0.75;
  font-size: 15px;
}
.pricing-section {
  padding: 40px 0 80px;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.pricing-section h2 {
  font-size: 38px;
  margin-bottom: 10px;
}

.pricing-intro {
  opacity: 0.8;
  font-size: 17px;
  margin-bottom: 40px;
}

.pricing-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1;
  min-width: 260px;
  padding: 30px 34px;

  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;

  box-shadow:
    0 12px 24px rgba(0,0,0,0.25),
    inset 0 0 20px rgba(255,255,255,0.04);
}

.price {
  font-size: 28px;
  margin: 0 0 10px 0;
  color: #3ab2ff;
  font-weight: 600;
}

.pricing-hint {
  margin-top: 24px;
  opacity: 0.75;
  font-size: 15px;
}
/* ============================================= */
/* KONTAKT-BEREICH                               */
/* ============================================= */

.contact-section {
  padding: 60px 0 120px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.contact-section h2 {
  font-size: 38px;
  margin-bottom: 12px;
}

.contact-intro {
  font-size: 17px;
  opacity: 0.8;
  margin-bottom: 50px;
}

.contact-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

/* ================= FORM-CARD ================= */
.contact-form-card {
  flex: 1;
  min-width: 340px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 34px;
  backdrop-filter: blur(16px);

  box-shadow:
    0 12px 35px rgba(0,0,0,0.35),
    inset 0 0 25px rgba(255,255,255,0.04);
}

.contact-form-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

/* FORM ELEMENTS */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;

  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  color: white;

  font-size: 16px;
  outline: none;
  transition: 0.25s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #3ab2ff;
  background: rgba(255,255,255,0.08);
}

.form-row {
  display: flex;
  gap: 18px;
}

.form-row input {
  flex: 1;
}

.contact-btn {
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #3ab2ff, #1478ff);
  color: white;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(20,120,255,0.4);
  cursor: pointer;
  transition: 0.25s;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(20,120,255,0.55);
}

/* ================= INFO-CARD ================= */
.contact-info-card {
  flex: 1;
  min-width: 340px;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 34px;
  backdrop-filter: blur(16px);

  box-shadow:
    0 12px 35px rgba(0,0,0,0.35),
    inset 0 0 25px rgba(255,255,255,0.04);
}

.contact-details {
  opacity: 0.82;
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-map img {
  width: 100%;
  border-radius: 14px;
  opacity: 0.9;
  box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}
.privacy-map {
  position: relative;
}

.map-overlay-hint {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(10,27,55,0.8);
  font-size: 12px;
  opacity: 0.9;
}
/* ============================================= */
/* FOOTER                                        */
/* ============================================= */

.site-footer {
  background: #050b14;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;

  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 260px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-logo {
  height: 52px;
  width: auto;
}

.footer-claim {
  font-size: 14px;
  opacity: 0.9;
}

.footer-column h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.footer-text {
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-text a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(58,178,255,0.4);
}

.footer-text a:hover {
  border-color: rgba(58,178,255,0.9);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);

  text-align: center;     /* Neuer Boss */
  opacity: 0.75;
  font-size: 14px;
  color: #ccd6e6;
}

.footer-bottom-right {
  display: block;
  margin-top: 6px;        /* kleine elegante Abtrennung */
}


/* Mobile Footer */
@media (max-width: 800px) {
  .footer-inner {
    padding: 0 20px;
  }

  .footer-bottom {
    padding: 0 20px;
    flex-direction: column;
  }

  .footer-bottom-right {
    text-align: left;
  }
}
/* ============================================= */
/* LEGAL PAGES (Impressum / Datenschutz)         */
/* ============================================= */

.legal-page {
  background: #050b14;
  color: #ffffff;
}

.legal-container {
  max-width: 900px;
  margin: 60px auto 80px;
  padding: 0 20px;
}

.legal-container h1 {
  font-size: 34px;
  margin-bottom: 20px;
}

.legal-container h2 {
  font-size: 20px;
  margin-top: 26px;
  margin-bottom: 8px;
}

.legal-container p,
.legal-container li {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

.legal-note {
  margin-top: 30px;
  font-size: 13px;
  opacity: 0.7;
}
@media (max-width: 900px) {
  .header-inner {
    padding: 10px 16px;
  }

  .logo {
    height: 70px;
  }

  .claim {
    font-size: 13px;
  }

  .nav {
    display: none; /* später: Burger-Menü möglich */
  }

  .lang-switch {
    font-size: 11px;
  }

  .hero {
    height: auto;
    margin-top: 80px;
  }

  .hero-inner {
    position: relative;
    top: 0;
    transform: none;
    padding: 40px 20px 80px;
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }

  .hero-text {
    margin-left: 0;
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-bubble {
    max-width: 100%;
  }
}
/* FOOTER BASE */
.site-footer {
  margin-top: 100px;
  padding: 80px 0 40px 0;

  background: linear-gradient(
    to bottom,
    rgba(10, 27, 55, 0.25) 0%,
    rgba(10, 27, 55, 0.55) 50%,
    rgba(10, 27, 55, 1) 100%
  );

  border-top: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}

/* INNER WRAPPER */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}

/* COLUMNS */
.footer-col {
  flex: 1;
}

/* LOGO & CLAIM */
.footer-logo {
  width: 150px;
  margin-bottom: 10px;
  opacity: 0.95;
}

.footer-claim {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 20px;
}

/* TEXT */
.footer-text {
  color: #ccd6e6;
  line-height: 1.6;
  margin: 0;
  opacity: 0.85;
}

.footer-text a {
  color: #4da3ff;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}

/* HEADLINES */
.site-footer h4 {
  margin-bottom: 14px;
  font-size: 17px;
  font-weight: 600;
  color: white;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);

  font-size: 13px;
  opacity: 0.65;
}

.footer-bottom-sub {
  margin-top: 6px;
  font-size: 12px;
  opacity: 0.7;
}
/* ============================================= */
/* MOBILE OPTIMIERUNG – CLARITY Intelligence     */
/* ============================================= */

@media (max-width: 768px) {

  /* ---------------- HEADER ---------------- */
  .header-inner {
    padding: 12px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .header-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .logo {
    height: 54px;
  }

  .claim-wrap {
    gap: 6px;
  }

  .claim {
    font-size: 13px;
    line-height: 1.2;
  }

  .orb {
    width: 20px;
    height: 20px;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
  }

  .nav {
    display: none; /* später Mobile Menu */
  }

  /* ---------------- HERO ---------------- */
  .hero {
    height: auto;
    padding-bottom: 40px;
  }

  .hero-bg {
    height: 70vh;
    object-position: center 60%; /* mehr Stadt, weniger Himmel */
  }

  .hero-inner {
    position: relative;
    top: -35px;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
  }

  /* Text-Block */
  .hero-text {
    margin-left: 0;
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 1.4;
  }

  /* Bubble */
  .hero-bubble {
    margin-top: 20px;
    max-width: 100%;
    padding: 20px 24px;
  }

  /* ---------------- SECTION DNA ---------------- */
  .section {
    padding: 60px 20px;
  }

  /* ---------------- FOOTER ---------------- */
  .site-footer {
    padding: 50px 20px;
    text-align: left;
  }

  .footer-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-column {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}
/* ========================================================= */
/*     MOBILE FINAL FIX – CLARITY INTELLIGENCE               */
/* ========================================================= */

@media (max-width: 768px) {

  /* HEADER -------------------------------------------- */
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 20px;
    gap: 6px;
  }

  .header-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .logo {
    height: 48px;
  }

  .claim-wrap {
    flex-direction: row;
    gap: 6px;
    margin-top: 2px;
  }

  .claim {
    font-size: 13px;
    line-height: 1.2;
  }

  .orb {
    width: 18px;
    height: 18px;
  }

  /* Sprache rechts */
  .header-right {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .lang-switch {
    font-size: 13px;
    opacity: 0.9;
    margin-top: -4px;
  }

  /* HERO ----------------------------------------------- */
  .hero {
    height: auto;
    padding-bottom: 40px;
  }

  .hero-bg {
    height: 68vh;
    object-position: center 58%; /* mehr Stadt */
  }

  .hero-inner {
    top: -20px;
    padding: 0 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Text */
  .hero-text h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 1.4;
    max-width: 100%;
  }

  /* BUBBLE ------------------------------------------- */
  .hero-bubble {
    width: 100%;
    margin-top: 20px;
    padding: 22px 26px;

    background: rgba(10, 27, 55, 0.55);
    backdrop-filter: blur(16px);

    border-radius: 16px;
  }

}
/* ============================================= */
/* MOBILE OPTIMIZATION – CLARITY Intelligence    */
/* ============================================= */

@media (max-width: 768px) {

  /* ----------------------------- */
  /* HEADER & LOGO                 */
  /* ----------------------------- */
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 10px;
  }

  .header-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .logo {
    height: 54px;
  }

  .claim-wrap {
    gap: 6px;
  }

  .claim {
    font-size: 14px;
  }

  .orb {
    width: 20px;
    height: 20px;
    box-shadow: 0 0 8px rgba(58,178,255,0.7);
  }

  /* Language Switch unter Menü */
  .header-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
  }

  /* ----------------------------- */
  /* NAVIGATION                    */
  /* ----------------------------- */
  .nav {
    flex-wrap: wrap;
    gap: 12px 22px;
    font-size: 15px;
    padding-top: 6px;
  }

  .nav a {
    font-size: 15px;
  }

  /* ----------------------------- */
  /* HERO AREA                     */
  /* ----------------------------- */
  .hero {
    height: auto;          /* Kein abgeschnittenes Bild mehr */
    margin-top: 140px;      /* Platz für mobilen Header */
    padding-bottom: 40px;
  }

  .hero-bg {
    height: 62vh;           /* Mobil weniger hoch */
    object-position: center 28%;
  }

  .hero-inner {
    position: relative;
    flex-direction: column;
    padding: 0 24px;
    gap: 22px;
    top: -10px;
  }

  .hero-text h1 {
    font-size: 32px;
    line-height: 1.18;
    text-shadow: 0 3px 10px rgba(0,0,0,0.45);
  }

  .hero-text p {
    font-size: 17px;
  }

  .hero-bubble {
    max-width: 100%;
    padding: 20px;
    font-size: 15px;
  }

  /* ----------------------------- */
  /* SECTION HEADLINES MOBILE      */
  /* ----------------------------- */
  h2, .section-title {
    font-size: 32px !important;
    line-height: 1.22 !important;
  }

  /* GRID OPTIMIERUNG */
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr !important;
  }

  /* Footer mobile */
  .footer-inner {
    flex-direction: column;
    gap: 30px;
    padding: 30px 24px;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}
/* ============================================= */
/* MOBILE FIXES                                  */
/* ============================================= */

@media (max-width: 768px) {

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 22px;
    gap: 10px;
  }

  .header-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .logo {
    height: 70px;
  }

  .claim-wrap {
    gap: 6px;
  }

  .orb {
    width: 22px;
    height: 22px;
  }

  .nav {
    display: none; /* Navigation ausblenden (kommt über Burger Menu wieder) */
  }

  .lang-switch {
    font-size: 13px;
    opacity: 1;
  }

}
@media (max-width: 768px) {

  .hero {
    height: auto;
    padding-bottom: 40px;
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 22px;
    gap: 30px;
    top: 120px; /* genug Platz unter Header */
  }

  .hero-text h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 18px;
  }

  .hero-bubble {
    max-width: 100%;
    padding: 22px;
    margin-top: 10px;
  }

  .hero-bg {
    object-position: center 55%;
    height: 60vh;
  }

}
@media (max-width: 768px) {

  section {
    padding: 40px 22px !important;
  }

  h2, h3 {
    font-size: 28px;
  }

  .card {
    width: 100%;
    margin-bottom: 22px;
  }

}
/* ===================================================== */
/* MOBILE HEADER FIX                                      */
/* ===================================================== */

@media (max-width: 768px) {

  .header-inner {
    padding: 12px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .logo {
    height: 48px !important;
  }

  .claim-wrap {
    margin-top: -4px;
    gap: 6px;
  }

  .claim {
    font-size: 14px;
  }

  .orb {
    width: 18px;
    height: 18px;
  }

  .header-right {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .nav {
    display: none; /* bis wir ein Mobile-Menü bauen */
  }

  .lang-switch {
    font-size: 14px !important;
    margin-left: auto;
    margin-top: -4px;
  }

  .hero {
    margin-top: 110px !important; /* verhindert Überschneidung */
  }

  .hero-inner {
    padding: 0 20px;
    top: 16%;
  }

  .hero-text h1 {
    font-size: 34px;
    line-height: 1.12;
  }
}
@media (max-width: 768px) {

  /* verhindert horizontales Scrollen */
  body, html {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Hero-Inner komplett neu positionieren */
  .hero-inner {
    position: relative !important;
    left: 0 !important;
    transform: none !important;
    max-width: 100% !important;
    padding: 0 20px !important;
    display: block !important;
  }

  /* Text 100% Breite */
  .hero-text {
    max-width: 100% !important;
    margin: 0 !important;
  }

  /* Bubble 100% Breite */
  .hero-bubble {
    max-width: 100% !important;
    margin-top: 20px !important;
  }

  /* Der Hintergrund MUSS containen */
  .hero-bg {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center top !important;
  }
}
/* ============================================= */
/* FINAL MOBILE FIX – NO MORE HORIZONTAL SCROLL */
/* ============================================= */
@media (max-width: 768px) {

  html, body {
    overflow-x: hidden !important;
    max-width: 100% !important;
    position: relative;
  }

  /* HERO FIX */
  .hero {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    height: auto !important;
  }

  .hero-bg {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
    object-position: center top !important;
    display: block !important;
  }

  .hero-inner {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 22px !important;

    left: 0 !important;
    transform: none !important;
    position: relative !important;
  }

  .hero-text {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 20px 0 !important;
  }

  .hero-text h1 {
    font-size: 34px !important;
    line-height: 1.18 !important;
  }

  .hero-bubble {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    margin-top: 18px !important;
    padding: 22px !important;
  }

  /* GENERAL WIDTH FIX FOR ALL SECTIONS */
  section, .content-block, .card, .pricing-box, .step-box {
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  /* PREVENT ANY CONTAINER BREAKOUT */
  * {
    box-sizing: border-box;
  }
}
.hero {
  position: relative;
  height: auto;        /* wichtig */
  min-height: 88vh;
  margin-top: 78px;
}