/* ================================ */
/* ==== 1. GLOBALE VARIABLEN & SETUP */
/* ================================ */

:root {
    /* FONT-SPEZIFIKATIONEN */
    --font-primary: 'Instrument Sans', system-ui, sans-serif;
    --font-secondary: 'Lora', serif;

    /* FARB-SPEZIFIKATIONEN */
    --color-text-dark: #1D2026;
    --color-brand-blue: #43AFFC;
    --color-brand-light-blue: #A2D5FE;
    --color-border-gray: #EDEDED;
    
    /* ANNAHMEN (basierend auf Design) */
    --color-page-bg: #FFFFFF;
    --color-text-light: #4B5563;
    --color-bg-light-gray: #F3F4F6;
    --color-footer-text: #A0AEC0;
    --color-focus-strong: #0F172A;
    --color-focus-ring: rgba(67, 175, 252, 0.35);
    --shadow-focus: 0 0 0 4px var(--color-focus-ring);
    color-scheme: light;
}

/* --- Grund-Setup --- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-page-bg);
    color: var(--color-text-light);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Reset & Universal Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
}

/* --- Globale Typografie-Regeln --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--color-text-dark);
    margin: 0 0 16px 0;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

p {
    margin: 0 0 16px 0;
}

p:last-child {
    margin-bottom: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

:focus-visible {
    outline: 2px solid var(--color-focus-strong);
    outline-offset: 3px;
}

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

.skip-link {
    position: absolute;
    left: -999px;
    top: -999px;
    background: var(--color-text-dark);
    color: var(--color-page-bg);
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 600;
    z-index: 200;
    transition: transform 0.2s ease, left 0.2s ease, top 0.2s ease;
}

.skip-link:focus-visible {
    left: 16px;
    top: 12px;
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Scroll-in Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(12px);
    visibility: hidden;
    will-change: opacity, transform;
}
.animate-on-scroll.is-visible {
    visibility: visible;
    opacity: 1;
    transform: none;
    animation: popSoft 0.7s ease forwards;
    animation-fill-mode: both;
}

/* --- Globale Helferklassen --- */
.container {
    width: 90%;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.text-center {
    text-align: center;
}

.highlight {
    border-bottom: 4px solid var(--color-brand-blue);
    padding-bottom: 4px; 
}

/* Sektions-Header (für Features, Pricing, FAQ) */
.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px auto;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header h2 {
    font-size: 2.75rem; /* ~44px */
}
.section-header p {
    font-size: 1.125rem; /* ~18px */
}

@keyframes floatSoft {
    from { transform: translateY(0px); }
    to { transform: translateY(-10px); }
}

@keyframes popSoft {
    0% { transform: scale(0.98) translateY(10px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* ================================ */
/* ======== 2. BUTTONS ============== */
/* ================================ */
.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent; /* Platzhalter für Ränder */
    
    /* NEU: Transition für sanften Hover */
    transition: background-color 0.2s ease, 
                transform 0.2s ease, 
                box-shadow 0.2s ease;
}

.btn:hover {
    /* NEU: Subtiler "Lift"-Effekt */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.btn:focus-visible {
    outline: 2px solid var(--color-focus-strong);
    outline-offset: 3px;
    box-shadow: var(--shadow-focus);
}

.btn.primary {
    background-color: var(--color-text-dark);
    color: var(--color-page-bg);
    border-color: var(--color-text-dark);
}
.btn.primary:hover {
    background-color: #333; /* Etwas heller */
    border-color: #333;
}

.btn.secondary {
    background-color: var(--color-brand-blue);
    color: var(--color-page-bg);
    border-color: var(--color-brand-blue);
}
.btn.secondary:hover {
    background-color: #2F9AF4; /* Etwas dunkler */
    border-color: #2F9AF4;
}

.btn.tertiary {
    background-color: var(--color-page-bg);
    color: var(--color-text-dark);
    border: 1px solid var(--color-border-gray);
}
.btn.tertiary:hover {
    background-color: var(--color-bg-light-gray);
    border-color: var(--color-border-gray);
}


/* ================================ */
/* ======== 3. HEADER / NAV ========= */
/* ================================ */
.site-header {
    background-color: var(--color-page-bg);
    border-bottom: 1px solid var(--color-border-gray);
    padding: 16px 0;
    position: sticky; /* Hält die Navi oben */
    top: 0;
    z-index: 100;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-secondary); /* Lora */
    font-size: 1.75rem; /* ~28px */
    font-weight: 600;
    color: var(--color-text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
}
.logo img {
    height: 40px; /* Höhe für dein Logo */
    width: auto;
    display: block;
}
.site-footer .logo img {
    height: 40px;
    filter: brightness(0) invert(1); /* Macht das Logo weiß auf dunklem Hintergrund */
}

.nav-links {
    display: flex;
    gap: 28px;
}
.nav-links a {
    font-weight: 400;
    font-size: 1rem;
    color: var(--color-text-dark);
    text-decoration: none;
    padding: 6px 2px;
    border-radius: 6px;
    /* NEU: Transition für sanften Hover */
    transition: color 0.2s ease, transform 0.2s ease;
}
.nav-links a:hover {
    color: var(--color-brand-blue);
    /* NEU: Subtiler "Lift" */
    transform: translateY(-2px);
}
.nav-links a:focus-visible {
    box-shadow: var(--shadow-focus);
}

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

/* ================================ */
/* ========= 4. HERO SECTION ======== */
/* ================================ */
.hero-section {
    padding: 80px 0 60px 0;
}
.hero-section h1 {
    font-size: 3.5rem; /* ~56px */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
}

.hero-subheadline {
    font-size: 1.125rem; /* ~18px */
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 32px auto;
    line-height: 1.6;
}

.hero-button {
    margin-bottom: 32px;
    padding: 16px 32px; /* Größerer Button */
    font-size: 1.125rem;
}

.hero-checks {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 48px;
}
.hero-checks span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem; /* ~14px */
    color: var(--color-text-light);
}
.hero-checks svg {
    min-width: 24px;
}

.hero-image-container {
    border: 1px solid var(--color-border-gray);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.1), 0 10px 25px -5px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    animation: floatSoft 10s ease-in-out infinite alternate;
}

.hero-image-container:hover {
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.15), 0 15px 30px -5px rgba(0, 0, 0, 0.06);
    transform: translateY(-5px);
}
.hero-image-container img {
    display: block;
    width: 100%;
    height: auto;
}

/* ================================ */
/* ======== 5. ABOUT SECTION ======== */
/* ================================ */
.about-section {
    padding: 80px 0;
    
    border-top: 1px solid var(--color-border-gray);
    border-bottom: 1px solid var(--color-border-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.about-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.about-stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.mini-stat {
    text-align: left;
}

.mini-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-brand-blue);
    margin-bottom: 4px;
}

.mini-stat span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder {
    background: linear-gradient(135deg, #E0F2FE 0%, #DBEAFE 100%);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    border: 2px solid var(--color-brand-light-blue);
}

.about-image-placeholder svg {
    margin-bottom: 20px;
}

.about-image-placeholder p {
    font-size: 1rem;
    color: var(--color-text-dark);
    font-weight: 600;
    margin: 0;
}

/* ================================ */
/* ======== 6. STATS SECTION ======== */
/* ================================ */
.stats-section {
    padding: 60px 0;
    border-bottom: 1px solid var(--color-border-gray);
}

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

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    color: var(--color-brand-blue);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1rem;
    color: var(--color-text-light);
}

/* ================================ */
/* ======= 6. FEATURES SECTION ====== */
/* ================================ */
.features-section {
    padding: 60px 0;
    background-color: var(--color-bg-light-gray); /* Leicht anderer Hintergrund */
    border-top: 1px solid var(--color-border-gray);
    border-bottom: 1px solid var(--color-border-gray);
}

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

.feature-card {
    background-color: var(--color-page-bg);
    border: 1px solid var(--color-border-gray);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    
    /* NEU: Transition für sanften Hover */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    /* NEU: "Lift"-Effekt beim Hover */
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.07), 0 4px 6px -4px rgba(0, 0, 0, 0.07);
}

.icon-container {
    width: 56px;
    height: 56px;
    background-color: var(--color-bg-light-gray);
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}
.feature-card:hover .icon-container {
    background-color: #E0F2FE; /* Leichtes Blau beim Hover */
}
.feature-card h3 {
    font-size: 1.25rem; /* ~20px */
}
.feature-card p {
    font-size: 1rem;
    margin: 0;
}

.features-grid .feature-card:nth-child(1) { animation-delay: 0.05s; }
.features-grid .feature-card:nth-child(2) { animation-delay: 0.12s; }
.features-grid .feature-card:nth-child(3) { animation-delay: 0.18s; }
.features-grid .feature-card:nth-child(4) { animation-delay: 0.24s; }
.features-grid .feature-card:nth-child(5) { animation-delay: 0.3s; }
.features-grid .feature-card:nth-child(6) { animation-delay: 0.36s; }
.features-grid .feature-card:nth-child(7) { animation-delay: 0.42s; }
.features-grid .feature-card:nth-child(8) { animation-delay: 0.48s; }
.features-grid .feature-card:nth-child(9) { animation-delay: 0.54s; }

/* ================================ */
/* ======= 6. PRICING SECTION ======= */
/* ================================ */
.pricing-section {
    padding: 80px 0 0 0;
    background-color: var(--color-bg-light-gray);
}

.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background-color: var(--color-page-bg);
    border: 2px solid var(--color-border-gray);
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.pricing-card.featured {
    border-color: var(--color-brand-blue);
    border-width: 2px;
}

.pricing-header {
    padding: 32px 32px 24px 32px;
    border-bottom: 1px solid var(--color-border-gray);
}

.plan-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0 0 12px 0;
}
.price-value {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin: 0 0 12px 0;
    line-height: 1;
}
.price-value .per-month {
    font-size: 1.125rem;
    color: var(--color-text-light);
    font-weight: 400;
}
.plan-description {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.5;
}

.features-list {
    list-style: none;
    padding: 32px;
    margin: 0;
    flex-grow: 1;
}
.features-list li {
    font-size: 0.9375rem;
    color: var(--color-text-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}
.features-list li:last-child {
    margin-bottom: 0;
}
.features-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card .btn {
    margin: 0 32px 32px 32px;
    width: calc(100% - 64px);
}

.pricing-cards-container .pricing-card:nth-child(1) { animation-delay: 0.08s; }
.pricing-cards-container .pricing-card:nth-child(2) { animation-delay: 0.16s; }
.pricing-cards-container .pricing-card:nth-child(3) { animation-delay: 0.24s; }

/* ================================ */
/* ====== 7. COMPARISON TABLE ======= */
/* ================================ */
.comparison-section {
    padding: 80px 0;
    background-color: var(--color-page-bg);
}

.comparison-toggle {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-toggle-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
        /* weiß */
    color: #000;                   /* schwarzer Text */
    border: 2px solid #000;        /* schwarze Umrandung */
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 0 auto 22px auto;
    width: fit-content;
    transition: background-color 0.3s ease, transform 0.2s ease;
    list-style: none;
}


.comparison-toggle-btn::-webkit-details-marker {
    display: none;
}

.comparison-toggle-btn:hover {
    background-color: #f2f2f2;     /* leichter grauer Hover */
    transform: translateY(-2px);
}

.comparison-toggle-btn:focus-visible {
    box-shadow: var(--shadow-focus);
}

.comparison-toggle-btn svg {
    transition: transform 0.3s ease;
}

.comparison-toggle[open] .comparison-toggle-btn svg {
    transform: rotate(180deg);
}

.comparison-table {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.comparison-table table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--color-border-gray);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background-color: var(--color-text-dark);
}

.comparison-table th {
    padding: 20px;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-page-bg);
}

.comparison-table th.feature-column {
    text-align: left;
    width: 40%;
}

.comparison-table th.highlighted-column {
    background-color: var(--color-brand-blue);
}

.comparison-table tbody tr {
    border-bottom: 1px solid var(--color-border-gray);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #FAFAFA;
}

.comparison-table td {
    padding: 20px;
    text-align: center;
    font-size: 0.9375rem;
    color: var(--color-text-dark);
}

.comparison-table td.feature-name {
    text-align: left;
    font-weight: 600;
}

.comparison-table td.highlighted-column {
    background-color: #F0F9FF;
}

.comparison-table td svg {
    display: inline-block;
    vertical-align: middle;
}

/* ================================ */
/* ========= 8. FAQ SECTION ========= */
/* ================================ */
.faq-section {
    padding: 60px 0;
    border-top: 1px solid var(--color-border-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--color-border-gray);
    transition: background-color 0.2s ease;
}

.faq-item:hover {
    background-color: #FAFAFA;
}

.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-dark);
    list-style: none; /* Entfernt Standard-Pfeil */
    transition: color 0.2s ease;
}

.faq-item summary:hover {
    color: var(--color-brand-blue);
}

.faq-item summary::-webkit-details-marker {
    display: none; /* Entfernt Pfeil in Chrome/Safari */
}

.faq-item summary:focus-visible {
    outline: 2px solid var(--color-focus-strong);
    outline-offset: 4px;
    box-shadow: var(--shadow-focus);
}
.faq-item p {
    padding: 0 0 24px 0;
    margin: 0;
    line-height: 1.6;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-brand-blue);
    /* NEU: Transition für sanfte Drehung */
    transition: transform 0.2s ease;
    font-style: normal;
    text-align: center;
    width: 24px;
    height: 24px;
    line-height: 1;
}

/* Das + / - Symbol */
.faq-item:not([open]) .faq-icon::before {
    content: '+';
}
.faq-item[open] .faq-icon::before {
    content: '−'; /* Minus */
}
.faq-item[open] summary .faq-icon {
    /* NEU: Dreht das Symbol nicht mehr, da wir das Zeichen ändern */
    transform: none; 
}


/* ================================ */
/* ======= 9. CHANGELOG SECTION ===== */
/* ================================ */
.changelog-section {
    padding: 80px 0;
   
}

.changelog-list {
    max-width: 800px;
    margin: 0 auto;
}

.changelog-item {
    background-color: var(--color-page-bg);
    border: 2px solid var(--color-brand-blue);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
}

.changelog-item:last-child {
    margin-bottom: 0;
}

.changelog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.version-badge {
    background-color: var(--color-brand-blue);
    color: var(--color-page-bg);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.changelog-item .date {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

.changelog-item h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.changelog-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.changelog-item ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 8px;
    color: var(--color-text-light);
}

.changelog-item ul li:before {
    content: "•";
    color: var(--color-brand-blue);
    font-weight: bold;
    position: absolute;
    left: 12px;
}

.see-more-container {
    text-align: center;
    margin-top: 32px;
}

.see-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-brand-blue);
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid var(--color-brand-blue);
    border-radius: 8px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.see-more-link:hover {
    background-color: var(--color-brand-blue);
    color: var(--color-page-bg);
    transform: translateY(-2px);
}
.see-more-link:focus-visible {
    box-shadow: var(--shadow-focus);
}

/* ================================ */
/* ======== 10. ROADMAP SECTION ====== */
/* ================================ */
.roadmap-section {
    background-color: var(--color-bg-light-gray);
    padding: 80px 0;
}

.roadmap-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 24px;
}

.roadmap-item {
    background-color: var(--color-page-bg);
    border: 2px solid var(--color-border-gray);
    border-radius: 12px;
    padding: 32px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roadmap-item:hover {
    transform: translateX(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.roadmap-item.in-progress {
    border-color: var(--color-brand-blue);
    background-color: #F0F9FF;
}

.roadmap-item.planned {
    border-color: #93C5FD;
}

.roadmap-item.idea {
    border-color: var(--color-border-gray);
    opacity: 0.7;
}

.roadmap-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.roadmap-item.in-progress .roadmap-status {
    background-color: var(--color-brand-blue);
    color: var(--color-page-bg);
}

.roadmap-item.planned .roadmap-status {
    background-color: #DBEAFE;
    color: #1E40AF;
}

.roadmap-item.idea .roadmap-status {
    background-color: var(--color-bg-light-gray);
    color: var(--color-text-light);
}

.roadmap-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.roadmap-item p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.roadmap-date {
    display: inline-block;
    color: var(--color-text-light);
    font-size: 0.875rem;
    font-weight: 600;
}

.roadmap-timeline .roadmap-item:nth-child(1) { animation-delay: 0.05s; }
.roadmap-timeline .roadmap-item:nth-child(2) { animation-delay: 0.15s; }
.roadmap-timeline .roadmap-item:nth-child(3) { animation-delay: 0.25s; }

/* ================================ */
/* ========= 11. CTA SECTION ======== */
/* ================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #43AFFC 0%, #2F9AF4 100%);
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 3rem;
    color: var(--color-page-bg);
    margin-bottom: 24px;
}

.cta-section h2 .highlight {
    border-bottom-color: var(--color-page-bg);
}

.cta-section p {
    font-size: 1.25rem;
    color: var(--color-page-bg);
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-section .btn.large {
    padding: 18px 40px;
    font-size: 1.125rem;
    background-color: var(--color-text-dark);
    color: var(--color-page-bg);
    border: none;
}

.cta-section .btn.large:hover {
    background-color: #333;
    transform: translateY(-3px);
}

.cta-subtext {
    margin-top: 16px;
    font-size: 0.875rem;
    opacity: 0.8;
}

/* ================================ */
/* ========== 12. FOOTER =========== */
/* ================================ */
.site-footer {
    background-color: var(--color-text-dark);
    color: var(--color-footer-text);
    padding: 64px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
}
.footer-col.brand .logo {
    margin-bottom: 16px;
    
}
.footer-col.brand p {
    font-size: 0.875rem;
    line-height: 1.5;
    max-width: 300px;
    margin: 16px 0;
}
.social-link svg {
    color: var(--color-footer-text);
    /* NEU: Transition für sanften Hover */
    transition: color 0.2s ease;
    margin-right: 12px;
}
.social-link:hover svg {
    color: var(--color-page-bg);
}

.footer-heading {
    font-weight: 600;
    font-size: 1rem;
    color: var(--color-page-bg);
    margin: 0 0 16px 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    font-size: 0.875rem;
    color: var(--color-footer-text);
    text-decoration: none;
    /* NEU: Transition für sanften Hover */
    transition: color 0.2s ease;
}
.footer-links a:hover {
    color: var(--color-brand-blue);
}

.legal-section {
    padding: 80px 0;
    min-height: 60vh; /* Stellt sicher, dass der Footer nicht hochrutscht */
}

.legal-content {
    max-width: 700px; /* Schmalerer Textcontainer für bessere Lesbarkeit */
    /* Margin auto ist bereits durch .container gesetzt */
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.legal-content .lead {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

.divider {
    border: 0;
    height: 1px;
    background-color: var(--color-border-gray);
    margin: 40px 0;
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block h2 {
    font-size: 1.5rem; /* Kleiner als Hauptüberschriften */
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.legal-block p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 8px;
}

.legal-block strong {
    color: var(--color-text-dark);
    font-weight: 600;
}

.legal-block a {
    color: var(--color-brand-blue);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.2s ease;
}

.legal-block a:hover {
    border-bottom-color: var(--color-brand-blue);
}

.legal-subtext {
    font-size: 0.875rem;
    color: #9CA3AF; /* Etwas helleres Grau */
    margin-bottom: 4px !important;
    font-style: italic;
}

/* Aktiver Link im Footer hervorheben */
.footer-links a.active {
    color: var(--color-brand-blue);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-image-container:hover,
    .feature-card:hover,
    .pricing-card:hover,
    .comparison-toggle-btn:hover,
    .see-more-link:hover,
    .roadmap-item:hover,
    .btn:hover {
        transform: none;
        box-shadow: none;
    }

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ================================ */
/* ====== 9. RESPONSIVE MEDIA ======= */
/* ================================ */

/* --- Tablets --- */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats-mini {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-cards-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-card.pro { /* Die 3. Karte */
        grid-column: 1 / -1; /* Nimmt volle Breite ein */
        max-width: 400px; /* Aber nicht zu breit */
        margin: 0 auto;
    }

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

/* --- Smartphones --- */
@media (max-width: 768px) {
    /* Header & Nav */
    .site-header .container {
        flex-direction: column;
        gap: 16px;
    }
    .nav-links {
        gap: 16px;
    }
    /* HINWEIS: Ein echtes mobiles Menü braucht JavaScript. */

    /* Hero */
    .hero-section {
        padding-top: 40px;
    }
    .hero-section h1 {
        font-size: 2.5rem; /* ~40px */
    }
    .hero-subheadline {
        font-size: 1rem;
    }
    .hero-checks {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    /* Sektions-Header */
    .section-header h2 {
        font-size: 2rem; /* ~32px */
    }
    .section-header p {
        font-size: 1rem;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-stats-mini {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Grids */
    .features-grid,
    .pricing-cards-container,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.pro {
        grid-column: 1; /* Reset */
        max-width: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    /* Comparison toggle button */
    .comparison-toggle-btn {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }

    /* CTA Section */
    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

}
