/* DEALS PAGE STYLES - PREMIUM DARK THEME */
.nextai-deals-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 20px;
    background: #080808;
    color: #e2e8f0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    border-radius: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Header */
.deals-header {
    text-align: center;
    margin-bottom: 80px;
}

/* Logo Box */
.deals-logo-box {
    display: inline-block;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 50px;
    border-radius: 30px;
    margin-bottom: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.deals-site-logo {
    max-width: 180px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 15px rgba(168, 85, 247, 0.4));
    /* Subtle purple glow */
}

.deals-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: -2px;
}

.deals-subtitle {
    font-size: 22px;
    line-height: 1.5;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #94a3b8;
}

.deals-scroll-link {
    color: #0066FF;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.deals-scroll-link:hover {
    transform: translateY(5px);
}

/* Tabs Switcher */
.deals-tabs-section {
    text-align: center;
    margin-bottom: 60px;
}

.deals-tabs-container {
    display: inline-flex;
    background: rgba(255, 255, 255, 0.03);
    padding: 8px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.deal-tab-btn {
    padding: 16px 35px;
    border-radius: 100px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 700;
    font-size: 16px;
    color: #94a3b8;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.deal-tab-btn.active {
    background: #0066FF;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.4);
}

/* Deal Content Area */
.deal-content-item {
    display: none;
    animation: premiumFadeIn 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.deal-content-item.active {
    display: block;
}

@keyframes premiumFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.deal-promo-header {
    text-align: center;
    margin-bottom: 60px;
}

.deal-price-promo {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.deal-price-promo .current-price {
    color: #0066FF;
    font-weight: 800;
}

.deal-price-promo .old-price {
    text-decoration: line-through;
    opacity: 0.5;
}

.deal-bundle-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.deal-bundle-sub {
    color: #0066FF;
    font-size: 18px;
    font-weight: 600;
}

/* Panels Grid */
.deal-panels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.deal-panel-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.deal-panel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(0, 102, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.deal-panel-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.deal-panel-card:hover::before {
    opacity: 1;
}

.panel-logo {
 width: 250px;
    height: 250px;
    margin: 0 auto 20px auto;
    border-radius: 25px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.0);
    background-color: #000;
}

.panel-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.panel-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #ffffff;
}

.panel-pricing {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.panel-pricing .p-old {
    text-decoration: line-through;
    opacity: 0.4;
    margin-left: 5px;
}

.panel-savings {
    color: #0066FF;
    font-weight: 700;
    font-size: 16px;
    background: rgba(0, 102, 255, 0.1);
    padding: 6px 15px;
    border-radius: 100px;
    display: inline-block;
}

/* CTA */
.deal-cta-box {
    text-align: center;
    margin-top: 60px;
}

.deal-cta-btn {
    display: inline-block;
    background: #0066FF;
    color: #fff;
    padding: 22px 60px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 102, 255, 0.3);
}

.deal-cta-btn:hover {
    background: #0055cc;
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(0, 102, 255, 0.5);
}

/* Bottom Promo Banner */
.deals-bottom-promo {
    margin-top: 120px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 102, 255, 0.02));
    border-radius: 40px;
    padding: 80px;
    border: 1px solid rgba(0, 102, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.promo-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.promo-text h3 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.1;
    color: #ffffff;
}

.promo-text p {
    font-size: 20px;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 600px;
}

.promo-visual {
    flex-shrink: 0;
}

.handshake-icon {
    position: relative;
    width: 280px;
    height: 160px;
}

.handshake-icon svg {
    width: 100%;
    height: 100%;
    stroke: #0066FF;
    filter: drop-shadow(0 0 15px rgba(0, 102, 255, 0.3));
}

.deal-badge {
    position: absolute;
    top: -15px;
    right: 40px;
    background: #0066FF;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.5);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(0, 102, 255, 0.5);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 15px 35px rgba(0, 102, 255, 0.7);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 10px 25px rgba(0, 102, 255, 0.5);
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 1024px) {
    .deals-title {
        font-size: 52px;
    }

    .deal-panels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .deals-title {
        font-size: 38px;
    }

    .deal-panels-grid {
        grid-template-columns: 1fr;
    }

    .promo-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .deals-bottom-promo {
        padding: 40px 20px;
    }

    .promo-text h3 {
        font-size: 32px;
    }

    .deal-bundle-title {
        font-size: 36px;
    }
}