/* Media Mänäger – Landing Page */
:root {
    --bg: #1a1f2e;
    --bg-deep: #12161f;
    --surface: #232a38;
    --surface-tint: #1e2535;
    --text: #f4f5f7;
    --text-muted: #a8b0bd;
    --accent: #f59e0b;
    --accent-hover: #fbbf24;
    --accent-deep: #d97706;
    --border: rgba(255, 255, 255, 0.08);
    --radius: 14px;
    --radius-lg: 20px;
    --shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    --font: "Inter", system-ui, -apple-system, sans-serif;
    --max: 1120px;
    --narrow: 720px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-muted);
    background: radial-gradient(ellipse 120% 80% at 50% -20%, #2a3348 0%, var(--bg) 45%, var(--bg-deep) 100%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--accent);
    color: #111;
    padding: 0.5rem 1rem;
    z-index: 9999;
}
.skip-link:focus {
    left: 0.5rem;
    top: 0.5rem;
}

h1, h2, h3, .hero-title, .section-title, .cta-title {
    color: var(--text);
    font-weight: 700;
    line-height: 1.2;
}

strong {
    color: var(--text);
    font-weight: 600;
}

a {
    color: var(--accent);
}
a:hover {
    color: var(--accent-hover);
}

.wrap {
    width: min(100% - 2rem, var(--max));
    margin-inline: auto;
}
.wrap--narrow {
    width: min(100% - 2rem, var(--narrow));
}
.wrap--video {
    width: min(100% - 2rem, 920px);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(26, 31, 46, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 0;
}
.site-logo img {
    display: block;
    height: 40px;
    width: auto;
}
.site-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.25rem;
}
.site-nav a:not(.btn) {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}
.site-nav a:not(.btn):hover {
    color: var(--text);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn--primary {
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
    color: #1a1206;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}
.btn--primary:hover {
    background: linear-gradient(180deg, var(--accent-hover) 0%, var(--accent) 100%);
    color: #111;
}
.btn--ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent-hover);
}
.btn--sm {
    padding: 0.45rem 1rem;
    font-size: 0.875rem;
}
.btn--lg {
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

.text-link {
    color: var(--accent);
    font-weight: 500;
}

/* Sections */
.section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}
.section--tint {
    background: rgba(30, 37, 53, 0.55);
    border-block: 1px solid var(--border);
}
.section--hero {
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}

.eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 0 0 1rem;
}
.eyebrow--accent {
    color: var(--accent);
}

.hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    max-width: 18ch;
    margin: 0 0 1.25rem;
}

.lead {
    font-size: 1.125rem;
    max-width: 62ch;
    margin: 0 0 1.75rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.section-title {
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    margin: 0 0 1rem;
}
.section-title--sm {
    font-size: 1.35rem;
}

.subline {
    font-size: 1.1rem;
    max-width: 62ch;
    margin: 0 0 2rem;
}
.subline--tight {
    margin-bottom: 1.25rem;
}

.inline-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-top: 0.5rem;
}

/* Stat bubbles */
.stat-bubbles {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.stat-bubbles li {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1rem;
    text-align: center;
    box-shadow: var(--shadow);
}
.stat-bubbles__val {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
}
.stat-bubbles__lab {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

/* Client */
.client-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    flex-wrap: wrap;
}
.client-block__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border);
    flex-shrink: 0;
}
.client-block__text p {
    margin: 0 0 1rem;
}
.client-block__text .meta {
    font-size: 0.95rem;
}

/* Screenshots */
.figure-screenshot {
    margin: 0 0 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.figure-screenshot img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}
.figure-screenshot--border {
    margin-bottom: 2rem;
}

.checklist {
    margin: 0;
    padding-left: 1.25rem;
    max-width: 62ch;
}
.checklist li {
    margin-bottom: 0.65rem;
}

/* Pillars */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.pillar {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.pillar__visual {
    margin: -0.25rem -0.25rem 1rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}
.pillar__visual img {
    width: 100%;
    height: auto;
    display: block;
}
.pillar__title {
    font-size: 1.15rem;
    margin: 0 0 0.75rem;
}
.pillar p {
    margin: 0;
    font-size: 0.98rem;
}

/* Compare */
.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.compare-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
}
.compare-card--highlight {
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.15);
}
.compare-card__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin: 0 0 0.75rem;
}
.compare-card__thumb {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 0.75rem;
    border: 1px solid var(--border);
}
.compare-card__thumb img {
    width: 100%;
    height: auto;
    display: block;
}
.compare-card__cap {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 1rem;
}
.kpi-dl {
    margin: 0;
    display: grid;
    gap: 0.65rem;
}
.kpi-dl div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}
.kpi-dl div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.kpi-dl dt {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.kpi-dl dd {
    margin: 0;
    font-weight: 700;
    color: var(--text);
    font-variant-numeric: tabular-nums;
}

.note {
    font-size: 0.9rem;
    color: var(--text-muted);
    max-width: 62ch;
    margin: 0;
}

/* Result split */
.result-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}
.result-copy p {
    margin: 0;
    font-size: 1.02rem;
}

/* Video */
.video-embed {
    margin-top: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
lite-youtube {
    --lite-youtube-brand-color: var(--accent);
    max-width: 100%;
}

/* CTA block */
.section--cta {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.18) 0%, rgba(26, 31, 46, 0.9) 50%);
    border-block: 1px solid rgba(245, 158, 11, 0.25);
}
.cta-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 0.75rem;
    text-align: center;
}
.cta-sub {
    text-align: center;
    margin: 0 0 1.75rem;
    font-size: 1.05rem;
}
.section--cta .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cta-alt {
    margin: 1.5rem 0 0;
    font-size: 0.95rem;
    text-align: center;
}
.cta-alt a {
    white-space: nowrap;
}

/* Footer */
.site-footer {
    padding: 2.5rem 0 2rem;
    border-top: 1px solid var(--border);
    background: var(--bg-deep);
}
.footer-cta {
    width: 100%;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}
.footer-whatsapp {
    width: min(100%, 520px);
}
.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.site-footer__inner img {
    display: block;
    height: 36px;
    width: auto;
}
.footer-nav {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-nav a:hover {
    color: var(--accent);
}
.footer-note {
    margin: 1.5rem auto 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0.85;
    text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
    .pillars {
        grid-template-columns: 1fr;
    }
    .result-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .stat-bubbles {
        grid-template-columns: 1fr;
    }
    .compare-grid {
        grid-template-columns: 1fr;
    }
    .site-header__inner {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-cta,
    .inline-cta {
        flex-direction: column;
        align-items: stretch;
    }
    .btn {
        width: 100%;
        justify-content: center;
    }

    /* Header-CTA verstecken, Footer-CTA fixieren */
    .header-whatsapp {
        display: none;
    }
    body {
        padding-bottom: calc(74px + env(safe-area-inset-bottom));
    }
    .footer-cta {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        margin: 0;
        padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
        background: rgba(18, 22, 31, 0.92);
        backdrop-filter: blur(12px);
        border-top: 1px solid var(--border);
    }
    .footer-in-view .footer-cta {
        display: none;
    }
    .footer-whatsapp {
        max-width: 520px;
        width: 100%;
        padding: 0.95rem 1.2rem;
        font-size: 1rem;
    }
}
