/* Pricing Page - Simple Layout */

/* Hero Section */
.pricing-hero {
    background: linear-gradient(135deg, var(--wfs-dark) 0%, #0f0f0f 100%);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--wfs-yellow), transparent);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.price-notice {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Content Section */
.pricing-content {
    background: var(--wfs-dark);
    padding: 60px 0 80px;
}

.pricing-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
}

/* Billing Period Section */
.billing-period-section {
    margin-bottom: 60px;
    text-align: center;
}

.billing-toggle {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 5px;
    margin-bottom: 20px;
}

.billing-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    padding: 12px 40px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.billing-btn:hover {
    color: #ffffff;
}

.billing-btn.active {
    background: var(--wfs-yellow);
    color: #000;
}

.save-badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    background: #00CC88;
    color: #fff;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.billing-note {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.billing-subnote {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Device Selection Grid */
.device-selection-section {
    margin-bottom: 60px;
}

.device-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.device-card {
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(229, 199, 56, 0.2);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.device-card:hover {
    border-color: var(--wfs-yellow);
    transform: translateY(-3px);
    background: rgba(229, 199, 56, 0.05);
}

.device-card.popular {
    border-color: var(--wfs-yellow);
    background: rgba(229, 199, 56, 0.08);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--wfs-yellow);
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.device-card svg {
    color: var(--wfs-yellow);
    margin-bottom: 15px;
}

.device-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.device-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.device-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--wfs-yellow);
}

.custom-option {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(229, 199, 56, 0.2);
    border-radius: 12px;
}

.custom-option p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

/* Per License Section */
.per-license-section {
    margin-bottom: 60px;
    text-align: center;
}

.per-license-display {
    background: rgba(229, 199, 56, 0.1);
    border: 2px solid var(--wfs-yellow);
    border-radius: 12px;
    padding: 40px;
    max-width: 400px;
    margin: 0 auto;
}

.license-price-large {
    font-size: 3rem;
    font-weight: 700;
    color: var(--wfs-yellow);
}

/* What's Included Section */
.whats-included-section {
    margin-bottom: 60px;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(229, 199, 56, 0.2);
    border-radius: 8px;
}

.included-item svg {
    color: var(--wfs-yellow);
    flex-shrink: 0;
}

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

/* CTA Section */
.pricing-cta {
    text-align: center;
    padding: 40px;
    background: rgba(229, 199, 56, 0.05);
    border: 1px solid rgba(229, 199, 56, 0.3);
    border-radius: 12px;
}

.btn-large {
    padding: 18px 60px;
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .device-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .device-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .device-card {
        padding: 20px 15px;
    }

    .device-number {
        font-size: 2rem;
    }

    .device-price {
        font-size: 0.95rem;
    }

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

    .billing-toggle {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .billing-btn {
        width: 100%;
    }

    .license-price-large {
        font-size: 2rem;
    }
}
