/* Features */
.features-container {
    padding: 4rem 1rem 5rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.feature {
    margin-bottom: 3rem;
}
.feature-icon {
    font-size: 4rem;
    color: #4f88ff;
    margin-bottom: 1rem;
    user-select: none;
}
.feature h3 {
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.feature p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.4;
}

/* Testimonials */
.testimonials {
    padding: 4rem 1rem;
    max-width: 1100px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 1;
}
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #ffffff;
    user-select: none;
}
.testimonial-card {
    background-color: rgba(30, 33, 41, 0.85);
    border-radius: 1rem;
    padding: 2rem;
    margin: 1rem;
    box-shadow: 0 0 15px #4f88ff88;
    font-style: italic;
    color: #d0d6dd;
}

/* CTA Sections */
.cta-container-blue {
    padding: 6rem 1rem;
    background: transparent;
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #e4e6eb;
}
.cta-box-blue {
    background: rgba(30, 33, 41, 0.8);
    border-radius: 2rem;
    padding: 3rem 2rem;
    max-width: 650px;
    margin: 0 auto;
    box-shadow: 0 0 25px #4f88ff80;
    border: 1px solid rgba(79, 136, 255, 0.2);
}
.cta-title-blue {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 0 10px rgba(79, 136, 255, 0.4);
}
.cta-subtitle-blue {
    font-size: 1.2rem;
    color: #cdd4ea;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Footer */
.footer-container {
    padding: 3rem 1rem;
    background: rgba(18, 20, 23, 0.65);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(79, 136, 255, 0.15);
    box-shadow: 0 -8px 30px rgba(79, 136, 255, 0.15);
    font-size: 0.95rem;
    color: #cbd5e1;
    text-align: center;
    border-radius: 20px 20px 0 0;
    user-select: none;
}
.social-icons {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.social-icons a {
    color: #4f88ff;
    font-size: 1.8rem;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}
.social-icons a:hover {
    color: #ffffff;
    transform: scale(1.2);
    text-shadow: 0 0 10px #4f88ff;
}

/* Pricing */
.pricing-section {
    padding: 6rem 1rem;
    text-align: center;
    position: relative;
    z-index: 1;
    color: #e4e6eb;
}
.pricing-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px rgba(79, 136, 255, 0.5);
}
.pricing-card {
    background: rgba(30, 33, 41, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    width: 300px;
    box-shadow: 0 0 20px rgba(79, 136, 255, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(79, 136, 255, 0.5);
}
.plan-name {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
}
.plan-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #4f88ff;
    margin-bottom: 1.5rem;
}
.popular {
    background: rgba(79, 136, 255, 0.1);
    border: 1px solid rgba(79, 136, 255, 0.3);
    box-shadow: 0 0 30px #4f88ff55;
    animation: none;
}
.popular:hover {
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}
