/* 
 * 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.05);
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.05);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

@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;
    }
}
