/* =====================================================
   HIRSCHBERG STYLE 2026 — Plus Jakarta Sans Edition
   Version: 2026-05-20 — Zentrale Style-Datei für alle Seiten
   ===================================================== */

:root {
    --bg: #0a0a0a;
    --bg-2: #141414;
    --bg-3: #1c1c1c;
    --sage: #8ba888;
    --creme: #d9d4c4;
    --text: #ffffff;
    --text-soft: rgba(255,255,255,0.78);
    --text-faded: rgba(255,255,255,0.55);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
    letter-spacing: -0.005em;
}
h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin: 0;
    color: var(--text);
}
a { color: inherit; text-decoration: none; }

/* === HEADER === */
/* Initial: voll transparent — Nav „schwebt" über dem Hero-Video */
nav.bg-dark-green {
    background-color: transparent !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    position: fixed !important;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    border-bottom: 1px solid transparent;
    transition: background-color 0.35s ease,
                backdrop-filter 0.35s ease,
                border-color 0.35s ease;
}
/* Nach Scroll: dunkler Glas-Hintergrund */
nav.bg-dark-green.scrolled {
    background-color: rgba(10,10,10,0.78) !important;
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
    border-bottom-color: rgba(255,255,255,0.08);
}
nav.bg-dark-green .hidden.lg\:flex {
    column-gap: 1rem !important;
    flex-wrap: nowrap !important;
}
nav.bg-dark-green .hidden.lg\:flex.items-center.space-x-8 > * {
    margin-left: 0 !important;
}
nav.bg-dark-green a, nav.bg-dark-green button {
    font-size: 0.82rem !important;
    letter-spacing: 0 !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
}
nav.bg-dark-green a.bg-bright-yellow {
    padding: 0.45rem 0.9rem !important;
    font-size: 0.82rem !important;
}
nav.bg-dark-green .group a { line-height: 1.35; }

/* === HERO === */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 1.25rem 3rem;
    background-color: var(--bg);
    overflow: hidden;
    isolation: isolate;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    opacity: 0.85;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.20) 0%, rgba(0,0,0,0.45) 60%, rgba(10,10,10,0.95) 100%);
    z-index: -1;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1.25rem;
}
.hero-h1 {
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 18px rgba(0,0,0,0.7);
    font-weight: 600;
}
.hero-h1 .italic {
    display: inline;
    color: var(--text-faded);
    background: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
    text-shadow: 0 2px 14px rgba(0,0,0,0.5);
    font-weight: 600;
    font-style: normal;
}
.hero-sub {
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.92);
    max-width: 540px;
    margin: 0 auto 1.75rem;
    text-shadow: 0 2px 14px rgba(0,0,0,0.7);
}
.hero-sub strong { color: #ffffff; }
.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}
.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
    width: 100%;
}
.btn-light { background: #ffffff; color: #0a0a0a; }
.btn-light:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255,255,255,0.2); }
.btn-dark {
    background: rgba(0,0,0,0.65);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(10px);
}
.btn-sage { background: var(--sage); color: #0a0a0a; font-weight: 600; }
.btn-sage:hover { background: #ffffff; }

@media (min-width: 768px) {
    .hero { min-height: 90vh; padding: 8rem 2rem 4rem; }
    .hero-h1 { font-size: 4.5rem; }
    .hero-sub { font-size: 1.15rem; max-width: 680px; }
    .hero-actions { flex-direction: row; max-width: 500px; justify-content: center; }
    .btn-pill { width: auto; }
}
@media (min-width: 1280px) { .hero-h1 { font-size: 5.5rem; } }

/* === SECTIONS === */
section.s {
    padding: 3rem 1.25rem;
    background-color: var(--bg);
    position: relative;
}
@media (min-width: 768px) { section.s { padding: 5rem 2rem; } }
section.s + section.s { border-top: 1px solid rgba(255,255,255,0.06); }
section.s-creme { background-color: var(--bg-2); }
section.s-glass { background: rgba(139,168,136,0.04); }

.container { max-width: 1100px; margin: 0 auto; }
.container-narrow { max-width: 800px; margin: 0 auto; }
.section-title {
    font-size: 2rem;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 600;
}
.section-title .italic { color: var(--sage); font-style: normal; }
.section-sub {
    font-size: 1rem;
    color: var(--text-soft);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}
@media (min-width: 768px) {
    .section-title { font-size: 2.8rem; }
    .section-sub { font-size: 1.1rem; }
}

/* === 3 SÄULEN / PILLARS === */
.pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) { .pillars { grid-template-columns: repeat(3, 1fr); } }
.pillar {
    display: block;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(139,168,136,0.20);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s;
}
.pillar:hover { border-color: var(--sage); transform: translateY(-2px); }
.pillar-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    background: rgba(139,168,136,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    font-size: 1.25rem;
}
.pillar-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    color: #ffffff;
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
}
.pillar-sub { font-size: 0.85rem; color: var(--text-soft); }

/* === TRUST-ITEMS — Liquid-Glass mit dezenter Animation === */
.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 50%, rgba(139,168,136,0.04) 100%);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.07),
        0 4px 16px rgba(0,0,0,0.22);
    animation: liquid-float 7s ease-in-out infinite;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
}
/* Versetzte Animations-Delays für 4 Trust-Karten — wirkt natürlich */
.trust-grid .trust-item:nth-child(1) { animation-delay: 0s; }
.trust-grid .trust-item:nth-child(2) { animation-delay: -1.75s; }
.trust-grid .trust-item:nth-child(3) { animation-delay: -3.5s; }
.trust-grid .trust-item:nth-child(4) { animation-delay: -5.25s; }
/* Glanz-Kante oben */
.trust-item::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.30) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}
/* Shimmer-Streifen */
.trust-item::after {
    content: "";
    position: absolute;
    top: -50%; left: -100%;
    width: 60%; height: 200%;
    background: linear-gradient(105deg,
        transparent 30%,
        rgba(217, 212, 196, 0.08) 45%,
        rgba(139, 168, 136, 0.10) 50%,
        rgba(255, 255, 255, 0.06) 55%,
        transparent 70%);
    transform: rotate(20deg);
    animation: liquid-shimmer 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}
/* Versetzter Shimmer-Start je Karte */
.trust-grid .trust-item:nth-child(2)::after { animation-delay: -2.5s; }
.trust-grid .trust-item:nth-child(3)::after { animation-delay: -5s; }
.trust-grid .trust-item:nth-child(4)::after { animation-delay: -7.5s; }
/* Inhalt über Animation */
.trust-item > * { position: relative; z-index: 2; }
/* Hover */
.trust-item:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(139,168,136,0.40);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.15),
        0 10px 28px rgba(0,0,0,0.40),
        0 0 30px rgba(139,168,136,0.18);
    animation-play-state: paused;
}
.trust-item i { color: var(--sage); font-size: 1.5rem; margin-bottom: 0.5rem; display: block; }
.trust-item-name { font-weight: 600; font-size: 0.9rem; }
.trust-item-sub { font-size: 0.75rem; color: var(--text-soft); margin-top: 0.25rem; }

/* === INFO-BOX === */
.info-box {
    background: rgba(139,168,136,0.08);
    border: 1px solid rgba(139,168,136,0.25);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
}
@media (min-width: 768px) { .info-box { padding: 2rem; } }
.info-box-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    color: var(--sage);
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-style: normal;
}

/* === CARDS === */
.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 768px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards-grid.three { grid-template-columns: repeat(3, 1fr); } }
.card {
    display: block;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(139,168,136,0.20);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.2s;
}
.card:hover { border-color: var(--sage); transform: translateY(-2px); }
.card-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 0.75rem;
    background: rgba(139,168,136,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sage);
    font-size: 1.25rem;
}
.card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.35rem;
    color: var(--text);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.card-text { font-size: 0.95rem; color: var(--text-soft); line-height: 1.6; }
.card-link { color: var(--sage); font-weight: 500; font-size: 0.9rem; margin-top: 0.75rem; display: inline-block; }

/* === PROSE (Legal/Long Text) === */
.prose { color: var(--text-soft); font-size: 1rem; line-height: 1.75; }
.prose h2 {
    color: var(--text);
    font-size: 1.6rem;
    margin: 2.5rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(139,168,136,0.25);
    font-weight: 600;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
    color: var(--sage);
    font-size: 1.25rem;
    margin: 1.75rem 0 0.5rem;
    font-weight: 600;
    font-style: normal;
}
.prose h4 { color: var(--text); font-size: 1.1rem; margin: 1.5rem 0 0.5rem; font-weight: 600; }
.prose p { margin: 0.75rem 0; }
.prose ul, .prose ol { margin: 0.75rem 0 1rem 1.25rem; padding-left: 0.5rem; }
.prose ul li, .prose ol li { margin: 0.4rem 0; }
.prose ul li::marker, .prose ol li::marker { color: var(--sage); }
.prose strong { color: #ffffff; }
.prose em { color: var(--text); font-style: normal; font-weight: 600; }
.prose a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: #ffffff; }
.prose hr { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 2rem 0; }
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25rem 0;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0.5rem;
    overflow: hidden;
}
.prose th, .prose td {
    padding: 0.6rem 0.75rem;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    vertical-align: top;
}
.prose th { background: rgba(139,168,136,0.12); color: var(--text); font-weight: 600; }
.prose tr:last-child td { border-bottom: none; }
.prose .address {
    background: rgba(139,168,136,0.08);
    border-left: 3px solid var(--sage);
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
}
.prose blockquote {
    margin: 1rem 0;
    padding: 0.75rem 1rem;
    border-left: 3px solid var(--sage);
    background: rgba(139,168,136,0.05);
    color: var(--text-soft);
}

/* === CONTACT === */
.contact-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(139,168,136,0.18);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1rem;
}
.contact-card i { font-size: 1.75rem; color: var(--sage); margin-bottom: 0.5rem; }
.contact-card-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.25rem; }
.contact-card-sub { color: var(--text-soft); font-size: 0.9rem; margin-bottom: 1rem; }

/* === STICKY MOBILE CTA === */
.sticky-cta {
    position: fixed;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    display: none;
    flex-direction: row;
    gap: 0.5rem;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(20px);
    padding: 0.4rem;
    border-radius: 999px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.sticky-cta.visible { display: flex; }
.sticky-cta a {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
}
.sticky-cta a.wa { background: var(--sage); color: #0a0a0a; }
.sticky-cta a.phone { background: #ffffff; color: #0a0a0a; }
@media (max-height: 500px) and (orientation: landscape) { .sticky-cta { display: none !important; } }

/* === MOBILE-MENU ACCORDION === */
.mobile-accordion-content, .mobile-sub-accordion-content { display: none; }
.mobile-accordion-content.open, .mobile-sub-accordion-content.open { display: block; }

/* === MOBILE-MENU: durchgehend dunkler Hintergrund ===
   Das mobile-menu hängt in der Nav, die initial transparent ist.
   Ohne eigenen festen Background scheint das Hero-Video durch — wirkt zu hell.
   Wir geben dem Menü-Container UND allen Sub-Layern einen kompakten Dark-Glass-Look. */
#mobile-menu {
    background-color: rgba(10, 10, 10, 0.96) !important;
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
}
#mobile-menu .bg-dark-green\/30,
#mobile-menu .bg-dark-green\/50,
#mobile-menu [class*="bg-dark-green/30"],
#mobile-menu [class*="bg-dark-green/50"] {
    background-color: rgba(255, 255, 255, 0.03) !important;
}
#mobile-menu .mobile-accordion-header,
#mobile-menu .mobile-sub-accordion-header {
    background-color: rgba(255, 255, 255, 0.02);
}
#mobile-menu .mobile-accordion-content,
#mobile-menu .mobile-sub-accordion-content {
    background-color: rgba(0, 0, 0, 0.35);
}

footer { padding-bottom: 5rem !important; }

/* ============================================================
   MESH-SECTION (Canvas-Background-Animation)
   Canvas auf Container-Breite (max 1100px) begrenzt — Mesh läuft
   NUR hinter Content, niemals in seitlichen Leerbereichen
   ============================================================ */
.mesh-section { position: relative; overflow: hidden; isolation: isolate; }
.mesh-section .mesh-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(96%, 1100px);
    height: 100%;
    z-index: 0;
    pointer-events: none;
    filter: blur(70px) saturate(160%);
    opacity: 0.55;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 95%);
    mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 30%, transparent 95%);
}
.mesh-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,10,0.40) 0%, transparent 25%, transparent 75%, rgba(10,10,10,0.40) 100%);
    z-index: 1;
    pointer-events: none;
}

/* ============================================================
   MESH-SECTION COMPAKT — verhindert großen Leerraum
   ============================================================ */
@media (max-width: 767px) {
    section.s.mesh-section {
        padding-top: 1.5rem !important;
        padding-bottom: 2rem !important;
    }
    /* Mesh-Animation dezenter auf Mobile, damit Content im Fokus bleibt */
    .mesh-section .mesh-bg { opacity: 0.40 !important; }
}
/* Tablet/Desktop: ebenfalls etwas kompakter, damit Animation nicht in leerem Raum sichtbar wird */
@media (min-width: 768px) {
    section.s.mesh-section {
        padding-top: 3rem !important;
        padding-bottom: 3.5rem !important;
    }
}

/* ============================================================
   TABLET-OPTIMIERUNG (768px – 1023px)
   iPad Portrait, kleinere Tablets — Zwischenzone Mobile↔Desktop
   ============================================================ */
@media (min-width: 768px) and (max-width: 1023px) {
    /* Hero-H1 etwas kleiner als auf Desktop — passt besser zu iPad Portrait */
    html body .hero-h1,
    html body .gv-hero-h1,
    html body .gv-hero-section h1,
    html body .gv-hero h1 {
        font-size: 3.6rem !important;
        line-height: 1.12 !important;
    }
    /* Hero-Sub etwas schmaler halten — bessere Zeilenbreite zum Lesen */
    .hero-sub, .gv-hero-sub {
        font-size: 1.08rem !important;
        max-width: 600px !important;
    }
    /* Hero-Höhe etwas kompakter (Tablet-Portrait sonst zu lang) */
    .hero, section[class*="gv-hero"], .gv-hero-section {
        min-height: 80vh !important;
        padding: 7rem 2rem 4rem !important;
    }

    /* Trust-Grid 4 Spalten → 2 Spalten auf Tablet (sonst gequetscht) */
    .trust-grid { grid-template-columns: repeat(2, 1fr) !important; }

    /* Cards-Grid .three bleibt 2 Spalten (statt 1 wie auf Mobile)
       — die 3. Karte rutscht in Reihe 2 was natürlich wirkt */
    .cards-grid.three { grid-template-columns: repeat(2, 1fr) !important; }

    /* Section-Titel etwas kleiner auf Tablet */
    .section-title { font-size: 2.4rem !important; }

    /* Pillars 3 Spalten — bleibt wie es ist, passt auf Tablet */

    /* Container-Padding: etwas mehr Luft auf Tablet */
    .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* iPad-Landscape (1024-1199px): Mega-Nav schon aktiv, aber etwas kompakter */
@media (min-width: 1024px) and (max-width: 1199px) {
    nav.bg-dark-green a, nav.bg-dark-green button {
        font-size: 0.78rem !important;
    }
    nav.bg-dark-green .hidden.lg\:flex { column-gap: 0.85rem !important; }
}

/* ============================================================
   TAILWIND-OVERRIDES für die Migration alter Seiten
   Alte Seiten benutzen Tailwind-Klassen mit hellem Theme.
   Hier biegen wir die wichtigsten auf das dunkle Theme um.
   ============================================================ */

/* Backgrounds */
.bg-white, .bg-white\/90, .bg-white\/95 {
    background-color: var(--bg-2) !important;
    color: var(--text) !important;
}
.bg-gray-50, .bg-gray-100, .bg-gray-200, .bg-slate-50, .bg-slate-100, .bg-zinc-50, .bg-zinc-100 {
    background-color: var(--bg-2) !important;
}
.bg-warm-cream, .bg-cream, .bg-creme {
    background-color: var(--bg-2) !important;
    color: var(--text) !important;
}
.bg-bright-yellow, .bg-yellow-400, .bg-yellow-300 {
    background-color: var(--sage) !important;
    color: #0a0a0a !important;
}
.bg-sage-green {
    background-color: rgba(139,168,136,0.10) !important;
}
.bg-sage-green\/10, .bg-sage-green\/20, .bg-sage-green\/30 {
    background-color: rgba(139,168,136,0.10) !important;
}
.bg-sage-green\/50, .bg-sage-green\/60, .bg-sage-green\/70, .bg-sage-green\/80, .bg-sage-green\/90 {
    background-color: rgba(139,168,136,0.20) !important;
}
.bg-dark-green {
    background-color: rgba(10,10,10,0.55) !important;
}

/* Text colors */
.text-gray-500, .text-gray-600, .text-gray-700, .text-slate-500, .text-slate-600, .text-slate-700 {
    color: var(--text-soft) !important;
}
.text-gray-800, .text-gray-900, .text-slate-800, .text-slate-900,
.text-dark-green, .text-charcoal, .text-black {
    color: var(--text) !important;
}
.text-warm-cream { color: var(--text) !important; }
.text-bright-yellow, .text-yellow-400, .text-yellow-300 { color: var(--sage) !important; }
.text-sage-green { color: var(--sage) !important; }

/* Borders */
.border-gray-100, .border-gray-200, .border-gray-300 { border-color: rgba(255,255,255,0.08) !important; }
.border-sage-green { border-color: var(--sage) !important; }
.border-bright-yellow { border-color: var(--sage) !important; }

/* Hover states */
.hover\:bg-white:hover { background-color: var(--bg-3) !important; }
.hover\:bg-gray-100:hover { background-color: var(--bg-3) !important; }
.hover\:bg-yellow-300:hover, .hover\:bg-yellow-400:hover { background-color: #ffffff !important; color: #0a0a0a !important; }
.hover\:bg-sage-green\/20:hover { background-color: rgba(139,168,136,0.18) !important; }
.hover\:text-bright-yellow:hover { color: var(--sage) !important; }

/* Removed for body-text legibility on dark theme */
.shadow-lg, .shadow-xl, .shadow-2xl, .shadow-md, .shadow-sm {
    box-shadow: 0 4px 20px rgba(0,0,0,0.25) !important;
}

/* Gradient-Hintergründe (gradient-light → dunkle Variante) */
.bg-gradient-to-b.from-white, .bg-gradient-to-br.from-white,
.bg-gradient-to-r.from-white, .bg-gradient-to-l.from-white {
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%) !important;
    color: var(--text) !important;
}
.from-gray-50, .from-gray-100, .to-gray-50, .to-gray-100,
.from-slate-50, .from-slate-100 { --tw-gradient-from: var(--bg-2) !important; }

/* Old "warm-cream" backgrounds in cards */
.bg-warm-cream\/30, .bg-warm-cream\/50, .bg-warm-cream\/80 {
    background-color: rgba(217,212,196,0.05) !important;
    color: var(--text) !important;
}

/* Old prose in cards */
section.bg-white *, div.bg-white * { color: var(--text); }
section.bg-white p, div.bg-white p { color: var(--text-soft); }
section.bg-white strong, div.bg-white strong { color: var(--text); }

/* ============================================================
   GROVIA / GV-* — Override alter Hero-Klassen für Mobile-First
   ============================================================ */

/* Alte Hero-SECTIONS (.gv-hero, .gv-hero-warum, .gv-hero-section) — NUR die Section, nicht children */
section[class*="gv-hero"],
.gv-hero,
.gv-hero-section,
.gv-hero-warum {
    position: relative !important;
    min-height: 75vh !important;
    padding: 6rem 1.25rem 3rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    overflow: hidden !important;
    isolation: isolate !important;
    background-color: var(--bg) !important;
}
@media (min-width: 768px) {
    section[class*="gv-hero"],
    .gv-hero,
    .gv-hero-section,
    .gv-hero-warum {
        min-height: 90vh !important;
        padding: 8rem 2rem 4rem !important;
    }
}
/* Hero-Content-Container: einfach ein normaler Wrapper, KEIN eigenes Hero-Layout */
.gv-hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
    min-height: 0 !important;
}

/* Hero auf ki-schulung: max-w-4xl Container darf für H1 nicht zu eng werden */
.gv-hero-section .max-w-4xl,
.gv-hero .max-w-4xl {
    max-width: 1100px !important;  /* statt 56rem (896px) */
}
/* Hero-Headline — deutlich GRÖßER, gleiche Wirkung wie .hero-h1
   html body-Specificity damit Tailwind/Andere CSS-Regeln nicht überschreiben */
html body [class*="gv-hero"] h1,
html body .gv-hero-h1,
html body .gv-hero-section h1,
html body .gv-hero h1,
html body [class*="hero"] h1.gv-hero-h1 {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 2.8rem !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 1rem 0 !important;
    text-shadow: 0 2px 18px rgba(0,0,0,0.7) !important;
    letter-spacing: -0.02em !important;
    max-width: 100% !important;
    text-align: center !important;
}
@media (min-width: 768px) {
    html body [class*="gv-hero"] h1,
    html body .gv-hero-h1,
    html body .gv-hero-section h1,
    html body .gv-hero h1 { font-size: 5rem !important; }
}
@media (min-width: 1024px) {
    html body [class*="gv-hero"] h1,
    html body .gv-hero-h1,
    html body .gv-hero-section h1,
    html body .gv-hero h1 { font-size: 6rem !important; }
}
@media (min-width: 1280px) {
    html body [class*="gv-hero"] h1,
    html body .gv-hero-h1,
    html body .gv-hero-section h1,
    html body .gv-hero h1 { font-size: 6.5rem !important; }
}

/* ZUSÄTZLICH: gleiche Specificity-Eskalation für .hero-h1 (Index) damit beide gleich groß sind */
html body .hero-h1 {
    font-size: 2.8rem !important;
    line-height: 1.1 !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
}
@media (min-width: 768px) {
    html body .hero-h1 { font-size: 5rem !important; }
}
@media (min-width: 1024px) {
    html body .hero-h1 { font-size: 6rem !important; }
}
@media (min-width: 1280px) {
    html body .hero-h1 { font-size: 6.5rem !important; }
}

/* Italic-Spans in alten Hero-Headlines: faded statt italic+cream */
[class*="gv-hero"] h1 em,
[class*="gv-hero"] h1 i,
[class*="gv-hero"] h1 .italic,
[class*="gv-hero"] h1 .gv-hero-italic,
.gv-hero-italic, .hero-italic {
    color: rgba(255,255,255,0.55) !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    font-style: normal !important;
    font-family: inherit !important;
    font-weight: 600 !important;
    display: inline !important;
    box-shadow: none !important;
}

/* Hero-Subtexte */
[class*="gv-hero"] p,
.gv-hero-sub, .gv-hero-text {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.55 !important;
    color: rgba(255,255,255,0.92) !important;
    max-width: 540px !important;
    margin: 0 auto 1.5rem auto !important;
    text-align: center !important;
    text-shadow: 0 2px 14px rgba(0,0,0,0.7) !important;
}
@media (min-width: 768px) {
    [class*="gv-hero"] p, .gv-hero-sub { font-size: 1.15rem !important; max-width: 680px !important; }
}

/* Hero-Buttons in Hero */
[class*="gv-hero"] a.btn, .gv-hero-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.85rem 1.5rem !important;
    border-radius: 999px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    margin: 0.5rem !important;
}

/* Background-Videos in alten Heroes */
[class*="gv-video-bg"], [class*="hero-bg"], [class*="gv-hero"] video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: -2 !important;
    opacity: 0.85 !important;
}

/* Overlays */
[class*="gv-warum-overlay"], [class*="hero-overlay"] {
    position: absolute !important;
    inset: 0 !important;
    z-index: -1 !important;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.45) 60%, rgba(10,10,10,0.95) 100%) !important;
}

/* ============================================================
   MARQUEE / PORTFOLIO-LAUFBAND (animiertes Banner mit Logos)
   ============================================================ */
.gv-portfolio-marquee {
    background: #0a0a0a;
    padding: 36px 0 40px;
    overflow: hidden;
    position: relative;
}
.gv-portfolio-label {
    text-align: center;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
    font-weight: 500;
}
.gv-portfolio-label strong { color: var(--sage); font-weight: 600; }
.gv-portfolio-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.gv-portfolio-track {
    display: flex !important;
    width: max-content !important;
    animation: gv-portfolio-slide 42s linear infinite;
    gap: 14px;
    padding: 0 7px;
    max-width: none !important;
}
.gv-portfolio-track:hover { animation-play-state: paused; }
@keyframes gv-portfolio-slide {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.gv-portfolio-tile {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    padding: 16px 24px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    transition: all 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
}
.gv-portfolio-tile:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(139,168,136,0.4);
    transform: translateY(-2px);
}
.gv-portfolio-tile .icon {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--sage);
    flex-shrink: 0;
}
.gv-portfolio-tile .label {
    display: flex; flex-direction: column;
    line-height: 1.25;
}
.gv-portfolio-tile .domain {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.05rem;
    color: #ffffff;
    letter-spacing: -0.01em;
    font-weight: 600;
}
.gv-portfolio-tile .branche {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* === Sections-Spacing alte → mobile-first === */
section[class*="gv-"], section.section, section.py-12, section.py-16, section.py-20, section.py-24 {
    padding: 3rem 1.25rem !important;
}
@media (min-width: 768px) {
    section[class*="gv-"], section.section, section.py-12, section.py-16, section.py-20, section.py-24 {
        padding: 5rem 2rem !important;
    }
}

/* === Container immer mobile-first (Padding über Tailwind px-4) === */
.max-w-7xl, .max-w-6xl, .max-w-5xl { max-width: 1100px !important; }

/* === Big text Klassen klein machen auf Mobile === */
.text-5xl, .text-6xl, .text-7xl, .text-8xl, .text-9xl {
    font-size: 2.2rem !important;
    line-height: 1.15 !important;
}
@media (min-width: 768px) {
    .text-5xl { font-size: 2.5rem !important; }
    .text-6xl { font-size: 3.5rem !important; }
    .text-7xl { font-size: 4rem !important; }
    .text-8xl { font-size: 4.5rem !important; }
    .text-9xl { font-size: 5rem !important; }
}

/* === Grid-Layouts auf Mobile zu 1 Spalte === */
.grid-cols-2, .grid-cols-3, .grid-cols-4 {
    grid-template-columns: 1fr !important;
}
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr) !important; }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr) !important; }
}

/* === H1 generell falls keine spezifische Klasse === */
body > section:first-of-type h1, main h1:first-of-type {
    font-size: 2.4rem !important;
    line-height: 1.15 !important;
}
@media (min-width: 768px) {
    body > section:first-of-type h1, main h1:first-of-type { font-size: 4.5rem !important; }
}

/* ============================================================
   GLOBAL: KEINE KURSIVE SCHRIFT MEHR
   - <em>-Tags: Browser-Default = italic → normal
   - Tailwind .italic Klasse → normal
   - inline style="font-style: italic" → normal
   - Inline-Styles mit Instrument Serif / Playfair / Georgia → Plus Jakarta Sans
   ============================================================ */

em, i:not([class*="fa-"]):not(.fas):not(.fab):not(.far):not(.fa-solid):not(.fa-regular):not(.fa-brands),
.italic, .font-italic, [class~="italic"],
.font-playfair {
    font-style: normal !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Akzent für ehemals kursive Hervorhebungen: Sage-Farbe + bold */
.italic { font-weight: 600 !important; }

/* Inline-Style font-style: italic überschreiben */
[style*="font-style: italic"],
[style*="font-style:italic"] {
    font-style: normal !important;
}

/* Inline-Style font-family: 'Instrument Serif' / Playfair / Georgia überschreiben */
[style*="Instrument Serif"],
[style*="instrument serif"],
[style*="Playfair"],
[style*="playfair"],
[style*="font-family: Georgia"],
[style*="font-family:Georgia"],
[style*="Georgia, serif"] {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Bewahre Akzent-Spans (oft sage-grün) als Hervorhebung */
span.italic[style*="color"] { font-weight: 700 !important; }

/* ============================================================
   LIQUID-GLASS KACHELN (mit Floating-Animation)
   Trifft ALLE Karten/Kacheln auf der Seite mit bg-white/5 + Border + Rounded
   Ausgenommen: rounded-full (Avatars/Pills), Form-Inputs, Buttons
   ============================================================ */

/* Liquid Glass für alle Karten */
div[class*="bg-white\/5"][class*="rounded-2xl"]:not([class*="rounded-full"]),
div[class*="bg-white\/5"][class*="rounded-xl"]:not([class*="rounded-full"]):not(input):not(textarea):not(button),
div[class*="bg-white\/5"][class*="rounded-lg"]:not([class*="rounded-full"]):not(input):not(textarea):not(button),
a[class*="bg-white\/5"][class*="rounded-2xl"]:not([class*="rounded-full"]),
a[class*="bg-white\/5"][class*="rounded-xl"]:not([class*="rounded-full"]),
section[class*="bg-white\/5"][class*="rounded"]:not([class*="rounded-full"]),
.bg-white\/5.border.border-white\/10.rounded-2xl,
div[class*="bg-white"][class*="border-white"][class*="rounded-2xl"] {
    position: relative !important;
    background:
        linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 50%, rgba(139,168,136,0.05) 100%) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 8px 32px rgba(0,0,0,0.35),
        0 0 0 1px rgba(139,168,136,0.04) !important;
    overflow: hidden !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.5s ease,
                border-color 0.5s ease !important;
    animation: liquid-float 6s ease-in-out infinite !important;
}

/* Verzögerung für unterschiedliche Karten */
.grid > .bg-white\/5.border.border-white\/10.rounded-2xl:nth-child(odd) {
    animation-delay: 0s !important;
}
.grid > .bg-white\/5.border.border-white\/10.rounded-2xl:nth-child(even) {
    animation-delay: -3s !important;
}
.grid > div[class*="bg-white\/5"]:nth-of-type(2) {
    animation-delay: -1.5s !important;
}
.grid > div[class*="bg-white\/5"]:nth-of-type(3) {
    animation-delay: -3s !important;
}

/* Glanz-Streifen oben (Glass-Effekt) */
div[class*="bg-white\/5"][class*="rounded-2xl"]:not([class*="rounded-full"])::before,
div[class*="bg-white\/5"][class*="rounded-xl"]:not([class*="rounded-full"])::before,
div[class*="bg-white\/5"][class*="rounded-lg"]:not([class*="rounded-full"])::before,
a[class*="bg-white\/5"][class*="rounded-2xl"]::before,
.bg-white\/5.border.border-white\/10.rounded-2xl::before,
div[class*="bg-white"][class*="border-white"][class*="rounded-2xl"]::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Schimmer-Animation der über die Karte zieht */
div[class*="bg-white\/5"][class*="rounded-2xl"]:not([class*="rounded-full"])::after,
div[class*="bg-white\/5"][class*="rounded-xl"]:not([class*="rounded-full"])::after,
div[class*="bg-white\/5"][class*="rounded-lg"]:not([class*="rounded-full"])::after,
a[class*="bg-white\/5"][class*="rounded-2xl"]::after,
.bg-white\/5.border.border-white\/10.rounded-2xl::after,
div[class*="bg-white"][class*="border-white"][class*="rounded-2xl"]::after {
    content: "";
    position: absolute;
    top: -50%; left: -100%;
    width: 60%; height: 200%;
    background: linear-gradient(105deg,
        transparent 30%,
        rgba(217, 212, 196, 0.10) 45%,
        rgba(139, 168, 136, 0.12) 50%,
        rgba(255, 255, 255, 0.08) 55%,
        transparent 70%);
    transform: rotate(20deg);
    animation: liquid-shimmer 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Hover-Effekt: skalieren + leuchten */
div[class*="bg-white\/5"][class*="rounded-2xl"]:not([class*="rounded-full"]):hover,
div[class*="bg-white\/5"][class*="rounded-xl"]:not([class*="rounded-full"]):hover,
div[class*="bg-white\/5"][class*="rounded-lg"]:not([class*="rounded-full"]):hover,
a[class*="bg-white\/5"][class*="rounded-2xl"]:hover,
.bg-white\/5.border.border-white\/10.rounded-2xl:hover,
div[class*="bg-white"][class*="border-white"][class*="rounded-2xl"]:hover {
    transform: translateY(-6px) scale(1.02) !important;
    border-color: rgba(139,168,136,0.45) !important;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.18),
        0 16px 48px rgba(0,0,0,0.5),
        0 0 60px rgba(139,168,136,0.18),
        0 0 0 1px rgba(139,168,136,0.18) !important;
    animation-play-state: paused !important;
}

@keyframes liquid-float {
    0%, 100% { transform: translateY(0px); }
    50%      { transform: translateY(-6px); }
}
@keyframes liquid-shimmer {
    0%   { transform: translateX(0) rotate(20deg); opacity: 0; }
    10%  { opacity: 0.6; }
    50%  { transform: translateX(180%) rotate(20deg); opacity: 0.9; }
    90%  { opacity: 0.4; }
    100% { transform: translateX(200%) rotate(20deg); opacity: 0; }
}

/* Innere Elemente bleiben über der Schimmer-Animation */
div[class*="bg-white\/5"][class*="rounded-2xl"]:not([class*="rounded-full"]) > *,
div[class*="bg-white\/5"][class*="rounded-xl"]:not([class*="rounded-full"]) > *,
div[class*="bg-white\/5"][class*="rounded-lg"]:not([class*="rounded-full"]) > *,
a[class*="bg-white\/5"][class*="rounded-2xl"] > *,
.bg-white\/5.border.border-white\/10.rounded-2xl > *,
div[class*="bg-white"][class*="border-white"][class*="rounded-2xl"] > * {
    position: relative;
    z-index: 2;
}

/* Form-Inputs / Textareas ausnehmen (sollen NICHT animiert sein) */
input[class*="bg-white"],
textarea[class*="bg-white"],
select[class*="bg-white"] {
    animation: none !important;
    transform: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
input[class*="bg-white"]::before,
input[class*="bg-white"]::after,
textarea[class*="bg-white"]::before,
textarea[class*="bg-white"]::after {
    display: none !important;
}

/* "?" / VS-Badge soll pulsieren */
.bg-white\/5.border.border-white\/10.rounded-2xl .text-red-500,
.bg-white\/5.border.border-white\/10.rounded-2xl .text-green-500 {
    animation: liquid-pulse 2.4s ease-in-out infinite;
    display: inline-block;
}
@keyframes liquid-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.08); opacity: 0.85; }
}

/* Emoji (🏢, 🏪) bekommt eine subtile bounce */
.bg-white\/5.border.border-white\/10.rounded-2xl .text-5xl {
    display: inline-block;
    animation: liquid-bounce 3.5s ease-in-out infinite;
}
@keyframes liquid-bounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}

/* ============================================================
   LEGAL-CARD (Impressum/Datenschutz/AGB) als Liquid-Glass
   ============================================================ */
.legal-stand {
    text-align: center;
    color: var(--text-faded);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 2rem;
}

.legal-prose .legal-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 50%, rgba(139,168,136,0.04) 100%);
    backdrop-filter: blur(20px) saturate(170%);
    -webkit-backdrop-filter: blur(20px) saturate(170%);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.07),
        0 6px 20px rgba(0,0,0,0.25);
    animation: liquid-float-soft 8s ease-in-out infinite;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s ease,
                border-color 0.4s ease;
}

@media (min-width: 768px) {
    .legal-prose .legal-card { padding: 2rem; }
}

/* Verzögerte Animation pro Karte */
.legal-prose .legal-card:nth-child(odd)  { animation-delay: 0s; }
.legal-prose .legal-card:nth-child(even) { animation-delay: -4s; }
.legal-prose .legal-card:nth-child(3n)   { animation-delay: -2s; }
.legal-prose .legal-card:nth-child(4n)   { animation-delay: -6s; }

/* Glanz-Kante oben */
.legal-prose .legal-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.30) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Shimmer-Stripe */
.legal-prose .legal-card::after {
    content: "";
    position: absolute;
    top: -50%; left: -100%;
    width: 60%; height: 200%;
    background: linear-gradient(105deg,
        transparent 30%,
        rgba(217, 212, 196, 0.08) 45%,
        rgba(139, 168, 136, 0.10) 50%,
        rgba(255, 255, 255, 0.06) 55%,
        transparent 70%);
    transform: rotate(20deg);
    animation: liquid-shimmer 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Hover */
.legal-prose .legal-card:hover {
    transform: translateY(-3px) scale(1.01);
    border-color: rgba(139,168,136,0.40);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.15),
        0 12px 36px rgba(0,0,0,0.40),
        0 0 40px rgba(139,168,136,0.15);
    animation-play-state: paused;
}

/* Innere Inhalte über dem Shimmer */
.legal-prose .legal-card > * {
    position: relative;
    z-index: 2;
}

/* Sanftere Float-Animation für Legal-Cards (weniger Bewegung als Vergleichs-Karten) */
@keyframes liquid-float-soft {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-2px); }
}

/* H2 in Legal-Cards: kein Border-Bottom mehr (Card hat eigene Optik), bigger Schrift */
.legal-prose .legal-card h2 {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0.75rem !important;
    color: var(--text) !important;
    font-size: 1.4rem !important;
    font-weight: 600 !important;
}
@media (min-width: 768px) {
    .legal-prose .legal-card h2 { font-size: 1.6rem !important; }
}

/* Sub-Headings */
.legal-prose .legal-card h3, .legal-prose .legal-card h4 {
    color: var(--sage) !important;
    font-style: normal !important;
    font-weight: 600 !important;
}

/* Address-Boxen innerhalb Karten ein bisschen anders, damit nicht zu Glasi-on-Glasi */
.legal-prose .legal-card .address {
    background: rgba(0,0,0,0.25) !important;
    border-left: 3px solid var(--sage) !important;
    backdrop-filter: none !important;
}
