*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

body{
    background:#050816;
    color:#fff;
    overflow-x:hidden;
}

/* Background Glow */

.bg-glow{
    position:fixed;
    width:700px;
    height:700px;
    border-radius:50%;
    background:linear-gradient(135deg,#7c3aed,#2563eb);
    filter:blur(180px);
    opacity:.25;
    top:-250px;
    right:-150px;
    z-index:-1;
}

/* NAVBAR */

.navbar{
    width:100%;
    padding:22px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    backdrop-filter:blur(20px);
    background:rgba(10,10,10,.35);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.logo{
    font-size:24px;
    font-weight:800;
    letter-spacing:-1px;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

.logo span{
    background:linear-gradient(90deg,#7c3aed,#60a5fa);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}
.logo-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.logo-tagline {
    font-size: 10px;
    color: #64748b;
    letter-spacing: 0.3px;
    font-weight: 400;
    margin-top: -4px;
    line-height: 1;        /* ← add this */
    display: block;
}
footer .logo-wrap {
    align-items: center;
    margin-bottom: 20px;
}

.nav-links{
    display:flex;
    gap:35px;
}

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

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

.nav-buttons{
    display:flex;
    gap:15px;
}

.btn-primary{
    text-decoration:none;
    padding:12px 22px;
    border-radius:12px;
    background:linear-gradient(135deg,#7c3aed,#2563eb);
    color:#fff;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-2px);
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:120px 8%;
}

.hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:#cbd5e1;
    margin-bottom:25px;
}

.hero h1{
    font-size:68px;
    line-height:1.05;
    font-weight:900;
    letter-spacing:-3px;
    margin-bottom:25px;
}

.hero h1 span{
    background:linear-gradient(135deg,#7c3aed,#60a5fa);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    color:#94a3b8;
    font-size:20px;
    line-height:1.8;
    max-width:620px;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    margin-bottom:35px;
}

.btn-download{
    padding:18px 30px;
    border-radius:14px;
    background:linear-gradient(135deg,#7c3aed,#2563eb);
    color:white;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-download:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 30px rgba(124,58,237,.3);
}

/* FIX #8: Added hover state for btn-demo */
.btn-demo{
    padding:18px 30px;
    border-radius:14px;
    text-decoration:none;
    border:1px solid rgba(255,255,255,.15);
    color:white;
    transition:.3s;
}

.btn-demo:hover{
    background:rgba(255,255,255,.08);
    border-color:rgba(255,255,255,.3);
    transform:translateY(-2px);
}

.stats{
    display:flex;
    gap:35px;
}

.stat h3{
    font-size:28px;
}

.stat p{
    font-size:14px;
    margin-top:5px;
}

/* HERO MOCKUP */

.hero-card{
    position:relative;
    border-radius:30px;
    padding:35px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
}

.review{
    background:#0f172a;
    padding:20px;
    border-radius:18px;
    margin-bottom:20px;
}

.review-top{
    margin-bottom:12px;
    color:#facc15;
}

.review p{
    color:#cbd5e1;
    line-height:1.7;
}

.reply-box{
    margin-top:20px;
    background:#111827;
    border-radius:18px;
    padding:20px;
}

.ai-label{
    color:#60a5fa;
    font-weight:700;
    margin-bottom:12px;
}

.reply-text{
    color:#d1d5db;
    line-height:1.7;
}

.generate-btn{
    width:100%;
    margin-top:20px;
    padding:16px;
    border:none;
    border-radius:12px;
    background:linear-gradient(135deg,#7c3aed,#2563eb);
    color:white;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition: transform 0.15s ease, opacity 0.15s ease;
}

@media(max-width:1000px){

.hero-wrapper{
    grid-template-columns:1fr;
}

.hero h1{
    font-size:48px;
}

.nav-links{
    display:none;
}

}

.problem-solution{
    padding:120px 8%;
}

.section-header{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:70px;
}

.section-tag{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(124,58,237,.15);
    color:#a78bfa;
    border:1px solid rgba(167,139,250,.2);
    margin-bottom:20px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
}

.section-header h2{
    font-size:54px;
    line-height:1.1;
    margin-bottom:20px;
    font-weight:800;
}

.section-header p{
    color:#94a3b8;
    font-size:18px;
    line-height:1.8;
}

section{
    scroll-margin-top:120px;
}

.comparison-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.comparison-card{
    padding:40px;
    border-radius:24px;
    backdrop-filter:blur(20px);
    transition:.4s;
}

.comparison-card:hover{
    transform:translateY(-8px);
}

.before{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
}

.after{
    background:linear-gradient(
        135deg,
        rgba(124,58,237,.18),
        rgba(37,99,235,.18)
    );
    border:1px solid rgba(124,58,237,.25);
}

.card-label{
    font-size:22px;
    font-weight:700;
    margin-bottom:30px;
}

.comparison-card ul{
    list-style:none;
}

.comparison-card ul li{
    padding:18px 0;
    color:#cbd5e1;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.comparison-card ul li:last-child{
    border-bottom:none;
}

@media(max-width:900px){

    .comparison-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:40px;
    }

}

.how-it-works{
    padding:120px 8%;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.step-card{
    position:relative;
    padding:35px;
    border-radius:24px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    transition:.4s;
}

.step-card:hover{
    transform:translateY(-10px);
    border-color:rgba(124,58,237,.4);
    box-shadow:0 20px 50px rgba(124,58,237,.15);
}

.step-number{
    position:absolute;
    top:20px;
    right:25px;
    font-size:42px;
    font-weight:800;
    color:rgba(255,255,255,.06);
}

.step-icon{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        rgba(124,58,237,.2),
        rgba(37,99,235,.2)
    );
    margin-bottom:25px;
}

.step-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.step-card p{
    color:#94a3b8;
    line-height:1.8;
}

@media(max-width:1100px){

.steps-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:700px){

.steps-grid{
    grid-template-columns:1fr;
}

}

.live-demo{
    padding:140px 8%;
}

.demo-container{
    display:grid;
    grid-template-columns:1fr 100px 1fr;
    gap:30px;
    align-items:center;
    max-width:1400px;
    margin:auto;
}

.demo-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    border-radius:28px;
    padding:35px;
    backdrop-filter:blur(20px);
    min-height:350px;
}

.ai-card{
    background:linear-gradient(
        135deg,
        rgba(124,58,237,.12),
        rgba(37,99,235,.12)
    );
}

.demo-header{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:30px;
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
}

.red{ background:#ef4444; }
.yellow{ background:#facc15; }
.green{ background:#22c55e; }

.review-stars{
    font-size:26px;
    margin-bottom:25px;
}

.review-content{
    color:#cbd5e1;
    font-size:18px;
    line-height:1.9;
}

.demo-arrow{
    font-size:60px;
    text-align:center;
    background:linear-gradient(135deg,#7c3aed,#60a5fa);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    font-weight:800;
}

.ai-badge{
    padding:12px 18px;
    border-radius:999px;
    background:rgba(124,58,237,.15);
    border:1px solid rgba(124,58,237,.2);
    color:#c4b5fd;
}

.typing-text{
    min-height:180px;
    color:#e2e8f0;
    line-height:1.9;
    font-size:17px;
    margin-top:20px;
}

.generate-btn-demo{
    margin-top:30px;
    width:100%;
    padding:18px;
    border:none;
    border-radius:14px;
    cursor:pointer;
    color:#fff;
    font-weight:700;
    background:linear-gradient(135deg,#7c3aed,#2563eb);
    font-size:16px;
    transition:.3s;
}

.generate-btn-demo:hover{
    opacity:.9;
    transform:translateY(-2px);
}

.generate-btn-demo.loading{
    opacity:0.8;
    cursor:not-allowed;
    transform:none;
}

.features-section{
    padding:140px 8%;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:70px;
}

.feature-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border-radius:24px;
    padding:35px;
    transition:.35s ease;
}

.feature-card:hover{
    transform:translateY(-10px);
    border-color:rgba(124,58,237,.4);
    box-shadow:0 25px 60px rgba(124,58,237,.12);
}

.feature-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:25px;
    background:linear-gradient(
        135deg,
        rgba(124,58,237,.2),
        rgba(37,99,235,.2)
    );
}

.feature-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.feature-card p{
    color:#94a3b8;
    line-height:1.8;
}

@media(max-width:1100px){

.features-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:700px){

.features-grid{
    grid-template-columns:1fr;
}

}

.comparison-section{
    padding:140px 8%;
}

.comparison-table{
    margin-top:70px;
    border-radius:30px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.03);
    backdrop-filter:blur(20px);
}

.table-header,
.table-row{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    align-items:center;
    text-align:center;
}

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

.table-header div,
.table-row div{
    padding:25px;
}

.table-row{
    border-top:1px solid rgba(255,255,255,.06);
}

.table-row div:first-child,
.table-header div:first-child{
    text-align:left;
}

.highlight-column{
    background:rgba(124,58,237,.12);
    font-weight:700;
}

.table-row:hover{
    background:rgba(255,255,255,.03);
}

@media(max-width:900px){

.table-header,
.table-row{
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    font-size:14px;
}

.table-header div,
.table-row div{
    padding:18px 10px;
}

}

.time-saved-box{
    margin-top:40px;
    text-align:center;
    padding:35px;
    border-radius:24px;
    background:linear-gradient(
        135deg,
        rgba(124,58,237,.12),
        rgba(37,99,235,.12)
    );
    border:1px solid rgba(124,58,237,.2);
}

.time-saved-box h3{
    margin-bottom:15px;
    font-size:28px;
}

.time-saved-box p{
    color:#94a3b8;
}

.testimonials-section{
    padding:140px 8%;
}

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:70px;
}

.testimonial-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border-radius:24px;
    padding:35px;
    transition:.3s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    border-color:rgba(124,58,237,.3);
}

.featured{
    background:linear-gradient(
        135deg,
        rgba(124,58,237,.15),
        rgba(37,99,235,.15)
    );
    border-color:rgba(124,58,237,.3);
}

.stars{
    margin-bottom:20px;
    font-size:20px;
}

.testimonial-card p{
    color:#cbd5e1;
    line-height:1.9;
    margin-bottom:30px;
}

.user{
    display:flex;
    align-items:center;
    gap:15px;
}

.avatar{
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    background:linear-gradient(135deg,#7c3aed,#2563eb);
}

.user h4{
    margin-bottom:5px;
}

.user span{
    color:#94a3b8;
    font-size:14px;
}

@media(max-width:1000px){

.testimonials-grid{
    grid-template-columns:1fr;
}

}

.stats-banner{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    padding:35px;
    border-radius:28px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
}

/* FIX #4: Added base transparent border so hover border doesn't appear from nowhere */
.stats-banner > div{
    text-align:center;
    padding:25px;
    border-radius:20px;
    background:rgba(255,255,255,.03);
    border:1px solid transparent;
    transition:all .35s ease;
    position:relative;
    overflow:hidden;
}

.stats-banner > div:hover{
    transform:translateY(-8px);
    border-color:rgba(124,58,237,.4);
    box-shadow:0 20px 40px rgba(124,58,237,.15);
}

.stats-banner > div::before{
    content:"";
    position:absolute;
    width:200px;
    height:200px;
    background:radial-gradient(
        circle,
        rgba(124,58,237,.25),
        transparent 70%
    );
    top:-100px;
    right:-100px;
    opacity:0;
    transition:.4s;
}

.stats-banner > div:hover::before{
    opacity:1;
}

.stats-banner h3{
    font-size:48px;
    font-weight:800;
    line-height:1;
    margin-bottom:12px;
    background:linear-gradient(135deg,#7c3aed,#60a5fa);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.stats-banner p{
    color:#94a3b8;
    font-size:15px;
    line-height:1.6;
}

@media(max-width:900px){

    .stats-banner{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:600px){

    .stats-banner{
        grid-template-columns:1fr;
    }

    .stats-banner h3{
        font-size:40px;
    }

}

.pricing-section{
    padding:140px 8%;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
    max-width:1000px;
    margin:70px auto 0;
}

.pricing-card{
    position:relative;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border-radius:30px;
    padding:45px;
    transition:.35s;
}

.pricing-card:hover{
    transform:translateY(-10px);
}

.featured-plan{
    border:1px solid rgba(124,58,237,.4);
    background:linear-gradient(
        135deg,
        rgba(124,58,237,.12),
        rgba(37,99,235,.12)
    );
}

.popular-badge{
    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);
    background:linear-gradient(135deg,#7c3aed,#2563eb);
    color:white;
    padding:10px 18px;
    border-radius:999px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
}

.plan-name{
    font-size:26px;
    font-weight:700;
    margin-bottom:20px;
}

.price{
    font-size:58px;
    font-weight:800;
    margin-bottom:30px;
}

.price span{
    font-size:16px;
    color:#94a3b8;
}

.pricing-features{
    list-style:none;
    margin-bottom:35px;
}

.pricing-features li{
    padding:15px 0;
    color:#cbd5e1;
    border-bottom:1px solid rgba(255,255,255,.06);
}

.pricing-btn{
    width:100%;
    padding:18px;
    border:none;
    border-radius:14px;
    cursor:pointer;
    font-weight:700;
    font-size:16px;
    transition:.3s;
}

.pricing-btn:hover{
    transform:translateY(-2px);
}

.free-btn{
    background:#1e293b;
    color:white;
}

.pro-btn{
    background:linear-gradient(135deg,#7c3aed,#2563eb);
    color:white;
}

.money-back{
    margin:60px auto 0;
    max-width:900px;
    text-align:center;
    padding:45px;
    border-radius:28px;
    background:linear-gradient(
        135deg,
        rgba(124,58,237,.12),
        rgba(37,99,235,.12)
    );
    border:1px solid rgba(124,58,237,.25);
    backdrop-filter:blur(20px);
    position:relative;
    overflow:hidden;
    transition:.4s ease;
}

.money-back::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:radial-gradient(
        circle,
        rgba(124,58,237,.25),
        transparent 70%
    );
    top:-150px;
    right:-150px;
}

.money-back:hover{
    transform:translateY(-5px);
    box-shadow:0 30px 80px rgba(124,58,237,.18);
}

.money-back h3{
    font-size:32px;
    font-weight:800;
    margin-bottom:15px;
    color:#fff;
}

.money-back p{
    font-size:18px;
    color:#cbd5e1;
    line-height:1.8;
    max-width:650px;
    margin:auto;
}

@media(max-width:768px){

    .money-back{
        padding:35px 25px;
    }

    .money-back h3{
        font-size:26px;
    }

    .money-back p{
        font-size:16px;
    }

}

.faq-section{
    padding:140px 8%;
}

.faq-container{
    max-width:900px;
    margin:70px auto 0;
}

.faq-item{
    margin-bottom:20px;
    border-radius:20px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.03);
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    color:white;
    padding:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:18px;
    cursor:pointer;
    font-family:'Inter',sans-serif;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    color:#94a3b8;
    padding:0 25px;
    transition:.4s ease;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:150px;
    padding:0 25px 25px;
}

.download-section{
    padding:140px 8%;
}

.download-box{
    max-width:800px;
    margin:auto;
    text-align:center;
    padding:60px;
    border-radius:30px;
    background:linear-gradient(
        135deg,
        rgba(124,58,237,.12),
        rgba(37,99,235,.12)
    );
    border:1px solid rgba(124,58,237,.25);
}

.download-box h2{
    font-size:48px;
    margin-bottom:15px;
}

.download-box p{
    color:#cbd5e1;
    margin-bottom:40px;
}

.download-box form{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.download-box input{
    padding:18px;
    border-radius:14px;
    border:1px solid rgba(255,255,255,.1);
    background:#0f172a;
    color:white;
    font-size:16px;
    font-family:'Inter',sans-serif;
    outline:none;
    transition:.3s;
}

.download-box input:focus{
    border-color:rgba(124,58,237,.5);
}

/* FIX #9: Placeholder color so it's visible on dark background */
.download-box input::placeholder{
    color:#475569;
}

.download-box button{
    padding:18px;
    border:none;
    border-radius:14px;
    cursor:pointer;
    color:white;
    font-weight:700;
    font-size:16px;
    font-family:'Inter',sans-serif;
    background:linear-gradient(135deg,#7c3aed,#2563eb);
    transition:.3s;
}

.download-box button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 30px rgba(124,58,237,.3);
}

.final-cta{
    padding:120px 8%;
    text-align:center;
}

.final-cta h2{
    font-size:64px;
    max-width:900px;
    margin:auto;
    line-height:1.1;
    margin-bottom:25px;
}

.final-cta p{
    color:#94a3b8;
    margin-bottom:40px;
    font-size:20px;
}

.cta-button{
    display:inline-block;
    padding:20px 40px;
    border-radius:14px;
    text-decoration:none;
    color:white;
    font-weight:700;
    background:linear-gradient(135deg,#7c3aed,#2563eb);
    transition:.3s;
}

.cta-button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 30px rgba(124,58,237,.3);
}

/* FIX #7: Footer logo spacing handled with CSS, not <br> tag */
footer{
    padding:60px 8%;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
}

/* FIX #3: Removed orphan .footer-logo rule; footer now uses shared .logo + .logo span which
   already applies the gradient via -webkit-background-clip on the span.
   Added margin-bottom here to replace the removed <br> tag. */
footer .logo{
    margin-bottom:0;
    display:inline-block;
    line-height: 1; 
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:25px;
}

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

.footer-links a:hover{
    color:#fff;
}

footer p{
    color:#64748b;
}

/* 5-step grid */
.steps-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

@media(max-width:1200px){
    .steps-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width:800px){
    .steps-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:500px){
    .steps-grid-5 {
        grid-template-columns: 1fr;
    }
}

/* Steps note bar */
.steps-note {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 18px 28px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(124,58,237,.1), rgba(37,99,235,.1));
    border: 1px solid rgba(124,58,237,.2);
    color: #cbd5e1;
    font-size: 15px;
}

.steps-note-link {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: .2s;
}

.steps-note-link:hover {
    color: #c4b5fd;
}

/* Price note */
.price-note {
    font-size: 13px;
    color: #64748b;
    margin-top: -20px;
    margin-bottom: 28px;
}

/* Pricing footer note */
.pricing-footer-note {
    text-align: center;
    margin-top: 28px;
    color: #64748b;
    font-size: 14px;
}

/* Muted pricing feature */
.pricing-features li.muted {
    color: #475569;
    text-decoration: line-through;
    opacity: 0.6;
}

/* Signup form states */
.signup-success {
    display: none;
    text-align: center;
    padding: 30px 20px;
    border-radius: 18px;
    background: rgba(74,222,128,.08);
    border: 1px solid rgba(74,222,128,.2);
    margin-top: 20px;
}

.signup-success-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.signup-success h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.signup-success p {
    color: #94a3b8;
    font-size: 15px;
    margin-bottom: 6px;
    line-height: 1.7;
}

.signup-error {
    display: none;
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(248,113,113,.08);
    border: 1px solid rgba(248,113,113,.2);
    color: #f87171;
    font-size: 14px;
    text-align: center;
}

.download-disclaimer {
    margin-top: 18px;
    color: #475569;
    font-size: 13px;
}

/* ── Hero Cursor Animation ─────────────────────────────────── */

.hero-cursor-wrap {
    position: absolute;
    bottom: 72px;
    right: 55px;
    pointer-events: none;
    z-index: 10;
}

.hero-cursor {
    width: 36px;
    height: 46px;
    opacity: 0;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.5));
    /* NO CSS animation here — JS controls it fully */
    transition: opacity 0.4s ease, transform 0.5s cubic-bezier(.4,0,.2,1);
}

/* Typing cursor blink */
.cursor {
    display: inline-block;
    width: 2px;
    background: #60a5fa;
    margin-left: 1px;
    animation: blink .7s step-end infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0; }
}

/* ── Hamburger Button ─────────────────────────────────────── */

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #cbd5e1;
    border-radius: 2px;
    transition: all .3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Menu Overlay ──────────────────────────────────── */

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    background: rgba(5,8,22,.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,.08);
    flex-direction: column;
    padding: 16px 8%;
    gap: 4px;
    z-index: 999;
    transform: translateY(-10px);
    opacity: 0;
    transition: all .3s ease;
}

.mobile-menu.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

.mobile-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
    transition: color .2s;
}

.mobile-link:hover { color: #fff; }
.mobile-link:last-child { border-bottom: none; }

.mobile-cta {
    margin-top: 8px;
    padding: 14px 20px;
    background: linear-gradient(135deg,#7c3aed,#2563eb);
    border-radius: 12px;
    color: white;
    font-weight: 700;
    text-align: center;
    border: none;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — Full overhaul
   ═══════════════════════════════════════════════════════════ */

/* ── Tablet (max 1000px) ─── */
@media (max-width: 1000px) {

    /* Navbar */
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .btn-primary { display: none; }
    .navbar { padding: 18px 5%; }

    /* Hero */
    .hero {
        padding: 100px 5% 60px;
        min-height: auto;
    }
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero h1 {
        font-size: 44px;
        letter-spacing: -2px;
    }
    .hero > .hero-wrapper > div:first-child {
        text-align: center;
    }
    .badge {
        display: inline-flex;
    }
    .hero p {
        font-size: 17px;
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    .stats {
        justify-content: center;
    }

    /* Sections padding */
    .problem-solution,
    .how-it-works,
    .live-demo,
    .features-section,
    .comparison-section,
    .testimonials-section,
    .pricing-section,
    .faq-section,
    .download-section { padding: 80px 5%; }

    .final-cta { padding: 80px 5%; }

    /* Section headers */
    .section-header h2 { font-size: 36px; }
    .section-header p  { font-size: 16px; }

    /* Comparison grid */
    .comparison-grid { grid-template-columns: 1fr; }

    /* Steps */
    .steps-grid-5 { grid-template-columns: repeat(2, 1fr); }

    /* Demo */
    .demo-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .demo-arrow {
        font-size: 36px;
        text-align: center;
        transform: rotate(90deg);
    }

    /* Features */
    .features-grid { grid-template-columns: repeat(2, 1fr); }

    /* Comparison table */
    .table-header, .table-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        font-size: 13px;
    }
    .table-header div, .table-row div { padding: 14px 8px; }

    /* Testimonials */
    .testimonials-grid { grid-template-columns: 1fr; }

    /* Stats banner */
    .stats-banner { grid-template-columns: repeat(2, 1fr); }

    /* Pricing */
    .pricing-grid { grid-template-columns: 1fr; max-width: 460px; }

    /* Final CTA */
    .final-cta h2 { font-size: 40px; }

    /* Download box */
    .download-box { padding: 40px 28px; }
    .download-box h2 { font-size: 32px; }

}

/* ── Mobile (max 640px) ─── */
@media (max-width: 640px) {

    /* Navbar */
    .navbar { padding: 16px 5%; }

    /* Hero */
    .hero { padding: 90px 5% 50px; }
    .hero h1 {
        font-size: 34px;
        letter-spacing: -1.5px;
        line-height: 1.1;
    }
    .hero p { font-size: 15px; }
    .badge { font-size: 12px; padding: 8px 14px; }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .btn-download, .btn-demo {
        padding: 16px 24px;
        text-align: center;
        width: 100%;
    }

    .stats {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .stat h3 { font-size: 22px; }
    .stat p  { font-size: 13px; }

    /* Hero card */
    .hero-card { padding: 20px; }
    .hero-cursor-wrap { display: none; } /* hide cursor on small screens */

    /* Section headers */
    .section-header h2 { font-size: 28px; letter-spacing: -0.5px; }
    .section-header p  { font-size: 15px; }
    .section-tag       { font-size: 11px; }

    /* Steps */
    .steps-grid-5 { grid-template-columns: 1fr; }
    .steps-note {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        font-size: 14px;
    }

    /* Comparison card */
    .comparison-card { padding: 24px 20px; }
    .card-label { font-size: 18px; }

    /* Features */
    .features-grid { grid-template-columns: 1fr; }

    /* Comparison table — hide ChatGPT column on small screens */
    .table-header,
    .table-row { grid-template-columns: 2fr 1fr 1fr; font-size: 12px; }
    .table-header div:nth-child(3),
    .table-row div:nth-child(3) { display: none; }
    .table-header div, .table-row div { padding: 12px 6px; }

    /* Stats banner */
    .stats-banner { grid-template-columns: repeat(2, 1fr); padding: 20px; gap: 14px; }
    .stats-banner h3 { font-size: 34px; }

    /* Testimonials */
    .testimonial-card { padding: 24px 20px; }

    /* Pricing */
    .pricing-card { padding: 32px 24px; }
    .price { font-size: 46px; }

    /* FAQ */
    .faq-question { font-size: 15px; padding: 20px; }

    /* Download */
    .download-box { padding: 30px 20px; }
    .download-box h2 { font-size: 26px; }
    .download-box input,
    .download-box button { padding: 15px; font-size: 15px; }

    /* Final CTA */
    .final-cta h2 { font-size: 28px; }
    .final-cta p  { font-size: 16px; }
    .cta-button   { padding: 16px 28px; font-size: 15px; }
    .cta-sub      { font-size: 12px; }

    /* Money back */
    .money-back { padding: 28px 20px; }
    .money-back h3 { font-size: 22px; }

    /* Footer */
    footer { padding: 40px 5%; }
    .footer-links { gap: 16px; font-size: 13px; }

    /* Time saved box */
    .time-saved-box h3 { font-size: 22px; }

}

/* ── Small Mobile (max 380px) ─── */
@media (max-width: 380px) {

    .hero h1 { font-size: 28px; }
    .hero-card { padding: 16px; }
    .section-header h2 { font-size: 24px; }
    .stats-banner { grid-template-columns: 1fr; }
    .stats-banner h3 { font-size: 40px; }
    .pricing-grid { max-width: 100%; }

}

/* CTA sub-text */
.cta-sub {
    margin-top: 16px;
    color: #64748b;
    font-size: 14px;
}

html{
    scroll-behavior:smooth;
}

.nav-links a.active{
    color:white;
    position:relative;
}

.nav-links a.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:2px;
    background:linear-gradient(90deg,#7c3aed,#60a5fa);
}
