/* ===========================================================
   COMPONENTS CSS
   PART 1 - NAVBAR
=========================================================== */

/* ===========================
   NAVBAR
=========================== */

.navbar{
    position:fixed;
    top:14px;
    left:0;
    width:100%;
    z-index:1000;
    transition:.35s ease;
}

.navbar.scrolled{
    top:8px;
}

.nav-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width: min(90%, 1100px) !important;
    margin: 0 auto;

    background:rgba(255,255,255,.88);

    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.9);

    border-radius:999px;

    padding:6px 20px;
    min-height:52px;

    box-shadow:
        0 12px 30px rgba(108,99,255,.08);
}

/* ===========================
   LOGO
=========================== */

.logo{
    display:flex;
    align-items:center;
    flex-shrink:0;
}

.logo img{
    height:56px;
    max-height:60px;
    width:auto;
    display:block;
    object-fit:contain;
    transition: transform 0.3s ease;
}

/* ===========================
   NAVIGATION
=========================== */

.nav-links{
    display:flex;
    align-items:center;
    gap:38px;
}

.nav-links a{
    position:relative;

    font-size:15px;

    font-weight:600;

    color:var(--text);

    transition:.3s;
}

.nav-links a:hover{
    color:var(--primary);
}

.nav-links a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    border-radius:20px;

    background:var(--primary);

    transition:.3s;
}

.nav-links a:hover::after{

    width:100%;

}

/* ===========================
   RIGHT SIDE BUTTONS
=========================== */

.nav-buttons{

    display:flex;

    align-items:center;

    gap:14px;

}

.nav-buttons .btn-outline{

    padding:13px 22px;

    font-size:14px;

}

.nav-buttons .btn-gradient{

    padding:13px 24px;

    font-size:14px;

}

/* ===========================
   MOBILE MENU BUTTON
=========================== */

.menu-btn{

    display:none;

    width:48px;

    height:48px;

    border-radius:14px;

    align-items:center;

    justify-content:center;

    background:#fff;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

}

.menu-btn i{

    font-size:24px;

    color:var(--text);

}

/* ===========================
   NAVBAR HOVER
=========================== */

.nav-wrapper:hover{

    box-shadow:

        0 18px 45px rgba(15,23,42,.10);

}

/* ===========================
   BUTTON ANIMATION
=========================== */

.nav-buttons .btn-gradient:hover{

    transform:translateY(-3px);

}

.nav-buttons .btn-outline:hover{

    transform:translateY(-3px);

}

/* ===========================
   ACTIVE LINK
=========================== */

.nav-links a.active{

    color:var(--primary);

}

.nav-links a.active::after{

    width:100%;

}

/* ===========================
   NAV SPACING FIX
=========================== */

body{

    padding-top:110px;

}

/* ===========================================================
   COMPONENTS CSS
   PART 2A - HERO
=========================================================== */

/* ===========================
   HERO SECTION
=========================== */

.hero{
    position:relative;
    padding:70px 0 120px;
    overflow:hidden;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:70px;
}

/* ===========================
   HERO LEFT
=========================== */

.hero-left{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.hero-left h1{
    margin:28px 0 22px;
    max-width:650px;
}

.hero-left h1 span{
    color:var(--primary);
}

.hero-left p{
    max-width:600px;
    font-size:1.1rem;
    color:var(--text-light);
    margin-bottom:36px;
}

/* ===========================
   HERO BADGE
=========================== */

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:12px 20px;

    background:#fff;

    border:1px solid rgba(108,99,255,.15);

    border-radius:999px;

    font-size:15px;

    font-weight:700;

    color:var(--primary);

    box-shadow:var(--shadow-sm);
}

/* ===========================
   HERO BUTTONS
=========================== */

.hero-buttons{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.hero-buttons .btn-gradient,
.hero-buttons .btn-white{
    min-width:180px;
}

/* ===========================
   HERO STATS
=========================== */

.hero-stats{

    margin-top:55px;

    display:flex;

    align-items:center;

    gap:55px;

}

.hero-stats div{

    position:relative;

}

.hero-stats div:not(:last-child)::after{

    content:"";

    position:absolute;

    right:-28px;

    top:8px;

    width:1px;

    height:45px;

    background:var(--border);

}

.hero-stats h3{

    font-size:2rem;

    color:var(--primary);

    margin-bottom:4px;

}

.hero-stats span{

    color:var(--text-muted);

    font-size:15px;

}

/* ===========================
   HERO RIGHT
=========================== */

.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

    position:relative;

}

/* Decorative Glow */

.hero-right::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(108,99,255,.10);

    filter:blur(80px);

    z-index:-1;

}

/* ===========================
   HERO ENTRY ANIMATION
=========================== */

.hero-left{

    animation:fadeUp .8s ease forwards;

}

.hero-right{

    animation:fade .9s ease forwards;

}

/* ===========================
   BUTTON HOVER
=========================== */

.hero-buttons a:hover{

    transform:translateY(-4px);

}

/* ===========================
   HERO RESPONSIVE HELPERS
=========================== */

.hero-left,
.hero-right{
    min-width:0;
}


/* ===========================================================
   COMPONENTS CSS
   PART 2B - HERO DASHBOARD
=========================================================== */


/* ===========================
   DASHBOARD
=========================== */

.dashboard{

    width:100%;
    max-width:500px;

    background:#fff;

    border-radius:30px;

    border:1px solid var(--border);

    padding:28px;

    box-shadow:0 25px 70px rgba(15,23,42,.12);

    position:relative;

    overflow:hidden;

    animation:floating 6s ease-in-out infinite;

}


/* Gradient Border */

.dashboard::before{

    content:"";

    position:absolute;

    inset:0;

    padding:1px;

    border-radius:inherit;

    background:linear-gradient(
        135deg,
        rgba(108,99,255,.35),
        rgba(6,182,212,.25)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

            mask-composite:exclude;

    pointer-events:none;

}


/* ===========================
   TOP BAR
=========================== */

.dashboard-top{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:24px;

}

.dashboard-top span{

    font-weight:700;

    color:var(--text);

    font-size:15px;

}


/* ===========================
   LIVE STATUS
=========================== */

.live{

    display:flex;

    align-items:center;

    gap:8px;

    padding:8px 14px;

    background:rgba(34,197,94,.10);

    color:var(--success);

    border-radius:999px;

    font-size:13px;

    font-weight:700;

}


/* ===========================
   ATS CARD
=========================== */

.ats-card{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    border-radius:24px;

    padding:30px;

    margin-bottom:26px;

    box-shadow:
        0 20px 40px rgba(108,99,255,.30);

}

.ats-card h4{

    color:rgba(255,255,255,.85);

    font-size:15px;

    margin-bottom:10px;

}

.ats-card h1{

    font-size:4rem;

    line-height:1;

    margin-bottom:12px;

    letter-spacing:-2px;

}

.ats-card p{

    color:rgba(255,255,255,.92);

    font-size:15px;

}


/* ===========================
   GRID
=========================== */

.dashboard-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}


/* ===========================
   SMALL CARD
=========================== */

.small-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:20px;

    padding:22px 18px;

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:16px;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.small-card:hover{

    transform:translateY(-6px);

    box-shadow:var(--shadow);

    border-color:rgba(108,99,255,.25);

}

.small-card i{

    width:52px;

    height:52px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:16px;

    background:rgba(108,99,255,.10);

    color:var(--primary);

    font-size:24px;

}

.small-card h5{

    font-size:15px;

    font-weight:700;

    color:var(--text);

}


/* ===========================
   DECORATIVE DOT
=========================== */

.dashboard::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    right:-70px;

    top:-70px;

    border-radius:50%;

    background:rgba(108,99,255,.05);

}


/* ===========================
   CARD HOVER EFFECT
=========================== */

.dashboard:hover{

    transform:translateY(-6px);

    box-shadow:
        0 35px 80px rgba(15,23,42,.16);

}


/* ===========================================================
   COMPONENTS CSS
   PART 3A
   FEATURES + TEMPLATES
=========================================================== */


/* ===========================
   FEATURES
=========================== */

.features{
    position:relative;
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
}

.feature-card{

    position:relative;

    background:#fff;

    border:1px solid var(--border);

    border-radius:28px;

    padding:34px;

    overflow:hidden;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

    border-color:rgba(108,99,255,.22);

}

.feature-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.4s;

}

.feature-card:hover::before{

    transform:scaleX(1);

}


/* ===========================
   FEATURE ICON
=========================== */

.feature-icon{

    width:72px;

    height:72px;

    border-radius:22px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:28px;

}

.feature-icon i{

    font-size:32px;

}

.feature-icon.blue{

    background:rgba(6,182,212,.12);

    color:#06B6D4;

}

.feature-icon.purple{

    background:rgba(108,99,255,.12);

    color:var(--primary);

}

.feature-icon.green{

    background:rgba(34,197,94,.12);

    color:var(--success);

}


/* ===========================
   FEATURE CONTENT
=========================== */

.feature-card h3{

    margin-bottom:18px;

}

.feature-card p{

    margin-bottom:22px;

    min-height:90px;

}

.feature-card ul{

    display:flex;

    flex-direction:column;

    gap:14px;

    margin-bottom:28px;

}

.feature-card li{

    color:var(--text-light);

    font-size:15px;

    font-weight:500;

}

.feature-card a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    font-weight:700;

    color:var(--primary);

    transition:.3s;

}

.feature-card a:hover{

    gap:18px;

}


/* ===========================
   TEMPLATES
=========================== */

.templates{

    position:relative;

}

.template-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

}


/* ===========================
   TEMPLATE CARD
=========================== */

.template-card{

    position:relative;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    border:1px solid var(--border);

    box-shadow:var(--shadow-sm);

    transition:.35s;

}

.template-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}


/* Featured */

.template-card.featured{

    border:2px solid var(--primary);

}


/* Badge */

.popular{

    position:absolute;

    top:18px;

    right:18px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    padding:8px 16px;

    border-radius:999px;

    font-size:13px;

    font-weight:700;

    z-index:5;

}


/* Preview */

.template-preview{
    width:100%;
    aspect-ratio:210/297;   /* A4 Ratio */
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    border:1px solid rgba(0,0,0,.08);
}

.template-preview img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:.4s;
}

.template-card:hover .template-preview img{
    transform:scale(1.03);
}


/* Content */

.template-card h3{

    margin:28px 28px 16px;

}

.template-card p{

    margin:0 28px 28px;

}

.template-card .btn-gradient{

    margin:0 28px 30px;

}


/* Hover Image Effect */

.template-preview{

    transition:.4s;

}

.template-card:hover .template-preview{

    transform:scale(1.03);

}


/* Decorative Glow */

.template-card::after{

    content:"";

    position:absolute;

    width:180px;

    height:180px;

    right:-90px;

    top:-90px;

    border-radius:50%;

    background:rgba(108,99,255,.05);

}


/* Animation */

.feature-card,
.template-card{

    animation:fadeUp .8s ease both;

}

/* ===========================================================
   COMPONENTS CSS
   PART 3B
   DASHBOARD SHOWCASE
=========================================================== */


/* ===========================
   DASHBOARD SHOWCASE
=========================== */

.dashboard-showcase{
    position:relative;
}

.dashboard-preview{

    display:grid;

    grid-template-columns:280px 1fr;

    background:#fff;

    border-radius:32px;

    overflow:hidden;

    border:1px solid var(--border);

    box-shadow:var(--shadow-lg);

    min-height:650px;

}


/* ===========================
   SIDEBAR
=========================== */

.sidebar{

    background:#F8FAFC;

    padding:35px 28px;

    border-right:1px solid var(--border);

    display:flex;

    flex-direction:column;

}

.sidebar-logo{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:45px;

    font-size:20px;

    font-weight:800;

    color:var(--primary);

}

.sidebar-logo i{

    font-size:26px;

}

.sidebar ul{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.sidebar li{

    display:flex;

    align-items:center;

    gap:14px;

    padding:15px 18px;

    border-radius:16px;

    cursor:pointer;

    color:var(--text-light);

    font-weight:600;

    transition:.35s ease;

}

.sidebar li i{

    font-size:22px;

}

.sidebar li:hover{

    background:#fff;

    color:var(--primary);

    box-shadow:var(--shadow-sm);

}

.sidebar li.active{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    box-shadow:
        0 18px 40px rgba(108,99,255,.30);

}


/* ===========================
   DASHBOARD CONTENT
=========================== */

.dashboard-content{

    padding:40px;

    display:flex;

    flex-direction:column;

    gap:34px;

}


/* Header */

.dashboard-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.dashboard-header h3{

    font-size:30px;

    font-weight:800;

}


/* ===========================
   ANALYTICS GRID
=========================== */

.analytics-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

}

.analytics-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:22px;

    padding:28px;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.analytics-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.analytics-card h4{

    color:var(--text-muted);

    margin-bottom:12px;

    font-size:15px;

}

.analytics-card h2{

    color:var(--primary);

    font-size:42px;

    margin-bottom:8px;

}

.analytics-card span{

    font-size:14px;

    color:var(--success);

    font-weight:600;

}


/* ===========================
   PROGRESS CARD
=========================== */

.resume-progress{

    background:#fff;

    border:1px solid var(--border);

    border-radius:22px;

    padding:30px;

    box-shadow:var(--shadow-sm);

}

.progress-head{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;

}

.progress-head h4{

    font-size:18px;

}

.progress-head span{

    font-weight:700;

    color:var(--primary);

}


/* Progress Bar */

.progress-bar{

    width:100%;

    height:14px;

    border-radius:999px;

    overflow:hidden;

    background:#E2E8F0;

}

.progress-fill{

    width:92%;

    height:100%;

    border-radius:inherit;

    background:linear-gradient(
        90deg,
        var(--primary),
        var(--accent)
    );

    animation:progressGrow 2s ease;

}


/* ===========================
   DECORATION
=========================== */

.dashboard-preview::before{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    right:-120px;

    top:-120px;

    background:rgba(108,99,255,.05);

}


/* ===========================
   ANIMATIONS
=========================== */

.dashboard-preview{

    animation:fadeUp .8s ease both;

}

.analytics-card{

    animation:fade .8s ease both;

}


/* ===========================
   KEYFRAME
=========================== */

@keyframes progressGrow{

    from{

        width:0;

    }

    to{

        width:92%;

    }

}

/* ===========================================================
   COMPONENTS CSS
   PART 3C
   WHY US • STATS • CTA
=========================================================== */


/* ===========================
   WHY US
=========================== */

.why-us{
    position:relative;
}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.why-card{

    background:#fff;

    border:1px solid var(--border);

    border-radius:28px;

    padding:35px;

    transition:.35s ease;

    box-shadow:var(--shadow-sm);

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

    border-color:rgba(108,99,255,.18);

}

.why-icon{

    width:72px;

    height:72px;

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:24px;

    background:linear-gradient(
        135deg,
        rgba(108,99,255,.12),
        rgba(6,182,212,.12)
    );

}

.why-icon i{

    font-size:32px;

    color:var(--primary);

}

.why-card h3{

    margin-bottom:15px;

}

.why-card p{

    color:var(--text-light);

}


/* ===========================
   STATS
=========================== */

.stats{

    position:relative;

}

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    background:#fff;

    border-radius:24px;

    border:1px solid var(--border);

    padding:40px 20px;

    text-align:center;

    transition:.35s;

    box-shadow:var(--shadow-sm);

}

.stat-box:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.stat-box h2{

    font-size:48px;

    color:var(--primary);

    margin-bottom:12px;

    letter-spacing:-1px;

}

.stat-box p{

    color:var(--text-muted);

    font-size:15px;

}


/* ===========================
   CTA
=========================== */

.cta-banner{

    position:relative;

}

.cta-content{

    position:relative;

    overflow:hidden;

    text-align:center;

    border-radius:34px;

    padding:90px 60px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:#fff;

    box-shadow:
        0 35px 80px rgba(108,99,255,.30);

}

.cta-content::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    left:-120px;

    top:-120px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

.cta-content::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    right:-100px;

    bottom:-100px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

}

.cta-content>*{

    position:relative;

    z-index:2;

}

.cta-content h2{

    color:#fff;

    max-width:760px;

    margin:0 auto 22px;

}

.cta-content p{

    color:rgba(255,255,255,.88);

    max-width:650px;

    margin:0 auto 40px;

    font-size:18px;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;

}

.cta-buttons .btn-white{

    background:#fff;

    color:var(--primary);

}

.cta-buttons .btn-gradient{

    border:1px solid rgba(255,255,255,.15);

}


/* ===========================
   HOVER EFFECT
=========================== */

.cta-buttons a:hover{

    transform:translateY(-5px);

}


/* ===========================
   ENTRANCE ANIMATION
=========================== */

.why-card,
.stat-box,
.cta-content{

    animation:fadeUp .8s ease both;

}

/* ===========================================================
   COMPONENTS CSS
   PART 4
   PRICING • TESTIMONIALS • FAQ • FOOTER
=========================================================== */


/* ===========================
   PRICING
=========================== */

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:32px;
    align-items:stretch;
}

.price-card{
    position:relative;
    background:#fff;
    border:1px solid var(--border);
    border-radius:30px;
    padding:40px;
    transition:.35s;
    box-shadow:var(--shadow-sm);
}

.price-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-lg);
}

.price-card.featured{
    border:2px solid var(--primary);
    transform:scale(1.04);
    box-shadow:0 30px 70px rgba(108,99,255,.18);
}

.price-badge{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    padding:10px 20px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
}

.plan{
    color:var(--primary);
    font-weight:700;
    display:block;
    margin-bottom:18px;
}

.price-card h2{
    font-size:54px;
    margin-bottom:8px;
}

.price-card small{
    color:var(--text-muted);
}

.price-card p{
    margin:20px 0 28px;
}

.price-card ul{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-bottom:35px;
}

.price-card li{
    color:var(--text-light);
}


/* ===========================
   TESTIMONIALS
=========================== */

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:28px;
    padding:35px;
    transition:.35s;
    box-shadow:var(--shadow-sm);
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow);
}

.testimonial-card p{
    font-style:italic;
    margin-bottom:28px;
}

.user{
    display:flex;
    align-items:center;
    gap:16px;
}

.avatar{
    width:58px;
    height:58px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,var(--primary),var(--secondary));
    color:#fff;
    font-size:22px;
    font-weight:700;
}

.user span{
    color:var(--text-muted);
    font-size:14px;
}


/* ===========================
   FAQ
=========================== */

.faq-list{
    max-width:900px;
    margin:auto;
}

.faq-item{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    overflow:hidden;
    margin-bottom:20px;
    box-shadow:var(--shadow-sm);
}

.faq-item button{
    width:100%;
    padding:24px 28px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    font-size:18px;
    font-weight:700;
    background:#fff;
}

.faq-item button i{
    font-size:22px;
    transition:.35s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
    padding:0 28px;
}

.faq-item.active .faq-answer{
    max-height:220px;
    padding:0 28px 24px;
}

.faq-item.active button i{
    transform:rotate(45deg);
}


/* ===========================
   FOOTER
=========================== */

.footer{
    background:#fff;
    border-top:1px solid var(--border);
    margin-top:40px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
    padding:40px 0 24px;
}

.footer-logo{
    width:170px;
    margin-bottom:20px;
}

.footer h4{
    margin-bottom:20px;
}

.footer a{
    display:block;
    margin-bottom:14px;
    color:var(--text-light);
    transition:.3s;
}

.footer a:hover{
    color:var(--primary);
    transform:translateX(5px);
}

.footer-bottom{
    border-top:1px solid var(--border);
    text-align:center;
    padding:25px 0;
    color:var(--text-muted);
}


/* ===========================
   COMMON HOVER
=========================== */

.price-card,
.testimonial-card,
.faq-item,
.footer a{
    transition:all .35s ease;
}


/* ===========================
   COMPONENT ANIMATION
=========================== */

.price-card,
.testimonial-card,
.faq-item,
.footer{
    animation:fadeUp .8s ease both;
}

/* ===========================
   MOBILE NAVIGATION
=========================== */

@media (max-width:992px){

    .nav-links{

        position:absolute;

        top:calc(100% + 12px);

        left:0;

        width:100%;

        display:none;

        flex-direction:column;

        gap:18px;

        padding:24px;

        background:#fff;

        border-radius:24px;

        border:1px solid var(--border);

        box-shadow:0 20px 50px rgba(0,0,0,.08);

    }

    .nav-links.active{

        display:flex;

    }

    .menu-btn{

        display:flex;

    }

}

.reveal{
    opacity:0;
    transform:translateY(60px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* ===========================
   FLOATING GLASS TOAST SYSTEM
=========================== */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999999;
    pointer-events: none;
}

.toast {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 320px;
    max-width: 420px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.12);
    transform: translateX(120%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.toast.show {
    transform: translateX(0);
}

.toast-icon {
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast.success .toast-icon { color: #22C55E; }
.toast.error .toast-icon { color: #EF4444; }
.toast.warning .toast-icon { color: #F59E0B; }
.toast.info .toast-icon { color: #6C63FF; }

.toast.success { border-left: 4px solid #22C55E; }
.toast.error { border-left: 4px solid #EF4444; }
.toast.warning { border-left: 4px solid #F59E0B; }
.toast.info { border-left: 4px solid #6C63FF; }

.toast-content {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
    flex: 1;
}

.toast-close {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s ease;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text);
}