.navbar{
    background: rgba(255,255,255,.85) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226,232,240,.8);
    transition: all .3s ease;
}

.navbar-brand{
    font-weight:800;
    font-size:1.5rem;
    color:var(--dark) !important;
}

.nav-link{
    color:var(--text) !important;
    font-weight:500;
    position:relative;
}

.nav-link::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-5px;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.3s;
}

.nav-link:hover::after{
    width:100%;
}

.feature-card {

    background: white;

    padding: 35px;

    border-radius: 20px;

    height: 100%;

    box-shadow: 0 10px 30px rgba(0,0,0,.06);

    transition: all .3s ease;
}

.feature-card:hover {

    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0,0,0,.1);
}

.feature-icon {

    font-size: 40px;

    color: var(--primary);

    margin-bottom: 20px;

    display: block;
}

/* ==================================
   PREMIUM PRICING
================================== */

.pricing-section{
    padding:120px 0;
    background:#f8fafc;
    position:relative;
}

.section-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:rgba(79,70,229,.08);
    color:#4f46e5;
    font-weight:600;
    margin-bottom:20px;
}

.pricing-title{
    font-size:3rem;
    font-weight:800;
    margin-bottom:15px;
}

.pricing-subtitle{
    color:#64748b;
    font-size:1.1rem;
}

.pricing-card-modern{

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.6);

    border-radius:28px;

    padding:40px;

    transition:.4s;

    box-shadow:
        0 20px 50px rgba(15,23,42,.08);

    height:100%;
}

.pricing-card-modern:hover{

    transform:
        translateY(-12px);

    box-shadow:
        0 40px 80px rgba(79,70,229,.15);
}

.price{

    font-size:4rem;

    font-weight:800;

    color:#0f172a;

    margin-top:20px;
}

.price-text{

    color:#64748b;

    display:block;

    margin-bottom:30px;
}

.pricing-feature{

    margin-bottom:14px;

    font-size:15px;
}

.pricing-feature i{

    color:#4f46e5;

    margin-right:10px;
}

.popular{

    border:2px solid #4f46e5;

    transform:scale(1.05);

    box-shadow:
        0 20px 60px rgba(79,70,229,.25);
}

.popular-tag{

    position:absolute;

    top:-14px;

    left:50%;

    transform:translateX(-50%);

    background:linear-gradient(
        135deg,
        #4f46e5,
        #7c3aed
    );

    color:white;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;
}


.popular-badge{
    position:absolute;
    top:-12px;
    right:20px;
    background:var(--primary);
    color:#fff;
    padding:5px 12px;
    border-radius:20px;
    font-size:12px;
}

.cta-box{
    background:linear-gradient(
        135deg,
        var(--primary),
        #6366f1
    );
    color:#fff;
    padding:80px 40px;
    border-radius:24px;
    text-align:center;
}

/* ==========================
   PREMIUM FOOTER
========================== */
.footer-modern{
    position:relative;
    background:#0B1120;
    color:#fff;
    overflow:hidden;
    padding-top:100px;
}

.footer-modern::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(99,102,241,.15);
    filter:blur(120px);
    top:-200px;
    left:-200px;
}

.footer-modern::after{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(6,182,212,.15);
    filter:blur(120px);
    bottom:-250px;
    right:-250px;
}

.footer-brand{
    max-width:350px;
}

.footer-title{
    font-weight:700;
    margin-bottom:20px;
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:12px;
}

.footer-links a{
    color:#CBD5E1;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#fff;
    padding-left:5px;
}

.footer-divider{
    border-color:rgba(255,255,255,.1);
}

.footer-social{
    display:flex;
    gap:15px;
}

.footer-social a{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    color:#fff;
    text-decoration:none;
}

.footer-cta{
    margin-top:100px;
}

.footer-cta-box{
    background:linear-gradient(
        135deg,
        #4F46E5,
        #6366F1
    );

    padding:80px;
    border-radius:32px;
    text-align:center;
    color:#fff;

    box-shadow:
        0 25px 80px rgba(
            79,
            70,
            229,
            .35
        );
}

.pricing-feature{
    display:flex;
    align-items:center;
    gap:12px;
    padding:10px 0;
    border-bottom:1px solid #f1f5f9;
}

.pricing-feature:last-child{
    border-bottom:none;
}

.pricing-feature i{
    color:#10b981;
    font-size:18px;
}

.pricing-price{
    font-size:56px;
    font-weight:800;
    color:#0f172a;
    margin:20px 0;
}

.pricing-price small{
    font-size:16px;
    color:#64748b;
    font-weight:500;
}


/* ==========================
   LOGIN BUTTON
========================== */

.btn-login{
    background:#fff;
    border:1px solid var(--border);
    color:var(--dark);
    padding:14px 28px;
    border-radius:14px;
    font-weight:600;
    transition:.3s;
}

.btn-login:hover{
    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(79,70,229,.25);
}

/* ==================================
   HERO CTA BUTTONS
================================== */

.hero-actions{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
    margin-top:30px;
}

.hero-btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 32px;

    background:linear-gradient(
        135deg,
        #4F46E5,
        #6366F1
    );

    color:#fff;
    text-decoration:none;

    border-radius:16px;
    font-weight:700;
    font-size:16px;

    transition:.3s;

    box-shadow:
        0 10px 30px rgba(79,70,229,.25);
}

.hero-btn-primary:hover{
    color:#fff;
    transform:translateY(-4px);

    box-shadow:
        0 20px 40px rgba(79,70,229,.35);
}

.hero-btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:16px 32px;

    background:#fff;
    color:#0f172a;
    text-decoration:none;

    border:1px solid #e2e8f0;
    border-radius:16px;

    font-weight:700;
    font-size:16px;

    transition:.3s;
}

.hero-btn-secondary:hover{
    color:#4F46E5;

    border-color:#4F46E5;

    transform:translateY(-4px);

    box-shadow:
        0 15px 30px rgba(0,0,0,.08);
}

@media(max-width:768px){

    .hero-actions{
        flex-direction:column;
    }

    .hero-btn-primary,
    .hero-btn-secondary{
        width:100%;
    }

}

/* ==================================
   NAVBAR ACTIVE LINK
================================== */

.navbar-nav .nav-link{
    position:relative;
    color:#475569;
    font-weight:600;
    transition:.3s;
    padding:8px 14px !important;
}

.navbar-nav .nav-link:hover{
    color:#4F46E5;
}

.navbar-nav .nav-link.active{
    color:#4F46E5 !important;
    font-weight:700;
}

.navbar-nav .nav-link.active::after{
    content:'';
    position:absolute;
    left:14px;
    right:14px;
    bottom:-8px;
    height:3px;
    border-radius:20px;

    background:linear-gradient(
        90deg,
        #4F46E5,
        #6366F1
    );
}

.navbar{
    backdrop-filter:blur(20px);
    background:rgba(255,255,255,.85)!important;
    box-shadow:0 1px 20px rgba(0,0,0,.04);
}

/* ==================================
   PREMIUM FAQ
================================== */

.faq-section{
    background:#f8fafc;
}

.faq-title{
    font-size:3rem;
    font-weight:800;
    color:#0f172a;
}

.faq-subtitle{
    color:#64748b;
}

.custom-faq .accordion-item{
    border:none;
    margin-bottom:20px;
    border-radius:24px !important;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.custom-faq .accordion-button{
    padding:28px;
    font-size:20px;
    font-weight:600;
    background:#fff;
    color:#0f172a;
    box-shadow:none;
}

.custom-faq .accordion-button:not(.collapsed){
    background:linear-gradient(
        135deg,
        #4F46E5,
        #6366F1
    );
    color:#fff;
}

.custom-faq .accordion-button:focus{
    box-shadow:none;
}

.custom-faq .accordion-body{
    padding:30px;
    color:#64748b;
    font-size:18px;
    line-height:1.8;
}

.custom-faq .accordion-button::after{
    background-size:18px;
}

.navbar-logo-icon{

    width:42px;
    height:42px;

    border-radius:12px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        #4F46E5,
        #7C3AED
    );

    color:#fff;
}

.navbar-brand{
    font-size:24px;
    font-weight:800 !important;
}