/* ================= pricing.css ================= */
:root {
    --purple-primary: #7c3aed;
    --purple-glow: rgba(124, 58, 237, 0.3);
    --gold-accent: #f59e0b;
}

/* Floating symbols animation in Hero */
@keyframes float-symbol-anim {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
    50% { transform: translateY(-25px) rotate(8deg); opacity: 0.35; }
}

.floating-symbol {
    position: absolute;
    pointer-events: none;
    animation: float-symbol-anim 8s ease-in-out infinite;
    color: rgba(124, 58, 237, 0.2);
    font-weight: bold;
    filter: blur(1px);
}

/* Pricing Hero gradient bg */
.gradient-bg {
    background: radial-gradient(circle at center, #1E1B4B 0%, #050505 100%);
}

.glass-toggle {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hand-drawn-badge {
    transform: rotate(5deg);
    box-shadow: 0 0 15px rgba(234, 179, 8, 0.3);
}

/* Pricing Section Background Glows */
.bg-radial-glow {
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.12) 0%, rgba(10, 10, 11, 1) 70%);
}

.agency-glow {
    box-shadow: 0 0 45px -10px rgba(124, 58, 237, 0.35);
}

/* Glassmorphism Pricing Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform-style: preserve-3d;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(124, 58, 237, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15), 0 15px 30px rgba(0, 0, 0, 0.5);
}

.glass-icon {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes breathing {
    0%, 100% { transform: scale(1) translateX(-50%); opacity: 1; }
    50% { transform: scale(1.05) translateX(-50%); opacity: 0.85; }
}

.animate-breathing {
    animation: breathing 3s ease-in-out infinite;
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.25; }
    50% { opacity: 0.45; }
}

.animate-pulse-slow {
    animation: pulse-slow 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ================= FAQ Bento Grid Styles ================= */
.tech-grid {
    background-size: 40px 40px;
    background-image: 
        linear-gradient(to right, rgba(168, 85, 247, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(168, 85, 247, 0.04) 1px, transparent 1px);
}

.mesh-gradient {
    background: radial-gradient(circle at 20% 30%, rgba(59, 7, 100, 0.6) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
}

.bento-card {
    background: rgba(10, 5, 25, 0.5);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(168, 85, 247, 0.15);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.bento-card:hover {
    border-color: rgba(168, 85, 247, 0.5);
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.2);
    transform: translateY(-5px);
}

.bento-card[open] {
    border-color: rgba(168, 85, 247, 0.7);
    box-shadow: 0 0 45px rgba(168, 85, 247, 0.25);
}

summary::-webkit-details-marker {
    display: none;
}

.cyber-reveal {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    opacity: 0;
}

details[open] .cyber-reveal {
    max-height: 500px;
    opacity: 1;
}

.white-label-featured {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(59, 7, 100, 0.3) 0%, rgba(10, 5, 25, 0.7) 100%);
    border: 1px solid rgba(168, 85, 247, 0.4);
}

@media (max-width: 1024px) {
    .white-label-featured {
        grid-column: 1/-1;
        grid-row: 1/-1;
    }


}

/* Glow highlights */
.glow-text {
    text-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}
