/* Breadcrumb Navigation */
.breadcrumb-nav { padding: 16px 0 0; font-size: 0.85rem; }
.breadcrumb-nav ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0; margin: 0; padding: 0; }
.breadcrumb-nav li { display: flex; align-items: center; color: var(--text-secondary); }
.breadcrumb-nav li + li::before { content: '\203A'; margin: 0 8px; color: var(--text-secondary); }
.breadcrumb-nav a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb-nav a:hover { color: var(--primary-color, #58a6ff); }
.breadcrumb-nav li:last-child { color: var(--text-primary); }

/* Cross-Link Section */
.cross-links { padding: 48px 0; }
.cross-links h2 { font-size: 1.2rem; font-weight: 600; margin-bottom: 20px; color: var(--text-primary); }
.cross-links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.cross-link-card { display: block; background: var(--bg-surface, #161b22); border: 1px solid var(--border-color, #30363d); border-radius: 12px; padding: 24px; text-decoration: none; transition: border-color 0.2s, transform 0.2s; }
.cross-link-card:hover { border-color: var(--primary-color, #58a6ff); transform: translateY(-2px); }
.cross-link-card .cl-icon { font-size: 1.8rem; margin-bottom: 10px; display: block; }
.cross-link-card .cl-title { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.cross-link-card .cl-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

/* Screen-Reader Only (Accessibility) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Skip-Link (Accessibility) */
.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 9999;
    padding: 8px 16px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
}
.skip-link:focus {
    position: fixed;
    top: 8px;
    left: 8px;
    width: auto;
    height: auto;
    overflow: visible;
    outline: 2px solid #fff;
}

/* Fonts lokal hosten (DSGVO-konform) */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/Inter-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/Inter-Bold.woff2') format('woff2');
}

:root {
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    /* Light-Theme = Default (professioneller Eindruck, weiß-basiert) */
    --bg-color: #ffffff;
    --bg-surface: #f6f8fa;
    --bg-surface-elevated: #ffffff;
    --text-primary: #24292f;
    --text-secondary: #57606a;
    --primary-color: #0969da;
    --primary-hover: #035cc5;
    --accent-color: #2da44e;
    --accent-hover: #2c974b;
    --border-color: #d0d7de;
    --error-color: #cf222e;
    /* Aliase für Kompatibilität */
    --accent-primary: #0969da;
    --bg-secondary: #f6f8fa;
    --color-green-light: #3fb950;
}

/* Dark-Theme bleibt als Option erhalten (body.dark-theme) */
body.dark-theme {
    --bg-color: #0d1117;
    --bg-surface: #161b22;
    --bg-surface-elevated: #21262d;
    --text-primary: #c9d1d9;
    --text-secondary: #8b949e;
    --primary-color: #58a6ff;
    --primary-hover: #3182ce;
    --accent-color: #238636;
    --accent-hover: #2ea043;
    --border-color: #30363d;
    --error-color: #ff7b72;
    /* Aliase für Kompatibilität */
    --accent-primary: #58a6ff;
    --bg-secondary: #161b22;
}

/* body.light-theme: explizite Klasse ist no-op (inherit :root) */
body.light-theme {
    /* Default-Theme ist bereits light, nichts zu überschreiben */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    text-decoration: underline;
}

.highlight {
    color: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 10px 20px;
    font-weight: 600;
    text-align: center;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 160, 67, 0.4);
}

.btn-secondary {
    background-color: var(--bg-surface-elevated);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--border-color);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.875rem;
}

/* NAVBAR */
.navbar {
    padding: 20px 0;
    background-color: rgba(13, 17, 23, 0.9);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
    opacity: 0.8;
}

.logo-img {
    height: 38px;
    border-radius: 8px;
    margin-right: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.logo-text {
    font-size: 1.4rem;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #1a1a2e, #2d6a4f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

body.dark-theme .logo-text {
    background: linear-gradient(90deg, #ffffff, #8be9fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar .logo-text {
    background: linear-gradient(90deg, #ffffff, #8be9fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.nav-links a:hover {
    color: #ffffff;
    text-decoration: none;
}

/* HERO SECTION */
.hero {
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background-color: rgba(88, 166, 255, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guarantee {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.floating-hero-icon {
    position: absolute;
    top: -40px;
    right: -20px;
    width: 96px;
    height: 96px;
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.1);
    z-index: 10;
    transform: perspective(1000px) rotateY(-15deg) rotateZ(8deg) translateY(0);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: perspective(1000px) rotateY(-15deg) rotateZ(8deg) translateY(0px);
    }

    50% {
        transform: perspective(1000px) rotateY(-15deg) rotateZ(8deg) translateY(-15px);
    }

    100% {
        transform: perspective(1000px) rotateY(-15deg) rotateZ(8deg) translateY(0px);
    }
}

.hero-image:hover .floating-hero-icon {
    animation-play-state: paused;
    transform: perspective(1000px) rotateY(0deg) rotateZ(0deg) translateY(-10px) scale(1.05);
}

.app-mockup {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
}

.app-mockup:hover {
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* LOCK BADGE — schwebendes Datenschutz-Badge neben dem Screenshot */
.lock-badge {
    position: absolute;
    top: -18px;
    right: -18px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(13, 17, 23, 0.92);
    border: 1px solid rgba(63, 185, 80, 0.35);
    border-radius: 40px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(63, 185, 80, 0.1);
    z-index: 10;
    animation: lockFloat 3.5s ease-in-out infinite;
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.lock-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #3fb950;
}

.lock-badge-text {
    font-family: Inter, system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #3fb950;
    letter-spacing: 0.01em;
}

@keyframes lockFloat {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-6px); }
}

/* SECTION HEADERS */
.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header .subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* PROBLEM / SOLUTION */
.problem-solution {
    padding: 100px 0;
    background-color: var(--bg-surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.feature-card {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    padding: 32px 24px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(88, 166, 255, 0.3);
}

.feature-card-highlight {
    position: relative;
    background: linear-gradient(135deg, rgba(88, 166, 255, 0.08) 0%, rgba(88, 166, 255, 0.02) 100%);
    border: 2px solid var(--accent-primary);
    box-shadow: 0 4px 20px rgba(88, 166, 255, 0.15);
}

.feature-card-highlight:hover {
    box-shadow: 0 12px 35px rgba(88, 166, 255, 0.25);
    border-color: var(--accent-primary);
}

.feature-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.icon-wrapper {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: inline-block;
}

.feature-card h3 {
    margin-bottom: 16px;
    color: var(--text-primary);
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* COMPARISON */
.comparison {
    padding: 100px 0;
}

.table-container {
    overflow-x: auto;
    background: var(--bg-surface-elevated);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.compare-table th,
.compare-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}

.compare-table tbody tr:last-child td {
    border-bottom: none;
}

.compare-table th {
    font-size: 1.1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.highlight-col {
    color: var(--primary-color) !important;
    font-size: 1.25rem !important;
}

.compare-table td.negative {
    color: var(--error-color);
    font-weight: 500;
}

.compare-table td.warning {
    color: #d29922;
    /* Warning color */
    font-weight: 500;
}

.compare-table td.positive {
    color: var(--accent-color);
    font-weight: 600;
}

.compare-table td.positive-price {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* PRIVACY / TRUST */
.privacy-trust {
    padding: 100px 0;
}

.shield-icon {
    font-size: 5rem;
    margin-bottom: 24px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.trust-badge {
    padding: 8px 16px;
    background: rgba(46, 160, 67, 0.1);
    color: var(--color-green-light);
    border: 1px solid rgba(46, 160, 67, 0.2);
    border-radius: 20px;
    font-weight: 600;
}

/* PRICING */
.pricing-snippet {
    padding: 100px 0;
    background-color: var(--bg-surface);
}

/* Social Proof Bar — direkt unter Hero */
.social-proof-bar {
    padding: 24px 0;
    background: var(--bg-secondary, #f6f8fa);
    border-top: 1px solid var(--border-color, #e1e4e8);
    border-bottom: 1px solid var(--border-color, #e1e4e8);
}

.social-proof-bar .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.proof-badges {
    display: flex;
    align-items: stretch;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.proof-badges img {
    height: 64px;
    width: auto;
    border-radius: 8px;
    object-fit: contain;
}

/* Definition Section — Featured Snippet */
.definition-section {
    padding: 56px 0;
    background: var(--bg-primary);
}

.definition-box {
    max-width: 780px;
    margin: 0 auto;
    padding: 32px 36px;
    border-left: 4px solid var(--accent-primary);
    background: var(--bg-secondary, #f6f8fa);
    border-radius: 0 12px 12px 0;
}

.definition-box h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.definition-lead {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 1rem;
}

.definition-note {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.875rem;
    padding: 10px 14px;
    background: rgba(255, 193, 7, 0.08);
    border-left: 3px solid #f59e0b;
    border-radius: 0 6px 6px 0;
}

.definition-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.definition-list li {
    color: var(--text-secondary);
    padding-left: 22px;
    position: relative;
    line-height: 1.6;
    font-size: 0.95rem;
}

.definition-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
}

.proof-badge {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--accent-color, #0d9488);
    background: rgba(13, 148, 136, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.proof-seal {
    display: flex;
    align-items: center;
}

.proof-seal img {
    height: 64px;
    width: auto;
    border-radius: 4px;
}

@media (max-width: 640px) {
    .social-proof-bar .container {
        flex-direction: column;
        gap: 12px;
    }
    .proof-badges {
        gap: 8px;
    }
    .proof-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
}

.pricing-card {
    max-width: 450px;
    margin: 0 auto;
    background: var(--bg-surface-elevated);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    padding: 40px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 16px 0;
}

.price span {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.85rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    color: var(--text-primary);
}

.pricing-features .check {
    color: var(--accent-color);
    margin-right: 12px;
    font-weight: bold;
}

.btn-block {
    display: block;
    width: 100%;
}

.pricing-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* FAQ */
.faq-snippet {
    padding: 100px 0;
}

.faq-container {
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.faq-item h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    margin: 0;
}

/* FOOTER */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-col a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* Shield Icon */
.shield-icon {
    font-size: 5rem;
    margin-bottom: 24px;
}

/* Price Anchoring */
.old-price {
    font-size: 1.5rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 12px;
}

/* Pricing Grid (3 Cards) */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 960px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

.pricing-card.featured {
    border-color: var(--primary-color);
}

/* ========== PRICING V2 — 5 Tier Cards ========== */
.pricing-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    max-width: 740px;
    margin: 0 auto;
}

.pricing-extra-hidden {
    display: none;
}

.btn-toggle-plans {
    background: none;
    border: 1px solid var(--border-color, #d1d5db);
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-toggle-plans:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Legacy 5-grid fallback */
.pricing-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    max-width: 1680px;
    margin: 0 auto;
    align-items: stretch;
}

@media (max-width: 1380px) {
    .pricing-grid-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 1100px;
        gap: 20px;
    }
}

@media (max-width: 960px) {
    .pricing-grid-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 780px;
    }
    .pricing-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 780px;
    }
}

@media (max-width: 640px) {
    .pricing-grid-5,
    .pricing-grid-3,
    .pricing-grid-2 {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

.pricing-card-lg {
    max-width: none;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    position: relative;
    height: 100%;
}

@media (max-width: 1380px) {
    .pricing-card-lg { padding: 44px 30px; }
}

/* Trial Hero Card — Full width above paid grid */
.pricing-trial-hero {
    max-width: 1680px;
    margin: 0 auto 28px auto;
    padding: 28px 36px;
    background: linear-gradient(135deg, rgba(13,148,136,0.06), rgba(13,148,136,0.02));
    border: 1px dashed rgba(13,148,136,0.35);
    border-radius: 16px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
}
.pricing-trial-hero .trial-price {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent-color, #0d9488);
    line-height: 1;
    white-space: nowrap;
}
.pricing-trial-hero .trial-price small {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.pricing-trial-hero h3 {
    margin: 0 0 6px 0;
    font-size: 1.25rem;
}
.pricing-trial-hero .trial-body {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}
.pricing-trial-hero .trial-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 8px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}
.pricing-trial-hero .trial-features span::before {
    content: "✓ ";
    color: var(--accent-color, #0d9488);
    font-weight: 700;
}
.pricing-trial-hero .btn {
    white-space: nowrap;
}
@media (max-width: 860px) {
    .pricing-trial-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px 20px;
        gap: 16px;
    }
    .pricing-trial-hero .trial-features { justify-content: center; }
}

.pricing-card-lg .pricing-header {
    margin-bottom: 12px;
}

.pricing-card-lg .pricing-features {
    flex: 1;
    margin-bottom: 12px;
}

.pricing-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    min-height: 1.4em;
}

.price-xl {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 4px 0 2px 0;
    line-height: 1;
}

.price-xl span {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.price-period {
    font-size: 0.85rem;
    color: var(--text-primary);
    margin: 0 0 2px 0;
    font-weight: 500;
}

.price-net {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0 0 2px 0;
}

.price-subline {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 2px 0 8px 0;
    font-style: italic;
}

.vorsteuer-pill {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--accent-color, #0d9488);
    background: rgba(13, 148, 136, 0.1);
    border: 1px solid rgba(13, 148, 136, 0.25);
    padding: 4px 10px;
    border-radius: 999px;
    margin-top: 8px;
    letter-spacing: 0.02em;
}

.pricing-graduation-note {
    font-size: 0.85rem;
    color: var(--accent-color);
    background: rgba(45, 164, 78, 0.08);
    border: 1px solid rgba(45, 164, 78, 0.25);
    border-radius: 6px;
    padding: 8px 12px;
    margin: 12px 0;
    text-align: center;
}

.pricing-renewal-note {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.5;
    margin: 0 0 16px 0;
    padding: 10px 12px;
    background: rgba(0, 0, 0, 0.025);
    border-radius: 8px;
    border-left: 3px solid var(--border-color);
}

.pricing-card-lg .widerruf-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    cursor: pointer;
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--text-secondary);
    text-align: left;
}

.pricing-card-lg .widerruf-checkbox input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--primary-color);
}

.pricing-card-lg .widerruf-checkbox a {
    color: var(--primary-color);
}

.checkout-btn-locked {
    opacity: 0.5;
    pointer-events: none;
}

/* Featured Card — Gradient Border + Badge */
.pricing-card-lg.featured {
    border: 2px solid transparent;
    background:
        linear-gradient(var(--bg-surface-elevated), var(--bg-surface-elevated)) padding-box,
        linear-gradient(135deg, var(--primary-color), #0d9488) border-box;
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    z-index: 1;
}

.pricing-card-lg.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), #0d9488);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 7px 18px;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

@media (max-width: 1400px) {
    .pricing-card-lg.featured {
        transform: none;
    }
    .pricing-card-lg.featured:hover {
        transform: translateY(-4px);
    }
}

/* FAQ Collapsible */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    font-family: var(--font-family);
    text-align: left;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-chevron {
    font-size: 1rem;
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.faq-open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding-top: 16px;
}

.faq-answer-content p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-700 {
    max-width: 700px;
}

/* KOSTENRECHNER */
.calculator-section {
    padding: 100px 0;
    background: var(--bg-surface);
}

.calculator-container {
    max-width: 600px;
    text-align: center;
}

.calculator-container .subtitle {
    max-width: 480px;
    margin: 0 auto;
}

.calculator-card {
    margin-top: 32px;
    background: var(--bg-surface-elevated);
    border-radius: 12px;
    padding: 32px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.calculator-slider-label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.calculator-slider {
    width: 100%;
    accent-color: var(--accent-color);
    margin-bottom: 24px;
    display: block;
}

.calculator-costs {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.calculator-cost-item {
    flex: 1;
    min-width: 120px;
}

.calculator-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.calculator-value {
    font-size: 1.5rem;
    font-weight: 700;
}

.calculator-value--highlight {
    color: var(--accent-color);
}

.calculator-result {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.calculator-tier-select {
    width: 100%;
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 16px;
    cursor: pointer;
}

.calculator-input-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}
.calculator-input {
    width: 80px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}
.calculator-input:focus {
    outline: 2px solid var(--primary-color);
    border-color: var(--primary-color);
}
.calculator-input-suffix {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.calculator-support-hint {
    font-size: 0.8rem;
    color: var(--accent-color, #0d9488);
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(13,148,136,0.06);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color, #0d9488);
    display: none;
}
.calculator-support-hint.visible {
    display: block;
}

/* iOS-Fix: body scroll-lock bei mobilem Menü */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero .subtitle {
        margin: 0 auto 40px;
    }

    /* .hamburger + .nav-links Mobile-Styles werden von animations.css übernommen (Slide-Effekt) */

    .nav-links a {
        padding: 14px 0;
        font-size: 1rem;
        border-bottom: 1px solid var(--border-color, rgba(255,255,255,0.07));
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    /* Touch-Target-Mindestgröße für Buttons auf Mobile */
    .btn {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Kostenrechner-Slider auf Mobile */
    #monthsSlider {
        height: 44px;
    }

    .ich-bin-chips {
        justify-content: center;
    }

    .paragraf203-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .paragraf203-item {
        overflow-wrap: break-word;
        word-break: break-word;
    }

    /* Comparison Table Mobile Optimierung */
    .compare-table th,
    .compare-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }

    .highlight-col {
        font-size: 1rem !important;
    }

    .table-container {
        padding: 16px;
    }

    /* Mobile Font-Sizes für Headlines */
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }
}

/* === ICH BIN Section === */
.ich-bin-section {
    margin-top: 36px;
}

.ich-bin-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.ich-bin-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ich-bin-chip {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 13px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-family);
}

.ich-bin-chip:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(88, 166, 255, 0.07);
}

.ich-bin-chip.active {
    background: rgba(88, 166, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.ich-bin-panel {
    margin-top: 14px;
    padding: 14px 18px;
    background: rgba(88, 166, 255, 0.06);
    border: 1px solid rgba(88, 166, 255, 0.2);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-primary);
    line-height: 1.65;
    animation: fadeInPanel 0.25s ease;
    max-width: min(500px, 100%);
}

@keyframes fadeInPanel {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* === Datenschutz-Sektion (Legacy-Klasse, Markup pivotiert) === */
.paragraf203-section {
    padding: 80px 0;
    background: var(--bg-surface-elevated);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.paragraf203-section h2 {
    margin-bottom: 8px;
}

.paragraf203-grid {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 14px 40px;
    max-width: 640px;
    margin: 28px auto;
    text-align: left;
    justify-content: center;
}

.paragraf203-item {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-green-light);
}

.paragraf203-link {
    display: inline-block;
    margin-top: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-green-light);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}

.paragraf203-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.paragraf203-cta {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-top: 8px;
    line-height: 1.8;
}

@media (max-width: 480px) {
    .paragraf203-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        gap: 10px;
    }
}

/* === Checkout Hint === */
.checkout-wrapper {
    position: relative;
    cursor: pointer;
}

.checkout-hint {
    display: none;
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    animation: fadeInPanel 0.2s ease;
}

.checkout-hint.visible {
    display: block;
}

/* Focus Indicators — Barrierefreiheit */
.btn:focus-visible,
.ich-bin-chip:focus-visible,
.faq-question:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Pricing font-size normalization */
.pricing-card p[style*="font-size: 0.8rem"],
.pricing-card p[style*="font-size: 0.85rem"] {
    font-size: 0.875rem !important;
}

/* === Statistiken / Key Facts === */
.stats-section {
    padding: 80px 0;
    background: var(--bg-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: border-color 0.2s ease;
}

.stat-card:hover {
    border-color: rgba(88, 166, 255, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.stat-detail {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Reduced Motion — Barrierefreiheit */
@media (prefers-reduced-motion: reduce) {
    .floating-hero-icon,
    .lock-badge {
        animation: none !important;
    }
    .app-mockup {
        transition: none !important;
    }
    * {
        scroll-behavior: auto !important;
    }
}