/* Pricing Page Specific Styles */

/* Pricing Hero Section */
.pricing-hero {
    padding: 120px 0 80px;
    background: var(--gradient-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(139, 92, 246, 0.4) 0%, transparent 60%),
                radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.4) 0%, transparent 60%);
    z-index: 1;
}

.pricing-hero .container {
    position: relative;
    z-index: 2;
}

.pricing-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pricing-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 20px;
    background: var(--gradient-card);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 25px;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.feature-badge i {
    color: var(--primary-purple);
    font-size: 1rem;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Product Cards */
.product-card {
    background: var(--gradient-card);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.3);
    border-color: var(--primary-purple);
}

/* Product Header */
.product-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.product-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    flex: 1;
}

.product-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.product-badges {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge.popular {
    background: linear-gradient(135deg, #FF6B6B, #FF8E8E);
    color: white;
}

.badge.best-value {
    background: linear-gradient(135deg, #4ECDC4, #44A08D);
    color: white;
}

.badge.save {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
}

/* Product Pricing */
.product-pricing {
    margin-bottom: 1.5rem;
    text-align: center;
    padding: 1rem;
    background: rgba(139, 92, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.price-comparison {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.original-price {
    font-size: 1rem;
    color: var(--text-gray);
    text-decoration: line-through;
    font-weight: 500;
}

.our-price {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.savings {
    font-size: 0.9rem;
    color: #10B981;
    font-weight: 600;
}

/* Product Features */
.product-features {
    margin-bottom: 2rem;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.product-features li i {
    color: #10B981;
    font-size: 0.8rem;
    width: 16px;
    flex-shrink: 0;
}

/* Order Button */
.order-btn {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.order-btn::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.8s ease;
}

.order-btn:hover::before {
    left: 100%;
}

.order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

/* Pricing FAQ */
.pricing-faq {
    padding: 80px 0;
    background: var(--bg-darker);
}

.pricing-faq .faq-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-faq .faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary-purple);
}

.faq-item h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item h3 i {
    color: var(--primary-purple);
    font-size: 1rem;
}

.faq-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Special Animations */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.badge.popular {
    animation: pulse 2s ease-in-out infinite;
}

.badge.best-value {
    animation: pulse 2s ease-in-out infinite 0.5s;
}

/* Responsive Design for Pricing */
@media (max-width: 768px) {
    .pricing-title {
        font-size: 2.5rem;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
    }
    
    .pricing-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-header {
        flex-direction: column;
        text-align: center;
    }
    
    .price-comparison {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .pricing-title {
        font-size: 2rem;
    }
    
    .product-card {
        padding: 1rem;
    }
    
    .our-price {
        font-size: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Order Modal Styles - Enhanced Responsive Design */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    animation: fadeIn 0.3s ease-out;
    overflow-y: auto;
    overflow-x: hidden;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 100vh;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
        filter: blur(10px);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-10px) scale(0.98);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.modal-content {
    background: linear-gradient(135deg, rgba(17, 24, 39, 0.95), rgba(31, 41, 55, 0.95));
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 28px;
    width: min(85vw, 480px);
    min-height: min(70vh, 500px);
    max-height: min(85vh, 700px);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(25px);
    box-shadow: 
        0 25px 50px rgba(139, 92, 246, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: slideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    margin: auto;
    transform-origin: center;
    display: flex;
    flex-direction: column;
    aspect-ratio: 4/5;
}

.modal-header {
    padding: clamp(1.5rem, 4vw, 2rem) clamp(1.5rem, 4vw, 2rem) clamp(1rem, 3vw, 1.2rem);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.05));
    border-radius: 28px 28px 0 0;
    flex-shrink: 0;
}

.modal-header h2 {
    color: #ffffff;
    margin: 0 0 clamp(0.8rem, 2vw, 1.2rem) 0;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: clamp(12px, 3vw, 20px);
    right: clamp(12px, 3vw, 20px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: clamp(18px, 4vw, 24px);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: clamp(36px, 8vw, 44px);
    height: clamp(36px, 8vw, 44px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.close-modal:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #ffffff;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.close-modal:active {
    transform: scale(0.95) rotate(90deg);
}

.modal-body {
    padding: clamp(1rem, 3vw, 1.5rem) clamp(1.5rem, 4vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: clamp(0.8rem, 2.5vw, 1.2rem);
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.5) rgba(255, 255, 255, 0.1);
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.7), rgba(59, 130, 246, 0.7));
    border-radius: 3px;
    transition: all 0.3s ease;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.9), rgba(59, 130, 246, 0.9));
}

.modal-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
}

#productName {
    color: var(--primary-purple);
    font-weight: 600;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--gradient-card);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-option:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.option-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.discord-option .option-icon {
    background: linear-gradient(135deg, #5865F2, #4752C4);
}

.telegram-option .option-icon {
    background: linear-gradient(135deg, #0088cc, #006da8);
}

.email-option .option-icon {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
}

.option-content {
    flex: 1;
}

.option-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.option-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.response-time {
    font-size: 0.8rem;
    color: var(--primary-purple);
    font-weight: 500;
    background: rgba(139, 92, 246, 0.1);
    padding: 2px 8px;
    border-radius: 12px;
}

.option-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    justify-content: center;
}

.btn-discord {
    background: linear-gradient(135deg, #5865F2, #4752C4);
    color: white;
}

.btn-discord:hover {
    background: linear-gradient(135deg, #4752C4, #3C47B3);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(88, 101, 242, 0.4);
}

.btn-telegram {
    background: linear-gradient(135deg, #0088cc, #006da8);
    color: white;
}

.btn-telegram:hover {
    background: linear-gradient(135deg, #006da8, #005c91);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.4);
}

.btn-email {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
}

.btn-email:hover {
    background: linear-gradient(135deg, #A855F7, #9333EA);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.modal-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.modal-footer p {
    font-size: 0.9rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.modal-footer i {
    color: #10B981;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal.show {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
        min-height: auto;
    }
    
    .modal-content {
        width: min(calc(100vw - 20px), 420px);
        min-height: min(65vh, 450px);
        max-height: calc(100vh - 40px);
        border-radius: 24px;
        margin-top: 0;
        margin-bottom: 0;
        aspect-ratio: 3.5/4.5;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
        border-radius: 24px 24px 0 0;
    }
    
    .modal-header h2 {
        font-size: clamp(1.3rem, 5vw, 1.6rem);
        margin-bottom: 0.8rem;
    }
    
    .modal-body {
        padding: 1rem 1.5rem;
        gap: 1rem;
    }
    
    .contact-option {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }
    
    .option-content {
        order: 1;
    }
    
    .option-btn {
        order: 2;
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .modal-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-subtitle {
        font-size: 1rem;
    }
    
    .option-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .contact-option {
        padding: 1rem;
    }
    
    /* Ultra-mobile optimization */
    .modal.show {
        padding: 8px;
        padding-top: 15px;
        align-items: flex-start;
        min-height: auto;
    }
    
    .modal-content {
        width: min(calc(100vw - 16px), 360px);
        min-height: min(60vh, 400px);
        max-height: calc(100vh - 30px);
        border-radius: 20px;
        margin: 0 auto;
        aspect-ratio: 3/4;
    }
    
    .modal-header {
        padding: 1.2rem 1rem 0.8rem;
        border-radius: 20px 20px 0 0;
    }
    
    .modal-header h2 {
        font-size: clamp(1.2rem, 6vw, 1.4rem);
        margin-bottom: 0.6rem;
        line-height: 1.1;
    }
    
    .modal-body {
        padding: 0.8rem 1rem;
        gap: 0.8rem;
    }
    
    .modal-footer {
        padding: 0.8rem 1rem 1.2rem;
    }
    
    .close-modal {
        top: 8px;
        right: 8px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .modal-subtitle {
        font-size: clamp(0.8rem, 4vw, 0.9rem);
        line-height: 1.3;
    }
} 
