@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Inter'),
        url('fonts/inter-400.woff2') format('woff2'),
        url('fonts/inter-400.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: local('Inter SemiBold'),
        url('fonts/inter-600.woff2') format('woff2'),
        url('fonts/inter-600.ttf') format('truetype');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Inter Bold'),
        url('fonts/inter-700.woff2') format('woff2'),
        url('fonts/inter-700.ttf') format('truetype');
}

:root {
    --bg-page: #ffffff;
    --bg-card: #ffffff;
    --text-primary: #151515;
    --text-secondary: #4B4C52;
    --text-muted: #9199A6;
    --border: #ECEDEE;
    --border-active: #9199A6;
    --btn-grad-from: #1e3a8a;
    --btn-grad-from-rgb: 30, 58, 138;
    --btn-grad-to: #1e3a8a;
    --accent-blue: #1e3a8a;
    --accent-purple: #2d4fc0;
    --white: #ffffff;
    --transparent: transparent;
    --blue-200: #bfdbfe;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --font-main: 'Inter', system-ui, sans-serif;
    --radius-card: 1rem;
    --radius-btn: 8px;

    /* Sektions-Subtext Standards */
    --section-sub-max: 560px;
    --section-sub-margin-bottom: 4.5rem;
    --section-sub-size: 1rem;
    /* Glow-Rahmen Werte - Jetzt synchron mit Marken-Blau */
    --glow-blur: 6.0px;
    --glow-spread: 2.0px;
    --scroll-progress: 0;
    --focus-gap: #ffffff;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Link Styles Base */
a {
    text-decoration: none;
    transition: all 0.2s ease;
    color: inherit;
    cursor: pointer;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

/* Specific text links (Legal, etc.) */
.legal-content a:not(.btn-primary):not(.btn-secondary):not(.logo),
.legal-section a:not(.btn-primary):not(.btn-secondary),
.footer-tagline a {
    color: var(--btn-grad-from);
}

.legal-content a:not(.btn-primary):not(.btn-secondary):not(.logo):hover,
.legal-section a:not(.btn-primary):not(.btn-secondary):hover,
.footer-tagline a:hover {
    color: var(--btn-grad-to);
}

.legal-content a:not(.btn-primary):not(.btn-secondary) {
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}

.legal-content a:not(.btn-primary):not(.btn-secondary):hover {
    text-decoration: none;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: #151515;
    color: white;
    padding: 10px 20px;
    z-index: 10001;
    /* Über dem Header-Glow */
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.skip-link:focus-visible {
    top: 20px;
    outline: none !important;
    box-shadow: 0 0 0 2px var(--focus-gap), 0 0 0 5px #ffffff, 0 0 0 8px var(--btn-grad-from) !important;
    background: #000000;
    color: #ffffff;
    transition: none !important;
}

.skip-link:active {
    transform: translateY(2px);
    transition: none;
    outline: none !important;
}

.highlight-blue {
    color: var(--btn-grad-from);
    font-weight: 700;
}

/* Visuelles Feedback für das Sprungziel (Konsistent mit dem Rest der Seite) */
#main-content:focus-visible,
h1:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 2px var(--focus-gap), 0 0 0 5px #ffffff, 0 0 0 8px var(--btn-grad-from) !important;
    border-radius: 4px;
    transition: none !important;
}

#main-content:focus:not(:focus-visible),
h1:focus:not(:focus-visible) {
    outline: none !important;
    box-shadow: none !important;
}

/* Dezentere Anzeige, wenn man nur durchtabbt */
h1:focus:not(:focus-visible) {
    outline: none !important;
    box-shadow: none !important;
}

/* Utility: Visuell verstecken, aber für Screenreader lesbar halten */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

html {
    font-size: 17px;
    overflow-y: scroll;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    scroll-padding-top: 10px;
}

body {
    background-color: var(--bg-page);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    line-height: 1.8;
    overflow-x: hidden;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    /* Erhöht: Liegt über dem Header (1000), aber unter Modals (12000) */
    z-index: 1100;
    box-shadow:
        0 0 var(--glow-blur) var(--glow-spread) color-mix(in srgb, var(--glow-color), transparent 60%) inset;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    will-change: opacity;
}

body.frame-visible::after {
    opacity: 1;
}



:focus {
    outline: none !important;
}

html:not(.is-using-mouse) :focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 2px var(--focus-gap), 0 0 0 5px #ffffff, 0 0 0 8px var(--btn-grad-from) !important;
    transition: none !important;
}

html.is-using-mouse *:focus,
html.is-using-mouse *:focus-visible,
html.is-using-mouse #main-content:focus,
html.is-using-mouse #main-content:focus-visible,
html.is-using-mouse h1:focus,
html.is-using-mouse h1:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

header {
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 1000;
}

.header-inner {
    width: 100%;
    height: 100%;
}

.header-container {
    height: 100%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

@media (max-width: 1240px) {
    .header-container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 1024px) {
    .header-container {
        padding: 0 4%;
    }
}

.header-logo-wrap {
    flex: 1;
    display: flex;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-right: 15px;
    margin-top: -15px;
    margin-bottom: -15px;
    margin-right: -15px;
}

.logo-img {
    height: 30px;
    width: auto;
    max-width: 100%;
}

header nav {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-separator {
    width: 1px;
    height: 18px;
    background-color: #D1D3D8;
    margin: 0 1rem;
    display: block;
}

@media (max-width: 1024px) {
    .nav-separator {
        display: none;
    }
}

/* Mobile Toggle Styles */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2100;
    transition: transform 0.3s ease;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: left center;
}

.mobile-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(2px, -2px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(2px, 2px);
}

header nav a,
.nav-contact-btn {
    position: relative;
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 0.2rem;
    font-weight: 400;
    font-size: 0.95rem;
    line-height: 1.8;
    transition: all 0.2s ease;
    white-space: nowrap;
    background: none;
    border: 1px solid transparent;
    padding: 3px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
}

header nav a::after,
.nav-contact-btn::after {
    content: '';
    position: absolute;
    top: -15px;
    bottom: -15px;
    left: -10px;
    right: -10px;
}

@media (hover: hover) {

    header nav a:hover,
    .nav-contact-btn:hover {
        color: var(--btn-grad-from);
        border-color: rgba(30, 58, 138, 0.3);
        background-color: rgba(30, 58, 138, 0.01);
    }
}

.header-cta {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header-cta .btn-primary {
    padding: 7px 18px;
    min-height: 34px;
    font-size: 0.9rem;
}



@media (max-width: 1024px) {
    .header-container {
        padding: 0 4%;
    }

    header nav {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-logo-wrap {
        flex: initial;
    }

    .header-cta {
        display: none;
    }
}

.btn-primary {
    position: relative;
    background-color: var(--btn-grad-from);
    background-image: none;
    color: white;
    border: none;
    -webkit-tap-highlight-color: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 10px 24px;
    min-height: 40px;
    border-radius: var(--radius-btn);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s ease,
        background-color 0.3s ease;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2);
    text-decoration: none;
    outline: none;
}

.btn-primary:hover,
html:not(.is-using-mouse) .btn-primary:focus-visible {
    transform: translateY(-2px);
    background-color: #1c2fa0;
    box-shadow: 0 6px 15px rgba(30, 58, 138, 0.25) !important;
}

.btn-primary:active {
    transform: translateY(0);
}

/* Der Schatten (Glow) STRIKT nur noch unter dem Button */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 90%;
    left: 10%;
    z-index: -1;
    height: 15%;
    width: 80%;
    border-radius: 50%;
    background: var(--btn-grad-from);
    filter: blur(12px);
    opacity: 0.6;
    transition: all 0.3s ease;
    pointer-events: none;
}

.btn-primary:hover::before,
html:not(.is-using-mouse) .btn-primary:focus-visible::before {
    opacity: 0.95 !important;
    filter: blur(15px);
    transform: translateY(4px) scale(1.05);
    background: var(--btn-grad-from) !important;
}

.btn-large {
    padding: 14px 48px !important;
}

.btn-white {
    background: #ffffff;
    color: var(--btn-grad-from);
    border: none;
    padding: 14px 48px;
    /* Von 32px auf 48px erhöht */
}

.btn-secondary {
    background: #f4f6ff;
    color: var(--btn-grad-from);
    padding: 10px 24px;
    min-height: 40px;
    border-radius: var(--radius-btn);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1.5px solid rgba(30, 58, 138, 0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}


.btn-white {
    background: #ffffff !important;
    color: #151515 !important;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1) !important;
}

.btn-white::before {
    background: var(--btn-grad-from) !important;
    opacity: 0.4 !important;
}


html:not(.is-using-mouse) .btn-primary:focus-visible {
    outline: none !important;
    box-shadow: 0 4px 10px rgba(30, 58, 138, 0.2) !important;
    overflow: visible !important;
}

/* Der dreistufige Fokus-Ring mit ECHTEM transparentem Abstand */
.btn-primary:focus-visible::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 3px solid #ffffff;
    border-radius: calc(var(--radius-btn) + 5px);
    box-shadow: 0 0 0 3px var(--btn-grad-from);
    pointer-events: none;
    z-index: 10;
}

.aurora-container {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: auto;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--bg-card);
    overflow: visible;
    /* Reflow: Allow content to expand */
    padding-top: 140px;
    /* Auf 140px angepasst für 90px Abstand zum 50px Header */
    padding-bottom: 450px;
}

/* Optimize for small vertical space (Reflow/Zoom) */
@media (max-height: 700px) {
    .aurora-container {
        padding-top: 80px;
        padding-bottom: 240px;
        /* Erhöht, damit Video-Overlap bei hohem Zoom Platz hat */
        min-height: auto;
    }
}

.aurora-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    filter: blur(10px) invert(1);
}

.aurora-effect {
    --white-gradient: repeating-linear-gradient(100deg,
            var(--white) 0%, var(--white) 7%,
            var(--transparent) 10%, var(--transparent) 12%,
            var(--white) 16%);
    --aurora: repeating-linear-gradient(100deg,
            var(--blue-500) 10%,
            var(--blue-300) 15%,
            var(--blue-400) 20%,
            var(--blue-200) 25%,
            var(--blue-600) 30%);
    background-image: var(--white-gradient), var(--aurora);
    background-size: 300%, 200%;
    background-position: 50% 50%, 50% 50%;
    position: absolute;
    inset: -10px;
    opacity: 0.5;
    will-change: transform;
    pointer-events: none;
    mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 100% 0%, black 10%, transparent 70%);
    animation: aurora-move 80s linear infinite;
}

@keyframes aurora-move {
    from {
        background-position: 50% 50%, 50% 50%;
    }

    to {
        background-position: 350% 50%, 350% 50%;
    }
}

.aurora-effect::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--white-gradient), var(--aurora);
    background-size: 200%, 100%;
    background-attachment: fixed;
    mix-blend-mode: difference;
    animation: aurora-move 80s linear infinite;
}

@media (max-width: 768px) {

    .aurora-effect,
    .aurora-effect::after {
        animation: none !important;
        will-change: auto !important;
    }
}

/* ── VIDEO SHOWCASE 3D EFFECT ── */
.video-showcase-container {
    position: relative;
    min-height: auto;
    padding-bottom: 15vh;
    /* Erhöht den Abstand && gibt dem Sticky-Effekt Platz zum Scrollen */
    margin-top: 3rem;
    /* Abstand zum Hero-Text verringert */
    /* Scroll-Platz für die Animation */
    background: transparent;
    /* Hintergrund entfernt für nahtlosen Übergang zum Hero */
    margin-top: -450px;
    /* Tieferer Overlap für Desktop: Rückt das Video näher an die Trustbadges */
    z-index: 20;
    pointer-events: none;
}

/* Dynamische Anpassung des Overlaps bei Zoom/Schmaleren Fenstern */
@media (max-width: 1400px) {
    .video-showcase-container {
        margin-top: -240px;
    }

    .aurora-container {
        padding-bottom: 240px;
    }
}

@media (max-width: 1100px) {
    .video-showcase-container {
        margin-top: -100px;
    }

    .aurora-container {
        padding-bottom: 100px;
    }
}

/* Mobile Reset ist bereits weiter unten (Zeile 761) vorhanden */

@media (max-height: 850px) {
    .video-showcase-container {
        margin-top: -100px;
        /* Reduzierter Overlap bei geringer Höhe/Zoom */
    }

    .aurora-container {
        padding-bottom: 100px;
    }
}

.video-scroll-wrapper {
    pointer-events: auto;
    /* Klicks auf das Video/Mockup wieder erlauben */
    position: sticky;
    top: 10vh;
    height: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: visible;
    perspective: 1000px;
    /* Aceternity standard */
    padding: 10px 0 0;
}

.video-perspective-box {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    transform-style: preserve-3d;
    /* Transformation: 10deg -> 0deg Tilt */
    transform:
        rotateX(calc(12deg * (1 - var(--scroll-progress, 0)))) scale(calc(1.02 - (0.02 * var(--scroll-progress, 0))));
    /* transition: transform 0.1s linear; -- ENTFERNT: Verursacht Micro-Lags beim Scrollen durch Konflikt mit JS-Update */
    will-change: transform;
}

.video-mockup {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    background: #151515;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 #00000033,
        0 4px 12px color-mix(in srgb, var(--glow-color), transparent 85%),
        0 16px 24px color-mix(in srgb, var(--glow-color), transparent 90%),
        0 32px 32px color-mix(in srgb, var(--glow-color), transparent 93%),
        0 64px 48px color-mix(in srgb, var(--glow-color), transparent 95%);
    overflow: hidden;
    cursor: default;
}

.mockup-content-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f4f5f7;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.mockup-content-wrapper iframe,
.mockup-content-wrapper video,
.mockup-content-wrapper img {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -6px;
    bottom: -2px;
    width: calc(100% + 8px);
    height: calc(100% + 4px);
    border: none;
    margin: 0;
    padding: 0;
    display: block;
    object-fit: cover;
}


.showcase-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.showcase-video,
.showcase-video-poster {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #000;
}

/* ── CUSTOM VIDEO POSTER OVERLAY ── */
.video-poster-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #151515;
    border: none;
    padding: 0;
    margin: 0;
    font: inherit;
    color: inherit;
    touch-action: manipulation;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

html:not(.is-using-mouse) .video-poster-overlay:focus-visible {
    outline: none !important;
}

html:not(.is-using-mouse) .video-poster-overlay:focus-visible .play-button-outer {
    transform: scale(1.2);
    background: rgba(30, 58, 138, 0.3);
    box-shadow: 0 0 0 3px #ffffff, 0 0 0 6px var(--btn-grad-from);
}

html:not(.is-using-mouse) .video-poster-overlay:focus-visible .play-button-inner {
    transform: scale(1.1);
    background: #1c2fa0;
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.4);
}

.video-poster-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Pause-Zustand auf Mobilgeräten */
.video-poster-overlay.paused-state {
    background: rgba(0, 0, 0, 0.55);
}

.video-poster-overlay.paused-state picture {
    opacity: 0;
    pointer-events: none;
}

.video-poster-overlay picture {
    transition: opacity 0.3s ease;
}

.video-poster-overlay picture,
.poster-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Zeiger-Events für Kinder-Elemente deaktivieren, um Doppeltippen auf iOS zu verhindern */
.video-poster-overlay * {
    pointer-events: none;
}

.poster-img {
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
    .video-poster-overlay:hover .poster-img {
        transform: scale(1.03);
    }
}

/* Play Button Styling */
.play-button-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.play-button-outer {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(30, 58, 138, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    transition: all 0.4s ease;
}

.play-button-inner {
    position: relative;
    width: 56px;
    height: 56px;
    background: #1e3a8a;
    /* Naluvio Blau */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (hover: hover) {
    .video-poster-overlay:hover .play-button-outer {
        transform: scale(1.2);
        background: rgba(30, 58, 138, 0.3);
    }

    .video-poster-overlay:hover .play-button-inner {
        transform: scale(1.1);
        background: #1c2fa0;
        box-shadow: 0 15px 35px rgba(30, 58, 138, 0.4);
    }
}

@media (max-width: 768px) {
    .video-poster-overlay {
        pointer-events: none;
        /* Erstklick geht direkt an das Vimeo-Iframe durch */
    }

    .play-button-wrapper {
        width: 60px;
        height: 60px;
        transform: translateY(20px);
        /* Ein kleines Stück höher als vorher */
    }

    .play-button-inner {
        width: 44px;
        height: 44px;
    }

    .play-button-inner svg {
        width: 18px;
        height: 18px;
    }
}

.video-play-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1e3a8a;
    /* Naluvio-Blau standardmäßig */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 30;
    pointer-events: auto;
    backdrop-filter: blur(8px);
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.video-play-overlay:focus {
    outline: none !important;
}

.video-play-overlay:focus-visible {
    outline: none !important;
    border-color: #ffffff !important;
    box-shadow: 0 0 0 3px #ffffff, 0 0 0 6px var(--btn-grad-from) !important;
    transition: none !important;
}

.video-play-overlay:hover {
    background: #1c2fa0;
    /* Naluvio-Blau beim Hover */
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.4);
}

.playing .video-play-overlay {
    opacity: 0.7;
    /* Sichtbar genug für Barrierefreiheit */
    transform: scale(0.95);
}

.video-mockup:hover .video-play-overlay,
.video-mockup:focus-within .video-play-overlay {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.playing .video-play-overlay svg {
    display: none;
}

.playing .video-play-overlay::after {
    content: '';
    width: 10px;
    height: 14px;
    border-left: 4px solid white;
    border-right: 4px solid white;
    display: block;
}

.video-play-overlay svg {
    width: 20px;
    height: 20px;
    margin-left: 2px;
    /* Optische Korrektur für Play-Zentrierung */
}

@media (max-width: 600px) {
    .video-play-overlay {
        bottom: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
    }

    .mockup-content-wrapper {
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    .showcase-video,
    .showcase-video-poster {
        aspect-ratio: 16 / 9 !important;
        width: 100% !important;
        height: 100% !important;
        display: block;
        object-fit: cover;
    }
}

.video-play-overlay:hover svg {
    transform: scale(1.1);
}



@media (max-width: 768px) {
    .video-showcase-container {
        min-height: auto;
        height: auto;
        /* Erlaubt dem Container zu wachsen bei Zoom */
        margin-top: -10px;
        /* Verhindert Überdeckung des Hero bei Textumbruch/Zoom */
        margin-bottom: 40px;
        z-index: 21;
        pointer-events: auto;
        /* Klicks auf Mobile normalisieren (entfernt pointer-events: none des Parent) */
    }

    .video-scroll-wrapper {
        padding: 0 5%;
        min-height: auto;
        height: auto;
        position: relative !important;
        /* Verhindert sticky-bezogene Layoutprobleme bei Zoom/Mobile */
        overflow: visible;
        /* Verhindert Clipping bei Zoom */
    }

    .video-mockup {
        border-radius: 12px;
        border-width: 2px;
    }

    .video-perspective-box {
        transform: none !important;
        /* Tilt-Animation auf dem Handy deaktivieren */
        transition: none !important;
        width: 100% !important;
        margin: 0;
    }
}


.app-preview-section {
    padding: 160px 10%;
    background-color: #151515;
    /* Dunkle Assistenz-Sektion */
    color: #ffffff;
    text-align: center;
}

#how-it-works,
#mobile-access,
#features,
#vision {
    background-color: #ffffff;
}

#hardware {
    background-color: #f9f9f9;
    /* Dezentes Hellgrau für Abwechslung */
}

#faq,
#efficiency {
    background-color: #ffffff;
}


/* ── PROBLEM BRIDGE SECTION ─────────────────────────── */
#problem-bridge {
    background-color: #ffffff;
}

.pb-cards,
.pb-stats {
    width: 100%;
    max-width: 1200px;
}

/* Cards Grid */
.pb-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.pb-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2.25rem 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    width: 100%;
    min-height: 460px;
    transition: all 0.3s ease;
}



.pb-card-icon {
    width: 44px;
    height: 44px;
    background: #eff6ff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--btn-grad-from);
    flex-shrink: 0;
    margin-bottom: 1.25rem;
}

.pb-card-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.7px;
    /* Icons etwas dicker wie gewünscht */
}


.pb-contrast-row {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.pb-contrast-row:last-child {
    border-bottom: none;
}

.pb-contrast-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.2rem;
    font-size: 0.75rem;
}

.pb-contrast-label.statt {
    background: transparent;
    color: #aaa;
}

.pb-contrast-label.jetzt {
    background: transparent;
    color: var(--btn-grad-from);
}

.pb-contrast-old {
    color: var(--text-secondary);
    /* Slightly lightened but still WCAG AA compliant (4.5:1+) */
    font-weight: 400;
    font-size: 0.95rem;
}

.pb-contrast-new {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.pb-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.6;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
    min-height: auto;
    display: block;
}

.pb-card-text {
    font-size: 1rem;
    /* Matching section-sub (In vielen Unternehmen...) */
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Stats Row */
.pb-stats {
    display: grid;
    /* 5 Spalten: Stat | Lücke(2rem) | Stat | Lücke(2rem) | Stat */
    grid-template-columns: 1fr 2rem 1fr 2rem 1fr;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2.25rem 0;
    /* Reduziert von 3.5rem auf 2.25rem für eine kompaktere Optik */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.pb-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    padding: 0 1rem;
}

.pb-stat-number {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--btn-grad-from);
    line-height: 1.2;
    display: flex;
    align-items: flex-end;
    height: 3rem;
    /* Feste Höhe für die Überschriften-Zeile */
    letter-spacing: -0.03em;
}


.pb-stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    /* Angepasst auf Standard-Zeilenhöhe der Seite */
    text-align: center;
    max-width: 280px;
    /* Wieder kompakter für eine bessere Lesbarkeit */
    width: 100%;
    margin: 0 auto;
}

.pb-stat-divider {
    width: 2rem;
    /* Exakt die gap-Breite der Karten oben */
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pb-stat-divider::after {
    content: "";
    width: 1px;
    height: 100%;
    background: var(--border);
}

/* CTA Block */
.pb-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.pb-stats-disclaimer {
    max-width: 1000px;
    width: 100%;
    margin: 3.5rem auto 0;
    /* Same as .roi-disclaimer for consistency */
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
    padding: 0 1.5rem;
    font-style: italic;
}

/* ── RESPONSIVE: PROBLEM BRIDGE ──────────────────────── */
@media (max-width: 900px) {
    .pb-cards {
        grid-template-columns: 1fr 1fr;
    }

    .pb-card {
        min-height: auto;
        /* Auf Mobilgeräten soll die Karte nicht unnötig lang sein */
        padding-bottom: 2.5rem;
    }

}

@media (max-width: 600px) {
    .pb-cards {
        grid-template-columns: 1fr;
    }

    .pb-card {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .pb-stats {
        display: flex;
        /* Wechsel von Grid auf Flex für sauberes Untereinanderstehen am Handy */
        flex-direction: column;
        gap: 2.5rem;
        padding: 2.5rem 1.5rem;
        /* Reduziert von 3.5rem auf 2.5rem für Mobilgeräte */
    }

    .pb-stat-divider {
        display: none;
        /* Trennstriche am Handy nicht nötig, die Abstände regelt das Gap */
    }

    .pb-stat {
        padding: 0;
        width: 100%;
    }
}


.preview-toggle-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
    width: 100%;
}

.preview-toggle {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 4px;
    margin-top: 3.5rem;
    gap: 2px;
    max-width: 100%;
}

.preview-description {
    margin-top: 1.0rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 580px;
    line-height: 1.8;
    text-align: center;
    min-height: 110px;
    height: auto;
    /* Nutzt min-height statt festem Block für Stabilität bei Zoom */
    display: flex;
    align-items: flex-start;
    /* Festes Oben-Alignment für konsistenten Zeilenstart */
    padding-top: 1.2rem;
    /* Gleicht den Startpunkt optisch an */
    justify-content: center;
}

.preview-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
    white-space: nowrap;
}

@media (hover: hover) {
    .preview-tab:hover:not(.active) {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
    }
}

.preview-tab.active {
    background: #ffffff;
    color: #151515;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    #how-it-works {
        margin-top: 40px;
    }

    .preview-tab {
        padding: 8px 4px !important;
        font-size: 0.75rem !important;
        width: 100% !important;
        flex: none !important;
        justify-content: center !important;
        text-align: center !important;
        white-space: nowrap !important;
    }

    .preview-toggle {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        width: 100% !important;
        max-width: 320px !important;
        margin-inline: auto !important;
        gap: 2px !important;
    }

    .preview-toggle-wrap {
        margin-bottom: 2.0rem;
        /* Kontrollierter Abstand für Mobile */
    }

    .preview-description {
        transition: none !important;
        height: auto;
        /* Reduzierte min-height für Mobile, damit der margin-bottom des Wrappers den Abstand bestimmt */
        min-height: 40px;
        margin-top: 1.8rem;
        padding-top: 0;
    }
}

.app-preview-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.section-cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
    width: 100%;
}

.browser-chrome {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0 1rem;
    height: 40px;
    background: #151515;
    /* Exakte Vorgabe #151515 */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.browser-dots {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
}

.browser-dots span:nth-child(1) {
    background: #1e3a8a;
    /* Dunkel: Naluvio-Blau */
}

.browser-dots span:nth-child(2) {
    background: #1e3a8a;
    /* Mittel: Akzent-Blau */
}

.browser-dots span:nth-child(3) {
    background: #3b82f6;
    /* Etwas dunkleres Blau (Blue 500) */
}

.browser-bar {
    flex: 1;
    margin: 0 1rem;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-main);
    letter-spacing: 0;
}

.screens-container {
    display: grid;
    grid-template-areas: "viewport";
    width: 100%;
    background-color: #151515;
}

.browser-actions {
    color: var(--text-secondary);
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.screenshot-area {
    grid-area: viewport;
    width: 100%;
    aspect-ratio: 1120 / 629;
    background: radial-gradient(circle, #c8ccd4 1px, transparent 1px);
    background-color: #f4f5f7;
    background-size: 24px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    /* Default state: slightly blurred and centered */
    filter: blur(10px);
    transition:
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.6s ease-out;
    pointer-events: none;
    will-change: transform, opacity, filter;
}

.screenshot-area.active {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0deg);
    filter: blur(0);
    pointer-events: auto;
}

/* Exit right: Flies out to the right and gets mini small */
.screenshot-area.exit-right {
    transform: translateX(120%) scale(0.15) rotate(8deg);
    opacity: 0;
    filter: blur(15px);
}

/* Exit left: Flies out to the left and gets mini small */
.screenshot-area.exit-left {
    transform: translateX(-120%) scale(0.15) rotate(-8deg);
    opacity: 0;
    filter: blur(15px);
}

/* Enter state from left */
.screenshot-area.enter-left {
    transform: translateX(-120%) scale(0.8);
    opacity: 0;
}

/* Enter state from right */
.screenshot-area.enter-right {
    transform: translateX(120%) scale(0.8);
    opacity: 0;
}

.screenshot-area[hidden] {
    display: none;
}

.mockup-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0 0 14px 14px;
}

.screenshot-placeholder-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    user-select: none;
    pointer-events: none;
}

.placeholder-icon {
    font-size: 2.5rem;
    opacity: 0.5;
}

.screenshot-placeholder-inner p {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-secondary);
    margin: 0;
}

.screenshot-placeholder-inner code {
    font-size: 0.75rem;
    background: var(--border);
    padding: 3px 8px;
    border-radius: 4px;
    color: var(--text-secondary);
    font-family: 'SF Mono', 'Fira Code', monospace;
}

@media (max-width: 768px) {
    .app-preview-section {
        padding: 0 5% 60px;
    }

    .section-cta-container {
        margin-top: 1.5rem;
    }
}

.hero {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 5% 2rem;
    /* Etwas weniger Platz unten, Video wieder näher ran */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: 100%;
}

.hero h1,
.hero .hero-sub,
.hero .hero-btns,
.hero .hero-badge {
    opacity: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(var(--btn-grad-from-rgb), 0.08);
    border: 1px solid rgba(var(--btn-grad-from-rgb), 0.2);
    border-radius: 100px;
    margin-bottom: 2rem;
    color: var(--btn-grad-from);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hero-badge span {
    display: inline-block;
}







h1 {
    font-size: clamp(4.2rem, 10vw, 4.2rem);
    /* Maximalgröße minimal reduziert für bessere Stabilität */
    line-height: 1.2;
    letter-spacing: -1.5px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 5rem;
    /* Schiebt die gesamte Überschrift weiter nach unten */
    margin-bottom: 1.75rem;
    /* Angepasst für mehr Luft zwischen Headline und Subline */
    max-width: 95vw;
    /* Verhindert horizontales Ausbrechen */
    margin-inline: auto;
    overflow-wrap: break-word;
}

h1 .gradient-text {
    color: var(--btn-grad-from);
    background: none;
    -webkit-text-fill-color: initial;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 550px;
        gap: 1.25rem;
        /* Gleicher Abstand wie FAQ Items */
    }
}

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

.feature-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2.25rem 2.5rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    width: 100%;
    /* Die Höhe passt sich nun dem Inhalt an, min-height sorgt für Konsistenz */
    min-height: 500px;
}

@media (max-width: 1100px) {
    .feature-card {
        padding: 2.25rem 1.5rem;
    }
}



.feature-card:focus {
    outline: none;
}

.feature-card:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 2px var(--focus-gap), 0 0 0 5px #ffffff, 0 0 0 8px var(--btn-grad-from) !important;
    border-radius: 1rem;
    transition: none !important;
}



/* Illustration auf der Rückseite (Wasserzeichen-Look) */
.card-back-illustration {
    display: block;
    width: 65px;
    height: auto;
    filter: brightness(0);
    opacity: 0.1;
    pointer-events: none;
    margin: 2rem auto 0;
}

.subline-icon-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto var(--section-sub-margin-bottom);
}

.subline-icon-wrapper .section-sub {
    margin-bottom: 0 !important;
    max-width: 650px;
}

.subline-side-icon {
    width: clamp(40px, 8vw, 65px);
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 5px rgba(30, 58, 138, 0.05));
}

.pdf-left {
    transform: rotate(-12deg) translateY(-2px);
    order: 1;
}

.subline-icon-wrapper .section-sub {
    order: 2;
}

.docx-right {
    transform: rotate(12deg) translateY(2px);
    order: 3;
}

@media (max-width: 768px) {
    .subline-icon-wrapper {
        gap: 1.5rem 1rem;
    }

    .subline-icon-wrapper .section-sub {
        width: 100%;
        max-width: 100%;
        order: -1;
        /* Text at the top */
        text-align: center;
    }

    .subline-side-icon {
        width: 64px;
        order: 1;
        /* Icons below */
    }
}


@media (min-width: 769px) {
    .card-back-illustration {
        position: absolute;
        bottom: 1.75rem;
        left: 50%;
        transform: translateX(-50%);
        margin: 0;
    }

}

@media (max-width: 768px) {
    .feature-card {
        min-height: auto;
        margin-bottom: 0;
    }

    .card-icon-box {
        margin-bottom: 0.5rem;
    }
}

.card-icon-box {
    width: 44px;
    height: 44px;
    background: #eff6ff;
    color: var(--btn-grad-from);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-step-number {
    font-size: 1.25rem;
    font-weight: 700;
}

.card-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1rem;
    letter-spacing: -0.02em;
    line-height: 1.6;
    min-height: auto;
    display: block;
}

.card-body p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* ── FLOW ANIMATION (Der Weg) ─────────────────────────── */

/* The faint static "track" line */
.flow-track {
    fill: none;
    stroke: rgba(30, 58, 138, 0.1);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* The animated glow line drawn on top */
.flow-dash {
    fill: none;
    stroke: url(#flowGrad);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transition: opacity 0.5s ease 0.3s;
}

.flow-dash.flow-active {
    opacity: 1;
    animation: flowDraw 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes flowDraw {
    from {
        stroke-dashoffset: var(--path-len, 1000);
    }

    to {
        stroke-dashoffset: 0;
    }
}

/* Particle group - hidden until section is in view */
.flow-particle {
    opacity: 0;
    transition: opacity 0.4s ease 1.2s;
}

.flow-particle.flow-active {
    opacity: 1;
}

/* Hide on smaller screens where icons stack vertically */
@media (max-width: 900px) {
    #flow-svg {
        display: none;
    }
}

.hero-sub {
    font-size: 1.11rem;
    color: var(--text-secondary);
    max-width: 600px;
    width: 100%;
    line-height: 1.85;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
}

.hero-cta-hint {
    color: var(--text-secondary) !important;
}

.trust-badges-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.trust-badge-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.trust-badge svg {
    color: var(--btn-grad-from);
    opacity: 0.8;
}

@media (max-width: 480px) {
    .trust-badge-row.bottom {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Trust-Badges auf Mobile sofort einblenden (nicht fliegen lassen) */
    .trust-badge.reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        visibility: visible !important;
    }
}

section.content-section {
    padding: 160px 10%;
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
    /* Remove all gaps between sections */
}

@media (max-width: 768px) {
    section.content-section {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

section.content-section.alt-bg {
    background: #ffffff;
}

section.content-section h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin: 0 auto 0.75rem;
    line-height: 1.25;
    text-align: center;
    max-width: 650px;
}

.section-claim {
    text-align: center;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0.5rem auto 1.5rem;
    max-width: 650px;
    line-height: 1.4;
}

section.content-section .section-sub {
    font-size: var(--section-sub-size);
    color: var(--text-secondary);
    max-width: var(--section-sub-max);
    line-height: 1.8;
    margin: 0 auto var(--section-sub-margin-bottom);
    text-align: center;
}

#functions .section-sub,
#comparison .section-sub,
#use-cases .section-sub,
#functions .section-claim,
#comparison .section-claim {
    color: rgba(255, 255, 255, 0.85);
}

#pricing {
    background-color: #ffffff;
}

.pricing-header {
    margin-bottom: 0;
}

.pricing-header .section-sub {
    margin-bottom: 2.5rem;
}

.pricing-toggle-wrap {
    display: flex;
    justify-content: center;
    margin: 0 0 4rem 0;
}

.pricing-toggle {
    position: relative;
    display: inline-flex;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 999px;
    padding: 4px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.toggle-btn {
    position: relative;
    z-index: 2;
    background: transparent;
    border: none;
    padding: 8px 24px;
    border-radius: 999px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: background 0.18s ease, opacity 0.18s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (hover: hover) {
    .toggle-btn:hover:not(.active) {
        background: rgba(0, 0, 0, 0.03);
    }
}

.toggle-btn span {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.8;
}

.toggle-btn.active {
    color: #1a1a1a;
}

.toggle-indicator {
    position: absolute;
    top: 4px;
    bottom: 4px;
    width: 0;
    left: 4px;
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    pointer-events: none;
}

#pricing-grid-individual {
    display: none;
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
}

#pricing-grid-individual .plan-desc {
    margin-bottom: 0.9rem;
    min-height: auto;
}

@media (max-width: 1100px) {
    #pricing-grid-individual {
        max-width: 480px;
    }
}

.pricing-grids-container {
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
    /* Karten dehnen sich zur gleichen Höhe und richten alles auf einer Linie aus */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

.pricing-card {
    position: relative;
    border-radius: 1rem;
    border: 1px solid var(--border);
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: border-color 0.25s, opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 1101px) {
    .pricing-card:not(.featured) {
        margin-top: 2.25rem;
        /* Pusht normale Karten nach unten, um Top-Padding der Featured Card exakt auszugleichen */
    }
}

.pricing-card.featured {
    border-color: var(--btn-grad-from);
    background: #ffffff;
    box-shadow: 0 12px 48px rgba(30, 58, 138, 0.08);
    /* Keep the prominent shadow for featured */
    overflow: hidden;
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--btn-grad-from);
    color: #fff;
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    z-index: 2;
}

.pricing-card-inner {
    padding: 2.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    text-align: left;
}

.pricing-card.featured .pricing-card-inner {
    padding-top: 4.5rem;
    /* Mehr Platz unter dem blauen Ribbon (2.25rem Abstand zum Ribbon) */
}

@media (max-width: 1100px) {
    .pricing-card-inner {
        padding: 2.25rem 1.5rem;
        /* Konsistentes horizontales Padding wie Referenz-Cards (Der Weg) */
    }
}

.pricing-top {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.plan-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.6;
    letter-spacing: -0.02em;
    margin: 0 0 1rem;
}

.plan-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    margin-top: 1rem;
    min-height: 4.5rem;
    /* Erhöht, damit alle Karten dieselbe Höhe erreichen */
}

.price-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: 0.25rem;
    white-space: nowrap;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    flex-shrink: 0;
}

.price-number {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -2px;
    line-height: 1;
}

.price-custom {
    font-size: 1.75rem;
    letter-spacing: -1px;
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: 2px;
    flex-shrink: 0;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    margin-top: 0.5rem;
    font-style: italic;
    line-height: 1.6;
}

.price-note-sub {
    font-style: italic;
}

.plan-features-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* Erhöht, damit die Trennlinie nicht am Text klebt */
    flex: 1;
}

.price-notes-extra {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: auto;
    /* Pusht die Notizen nach ganz unten */
    padding-top: 1.25rem;
    position: relative;
}

.price-notes-extra::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border);
}

.features-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-height: 13.5rem;
    /* Groß genug für die Kauf-Lizenz, damit 1-Jahres-Lizenz dieselbe Höhe bekommt */
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Tooltip Styles */
.info-tooltip {
    /* Reset Button Styles */
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    margin-left: 6px;
    font-family: inherit;
    font-size: inherit;
    color: inherit;

    position: relative;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    opacity: 1;
    transition: color 0.2s, opacity 0.2s;
    vertical-align: middle;
    transform: translateY(-1px);
}

/* Vergrößert den Hover-Bereich, ohne das Layout zu beeinflussen */
.info-tooltip::before {
    content: '';
    position: absolute;
    inset: -10px;
    z-index: 1;
}

.info-tooltip svg {
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.info-tooltip:hover,
.info-tooltip:focus-visible {
    outline: none;
}

/* Farbdynamik nach Nutzerwunsch */
.info-tooltip {
    color: var(--text-secondary);
}

.info-tooltip:hover {
    color: #151515;
}

/* Fokus-Ring für Barrierefreiheit */
.info-tooltip:focus-visible svg {
    color: var(--btn-grad-from);
    transform: scale(1.1);
}

.info-tooltip .tooltip-text {
    visibility: hidden;
    width: 260px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
    padding: 15px 18px;
    position: absolute;
    z-index: 1000;
    bottom: 160%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    font-size: 0.9rem;
    line-height: 1.5;
    font-weight: 400;
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    white-space: normal;
}

.info-tooltip .tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #1a1a1a transparent transparent transparent;
}

.info-tooltip:hover .tooltip-text,
.info-tooltip:focus-visible .tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

@media (max-width: 600px) {

    /* Mobile Tooltip Basis: Mehr Breite erlauben */
    .info-tooltip .tooltip-text {
        width: 260px;
        max-width: 85vw;
        left: 50%;
        right: auto;
        transform: translateX(-50%) translateY(0);
        margin-left: 0;
        text-align: left;
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .info-tooltip .tooltip-text::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    /* Hover-Zustände (Bewegung nach oben) */
    .info-tooltip:hover .tooltip-text,
    .info-tooltip:focus-visible .tooltip-text {
        visibility: visible;
        opacity: 1;
        transform: translateX(-50%) translateY(-5px);
    }
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 1.33rem;
    margin-top: 0.127rem;
    /* Standard für Pricing Cards */
    color: var(--btn-grad-from);
}

.check-icon svg {
    width: 16px;
    height: 16px;
}

.pricing-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-btn);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-active);
    color: var(--btn-grad-to);
    background: transparent;
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    margin-left: auto;
    margin-right: auto;
}

#comparison {
    padding: 160px 10%;
    background-color: #151515;
    color: #ffffff;
    overflow: hidden;
    contain: layout paint;
}

@media (max-width: 768px) {
    #comparison {
        padding-top: 40px;
        padding-bottom: 60px;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

.comparison-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.comparison-heading {
    /* Nutzt jetzt die globalen content-section h2 Werte für perfekte Konsistenz */
    max-width: 650px;
}

.comparison-sub {
    text-align: center;
    max-width: 560px;
    margin: 0 auto var(--section-sub-margin-bottom);
}

.comparison-grid-dual {
    display: flex;
    gap: 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.comparison-box {
    flex: 1;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 2.25rem 2.5rem;
    min-height: 400px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.box-other {
    opacity: 0.9;
}

.box-naluvio {
    background: linear-gradient(160deg, #1c1e28 0%, #151515 100%);
    border-color: rgba(82, 113, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 30px rgba(30, 58, 138, 0.15);
    position: relative;
    overflow: hidden;
    transform: none;
}

.naluvio-logo-white {
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

@media (max-width: 992px) {
    .comparison-grid-dual {
        flex-direction: column;
        gap: 1.5rem;
    }

    .box-naluvio {
        transform: scale(1);
        /* Auf Mobile keinen extra Scale, damit es bündig bleibt */
    }
}

@media (max-width: 768px) {
    .comparison-box {
        padding: 2rem 1.5rem;
        /* Weniger Padding auf kleinen Handys für mehr Platz */
    }
}

.box-naluvio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--btn-grad-from), var(--btn-grad-to));
}


.col-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 40px;
}

.naluvio-title {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.box-naluvio .good-icon {
    color: rgba(255, 255, 255, 0.85);
}

.box-naluvio .comp-text {
    color: rgba(255, 255, 255, 0.75);
}

.box-naluvio .comp-text strong {
    color: rgba(255, 255, 255, 0.85);
}

.leen-logo-white {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.comp-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
}

.comp-item.bad {
    color: rgba(255, 255, 255, 0.7);
}

.comp-item.good {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.comp-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 50%;
    line-height: 1;
    margin-top: 0.15rem;
}

.bad-icon {
    color: rgba(255, 255, 255, 0.7);
    background: none;
    border: none;
    box-shadow: none;
}

.bad-icon svg {
    width: 16px;
    height: 16px;
}

.good-icon {
    color: rgba(255, 255, 255, 0.7);
    background: none;
    border: none;
    box-shadow: none;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.2));
}

.good-icon svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 640px) {
    .comparison-card {
        grid-template-columns: minmax(0, 1fr);
        max-width: 100%;
        width: 100%;
        background: #ffffff;
        overflow: hidden;
        /* Wichtig für die Ränder-Stabilität */
    }

    .comparison-divider {
        display: none;
    }

    .col-other {
        padding: 2.25rem 1.25rem 1.25rem;
        border-radius: 1rem 1rem 0 0;
        /* Jetzt oben beidseitig abgerundet */
    }

    .col-naluvio {
        margin: 0.5rem 0.5rem 0.75rem;
        border-radius: 1rem;
        border: 1px solid var(--btn-grad-from);
        background: #ffffff;
        box-shadow: 0 8px 32px rgba(30, 58, 138, 0.08);
        /* Highlight Schatten */
        padding: 2.25rem 1.25rem;
    }
}

/* ── TRUST BANNER ────────────────────────────── */
.trust-banner-small {
    padding: 3.5rem 10% !important;
    background: #151515 !important;
    color: #ffffff !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-banner-inner {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
}

.trust-item {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
}

.trust-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-top: 0.25rem;
}

@media (max-width: 900px) {
    .trust-banner-inner {
        flex-direction: column;
        gap: 1.25rem;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .trust-banner-small {
        padding: 2rem 1.25rem !important;
    }
}

.cta-section {
    padding: 96px 10%;
    background: var(--bg-card);
    text-align: center;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.main-footer {
    padding: 140px 0 40px;
    background: #ffffff;
    border-top: 1px solid var(--border);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 140px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    padding: 0;
}

.footer-brand {
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

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

.footer-tagline {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.footer-cta {
    margin: 0;
    /* Nutzt nun die globalen btn-primary Styles */
}

.footer-trust {
    margin-top: 1.25rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-links-grid {
    display: flex;
    gap: 5rem;
}

.footer-column h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.footer-column nav {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    align-items: flex-start;
}

.footer-column nav a,
.footer-column nav button {
    text-decoration: none;
    font-size: 1rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    margin: 0;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    /* Base for the invisible hitbox */
}

/* Invisible hitbox expansion using pseudo-element */
.footer-column nav a::before,
.footer-column nav button::before {
    content: "";
    position: absolute;
    top: -0.5rem;
    bottom: -0.5rem;
    left: -1rem;
    right: -1rem;
}

.footer-column nav a:hover,
.footer-column nav button:hover {
    color: var(--btn-grad-from);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footer-bottom p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

.footer-mission {
    text-align: left;
    max-width: 600px;
}

.footer-copyright {
    text-align: right;
}

@media (max-width: 1240px) {

    .legal-content .container,
    .footer-top,
    .footer-bottom {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}


.roi-control-area {
    padding: 2.25rem 2.5rem;
    width: 100%;
    background: #ffffff;
}

.roi-control {
    width: 100%;
}

.roi-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
    gap: 1rem;
}

.roi-label-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.roi-label-wrap label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
}

#employee-count-display {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--btn-grad-from);
    letter-spacing: -1px;
}

.roi-hint {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: right;
    line-height: 1.5;
    max-width: none;
}

.roi-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 100px;
    background: linear-gradient(to right, var(--btn-grad-from) 0%, var(--btn-grad-from) var(--slider-pos, 20%), #f1f1f1 var(--slider-pos, 20%), #f1f1f1 100%);
    cursor: pointer;
    outline: none;
}

.roi-basis-text {
    font-size: 1rem;
    color: var(--text-secondary);
    opacity: 1;
    margin-top: 1.5rem;
    text-align: right;
    line-height: 1.4;
    width: 100%;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 3.5px solid var(--btn-grad-from);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-top: -2.0px;
}

.roi-slider::-moz-range-thumb {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2), 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 3.5px solid var(--btn-grad-from);
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.roi-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

/* --- Efficiency Compact Layout --- */

.efficiency-compact {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 0;
    background: #ffffff;
    border-radius: 1rem;
    position: relative;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.eff-horizontal-divider {
    width: 100%;
    height: 1px;
    background: var(--border);
}

.eff-main-content {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.eff-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2.25rem 2.5rem;
}

.side-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.6;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.sub-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.sub-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    padding: 2.25rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.sub-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sub-card-icon {
    width: 32px;
    height: 32px;
    background: #f1f1f1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    flex-shrink: 0;
}

.sub-card-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.sub-card-value-wrap {
    display: flex;
    align-items: baseline;
}

.sub-card-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.sub-card-unit {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin-left: 0.2rem;
}

.eff-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
    margin-top: 0;
}

.total-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.total-value-wrap {
    display: flex;
    align-items: baseline;
}

.total-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
}

/* Divider */

.eff-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: stretch;
    position: relative;
    width: 2px;
}

.divider-line {
    position: absolute;
    top: 4rem;
    bottom: 4rem;
    left: 50%;
    width: 1px;
    background: var(--border);
    transform: translateX(-50%);
}

.naluvio-brand-badge {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.naluvio-brand-badge svg {
    width: 30px;
    height: 30px;
}

.brand-logo-img {
    width: 80px;
    height: auto;
    display: block;
}


/* Naluvio Side */

.eff-naluvio {
    flex: 1;
    background: transparent;
}

.main-saving-card {
    background: #ffffff;
    border: 1px solid var(--btn-grad-from);
    border-radius: 1rem;
    padding: 2.25rem 2.5rem;
    color: var(--text-primary);
    box-shadow: 0 12px 48px rgba(30, 58, 138, 0.08);
    /* Same shadow as pricing featured */
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.saving-card-header {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.saving-card-large {
    font-size: 2.15rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
    color: var(--btn-grad-from);
    font-variant-numeric: tabular-nums;
}

.saving-card-period {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.fte-badge {
    display: inline-flex;
    gap: 0.35rem;
    background: rgba(30, 58, 138, 0.05);
    /* Very subtle brand blue haze */
    border: 1px solid rgba(30, 58, 138, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    color: var(--btn-grad-from);
    font-size: 0.9375rem;
    margin-bottom: 3rem;
    align-self: flex-start;
    font-variant-numeric: tabular-nums;
}

.saving-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
    margin-bottom: 2rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--border);
}

.item-label {
    color: var(--text-secondary);
}

.item-value {
    font-weight: 400;
    color: var(--text-secondary);
    /* Graue Schrift wie "pro Monat" */
    font-variant-numeric: tabular-nums;
}

.item-value strong {
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
    /* Zahl bleibt dunkel und fett */
}

.saving-bottom-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--btn-grad-from);
    margin-top: 2rem;
    line-height: 1.7;
    padding: 0 1rem;
}

.saving-bottom-text span {
    font-variant-numeric: tabular-nums;
}

.highlight-blue {
    color: var(--btn-grad-from);
}

.roi-disclaimer {
    max-width: 1000px;
    width: 100%;
    margin: 3.5rem auto 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: center;
    padding: 0 1.5rem;
    font-style: italic;
}

@media (max-width: 1150px) {
    .efficiency-compact {
        flex-direction: column;
        border-radius: 1rem;
    }

    .saving-card-large {
        font-size: 2rem;
    }

    .roi-control-area {
        padding: 2.25rem 2.5rem;
    }

    .eff-horizontal-divider {
        margin: 0 2.5rem;
    }

    .eff-main-content {
        flex-direction: column;
        padding: 0 2.5rem 2.5rem;
    }

    .eff-side {
        padding: 2.5rem 0;
        /* Adjusted to 0 horizontal padding as main content handles it */
        width: 100%;
    }

    .eff-divider {
        width: 100%;
        height: 80px;
        margin: 0;
    }

    .divider-line {
        width: 80%;
        height: 1px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .naluvio-brand-badge {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 44px;
        width: 44px;
        height: 44px;
        padding: 0;
    }

    .roi-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .roi-hint {
        text-align: left;
        max-width: none;
    }

    .roi-basis-text {
        text-align: left;
    }
}

@media (max-width: 600px) {
    .roi-control-area {
        padding: 2rem 1.5rem;
        /* Konsistentes horizontales Padding wie Referenz-Cards */
    }

    .eff-horizontal-divider {
        margin: 0 1.5rem;
        /* Konsistenter Abstand zum Rand */
    }

    .eff-main-content {
        padding: 0 1.5rem 2rem;
        /* Konsistentes horizontales Padding wie Referenz-Cards */
    }

    .eff-side {
        padding: 1.5rem 0;
        /* Remove side padding to give child cards more space */
    }

    .main-saving-card {
        padding: 2rem 1.5rem;
        /* Konsistentes horizontales Padding wie Referenz-Cards */
    }

    .sub-card {
        padding: 1.5rem;
        /* Konsistentes horizontales Padding wie Referenz-Cards */
    }

    .saving-card-large {
        font-size: 1.75rem;
        /* Matches the minimum size of section headlines */
    }

    .side-title {
        margin-bottom: 1.5rem;
    }

    .eff-total-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        /* Alles untereinander bündig links */
        gap: 0.5rem;
    }

    .total-label {
        text-align: left !important;
        line-height: 1.4;
    }

    .total-value {
        text-align: right !important;
        white-space: nowrap !important;
        /* Verhindert das Umbrechen der Einheit */
    }

    .sub-card-label {
        font-size: 0.9375rem;
        /* Slightly smaller labels for mobile */
    }

    .fte-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }
}

.hardware-section {
    background-color: #ffffff;
    text-align: center;
}

.hardware-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (max-width: 820px) {
    .hardware-content {
        flex-direction: column;
        align-items: flex-start;
        /* Links statt Center */
        text-align: left;
        /* Links statt Center */
    }
}

.hardware-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.25rem 2.5rem;
}

@media (max-width: 820px) {
    .hardware-visual {
        width: 100%;
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .hardware-visual {
        padding: 1.5rem;
        /* Konsistentes horizontales Padding wie Referenz-Cards */
    }

    .hardware-text {
        padding: 1.5rem;
        /* Konsistentes horizontales Padding wie Referenz-Cards */
    }
}

.hardware-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 1rem;
}

.hardware-text {
    flex: 1.2;
    padding: 2.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hardware-accent {
    margin-top: 2.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border) !important;
    width: 100%;
}

.hardware-accent .accent-title {
    color: var(--text-secondary);
    font-weight: 600;
}

.hardware-accent .accent-subtext {
    color: var(--text-secondary);
}

@media (max-width: 820px) {
    .hardware-text {
        padding: 2rem;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* Links ausrichten */
    }
}

.hardware-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.6;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.hardware-list {
    gap: 1rem;
}

#mobile-access .hardware-img {
    max-width: 250px !important;
    width: auto !important;
    border-radius: 0 !important;
}

@media (max-width: 768px) {
    #mobile-access .hardware-img {
        max-width: 190px !important;
    }
}

.hardware-list li {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.9;
}

.hardware-list .check-icon {
    height: 1.9rem;
    margin-top: 0;
    /* Passend zum Line-Height 1.9 der Hardware-Liste */
}

.vision-section {
    text-align: center;
}

.vision-heading {
    /* Größere Breite für das neue Mantra */
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.vision-heading span {
    color: #151515;
    display: inline-block;
}

.vision-sub {
    /* Folgt jetzt dem Standard für perfekte Konsistenz */
    max-width: var(--section-sub-max);
    margin: 0 auto var(--section-sub-margin-bottom);
}

.vision-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: left;
}

@media (max-width: 768px) {
    .vision-card {
        flex-direction: column;
    }
}

.vision-photo {
    width: 380px;
    flex-shrink: 0;
    background: #f4f7ff;
    border-right: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .vision-photo {
        width: 100%;
        min-height: 240px;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}

.vision-photo picture {
    display: block;
    width: 100%;
    height: 100%;
}

.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center top;
    /* Optimale Positionierung für Porträts */
}

.vision-photo-placeholder svg {
    opacity: 0.4;
}

.vision-photo-placeholder span {
    font-size: 0.8rem;
    font-weight: 400;
}

.vision-photo-placeholder code {
    font-size: 0.72rem;
    background: var(--border);
    padding: 2px 7px;
    border-radius: 4px;
    color: var(--text-secondary);
}

.vision-text {
    padding: 2.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    justify-content: center;
    flex: 1;
}

@media (max-width: 768px) {
    .vision-text {
        padding: 2rem 1.5rem;
        /* Konsistentes horizontales Padding wie Referenz-Cards (Der Weg) */
    }
}

.vision-author {
    margin-top: 1.5rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
    margin-top: 0.25rem;
}

.linkedin-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(30, 58, 138, 0.05);
    color: var(--btn-grad-from);
    border: 1px solid rgba(30, 58, 138, 0.1);
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.15s ease;
    margin-top: -1px;
}

.linkedin-badge:hover {
    background: rgba(30, 58, 138, 0.12);
    border-color: rgba(30, 58, 138, 0.3);
}

.linkedin-badge svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.vision-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin: 0;
}

.vision-quote {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-primary);
    margin: 1rem 0 2rem;
    font-style: italic;
    border-left: 3px solid var(--btn-grad-from);
    padding-left: 1.5rem;
    line-height: 1.8;
}

.vision-quote p {
    margin-bottom: 1rem;
    font-size: inherit;
    color: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.vision-quote p:last-child {
    margin-bottom: 0;
}

.vision-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

.faq-section h2 {
    margin-bottom: 0.5rem;
}

.faq-list {
    width: 100%;
    max-width: 1200px;
    margin: 2.5rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
    text-align: left;
}

.faq-category-title:first-child {
    margin-top: 0;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(30, 58, 138, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.5rem 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-align: left;
    letter-spacing: -0.01em;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--btn-grad-from);
}

html:not(.is-using-mouse) .faq-question:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 3px var(--btn-grad-from) !important;
    border-radius: 1rem;
    transition: none !important;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-secondary);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
    display: flex;
}

.faq-question[aria-expanded="true"] {
    color: var(--btn-grad-from);
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    color: var(--btn-grad-from);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: left;
}

.faq-answer:not([hidden]) {
    display: block;
}

.faq-answer p {
    padding: 0 2.5rem 1.5rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    max-width: 850px;
}

.faq-examples {
    padding: 0 2.5rem 1rem 4rem;
    max-width: 850px;
}

@media (max-width: 600px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
        /* Konsistentes horizontales Padding wie Referenz-Cards */
    }

    .faq-answer p {
        padding: 0 1.5rem 1.25rem;
        /* Konsistentes horizontales Padding wie Referenz-Cards */
    }

    .faq-examples {
        padding: 0 1.5rem 1rem 2.5rem;
        /* Konsistentes horizontales Padding wie Referenz-Cards */
    }
}

.faq-example-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    font-style: italic;
    margin-left: -1.5rem;
}

.faq-example-item::before {
    content: "•";
    position: static;
    color: var(--text-secondary);
    font-weight: 700;
    font-size: 1.25rem;
    margin-top: -0.45rem;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.85s cubic-bezier(0.19, 1, 0.22, 1),
        opacity 0.85s cubic-bezier(0.19, 1, 0.22, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.2s;
}

.reveal-delay-2 {
    transition-delay: 0.4s;
}

.reveal-delay-3 {
    transition-delay: 0.6s;
}

.reveal-delay-4 {
    transition-delay: 0.8s;
}

.reveal-delay-5 {
    transition-delay: 1.0s;
}

.reveal-delay-6 {
    transition-delay: 1.2s;
}

.reveal-delay-7 {
    transition-delay: 1.4s;
}

.reveal-delay-8 {
    transition-delay: 1.6s;
}

.reveal-delay-9 {
    transition-delay: 1.8s;
}

.reveal-delay-10 {
    transition-delay: 2.0s;
}

.reveal-delay-11 {
    transition-delay: 2.2s;
}

.reveal-delay-12 {
    transition-delay: 2.4s;
}

.reveal-delay-13 {
    transition-delay: 2.6s;
}

.reveal-delay-14 {
    transition-delay: 2.8s;
}

.reveal-delay-15 {
    transition-delay: 3.0s;
}

.reveal-delay-16 {
    transition-delay: 3.2s;
}

.reveal-delay-17 {
    transition-delay: 3.4s;
}

.reveal-delay-18 {
    transition-delay: 3.6s;
}

.reveal-delay-19 {
    transition-delay: 3.8s;
}

.reveal-delay-20 {
    transition-delay: 4.0s;
}

/* ── MOBILE REVEAL SPEEDUP ── */
@media (max-width: 768px) {
    .reveal {
        /* Schnellere Grund-Animation für flüssiges Scrollen auf dem Handy */
        transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.4s cubic-bezier(0.19, 1, 0.22, 1) !important;
    }

    /* Extreme Verzögerungen entfernen, da Elemente auf Mobile nacheinander in den Viewport kommen */
    [class*="reveal-delay-"] {
        transition-delay: 0.1s !important;
    }
}

@media (max-width: 1024px) {

    section.content-section,
    .cta-section {
        padding: 72px 6%;
    }
}

@media (max-width: 768px) {
    .aurora-container {
        padding-top: 60px !important;
        /* Drastisch reduziert und erzwungen für weniger Platz zum Header */
        padding-bottom: 10px;
        min-height: auto;
        justify-content: flex-start !important;
        /* Verhindert Zentrierung, die den Abstand vergrößert */
    }

    h1 {
        letter-spacing: -1px;
        margin-top: 0 !important;
    }

    .hero {
        padding: 0 5%;
    }

    #features {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .orbital-wrap {
        min-height: 380px;
        height: auto;
        padding: 0;
        margin-top: 0;
    }

    body::after {
        top: -48px !important;
        bottom: -48px !important;
        inset: -48px 0 !important;
    }

    body {
        padding-top: calc(48px + env(safe-area-inset-top));
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: calc(48px + env(safe-area-inset-top));
        background: #ffffff !important;
        z-index: 10005 !important;
        padding-top: env(safe-area-inset-top);
        display: flex;
        align-items: center;
        /* Jetzt zentriert im Bereich unter dem Notch */
        padding-left: 20px;
        padding-right: 20px;
        transform: translateY(0);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    header.header-hidden {
        transform: translateY(-100%) !important;
    }

    .header-container {
        height: 100%;
        padding: 0;
    }

    .logo-img {
        height: 28px;
    }

    .mobile-toggle {
        width: 24px;
        height: 17px;
        position: relative;
    }

    .mobile-toggle::after {
        content: '';
        position: absolute;
        top: -15px;
        bottom: -15px;
        left: -20px;
        right: -15px;
    }

    header nav a:not(.btn-primary) {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    section.content-section,
    .cta-section {
        padding: 40px 5%;
        /* Von 56px auf 40px reduziert */
    }

    .main-footer {
        padding: 60px 0 32px;
    }

    .footer-top,
    .footer-bottom {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .footer-top {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-links-grid {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .footer-column {
        flex: none;
        width: 100%;
    }

    .footer-column nav {
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-mission,
    .footer-copyright {
        text-align: center;
        max-width: 100%;
    }
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 12000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    backface-visibility: hidden;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 25, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.modal.active .modal-overlay {
    opacity: 1;
}

.scroll-locked {
    /* Kein overflow hidden auf html, da sonst Mobile-Touch einfriert */
    overscroll-behavior: none;
}

.scroll-locked body {
    overflow: hidden !important;
    overscroll-behavior: none !important;
}

.modal-container {
    background: #ffffff;
    width: 90%;
    max-width: 600px;
    border-radius: 1rem;
    position: relative;
    z-index: 10;
    border: 1px solid var(--border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: scale(0.95) translateY(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.modal.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-header {
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 20;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    padding: 0.5rem;
    color: var(--text-secondary);
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -0.25rem;
    flex-shrink: 0;
}

.modal-close:hover {
    background: #f4f4f5;
    color: var(--text-primary);
}

.modal-body {
    padding: 2rem;
}

@media (max-width: 480px) {
    .modal {
        padding: 1rem 0;
        /* Sicherheitsabstand oben/unten */
    }

    .modal-container {
        width: 95%;
        max-height: 82vh;
        max-height: 82dvh;
        border-radius: 12px;
    }

    .modal-header {
        padding: 1.25rem 1rem;
    }

    .modal-body {
        padding: 1.25rem 1rem;
    }
}

.modal-intro {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
    animation: fadeIn 0.3s ease-out;
}

.modal-intro a {
    position: relative;
    color: var(--btn-grad-from);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.modal-intro a::after {
    content: "";
    position: absolute;
    inset: -10px -15px;
}

.modal-intro a:hover {
    text-decoration: none;
}

.leen-form .form-group {
    margin-bottom: 2rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.leen-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    /* Etwas großzügigerer Gap für saubere Trennung */
    align-items: start;
    margin-bottom: 2rem;
}

.leen-form .form-row .form-group {
    margin-bottom: 0;
}

.leen-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.leen-form input,
.leen-form select,
.leen-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #ffffff;
    border: 1px solid var(--border-active);
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1.1rem;
    /* Leicht vergrößerte Schrift für bessere Lesbarkeit */
    color: var(--text-primary);
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    display: block;
}

.leen-form input,
.leen-form select {
    appearance: none;
    -webkit-appearance: none;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.leen-form textarea {
    resize: vertical;
    /* Verhindert das breiter ziehen des Fensters */
    min-height: 80px;
    height: auto;
    white-space: pre-wrap;
    /* Ermöglicht Zeilenumbrüche */
    line-height: 1.5;
}

.leen-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2362646A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.25rem center;
    padding-right: 3rem;
}

.leen-form input:focus,
.leen-form select:focus,
.leen-form textarea:focus {
    outline: none !important;
    border-color: var(--btn-grad-from);
}

.leen-form input.invalid,
.leen-form select.invalid,
.leen-form textarea.invalid {
    border-color: #dc2626 !important;
}

.error-message {
    color: #dc2626;
    font-size: 0.875rem;
    position: absolute;
    top: 100%;
    margin-top: 4px;
    left: 0;
    display: block;
    animation: fadeIn 0.15s ease-out;
    pointer-events: none;
    z-index: 10;
    line-height: 1.3;
}

.leen-form input:focus-visible,
.leen-form select:focus-visible,
.leen-form textarea:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 2px var(--focus-gap), 0 0 0 5px #ffffff, 0 0 0 8px var(--btn-grad-from) !important;
    border-color: var(--btn-grad-from);
    transition: none !important;
}

html.is-using-mouse .leen-form input:focus,
html.is-using-mouse .leen-form select:focus,
html.is-using-mouse .leen-form textarea:focus {
    outline: none !important;
    box-shadow: none !important;
}

.form-step {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.form-step.active {
    display: block;
}

.form-step-nav {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 0;
}

@media (max-width: 480px) {
    .form-step-nav {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }

    .form-step-nav .btn-primary,
    .form-step-nav .btn-secondary {
        width: 100% !important;
        margin: 0 !important;
        font-size: 1rem !important;
        font-family: var(--font-main) !important;
    }
}

.form-step-nav .btn-primary,
.form-step-nav .btn-secondary {
    min-width: 140px;
}

@media (hover: hover) {
    .form-step-nav .btn-secondary:hover {
        background: #e4e4e7;
        border-color: var(--btn-grad-from);
    }
}

.form-step-nav .btn-primary,
.form-step .btn-block {
    min-height: 44px;
    padding: 0.75rem 1.75rem;
    min-width: 120px;
}

.form-step-nav .btn-secondary:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 2px var(--focus-gap), 0 0 0 5px #ffffff, 0 0 0 8px var(--btn-grad-from);
    transition: none !important;
}

.leen-form .btn-block {
    width: 100%;
    margin-top: 0;
    justify-content: center;
    padding: 1rem;
}

.btn-primary.error {
    background: #dc2626 !important;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3) !important;
}

/* ── ORBITAL ADVANTAGES (EXACT REPLICA) ──────────────────────── */
#features {
    background-color: #151515;
    padding-top: 160px;
    padding-bottom: 120px;
    position: relative;
    width: 100%;
    color: #ffffff;
    overflow: hidden;
    contain: layout paint;
}

#final-cta {
    background-color: #151515;
    padding-top: 160px;
    padding-bottom: 160px;
    position: relative;
    width: 100%;
    color: #ffffff;
    overflow: hidden;
    contain: layout paint;
}

#final-cta .section-cta-container {
    margin-top: 4.5rem;
}

#features h2,
#functions h2,
#comparison h2,
#final-cta h2 {
    color: #fff;
    position: relative;
    z-index: 5;
    /* Containment für stabilere Rendering-Layer */
    contain: content;
}

#features .section-sub,
#functions .section-sub,
#final-cta .section-sub {
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 5;
}

#features .section-sub,
#functions .section-sub {
    margin-bottom: 3.75rem;
}

#final-cta .section-sub {
    margin-bottom: 0;
}

.cta-subtext {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1.5rem;
    /* Erhöht auf 1.5rem, um Hero-Stil zu matchen */
    text-align: center;
    font-weight: 400;
}

#features .section-badge,
#functions .section-badge,
#comparison .section-badge,
#use-cases .section-badge,
#final-cta .section-badge {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 5;
}

.orbital-wrap {
    position: relative;
    width: 100%;
    height: calc(var(--orbital-radius, 250px) * 2 + 220px);
    min-height: 500px;
    margin-top: -1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
    /* Isoliert die Sektion für maximale Stabilität */
    contain: layout paint;
}

.orbital-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 100%;
    min-height: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbital-center-piece {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.orbital-core-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbital-core {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--btn-grad-from) 0%, var(--btn-grad-to) 100%);
    border-radius: 50%;
    z-index: 15;
    position: relative;
    box-shadow: 0 0 20px rgba(var(--btn-grad-from-rgb), 0.4);
}

.orbital-center-dot {
    position: absolute;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    z-index: 20;
}

.orbital-ring-pulse-1,
.orbital-ring-pulse-2 {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(var(--btn-grad-from-rgb), 0.3);
    animation: radar-ripple 10s cubic-bezier(0.2, 0.5, 0.5, 1) infinite;
    opacity: 0;
    pointer-events: none;
}

.orbital-ring-pulse-1 {
    width: 64px;
    height: 64px;
    animation-delay: 0s;
}

.orbital-ring-pulse-2 {
    width: 64px;
    height: 64px;
    animation-delay: 5s;
}

@keyframes radar-ripple {
    0% {
        transform: scale(1);
        opacity: 0;
    }

    4% {
        opacity: 0.6;
    }

    40% {
        transform: scale(3.5);
        opacity: 0;
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {

    .orbital-ring-pulse-1,
    .orbital-ring-pulse-2 {
        animation: none !important;
        display: none !important;
    }
}



.orbital-main-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: calc(var(--orbital-radius, 250px) * 2);
    height: calc(var(--orbital-radius, 250px) * 2);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}


.orbital-nodes {
    position: relative;
    width: 100%;
    height: 100%;
}

.orbital-node {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -32px;
    margin-top: -32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    will-change: transform, opacity;
    outline: none !important;
    box-shadow: none !important;
}

.orbital-node:focus-visible .node-icon-circle {
    outline: none !important;
    box-shadow: 0 0 0 3px var(--focus-gap), 0 0 0 6px #ffffff, 0 0 0 9px var(--btn-grad-from);
    transform: scale(1.1);
    transition: none !important;
}

#orbital-nodes-list.is-transitioning .orbital-node {
    transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
}

#orbital-nodes-list.is-transitioning .node-icon-circle {
    transition: transform 0.6s ease-in-out;
}

.orbital-node.no-transition {
    transition: none !important;
}

.node-energy-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.2) 0%, rgba(30, 58, 138, 0) 70%);
    pointer-events: none;
}

.orbital-node.active .node-energy-glow {
    animation: pulseEnergy 1s infinite alternate;
}

.node-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #151515;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    z-index: 2;
    will-change: transform;
}

.orbital-node:hover .node-icon-circle,
.orbital-node:focus-visible .node-icon-circle,
.orbital-node.related .node-icon-circle {
    background: rgba(255, 255, 255, 0.5);
    border-color: #fff;
    color: #000;
}

.orbital-node.active .node-icon-circle {
    background: #fff;
    border-color: #fff;
    color: #000;
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}



.node-label-small {
    position: absolute;
    top: 72px;
    font-family: var(--font-main);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .node-icon-circle {
        width: 48px;
        height: 48px;
    }

    .node-label-small {
        top: 56px;
        font-size: 11px;
    }

    .orbital-node {
        margin-left: -24px;
        margin-top: -24px;
    }
}

.orbital-node.active .node-label-small {
    color: #fff;
    transform: scale(1.25) translateY(5px);
}

/* Node-Relative Detail Card */
.node-card {
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: 320px;
    background: rgba(21, 21, 21, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.75rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.05);
    opacity: 0;
    animation: cardAppears 0.5s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 200;
    will-change: transform, opacity;
}

.card-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
    z-index: 210;
}

.card-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.card-close-btn svg {
    pointer-events: none;
}

.node-card::before {
    content: '';
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 42px;
    background: rgba(255, 255, 255, 0.3);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.card-badge {
    font-family: var(--font-main);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 999px;
    background: var(--btn-grad-from);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-title {
    font-family: var(--font-main);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.btn-primary-hero {
    font-size: 1rem;
    padding: 14px 48px;
    /* Angleichung an btn-white des Final CTA */
    margin-top: 1.5rem;
}

.card-content {
    font-family: var(--font-main);
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.card-energy-wrap {
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.energy-label {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-main);
    font-size: 0.75rem;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.energy-bar-bg {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.energy-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #a855f7);
    border-radius: 2px;
}

/* Animations */
@keyframes pulseCore {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes pingEffect {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes pulseEnergy {
    from {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(1);
    }

    to {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    }
}

@keyframes cardAppears {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* Responsive Fallback Improvements */
@media (max-width: 991px) {
    #features .section-sub {
        margin-bottom: 1rem;
    }

    .orbital-wrap {
        min-height: 400px;
        margin-top: -1rem;
        overflow: visible;
    }
}

@media (max-width: 600px) {

    #features,
    #final-cta {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
        /* Balanced space for cards */
    }

    #features .section-sub {
        margin-bottom: 0.5rem;
    }

    .orbital-wrap {
        min-height: 420px;
        height: calc(var(--orbital-radius, 120px) * 2 + 180px);
        /* Tighter spacing */
        margin-top: -1.0rem;
        overflow: visible;
    }

    .node-card {
        width: 88vw;
        left: 50%;
        top: 80px;
        /* Pull it up a bit more to avoid cutoff at the bottom */
        padding: 1.5rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-privacy {
    margin-top: 1.25rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
}

.form-privacy a {
    position: relative;
    color: var(--btn-grad-from);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-privacy a::after {
    content: "";
    position: absolute;
    inset: -10px -15px;
}

.form-privacy a:hover {
    text-decoration: none;
}

.legal-page {
    padding-top: 80px;
}

.legal-content {
    padding: 4rem 0 8rem;
}

.legal-content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.legal-content h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 3.5rem;
    letter-spacing: -0.035em;
    line-height: 1.15;
    text-align: left;
    max-width: 100%;
}

.legal-section {
    margin-bottom: 4rem;
}

.legal-section h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 3.5rem 0 1.5rem;
    letter-spacing: -0.025em;
    line-height: 1.25;
}

.legal-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 2.5rem 0 1.25rem;
    letter-spacing: -0.015em;
}

.legal-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-section ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.legal-section ul li {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
}

.back-link {
    margin-top: 4rem;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}


@media (max-width: 1240px) {
    .legal-content .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 768px) {
    .legal-content .container {
        padding: 0 1rem;
    }
}

@media (max-width: 640px) {
    .leen-form .form-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        /* Auf Mobile genau wie margin-bottom der groups */
    }
}

/* ── MOBILE MENU OVERLAY ────────────────── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 11000;
    display: flex;
    justify-content: flex-end;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.4s;
}

.mobile-menu.active {
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 30, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu.active .mobile-menu-overlay {
    opacity: 1;
}

.mobile-menu-content {
    background: #ffffff;
    width: 300px;
    max-width: 100%;
    height: 100%;
    margin-left: auto;
    padding: 24px 32px 40px;
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.mobile-close {
    background: #f4f4f5;
    border: none;
    padding: 8px 16px;
    border-radius: 100px;
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mobile-close:hover {
    background: #e4e4e7;
}

.mobile-close svg {
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
}

.mobile-menu.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2.5rem;
}

.mobile-nav a,
.mobile-nav a:visited,
.mobile-nav button {
    display: block;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.5;
    /* Schafft identische Texthöhe */
    color: var(--text-primary);
    text-decoration: none;
    padding: 14px 12px;
    width: 100%;
    transition: all 0.2s ease;
    border: none;
    background: none;
    text-align: left;
    font-family: inherit;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
}

.mobile-nav a:last-child,
.mobile-nav button:last-child {
    border-bottom: none;
}

.mobile-nav a:hover,
.mobile-nav a:active,
.mobile-nav button:hover,
.mobile-nav button:active {
    background: none;
    color: var(--btn-grad-from);
}

.mobile-nav a:focus-visible,
.mobile-nav button:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 2px var(--focus-gap), 0 0 0 4px #ffffff, 0 0 0 6px var(--btn-grad-from) inset !important;
    transition: none !important;
    color: var(--btn-grad-from);
}

/* Section-Specific Focus Gap Overrides */
/* Nicht mehr nötig für Buttons, da diese nun einen echten transparenten Abstand nutzen */
.app-preview-section,
.video-showcase-container {
    --focus-gap: #151515;
}

#efficiency,
#hardware,
#faq {
    --focus-gap: #f9f9f9;
}

/* Modal and menu container MUST allow normal touch scrolling */
.modal-container,
.mobile-menu-content {
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: contain !important;
    overscroll-behavior-x: contain !important;
    touch-action: pan-y;
}

/* Scrollbar compensation removed because html has overflow-y: scroll */

@media (max-width: 480px) {
    h1 {
        font-size: 2.0rem !important;
        /* Verkleinert für weniger Zeilenumbruch-Gefahr */
    }

    .hero .hero-sub {
        margin-top: -0.4rem;
        /* Zieht den Subtext näher ran */
    }

    .preview-description {
        height: auto;
        min-height: 40px;
        /* Korrigiert auf auto-height für flexiblere Abstände */
    }
}

/* ── ULTIMATIVE FOKUS-ENTFERNUNG FÜR MAUS-NUTZER ────────────────────────── */
/* --- Features Summary Card Layout (Box entfernt) --- */
.features-summary-card {
    width: 100%;
    max-width: 1200px;
    margin: 3.5rem auto 0;
    text-align: left;
    padding-left: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: #ffffff !important;
}

/* Sichtbarkeit sicherstellen (Orientierung an Sektions-Textfarben) */
.features-summary-card h3 {
    color: #ffffff !important;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.features-summary-card .comp-item {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1rem;
    line-height: 1.8;
}

.features-summary-card .comparison-list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.features-summary-card .good-icon {
    background: none !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.7) !important;
    box-shadow: none !important;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.2)) !important;
    width: auto !important;
    height: auto !important;
    margin-top: 0.45rem !important;
}

.summary-card-accent {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
}

.accent-title {
    font-size: 1rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.25rem;
}

.accent-subtext {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.15rem;
    line-height: 1.6;
}

/* Specific for Why Naluvio Section (Light) */
.why-naluvio-summary {
    margin-top: 3.5rem !important;
    color: #151515 !important;
}

.why-naluvio-summary h3 {
    color: #151515 !important;
}

.why-naluvio-summary .comp-item {
    color: #444 !important;
}

.why-naluvio-summary .good-icon {
    color: var(--btn-grad-from) !important;
    /* Blue for the checkmarks in light mode */
}

.why-naluvio-summary .summary-card-accent {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 0;
}

.why-naluvio-summary .accent-title {
    color: #151515 !important;
    font-weight: 700 !important;
}

.why-naluvio-summary .accent-subtext {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .features-summary-card {
        margin-top: 2rem;
        width: 100%;
        padding: 0 !important;
    }
}

@media (max-width: 768px) {
    .desktop-br {
        display: none;
    }
}

/* ── USE CASES SECTION ────────────────────────────────── */
.use-cases-section {
    background-color: #151515;
    padding: 130px 10%;
}

.use-cases-section h2 {
    color: #ffffff !important;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.use-case-card {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.use-case-card.comparison-box {
    padding: 2.25rem 2.5rem 3.25rem;
    height: 100%;
    min-height: 340px;
}


.use-case-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.use-case-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-top: 0.25rem;
}

.use-case-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.6;
    letter-spacing: -0.02em;
}

.use-case-card p {
    font-size: var(--section-sub-size);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin: 0;
}

.use-case-card .use-case-question {
    margin-bottom: 1.75rem;
}

.use-case-top {
    min-height: 10.5rem;
}

@supports (grid-template-rows: subgrid) {
    .use-case-card {
        display: grid;
        grid-row: span 2;
        grid-template-rows: subgrid;
        row-gap: 1.75rem;
    }
    .use-case-top {
        min-height: 0;
    }
    .use-case-card .use-case-question {
        margin-bottom: 0;
    }
}

.use-case-card .use-case-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    font-style: italic;
    margin-top: 0;
}

@media (max-width: 1000px) {

    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .use-cases-section {
        padding: 80px 1.5rem;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
    }

    .use-case-card {
        display: flex !important;
        flex-direction: column;
        grid-row: auto !important;
    }

    .use-case-card.comparison-box {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .use-case-top {
        min-height: auto !important;
    }
}


/* ── BUTTON HOVER EFFECTS (Zuletzt für maximale Priorität) ── */
@media (hover: hover) {
    .btn-primary:hover {
        background: #1c2fa0 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 12px 25px rgba(30, 58, 138, 0.4) !important;
    }

    .btn-primary:hover::before {
        opacity: 0.95 !important;
    }

    .btn-white:hover {
        background: #f4f4f4 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2) !important;
    }
}

/* Force mobile nav link color to match design */
.mobile-nav a,
.mobile-nav a:visited,
.mobile-nav a:active,
.mobile-nav a:link {
    color: #151515 !important;
}