/* 
 * marketing_theme.css
 * Zentrales Corporate Design (CD) für Marketing- & Landing-Seiten.
 * 1:1 exakte Extraktion & Verfeinerung aus kol.php.
 */

@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined');

:root {
    --cd-dark-bg: #0f172a;
    --cd-blue-primary: #1f4fd8;
    --cd-blue-accent: #3b82f6;
    --cd-blue-light: #60a5fa;
    --cd-blue-badge-text: #93c5fd;
    --cd-text-muted: #94a3b8;
    --cd-card-bg: linear-gradient(180deg, rgba(30,41,59,0.95), rgba(15,23,42,0.95));
    --cd-border-subtle: rgba(255,255,255,0.1);
}

/* HERO SECTION (1:1 kol.php) */
.hero-kol-style {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 45%, #1f4fd8 100%);
    color: white;
    padding: 6rem 1.5rem;
    position: relative;
    overflow: hidden;
}

/* HERO TYPOGRAPHY (1:1 kol.php Benchmark) */
.hero-kol-style h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-kol-style h1 .accent-text {
    color: var(--cd-blue-light);
}

.hero-kol-style p.hero-subtitle {
    font-size: 1.15rem;
    color: var(--cd-text-muted);
    margin-bottom: 2.25rem;
    max-width: 550px;
    line-height: 1.6;
}

/* BADGES (1:1 kol.php) */
.badge-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: var(--cd-blue-badge-text);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
}

/* BUTTONS */
.btn-hero-primary {
    background: white;
    color: var(--cd-blue-primary);
    padding: 0.95rem 1.75rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 0.95rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    transition: background 0.2s ease, transform 0.2s ease;
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

/* FEATURE PILLS GRID (Zentralisiert für kol.php & landing_sandbox.php) */
.feature-pills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.pill-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.18);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.pill-item .pill-icon,
.pill-item span.material-symbols-outlined {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 18px;
}

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

/* DASHBOARD MOCKUP CONTAINER (1:1 kol.php) */
.dashboard-mock {
    background: linear-gradient(180deg, rgba(30,41,59,0.95), rgba(15,23,42,0.95));
    border: 1px solid var(--cd-border-subtle);
    border-radius: 24px;
    padding: 1.5rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.stat-box {
    background: rgba(15,23,42,0.6);
    border-radius: 16px;
    padding: 1rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--cd-text-muted);
    margin-bottom: 4px;
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* FEATURE GRIDS (1:1 kol.php) */
.strict-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .strict-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* SMARTPHONE & TABLET RESPONSIVE OVERRIDES */
.floating-glass-badge {
    background: rgba(203, 213, 225, 0.95);
    backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 16px;
    padding: 12px 16px;
    color: #0f172a;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    z-index: 20;
}

@media (max-width: 992px) {
    .hero-kol-style { padding: 4rem 1.25rem; }
    .hero-kol-style h1 { font-size: 2.5rem; }
    .floating-badge-1 { top: 10px !important; left: 10px !important; width: 260px !important; }
    .floating-badge-2 { bottom: 10px !important; right: 10px !important; width: 230px !important; }
    .floating-badge-3 { display: none !important; }
}

@media (max-width: 768px) {
    .hero-kol-style { padding: 2.5rem 1rem !important; }
    .hero-kol-style h1 { font-size: 2.0rem !important; line-height: 1.25 !important; margin-bottom: 1rem !important; }
    .hero-kol-style p.hero-subtitle { font-size: 0.975rem !important; margin-bottom: 1.5rem !important; }
    .hero-kol-style .buttons { flex-direction: column !important; align-items: stretch !important; gap: 0.75rem !important; width: 100% !important; margin-bottom: 1.75rem !important; }
    .hero-kol-style .buttons .rich-tooltip-container { width: 100% !important; }
    .btn-hero-primary, .btn-hero-secondary { width: 100% !important; justify-content: center !important; text-align: center !important; padding: 0.85rem 1.25rem !important; font-size: 0.975rem !important; }
    .pill-item { white-space: normal !important; font-size: 0.8rem !important; padding: 8px 10px !important; }
    
    .floating-badge-1, .floating-badge-2, .floating-badge-3 {
        position: static !important;
        width: 100% !important;
        margin-top: 10px !important;
        box-sizing: border-box !important;
        display: block !important;
    }
}

