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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f6f8fb;
    color: #0f172a;
    line-height: 1.7;
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

/* HEADER */

.site-header {
    background: #ffffff;
    color: #0f172a;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 0;
    background: #ffffff;
}

.logo a {
    color: #0f172a;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
}

.main-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.main-nav a {
    color: #0f172a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.main-nav a:hover,
.main-nav a.active {
    color: #2563eb;
}

/* HERO */

.hero {
    background: linear-gradient(135deg, #eef4ff, #dbeafe);
    text-align: center;
    padding: 80px 0;
    border-top: 1px solid #e5e7eb;
}

.hero h1 {
    font-size: 48px;
    color: #0f172a;
    margin-bottom: 14px;
}

.hero-subtitle {
    font-size: 22px;
    color: #1e293b;
    margin-bottom: 12px;
}

.hero-text {
    font-size: 18px;
    color: #475569;
    max-width: 760px;
    margin: 0 auto 28px;
}

/* BUTTONS */

.cta-buttons {
    margin-top: 28px;
}

.btn {
    display: inline-block;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    margin: 8px;
}

.btn.primary {
    background: #2563eb;
    color: #ffffff;
}

.btn.primary:hover {
    background: #1d4ed8;
}

.btn.secondary {
    background: #ffffff;
    color: #2563eb;
    border: 1px solid #2563eb;
}

.btn.secondary:hover {
    background: #eff6ff;
}

/* CONTENT */

section {
    padding: 70px 0;
}

h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #0f172a;
}

h3 {
    color: #111827;
    margin-bottom: 12px;
}

p {
    margin-bottom: 18px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.card {
    background: #ffffff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid #e5e7eb;
}

.card h3 {
    font-size: 24px;
}

.vergleich table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
}

.vergleich th {
    background: #0f172a;
    color: #ffffff;
    padding: 18px;
    text-align: left;
}

.vergleich td {
    padding: 18px;
    border-bottom: 1px solid #e5e7eb;
}

.vergleich tr:last-child td {
    border-bottom: none;
}

.vergleich td:nth-child(2) {
    font-weight: bold;
    color: #2563eb;
}

ul {
    padding-left: 24px;
}

li {
    margin-bottom: 12px;
}

.highlight {
    background: #ffffff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 16px 45px rgba(37, 99, 235, 0.12);
    border: 1px solid #dbeafe;
}

.highlight h2 {
    color: #1d4ed8;
}

.faq h3 {
    margin-top: 28px;
}

/* FOOTER */

.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 50px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 50px;
    align-items: start;
}

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

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
}

.site-footer a,
.site-footer a:link,
.site-footer a:visited,
.site-footer a:active {
    color: #cbd5e1;
    text-decoration: none;
}

.site-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-links a {
    font-size: 14px;
}

.footer-col p {
    color: #cbd5e1;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-email {
    display: inline;
    font-size: 14px;
}

.footer-bottom {
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
    text-align: center;
}

.footer-bottom p {
    color: #cbd5e1;
    font-size: 13px;
    margin: 0;
}

/* RESPONSIVE */

@media (max-width: 950px) {
    .nav {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .main-nav {
        justify-content: center;
    }

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

    .hero h1 {
        font-size: 38px;
    }

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

@media (max-width: 650px) {
    .hero {
        padding: 55px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    h2 {
        font-size: 28px;
    }

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

    .vergleich {
        overflow-x: auto;
    }

    table {
        min-width: 760px;
    }

    .highlight {
        padding: 28px;
    }

    .footer-grid,
    .footer-col {
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

/* ENTSCHEIDUNGSTABELLE FIX */

.entscheidung {
    margin-top: 60px;
}

.table-wrapper {
    overflow-x: auto;
}

.vergleich-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.vergleich-table th {
    background: #0f172a;
    color: #ffffff;
    padding: 16px;
    text-align: left;
    font-size: 15px;
}

.vergleich-table td {
    padding: 16px;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
    font-size: 15px;
}

.vergleich-table tr:last-child td {
    border-bottom: none;
}

/* WICHTIG: Spaltenbreite */
.vergleich-table td:nth-child(1) {
    width: 30%;
    font-weight: 600;
}

.vergleich-table td:nth-child(2) {
    width: 20%;
    color: #2563eb;
    font-weight: 700;
}

.vergleich-table td:nth-child(3) {
    width: 50%;
    color: #334155;
}

}
