/* Solutions Premium Styles - Google/Premium Design */

/* Tabs Container */
.audience-tabs-premium {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.tab-btn i {
    font-size: 18px;
}

/* Premium Solution Card */
.solution-display-area {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1000px;
}

.solution-card {
    background: #14141a;
    /* Darker, sleek background */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 60px;
    display: flex;
    gap: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
    display: none;
    /* Hidden by default for JS tab switching */
}

.solution-card.active {
    display: flex;
    /* Short delay to allow display flex to apply before opacity transition */
    animation: fadeInCard 0.5s forwards;
}

@keyframes fadeInCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Left Content */
.card-content {
    flex: 1.2;
    z-index: 2;
}

.card-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    color: white;
}

.card-desc {
    font-size: 18px;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Feature List premium styling */
.feature-list-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(10px);
    border-color: rgba(99, 102, 241, 0.2);
}

.check-icon {
    width: 28px;
    height: 28px;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818cf8;
    font-size: 12px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 15px;
    color: #e5e7eb;
    font-weight: 500;
}

/* Premium CTA */
.btn-premium {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    border-radius: 16px;
    color: white;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.5);
}

/* Right Side - Price Orb */
.card-visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* The Orb */
.price-orb-container {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Orbital Rings */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.ring-outer {
    width: 100%;
    height: 100%;
    animation: spinSlow 30s linear infinite;
}

.ring-inner {
    width: 75%;
    height: 75%;
    border-style: solid;
    border-color: rgba(99, 102, 241, 0.1);
    animation: spinReverse 20s linear infinite;
}

.orb-center {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #2e2e3a 0%, #1a1a20 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    box-shadow:
        inset 0 0 40px rgba(0, 0, 0, 0.8),
        /* Inner shadow for depth */
        0 0 0 1px rgba(255, 255, 255, 0.05),
        /* Subtle border */
        0 20px 50px rgba(0, 0, 0, 0.5);
    /* Drop shadow */
}

/* Glowing text inside orb */
.orb-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9ca3af;
    margin-bottom: 8px;
}

.orb-price {
    font-size: 48px;
    font-weight: 800;
    color: white;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    line-height: 1;
}

.orb-badge {
    margin-top: 12px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 13px;
    color: #a5b4fc;
    border: 1px solid rgba(165, 180, 252, 0.2);
}

/* Floating particles around orb */
.orb-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #6366f1;
    border-radius: 50%;
    box-shadow: 0 0 10px #6366f1;
}

.p-1 {
    top: 10%;
    right: 20%;
    animation: pulse 3s infinite;
}

.p-2 {
    bottom: 20%;
    left: 10%;
    animation: pulse 4s infinite 1s;
}

/* Animations */
@keyframes spinSlow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes spinReverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

/* Responsive */
@media (max-width: 968px) {
    .solution-card {
        flex-direction: column;
        padding: 40px 24px;
        gap: 40px;
    }

    .card-content {
        text-align: center;
    }

    .feature-item {
        justify-content: flex-start;
        /* Keep icons aligned left even if text centered? or nice centered list */
        text-align: left;
    }

    .price-orb-container {
        width: 280px;
        height: 280px;
    }

    .orb-center {
        width: 180px;
        height: 180px;
    }

    .orb-price {
        font-size: 36px;
    }
}