/**
 * Pricing Page CSS
 * daten24.io - B2B Pricing Styles
 */

/* ==========================================
   PRICING HERO
   ========================================== */

.pricing-hero {
    padding: 4rem 0 3rem;
    text-align: center;
}

.pricing-hero .page-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--d24-primary), #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-hero .lead {
    font-size: 1.25rem;
    color: var(--d24-text-secondary);
    max-width: 800px;
    margin: 0 auto 2rem;
}

.pricing-transparency-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: var(--d24-radius-lg);
    color: var(--d24-primary);
    font-weight: 600;
}

.pricing-transparency-badge svg {
    width: 24px;
    height: 24px;
}

/* ==========================================
   PRICING TABS
   ========================================== */

.pricing-models {
    padding: 3rem 0;
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.pricing-tab {
    padding: 1rem 2rem;
    background: var(--d24-bg-primary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--d24-radius-lg);
    color: var(--d24-text-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.1), transparent);
    transition: left 0.5s ease;
}

.pricing-tab:hover::before {
    left: 100%;
}

.pricing-tab:hover {
    border-color: var(--d24-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.2);
}

.pricing-tab.active {
    background: linear-gradient(135deg, var(--d24-primary), #00b894);
    border-color: var(--d24-primary);
    color: white;
    box-shadow: 0 4px 16px rgba(0, 212, 170, 0.3);
}

.pricing-tab-content {
    display: none;
    opacity: 0;
    animation: fadeIn 0.5s ease forwards;
}

.pricing-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.pricing-intro h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-intro p {
    font-size: 1.125rem;
    color: var(--d24-text-secondary);
}

/* ==========================================
   DATA TYPE CARDS (Pay-per-Query)
   ========================================== */

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

.data-type-card {
    background: var(--d24-bg-secondary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--d24-radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.data-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--d24-primary), #6c5ce7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.data-type-card:hover {
    border-color: var(--d24-primary);
    transform: translateY(-4px);
    box-shadow: var(--d24-shadow-xl);
}

.data-type-card:hover::before,
.data-type-card.selected::before {
    opacity: 1;
}

.data-type-card.selected {
    border-color: var(--d24-primary);
    background: rgba(0, 212, 170, 0.05);
}

.data-type-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.data-type-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.data-type-header h4 {
    flex: 1;
    margin: 0.5rem 0 0;
}

.data-type-badge {
    padding: 0.25rem 0.75rem;
    border-radius: var(--d24-radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.data-type-badge.premium {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
}

.data-type-badge.high-value {
    background: linear-gradient(135deg, var(--d24-primary), #00b894);
    color: white;
}

.data-type-price {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(0, 212, 170, 0.05);
    border-radius: var(--d24-radius-md);
    text-align: center;
}

.data-type-price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--d24-primary);
    display: block;
    line-height: 1;
}

.data-type-price .unit {
    font-size: 0.875rem;
    color: var(--d24-text-secondary);
    display: block;
    margin-top: 0.5rem;
}

.data-type-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.data-type-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--d24-text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.data-type-features li:last-child {
    border-bottom: none;
}

.data-type-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--d24-primary);
    font-weight: 700;
}

.market-comparison {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.market-comparison small {
    color: var(--d24-text-muted);
    font-size: 0.875rem;
}

/* ==========================================
   PRICING CALCULATOR
   ========================================== */

.pricing-calculator {
    background: var(--d24-bg-secondary);
    border: 2px solid var(--d24-primary);
    border-radius: var(--d24-radius-lg);
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.1);
}

.pricing-calculator h3 {
    margin-bottom: 0.5rem;
}

.pricing-calculator > p {
    color: var(--d24-text-secondary);
    margin-bottom: 2rem;
}

.calculator-inputs {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.calculator-row {
    display: grid;
    gap: 0.5rem;
}

.calculator-row label {
    font-weight: 600;
    color: var(--d24-text-primary);
}

.calculator-row select,
.calculator-row input {
    padding: 0.75rem 1rem;
    background: var(--d24-bg-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--d24-radius-md);
    color: var(--d24-text-primary);
    font-size: 1rem;
    transition: var(--d24-transition);
}

.calculator-row select:focus,
.calculator-row input:focus {
    outline: none;
    border-color: var(--d24-primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.calculator-result {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(108, 92, 231, 0.1));
    border-radius: var(--d24-radius-lg);
}

.result-label {
    font-size: 0.875rem;
    color: var(--d24-text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.result-amount {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--d24-primary), #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.result-breakdown {
    margin-top: 1rem;
}

.result-breakdown small {
    color: var(--d24-text-muted);
}

/* ==========================================
   BULK PURCHASE TIERS
   ========================================== */

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

.bulk-tier-card {
    background: var(--d24-bg-secondary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--d24-radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.bulk-tier-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: var(--d24-radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, var(--d24-primary), #6c5ce7);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bulk-tier-card:hover::after,
.bulk-tier-card.recommended::after {
    opacity: 1;
}

.bulk-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--d24-shadow-xl);
}

.bulk-tier-card.recommended {
    background: rgba(0, 212, 170, 0.05);
    border-color: var(--d24-primary);
}

.recommended-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--d24-primary), #00b894);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--d24-radius-md);
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.bulk-tier-card.custom {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(0, 212, 170, 0.1));
}

.tier-header {
    margin-bottom: 1.5rem;
}

.tier-header h4 {
    margin-bottom: 0.5rem;
}

.tier-volume {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--d24-primary);
}

.tier-discount {
    margin: 1rem 0;
}

.discount-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--d24-radius-md);
    font-weight: 600;
    font-size: 0.875rem;
}

.discount-badge.save {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    color: white;
}

.tier-price {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(0, 212, 170, 0.05);
    border-radius: var(--d24-radius-md);
    text-align: center;
}

.price-formula {
    font-family: 'Courier New', monospace;
    color: var(--d24-text-secondary);
    font-size: 0.875rem;
}

.tier-examples {
    margin: 1.5rem 0;
}

.tier-examples h5 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--d24-text-muted);
    margin-bottom: 1rem;
}

.tier-examples ul {
    list-style: none;
    padding: 0;
}

.tier-examples li {
    padding: 0.75rem 0;
    color: var(--d24-text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tier-examples li:last-child {
    border-bottom: none;
}

.savings {
    color: #22c55e;
    font-weight: 600;
    font-size: 0.875rem;
}

.tier-features {
    list-style: none;
    padding: 0;
}

.tier-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.875rem;
    color: var(--d24-text-secondary);
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--d24-primary);
}

/* ==========================================
   DATA LAKES
   ========================================== */

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

.data-lake-card {
    background: var(--d24-bg-secondary);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--d24-radius-lg);
    padding: 2.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.data-lake-card:hover {
    border-color: var(--d24-primary);
    transform: translateY(-4px);
    box-shadow: var(--d24-shadow-xl);
}

.data-lake-card.selected {
    border-color: var(--d24-primary);
    background: rgba(0, 212, 170, 0.05);
}

.data-lake-card.custom {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(0, 212, 170, 0.05));
}

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

.data-lake-card h4 {
    margin-bottom: 1.5rem;
}

.data-lake-price {
    margin: 1.5rem 0;
    text-align: center;
}

.data-lake-price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--d24-primary);
    display: block;
    line-height: 1;
}

.data-lake-price .period {
    font-size: 1rem;
    color: var(--d24-text-secondary);
    display: block;
    margin-top: 0.5rem;
}

.data-lake-includes {
    padding: 1rem;
    background: rgba(0, 212, 170, 0.1);
    border-radius: var(--d24-radius-md);
    text-align: center;
    margin: 1.5rem 0;
}

.data-lake-includes strong {
    color: var(--d24-primary);
}

.data-lake-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.data-lake-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--d24-text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.data-lake-features li:last-child {
    border-bottom: none;
}

.data-lake-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--d24-primary);
    font-weight: 700;
}

.data-lake-savings {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.data-lake-savings small {
    color: #22c55e;
    font-weight: 600;
}

.data-lake-cta {
    margin: 1.5rem 0;
}

.data-lake-cta p {
    color: var(--d24-text-secondary);
    font-size: 0.875rem;
    text-align: center;
}

/* ==========================================
   ENTERPRISE SECTION
   ========================================== */

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

.enterprise-feature {
    text-align: center;
    padding: 2rem;
    background: var(--d24-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--d24-radius-lg);
    transition: all 0.3s ease;
}

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

.enterprise-feature .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.enterprise-feature h4 {
    margin-bottom: 0.75rem;
}

.enterprise-feature p {
    color: var(--d24-text-secondary);
    font-size: 0.875rem;
}

.enterprise-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(108, 92, 231, 0.1));
    border-radius: var(--d24-radius-lg);
    margin: 3rem 0;
}

.enterprise-cta h3 {
    margin-bottom: 1rem;
}

.enterprise-cta p {
    color: var(--d24-text-secondary);
    margin-bottom: 2rem;
}

/* ==========================================
   TRANSPARENCY & FAQ
   ========================================== */

.pricing-transparency {
    padding: 4rem 0;
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.transparency-card {
    text-align: center;
    padding: 2rem;
    background: var(--d24-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--d24-radius-lg);
}

.transparency-card h4 {
    color: var(--d24-primary);
    margin-bottom: 1rem;
}

.transparency-card p {
    color: var(--d24-text-secondary);
    font-size: 0.875rem;
}

.pricing-faq {
    padding: 4rem 0;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-cta {
    padding: 5rem 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 1024px) {
    .data-types-grid,
    .bulk-tiers-grid,
    .data-lakes-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .pricing-calculator {
        padding: 2rem;
    }

    .result-amount {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .pricing-hero .page-title {
        font-size: 2rem;
    }

    .pricing-hero .lead {
        font-size: 1.125rem;
    }

    .pricing-tabs {
        flex-direction: column;
        gap: 0.75rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-tab {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
        white-space: nowrap;
    }

    .data-types-grid,
    .bulk-tiers-grid,
    .data-lakes-grid,
    .enterprise-features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-calculator {
        padding: 1.5rem;
    }

    .calculator-inputs {
        gap: 1rem;
    }

    .result-amount {
        font-size: 2.5rem;
    }

    .data-type-price .amount,
    .data-lake-price .amount {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ==========================================
   COMPETITOR COMPARISON CAROUSEL
   ========================================== */

.competitor-comparison-section {
    background: var(--d24-bg-secondary);
    border-radius: var(--d24-radius-lg);
    padding: 3rem;
    margin: 3rem 0;
    position: relative;
}

.competitor-comparison-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    background: linear-gradient(135deg, var(--d24-primary), #6c5ce7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.competitor-comparison-section .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

/* Carousel Container */
.comparison-carousel {
    position: relative;
    overflow: hidden;
    margin: 2rem 0;
}

.comparison-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.comparison-table-wrapper {
    flex: 0 0 100%;
    min-width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.comparison-table-wrapper.active {
    opacity: 1;
    visibility: visible;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--d24-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 212, 170, 0.3);
}

.carousel-arrow:hover {
    background: linear-gradient(135deg, var(--d24-primary), #00b894);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 212, 170, 0.5);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-arrow.carousel-prev {
    left: -25px;
}

.carousel-arrow.carousel-next {
    right: -25px;
}

.carousel-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.carousel-indicators .indicator.active {
    background: var(--d24-primary);
    width: 32px;
    border-radius: 6px;
}

/* Comparison Table Styling */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--d24-bg-primary);
    border-radius: var(--d24-radius-md);
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.comparison-table thead {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.1), rgba(108, 92, 231, 0.1));
}

.comparison-table th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--d24-primary);
    border-bottom: 2px solid rgba(0, 212, 170, 0.3);
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: middle;
}

.comparison-table tbody tr {
    transition: background 0.2s ease;
}

.comparison-table tbody tr:hover {
    background: rgba(0, 212, 170, 0.05);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* Highlighted Row (daten24) */
.comparison-table .highlighted-row {
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15), rgba(108, 92, 231, 0.1));
    position: relative;
}

.comparison-table .highlighted-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--d24-primary);
}

.comparison-table .highlighted-row td {
    font-weight: 600;
}

.comparison-table .highlighted-cell {
    color: var(--d24-primary);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-success {
    background: rgba(0, 212, 170, 0.2);
    color: var(--d24-primary);
    border: 1px solid var(--d24-primary);
}

.discount-tag {
    display: inline-block;
    background: rgba(108, 92, 231, 0.2);
    color: #a29bfe;
    padding: 0.15rem 0.4rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.25rem;
}

/* Status Icons */
.status-icon {
    display: inline-block;
    font-weight: 700;
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.status-icon.success {
    color: #00d4aa;
}

.status-icon.warning {
    color: #f39c12;
}

.status-icon.error {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.875rem 0.75rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .carousel-arrow.carousel-prev {
        left: -20px;
    }

    .carousel-arrow.carousel-next {
        right: -20px;
    }
}

@media (max-width: 768px) {
    .competitor-comparison-section {
        padding: 2rem 1.5rem;
    }

    .competitor-comparison-section .section-title {
        font-size: 1.5rem;
    }

    /* Hide some columns on mobile */
    .comparison-table th:not(:first-child):not(:nth-child(2)),
    .comparison-table td:not(:first-child):not(:nth-child(2)) {
        display: none;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }

    .carousel-arrow.carousel-prev {
        left: 10px;
    }

    .carousel-arrow.carousel-next {
        right: 10px;
    }

    /* Stack indicators vertically on very small screens */
    .carousel-indicators {
        gap: 0.5rem;
    }

    .carousel-indicators .indicator {
        width: 8px;
        height: 8px;
    }

    .carousel-indicators .indicator.active {
        width: 24px;
    }
}

/* =========================================================
   Preisgestaltung: KI-optimiert (empfohlen) vs. selbst
   Nur semantische Tokens (Light + Dark automatisch)
   ========================================================= */
.pricing-method {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: var(--space-6);
    align-items: start;
    margin-top: var(--space-8);
}

.pricing-method-primary {
    position: relative;
    background: var(--accent-subtle);
    border: 2px solid var(--accent-border);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
}

.pricing-method-badge {
    position: absolute;
    top: var(--space-5);
    right: var(--space-5);
}

.pricing-method-icon {
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: var(--space-3);
}

.pricing-method-primary h3 {
    margin: 0 0 var(--space-3);
    color: var(--text);
}

.pricing-method-lead {
    color: var(--text-secondary);
    margin: 0 0 var(--space-4);
    line-height: 1.6;
}

.pricing-method-secondary {
    background: var(--bg-subtle);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
}

.pricing-method-secondary h4 {
    margin: 0 0 var(--space-2);
    color: var(--text-secondary);
}

.pricing-method-range {
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--text);
    line-height: 1.1;
}

.pricing-method-subline {
    margin: var(--space-1) 0 var(--space-3);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.pricing-method-note {
    margin: var(--space-4) 0 0;
    padding: var(--space-3) var(--space-4);
    background: var(--warning-bg);
    color: var(--warning);
    border-radius: var(--radius-md);
    font-size: var(--text-sm);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .pricing-method {
        grid-template-columns: 1fr;
    }
}
