/* =========================
   Design Tokens / Theme
   ========================= */
:root {
  --bg: #0e1116;
  --bg-panel: #151a21;
  --text: #e6e9ef;
  --muted: #9aa4b2;
  --accent: #4f8cff;
  --border: #232a35;
  --radius: 8px;
  --max-width: 1100px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

main {
  padding-bottom: 6rem; /* HÃ¶he + Luft */
}

body {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  /* Ein einheitliches Padding fÃ¼r das gesamte Viewport-GefÃ¼hl */
  padding: 1rem; 
  box-sizing: border-box;
}

/* 1. Scrollbar entfernen */
html, body {
    height: 100vh !important;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Keine globale Scrollbar */
    display: flex;
    flex-direction: column;
}

/* =========================
   Reset / Base
   ========================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
}

.card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .15s ease, border-color .15s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

h1 { font-size: 3rem; }
h2 { font-size: 2rem; }
p  { color: var(--muted); line-height: 1.6; }

/* =========================
   Navbar
   ========================= */
.navbar {
  padding: 1.5rem 0;
  position: sticky;
  top: 1rem;
  z-index: 1000;
}

.navbar-outer {
  width: 100%;
  display: flex;
  justify-content: center;
}

.navbar-inner {
    /* Exakte Breite und Zentrierung wie beim Footer */
    width: min(90vw, 1600px) !important;
    margin: 0 auto;
    padding: 0.8rem 2rem !important; /* Etwas flacher fÃ¼r den Header-Look */

    /* Identischer Hintergrund wie Footer (Dark Azure Glass) */
    background: linear-gradient(180deg, rgba(14, 17, 22, 0.95), rgba(8, 10, 14, 0.98)) !important;
    backdrop-filter: blur(12px);
    
    /* Identischer Rahmen & Schatten */
    border: 1px solid rgba(79, 140, 255, 0.15) !important;
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.03);

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

/* 2. Header & Footer (Kein Sticky/Fixed nÃ¶tig, da Flex-Childs) */
.navbar, .site-footer {
  flex-shrink: 0; /* Verhindert, dass Header/Footer gestaucht werden */
  width: 100%;
}

/* LEFT */
.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-brand-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none; /* Entfernt den Unterstrich */
    color: inherit;        /* BehÃ¤lt die Textfarbe bei */
    transition: opacity 0.2s ease;
}

.nav-brand-link:hover {
    opacity: 0.8; /* Subtiles Feedback beim Hover */
}

.nav-logo {
    height: 36px;
    width: auto;
    display: block;
}

.nav-brand {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px rgba(79, 140, 255, 0.3);
}

.brands-section {
  padding: 80px 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.brand-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 40px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, background 0.3s;
}

.brand-card:hover {
  border-color: rgba(79, 140, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.brand-card.upcoming {
  opacity: 0.5;
  pointer-events: none;
}

.brand-label {
  display: block;
  font-size: 12px;
  color: #4f8cff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.brand-card h2 {
  font-size: 28px;
  color: #ffffff;
  margin: 0 0 12px 0;
  font-weight: 600;
}

.brand-suffix {
  color: #4f8cff;
}

.brand-card p {
  font-size: 15px;
  color: #9aa4b2;
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.brand-link {
  font-size: 14px;
  color: #4f8cff;
  letter-spacing: 0.5px;
}

.brand-status {
  display: inline-block;
  font-size: 12px;
  color: #6b7280;
  border: 1px solid #232a35;
  border-radius: 20px;
  padding: 4px 14px;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Password Toggle Icon
   ========================= */
.password-toggle {
    position: absolute;
    right: 10px;
    background: transparent;
    border: none;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: var(--accent);
}

.password-toggle svg {
    width: 20px;
    height: 20px;
}

/* RIGHT */
.nav-right {
  display: flex;
  gap: 1.25rem;
}

.nav-right a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.15s ease;
}

.nav-right a:hover {
  color: var(--text);
}

/* Active / Hover underline (subtle) */
.nav-right a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-right a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
}

.nav-close {
  display: none;
}

.nav-mobile {
  display: flex;
  align-items: center;
  gap: 1rem;
}
/* 1. Der Container braucht eine feste Basis */
.nav-dropdown {
    position: relative;
    display: inline-block;
    padding-bottom: 15px; /* Erzeugt Pufferzone nach unten */
    margin-bottom: -15px; /* Gleicht den Puffer fÃ¼r das Layout wieder aus */
}

/* 2. Der Trigger (Button) */
.dropdown-trigger {
    background: none;
    border: none;
    color: var(--muted);
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

/* 3. Das Dropdown-Fenster */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%; /* Direkt unter der Pufferzone */
    left: 0;
    min-width: 200px;
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    z-index: 1000;
    padding: 0.6rem 0;
    /* Verhindert das SchlieÃŸen durch eine unsichtbare BrÃ¼cke nach oben */
}

/* DIE UNSICHTBARE BRÃœCKE (Wichtig fÃ¼r die StabilitÃ¤t) */
.dropdown-content::before {
    content: "";
    position: absolute;
    top: -15px; /* ÃœberbrÃ¼ckt die LÃ¼cke zum Button */
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

/* 4. Interaktion */
.nav-dropdown:hover .dropdown-content {
    display: block;
    animation: dropdownSlide 0.2s ease-out;
}

.nav-dropdown:hover .dropdown-trigger {
    color: #fff;
}

.nav-dropdown:hover .arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

/* Weicherer Ãœbergang */
@keyframes dropdownSlide {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dropdown-Links */
.dropdown-content a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--muted) !important;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.dropdown-content a:hover {
    background: rgba(79, 140, 255, 0.12);
    color: var(--accent) !important;
    padding-left: 1.8rem; /* Kleiner visueller Effekt beim Hover */
}

@media (max-width: 900px) {

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;

    width: 260px;
    height: 100vh;

    background: var(--bg-panel);
    padding: 5rem 1.5rem 1.5rem;

    display: flex;
    flex-direction: column;
    gap: 1rem;

    transform: translateX(100%); /* ðŸ”¥ auÃŸerhalb */
    transition: transform 0.25s ease;

    box-shadow: -20px 0 40px rgba(0,0,0,0.6);
    z-index: 1000;
  }

  .nav-menu.open {
    transform: translateX(0); /* ðŸ”¥ fÃ¤hrt rein */
  }

  /* CLOSE BUTTON */
  .nav-close {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;

    width: 36px;
    height: 36px;

    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;

    color: var(--text);
    font-size: 1.4rem;
    line-height: 1;

    cursor: pointer;
  }

  .nav-close:hover {
    border-color: var(--accent);
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;

    color: var(--text);
    font-size: 1.4rem;

    cursor: pointer;
  }

  .nav-right {
    gap: 0.75rem;
  }

  .navbar-outer {
    padding: 0 1rem; /* weniger Rand am Handy */
  }
}

/* =========================
   Navbar Right Group
   ========================= */
.nav-right {
  Display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-menu {
  display: flex;
  gap: 1.1rem;
}

.nav-menu a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 0.5rem 0.75rem;
}

.nav-menu a.active {
    color: var(--accent) !important;
}

.nav-menu a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.nav-menu a.active::after {
  width: 100%;
}

/* =========================
   Language Switch
   ========================= */
.lang-switch {
    display: flex;
    gap: 10px;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(79, 140, 255, 0.15); /* Vertikaler Trenner wie im Footer */
    margin-left: 0.5rem;
}

.lang-switch a {
    width: 28px;
    height: 28px;
    border: 1px solid rgba(79, 140, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.lang-switch a:hover, 
.lang-switch a.active {
    border-color: var(--accent);
    background: rgba(79, 140, 255, 0.1);
    box-shadow: 0 0 10px rgba(79, 140, 255, 0.2);
}

.lang-switch img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

/* =========================
   Footer
   ========================= */
.site-footer {
    width: 100%;
    margin-top: auto; /* DrÃ¼ckt den Footer ans Ende der Seite */
    padding: 3rem 0; /* Mehr Luft oben/unten */
    position: relative;
    z-index: 100;
    pointer-events: none;
}

.footer-outer {
    display: flex;
    justify-content: center;
    width: 100%;
    pointer-events: auto; /* Footer-Inhalt wieder klickbar */
}

.footer-inner {
    width: min(90vw, 1600px) !important;
    padding: 1.25rem 2rem !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: linear-gradient(180deg, rgba(14, 17, 22, 0.95), rgba(8, 10, 14, 0.98)) !important;
    border: 1px solid rgba(79, 140, 255, 0.12) !important;
    border-radius: 12px !important;
    gap: 1rem;
    flex-direction: column !important;
    gap: 0.75rem !important;
}

/* Obere Zeile: Space-Between fÃ¼r die Breite */
.footer-row-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Untere Zeile: Zentriert und dezent */
.footer-row-bottom {
    display: flex;
    justify-content: center;
    width: 100%;
    border-top: 1px solid rgba(79, 140, 255, 0.1); /* Feine Trennlinie */
    padding-top: 0.75rem;
}

.footer-contact-bar {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--muted);
    align-items: center;
}

.footer-contact-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.footer-contact-info a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-info a:hover {
    color: var(--accent);
}

/* Die vertikalen Trennstriche */
.v-divider {
    width: 1px;
    height: 14px;
    background: rgba(79, 140, 255, 0.2);
}

/* Azure Brand Text */
.brand-text {
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* Subtiler Glow */
    text-shadow: 0 0 10px rgba(79, 140, 255, 0.3);
    color: #fff !important;
}

.copy-symbol {
    color: var(--muted);
    font-size: 0.8rem;
}

/* Links & Interaktion */
.footer-inner a {
    color: var(--muted);
    text-decoration: none;
    transition: all 0.2s ease;
}

/* Erste Zeile wie Header */
.footer-row-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
}

/* Zweite Zeile */
.footer-row-info {
  display: flex;
  justify-content: center;
  gap: 0.5rem;

  font-size: 0.85rem;
  color: var(--muted);
}

/* Brand Link */
.footer-brand {
  color: var(--text);
  text-decoration: none;
}

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

/* Left links */
.footer-left {
  display: flex;
  gap: 1.25rem;
  justify-self: start;
  text-align: left;
}

.footer-left a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-left a:hover {
  color: var(--text);
}

/* Center text */
.footer-center {
  position: static;
  left: 50%;
  transform: none;
  font-size: 0.9rem;
  color: var(--muted);
  justify-self: center;
  text-align: center;
}

.footer-section {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.9rem;
    color: #9aa4b2;
}

/* Brand Highlight in Azure */
.brand-highlight {
    color: #4f8cff; /* var(--accent) */
    font-weight: 600;
}

/* Kontakt-Links dezent, aber bei Hover Azure */
.contact-info a {
    color: #9aa4b2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #4f8cff;
}

/* Mitte: Kontakt */
.contact-section {
    justify-content: center;
    flex-grow: 1; /* Nimmt den Platz in der Mitte ein */
}

.dot-separator {
    margin: 0 10px;
    color: var(--accent);
    font-weight: bold;
    opacity: 0.5;
}

/* Rechts: Die "Interaktions-Zone" */
.legal-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.legal-nav a {
    color: #9aa4b2;
    text-decoration: none;
    transition: all 0.3s;
}
.cookie-trigger {
    background: rgba(79, 140, 255, 0.05);
    border: 1px solid rgba(79, 140, 255, 0.2);
    color: #4f8cff;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cookie-trigger:hover {
    background: rgba(79, 140, 255, 0.15);
    border-color: #4f8cff;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(79, 140, 255, 0.2);
}

.icon-gear {
    font-size: 0.9rem;
}

.legal-nav a:hover {
    color: #ffffff;
}

.content-accent-box.inquiry-style .price-highlight {
    border: 1px dashed var(--border);
    background: rgba(79, 140, 255, 0.02);
    transition: all 0.3s ease;
}

.content-accent-box.inquiry-style .price-highlight:hover {
    border-style: solid;
    border-color: var(--accent);
    background: rgba(79, 140, 255, 0.05);
}

.full-width-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100% !important;
}

.footer-inner a,
.footer-reset-btn {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
}

.azure-link {
    color: var(--accent) !important;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.azure-link:hover {
    text-shadow: 0 0 8px var(--accent);
}

.price-highlight:hover .azure-link .arrow {
    transform: translateX(5px);
}

.address-text {
    color: var(--muted);
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-inner a:hover,
.footer-reset-btn:hover {
    color: var(--accent); /* Deine Akzentfarbe (Blau/Gold) */
    text-decoration: underline;
    color: #fff;
}

.separator {
    color: var(--border);
}

.footer-contact-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    color: var(--muted);
}

.footer-contact-info a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact-info a:hover {
    color: var(--accent);
}

/* Mobile */
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        padding: 1.5rem !important;
        text-align: center;
    }
    .footer-group {
        justify-content: center;
        width: 100%;
    }
    .footer-row-top {
        flex-direction: column;
        gap: 1rem;
    }
    .footer-contact-info {
        flex-direction: column;
        gap: 0.4rem;
    }
    .v-divider { display: none; }
}

/* =========================
   Hero
   ========================= */
.hero {
  padding: 6rem 0 5rem;
  padding-top: 4.5rem;   /* Luft unter Header */
  padding-bottom: 4.5rem; /* Luft vor Footer */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.5rem;
}

.hero-grid {
  width: min(90vw, 1400px);
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  gap: 2.5rem;
}

.hero-inner.hero-grid {
  width: min(90vw, 1400px);
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  gap: 2.5rem;
}

.hero-inner {
  width: min(90vw, 1600px);
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;

  text-align: center;
}

/* Headline â€“ FIX */
.hero-content {
  max-width: 900px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

/* =========================
   Hero Visual (Bild)
   ========================= */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* DAS BILD â€“ HIER PASSIERT DIE MAGIE */
.hero-visual img {
  width: 100%;
  max-width: 900px;
  height: auto;

  border-radius: 22px;

  animation: float 6s ease-in-out infinite;

  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255,255,255,0.04);
}

.hero-panel {
    width: 100%;
    height: 450px; /* Feste HÃ¶he fÃ¼r den Showcase */
    border-radius: 20px;
    overflow: hidden;
    margin-top: 3rem;
    border: 1px solid rgba(79, 140, 255, 0.1);
}

.hero-panel img {
    width: 100%;
    height: 100%;
    /* Dies erzeugt den "Zoom"-Effekt: Das Bild fÃ¼llt das Panel aus, 
       ohne gestaucht zu werden. RÃ¤nder werden abgeschnitten. */
    object-fit: cover; 
    object-position: center; /* Zentriert das Motiv */
    display: block;
}

.hero-panel::after {
  content: '';
  position: absolute;
  inset: -40px;

  background: radial-gradient(
    ellipse at center,
    rgba(79,140,255,0.18),
    transparent 65%
  );

  filter: blur(35px);
  z-index: -1;
}

.hero-panel:hover img {
    transform: scale(1.05);
}

/* Glow */
.hero-visual::before {
  content: '';
  position: absolute;
  inset: -40px;

  background: radial-gradient(
    circle at center,
    rgba(79,140,255,0.22),
    transparent 65%
  );

  filter: blur(30px);
  z-index: -1;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

/* Actions */
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  justify-content: center;
}

.service-cta-wrapper {
    margin-top: 1.8rem;
    display: flex;
    justify-content: flex-start;
}

.price-highlight.placeholder-style {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px; /* Gleiche HÃ¶he wie die normale Preisbox */
}

.value.request-text {
    font-size: 1.1rem;
    color: var(--accent); /* Azure Blau fÃ¼r den Text */
    letter-spacing: 0.5px;
}

.price-highlight.special-action {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(79, 140, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.price-highlight.special-action:hover {
    border-color: var(--accent);
    background: rgba(79, 140, 255, 0.05);
    box-shadow: 0 0 20px rgba(79, 140, 255, 0.15);
    transform: translateY(-2px);
}

.price-highlight.special-action .value svg {
    transition: transform 0.3s ease;
    color: var(--accent);
}

.price-highlight.special-action:hover .value svg {
    transform: translateX(5px);
}


/* Floating */
@keyframes floatPanel {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

/* =========================
   Page Container (global)
   ========================= */
/* 3. Der Main-Bereich als dynamischer Abstandhalter */
.page {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Berechnet die verfÃ¼gbare HÃ¶he abzÃ¼glich Nav (ca. 80px) und Footer (ca. 100px) */
    height: calc(100vh - 180px); 
    padding: 1rem 0;
    min-height: 0; /* Erlaubt dem Kind-Container das Scrollen */
}

/* 4. Der Page-Container */
.page-container {
    /* Identische Breite wie Nav/Footer */
    width: min(90vw, 1600px) !important;
    height: 100%; /* FÃ¼llt den berechneten .page Bereich komplett aus */
    
    background: linear-gradient(180deg, rgba(14, 17, 22, 0.95), rgba(8, 10, 14, 0.98)) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(79, 140, 255, 0.15) !important;
    border-radius: 16px;
    
    /* SCROLL-LOGIK */
    overflow-y: auto;    /* Nur vertikales Scrollen erlaubt */
    overflow-x: hidden;  /* Horizontaler Scroll strikt verboten */
    
    padding: 3.5rem !important;
    box-sizing: border-box;
    box-shadow: 0 12px 35px rgba(0,0,0,0.45);
}

/* Scrollbar innerhalb des Containers dezent stylen */
.page-container::-webkit-scrollbar {
    width: 6px;
}
.page-container::-webkit-scrollbar-track {
    background: transparent;
}
.page-container::-webkit-scrollbar-thumb {
    background: rgba(79, 140, 255, 0.2);
    border-radius: 10px;
}
.page-container::-webkit-scrollbar-thumb:hover {
    background: rgba(79, 140, 255, 0.5);
}

.view-header {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 1rem;
}

.view-header h1 {
    font-size: 2.5rem;
    color: var(--text);
}

.view-content section {
    margin-bottom: 2rem;
}

.view-content h3 {
    color: var(--accent);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.view-content p {
    font-size: 1rem;
    line-height: 1.7;
}

.view-content a {
    color: var(--accent);
    text-decoration: none;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.legal-item {
    font-size: 0.9rem;
    color: var(--muted);
}

.legal-item strong {
    color: var(--text);
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.dispute {
    margin-top: 3rem;
    opacity: 0.7;
}

.dispute h3 {
    font-size: 0.9rem;
}

.view-legal {
    max-width: 900px; /* Bessere Lesebreite fÃ¼r Text */
}

.view-legal h2 {
    font-size: 1.4rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--accent);
}

.view-legal p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.lead {
    font-size: 1.1rem;
    color: var(--text);
    opacity: 0.9;
}

/* About Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Bild etwas schmaler als Text */
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

/* Bild-Container mit Glow-Effekt */
.about-image {
    position: relative;
    z-index: 1;
}

.image-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle at center, rgba(79, 140, 255, 0.15), transparent 70%);
    filter: blur(30px);
    z-index: -1;
}

.about-image .image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    
    /* Die feine Glaskante */
    border: 1px solid rgba(255, 255, 255, 0.08);
    
    /* Schatten fÃ¼r Tiefe */
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    
    background: var(--bg-panel);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    /* Ein leichter Graustufen-Ãœbergang macht es edler */
    filter: grayscale(10%) contrast(105%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.03);
    filter: grayscale(0%) contrast(110%);
}

/* Text-Styling */
.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--text), var(--muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
}
/* Portrait Fokus Effekt */
.profile-focus {
    aspect-ratio: 4 / 5; /* Modernes Portrait-MaÃŸ */
    background: var(--bg-panel);
}

.profile-focus img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    
    /* Verschiebt den Fokus: 50% horizontal, ca. 15% von oben (Gesichtsfokus) */
    object-position: 50% 15%; 
    
    /* Subtiler Vignetten-Effekt direkt auf dem Bild */
    filter: contrast(105%) brightness(95%);
}

/* Aufpolierter Text-Bereich */
.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--muted);
    line-height: 1.8;
    max-width: 60ch; /* Optimale Lesebreite */
}

/* Hover-Effekt: Der Fokus vertieft sich leicht */
.profile-focus:hover img {
    transform: scale(1.08);
    filter: contrast(110%) brightness(100%);
}
/* Marketing-Bereich */
.ideology-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--muted);
    border-left: 1px solid var(--accent);
    padding-left: 2rem;
    margin-top: 1.5rem;
}

/* Business-Card Trennung (Ideologie vs. Kontakt) */
.business-card-footer {
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.business-card-inner {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 20px;
    width: fit-content;
}

.signature-block {
    display: flex;
    flex-direction: column;
}

.owner-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text);
}

.owner-role {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.company-name {
    color: var(--muted);
    font-size: 0.85rem;
}

/* Vertikaler Trenner zwischen Rolle und Mail */
.business-card-inner .divider {
    width: 1px;
    height: 50px;
    background: var(--border);
}

.contact-block {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.owner-mail {
    font-size: 1.1rem;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.owner-mail:hover {
    color: var(--accent);
}

/* Mobile: Karte bricht untereinander */
@media (max-width: 800px) {
    .business-card-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }
    .business-card-inner .divider {
        width: 100%;
        height: 1px;
    }
}
/* Responsive Fix */
@media (max-width: 1000px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-image {
        max-width: 320px;
        margin: 0 auto;
    }

    .owner-signature {
        border-left: none;
        padding-left: 0;
    }
}

.metro-form {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.input-group {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent); /* #FFB347 */
    margin-bottom: 0.5rem;
}

.metro-form input, 
.metro-form textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 1rem;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

.metro-form input:focus, 
.metro-form textarea:focus {
    border-color: var(--accent);
}

.response-message {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.metro-dropzone {
    border: 2px dashed rgba(255, 179, 71, 0.2);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.metro-dropzone.dragover {
    background: rgba(255, 179, 71, 0.05);
    border-color: var(--accent); /* #FFB347 */
}

/* =========================================
   Custom Form Validation (Dark Azure Style)
   ========================================= */
.metro-form input.is-invalid,
.metro-form textarea.is-invalid {   /* <--- HIER: textarea hinzugefÃ¼gt! */
    border-color: #ff4d4d !important;
    background: rgba(255, 77, 77, 0.05) !important;
    box-shadow: 0 0 12px rgba(255, 77, 77, 0.2);
}

.custom-error-msg {
    color: #ff4d4d;
    font-size: 0.75rem;
    margin-top: 6px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
    animation: fadeInError 0.3s ease;
}

.custom-error-msg::before {
    content: "!";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    background: #ff4d4d;
    color: #fff;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: bold;
}

.metro-form textarea {
    font-family: inherit; /* Zwingt die Textarea, deine schÃ¶ne Sans-Serif Schrift zu nutzen, nicht die Browser-Schrift */
    resize: vertical;     /* User dÃ¼rfen das Feld nur nach unten grÃ¶ÃŸer ziehen, nicht zur Seite (zerstÃ¶rt sonst das Grid) */
    width: 100%;
    box-sizing: border-box;
}

@keyframes fadeInError {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.drop-icon {
    width: 40px;
    height: 40px;
    color: var(--accent);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.dropzone-main-text {
    font-size: 0.95rem;
    color: #fff;
    margin: 0;
}

.dropzone-sub-text {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 5px;
}

.selected-files-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.file-chip {
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--accent);
    display: flex;
    justify-content: space-between;
}
.metro-dropzone {
    border: 2px dashed rgba(255, 179, 71, 0.15);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

/* Hover & Drag-Over Effekt */
.metro-dropzone:hover, 
.metro-dropzone.dragover {
    background: rgba(255, 179, 71, 0.04);
    border-color: var(--accent); /* Dein Bernstein-Gold */
    box-shadow: 0 0 20px rgba(255, 179, 71, 0.05);
}

.drop-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin-bottom: 1rem;
    opacity: 0.6;
}

.dropzone-main-text {
    font-size: 1rem;
    color: #fff;
    font-weight: 400;
}

.dropzone-sub-text {
    font-size: 0.8rem;
    color: var(--muted);
    opacity: 0.6;
}

/* Die dynamische Liste */
.selected-files-list {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.file-chip {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--accent);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.selected-files-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.file-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

.file-chip:hover {
    background: rgba(255, 255, 255, 0.06);
}

.file-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.file-name {
    color: #fff;
    font-size: 0.9rem;
}

.file-size {
    color: var(--accent); /* Dein warmes Gold */
    font-size: 0.75rem;
    opacity: 0.7;
}

.remove-file {
    color: #ff4d4d; /* Das gewÃ¼nschte Rot */
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.remove-file:hover {
    transform: scale(1.2);
}

/* ================================
   Pricing Table â€“ Technical / Clean
   ================================ */

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
    font-size: 0.95rem;
    line-height: 1.45;
}

.pricing-table thead th {
    text-align: left;
    font-weight: 600;
    padding: 0.75rem 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    color: #e6e6e6;
}

.pricing-table tbody td {
    padding: 0.75rem 0.75rem;
    vertical-align: top;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    color: #cfd6dd;
}

/* Preise ruhiger, aber klar */
.pricing-table tbody td:nth-child(3),
.pricing-table tbody td:nth-child(4) {
    white-space: nowrap;
    font-weight: 500;
    color: #ffffff;
}

/* Kategorie-Spalte leicht betonen */
.pricing-table tbody td:first-child {
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

/* Letzte Zeile (Preis auf Anfrage) */
.pricing-table tbody tr:last-child td {
    border-bottom: none;
    font-style: italic;
}

/* Hinweis unter Tabelle */
.pricing-note {
    margin-top: 1.2rem;
    font-size: 0.85rem;
    color: #aeb6bf;
}

/* Mobile â€“ stapelbar, aber lesbar */
@media (max-width: 800px) {
    .pricing-table thead {
        display: none;
    }

    .pricing-table,
    .pricing-table tbody,
    .pricing-table tr,
    .pricing-table td {
        display: block;
        width: 100%;
    }

    .pricing-table tr {
        margin-bottom: 1.2rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 0.5rem;
    }

    .pricing-table td {
        padding: 0.3rem 0;
        border: none;
    }

    .pricing-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.75rem;
        color: #9aa3ab;
        margin-bottom: 0.15rem;
    }
}
/* ===== Pricing Table â€“ Final Adjustment ===== */

.pricing-table {
    table-layout: fixed;
}

.pricing-table th:nth-child(1),
.pricing-table td:nth-child(1) {
    width: 18%;
}

.pricing-table th:nth-child(2),
.pricing-table td:nth-child(2) {
    width: 52%;
    color: #cfd6dd;
}

.pricing-table th:nth-child(3),
.pricing-table td:nth-child(3),
.pricing-table th:nth-child(4),
.pricing-table td:nth-child(4) {
    width: 15%;
    text-align: right;
}

/* Beschreibung ruhiger machen */
.pricing-table td:nth-child(2) {
    font-size: 0.92rem;
    line-height: 1.5;
}

/* Mobile sauber */
@media (max-width: 800px) {
    .pricing-table td {
        text-align: left !important;
    }

    .pricing-table td::before {
        font-weight: 600;
        letter-spacing: 0.02em;
    }

    .pricing-table tr {
        background: rgba(255,255,255,0.02);
        padding: 0.6rem 0.6rem;
        border-radius: 6px;
    }
}

/* ================================
   Services â€“ Alternating Layout
   ================================ */

.services-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-row {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
    padding: 4rem 0;
    border: none;
}

.service-image {
    display: flex !important;
    align-items: center !important;    /* Vertikal: Oben/Unten */
    justify-content: center !important; /* Horizontal: Links/Rechts */
    min-height: 100%;
}

.image-wrapper {
    width: 100%;
    max-width: 450px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.service-row.reverse {
    grid-template-columns: 1.1fr 0.9fr;
}

.service-row.reverse .service-image { order: 2; }
.service-row.reverse .service-content { order: 1; }

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); /* Seidiger Zoom */
}

.service-row:nth-child(1) img { object-position: 50% 20%; } /* Core: Fokus auf Kabel */
.service-row:nth-child(4) img { object-position: 50% 10%; } /* Management: Fokus auf Gesicht */

.service-row.right {
    direction: rtl;
}

.service-row.right > * {
    direction: ltr;
}

.image-shadow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
    pointer-events: none;
}

/* TEXT & TRENNLINIE */
.cat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.price-tag {
    margin-top: 2rem;
}

.price-tag span {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
}

.divider-line {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, var(--accent), transparent);
    margin-top: 1rem;
    opacity: 0.4;
}



.service-image {
    display: flex !important;
    align-items: center !important;    /* Vertikal zentriert (Oben/Unten) */
    justify-content: center !important; /* Horizontal zentriert (Links/Rechts) */
    flex: 1;
    min-height: 100%;
}

.service-image:hover img {
    transform: scale(1.1); /* Sanfter Zoom-Effekt beim Hover */
}

.service-row.reverse .service-image { order: 2; }
.service-row.reverse .service-content { order: 1; }

/* Bild-Styling (Kompakt & Zoom) */
.service-image .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.service-row:hover .service-image img {
    transform: scale(1.08);
    filter: brightness(1) contrast(1.1);
}

.content-accent-box {
    border-left: 2px solid var(--accent); /* Azure Blau */
    padding-left: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;               /* Verhindert Verzerrung */
}

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h2 {
    font-size: 1.95rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted);
}

.price-highlight {
    margin-top: 1rem;
    padding: 1.25rem 1.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: fit-content;
    backdrop-filter: blur(4px);
}

.price-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 0.4rem;
}

.price-item:last-child { margin-bottom: 0; }

.price-item .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: var(--muted);
    min-width: 140px;
}

.price-item .value {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
}

/* Spezial-Style fÃ¼r E. Special Services */
.price-highlight.special .value {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--accent);
}

.service-horizontal-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    opacity: 0.25;
    margin: 0.5rem 0;
}

.service-price {
    background: rgba(79, 140, 255, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
    border-left: 3px solid var(--accent);
}

.price-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
}

.price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
}

/* Punkt 3: Saubere horizontale Trennlinie */
.horizontal-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, transparent, var(--border), transparent);
    margin: 1rem 0;
}

.service-row::before, 
.service-row::after {
    display: none;
}

.services-footer {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.services-legal-footer {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* Abstand zwischen den Boxen */
    margin-top: 4rem;
    width: 100%;
}

.legal-notice-box {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    
    /* Der Akzent-Strich, den du markiert hast */
    border: 1px solid var(--border); /* Rundum-Rahmen dezent */
    border-left: 3px solid var(--accent); /* KrÃ¤ftiger Akzent links */
    
    border-radius: var(--radius);
    width: 100%;
    box-sizing: border-box;
    transition: background 0.3s ease;
}

/* Spezieller Style fÃ¼r die Haftung (optional) */
.legal-notice-box.liability-style {
    border-left: 3px solid var(--accent); /* Akzent-Kante links fÃ¼r Struktur */
    background: rgba(79, 140, 255, 0.03);
}

.legal-notice-box:hover {
    background: rgba(79, 140, 255, 0.05);
}

.legal-notice-box .info-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-weight: bold;
    font-family: serif;
    flex-shrink: 0;
}

.legal-notice-box p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
}

/* B2B Badge: Zentriert und kompakt */
.netto-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(79, 140, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.netto-badge .info-icon {
    color: var(--accent);
    font-weight: bold;
    font-family: serif; /* FÃ¼r ein klassisches "i" */
}

.netto-badge p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}
/* Rechtliche Zeile: Zweispaltig und dezent */
.legal-notices-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
}

.legal-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    max-width: 400px;
}

.legal-item .dot {
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 0.6rem;
    flex-shrink: 0;
}

.legal-item p {
    margin: 0;
    font-size: 0.75rem;
    color: var(--muted);
    line-height: 1.4;
}

/* Mobile */
@media (max-width: 900px) {
    .service-row, .service-row.reverse {
        grid-template-columns: 1fr;
        padding: 3rem 0;
    }
    .service-row.reverse .service-image { order: -1; }
}
/* ================================
   Cookie-Banner: Dominant & Zentriert
   ================================ */

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 10, 14, 0.85); /* Tiefes Dunkel */
    backdrop-filter: blur(8px); /* Macht es sofort edler */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.cookie-card {
    width: 100%;
    max-width: 540px; /* Perfekte Breite fÃ¼r Lesbarkeit */
    background: var(--bg-panel);
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) * 1.5); /* Etwas runder als Standard-Boxen */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    animation: cardAppear 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Die Box innen drin (dein content-accent-box) */
.cookie-card .content-accent-box {
    padding: 2.5rem !important; /* Viel mehr Atemraum fÃ¼r den Text */
    background: transparent !important;
    border: none !important;
}

/* Header-Zeile im Banner */
.cookie-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

/* Transparente Status-Box wie Preise in Services */
.cookie-card .price-highlight {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 1.75rem;
    border-radius: 12px;
    display: inline-flex;
    width: fit-content;
}

.cookie-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 exakt gleiche Spalten */
    gap: 12px;
    margin-top: 2rem;
}

/* Falls der Text in den Buttons zu lang ist */
.cookie-actions .btn {
    padding: 0.8rem 0.5rem !important;
    font-size: 0.75rem; /* Etwas kleiner im Banner fÃ¼r die Symmetrie */
}

.cookie-card h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.cookie-card p {
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

/* Animation beim Ã–ffnen */
@keyframes cardAppear {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* Horizontale Azure-Linie vor dem Link */
.service-horizontal-divider {
    height: 1px;
    width: 100%;
    margin: 5rem 0; /* Pro-Abstand fÃ¼r sauberes Atmen */
    position: relative;
    background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
    border: none;
}

/* Der primÃ¤re Glow - direkt auf der Linie */
.service-horizontal-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--accent);
    filter: blur(4px);
    opacity: 0.8;
}

/* Der tiefe Azure-Raum-Glow - macht das Ganze 3D */
.service-horizontal-divider::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 30px;
    background: radial-gradient(ellipse at center, rgba(79, 140, 255, 0.2) 0%, transparent 75%);
    filter: blur(15px);
    pointer-events: none;
}

.legal-link {
    font-size: 0.85rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-link:hover { color: var(--accent); }

.header-container {
  display: flex;
  justify-content: space-between; /* Schiebt Inhalte an die RÃ¤nder (Text links, Flaggen rechts) */
  align-items: center; /* Zentriert sie vertikal */
  width: 100%;
}

/* Spezifische Korrektur fÃ¼r das Profilbild-Format */
.view-about .profile-focus {
    max-width: 400px; /* Etwas kompakter als bei Services */
    aspect-ratio: 4 / 5; /* Professioneller PortrÃ¤t-Schnitt */
}

.view-about .profile-focus img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Verhindert Verzerrung beim PortrÃ¤t */
}

/* Falls die Detail-Hero-Row in About anders atmen muss */
.view-about .detail-hero-row {
    margin-top: 2rem;
    align-items: center; /* Zentriert Bild und Textkachel zueinander */
}

.status-box {
  width: 100%; /* Nimmt die volle verfÃ¼gbare Breite ein */
  box-sizing: border-box; /* Stellt sicher, dass Padding die Box nicht breiter als 100% macht */
  /* Ggf. Flex-Grow nutzen, falls sie in einem Flex-Container liegt */
}

.cookie-header-row {
    display: flex;
    justify-content: space-between; /* Das ist der SchlÃ¼ssel: Schiebt Elemente an die RÃ¤nder */
    align-items: center;            /* Vertikal mittig */
    width: 100%;
    margin-bottom: 15px;            /* Abstand zum Titel */
}

/* --- PUNKT 2 Update: Box Breite anpassen --- */
.full-width-box {
    /* Wir nehmen 100% und ziehen 10px ab */
    width: calc(100% - 10px) !important; 
    
    /* Damit die Box trotzdem schÃ¶n mittig sitzt */
    margin: 20px auto !important;
    
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    
    /* Dein Design */
    background: #151a25;
    border: 1px solid #2a3142;
    border-radius: 8px;
    padding: 15px;
}

/* ==============================================
   ULTIMATIVER FIX (Ãœberschreibt alles andere)
   ============================================== */

/* 1. DIE STATUS-BOX (Muss breit sein) */
/* Wir zwingen sie auf 100% Breite des Elterncontainers */
#cookie-banner .cookie-card .price-highlight,
#cookie-banner .cookie-card .full-width-box {
    width: 100% !important;        /* Ãœberschreibt "fit-content" */
    max-width: 100% !important;    /* Keine Begrenzung */
    display: flex !important;      /* Wichtig! Nicht inline-flex */
    flex-direction: row !important;
    justify-content: space-between !important;
    box-sizing: border-box !important;
    margin: 10px 0x !important;
}

/* 2. SPRACH-SWITCH (Muss klickbar sein) */
/* Wir holen die Buttons ganz nach vorne */
#cookie-banner .cookie-header-row {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 100% !important;
    position: relative !important;
    z-index: 20002 !important; /* Extrem hoch */
}

@media (max-width: 600px) {
    .cookie-card { padding: 2rem; }
    .cookie-actions { flex-direction: column; grid-template-columns: 1fr;}
}

/* ============================================================
   NEVARO IT - HARMONIC BUTTON SYSTEM (Final & Complete)
   ============================================================ */

/* 1. Die Basis (DNA) - Absolut stabilisiert */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    border-radius: var(--radius);
    
    /* Schrift: Klarer, etwas grÃ¶ÃŸer und mit mehr Abstand */
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600; 
    text-transform: uppercase;
    letter-spacing: 1.5px;
    
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* Ein feinerer Rand wirkt oft edler */
    border: 1px solid transparent; 
    white-space: nowrap;
}

.btn-primary {
    background: rgba(79, 140, 255, 0.12);
    color: var(--accent) !important;
    border: 1px solid rgba(79, 140, 255, 0.5); /* Rahmen etwas sichtbarer */
}

.btn-primary:hover:not(:disabled) {
    background: var(--accent);
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(79, 140, 255, 0.3);
}

.btn-primary:hover {
    background: var(--accent);
    color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(79, 140, 255, 0.3);
}

/* 2. SECONDARY: Die AbschwÃ¤chung (Klarer Rand, saubere Schrift) */
.btn-secondary {
    background: transparent;
    color: #e2e8f0 !important; /* Fast WeiÃŸ/Silber fÃ¼r mehr Brillanz */
    border: 1px solid rgba(255, 255, 255, 0.2); /* Klar definierter Rand */
}

.btn-secondary:hover:not(:disabled) {
    border-color: var(--accent);
    color: var(--accent) !important;
    background: rgba(79, 140, 255, 0.05);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent) !important;
    background: rgba(79, 140, 255, 0.05);
}

/* 3. TERTIARY: Edel & Dezent */
.btn-tertiary {
    background: transparent;
    color: #94a3b8 !important;
}

.btn-tertiary:hover:not(:disabled) {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.1); /* ErhÃ¤lt beim Hover Struktur */
}

.btn-tertiary:hover {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.05);
}

/* 3. Alle Interaktions-ZustÃ¤nde (States) */

/* HOVER: Das Aufsteigen */
.btn:hover:not(:disabled):not(.is-disabled) {
    transform: translateY(-2px);
}

/* ACTIVE: Das DrÃ¼cken (Physisch) */
.btn:active:not(:disabled):not(.is-disabled) {
    transform: translateY(0) scale(0.98);
    filter: brightness(0.9);
    transition: all 0.1s ease;
}

/* FOCUS: Barrierefreiheit */
.btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

/* DISABLED: Der inaktive Zustand (Komplett) */
.btn:disabled,
.btn.is-disabled {
    opacity: 0.25;
    cursor: not-allowed !important;
    pointer-events: none;
    transform: none !important;
    filter: grayscale(1);
    box-shadow: none !important;
    border: 1px solid var(--border) !important;
    background: transparent !important;
    color: var(--muted) !important;
}

/* 4. Icons Korrektur */
.btn svg {
    width: 1.2em;
    height: 1.2em;
}

.btn:hover svg {
    transform: translateX(3px);
    opacity: 1;
}

/* =========================================
   Custom Azure Checkbox
   ========================================= */
.azure-checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--muted);
    user-select: none;
    transition: color 0.3s ease;
}

.azure-checkbox-container:hover {
    color: var(--text);
}

/* Verstecke die Standard-Checkbox */
.azure-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Die neue, coole Box */
.checkmark {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(79, 140, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover-Effekt */
.azure-checkbox-container:hover input ~ .checkmark {
    border-color: var(--accent);
    background: rgba(79, 140, 255, 0.08);
    box-shadow: 0 0 10px rgba(79, 140, 255, 0.2);
}

/* Aktiv-Zustand */
.azure-checkbox-container input:checked ~ .checkmark {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(79, 140, 255, 0.4);
}

/* Der Haken (Checkmark) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Haken anzeigen, wenn ausgewÃ¤hlt */
.azure-checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

/* Verlinkungen innerhalb der Labels stylen */
.azure-checkbox-container a {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
}

.azure-checkbox-container a:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px var(--accent);
}

.surcharge-panel-container {
    margin-top: 3rem;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    width: 100%;
}

.surcharge-panel {
    width: 100%;
    /* WICHTIG: Breiter machen fÃ¼r 3 Kacheln */
    max-width: 1100px; 
    
    background: linear-gradient(145deg, rgba(20, 25, 35, 0.6), rgba(10, 14, 22, 0.8));
    backdrop-filter: blur(10px);
    border-radius: 24px; 
    border: 1px solid rgba(79, 140, 255, 0.2);
    padding: 2.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    
    /* Kein Border-Left, damit es mittig bleibt */
    border-left: 1px solid rgba(79, 140, 255, 0.2) !important; 
    text-align: center;
}

/* Header Styling */
.surcharge-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.surcharge-header h2 {
    margin: 0;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    font-weight: 700;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(79, 140, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(79, 140, 255, 0.3);
    box-shadow: 0 0 15px rgba(79, 140, 255, 0.2);
}

.surcharge-icon {
    width: 24px;
    height: 24px;
    color: #4f8cff;
}

/* GRID LAYOUT: Zwingend 3 Spalten */
.surcharge-grid {
    display: grid;
    /* Hier ist der Trick: repeat(3, 1fr) macht 3 gleich groÃŸe Spalten */
    grid-template-columns: repeat(3, 1fr); 
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Einzelner Block */
.surcharge-item {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    /* Etwas weniger Padding seitlich, damit es passt */
    padding: 1.5rem 1rem; 
    
    display: flex;
    flex-direction: column; /* Inhalt Stapeln: Label oben, % unten */
    justify-content: center;
    align-items: center;
    text-align: center;
    
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    gap: 1rem;
    height: 100%;
}

.surcharge-item:hover {
    background: rgba(79, 140, 255, 0.05);
    border-color: rgba(79, 140, 255, 0.3);
    transform: translateY(-3px);
}

.surcharge-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    width: 100%;
}

.surcharge-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #9aa4b2;
    font-weight: 600;
    letter-spacing: 0.5px;
    /* Fixe HÃ¶he fÃ¼r das Label, damit alles bÃ¼ndig ist */
    min-height: 2.4em; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.time-pill {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.3rem 0.8rem; /* Etwas kompakter */
    border-radius: 50px;
    font-size: 0.85rem;
    color: #e6e9ef;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.time-pill.highlight {
    background: rgba(79, 140, 255, 0.1);
    border-color: rgba(79, 140, 255, 0.4);
    color: #fff;
}

.surcharge-value .percentage {
    font-size: 2.2rem;
    font-weight: 800;
    color: #4f8cff;
    line-height: 1;
    text-shadow: 0 0 20px rgba(79, 140, 255, 0.3);
}

.surcharge-value .percentage.highlight {
    color: #fff;
    text-shadow: 0 0 25px rgba(79, 140, 255, 0.6);
}

.surcharge-fineprint {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #9aa4b2;
    opacity: 0.7;
}

.view-service-detail h1 {
    border-bottom: none !important;
    outline: none !important;
}

/* --- Detail View Spezifisch --- */
.view-service-detail .detail-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* =========================================
   Service Detail Premium Tuning
   ========================================= */

   .view-service-detail .detail-hero-row {
    display: flex !important;
    align-items: stretch !important; /* Macht beide Seiten gleich hoch */
    gap: 4rem;
    margin-bottom: 2rem;
}

.view-service-detail .service-image {
    flex: 1;
    display: flex !important;
    align-items: center !important;    /* Vertikale Zentrierung */
    justify-content: center !important; /* Horizontale Zentrierung */
}

/* 1. Bild zentriert und mit hochwertigem Schatten */
.view-service-detail .image-wrapper {
    width: 100%;
    max-width: 450px; /* Saubere Begrenzung */
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.view-service-detail .image-wrapper {
    width: 100%;
    max-width: 500px;          /* Verhindert, dass das Bild zu riesig wird */
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    /* Premium-Schatten */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6); 
}

/* 2. Preis-Items nebeneinander (Flex-Row statt Grid fÃ¼r bessere Kontrolle) */
.view-service-detail .price-highlight {
    display: flex;             /* Auf Flex umgestellt */
    align-items: center;       /* Zentriert die Items zueinander */
    justify-content: space-between; /* Verteilt sie gleichmÃ¤ÃŸig */
    gap: 2rem;
    background: rgba(79, 140, 255, 0.04);
    padding: 1.75rem;
    border-radius: var(--radius);
    border: 1px solid rgba(79, 140, 255, 0.1);
}

.view-service-detail .divider-left {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.view-service-detail .price-item {
    flex: 1;                   /* Beide nehmen gleich viel Platz ein */
}

.view-service-detail .value-row {
    display: flex;
    align-items: baseline;     /* Richtet Zahl und â‚¬ an der Grundlinie aus */
    gap: 0.5rem;               /* Der Abstand zwischen Zahl und â‚¬ */
}

.view-service-detail .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* 2. Preis & Euro nebeneinander */
.view-service-detail .price-item {
    display: flex;
    flex-direction: column;
}

.view-service-detail .value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent);
}

.view-service-detail .currency-symbol {
    font-size: 1.1rem;
    color: var(--muted);
    font-weight: 400;
}

/* 3. Die Linie sauber unter der Kachel */
.view-service-detail .service-horizontal-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 3rem 0;
    border: none;
}

/* Hero Row: Bild links, Content rechts */
.detail-hero-row {
    display: flex;
    align-items: stretch;
    background: var(--bg-panel); /* Hintergrund fÃ¼r die gesamte Einheit */
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden; /* WICHTIG: Damit das Bild nicht Ã¼ber die runden Ecken steht */
    gap: 0; /* Keinen Abstand zwischen Bild und Text */
}

/* Bild fÃ¼llt die linke Seite exakt aus */
.detail-hero-row .service-image {
    flex: 1;
    min-height: 100%;
}

.detail-hero-row .image-wrapper {
    width: 100%;
    height: 100%;
}

.detail-hero-row .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild fÃ¼llt den Platz ohne RÃ¤nder */
    display: block;
}

/* Content rechts bekommt den Platz zum Atmen */
.detail-hero-row .service-content {
    flex: 1.2;
    display: flex;
}

.detail-hero-row .content-accent-box {
    background: transparent !important; /* Hintergrund kommt schon von der Row */
    border: none !important; /* Keine doppelte Linie mehr */
    width: 100%;
    padding: 2.5rem; /* Mehr Platz fÃ¼r den Premium-Look */
    margin: 0 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-intro {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Feature Grid */
.feature-performance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.feature-icon {
    color: var(--accent);
    width: 20px;
    flex-shrink: 0;
}

/* Rechtlicher Hinweis */
.detail-legal-notice {
    margin-top: 2rem;
    padding: 1rem;
    border-left: 2px solid var(--accent);
    background: rgba(79, 140, 255, 0.05);
}

.detail-legal-notice p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0;
}

/* Footer & Back Button */
.detail-footer {
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: center;
}

/* ============================================================
   VISION VIEW STYLING (FIX)
   ============================================================ */

.view-vision { padding: 1rem 0; color: var(--text); }
.vision-manifesto { width: 100%; max-width: var(--max-width); margin: 0 auto; }

/* Bild-Modul mit 520px HÃ¶he und Zoom-Effekt */
.vision-hero-image {
        width: 100%; 
        height: 520px; 
        border-radius: var(--radius); 
        overflow: hidden; /* Schneidet alles auÃŸerhalb ab */
        margin-bottom: 2rem; 
        border: 1px solid var(--border); 
        box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        position: relative;
    }

    .vision-hero-image img {
        width: 100%; 
        height: 100%; 
        object-fit: cover; 
        filter: brightness(0.9);
        /* Start-Skalierung auf 1.1, um das Wasserzeichen unten rechts "rauszuschieben" */
        transform: scale(1.1); 
        transform-origin: center center;
        transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1); 
        will-change: transform;
        display: block;
    }

    /* 2. DER HOVER-EFFEKT: Zoomt von 1.1 auf 1.2 hoch */
    .vision-hero-image:hover img {
        transform: scale(1.2); 
        filter: brightness(1.0);
    }

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

    .vision-card {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border);
        border-radius: var(--radius);
        padding: 2.5rem;
        transition: all 0.3s ease-out;
    }

    .vision-card:hover {
        border-color: var(--accent);
        transform: translateY(-8px);
        background: rgba(79, 140, 255, 0.04);
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }

    @media (max-width: 950px) {
        .vision-hero-image { height: 320px !important; }
        .content-accent-box { padding: 2.5rem 1.5rem !important; }
    }

/* ============================================================
   1. DESKTOP-SICHERUNG (Bleibt wie gehabt)
   ============================================================ */
@media (min-width: 951px) {
    html, body {
        height: 100vh !important;
        overflow: hidden !important;
        display: flex;
        flex-direction: column;
    }
    .page {
        flex: 1;
        height: calc(100vh - 180px);
        display: flex;
        justify-content: center;
    }
    .page-container {
        height: 100%;
        overflow-y: auto;
    }
}

/* ============================================================
   2. MOBILE- & TABLET-OPTIMIERUNG (max-width: 950px)
   Kein Rechtsabstand, Sticky Nav, Normaler Footer
   ============================================================ */
@media (max-width: 950px) {
    /* Globaler Reset fÃ¼r flÃ¼ssiges Scrollen am Handy */
    html, body {
        height: auto !important;
        width: 100% !important;
        overflow-x: hidden !important; /* Verhindert den rechten Abstand */
        overflow-y: auto !important;
        display: block !important; /* Hebt das Flex-Layout vom Desktop auf */
        position: relative;
        margin: 0;
        padding: 0;
    }

    /* Sticky Navigation */
    .navbar {
        position: sticky !important;
        top: 0 !important;
        z-index: 2000;
        width: 100% !important;
        padding: 8px 0 !important;
        background: var(--bg);
    }

    .navbar-inner {
        width: 95% !important; /* Fast volle Breite */
        margin: 0 auto !important;
        border-radius: 12px !important;
        box-sizing: border-box !important;
    }

    /* Content-Bereich: Volle Breite ohne Scroll-Box */
    .page {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        padding: 10px 0 !important;
    }

    .page-container {
        width: 95% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        height: auto !important;
        overflow: visible !important; /* Kein interner Scrollbalken mehr */
        padding: 2rem 1.25rem !important;
        border-radius: 16px !important;
        box-sizing: border-box !important;
        border-left: 1px solid rgba(79, 140, 255, 0.15) !important;
        border-right: 1px solid rgba(79, 140, 255, 0.15) !important;
    }

    /* Footer: Ganz unten, nicht sticky */
.site-footer {
        position: relative !important;
        display: block !important;
        width: 100% !important;
        margin-top: 4rem !important; /* Ordentlich Abstand zum Content */
        padding-bottom: 2rem !important;
        bottom: auto !important;
        left: auto !important;
        flex-shrink: 0 !important; /* Verhindert Stauchung */
        pointer-events: auto !important;
    }

    .footer-outer {
        display: block !important; /* Zentrierung via Block-Level */
        width: 100% !important;
        padding: 0 10px !important;
    }

    .footer-inner {
        width: 95% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 2rem 1.25rem !important;
        flex-direction: column !important; /* Stapeln statt Nebeneinander */
        gap: 1.5rem !important;
        height: auto !important;
        text-align: center;
        /* Dein Dark Azure Style bleibt erhalten */
        background: linear-gradient(180deg, rgba(14, 17, 22, 0.95), rgba(8, 10, 14, 0.98)) !important;
    }

    /* Footer Zeilen fÃ¼r Mobile optimieren */
    .footer-row-top, 
    .footer-row-bottom {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }

    .footer-nav, 
    .footer-contact-bar {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    /* Grid-Anpassungen (Surcharge / Services) */
    .surcharge-grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        gap: 10px !important;
    }

    .surcharge-item {
        flex-direction: row !important;
        justify-content: space-between !important;
        padding: 1.25rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Kontaktformular & Buttons */
    .metro-form {
        padding: 1.5rem !important;
    }
    
    .btn {
        width: 100% !important; /* Volle Breite fÃ¼r Daumen-Bedienung */
    }
}

/* Spezial-Fix fÃ¼r seidiges Scrollen auf iPhones */
@media (hover: none) and (pointer: coarse) {
    body {
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 900px) {
    .detail-hero-row { flex-direction: column; display: flex; gap: 2rem; }
    .detail-hero-row .service-image, .detail-hero-row .service-content { width: 100%; flex: none; }
}

@media (min-width: 901px) {
    .detail-hero-row { display: flex; gap: 3rem; align-items: stretch; }
    .detail-hero-row .service-image { flex: 1; }
    .detail-hero-row .service-content { flex: 1.2; }
}

@media (max-width: 900px) {
    .detail-hero-row {
        flex-direction: column;
    }
}