/* ============================================
   Pricing Page Styles - Global Access
   ============================================ */

/* Pricing Hero Section */
.pricing-hero {
    padding: 160px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 151, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-hero .sub-title {
    display: inline-block;
    background: rgba(0, 255, 151, 0.1);
    color: #00ff97;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.pricing-hero .main-title {
    font-size: 52px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-wrap: balance;
}

.pricing-hero .subtitle {
    font-size: 20px;
    color: #b4b4b4;
    margin-bottom: 40px;
}

/* Billing Toggle */
.billing-toggle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.billing-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.billing-toggle button {
    padding: 12px 28px;
    border: none;
    background: transparent;
    color: #b4b4b4;
    font-size: 15px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: color 0.3s ease;
    -webkit-tap-highlight-color: transparent;
}

.billing-toggle button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 255, 151, 0.5);
}

.billing-toggle button.active {
    background: linear-gradient(135deg, #00ff97 0%, #00d4aa 100%);
    color: #000;
    font-weight: 600;
}

.billing-toggle button:hover:not(.active) {
    color: #fff;
}

.discount-badge {
    background: rgba(0, 255, 151, 0.2);
    color: #00ff97;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Currency Selector */
.currency-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
}

.currency-selector button {
    padding: 11px 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: #888;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
    letter-spacing: 0.5px;
}

.currency-selector button:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 255, 151, 0.5);
}

.currency-selector button.active {
    background: linear-gradient(135deg, rgba(0, 255, 151, 0.15) 0%, rgba(0, 204, 122, 0.1) 100%);
    border-color: rgba(0, 255, 151, 0.5);
    color: #00ff97;
    box-shadow: 0 4px 16px rgba(0, 255, 151, 0.15);
}

.currency-selector button:hover:not(.active) {
    border-color: rgba(0, 255, 151, 0.25);
    color: #fff;
    background: rgba(0, 255, 151, 0.04);
}

/* Pricing Cards */
.pricing-cards-section {
    padding: 0 0 100px;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 2, 15, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 35px;
    height: 100%;
    position: relative;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    backdrop-filter: blur(12px);
    scroll-margin-top: 100px;
}

.pricing-card:focus-within {
    border-color: rgba(0, 255, 151, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 255, 151, 0.2);
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 151, 0.3);
    box-shadow: 0 20px 60px rgba(0, 255, 151, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(145deg, rgba(0, 255, 151, 0.08) 0%, rgba(0, 2, 15, 0.95) 100%);
    border-color: rgba(0, 255, 151, 0.3);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00ff97 0%, #00d4aa 100%);
    color: #000;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-wrap: balance;
}

.pricing-card-price {
    margin-bottom: 8px;
}

.pricing-card-price .amount {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

.pricing-card-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: #00ff97;
    vertical-align: super;
}

.pricing-card-price .period {
    font-size: 16px;
    color: #b4b4b4;
}

.pricing-card-subtitle {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

.pricing-card-btn {
    display: block;
    width: 100%;
    padding: 17px 32px;
    text-align: center;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin-bottom: 30px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.pricing-card-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 255, 151, 0.4), 0 0 0 6px rgba(0, 255, 151, 0.2);
}

/* Primary Button — solid green with shimmer sweep on hover */
.pricing-card-btn.primary {
    background: linear-gradient(135deg, #00ff97 0%, #00cc7a 100%);
    color: #000;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 255, 151, 0.35);
}

.pricing-card-btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.55s ease;
    pointer-events: none;
}

.pricing-card-btn.primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 45px rgba(0, 255, 151, 0.55);
    color: #000;
}

.pricing-card-btn.primary:hover::before {
    left: 100%;
}

/* Secondary Button — green-accent outline that fills solid on hover */
.pricing-card-btn.secondary {
    background: rgba(0, 255, 151, 0.04);
    color: #00ff97;
    border: 1.5px solid rgba(0, 255, 151, 0.35);
}

.pricing-card-btn.secondary:hover {
    background: linear-gradient(135deg, #00ff97 0%, #00cc7a 100%);
    border-color: #00ff97;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(0, 255, 151, 0.4);
}

.pricing-features-title {
    font-size: 13px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.pricing-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: #d1d5db;
    font-size: 14px;
    line-height: 1.5;
}

.pricing-features-list li i {
    color: #00ff97;
    font-size: 12px;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Add-ons Section */
.addons-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 151, 0.02) 50%, transparent 100%);
}

.addon-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(0, 2, 15, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.3s ease;
}

.addon-card:hover {
    border-color: rgba(0, 255, 151, 0.3);
    transform: translateY(-5px);
}

.addon-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.addon-card-price {
    margin-bottom: 20px;
}

.addon-card-price .amount {
    font-size: 32px;
    font-weight: 700;
    color: #00ff97;
}

.addon-card-price .period {
    font-size: 14px;
    color: #888;
}

.addon-card-desc {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 20px;
}

.addon-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.addon-features span {
    background: rgba(0, 255, 151, 0.1);
    color: #00ff97;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* Features Grid */
.features-section {
    padding: 100px 0;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(0, 255, 151, 0.2);
    background: rgba(0, 255, 151, 0.03);
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 255, 151, 0.2) 0%, rgba(0, 255, 151, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card-icon i {
    font-size: 24px;
    color: #00ff97;
}

.feature-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.feature-card-desc {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.6;
}

/* Demo Form Section */
.demo-section {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(0, 255, 151, 0.03) 0%, transparent 100%);
}

.demo-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.demo-content p {
    font-size: 18px;
    color: #9ca3af;
    margin-bottom: 30px;
    line-height: 1.7;
}

.demo-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
}

.demo-form .form-group {
    margin-bottom: 20px;
}

.demo-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
}

.demo-form input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    transition: all 0.3s ease;
}

.demo-form input:focus {
    outline: none;
    border-color: rgba(0, 255, 151, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.demo-form input::placeholder {
    color: #666;
}

.demo-form-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #00ff97 0%, #00d4aa 100%);
    border: none;
    border-radius: 50px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-form-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 255, 151, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
}

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item.active {
    border-color: rgba(0, 255, 151, 0.3);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h4 {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}

.faq-question i {
    color: #00ff97;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 24px;
    color: #9ca3af;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

/* Background Responsive Fixes */
.bg_img {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

/* ============================================
   Responsive Styles - Tablet
   ============================================ */
@media (max-width: 991px) {
    .pricing-hero .main-title {
        font-size: 38px;
    }

    .demo-content h2 {
        font-size: 32px;
    }

    .pricing-card {
        padding: 35px 28px;
    }

    .addon-card {
        padding: 30px 25px;
    }

    .demo-form {
        padding: 30px;
    }

    .feature-card {
        padding: 25px 20px;
    }
}

/* ============================================
   Responsive Styles - Mobile
   ============================================ */
@media (max-width: 767px) {
    .pricing-hero {
        padding: 120px 0 50px;
    }

    .pricing-hero::before {
        width: 400px;
        height: 400px;
    }

    .pricing-hero .main-title {
        font-size: 28px;
        line-height: 1.3;
        padding: 0 10px;
    }

    .pricing-hero .subtitle {
        font-size: 16px;
        padding: 0 15px;
    }

    .billing-toggle-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .billing-toggle {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .billing-toggle button {
        padding: 10px 20px;
        font-size: 14px;
        flex: 1;
    }

    .discount-badge {
        font-size: 12px;
        padding: 5px 12px;
    }

    .currency-selector {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 30px;
    }

    .currency-selector button {
        padding: 8px 20px;
        font-size: 13px;
    }

    /* Pricing Cards Mobile */
    .pricing-cards-section {
        padding: 0 0 60px;
    }

    .pricing-card {
        padding: 30px 22px;
        margin-bottom: 20px;
    }

    .pricing-card.featured::before {
        font-size: 10px;
        padding: 5px 15px;
    }

    .pricing-card-title {
        font-size: 20px;
    }

    .pricing-card-price .amount {
        font-size: 36px;
    }

    .pricing-card-price .currency {
        font-size: 20px;
    }

    .pricing-card-price .period {
        font-size: 14px;
    }

    .pricing-card-btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .pricing-features-list li {
        font-size: 13px;
        padding: 8px 0;
    }

    /* Add-ons Mobile */
    .addons-section {
        padding: 60px 0;
    }

    .addon-card {
        padding: 25px 20px;
        margin-bottom: 16px;
    }

    .addon-card-title {
        font-size: 18px;
    }

    .addon-card-price .amount {
        font-size: 28px;
    }

    .addon-card-desc {
        font-size: 13px;
    }

    .addon-features {
        gap: 6px;
    }

    .addon-features span {
        padding: 5px 10px;
        font-size: 11px;
    }

    /* Features Mobile */
    .features-section {
        padding: 60px 0;
    }

    .feature-card {
        padding: 25px 18px;
        margin-bottom: 16px;
    }

    .feature-card-icon {
        width: 50px;
        height: 50px;
    }

    .feature-card-icon i {
        font-size: 20px;
    }

    .feature-card-title {
        font-size: 15px;
    }

    .feature-card-desc {
        font-size: 13px;
    }

    /* Demo Section Mobile */
    .demo-section {
        padding: 60px 0;
    }

    .demo-content h2 {
        font-size: 26px;
        text-align: center;
    }

    .demo-content p {
        font-size: 15px;
        text-align: center;
    }

    .demo-content ul {
        justify-content: center;
    }

    .demo-content ul li {
        font-size: 14px;
    }

    .demo-form {
        padding: 25px 20px;
        margin-top: 30px;
    }

    .demo-form input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .demo-form-btn {
        padding: 14px 24px;
        font-size: 15px;
    }

    /* FAQ Mobile */
    .faq-section {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .faq-item {
        margin-bottom: 12px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question h4 {
        font-size: 15px;
        padding-right: 20px;
    }

    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 14px;
    }

    /* Section Titles Mobile */
    .sec-title .title {
        font-size: 26px !important;
    }

    .sec-title .sub-title {
        font-size: 13px;
    }
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    .pricing-card,
    .pricing-card-btn,
    .billing-toggle button,
    .currency-selector button,
    .service-toggle .toggle-slider {
        transition: none;
    }
    
    .pricing-card:hover {
        transform: none;
    }
    
    @keyframes fadeIn {
        from { opacity: 1; }
        to { opacity: 1; }
    }
}

/* ============================================
   Responsive Styles - Small Mobile
   ============================================ */
@media (max-width: 480px) {
    .pricing-hero {
        padding: 110px 0 40px;
    }

    .pricing-hero .main-title {
        font-size: 24px;
    }

    .pricing-hero .subtitle {
        font-size: 14px;
    }

    .billing-toggle button {
        padding: 8px 16px;
        font-size: 13px;
    }

    .pricing-card-price .amount {
        font-size: 32px;
    }

    .addon-card-price .amount {
        font-size: 24px;
    }

    .faq-title {
        font-size: 22px;
    }

    .faq-question h4 {
        font-size: 14px;
    }

    .demo-content h2 {
        font-size: 22px;
    }

    .sec-title .title {
        font-size: 22px !important;
    }
}