/* --- FARBPALETTE & SETUP --- */
:root {
    --primary: #0ea5e9;       /* Strahlendes Hellblau */
    --primary-dark: #0c4a6e;  /* Tiefes Ozeanblau für Text/Kontrast */
    --primary-light: #e0f2fe; /* Sanftes Eisblau für Hintergründe */
    --text-dark: #1e293b;     /* Hochwertiges Anthrazit für Lesbarkeit */
    --text-muted: #64748b;    /* Grau für Untertitel */
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(14, 165, 233, 0.08);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    background-color: #f8fafc;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- NAVIGATION --- */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.logo span {
    color: var(--primary);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

nav ul li a:hover, nav ul li a.active {
    color: var(--primary);
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), #0284c7);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-dark);
    border: 2px solid var(--primary);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* --- HERO SECTION --- */
.hero {
    padding: 180px 0 100px 0;
    background: radial-gradient(circle at top right, var(--primary-light) 0%, #ffffff 60%);
    text-align: center;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 60px;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--primary);
    font-weight: 800;
}

.stat-item p {
    font-size: 14px;
    margin: 0;
}

/* --- PSYCHO-TRIGGER SECTIONS --- */
.section-padding {
    padding: 100px 0;
}

.bg-white { background-color: var(--white); }
.bg-light { background-color: var(--primary-light); }

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

/* Verkaufsargumente Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(14, 165, 233, 0.05);
}

.card:hover {
    transform: translateY(-10px);
}

.card h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.card p {
    color: var(--text-muted);
    font-size: 15px;
}

/* --- PREISTABELLEN (LEISTUNGEN) --- */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.price-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(14, 165, 233, 0.05);
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: scale(1.03);
}

/* Highlight für Komplett-Paket (Umsatztreiber) */
.price-card.popular {
    border: 3px solid var(--primary);
    background: linear-gradient(180deg, #ffffff 0%, var(--primary-light) 100%);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 20px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
}

.price-card h3 {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.price-card .price {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.price-card .price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-muted);
}

.price-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 35px;
    flex-grow: 1;
}

.price-card ul li {
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-card ul li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 900;
    font-size: 18px;
}

/* --- REIZFLUTUNG / VERKNAPPUNG (KONTAKT) --- */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background: var(--white);
    padding: 50px;
    border-radius: 30px;
    box-shadow: var(--shadow);
}

.urgency-box {
    background: var(--primary-dark);
    color: var(--white);
    padding: 40px;
    border-radius: 20px;
}

.urgency-box h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.urgency-box p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(14, 165, 233, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    color: #38bdf8;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input, textarea, select {
    width: 100%;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #f8fafc;
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

input:focus, textarea:focus, select:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
}

/* --- FOOTER --- */
footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* --- RESPONSIVE DESIGNS & HAMBURGER MENÜ --- */

/* Standardmäßig ist der Hamburger auf dem Desktop unsichtbar */
.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--primary-dark);
    border-radius: 3px;
    transition: var(--transition);
}

@media (max-width: 768px) {
    /* --- NAVIGATION & HAMBURGER --- */
    header {
        padding: 15px 0;
    }

    header .container {
        flex-direction: row; /* Hält Logo und Hamburger in einer Zeile */
        justify-content: space-between;
    }

    .hamburger {
        display: flex; /* Hamburger auf dem Handy anzeigen */
    }

    /* Das Menü wird zum Full-Screen / Dropdown Overlay */
    nav {
        position: fixed;
        top: 0;
        right: -100%; /* Versteckt das Menü rechts außerhalb des Bildschirms */
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        padding: 100px 30px;
        transition: var(--transition);
        backdrop-filter: blur(10px);
    }

    /* Wenn aktiv (per JS gesteuert), slidet es rein */
    nav.open {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 25px;
    }

    nav ul li a {
        font-size: 18px;
        display: block;
    }

    /* Hamburger-Animation zum "X" bei Aktivierung */
    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }

    /* --- ALLGEMEINE HANDY-OPTIMIERUNGEN --- */
    .section-padding {
        padding: 60px 0;
    }
    
    /* Verhindert, dass die Boxen am oberen Rand unter dem fixierten Header kleben */
    .section-padding[style*="padding-top: 150px;"] {
        padding-top: 100px !important;
    }

    .hero {
        padding: 130px 0 60px 0;
    }

    .hero h1 { 
        font-size: 32px; 
    }

    .hero p {
        font-size: 16px;
    }

    .hero-stats { 
        flex-direction: column; 
        gap: 30px; 
        margin-top: 40px;
    }

    /* Grids auf einspaltig zwingen */
    .grid-3, .price-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Kontaktformular & Dringlichkeits-Box untereinander */
    .contact-wrapper { 
        grid-template-columns: 1fr; 
        padding: 25px; 
        gap: 30px;
    }

    .urgency-box {
        padding: 25px;
    }
}