/* ===================== HERO ===================== */
.hero-section {
    padding: 0 70px 0;
    background: #e6e7e8;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 100%;
}

.hero-section::before {
    content: '— MITGLIEDSCHAFT';
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #128c46;
    margin-bottom: 0.6rem;
}

.hero-left h1 {
    font-size: 38px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 1rem;
}

.hero-tagline {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #128c46;
    margin-top: 15px;
}

.hero-left-p {
    font-size: 0.92rem;
    color: #444;
    line-height: 1.8;
    max-width: 100%;
    margin: 0;
}

/* ===================== FORMULAR ===================== */
.form-section {
    padding: 4rem 70px;
    background: #f2f3f4;
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(0,0,0,0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.field {
    position: relative;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
    grid-column: span 2;
}

.field.full { grid-column: 1 / -1; }
.field.half { grid-column: span 3; }

.field input {
    width: 100%;
    box-sizing: border-box;
    padding: 22px 16px 8px;
    border: 1.5px solid rgba(0,0,0,0.12);
    border-radius: 10px;
    font-size: 0.95rem;
    background: #fafafa;
    color: #1a1a1a;
    transition: border-color 0.2s, background 0.2s;
}

.field input:focus {
    outline: none;
    border-color: #128c46;
    background: #ffffff;
}

.field label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.88rem;
    color: #555f58;
    pointer-events: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.field input:focus ~ label,
.field input:not(:placeholder-shown) ~ label {
    top: 10px;
    transform: none;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #128c46;
}

.field .required-dot {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #128c46;
}

.agb-row {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem 0 0;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.agb-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #128c46;
    cursor: pointer;
    flex-shrink: 0;
}

.agb-row span { font-size: 0.88rem; color: #555f58; }
.agb-row a { color: #128c46; font-weight: 700; text-decoration: none; }
.agb-row a:hover { text-decoration: underline; }

.docs-row {
    grid-column: span 2;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.doc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #e8f5ee;
    border: 1px solid rgba(18,140,70,0.2);
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #128c46;
    text-decoration: none;
    transition: background 0.2s;
}

.doc-link::before { content: '↗'; font-size: 0.7rem; }
.doc-link:hover { background: rgba(18,140,70,0.15); }

.submit-row {
    grid-column: span 2;
    padding-top: 0.5rem;
}

.btn-submit {
    padding: 0.85rem 2.5rem;
    background: #ccc;
    color: #888;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: not-allowed;
    transition: all 0.2s;
    letter-spacing: 0.02em;
}

.btn-submit.active {
    background: #128c46;
    color: #ffffff;
    cursor: pointer;
}

.btn-submit.active:hover {
    background: #0a5c2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(18,140,70,0.3);
}

/* ===================== INFO SECTION ===================== */
.mv-info-section {
    background: #ffffff;
    padding: 2.5rem 70px 1.5rem;
}

.mv-info-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.mv-info-text-block {
    display: flex;
    flex-direction: column;
    gap: 0;
    grid-column: 1;
    grid-row: 1;
}

.mv-info-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #128c46;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}

.mv-info-text-block h2 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #1a1a1a;
    margin: 0;
}

.mv-info-text-block h2:empty {
    display: none;
}


.mv-info-eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 1.5px;
    background: #128c46;
}

.mv-info-stat-row { display: none; }

.mv-info-content-block {
    display: contents;
}

.mv-info-image-block {
    grid-column: 2;
    grid-row: 1 / 3;
    width: 100%;
    height: 100%;
    min-height: 120px;
    max-height: 380px;
    overflow: hidden;
    border-radius: 14px;
}

.mv-info-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mv-info-paragraphs {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    margin-top: 0;
}

.mv-info-paragraphs p {
    font-size: 0.92rem;
    line-height: 1.85;
    color: #444;
    padding: 1rem 0 1rem 1.25rem;
    border-left: 2px solid rgba(0,0,0,0.08);
    margin: 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.mv-info-paragraphs p:first-child {
    border-left-color: #128c46;
    padding-top: 0;
}

.mv-info-paragraphs p:last-child { border-bottom: none; }

/* ===================== BENEFITS ===================== */
.mv-benefits-section { background: #f2f3f4; }

.mv-benefits-inner { padding: 3.5rem 70px 2.5rem; }

.mv-benefits-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.12);
}

.mv-benefits-header-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mv-benefits-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #128c46;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-benefits-eyebrow::before {
    content: '';
    display: block;
    width: 20px;
    height: 1.5px;
    background: #128c46;
}

.mv-benefits-header-left h2 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    margin: 0;
}

.mv-benefits-count { display: none; }

.mv-benefits-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 3rem;
}

.mv-benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mv-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.mv-benefits-grid ul {
    display: contents;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mv-benefits-grid ul li,
.mv-benefits-grid p {
    background: #ffffff;
    border-radius: 12px;
    padding: 1.4rem 1.6rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.06);
    border-left: 3px solid #128c46;
    font-size: 0.88rem;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0;
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
}

.mv-benefits-grid ul li::before,
.mv-benefits-grid p::before { display: none; }

.mv-benefits-grid ul li:hover,
.mv-benefits-grid p:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.09);
}

/* ===================== MODAL ===================== */
.modal { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(0,0,0,0.6); }
.modal-content { background-color: #fff; margin: 5% auto; padding: 30px; border-radius: 10px; width: 80%; max-width: 900px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); max-height: 80vh; overflow-y: auto; }
.modal .close { color: #aaa; float: right; font-size: 28px; font-weight: bold; cursor: pointer; }
.modal .close:hover { color: #000; }
.agb-scroll { border: 1px solid #ddd; padding: 15px; height: 50vh; overflow-y: scroll; background: #fafafa; margin-bottom: 20px; }
.agb-confirm { display: flex; flex-direction: column; gap: 10px; }
.agb-confirm input { padding: 10px; font-size: 16px; border-radius: 6px; border: 1px solid #ccc; max-width: 360px; }
.agb-confirm button { align-self: flex-start; background-color: #128c46; color: #fff; border: none; padding: 10px 18px; font-weight: bold; border-radius: 8px; cursor: pointer; }
.agb-confirm button:hover { background-color: #0f6f39; }

/* ===================== TABLET (≤1400px) ===================== */
@media (max-width: 1400px) {
    .hero-section { padding: 0 40px 0; }
    .form-section { padding: 3.5rem 40px; }
    .mv-info-section { padding: 4rem 40px; }
    .mv-benefits-inner { padding: 4rem 40px; }
}

/* ===================== TABLET (≤1024px) ===================== */
@media (max-width: 1024px) {
    .hero-section { padding: 0 40px 0; }
    .mv-info-inner { gap: 2.5rem; }
    .mv-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .form-grid { grid-template-columns: repeat(4, 1fr); }
    .field { grid-column: span 2; }
    .field.full { grid-column: 1 / -1; }
    .field.half { grid-column: span 2; }
}

/* ===================== TABLET (≤900px) ===================== */
@media (max-width: 900px) {
    .mv-info-inner {
        grid-template-columns: 1fr;
    }

    .mv-info-text-block {
        grid-column: 1;
        grid-row: 1;
    }

    .mv-info-image-block {
        grid-column: 1;
        grid-row: 2;
        min-height: 260px;
    }

    .mv-info-paragraphs {
        grid-column: 1;
        grid-row: 3;
        margin-top: 0;
    }
}

/* ===================== MOBILE (≤768px) ===================== */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 20px 40px;
        min-height: auto;}
    .hero-left h1 { font-size: 28px; }


    .form-section { padding: 2.5rem 20px; }
    .form-grid { grid-template-columns: 1fr 1fr; gap: 12px; padding: 1.5rem; }
    .field { grid-column: span 1; }
    .field.full { grid-column: 1 / -1; }
    .field.half { grid-column: span 1; }
    .field.nachname { grid-column: 1 / -1; }
    .agb-row, .docs-row, .submit-row { grid-column: 1 / -1; }
    .btn-submit { width: 100%; }
    .mv-info-section { padding: 3rem 20px; }
    .mv-info-image-block { min-height: 220px; }
    .mv-benefits-inner { padding: 3rem 20px; }
    .mv-benefits-image { height: 200px; }
    .mv-benefits-grid { grid-template-columns: 1fr; }
    .mv-benefits-header { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ===================== MOBILE (≤480px) ===================== */
@media (max-width: 480px) {
    .hero-section { padding: 40px 20px 40px; }
    .hero-left h1 { font-size: 24px; }
    .form-section { padding: 2rem 20px; }
    .mv-info-section { padding: 2.5rem 20px; }
    .mv-info-image-block { min-height: 180px; }
}