/* Pricing Page Styles */

.pricing-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../images/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 15px 0;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.pricing-hero .subtitle {
    font-size: 18px;
    line-height: 1.7;
    opacity: 1;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.7);
}

/* License Channels */
.license-channels {
    padding: 15px 0;
    background: var(--bg-white);
}

.section-description {
    text-align: center;
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 50px;
    line-height: 1.7;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .channels-grid {
        grid-template-columns: 1fr;
    }
}

.channel-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s;
    position: relative;
}

.channel-card:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
    transform: translateY(-5px);
}

.channel-card.featured {
    border-color: var(--primary-blue);
    background: var(--bg-light-blue);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-orange);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.channel-icon {
    text-align: center;
    margin-bottom: 20px;
}

.channel-icon img {
    width: 60px;
    height: 60px;
    margin: 0 auto;
}

.channel-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-align: center;
    font-weight: 600;
}

.channel-description {
    text-align: center;
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
    min-height: 40px;
}

.channel-features {
    list-style: none;
    margin-bottom: 25px;
}

.channel-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.5;
}

.channel-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

.channel-price {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.price-label {
    font-size: 14px;
    color: var(--text-gray);
    display: block;
    margin-bottom: 5px;
}

.price-value {
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

/* Pricing Plans */
.pricing-plans {
    padding: 15px 0;
    background: var(--bg-gray);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.plan-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s;
}

.plan-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.plan-card.featured {
    border-color: var(--primary-blue);
    border-width: 3px;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 28px;
    color: #18406d;
    margin-bottom: 10px;
    font-weight: 600;
}

.plan-subtitle {
    font-size: 14px;
    color: var(--text-gray);
}

.plan-price {
    text-align: center;
    margin-bottom: 30px;
    padding: 25px 0;
    background: var(--bg-gray);
    border-radius: 8px;
}

.plan-price .price-value {
    font-size: 32px;
    color: var(--primary-blue);
    font-weight: 700;
    display: block;
}

.plan-price .price-period {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 5px;
}

.plan-features h4 {
    font-size: 14px;
    color: var(--text-gray);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin: 25px 0 15px;
}

.plan-features ul {
    list-style: none;
}

.plan-features ul li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features .check {
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 18px;
}

.plan-card .btn {
    width: 100%;
    margin-top: 30px;
}

/* Additional Options */
.additional-options {
    padding: 15px 0;
    background: var(--bg-white);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.option-card {
    background: var(--bg-gray);
    border-radius: 10px;
    padding: 20px;
    border-left: 4px solid var(--primary-blue);
}

.option-card h3 {
    font-size: 22px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-weight: 600;
}

.option-card p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.option-card ul {
    list-style: none;

}

.option-card ul li {
    padding: 3px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: var(--text-dark);
}

.option-card ul li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-blue);
    font-weight: bold;
}

.option-price {
    font-size: 18px;
    color: var(--primary-blue);
    font-weight: 600;
    text-align: right;
}

/* Features Comparison */
.features-comparison {
    padding: 15px 0;
    background: var(--bg-gray);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table thead {
    background: var(--primary-blue);
    color: white;
}

.comparison-table th {
    padding: 20px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}

.comparison-table th:first-child {
    text-align: left;
}

.comparison-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table tbody tr:hover {
    background: var(--bg-light-blue);
}

.comparison-table .yes {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: bold;
}

.comparison-table .no {
    color: var(--text-light);
    font-size: 20px;
}

/* Full Pricing Table */
.pricing-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 5px;
}

.pricing-full-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.pricing-full-table thead {
    background: #f8fbff;
}

.pricing-full-table th {
    padding: 20px 15px;
    text-align: center;
    color: #18406d;
    font-weight: 600;
    font-size: 15px;
    border-bottom: 2px solid #e6f2ff;
    vertical-align: middle;
}

.pricing-full-table th:first-child {
    text-align: left;
    padding-left: 30px;
}

.pricing-full-table .th-subtitle {
    display: block;
    font-size: 12px;
    color: #718096;
    font-weight: normal;
    margin-top: 5px;
}

.pricing-full-table td {
    padding: 20px 15px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    color: #2d3748;
    font-size: 15px;
}

.pricing-full-table td:first-child {
    text-align: left;
    padding-left: 30px;
    font-weight: 600;
    color: #18406d;
}

.pricing-full-table tr:last-child td {
    border-bottom: none;
}

.pricing-full-table tr:hover {
    background-color: #fcfdff;
}

.pricing-full-table .highlight-col {
    background-color: #f0f7ff;
    font-weight: 600;
    color: #18406d;
}

.pricing-full-table th.highlight-col {
    background-color: #e6f2ff;
}

.pricing-note {
    margin-top: 20px;
    font-size: 13px;
    color: #718096;
    text-align: left;
    padding-left: 10px;
}

.pricing-note p {
    margin-bottom: 5px;
}

/* Pricing CTA */
.pricing-cta {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/cta-bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5px 0;
    margin-bottom: 2px;
    text-align: center;
}

.pricing-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.pricing-cta p {
    font-size: 18px;
    margin-bottom: 5px;
    opacity: 1;
    line-height: 1.7;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.8);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
}

.cta-note {
    font-size: 14px;
    opacity: 0.8;
}

.cta-note a {
    color: white;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 1024px) {
    .channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .pricing-hero h1 {
        font-size: 32px;
    }
    
    .pricing-hero .subtitle {
        font-size: 16px;
    }
    
    .channels-grid {
        grid-template-columns: 1fr;
    }
    
    .options-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 13px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-large {
        width: 100%;
    }
}

/* Animations */
.channel-card,
.plan-card,
.option-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.channel-card:nth-child(1) { animation-delay: 0.1s; }
.channel-card:nth-child(2) { animation-delay: 0.2s; }
.channel-card:nth-child(3) { animation-delay: 0.3s; }
.channel-card:nth-child(4) { animation-delay: 0.4s; }
.channel-card:nth-child(5) { animation-delay: 0.5s; }
.channel-card:nth-child(6) { animation-delay: 0.6s; }

.plan-card:nth-child(1) { animation-delay: 0.1s; }
.plan-card:nth-child(2) { animation-delay: 0.2s; }
.plan-card:nth-child(3) { animation-delay: 0.3s; }

