/* Árak oldal - pricing.css */

/* Hero Section */
.pricing-hero {
    background: var(--primary-gradient);
    padding: 80px 0 60px;
    text-align: center;
    color: white;
}

.pricing-hero .page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.pricing-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
}

/* Pricing Table */
.pricing-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Pricing Card */
.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.featured-badge {
    position: absolute;
    top: 10px;
    right: 20px;
    background: var(--primary-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-solid);
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #64748b;
}

.price-period {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* Pricing Features */
.pricing-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: #334155;
}

.feature-item i {
    font-size: 1.25rem;
    color: #10b981;
    flex-shrink: 0;
}

.feature-item.disabled {
    opacity: 0.5;
}

.feature-item.disabled i {
    color: #ef4444;
}

/* Pricing Footer */
.pricing-footer {
    text-align: center;
}

.btn-pricing {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-solid);
    color: white;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-solid);
}

.btn-pricing:hover {
    background: #4f46e5;
    border-color: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.btn-pricing.btn-featured {
    background: var(--primary-gradient);
    border: none;
}

.btn-pricing.btn-featured:hover {
    background: linear-gradient(135deg, var(--primary-color-end) 0%, var(--primary-color-start) 100%);
}

/* Inspection Pricing Section */
.inspection-pricing-section {
    padding: 80px 0;
    background: white;
}

/* Inspection Category */
.inspection-category {
    margin: 0 auto 3rem;
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
}

.inspection-category:hover {
    border-color: var(--primary-solid);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Category Header */
.category-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.category-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-info {
    flex: 1;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.category-subtitle {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* Category Pricing */
.category-pricing {
    margin-bottom: 2rem;
}

.pricing-row {
    display: grid;
    grid-template-columns: 150px 1fr auto;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    align-items: center;
    transition: all 0.3s ease;
}

.pricing-row:hover {
    background: #eef2ff;
    transform: translateX(5px);
}

.pricing-label {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

.pricing-area {
    color: #64748b;
    font-size: 0.9rem;
    text-align: left;
}

.pricing-amount {
    font-weight: 700;
    color: var(--primary-solid);
    font-size: 1.1rem;
    white-space: nowrap;
}

/* Category Features */
.category-features {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.category-features h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.category-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-features ul li {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.8;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
    text-align: left;
}

.category-features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Subscriber Discount */
.subscriber-discount {
    max-width: 900px;
    margin: 3rem auto;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border: 2px solid #fbbf24;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.2);
}

.discount-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.discount-icon i {
    font-size: 1.75rem;
    color: white;
}

.discount-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #78350f;
    margin-bottom: 0.5rem;
}

.discount-content p {
    font-size: 1rem;
    color: #78350f;
    margin: 0;
}

.discount-highlight {
    font-weight: 700;
    color: #d97706;
    font-size: 1.1rem;
}

/* Pricing Note */
.pricing-note {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    border-radius: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.pricing-note i {
    font-size: 1.5rem;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.pricing-note p {
    margin: 0;
    color: #78350f;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

    .section-title {
        font-size: 1.75rem;
    }

    .pricing-table {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

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

    .inspection-category {
        padding: 1.5rem;
    }

    .category-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .category-title {
        font-size: 1.25rem;
    }

    .pricing-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        padding: 0.75rem;
    }

    .pricing-label,
    .pricing-area,
    .pricing-amount {
        text-align: left;
    }

    .pricing-amount {
        font-size: 1rem;
    }

    .subscriber-discount {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .discount-content h3 {
        font-size: 1.1rem;
    }

    .discount-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        padding: 60px 0 40px;
    }

    .pricing-section,
    .inspection-pricing-section {
        padding: 60px 0;
    }

    .pricing-card,
    .inspection-card {
        padding: 2rem 1.5rem;
    }

    .btn-pricing {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}
