/* ==========================================
   ABONNIEREN SEITE - KONSOLIDIERTES CSS
   ========================================== */

.abo-page-content {
    margin-top: 70px;
}

/* Der schmale Container für Text & Formular */
.container-narrow {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 2.5rem; /* Viel Platz zum Rand für bessere Lesbarkeit */
}

/* Header Bereich */
.page-hero {
    /* background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary) 100%); */
background: radial-gradient(ellipse at 50% 40%,
        #60a5fa 0%,
        #3b82f6 30%,
        #1e40af 55%,
        #1e293b 80%,
        #0f172a 100%
    );	
    color: white;
    padding: 11rem 1.5rem 7rem 1.5rem;
    text-align: center;
}

/* Info Bereich (Das Abo) */
.abo-details {
    padding: 5rem 0;
    text-align: center; /* Zentriert die Überschrift und den Preis */
}

.abo-info-text h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
    display: block;
}

/* Die Liste der Vorteile */
.abo-benefits-list {
    list-style: none;
    display: inline-block; /* Erlaubt Zentrierung des Blocks bei linksbündigem Text */
    text-align: left;
    margin-bottom: 20px;
}

.abo-benefits-list li {
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
    font-size: 1.1rem;
}

.abo-benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Formular Sektion */
.order-section {
    background-color: #fcfcfc; /* Ganz leichtes Grau zur Abhebung */
    padding: 6rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.order-section h3 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

/* Formular Felder */
.form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.styled-form .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.styled-form label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333 !important;
}

/* SICHTBARKEIT DER FELDER (Fix für Weiß-auf-Weiß) */
.styled-form input, 
.styled-form textarea {
    border: 1px solid #ccc !important;
    padding: 14px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: #ffffff !important;
    color: #000000 !important; /* Schwarze Schrift */
}

.styled-form input::placeholder,
.styled-form textarea::placeholder {
    color: #999 !important;
}

.full-width {
    grid-column: span 3;
}

/* Absende Button */
.form-submit {
    text-align: center;
    margin-top: 30px;
}

.btn-black {
    background: #000;
    color: #fff;
    border: none;
    padding: 16px 60px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.3s;
}

.btn-black:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Statusmeldungen */
.status-msg {
    padding: 15px 20px;
    margin-bottom: 30px;
    border-radius: 4px;
    text-align: center;
}
.status-msg.success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.status-msg.error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }

/* Vorschaubild Sektion am Ende */
.abo-preview-footer {
    padding: 5rem 0 8rem;
    text-align: center;
}

.preview-box p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bottom-preview-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.bottom-preview-img:hover {
    transform: translateY(-5px);
}

/* Mobil-Anpassung */
@media (max-width: 850px) {
    .container-narrow {
        padding: 0 2rem; /* Verhindert das Kleben am Rand */
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: span 1;
    }
    .abo-info-text h2 {
        font-size: 2.4rem;
    }
    .btn-black {
        width: 100%; /* Button auf Handy volle Breite */
    }
}