/* =========================================================
   Marberg Internet Services – Custom CSS 2026
   Primärfarbe: #f25828 | Dunkel: #1a1a2e | Grau: #f8f9fa
   ========================================================= */

/* ---- Fonts (lokal, DSGVO-konform) ---- */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/poppins-300.woff2') format('woff2');
    font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/poppins-400.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/poppins-600.woff2') format('woff2');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins/poppins-700.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}

/* ---- CSS Custom Properties ---- */
:root {
    --primary:    #f25828;
    --primary-dk: #d44419;
    --dark:       #1a1a2e;
    --dark-soft:  #252540;
    --light:      #f8f9fa;
    --gray:       #6c757d;
    --border:     #dee2e6;
    --radius:     10px;
    --shadow:     0 4px 20px rgba(0,0,0,.08);
    --shadow-md:  0 8px 32px rgba(0,0,0,.12);
    --transition: all .3s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.25;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dk); }

img { max-width: 100%; height: auto; }

::selection { background: var(--primary); color: #fff; }

/* ---- Buttons ---- */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    padding: .7rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    cursor: pointer;
}
.btn-primary-custom:hover {
    background: var(--primary-dk);
    border-color: var(--primary-dk);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242,88,40,.35);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.7);
    padding: .7rem 1.6rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
}
.btn-outline-custom:hover {
    background: rgba(255,255,255,.15);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

/* ---- Accent color ---- */
.accent { color: var(--primary); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
    background: transparent;
    transition: background .4s ease, box-shadow .4s ease, padding .3s ease;
    padding: 1rem 0;
    z-index: 1000;
}
#navbar.scrolled {
    background: var(--dark);
    box-shadow: 0 2px 20px rgba(0,0,0,.3);
    padding: .6rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff !important;
}
.navbar-brand img { filter: brightness(0) invert(1); }

.navbar-nav .nav-link {
    color: rgba(255,255,255,.85) !important;
    font-weight: 500;
    padding: .4rem .9rem !important;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    border-radius: 50px;
    padding: .4rem 1.1rem !important;
    margin-left: .3rem;
}
.nav-cta:hover {
    background: var(--primary-dk) !important;
    color: #fff !important;
}

.navbar-toggler {
    border-color: rgba(255,255,255,.4);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C255%2C255%2C0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,46,.75) 0%, rgba(26,26,46,.5) 60%, rgba(242,88,40,.15) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-tagline {
    font-family: 'Poppins', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .8rem;
}

.hero-headline {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.hero-sub {
    font-size: 1.15rem;
    color: rgba(255,255,255,.85);
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.scroll-arrow {
    display: block;
    width: 28px;
    height: 28px;
    border-right: 2px solid rgba(255,255,255,.5);
    border-bottom: 2px solid rgba(255,255,255,.5);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); opacity: .6; }
    50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* ============================================================
   USP BAR
   ============================================================ */
.usp-bar {
    background: var(--dark);
    padding: 1.5rem 0;
    border-top: 3px solid var(--primary);
}
.usp-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,.85);
    padding: .8rem 1.5rem;
    font-size: .9rem;
    border-right: 1px solid rgba(255,255,255,.1);
}
.usp-item:last-child { border-right: none; }
.usp-item strong { display: block; color: #fff; font-size: 1rem; }
.usp-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--primary);
}
.usp-icon svg { width: 100%; height: 100%; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section-light {
    padding: 6rem 0;
    background: #fff;
}
.section-dark {
    padding: 6rem 0;
    background: var(--dark);
    color: rgba(255,255,255,.85);
}
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: rgba(255,255,255,.6); }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: .6rem;
    position: relative;
    display: inline-block;
    padding-bottom: .8rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 50px; height: 3px;
    background: var(--primary);
    border-radius: 2px;
}
.text-start .section-title::after { left: 0; transform: none; }

.section-sub {
    color: var(--gray);
    font-size: 1.05rem;
    max-width: 580px;
    margin: .8rem auto 0;
}

/* ============================================================
   SERVICE CARDS (Leistungen)
   ============================================================ */
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 0;
    background: var(--primary);
    transition: height .4s ease;
    border-radius: 0 0 2px 0;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.service-card:hover::before { height: 100%; }

.service-icon {
    width: 56px; height: 56px;
    color: var(--primary);
    margin-bottom: 1.2rem;
}
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: .6rem;
}
.service-card p { color: var(--gray); font-size: .95rem; }

.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
}
.service-list li {
    padding: .3rem 0;
    color: #444;
    font-size: .9rem;
    padding-left: 1.3rem;
    position: relative;
}
.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* ============================================================
   PARALLAX DIVIDER
   ============================================================ */
.parallax-divider {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.parallax-divider::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,.5);
}
@media (max-width: 767px) {
    .parallax-divider { background-attachment: scroll; }
}

/* ============================================================
   VIDEO DIVIDER
   ============================================================ */
.video-divider {
    position: relative;
    height: 280px;
    overflow: hidden;
}
.video-divider video {
    width: 100%; height: 100%;
    object-fit: cover;
}
.video-divider-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,46,.55);
}

/* ============================================================
   PACKAGE CARDS (Service)
   ============================================================ */
.package-card {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    color: rgba(255,255,255,.85);
}
.package-card:hover {
    background: rgba(255,255,255,.09);
    transform: translateY(-4px);
    border-color: rgba(255,255,255,.25);
}
.package-card.featured {
    background: rgba(242,88,40,.12);
    border-color: var(--primary);
}
.package-card.featured:hover {
    background: rgba(242,88,40,.18);
}
.package-badge {
    position: absolute;
    top: -12px; right: 1.5rem;
    background: var(--primary);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    padding: .2rem .8rem;
    border-radius: 50px;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.package-icon {
    width: 52px; height: 52px;
    color: var(--primary);
    margin-bottom: 1.2rem;
}
.package-icon svg { width: 100%; height: 100%; }
.package-card h3 { color: #fff; font-size: 1.25rem; margin-bottom: .6rem; }
.package-card p { font-size: .93rem; }

.package-price {
    margin-top: 1.2rem;
    font-size: 1rem;
    color: rgba(255,255,255,.7);
    line-height: 1.5;
}
.package-price strong { font-size: 2rem; color: var(--primary); font-family: 'Poppins', sans-serif; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-filters {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    margin-bottom: 2rem;
}
.filter-btn {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--gray);
    padding: .4rem 1.1rem;
    border-radius: 50px;
    font-size: .88rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
}
.portfolio-item {
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.portfolio-item.hidden { display: none; }
.portfolio-item a {
    display: block;
    position: relative;
    overflow: hidden;
}
.portfolio-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.portfolio-item:hover img { transform: scale(1.06); }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(26,26,46,.92) 100%);
    opacity: 0;
    transition: opacity .35s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.2rem;
    color: #fff;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h4 { font-size: 1rem; margin-bottom: .2rem; color: #fff; }
.portfolio-overlay p { font-size: .82rem; color: rgba(255,255,255,.7); margin: 0; }
.portfolio-link-icon {
    position: absolute;
    top: 1rem; right: 1rem;
    font-size: 1.3rem;
    color: var(--primary);
}

.portfolio-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--gray);
    font-size: .95rem;
}
.portfolio-note a { color: var(--primary); font-weight: 600; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.93);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-close {
    position: absolute;
    top: 1.2rem; right: 1.5rem;
    background: none; border: none;
    color: rgba(255,255,255,.7);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color .2s;
}
.lightbox-close:hover { color: var(--primary); }
.lightbox-inner {
    max-width: 900px;
    width: 100%;
    text-align: center;
}
#lightboxImg {
    max-height: 75vh;
    width: auto;
    max-width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
.lightbox-caption {
    margin-top: 1rem;
    color: rgba(255,255,255,.85);
}
.lightbox-caption h4 { color: #fff; margin-bottom: .2rem; }
.lightbox-caption p { color: rgba(255,255,255,.6); font-size: .9rem; }

/* ============================================================
   ÜBER MICH
   ============================================================ */
.about-photo {
    width: 200px; height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
    box-shadow: var(--shadow-md);
}
.about-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--dark);
}
.about-title {
    color: var(--primary);
    font-weight: 600;
    font-size: .9rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-top: -.3rem;
}
.about-text { color: #444; font-size: .97rem; margin-bottom: 1rem; }

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.skill-badge {
    background: var(--light);
    border: 1px solid var(--border);
    color: var(--dark);
    padding: .3rem .9rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 500;
    transition: var(--transition);
}
.skill-badge:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.about-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.stat-item {
    text-align: center;
}
.stat-item strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    color: var(--primary);
    line-height: 1;
}
.stat-item span {
    font-size: .82rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: .05em;
}

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-block {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    color: rgba(255,255,255,.8);
    font-size: .95rem;
}
.contact-block a { color: rgba(255,255,255,.85); }
.contact-block a:hover { color: var(--primary); }
.contact-icon {
    width: 24px; height: 24px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: .1rem;
}
.contact-icon svg { width: 100%; height: 100%; }
.contact-hint {
    color: rgba(255,255,255,.45);
    font-size: .85rem;
    margin-top: .5rem;
    font-style: italic;
}

/* Contact form */
.form-floating .form-control {
    border-radius: var(--radius);
    border: 1.5px solid rgba(255,255,255,.15);
    background: rgba(255,255,255,.06);
    color: #fff;
}
.form-floating .form-control:focus {
    border-color: var(--primary);
    background: rgba(255,255,255,.09);
    box-shadow: 0 0 0 .2rem rgba(242,88,40,.2);
    color: #fff;
}
.form-floating label { color: rgba(255,255,255,.5); }
.form-floating .form-control::placeholder { color: transparent; }

.dsgvo-check {
    display: flex;
    gap: .8rem;
    align-items: flex-start;
    color: rgba(255,255,255,.65);
    font-size: .85rem;
}
.dsgvo-check input[type="checkbox"] {
    width: 18px; height: 18px;
    margin-top: .15rem;
    flex-shrink: 0;
    accent-color: var(--primary);
}
.dsgvo-check a { color: var(--primary); }

.btn-submit { font-size: 1rem; padding: .75rem 2rem; }

.alert-success-custom {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: rgba(40,167,69,.15);
    border: 1px solid rgba(40,167,69,.4);
    color: #5bd977;
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}
.alert-error-custom {
    background: rgba(242,88,40,.15);
    border: 1px solid rgba(242,88,40,.4);
    color: #ff8a6a;
    border-radius: var(--radius);
    padding: 1rem 1.2rem;
    margin-bottom: 1.5rem;
}

/* Honeypot */
.website-field { position: absolute; left: -9999px; top: -9999px; }

/* ============================================================
   IMPRESSUM
   ============================================================ */
.section-impressum {
    padding: 3rem 0;
    background: var(--light);
}
.impressum-tabs .nav-link {
    color: var(--gray);
    border: none;
    padding: .6rem 1.2rem;
    font-weight: 500;
}
.impressum-tabs .nav-link.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
    background: none;
}
.impressum-content {
    padding: 2rem 0;
    max-width: 800px;
}
.impressum-content h3, .impressum-content h4 {
    color: var(--dark);
    margin-top: 1.5rem;
    margin-bottom: .5rem;
}
.impressum-content h3 { font-size: 1.3rem; }
.impressum-content h4 { font-size: 1.05rem; }
.impressum-content p, .impressum-content address { color: #444; font-size: .93rem; }
.impressum-content address { font-style: normal; }

.matomo-optout { margin-top: 1rem; }
.matomo-optout .btn { border: 1px solid var(--border); color: var(--gray); background: #fff; font-size: .85rem; }
.matomo-optout .btn:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #0d0d1a;
    padding: 2rem 0;
    border-top: 1px solid rgba(255,255,255,.05);
}
.footer-logo {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(.5);
    opacity: .6;
    transition: opacity .3s;
}
.footer-logo:hover { opacity: 1; }
.footer-copy { color: rgba(255,255,255,.3); font-size: .85rem; margin: 0; }
.footer-nav { display: flex; gap: 1.2rem; justify-content: flex-end; flex-wrap: wrap; }
.footer-nav a {
    color: rgba(255,255,255,.4);
    font-size: .85rem;
    transition: color .3s;
}
.footer-nav a:hover { color: var(--primary); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal, .reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal-up.delay-1, .reveal.delay-1 { transition-delay: .15s; }
.reveal-up.delay-2, .reveal.delay-2 { transition-delay: .30s; }
.reveal-up.delay-3, .reveal.delay-3 { transition-delay: .45s; }

.reveal.visible, .reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--dark);
        border-radius: var(--radius);
        padding: 1rem;
        margin-top: .5rem;
    }
    .nav-cta { display: inline-block; margin: .3rem 0 0; }
}

@media (max-width: 767px) {
    .hero-headline { font-size: 2.4rem; }
    .hero-sub { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .btn-primary-custom, .btn-outline-custom { text-align: center; justify-content: center; }

    .usp-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
    .usp-item:last-child { border-bottom: none; }

    .section-light, .section-dark { padding: 4rem 0; }

    .about-stats { gap: 1.2rem; justify-content: center; }
    .about-photo { width: 160px; height: 160px; }

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

    .footer-nav { justify-content: center; }
    .footer-copy { text-align: center; margin: .5rem 0; }
    .footer-logo { display: block; margin: 0 auto; }

    .parallax-divider { height: 180px; }
    .video-divider { height: 180px; }
}

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

/* ---- KI-Agentur Teaser Bar ---- */
.ki-teaser-bar {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-top: 3px solid var(--primary);
    padding: 1.2rem 0;
}
.ki-teaser-inner {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}
.ki-teaser-badge {
    background: var(--primary);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .2rem .55rem;
    border-radius: 3px;
    white-space: nowrap;
    flex-shrink: 0;
}
.ki-teaser-text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: .15rem;
    color: rgba(255,255,255,.9);
    font-size: .92rem;
}
.ki-teaser-text strong {
    color: #fff;
    font-size: 1rem;
}
.ki-teaser-text span {
    color: rgba(255,255,255,.65);
    font-size: .85rem;
}
.ki-teaser-btn {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--primary);
    color: #fff !important;
    text-decoration: none;
    padding: .5rem 1.1rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: .9rem;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s, transform .15s;
}
.ki-teaser-btn:hover {
    background: #d4441a;
    transform: translateY(-1px);
}
@media (max-width: 600px) {
    .ki-teaser-inner { flex-direction: column; align-items: flex-start; }
    .ki-teaser-btn { align-self: stretch; justify-content: center; }
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    border-top: 3px solid var(--primary);
    z-index: 9999;
    padding: 1rem 0;
    transform: translateY(100%);
    transition: transform 0.35s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-banner-text {
    margin: 0;
    flex: 1;
    color: rgba(255,255,255,.65);
    font-size: .875rem;
    min-width: 200px;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-banner-btns {
    display: flex;
    gap: .5rem;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .cookie-banner-btns { width: 100%; }
    .cookie-banner-btns .btn { flex: 1; }
}
