@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;800&display=swap');

/**
 * GSE-Assistant - Premium SaaS Dark Mode CSS - Futuristic Glass
 */
:root {
    --site-header-height: 80px;
    --bg-primary: #161E31; /* Hellerer Dark-Blue/Slate Ton */
    --bg-secondary: #1E293F;
    --bg-surface: rgba(255, 255, 255, 0.08); /* Helleres Glas */
    --bg-surface-hover: rgba(255, 255, 255, 0.12);
    
    --text-primary: #FFFFFF;
    --text-secondary: #E2E8F0; /* Brighter secondary text */
    --text-inverse: #0A0F1A;
    
    --accent-blue: #00F0FF; 
    --accent-blue-glow: rgba(0, 240, 255, 0.6);
    --accent-cyan: #7000FF; 
    --accent-cyan-glow: rgba(112, 0, 255, 0.4);
    --accent-red: #FF003C; 
    
    --gradient-brand: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-cyan) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0, 240, 255, 0.3) 0%, rgba(112, 0, 255, 0.3) 100%);
    
    --border-color: rgba(255, 255, 255, 0.1); /* Visible border for glass edge */
    --border-highlight: rgba(255, 255, 255, 0.25);
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 25px var(--accent-blue-glow);
    
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Futuristic Floating Background Orbs */
.bg-orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -2;
    pointer-events: none;
    animation: floatOrb 25s ease-in-out infinite alternate;
}
.orb-1 {
    width: 60vw; height: 60vw;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.25) 0%, transparent 60%);
    top: -20%; left: -10%;
}
.orb-2 {
    width: 50vw; height: 50vw;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.25) 0%, transparent 60%);
    bottom: -10%; right: -10%;
    animation-duration: 30s;
    animation-delay: -15s;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(5%, 10%) scale(1.1); }
    100% { transform: translate(-5%, 5%) scale(0.9); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: var(--transition);
}

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

p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* Base Layout Container */
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-large {
    max-width: 1440px;
}

@media (min-width: 640px) { .container { max-width: 640px; } }
@media (min-width: 768px) { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }

/* Header & Glassmorphism */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.5); /* Slightly brighter so we can see glass */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--site-header-height);
}

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Navigation */
.main-navigation ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.main-navigation a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient-brand);
    transition: var(--transition);
}

.main-navigation a:hover::after,
.main-navigation a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin-bottom: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 120%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-blue-glow) 0%, transparent 60%);
    z-index: -1;
    opacity: 0.4;
}

/* Glassmorphism Sections */
.section-glass {
    position: relative;
    padding: 6rem 0;
    margin: 2rem 0;
}

.section-glass::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05); /* Heller layer to enhance glass feeling */
    backdrop-filter: blur(16px); 
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15); 
    z-index: -1;
}

/* Joomla Generic Modules styling */
.moduletable {
    background: rgba(255, 255, 255, 0.08); /* Visible brighter glass panel */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15), inset 0 0 0 1px rgba(255, 255, 255, 0.1); /* Frosty shadow */
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.moduletable:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0,0,0,0.35), inset 0 0 20px rgba(0, 240, 255, 0.2);
}

/* Buttons */
.btn, .readmore a {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: var(--gradient-brand);
    color: var(--text-primary);
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Futuristic Scanning Line on Button */
.btn::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(45deg) translateY(-100%);
    animation: btnScan 4s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes btnScan {
    0% { transform: rotate(45deg) translateY(-100%); }
    20%, 100% { transform: rotate(45deg) translateY(100%); }
}

.btn:hover, .readmore a:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
    color: var(--text-primary);
}

/* Premium Button (Kundencenter) */
.btn-premium {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0.85rem 2.2rem;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: white !important;
    font-weight: 800;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    z-index: 10;
}

.btn-premium:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px -10px var(--accent-blue-glow);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    z-index: -2;
}

.btn-premium:hover::after {
    transform: translate(-50%, -50%) scale(1);
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
    100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
}

/* Shimmer Effect */
.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-25deg);
    transition: none;
    animation: shimmer 4s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    20%, 100% { left: 200%; }
}

/* Background gradient */
.btn-premium .btn-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-brand);
    opacity: 0.9;
    z-index: -1;
    transition: var(--transition);
}

.btn-premium:hover .btn-bg {
    opacity: 1;
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-premium .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-premium:hover .btn-icon {
    background: white;
    color: var(--accent-cyan);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 15px white;
}

.btn-premium-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-premium-outline::before {
    opacity: 0;
}

.btn-premium-outline:hover {
    background: rgba(112, 0, 255, 0.1);
    border-color: var(--accent-blue);
    box-shadow: 0 0 30px var(--accent-blue-glow);
}

.btn-premium-outline:hover::before {
    opacity: 0.2;
}

/* Main Layout Grid */
.main-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 0;
}

@media (min-width: 1024px) {
    /* If both sidebars are active, might need custom handling, let's assume 1 sidebar or 0 */
    .main-layout {
        grid-template-columns: 3fr 1fr;
    }
    
    .sidebar-left + .content-body {
        grid-column: 2 / -1;
    }
}

/* Articles */
.item-page {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-inner {
    text-align: center;
}

/* Utilities & Micro-Animations */
.fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px) scale(0.98);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hologram Effect for Text */
.logo-text {
    position: relative;
    display: inline-block;
}

.logo-text::after {
    content: 'GSE-Assistant';
    position: absolute;
    left: 0; top: 0;
    color: var(--accent-blue);
    opacity: 0;
    filter: blur(2px);
    animation: hologramFlicker 6s infinite alternate;
    pointer-events: none;
}

@keyframes hologramFlicker {
    0%, 96%, 98% { opacity: 0; transform: translate(0, 0); }
    97% { opacity: 0.8; transform: translate(2px, -1px); }
    99% { opacity: 0.5; transform: translate(-1px, 2px); }
    100% { opacity: 0; transform: translate(0, 0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-collapse {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        padding: 2rem;
        flex-direction: column;
        display: none;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-collapse.active {
        display: block;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { transform: scale(1.1); opacity: 0.8; box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
    100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

/* ═══════════════════════════════════════════════════════════
   COOKIE BANNER
═══════════════════════════════════════════════════════════ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(14, 20, 36, 0.97);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 240, 255, 0.15);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cookie-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 200px; }
.cookie-text strong { color: #fff; font-size: .95rem; }
.cookie-text p { font-size: .8rem; color: rgba(255,255,255,.55); margin: .25rem 0 0; }
.cookie-text a { color: var(--accent-blue); }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-primary {
    padding: .6rem 1.4rem;
    background: linear-gradient(135deg, var(--accent-blue), #0066ff);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: .85rem;
    cursor: pointer;
    transition: .3s;
}
.cookie-btn-primary:hover { opacity: .85; transform: translateY(-1px); }
.cookie-btn-secondary {
    padding: .6rem 1.4rem;
    background: transparent;
    color: rgba(255,255,255,.6);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 8px;
    font-size: .85rem;
    cursor: pointer;
    transition: .3s;
}
.cookie-btn-secondary:hover { border-color: rgba(255,255,255,.4); color: #fff; }

/* ═══════════════════════════════════════════════════════════
   FLOATING BUTTONS (WhatsApp, Rückruf, Scroll-Top)
═══════════════════════════════════════════════════════════ */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    align-items: flex-end;
}
.fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: transform .3s, box-shadow .3s;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.fab:hover { transform: scale(1.1); }
.fab-whatsapp { background: #25d366; color: #fff; }
.fab-whatsapp:hover { box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5); }
.fab-callback { background: linear-gradient(135deg, var(--accent-blue), #0066ff); color: #fff; }
.fab-callback:hover { box-shadow: 0 6px 25px rgba(0, 240, 255, 0.4); }
.fab-top {
    background: rgba(30, 41, 59, 0.9);
    border: 1px solid rgba(255,255,255,.1);
    color: rgba(255,255,255,.7);
    width: 40px;
    height: 40px;
    opacity: 0;
    transition: opacity .3s, transform .3s;
}
.fab-top:hover { color: #fff; }

/* Rückruf Modal */
.callback-modal {
    position: fixed;
    inset: 0;
    z-index: 10002;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.callback-modal-inner {
    background: rgba(20, 28, 45, 0.98);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    max-width: 380px;
    position: relative;
}
.callback-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: rgba(255,255,255,.5);
    font-size: 2rem;
    cursor: pointer;
    transition: .2s;
}
.callback-close:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════
   REFERENZEN
═══════════════════════════════════════════════════════════ */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.stat-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: .3s;
}
.stat-card:hover { border-color: rgba(0,240,255,.3); background: rgba(0,240,255,.05); }
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: .5rem;
}
.stat-label { font-size: .85rem; color: var(--text-secondary); opacity: .7; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}
.testimonial-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 2rem;
    transition: .3s;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.testimonial-card:hover { border-color: rgba(0,240,255,.2); transform: translateY(-3px); }
.testimonial-stars { color: #fbbf24; font-size: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote {
    font-size: .9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    flex: 1;
    margin: 0;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: .85rem;
}
.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .8rem;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .9rem; }
.testimonial-author span { font-size: .75rem; opacity: .5; }
.testimonial-brands {
    font-size: .72rem;
    color: var(--accent-blue);
    opacity: .7;
}
.brand-logos-row {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
}
.brand-logo-chip {
    padding: .4rem 1rem;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 20px;
    font-size: .8rem;
    color: var(--text-secondary);
    opacity: .7;
}

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
.faq-item {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .3s;
}
.faq-item.open { border-color: rgba(0,240,255,.25); }
.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: .95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: .2s;
}
.faq-question:hover { color: var(--accent-blue); }
.faq-item.open .faq-question { color: var(--accent-blue); }
.faq-icon { flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}
.faq-answer-inner {
    padding: 0 1.5rem 1.2rem;
    border-top: 1px solid rgba(255,255,255,.05);
}
.faq-answer-inner p { font-size: .88rem; line-height: 1.75; color: var(--text-secondary); margin: .75rem 0 0; }

/* ═══════════════════════════════════════════════════════════
   NEWS / BLOG
═══════════════════════════════════════════════════════════ */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 1.5rem;
}
.news-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: .3s;
}
.news-card:hover { border-color: rgba(0,240,255,.2); transform: translateY(-3px); }
.news-card--featured {
    grid-column: span 2;
    background: rgba(0,240,255,.04);
    border-color: rgba(0,240,255,.15);
}
.news-card-tag {
    display: inline-block;
    padding: .2rem .75rem;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    width: fit-content;
    border: 1px solid;
}
.news-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
    margin: 0;
}
.news-card--featured .news-card-title { font-size: 1.3rem; }
.news-card-excerpt {
    font-size: .85rem;
    color: var(--text-secondary);
    opacity: .75;
    line-height: 1.65;
    flex: 1;
    margin: 0;
}
.news-card-meta {
    display: flex;
    gap: 1rem;
    font-size: .75rem;
    color: var(--text-secondary);
    opacity: .45;
}
.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--accent-blue);
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    transition: .2s;
}
.news-card-link:hover { gap: .7rem; }

@media (max-width: 768px) {
    .news-card--featured { grid-column: span 1; }
    .cookie-inner { flex-direction: column; gap: 1rem; }
    .floating-buttons { bottom: 1.25rem; right: 1rem; }
    .testimonials-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   ZWEITEILIGE PREISDARSTELLUNG (Basic / Standard)
═══════════════════════════════════════════════════════════ */
.pricing-price-block {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(0,0,0,.2);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 12px;
}
.price-part-label {
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: .45;
    margin-bottom: .2rem;
}
.price-part-hint { font-size: .72rem; opacity: .4; margin-top: .2rem; }
.price-plus { text-align: center; font-size: 1.25rem; font-weight: 700; opacity: .3; line-height: 1; }
.price-part-choice { display: flex; flex-direction: column; gap: .35rem; margin-top: .3rem; }
.price-choice-option { display: flex; align-items: center; gap: .5rem; font-size: .82rem; }
.price-choice-tag {
    font-size: .62rem; padding: 1px 6px; border-radius: 4px;
    background: rgba(0,240,255,.12); color: var(--accent-blue);
    font-weight: 700; flex-shrink: 0;
}
.price-choice-val { margin-left: auto; font-weight: 700; color: var(--accent-blue); font-size: .85rem; }
.price-choice-divider { font-size: .7rem; opacity: .35; padding-left: .5rem; }
.pricing-notice {
    background: rgba(255,152,0,.07);
    border: 1px solid rgba(255,152,0,.18);
    border-radius: 8px;
    padding: .7rem .9rem;
    font-size: .78rem;
    color: rgba(255,255,255,.7);
    line-height: 1.5;
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   ABRECHNUNGSMODELL ERKLÄRER
═══════════════════════════════════════════════════════════ */
.billing-explainer {
    margin: 3rem 0;
    background: rgba(0,240,255,.03);
    border: 1px solid rgba(0,240,255,.12);
    border-radius: 20px;
    padding: 2rem 2.5rem;
}
.billing-explainer-header {
    display: flex; align-items: center; gap: .6rem;
    color: var(--accent-blue); font-size: 1rem; margin-bottom: 1.25rem;
}
.billing-explainer-body p { font-size: .88rem; line-height: 1.75; opacity: .75; margin-bottom: .75rem; }
.billing-models { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin: 1.5rem 0; }
.billing-model {
    display: flex; gap: 1rem;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 14px; padding: 1.25rem;
}
.billing-model-icon { font-size: 1.75rem; flex-shrink: 0; line-height: 1; }
.billing-model strong { display: block; font-size: .9rem; margin-bottom: .4rem; color: #fff; }
.billing-model p { font-size: .8rem; opacity: .6; line-height: 1.6; margin: 0; }
.billing-example {
    background: rgba(0,0,0,.25);
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 12px; padding: 1.25rem 1.5rem; margin-top: 1.5rem;
}
.billing-example-label { font-size: .78rem; opacity: .5; margin-bottom: .85rem; text-transform: uppercase; letter-spacing: 1px; }
.billing-example-row {
    display: flex; justify-content: space-between;
    font-size: .85rem; padding: .35rem 0;
    border-bottom: 1px solid rgba(255,255,255,.04); opacity: .7;
}
.billing-example-total {
    font-weight: 700; font-size: .95rem; color: #28a745;
    opacity: 1; border-bottom: none; padding-top: .6rem;
    margin-top: .25rem; border-top: 1px solid rgba(255,255,255,.1);
}

@media (max-width: 640px) {
    .billing-models { grid-template-columns: 1fr; }
    .billing-explainer { padding: 1.5rem; }
    .pricing-grid { grid-template-columns: 1fr; }
}
