/* ============================================================
   assets/css/pages/host1.css
   Komplette Styles für die Partnership-Seite
   ============================================================ */

/* ===== Root-Variablen ===== */
:root {
    --primary: #A5D66B;
    --primary-hover: #94c45a;
    --primary-dark: #7fa84a;
    --primary-glow: rgba(165, 214, 107, 0.15);
    --bg-dark: #0B0F0B;
    --surface: #131A13;
    --card-bg: #131A13;
    --border-dim: #2A342A;
    --border-light: #3A4A3A;
    --text-light: #F5F9F5;
    --text-muted: #A8B5A8;
    --text-dark: #6A7A6A;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: var(--font-family);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Scrollbar ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--border-dim);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-partnership {
    background: linear-gradient(165deg, #0B0F0B 0%, #162216 40%, #1A2A1A 100%);
    padding: 140px 0 80px;
    border-bottom: 1px solid var(--border-dim);
    position: relative;
    overflow: hidden;
}

.hero-partnership::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(165, 214, 107, 0.07), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-partnership::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(165, 214, 107, 0.04), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-partnership .container {
    position: relative;
    z-index: 1;
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-badge {
    display: inline-block;
    background: rgba(165, 214, 107, 0.12);
    color: var(--primary);
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(165, 214, 107, 0.15);
    align-self: flex-start;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.1;
    max-width: 700px;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.hero-content h1 .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 560px;
    margin-bottom: 32px;
    line-height: 1.8;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    background: var(--primary);
    color: #0B0F0B;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px rgba(165, 214, 107, 0.25);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(165, 214, 107, 0.35);
    color: #0B0F0B;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    background: transparent;
    color: var(--text-light);
    border: 1.5px solid var(--border-dim);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(165, 214, 107, 0.06);
    transform: translateY(-2px);
    color: var(--text-light);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid var(--border-dim);
    max-width: 600px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats .stat-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.hero-stats span:last-child {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Hero Image */
.hero-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--border-dim);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-image-placeholder {
    text-align: center;
    padding: 40px;
    background: linear-gradient(145deg, #1A2A1A, #0B0F0B);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-image-placeholder .icon {
    font-size: 5rem;
    margin-bottom: 12px;
}

.hero-image-placeholder h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.hero-image-placeholder p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hero-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--primary);
    color: #0B0F0B;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 8px 30px rgba(165, 214, 107, 0.3);
    display: flex;
    align-items: center;
    gap: 6px;
    animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 80px 0;
}

.section.bg-surface {
    background: var(--surface);
}

.section.bg-dark {
    background: var(--bg-dark);
}

/* ===== Typography Helpers ===== */
.text-primary {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.text-muted {
    color: var(--text-muted);
}

.text-center {
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .text-primary {
    display: inline-block;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ============================================================
   GRIDS
   ============================================================ */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--bg-dark);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card:hover {
    border-color: rgba(165, 214, 107, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.card .icon-large {
    font-size: 2.4rem;
    margin-bottom: 12px;
    display: block;
}

.card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-light);
}

.card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.card .card-highlight {
    margin-top: 12px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

/* ============================================================
   BUNDLE CARDS
   ============================================================ */
.bundle-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.bundle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.bundle-card.highlight {
    border-color: rgba(165, 214, 107, 0.3);
    background: linear-gradient(165deg, #0B0F0B, #1A261A);
    box-shadow: 0 4px 30px rgba(165, 214, 107, 0.06);
}

.bundle-card.highlight::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    right: 20%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 0 0 4px 4px;
}

.bundle-card .badge {
    display: inline-block;
    background: rgba(165, 214, 107, 0.12);
    color: var(--primary);
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
    margin-bottom: 14px;
    border: 1px solid rgba(165, 214, 107, 0.1);
}

.bundle-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--text-light);
}

.bundle-card .price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    margin: 16px 0 4px;
}

.bundle-card .price-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.bundle-card .check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.bundle-card .check-list li {
    padding: 5px 0 5px 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23A5D66B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") left center no-repeat;
    background-size: 18px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.bundle-card .btn-primary {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* ============================================================
   CHECK LIST
   ============================================================ */
.check-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}

.check-list li {
    padding: 6px 0 6px 32px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23A5D66B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") left center no-repeat;
    background-size: 18px;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ===== Uncheck List ===== */
.check-list.uncheck li {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23E06B6B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E");
}

/* ============================================================
   STAT NUMBER
   ============================================================ */
.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.stat-number.small {
    font-size: 1.6rem;
}

.stat-number.large {
    font-size: 3rem;
}

/* ============================================================
   HUB VISUAL
   ============================================================ */
.hub-visual {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-dark);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius);
    padding: 40px;
}

.hub-center {
    text-align: center;
}

.hub-center .icon-large {
    font-size: 4rem;
    margin-bottom: 12px;
    display: block;
}

.hub-center h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-light);
}

.hub-center p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.hub-center .hub-cta {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

.hub-stations {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.station-card {
    background: var(--surface);
    border: 1px solid var(--border-dim);
    border-radius: var(--radius-sm);
    padding: 18px 12px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    transition: border-color var(--transition), transform var(--transition);
    cursor: default;
}

.station-card:hover {
    border-color: var(--primary);
    transform: scale(1.03);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.card.testimonial {
    background: var(--surface);
    border-color: var(--border-dim);
    padding: 32px 28px;
}

.card.testimonial .icon-large {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.card.testimonial .testimonial-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

.card.testimonial .testimonial-author {
    margin-top: 16px;
    font-weight: 700;
    color: var(--text-light);
}

.card.testimonial .testimonial-result {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    margin-top: 4px;
}

/* ============================================================
   CONVICTION / WHY SECTION
   ============================================================ */
.conviction-section {
    padding: 40px 0;
}

.conviction-section .conviction-text {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text-light);
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* ===== Why Section ===== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.why-stats-box {
    background: var(--bg-dark);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--border-dim);
}

.why-stats-box .box-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 16px;
}

.why-stats-box h3 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.why-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.why-stat-item {
    background: var(--surface);
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid var(--border-dim);
}

.why-stat-item .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.why-stat-item .stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta {
    background: linear-gradient(145deg, var(--surface), #0B0F0B);
    border-radius: var(--radius);
    padding: 60px 40px;
    border: 1px solid var(--border-dim);
    text-align: center;
}

.final-cta .icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
    font-weight: 800;
}

.final-cta p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 24px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.final-cta .check-tags {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.final-cta .check-tag {
    background: var(--bg-dark);
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid var(--border-dim);
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================================
   HR / DIVIDER
   ============================================================ */
hr {
    border: none;
    border-top: 1px solid var(--border-dim);
    margin: 40px 0 24px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-grid {
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.6rem;
        max-width: 100%;
    }

    .hero-content .hero-subtitle {
        max-width: 100%;
    }

    .hero-stats {
        max-width: 100%;
    }

    .hero-image {
        aspect-ratio: 16/9;
        min-height: 250px;
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .hub-visual {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 28px;
    }

    .hub-stations {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-partnership {
        padding: 110px 0 50px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 10px;
        padding-top: 20px;
    }

    .hero-stats .stat-number {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        aspect-ratio: 4/3;
        min-height: 200px;
    }

    .hero-image-badge {
        bottom: 12px;
        right: 12px;
        padding: 6px 16px;
        font-size: 0.7rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

    .grid-3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .grid-4 {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .card {
        padding: 20px 16px;
    }

    .card .icon-large {
        font-size: 2rem;
    }

    .bundle-card {
        padding: 24px 20px;
    }

    .hub-visual {
        padding: 20px;
        border-radius: var(--radius-sm);
    }

    .hub-stations {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .station-card {
        padding: 12px 8px;
        font-size: 0.75rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .why-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .why-stat-item .stat-number {
        font-size: 1.3rem;
    }

    .final-cta {
        padding: 40px 20px;
    }

    .final-cta h2 {
        font-size: 1.6rem;
    }

    .final-cta p {
        font-size: 1rem;
    }

    .final-cta .check-tags {
        flex-direction: column;
        align-items: center;
    }

    .final-cta .check-tag {
        width: 100%;
        justify-content: center;
    }

    .container {
        padding: 0 16px;
    }

    .conviction-section .conviction-text {
        font-size: 1rem;
    }
}

/* Kleine Handys */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-partnership {
        padding: 90px 0 40px;
    }

    .hero-image {
        min-height: 160px;
    }

    .hero-stats {
        gap: 6px;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .bundle-card .price {
        font-size: 1.3rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .final-cta h2 {
        font-size: 1.4rem;
    }

    .why-stats-grid {
        grid-template-columns: 1fr;
    }

    .hub-stations {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .station-card {
        padding: 10px 6px;
        font-size: 0.7rem;
    }

    .card.testimonial {
        padding: 20px 16px;
    }

    .card.testimonial .testimonial-text {
        font-size: 0.9rem;
    }
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.mt-8 {
    margin-top: 8px;
}
.mt-12 {
    margin-top: 12px;
}
.mt-16 {
    margin-top: 16px;
}
.mt-20 {
    margin-top: 20px;
}
.mt-24 {
    margin-top: 24px;
}
.mt-32 {
    margin-top: 32px;
}
.mt-48 {
    margin-top: 48px;
}

.mb-8 {
    margin-bottom: 8px;
}
.mb-12 {
    margin-bottom: 12px;
}
.mb-16 {
    margin-bottom: 16px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-24 {
    margin-bottom: 24px;
}
.mb-32 {
    margin-bottom: 32px;
}
.mb-48 {
    margin-bottom: 48px;
}

.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}

.w-100 {
    width: 100%;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gap-8 {
    gap: 8px;
}
.gap-12 {
    gap: 12px;
}
.gap-16 {
    gap: 16px;
}
.gap-24 {
    gap: 24px;
}

/* ============================================================
   SMOOTH SCROLL OFFSET (für fixierte Navbar)
   ============================================================ */
section[id] {
    scroll-margin-top: 80px;
}