.container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}



/* --- 4. SECTIONS & GRIDS --- */
.hero {
    text-align: center;
    padding: 6rem 1rem 4rem;
    background: radial-gradient(circle at 50% 0%, #e0e7ff 0%, transparent 60%);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.hero-title span {
    color: var(--ui-accent);
}

.hero-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.section-padding {
    padding: 5rem 0;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* --- 5. CARDS (Unified Design from Block 2) --- */
.feature-card,
.price-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 24px;
    /* Von Block 2 übernommen */
    border: 1px solid var(--ui-border);
    transition: transform 0.2s, border-color 0.2s;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #c7d2fe;
}

/* Featured Price Card */
.price-card.featured {
    border: 2px solid var(--ui-accent);
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ui-accent);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 1.5rem 0 0.5rem;
}

.price-amount span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Feature List innerhalb der Cards */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    flex-grow: 1;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #475569;
    font-size: 0.95rem;
}

.feature-list i {
    color: var(--success);
    font-size: 1.2rem;
}

.feature-list i.ph-x-circle {
    color: #cbd5e1;
}

.icon-box {
    width: 48px;
    height: 48px;
    background: #e0e7ff;
    color: var(--ui-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* --- 6. STEPS & FAQ --- */
.steps-section,
.faq-section {
    background: #fff;
    padding: 5rem 0;
    border-top: 1px solid var(--ui-border);
    border-bottom: 1px solid var(--ui-border);
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--ui-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.faq-item h3 {
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-muted);
}

/* --- 7. FOOTER --- */
.landing-footer {
    background: var(--bg-body);
    border-top: 1px solid var(--ui-border);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--ui-accent);
}







/* Layout & Zentrierung */
.steps-section {
    padding: 80px 0;
}

.steps-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
}

.steps-header {
    max-width: 600px;
    width: 100%;
}

.steps-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-main);
    text-align: center;
}

/* Schritt-Elemente */
.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-headline {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.step-text {
    color: var(--text-muted);
}

/* Grafik-Box (Visualisierung) */
.visual-container {
    width: 100%;
    max-width: 450px;
    background: var(--bg-body);
    padding: 2rem;
    border-radius: var(--ui-radius);
    border: 1px solid var(--ui-border);
}

.mock-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.mock-card.done .status-icon {
    width: 24px;
    height: 24px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.mock-card.done .mock-text {
    font-weight: 600;
    text-decoration: line-through;
    color: var(--text-muted);
}

.mock-card.pending {
    opacity: 0.7;
}

.mock-card.pending .status-icon.empty {
    width: 24px;
    height: 24px;
    border: 2px solid var(--ui-border);
    border-radius: 50%;
}







/* Pricing Header */
.pricing-header {
    text-align: center;
    padding: 5rem 1rem 3rem;
}

.pricing-header h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1rem;
}





.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.price-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, border-color 0.2s;
}

.price-card.featured {
    border: 2px solid #4f46e5;
    position: relative;
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #4f46e5;
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin: 1.5rem 0 0.5rem;
}

.price-amount span {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}