/* assets/css/style.css */

:root {
    --primary: #0056b3;     /* Seriöses Blau */
    --urgent: #e74c3c;      /* Notfall Rot */
    --tech: #00d4ff;        /* KI Cyan */
    --dark-bg: #111827;     /* Fast Schwarz */
    --light-bg: #f9fafb;    /* Helles Grau */
    --white: #ffffff;
    --text: #333;
}

body { margin: 0; font-family: 'Segoe UI', sans-serif; color: var(--text); line-height: 1.6; }
a { text-decoration: none; }
h1, h2, h3, h4 { margin-top: 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: var(--white); padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 100; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 800; font-size: 1.2rem; color: var(--primary); text-transform: uppercase; }
nav ul { display: flex; list-style: none; margin: 0; padding: 0; }
nav ul li { margin: 0 15px; }
nav a { color: var(--text); font-weight: 500; }

/* Buttons */
.btn { display: inline-block; padding: 12px 25px; border-radius: 50px; font-weight: bold; transition: all 0.3s; color: white; }
.btn-call-header { background: var(--primary); padding: 8px 20px; font-size: 0.9rem; }
.btn-urgent { background: var(--urgent); box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4); }
.btn-urgent:hover { transform: scale(1.05); background: #c0392b; }
.btn-tech { background: var(--tech); color: var(--dark-bg); box-shadow: 0 4px 15px rgba(0, 212, 255, 0.4); }
.btn-tech:hover { transform: scale(1.05); background: #00b7ff; }
.btn-outline-cyan { border: 2px solid var(--tech); color: var(--tech); background: transparent; margin-top: 20px; }
.btn-outline-cyan:hover { background: var(--tech); color: var(--dark-bg); }

/* Hero */
.hero-section {
    background: linear-gradient(135deg, #0a2e52 0%, #000000 100%);
    color: white; padding: 100px 0; text-align: center;
}
.hero-content h1 { font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.hero-sub { font-size: 1.2rem; margin-bottom: 40px; opacity: 0.9; }
.hero-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* Sections */
.section-light { background: var(--light-bg); padding: 80px 0; }
.section-dark { background: var(--dark-bg); color: white; padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.2rem; color: var(--primary); }

/* Grids & Cards */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 40px; }

.feature-card {
    background: var(--white); padding: 30px; border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); text-align: center; transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-5px); }
.feature-card .icon { font-size: 3rem; margin-bottom: 15px; }

/* KI Section */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.badge { background: var(--tech); color: var(--dark-bg); padding: 5px 10px; border-radius: 4px; font-weight: bold; text-transform: uppercase; font-size: 0.8rem;}
.check-list { list-style: none; padding: 0; }
.check-list li { margin-bottom: 15px; font-size: 1.1rem; }

/* Footer */
footer { background: #222; color: white; padding: 50px 0 20px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 40px; }
.copyright { text-align: center; border-top: 1px solid #444; padding-top: 20px; color: #888; }

/* Mobile */
@media (max-width: 768px) {
    .header-flex { flex-direction: column; gap: 15px; }
    .hero-content h1 { font-size: 2rem; }
    .split-layout { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; text-align: center; box-sizing: border-box; }
}
/* --- NEUE STYLES FÜR MEHR INHALT --- */

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--tech);
    color: var(--tech);
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-trust {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Listen in Karten */
.card-list {
    text-align: left;
    margin-top: 15px;
    padding-left: 20px;
    color: #666;
    font-size: 0.95rem;
}

/* Stat Box im KI Bereich */
.stat-box {
    display: flex;
    gap: 30px;
    margin: 30px 0;
}
.stat strong {
    display: block;
    font-size: 2rem;
    color: var(--tech);
}
.stat span {
    font-size: 0.9rem;
    color: #aaa;
}

/* Prozess Schritte (1, 2, 3) */
.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.step {
    flex: 1;
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}
.step-number {
    background: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 20px;
}

/* FAQ Styling */
.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}
.faq-item summary {
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    list-style: none; /* Dreieck weg bei manchen Browsern */
    position: relative;
}
.faq-item summary::after {
    content: '+'; 
    position: absolute; right: 20px; font-weight: bold; color: var(--primary);
}
.faq-item[open] summary::after { content: '-'; }
.faq-item p {
    padding: 0 20px 20px;
    margin: 0;
    color: #555;
    border-top: 1px solid #eee;
}

/* Mobile Anpassung für die neuen Teile */
@media (max-width: 768px) {
    .process-steps { flex-direction: column; }
    .stat-box { justify-content: center; }
}
/* --- PRICING TABLES (für Services) --- */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    align-items: center; /* Damit die mittlere Karte größer wirken kann */
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    border: 1px solid #eee;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--tech);
}

/* Das mittlere Paket hervorheben */
.pricing-card.popular {
    border: 2px solid var(--tech);
    background: linear-gradient(180deg, #fff 0%, #f0fbff 100%);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.pricing-card.popular:hover {
    transform: scale(1.08);
}

.badge-pop {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tech);
    color: var(--dark-bg);
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.p-header h3 { font-size: 1.5rem; margin-bottom: 5px; color: var(--primary); }
.p-header p { color: #777; font-size: 0.9rem; margin-bottom: 20px; }

.p-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 30px;
}

.p-price span {
    font-size: 1rem;
    color: #999;
    font-weight: normal;
}

.p-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.p-features li {
    margin-bottom: 12px;
    border-bottom: 1px solid #f5f5f5;
    padding-bottom: 12px;
    color: #555;
}
.p-features li strong { color: var(--text); }

/* Mobile Anpassung Pricing */
@media (max-width: 768px) {
    .pricing-card.popular { transform: scale(1); margin: 20px 0; }
    .pricing-card.popular:hover { transform: scale(1.02); }
}