/* ===== INTERNATIONAL LANDING PAGE STYLES ===== */

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-item strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* International Hero Section */
.international-hero {
    background: linear-gradient(135deg, #125075 0%, #6d97c1 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.international-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.international-hero .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Country Selector Hero */
.country-selector-hero {
    margin: auto;
    max-width: 900px;
}

.country-selector-hero h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: white;
}

.country-options {
    display: grid;
    grid-template-columns: repeat(3, 230px);
    width: fit-content;
    margin: auto;
    gap: 1rem;
}

.country-option {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    border-radius: 16px;
    padding: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.country-option:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--text-color);
}

.country-flag,
.cta-flag {
    width: 50px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.country-info strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.country-info span {
    font-size: 0.9rem;
    color: #6b7280;
}
.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Comparison Filters */
.comparison-filters {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-weight: 500;
    color: var(--text-color);
    white-space: nowrap;
}

.filter-select {
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
    color: var(--text-color);
    font-size: 0.9rem;
    min-width: 150px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.filter-checkbox {
    margin-right: 0.5rem;
}

/* Table Badges */
.country-badge {
    background: #f3f4f6;
    color: var(--text-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.type-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
}

.type-badge.neo-broker {
    background: #dbeafe;
    color: #1e40af;
}

.type-badge.direktbank {
    background: #dcfce7;
    color: #166534;
}

.type-badge.international-broker {
    background: #fef3c7;
    color: #92400e;
}

.etf-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.etf-badge.success {
    background: #dcfce7;
    color: #166534;
}

.etf-badge.neutral {
    background: #f3f4f6;
    color: #6b7280;
}

.tax-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.tax-badge.success {
    background: #dcfce7;
    color: #166534;
}

.tax-badge.neutral {
    background: #f3f4f6;
    color: #6b7280;
}

/* DACH Benefits Section */
.dach-benefits {
    padding: 5rem 0;
    background: white;
}

.dach-benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 280px);
    width: fit-content;
    margin: auto;
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    background: #f8fafc;
    transition: transform 0.2s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* International CTA Section */
.international-cta {
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.international-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.international-cta p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-countries {
    display: grid;
    grid-template-columns: repeat(2, 280px);
    width: fit-content;
    margin: auto;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-country {
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-color);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-country:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--text-color);
}

.cta-flag {
    font-size: 2.5rem;
    line-height: 1;
}

.cta-info strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.cta-info span {
    font-size: 0.85rem;
    color: #6b7280;
}

/* Responsive Design */
@media (max-width: 768px) {
    .international-hero h1 {
        font-size: 2rem;
    }

    .international-hero .hero-subtitle {
        font-size: 1rem;
    }

    .country-options {
        grid-template-columns: 1fr;
    }

    .comparison-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-group {
        justify-content: space-between;
    }

    .filter-select {
        min-width: 120px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .cta-countries {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .country-links {
        grid-template-columns: 1fr;
    }
}

/* ===== END INTERNATIONAL LANDING PAGE STYLES =====*/
