*{
    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;
}

.logo span{
    background:linear-gradient(90deg,#7c3aed,#60a5fa);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.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;
}

@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:25px;
    display:inline-block;
}

.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;
}

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);
}