/* ═══════════════════════════════════════════════════════════════════════════
   LAIA – style_landingpages.css
   Modernes Design für öffentliche Seiten (Home, Tarife, Über uns)
   Basiert auf den Design Tokens von assets/style_new.css
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Basis & Layout ──────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font, "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    background-color: var(--bg);
    color: var(--text-primary);
    line-height: var(--lh-relaxed, 1.625);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color var(--trans, 0.2s ease), color var(--trans, 0.2s ease);
}

/* ── Hintergrund-Gradients & Orbs ────────────────────────────────────────── */
.landing-bg-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
}

.landing-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(99, 102, 241, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 25%, rgba(129, 140, 248, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(16, 185, 129, 0.06) 0%, transparent 50%);
}

body.dark-mode .landing-bg-gradient {
    background:
        radial-gradient(circle at 15% 15%, rgba(99, 102, 241, 0.16) 0%, transparent 50%),
        radial-gradient(circle at 85% 25%, rgba(129, 140, 248, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 50% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
}

.landing-orb {
    position: absolute;
    border-radius: var(--r-full, 9999px);
    filter: blur(90px);
    opacity: 0.7;
    animation: orbFloat 22s infinite alternate ease-in-out;
}

.landing-orb-1 {
    width: 480px;
    height: 480px;
    top: -120px;
    left: -100px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
}

.landing-orb-2 {
    width: 420px;
    height: 420px;
    top: 35%;
    right: -120px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    animation-delay: -7s;
}

.landing-orb-3 {
    width: 500px;
    height: 500px;
    bottom: -150px;
    left: 20%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.14) 0%, transparent 70%);
    animation-delay: -14s;
}

@keyframes orbFloat {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(40px) scale(1.06); }
    100% { transform: translateY(-30px) scale(0.96); }
}

/* ── Container ───────────────────────────────────────────────────────────── */
.l-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.l-container-narrow {
    max-width: 900px;
}

/* ── Header & Navigation ─────────────────────────────────────────────────── */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    z-index: var(--z-header, 300);
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

body.dark-mode .landing-header {
    background: rgba(15, 23, 42, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-header.header-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

body.dark-mode .landing-header.header-scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.brand-logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.brand-logo-img {
    height: 38px;
    width: auto;
    display: block;
    transition: transform 0.2s ease;
}

.brand-logo-link:hover .brand-logo-img {
    transform: scale(1.03);
}

.nav-desktop-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--r-sm, 8px);
    transition: color 0.2s ease, background-color 0.2s ease;
}

.landing-nav-link svg {
    width: 17px;
    height: 17px;
    stroke-width: 2;
    transition: stroke 0.2s ease;
}

.landing-nav-link:hover {
    color: var(--primary);
    background-color: var(--surface-hover);
}

.landing-nav-link.active {
    color: var(--primary);
    background-color: var(--primary-lighter);
    font-weight: 600;
}

body.dark-mode .landing-nav-link.active {
    background-color: rgba(99, 102, 241, 0.16);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Theme Toggle Button */
.theme-toggle-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--r, 12px);
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.theme-toggle-btn:hover {
    color: var(--primary);
    border-color: var(--border-strong);
    background: var(--surface-hover);
    transform: translateY(-1px);
}

.theme-toggle-btn svg {
    width: 20px;
    height: 20px;
}

.theme-icon-dark { display: none; }
.theme-icon-light { display: block; }
body.dark-mode .theme-icon-dark { display: block; }
body.dark-mode .theme-icon-light { display: none; }

/* Mobile Menu Toggle Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--r-sm, 8px);
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    transition: border-color 0.2s ease;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-menu-btn.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.is-active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer Navigation */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem 1.75rem;
    box-shadow: var(--shadow-xl);
    z-index: calc(var(--z-header, 300) - 1);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
    pointer-events: none;
}

.mobile-drawer.is-open {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-drawer .landing-nav-link {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.l-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--r, 12px);
    cursor: pointer;
    transition: all 0.22s cubic-bezier(0.2, 0.8, 0.4, 1);
    border: 1px solid transparent;
    white-space: nowrap;
}

.l-btn svg {
    width: 18px;
    height: 18px;
}

.l-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.28);
}

.l-btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
    color: #ffffff;
}

.l-btn-secondary {
    background: var(--surface);
    color: var(--text-primary);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-sm);
}

.l-btn-secondary:hover {
    background: var(--surface-hover);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.l-btn-lg {
    padding: 0.85rem 1.75rem;
    font-size: 1.05rem;
    border-radius: var(--r-lg, 16px);
}

/* ── Hero Section ────────────────────────────────────────────────────────── */
.landing-hero {
    padding-top: calc(72px + 4rem);
    padding-bottom: 4.5rem;
    text-align: center;
    position: relative;
}

.hero-badge-container {
    display: inline-flex;
    margin-bottom: 1.5rem;
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.1rem;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--r-full, 9999px);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

body.dark-mode .hero-pill-badge {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.35);
}

.badge-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--success, #10b981);
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.6);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.hero-main-title {
    font-size: clamp(2.25rem, 4.8vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    max-width: 960px;
    margin: 0 auto 1.5rem;
    color: var(--text-primary);
}

.title-highlight-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #3b82f6 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead-text {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 760px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

/* ── Hero Stats Grid ─────────────────────────────────────────────────────── */
.hero-stats-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-2xl, 28px);
    padding: 1.75rem 2rem;
    box-shadow: var(--shadow-md);
    max-width: 1060px;
    margin: 0 auto;
}

body.dark-mode .hero-stats-banner {
    background: var(--surface-glass);
    border-color: rgba(255, 255, 255, 0.08);
}

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

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.75rem;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background-color: var(--border);
}

.stat-value {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* ── Section Header ──────────────────────────────────────────────────────── */
.landing-section {
    padding: 5rem 0;
    position: relative;
}

.section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3.5rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.section-kicker svg {
    width: 16px;
    height: 16px;
}

.section-title {
    font-size: clamp(1.85rem, 3.2vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtext {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Feature Cards Grid ──────────────────────────────────────────────────── */
.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-box {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl, 20px);
    padding: 2rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

body.dark-mode .feature-box {
    background: var(--surface-glass);
    border-color: rgba(255, 255, 255, 0.07);
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-strong);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-light), transparent);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.feature-box:hover::before {
    opacity: 1;
}

.feature-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: var(--r-lg, 16px);
    background: var(--primary-lighter);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    transition: transform 0.2s ease;
}

body.dark-mode .feature-icon-wrapper {
    background: rgba(99, 102, 241, 0.16);
}

.feature-box:hover .feature-icon-wrapper {
    transform: scale(1.08);
}

.feature-icon-wrapper svg {
    width: 26px;
    height: 26px;
}

.feature-item-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.feature-item-desc {
    font-size: 0.935rem;
    color: var(--text-secondary);
    line-height: 1.55;
    flex-grow: 1;
}

.feature-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1.25rem;
}

.feature-tag-chip {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: var(--r-full, 9999px);
    background: var(--surface-hover);
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

/* ── Highlight Banner (100% Kostenlos) ───────────────────────────────────── */
.highlight-free-banner {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
    border: 1px solid var(--border-strong);
    border-radius: var(--r-2xl, 28px);
    padding: 3rem;
    margin: 3.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
}

body.dark-mode .highlight-free-banner {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(16, 185, 129, 0.1) 100%);
    border-color: rgba(99, 102, 241, 0.25);
}

.highlight-free-content {
    max-width: 680px;
}

.highlight-free-content h3 {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.highlight-free-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Comparison Cards ────────────────────────────────────────────────────── */
.comparison-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.comp-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl, 20px);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

body.dark-mode .comp-card {
    background: var(--surface-glass);
    border-color: rgba(255, 255, 255, 0.07);
}

.comp-card.is-laia {
    border: 2px solid var(--primary);
    background: var(--surface);
    box-shadow: var(--shadow-lg), 0 0 24px rgba(99, 102, 241, 0.12);
    position: relative;
}

body.dark-mode .comp-card.is-laia {
    background: var(--surface);
    border-color: var(--primary-light);
}

.comp-card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: var(--r-full, 9999px);
}

.comp-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.comp-card-sub {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    min-height: 42px;
}

.comp-points-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.comp-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.comp-point svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comp-point.positive svg {
    stroke: var(--success, #10b981);
}

.comp-point.negative svg {
    stroke: var(--danger, #ef4444);
}

/* ── Tarife: Pricing & Features ──────────────────────────────────────────── */
.pricing-hero-card {
    background: var(--surface);
    border: 2px solid var(--primary);
    border-radius: var(--r-2xl, 28px);
    box-shadow: var(--shadow-xl), 0 0 35px rgba(99, 102, 241, 0.14);
    padding: 3.5rem;
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    overflow: hidden;
}

body.dark-mode .pricing-hero-card {
    background: var(--surface);
    border-color: var(--primary-light);
}

.pricing-ribbon {
    position: absolute;
    top: 24px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.28);
    border-radius: var(--r-full, 9999px);
    color: #059669;
    font-size: 0.85rem;
    font-weight: 700;
}

body.dark-mode .pricing-ribbon {
    color: #34d399;
    background: rgba(16, 185, 129, 0.18);
}

.pricing-head-details {
    margin-bottom: 2.5rem;
}

.pricing-plan-name {
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-cost-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.pricing-zero-figure {
    font-size: clamp(3rem, 6vw, 4.25rem);
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-period {
    font-size: 1.15rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.pricing-promise-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 600px;
}

.pricing-included-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.75rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.pricing-feat-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.pricing-feat-row svg {
    width: 20px;
    height: 20px;
    stroke: var(--success, #10b981);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ── Detail Feature Matrix Table ─────────────────────────────────────────── */
.table-responsive-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--r-xl, 20px);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    background: var(--surface);
}

body.dark-mode .table-responsive-wrapper {
    background: var(--surface-glass);
    border-color: rgba(255, 255, 255, 0.08);
}

.matrix-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.matrix-table th,
.matrix-table td {
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}

.matrix-table th {
    background: var(--surface-hover);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
}

.matrix-table td:first-child {
    font-weight: 600;
    color: var(--text-primary);
}

.matrix-status-cell {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--success, #10b981);
    font-weight: 600;
    font-size: 0.925rem;
}

.matrix-status-cell svg {
    width: 18px;
    height: 18px;
}

/* ── FAQ Accordion / Grid ────────────────────────────────────────────────── */
.faq-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.faq-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg, 16px);
    padding: 1.75rem;
    box-shadow: var(--shadow-xs);
}

body.dark-mode .faq-card {
    background: var(--surface-glass);
    border-color: rgba(255, 255, 255, 0.07);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.65rem;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ── Story Timeline (Über uns) ───────────────────────────────────────────── */
.story-timeline {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 2rem 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 28px;
    width: 2px;
    background: var(--border-strong);
}

.timeline-step {
    position: relative;
    padding-left: 70px;
    margin-bottom: 3.5rem;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: 17px;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--surface);
    border: 4px solid var(--primary);
    box-shadow: 0 0 0 4px var(--primary-lighter);
}

body.dark-mode .timeline-dot {
    background: var(--surface-elevated);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.2);
}

.timeline-date-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    margin-bottom: 0.35rem;
}

.timeline-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.timeline-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ── Values Grid (Über uns) ──────────────────────────────────────────────── */
.values-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.value-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-xl, 20px);
    padding: 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

body.dark-mode .value-card {
    background: var(--surface-glass);
    border-color: rgba(255, 255, 255, 0.07);
}

.value-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--surface-hover);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.value-icon-circle svg {
    width: 26px;
    height: 26px;
}

.value-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.value-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ── Global Call To Action Banner ────────────────────────────────────────── */
.landing-cta-section {
    padding: 5rem 0 6rem;
}

.cta-banner-box {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    border-radius: var(--r-2xl, 28px);
    padding: 4.5rem 3rem;
    text-align: center;
    color: #ffffff;
    box-shadow: var(--shadow-xl), 0 20px 50px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-banner-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 60%);
    pointer-events: none;
}

.cta-banner-title {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
    color: #ffffff;
}

.cta-banner-sub {
    font-size: 1.15rem;
    opacity: 0.92;
    max-width: 650px;
    margin: 0 auto 2.25rem;
    line-height: 1.6;
}

.cta-btn-white {
    background: #ffffff;
    color: var(--primary-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-btn-white:hover {
    background: #f8fafc;
    color: var(--primary-darker);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.cta-btn-outline {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.landing-footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 4.5rem 0 2.5rem;
}

body.dark-mode .landing-footer {
    background: var(--surface-elevated);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3.5rem;
}

.footer-brand-col p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 1rem;
    max-width: 360px;
}

.footer-heading {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-list a {
    text-decoration: none;
    font-size: 0.925rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.footer-nav-list a:hover {
    color: var(--primary);
}

.footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 1rem;
}

/* ── Scroll Reveal Animations ────────────────────────────────────────────── */
.l-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.l-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Mobile Responsiveness ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .features-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .footer-top-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .nav-desktop-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-stats-banner {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem 1rem;
        padding: 1.5rem;
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

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

    .highlight-free-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }

    .pricing-hero-card {
        padding: 2.25rem 1.5rem;
    }

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

    .pricing-cta-box {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

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

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

    .cta-banner-box {
        padding: 3rem 1.5rem;
    }

    .footer-top-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-stats-banner {
        grid-template-columns: 1fr;
    }

    .stat-item::after {
        display: none !important;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .l-btn {
        width: 100%;
    }
}
