/* ============================================
   MonteFinance - 4%-Regel Landingpage Styles
   ============================================ */

/* ============================================
   Hero Section - 4% Regel spezifisch
   ============================================ */
.hero-4prozent {
    background: linear-gradient(135deg, #fff8e1 0%, #fff3e0 50%, #ffe0b2 100%);
}

.hero-4prozent .hero-title {
    font-size: 2.5rem;
}

/* Calculator Card im Hero */
.hero-calculator-card {
    background: var(--landing-card-bg);
    border-radius: 16px;
    box-shadow: var(--landing-shadow-lg);
    border: 2px solid #ff9800;
    max-width: 360px;
    overflow: hidden;
}

.calc-header {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.calc-icon {
    font-size: 1.5rem;
}

.calc-title {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.calc-body {
    padding: 1.5rem;
}

.calc-input-group {
    margin-bottom: 1.5rem;
}

.calc-input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--landing-text-muted);
    margin-bottom: 0.5rem;
}

.calc-input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid var(--landing-border);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.calc-input-wrapper:focus-within {
    border-color: #ff9800;
}

.calc-input-wrapper input {
    flex: 1;
    border: none;
    padding: 0.75rem 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    text-align: right;
    outline: none;
}

.calc-currency {
    padding: 0.75rem 1rem;
    background: #f5f5f5;
    font-weight: 600;
    color: var(--landing-text-muted);
}

.calc-results {
    background: #f5f7fa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.calc-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.calc-result-row.highlight {
    background: #e8f5e9;
    margin: 0.5rem -0.75rem;
    padding: 0.75rem;
    border-radius: 6px;
}

.calc-result-label {
    color: var(--landing-text-muted);
    font-size: 0.9rem;
}

.calc-result-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--landing-text);
}

.calc-result-row.highlight .calc-result-value {
    color: var(--landing-success);
    font-size: 1.25rem;
}

.calc-hint {
    text-align: right;
    font-size: 0.8rem;
    color: var(--landing-text-muted);
    margin: 0.5rem 0 0 0;
}

.calc-warning {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    background: #fff3e0;
    border: 1px solid #ffcc80;
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.warning-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.warning-text {
    font-size: 0.8rem;
    color: #e65100;
    line-height: 1.4;
}

.calc-cta {
    display: block;
    width: 100%;
    text-align: center;
}

/* Scroll Link */
.scroll-link {
    color: var(--landing-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.scroll-link:hover {
    color: var(--landing-primary-dark);
    text-decoration: underline;
}

/* ============================================
   Content Section
   ============================================ */
.content-section {
    padding: 3rem 2rem;
    margin-bottom: 2rem;
}

.explanation-card {
    max-width: 800px;
    margin: 0 auto;
}

.explanation-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--landing-text);
    margin-bottom: 1.5rem;
}

.rule-highlight {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-left: 4px solid var(--landing-primary);
    padding: 1.5rem 2rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}

.rule-highlight p {
    margin: 0;
    font-size: 1.1rem;
}

.example-box {
    background: var(--landing-card-bg);
    border: 2px solid var(--landing-border);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.example-box h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--landing-text);
}

.example-box ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.example-box li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
    color: var(--landing-text);
}

.example-formula {
    background: #f5f7fa;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    margin: 0;
}

/* ============================================
   Problem Section - erweitert
   ============================================ */
.problem-section .problem-grid {
    grid-template-columns: repeat(2, 1fr);
}

.problem-section .problem-card {
    background: #fef3f2;
}

/* ============================================
   Solution Section
   ============================================ */
.solution-section {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.solution-section .solution-highlight {
    background: var(--landing-card-bg);
    border-left: 4px solid var(--landing-success);
    padding: 2rem;
    border-radius: 0 12px 12px 0;
    max-width: 900px;
    margin: 0 auto;
}

.solution-highlight p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--landing-text);
    margin-bottom: 1.5rem;
}

.steps-compact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-num {
    width: 32px;
    height: 32px;
    background: var(--landing-success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text {
    font-size: 1rem;
    color: var(--landing-text);
    line-height: 1.6;
    padding-top: 0.25rem;
}

/* ============================================
   Comparison Section
   ============================================ */
.comparison-section {
    background: var(--landing-card-bg);
    padding: 3rem 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: var(--landing-shadow);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 2rem;
}

.comparison-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--landing-border);
}

.comparison-table th {
    background: #f5f7fa;
    font-weight: 600;
    color: var(--landing-text);
}

.comparison-table .col-old {
    color: var(--landing-text-muted);
}

.comparison-table .col-new {
    color: var(--landing-success);
    font-weight: 500;
}

.comparison-table th.col-old {
    background: #ffebee;
    color: var(--landing-danger);
}

.comparison-table th.col-new {
    background: #e8f5e9;
    color: var(--landing-success);
}

/* Visual Comparison */
.comparison-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.visual-card {
    background: #f5f7fa;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    min-width: 200px;
    max-width: 250px;
}

.visual-card.highlighted {
    background: #e8f5e9;
    border: 2px solid var(--landing-success);
}

.visual-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--landing-text);
    margin-bottom: 1rem;
}

.visual-chart {
    height: 80px;
    margin-bottom: 0.75rem;
}

.visual-chart svg {
    width: 100%;
    height: 100%;
}

.visual-card p {
    font-size: 0.85rem;
    color: var(--landing-text-muted);
    margin: 0;
}

.visual-arrow {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--landing-primary);
}

/* ============================================
   Trust Extended Section
   ============================================ */
.trust-extended-section {
    padding: 3rem 2rem;
    margin-bottom: 2rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.trust-card {
    background: var(--landing-card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--landing-shadow);
    border: 1px solid var(--landing-border);
}

.trust-card-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.trust-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--landing-text);
    margin-bottom: 0.75rem;
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--landing-text-muted);
    line-height: 1.6;
    margin: 0;
}

.source-note {
    background: #f5f7fa;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.source-note p {
    font-size: 0.85rem;
    color: var(--landing-text-muted);
    margin: 0;
    text-align: center;
}

/* ============================================
   Related Section
   ============================================ */
.related-section {
    padding: 3rem 2rem;
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.related-card {
    background: var(--landing-card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--landing-shadow);
    border: 1px solid var(--landing-border);
    transition: all 0.3s ease;
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--landing-shadow-lg);
    border-color: var(--landing-primary);
    text-decoration: none;
    color: inherit;
}

.related-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
}

.related-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--landing-text);
    margin-bottom: 0.5rem;
}

.related-card p {
    font-size: 0.875rem;
    color: var(--landing-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   FAQ Section - erweitert
   ============================================ */
.faq-section .faq-item ul {
    padding-left: 1.5rem;
    margin: 0.5rem 0;
}

.faq-section .faq-item li {
    color: var(--landing-text-muted);
    line-height: 1.6;
    margin-bottom: 0.25rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .hero-4prozent .hero-title {
        font-size: 2rem;
    }
    
    .problem-section .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-visual {
        flex-direction: column;
    }
    
    .visual-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .hero-4prozent .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-calculator-card {
        max-width: 100%;
    }
    
    .rule-highlight {
        padding: 1rem 1.5rem;
    }
    
    .example-box {
        padding: 1rem 1.5rem;
    }
    
    .comparison-table {
        font-size: 0.85rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-4prozent .hero-title {
        font-size: 1.5rem;
    }
    
    .calc-input-wrapper input {
        font-size: 1.1rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
}

