/* ====================== RESET & BASE ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ====================== HEADER ====================== */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #0f4c81;
}

.logo strong {
    color: #1a7ac4;
}

nav a {
    margin-left: 28px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #0f4c81;
}

.btn-primary {
    background: #0f4c81;
    color: white;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #1a7ac4;
    transform: translateY(-2px);
}

/* ====================== HERO ====================== */
.hero {
    background: linear-gradient(135deg, #0f4c81 0%, #1a7ac4 100%);
    color: white;
    text-align: center;
    padding: 140px 20px 100px;
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Hintergrund-Bild */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.25;           /* Hier kannst du die Stärke anpassen (0.15 - 0.35) */
    z-index: 1;
}

/* Alle Inhalte darüber legen */
.hero > * {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.lead {
    font-size: 1.35rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    margin-bottom: 40px;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-left: 15px;
}

.disclaimer {
    font-size: 0.95rem;
    background: rgba(255,255,255,0.15);
    padding: 12px 25px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 30px;
}

/* ====================== SECTIONS ====================== */
.section {
    padding: 90px 0;
}

.bg-light {
    background: white;
}

h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
    color: #0f4c81;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: #1a7ac4;
    margin-bottom: 20px;
}

/* Benefits */
.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    font-size: 1.1rem;
}

.benefits div {
    padding: 15px 0;
}

/* Footer */
footer {
    background: #0f4c81;
    color: white;
    padding: 50px 0 30px;
    text-align: center;
}

footer nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
}

footer nav a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    nav a { margin-left: 15px; font-size: 0.95rem; }
    header .container { flex-direction: column; gap: 15px; }
}

/* ====================== KONTAKTFORMULAR ====================== */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #1a7ac4;
    box-shadow: 0 0 0 3px rgba(26,122,196,0.1);
}

.contact-form button {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* ====================== PREMIUM PAKETE LAYOUT ====================== */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.09);
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    text-align: left;
    height: 100%;
    border-top: 5px solid #0f4c81;
}

.service-card h3 {
    font-size: 1.55rem;
    margin-bottom: 10px;
    color: #0f4c81;
}

.service-card p strong {
    color: #1a7ac4;
}

/* Schöne Checkmarks statt Standard-Punkte */
.service-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.service-card ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.5;
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0f4c81;
    font-weight: bold;
    font-size: 1.3rem;
}

/* Preis-Box unten fixiert & prominent */
.price-box {
    background: linear-gradient(135deg, #0f4c81, #1a7ac4);
    color: white;
    border-radius: 10px;
    padding: 20px 25px;
    text-align: center;
    margin-top: auto;
    font-size: 1.65rem;
    box-shadow: 0 5px 15px rgba(15, 76, 129, 0.3);
}

.price-box strong {
    font-size: 2rem;
    display: block;
}

/* Hover-Effekt */
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

/* ====================== PREMIUM ABLAUF ====================== */
.steps-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.step-card-modern {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.step-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(15,76,129,0.18);
}

.step-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0f4c81, #1a7ac4);
}

.step-icon {
    width: 58px;
    height: 58px;
    background: #0f4c81;
    color: white;
    font-size: 1.9rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(15,76,129,0.3);
}

.step-content h3 {
    font-size: 1.45rem;
    margin-bottom: 14px;
    color: #0f4c81;
}

.step-content p {
    line-height: 1.65;
    color: #444;
}

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }
    .faq-item.open .faq-answer {
        max-height: 800px;   /* wichtig: groß genug für lange Texte */
    }
    .faq-item.open .fa-chevron-down {
        transform: rotate(180deg);
    }
    
/* ==================== MODERNISIERUNG 2026 ==================== */

.section-padding {
    padding-top: 7rem;
    padding-bottom: 7rem;
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.12);
    border-color: rgb(16 185 129 / 0.2);
}

/* Größere, modernere Buttons */
.btn-primary {
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(16 185 129 / 0.3);
}

/* Etwas mehr Luft bei Überschriften */
h2 {
    letter-spacing: -0.025em;
}

/* Optional: Leichter Hintergrund für Sektionen */
.bg-soft {
    background-color: #f8fafc;
}