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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.logo {
    font-size: 1.1rem;
    font-weight: 700;
    color: #667eea;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 280px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #667eea;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: #667eea;
}

.btn-quiz {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 10px 20px;
    border-radius: 8px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-info {
    margin-top: 20px;
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Painpoint Banner (Hero Variant für end-schwangere) */
.hero-painpoint {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.hero-painpoint .cta-button {
    color: #f5576c;
}

/* Hub Choice Section */
.choice-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
}

.choice-section .container {
    width: 100%;
}

.choice-section h1 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 15px;
    color: #333;
}

.choice-section .lead-text {
    text-align: center;
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.choice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.choice-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid transparent;
}

.choice-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.choice-icon {
    font-size: 4.5rem;
    margin-bottom: 25px;
    line-height: 1;
}

.choice-card h2 {
    color: #667eea;
    font-size: 1.7rem;
    margin-bottom: 15px;
}

.choice-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
}

.choice-tags {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    width: 100%;
}

.choice-tags li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
}

.choice-tags li::before {
    content: "✓ ";
    color: #667eea;
    font-weight: 700;
    margin-right: 6px;
}

.choice-btn {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: transform 0.3s;
    margin-top: auto;
}

.choice-card:hover .choice-btn {
    transform: scale(1.05);
}

/* Benefits Section */
.benefits {
    padding: 80px 20px;
    background: #f8f9ff;
}

.benefits h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #667eea;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
}

/* Target Groups */
.target-groups {
    padding: 80px 20px;
}

.target-groups h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.group-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s;
}

.group-card:hover {
    transform: scale(1.05);
}

.group-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.group-card p {
    opacity: 0.95;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-box {
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.cta-button-large:hover {
    transform: scale(1.05);
}

/* Process */
.process {
    padding: 80px 20px;
    background: #f8f9ff;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #667eea;
}

.step-arrow {
    font-size: 2rem;
    color: #667eea;
    font-weight: 700;
}

/* Painpoint / Story Block */
.story-block {
    padding: 80px 20px;
    background: white;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-highlight {
    background: linear-gradient(135deg, #fff5f7 0%, #fef3f3 100%);
    border-left: 5px solid #f5576c;
    padding: 25px 30px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 1.05rem;
    color: #333;
}

/* Partner Section */
.partner {
    padding: 80px 20px;
}

.partner-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #f8f9ff;
    padding: 50px;
    border-radius: 15px;
}

.partner-box h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.partner-logo {
    margin: 40px 0;
    padding: 30px;
    background: white;
    border-radius: 12px;
}

.partner-logo h3 {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 10px;
}

.partner-benefits {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 30px auto 0;
}

.partner-benefits li {
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid #e0e0e0;
}

.partner-benefits li:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 20px 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.footer-col p {
    color: #bbb;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #bbb;
}

/* Responsive */
@media (max-width: 968px) {
    .choice-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .choice-section h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 10px 15px;
    }

    .logo {
        font-size: 0.85rem;
        max-width: 70%;
        white-space: normal;
        line-height: 1.2;
        word-break: break-word;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-shrink: 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 15px 0;
    }

    .nav-menu a {
        display: block;
        padding: 10px;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .benefits h2,
    .target-groups h2,
    .process h2,
    .cta-box h2,
    .story-content h2 {
        font-size: 1.8rem;
    }

    .step-arrow {
        display: none;
    }

    /* Choice section mobile */
    .choice-section {
        padding: 60px 20px;
    }

    .choice-card {
        padding: 35px 25px;
    }

    .choice-icon {
        font-size: 3.5rem;
    }

    /* Partner Section Mobile */
    .partner {
        padding: 40px 15px;
    }

    .partner-box {
        padding: 25px 20px;
    }

    .partner-box h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .partner-logo {
        margin: 25px 0;
        padding: 20px 15px;
    }

    .partner-logo h3 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .partner-logo p {
        font-size: 0.95rem;
    }

    .partner-benefits {
        padding: 0 10px;
    }

    .partner-benefits li {
        font-size: 0.95rem;
        padding: 10px 0;
    }

    /* Weitere Mobile Anpassungen */
    .benefit-card,
    .group-card,
    .step {
        padding: 25px 20px;
    }

    .cta-button,
    .cta-button-large {
        padding: 15px 30px;
        font-size: 1rem;
    }
}
