/* Layout & Basics */
body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #111827;
    background: #f3f4f6;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Header */

.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 16px;
}

.logo {
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.03em;
}.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.03em;
}

.logo-img {
    height: 64px;
    width: auto;
    display: block;
}


.nav {
    display: flex;
    gap: 16px;
    font-size: 0.95rem;
}

.nav a {
    padding: 4px 8px;
    border-radius: 999px;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav a:hover {
    background: #f3f4f6;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    text-decoration: none;
}

.btn-primary {
    background: #111827;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.25);
}

.btn-primary:hover {
    background: #020617;
}

.btn-secondary {
    background: #ffffff;
    color: #111827;
    border-color: #d1d5db;
}

.btn-secondary:hover {
    background: #f9fafb;
}

/* Hero */

.hero {
    padding: 64px 0 48px;
    background: radial-gradient(circle at top left, #e5e7eb, #f3f4f6 55%, #ffffff);
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: center;
}

.hero-text h1 {
    font-size: clamp(2rem, 4vw, 2.6rem);
    line-height: 1.1;
    margin: 0 0 16px;
}

.hero-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #4b5563;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}

.hero-note {
    font-size: 0.9rem;
    color: #6b7280;
}

.hero-side {
    display: flex;
    justify-content: flex-end;
}

.hero-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 20px 18px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
    border: 1px solid #e5e7eb;
    max-width: 360px;
}

.hero-card h2 {
    font-size: 1.05rem;
    margin-top: 0;
    margin-bottom: 10px;
}

.hero-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.hero-card li {
    padding-left: 16px;
    position: relative;
    margin-bottom: 6px;
}

.hero-card li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #111827;
    position: absolute;
    left: 2px;
    top: 0.65em;
}

/* Sections */

.section {
    padding: 56px 0;
    background: #f9fafb;
}

.section-alt {
    padding: 56px 0;
    background: #ffffff;
}

.section h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.section p {
    max-width: 760px;
    font-size: 0.98rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Steps */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.step {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 18px 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.section-alt .step {
    background: #f9fafb;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.step h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.step p {
    font-size: 0.95rem;
    margin: 0;
}

/* Features */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.feature {
    background: #f9fafb;
    border-radius: 16px;
    padding: 18px 18px 20px;
    border: 1px solid #e5e7eb;
}

.section-alt .feature {
    background: #ffffff;
}

.feature h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.feature p {
    font-size: 0.95rem;
    margin: 0;
}

/* Audience */

.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.audience-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 18px 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.section-alt .audience-card {
    background: #f9fafb;
}

.audience-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.audience-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Box */

.contact-box {
    margin-top: 24px;
    padding: 20px 20px 22px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.contact-box p {
    margin: 0 0 12px;
    font-size: 0.96rem;
}

/* Footer */

.footer {
    background: #111827;
    color: #e5e7eb;
    padding: 16px 0;
    margin-top: 32px;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-nav {
    display: flex;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-nav a {
    color: #e5e7eb;
    opacity: 0.9;
}

.footer-nav a:hover {
    opacity: 1;
}

/* Responsive */

@media (max-width: 900px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .nav {
        display: none; /* optional: Navigation bei Mobile ausblenden, oder umstellen */
    }

    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-side {
        justify-content: flex-start;
    }

    .steps-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .feature-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .audience-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 40px 0 32px;
    }

    .section,
    .section-alt {
        padding: 40px 0;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
    }
}
