
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #ffffff;
    overflow-x: hidden;
}

/* Particle Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.content-wrapper {
    position: relative;
    z-index: 1;
}

/* Navigation */


.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.logo:hover {
    color: #9eccfa;
}
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: #9eccfa;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 8rem 5% 4rem;
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: #0b1957;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.2rem;
    color: #0b1957;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.toggle-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.toggle-btn {
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #e6d8c7;
    color: #0b1957;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
}

.toggle-btn.active {
    background: #9eccfa;
    border-color: transparent;
}

.save-badge {
    background: rgba(102, 126, 234, 0.2);
    color: #0b1957;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

/* Pricing Cards */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 5% 5%;
    background-color:#0b1957
}

.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
#pricing-card {
    /* Base Color: Deep Navy/Near-Black for high contrast and luxury */
    background: #0d1217; 
    
    /* Subtle Radial Gradient for Depth */
    background: radial-gradient(circle at top left, rgba(11, 25, 87, 0.2) 0%, #0d1217 60%);
    
    /* Remove original border for the glow effect */
    border: none;
    
    /* Box Shadow: Gold Glow and Deep Lift */
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.2), /* Soft gold exterior glow (cohesive with button) */
        0 10px 30px rgba(0, 0, 0, 0.7); /* Deep shadow for a floating effect */
    
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.5s ease-in-out; /* Slower, more dramatic transition */
    position: relative;
    overflow: hidden;
    
    /* Inner Accent Border/Glow for the Target Color (#0b1957) */

    outline-offset: -10px; /* Pull the outline inward */
}

/* Hover effect to highlight the premium status */
#pricing-card:hover {
    transform: translateY(-8px); /* More noticeable lift on hover */
    box-shadow: 
        0 0 25px rgba(255, 215, 0, 0.4), /* Brighter gold glow on hover */
        0 15px 45px rgba(0, 0, 0, 0.9);

}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(102, 126, 234, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.pricing-card:hover::before {
    opacity: 1;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.icon-basic {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.icon-super {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.icon-team {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-period {
    color: #888;
    font-size: 1rem;
}

.features {
    list-style: none;
    margin: 2rem 0;
}

.features li {
    padding: 0.8rem 0;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.features li::before {
    content: '✓';
    color: #667eea;
    font-weight: bold;
}

.cta-btn {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.btn-basic {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-basic:hover {
    background: rgba(255, 255, 255, 0.15);
}

.btn-super {
    background: #9eccfa;
    color: #000;
}

.btn-super:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(67, 233, 123, 0.4);
}

.btn-team {
    /* Base Color: Black/Deep Navy for contrast */
    background: #0d1217; 
    
    /* Premium Border/Glow: Gradient simulating gold/bronze/luxurious metal */
    border: none;
    
    /* Main Gradient for Metallic/Premium Look */
    background: linear-gradient(135deg, #1f2730 0%, #0d1217 100%);
    color: #f0e6d2; /* Off-white/cream for contrast */
    
    /* Outer Golden Border/Aura */
    box-shadow: 
        0 0 10px rgba(165, 125, 2, 0.5), /* Soft inner gold glow */
        0 4px 15px rgba(0, 0, 0, 0.4);   /* Deep shadow for lift */
    
    /* Standard properties */
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.btn-team:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
}

/* Comparison Table */
.comparison-section {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 5%;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: #0b1957;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.comparison-section > p {
    text-align: center;
    color: #0b1957;
    margin-bottom: 2%;
}

.comparison-table {
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    align-items: center;
}

.table-row:last-child {
    border-bottom: none;
}

.table-header {
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
}

.feature-name {
    color: #0b1957;
}

.category-header {
    background: rgba(102, 126, 234, 0.5);
    font-weight: 700;
    color: #0b1957;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.check-mark {
    color: #0b1957;
    text-align: center;
}

.feature-value {
    text-align: center;
    color: #0b1957;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    max-width: 100%;
    margin: 0px;
    padding: 5% 5%;
    background-color: #0b1957;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-icon {
    color: #667eea;
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
    color: #aaa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 6rem 5%;
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: #0b1957;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-section p {
    color: #0b1957;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-main-btn {
    background: #0b1957;
    color: #fff;
    padding: 1rem 3rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-main-btn:hover {
    transform: scale(1.05);
    background: #9eccfa;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
}

.preview-image {
    margin-top: 3rem;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
footer {
    background: #0b1957;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-section h3 {
    color: #667eea;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-3px);
}

@media (max-width: 1071px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px; /* Adjust based on nav height */
        left: 0;
        width: 100%;
        background: rgba(10, 10, 10, 0.98);
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        text-align: center;
        padding: 0.5rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .pricing-container {
        grid-template-columns: 1fr;
    }

    .table-row {
        grid-template-columns: 2fr 1fr;
        gap: 1rem;
    }

    /* Hide Super and Super Team columns on small screens for comparison table */
    .table-row > div:nth-child(3),
    .table-row > div:nth-child(4) {
        display: none;
    }
    .table-header {
        grid-template-columns: 2fr 1fr;
    }
}