body { font-family: 'Plus Jakarta Sans', sans-serif; }

.site-logo-wrapper,
.sidebar-logo-wrapper {
    width: 8rem;
    height: 5rem;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.18);
}
.site-logo-img,
.sidebar-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.plan-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.plan-card.selected {
    border: 2px solid #2563eb !important;
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
    transform: translateY(-8px);
}

.hero-mesh {
    background-color: #2563eb;
    background-image: 
        radial-gradient(at 0% 0%, hsla(223,86%,56%,1) 0, transparent 50%), 
        radial-gradient(at 50% 0%, hsla(223,86%,40%,1) 0, transparent 50%), 
        radial-gradient(at 100% 0%, hsla(242,100%,70%,1) 0, transparent 50%);
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.premium-table tr:hover {
    background-color: #f8faff;
}

.benefit-card {
    transition: all 0.3s ease;
}
.benefit-card:hover {
    border-color: #bfdbfe;
    background: #ffffff;
    transform: scale(1.02);
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}
.float-animation { animation: float 5s ease-in-out infinite; }

/* FAQ Styles */
.faq-item {
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: #bfdbfe;
}
.faq-item.open {
    border-color: #3b82f6;
    box-shadow: 0 4px 24px rgba(59, 130, 246, 0.1);
}
.faq-toggle {
    cursor: pointer;
    background: none;
    border: none;
}
.faq-answer {
    transition: max-height 0.35s ease, padding-bottom 0.35s ease;
}

/* Section fade-in on scroll */
#comparison-section,
#safety-section,
#faq-section {
    animation: fadeInUp 0.6s ease-out both;
}
#safety-section { animation-delay: 0.1s; }
#faq-section { animation-delay: 0.2s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
