:root {
    --primary: #ff9900;
    --dark: #232f3e;
    --bg: #f8f9fa;
    --white: #ffffff;
}

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

body { 
    font-family: 'Inter', system-ui, sans-serif; 
    background: var(--bg); 
    color: var(--dark); 
    line-height: 1.65; 
}

.sale-banner { 
    background: var(--dark); 
    color: white; 
    text-align: center; 
    padding: 14px; 
    font-size: 0.95rem; 
    font-weight: 600; 
}

/* Hero */
.hero {
    background: linear-gradient(rgba(0,0,0,0.68), rgba(0,0,0,0.68)), 
                url('https://images.unsplash.com/photo-1472851294608-062f824d29cc?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 140px 20px 105px;
}

.hero h1 {
    font-size: 3.6rem;
    letter-spacing: -2.4px;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 4px 15px rgba(0,0,0,0.75);
}

.hero .slogan {
    font-size: 1.5rem;
    margin-bottom: 16px;
    text-shadow: 0 3px 12px rgba(0,0,0,0.8);
}

.price-box {
    margin-top: 30px;
}

.value-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.value-button:hover {
    background: #e68a00;
    transform: translateY(-2px);
}

.price-sub {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--dark);
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 10px;
}

.cta-button:hover {
    background: #f0f0f0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

.close-btn:hover {
    color: #ff0000;
}

/* Rest der Seite */
.container { 
    max-width: 1240px; 
    margin: -55px auto 60px; 
    padding: 0 20px; 
}

.card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.09);
    text-align: center;
}

h2 { font-size: 1.95rem; margin-bottom: 25px; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    text-align: left;
}

.benefit h3 {
    margin-bottom: 8px;
    color: var(--dark);
}

.cta-main {
    background: var(--primary);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    display: inline-block;
}

.wa-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(37,211,102,0.4);
    z-index: 100;
    text-decoration: none;
}

footer {
    background: #fff;
    padding: 70px 20px 40px;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #555;
}

.footer-grid {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 768px) {
    .hero { padding: 90px 15px 70px; }
    .hero h1 { font-size: 2.6rem; }
    .container { margin-top: -30px; }
}