/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #FFFFFF;
}

a {
    color: #2E86C1;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1B4F72;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4 {
    line-height: 1.3;
    color: #1B4F72;
}

h1 { font-size: 42px; font-weight: 700; }
h2 { font-size: 32px; font-weight: 600; }
h3 { font-size: 24px; font-weight: 600; }
h4 { font-size: 20px; font-weight: 600; }

/* ===== CONTAINER ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER / NAVIGATION ===== */
.header {
    background: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
    padding-bottom: 0;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #1B4F72;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #1B4F72;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.header-phone {
    margin-left: auto;
    margin-right: 24px;
}

.header-phone a {
    color: #1B4F72;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    white-space: nowrap;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    color: #2C3E50;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    text-decoration: none;
}

.nav a:hover,
.nav a.active {
    color: #2E86C1;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #2C3E50;
    margin: 6px 0;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1B4F72 0%, #2E86C1 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('https://mgx-backend-cdn.metadl.com/generate/images/755633/2026-03-27/824e55c2-6ea4-4eb9-a982-8bbddade21dd.png') center/cover no-repeat;
    opacity: 0.2;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.hero-content {
    flex: 1;
    color: #FFFFFF;
}

.hero-content h1 {
    color: #FFFFFF;
    font-size: 44px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 540px;
    line-height: 1.7;
}

.hero-disclaimer {
    font-size: 12px !important;
    opacity: 0.7 !important;
    margin-top: 16px !important;
    margin-bottom: 0 !important;
    max-width: 500px;
    line-height: 1.5 !important;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 12px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    text-align: center;
}

.btn-primary {
    background: #E74C3C;
    color: #FFFFFF;
}

.btn-primary:hover {
    background: #C0392B;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231,76,60,0.4);
}

.btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
    background: #FFFFFF;
    color: #1B4F72;
}

.btn-outline {
    background: transparent;
    color: #1B4F72;
    border: 2px solid #1B4F72;
}

.btn-outline:hover {
    background: #1B4F72;
    color: #FFFFFF;
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 0;
}

.section-gray {
    background: #F8F9FA;
}

.section-blue {
    background: linear-gradient(135deg, #1B4F72 0%, #2E86C1 100%);
    color: #FFFFFF;
}

.section-blue h2,
.section-blue h3 {
    color: #FFFFFF;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    color: #6C757D;
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.section-blue .section-header p {
    color: rgba(255,255,255,0.8);
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #E8ECF0;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #2E86C1, #1B4F72);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: #6C757D;
    font-size: 15px;
    line-height: 1.6;
}

/* ===== PROCESS / STEPS ===== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
    counter-reset: step;
}

.step-card {
    text-align: center;
    padding: 24px;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.step-card p {
    color: #6C757D;
    font-size: 15px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #E8ECF0;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: #4A5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E86C1, #1B4F72);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-name {
    font-weight: 600;
    color: #2C3E50;
}

.testimonial-role {
    font-size: 14px;
    color: #6C757D;
}

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    margin-bottom: 16px;
}

.cta-section p {
    margin-bottom: 30px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-image img {
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 16px;
    color: #4A5568;
    line-height: 1.7;
}

.about-notice {
    background: #FFF3CD;
    border: 1px solid #FFEAA7;
    border-radius: 8px;
    padding: 16px 20px;
    margin-top: 16px;
}

.about-notice p {
    color: #856404;
    font-size: 14px;
    margin-bottom: 0;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.info-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #E8ECF0;
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card p,
.info-card a {
    color: #4A5568;
    font-size: 15px;
    line-height: 1.6;
}

/* ===== MAP ===== */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== CONTACT FORM ===== */
.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2C3E50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #E8ECF0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    color: #2C3E50;
    background: #FFFFFF;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2E86C1;
    box-shadow: 0 0 0 3px rgba(46,134,193,0.15);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group .error-message {
    color: #E74C3C;
    font-size: 13px;
    margin-top: 6px;
    display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #E74C3C;
}

.form-group.error .error-message {
    display: block;
}

.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.form-consent input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    accent-color: #2E86C1;
}

.form-consent label {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.5;
}

.form-service-notice {
    background: #F0F7FF;
    border: 1px solid #BDD7EE;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 24px;
}

.form-service-notice p {
    font-size: 13px;
    color: #2C5282;
    margin: 0;
    line-height: 1.6;
}

.form-service-notice a {
    color: #2E86C1;
    font-weight: 600;
}

/* ===== THANK YOU PAGE ===== */
.thankyou-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thankyou-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #27AE60, #2ECC71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 48px;
    color: #FFFFFF;
}

.thankyou-section h1 {
    margin-bottom: 16px;
}

.thankyou-section p {
    color: #4A5568;
    font-size: 18px;
    margin-bottom: 12px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.thankyou-section .btn {
    margin-top: 24px;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    margin-bottom: 12px;
}

.legal-content .last-updated {
    color: #6C757D;
    font-size: 14px;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 24px;
    margin-top: 36px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 16px;
    color: #4A5568;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    margin-bottom: 8px;
    color: #4A5568;
    line-height: 1.6;
}

/* ===== PRICING ===== */
.pricing-notice {
    background: #FFF3CD;
    border: 1px solid #FFEAA7;
    border-radius: 10px;
    padding: 20px 24px;
    margin-bottom: 48px;
}

.pricing-notice p {
    color: #856404;
    font-size: 15px;
    margin: 0;
    line-height: 1.7;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.pricing-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 2px solid #E8ECF0;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.pricing-card-featured {
    border-color: #2E86C1;
    box-shadow: 0 8px 30px rgba(46,134,193,0.15);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #2E86C1;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 0 14px 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    padding: 32px 28px 24px;
    text-align: center;
    border-bottom: 1px solid #E8ECF0;
}

.pricing-header h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #1B4F72;
}

.price-period {
    font-size: 14px;
    color: #6C757D;
    margin-top: 4px;
}

.pricing-body {
    padding: 28px;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
}

.pricing-body li {
    padding: 8px 0;
    color: #4A5568;
    font-size: 15px;
    border-bottom: 1px solid #F0F2F5;
}

.pricing-body li:last-child {
    border-bottom: none;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid #E8ECF0;
}

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1B4F72;
}

.faq-item p {
    color: #4A5568;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: #1B2A3D;
    color: #B0BEC5;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
}

.footer-brand .logo {
    color: #FFFFFF;
    margin-bottom: 16px;
}

.footer-brand .logo-icon {
    background: #2E86C1;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #8899A6;
}

.footer h4 {
    color: #FFFFFF;
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    color: #8899A6;
    font-size: 14px;
    padding: 4px 0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FFFFFF;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
    color: #8899A6;
}

.footer-impressum {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
}

.footer-impressum p {
    font-size: 12px;
    color: #6C757D;
    line-height: 1.6;
}

.footer-impressum a {
    color: #5DADE2;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 0;
    background: rgba(255,255,255,0.03);
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #8899A6;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: #6C757D;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1B2A3D;
    color: #FFFFFF;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-inner p {
    font-size: 14px;
    flex: 1;
    min-width: 280px;
    line-height: 1.6;
}

.cookie-inner a {
    color: #5DADE2;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.cookie-btn-accept {
    background: #27AE60;
    color: #FFFFFF;
}

.cookie-btn-accept:hover {
    background: #219A52;
}

.cookie-btn-decline {
    background: transparent;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-decline:hover {
    border-color: #FFFFFF;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, #1B4F72 0%, #2E86C1 100%);
    padding: 60px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-hero h1 {
    color: #FFFFFF;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 18px;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== STATS ===== */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    h1 { font-size: 34px; }
    h2 { font-size: 28px; }

    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-disclaimer {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        max-width: 400px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }

    .header-phone {
        display: none;
    }

    .nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #FFFFFF;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav.open {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero {
        min-height: 440px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-image {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    h1 { font-size: 28px; }
    h2 { font-size: 24px; }

    .hero-content h1 {
        font-size: 26px;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .price-amount {
        font-size: 28px;
    }
}