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

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

/* BACKGROUND GLOW */

.bg-glow{
    position:fixed;
    width:600px;
    height:600px;

    background:linear-gradient(
        45deg,
        #7c3aed,
        #06b6d4
    );

    filter:blur(180px);

    opacity:0.4;

    top:-200px;
    left:-200px;

    z-index:-1;
}

/* NAVBAR */

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 8%;

    position:sticky;
    top:0;

    backdrop-filter:blur(20px);

    z-index:1000;
}

.logo{
    font-size:30px;
    font-weight:700;
}

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

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:17px;
    transition:0.3s;
}

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

/* HERO SECTION */

.hero{
    min-height:90vh;

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

    text-align:center;

    padding:0 8%;
}

.hero-title{
    font-size:80px;
    max-width:1000px;

    line-height:1.1;

    margin-bottom:30px;

    background:linear-gradient(
        90deg,
        #ffffff,
        #7c3aed,
        #06b6d4
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    font-size:22px;
    color:#cbd5e1;

    max-width:800px;

    line-height:1.8;
}

.hero-btn{
    display:inline-block;

    margin-top:40px;

    padding:18px 40px;

    border-radius:15px;

    background:linear-gradient(
        90deg,
        #7c3aed,
        #06b6d4
    );

    color:white;

    text-decoration:none;

    font-size:18px;
    font-weight:600;

    transition:0.3s;
}

.hero-btn:hover{
    transform:translateY(-5px);
}





/* PAGE HEADER */

.page-header{
    padding:120px 8% 60px;

    text-align:center;
}

.page-header h1{
    font-size:60px;

    margin-bottom:20px;
}

.page-header p{
    color:#cbd5e1;

    font-size:20px;
}

/* TOOL PAGES */

.tool-container{
    padding:100px 8%;
}

.tool-container h1{
    text-align:center;

    font-size:60px;

    margin-bottom:50px;
}

.glass-box{
    max-width:1000px;

    margin:auto;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    border-radius:30px;

    padding:40px;

    border:1px solid rgba(255,255,255,0.08);
}

input,
select,
textarea{
    width:100%;

    padding:18px;

    border:none;

    outline:none;

    border-radius:15px;

    background:#111827;

    color:white;

    margin-bottom:20px;

    font-size:16px;
}

textarea{
    height:200px;
}

button{
    width:100%;

    padding:18px;

    border:none;

    border-radius:15px;

    background:linear-gradient(
        90deg,
        #7c3aed,
        #06b6d4
    );

    color:white;

    font-size:18px;

    cursor:pointer;

    transition:0.3s;
}

button:hover{
    transform:translateY(-4px);
}

/* RESULTS */

.result-box,
.dashboard{
    max-width:1000px;

    margin:40px auto;
}

.result-card{
    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    border-radius:25px;

    padding:30px;

    margin-bottom:30px;

    border:1px solid rgba(255,255,255,0.08);
}

.result-card h2{
    margin-bottom:20px;

    font-size:30px;
}

.result-card p,
.result-card li{
    line-height:1.8;

    color:#e2e8f0;
}

/* FOOTER */

footer{
    text-align:center;

    padding:80px 8%;
}

footer h3{
    font-size:32px;

    margin-bottom:20px;
}

footer p{
    color:#cbd5e1;
}

/* MOBILE */

@media(max-width:768px){

    nav{
        flex-direction:column;
        gap:20px;
    }

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

    .hero p{
        font-size:18px;
    }

    .tool-container h1{
        font-size:42px;
    }

    .page-header h1{
        font-size:42px;
    }
}*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

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

/* BACKGROUND GLOW */

.bg-glow{
    position:fixed;
    width:600px;
    height:600px;

    background:linear-gradient(
        45deg,
        #7c3aed,
        #06b6d4
    );

    filter:blur(180px);

    opacity:0.4;

    top:-200px;
    left:-200px;

    z-index:-1;
}

/* NAVBAR */

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:25px 8%;

    position:sticky;
    top:0;

    backdrop-filter:blur(20px);

    z-index:1000;
}

.logo{
    font-size:30px;
    font-weight:700;
}

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

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:17px;
    transition:0.3s;
}

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

/* HERO SECTION */

.hero{
    min-height:90vh;

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

    text-align:center;

    padding:0 8%;
}

.hero-title{
    font-size:80px;
    max-width:1000px;

    line-height:1.1;

    margin-bottom:30px;

    background:linear-gradient(
        90deg,
        #ffffff,
        #7c3aed,
        #06b6d4
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{
    font-size:22px;
    color:#cbd5e1;

    max-width:800px;

    line-height:1.8;
}

.hero-btn{
    display:inline-block;

    margin-top:40px;

    padding:18px 40px;

    border-radius:15px;

    background:linear-gradient(
        90deg,
        #7c3aed,
        #06b6d4
    );

    color:white;

    text-decoration:none;

    font-size:18px;
    font-weight:600;

    transition:0.3s;
}

.hero-btn:hover{
    transform:translateY(-5px);
}

/* =========================================
AI TOOLS HUB PREMIUM UI
========================================= */

.tools-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:40px;

    padding:40px 8% 100px;

    align-items:stretch;
}

/* CARD */

.tool-card{

    position:relative;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

    min-height:760px;

    padding:35px 30px;

    border-radius:35px;

    background:rgba(255,255,255,0.06);

    backdrop-filter:blur(25px);

    border:1px solid rgba(255,255,255,0.08);

    overflow:hidden;

    transition:0.4s ease;

    box-shadow:
    0 10px 40px rgba(0,0,0,0.35);
}

.tool-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        180deg,
        rgba(124,58,237,0.08),
        rgba(6,182,212,0.03)
    );

    z-index:0;
}

.tool-card:hover{

    transform:translateY(-12px);

    border:1px solid rgba(124,58,237,0.4);

    box-shadow:
    0 20px 60px rgba(124,58,237,0.2);
}

/* ALL CONTENT ABOVE OVERLAY */

.tool-card > *{

    position:relative;

    z-index:2;
}

/* TOP BADGE */

.tool-badge{

    width:fit-content;

    margin:0 auto 30px;

    padding:10px 22px;

    border-radius:40px;

    background:linear-gradient(
        90deg,
        #7c3aed,
        #06b6d4
    );

    font-size:14px;

    font-weight:600;

    letter-spacing:0.5px;

    color:white;
}

/* ICON */

.tool-icon{

    width:110px;
    height:110px;

    margin:0 auto 35px;

    border-radius:30px;

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

    background:#0f172a;

    border:1px solid rgba(124,58,237,0.3);

    box-shadow:
    0 0 25px rgba(124,58,237,0.25);

    font-size:52px;

    color:#8b5cf6;
}

/* TITLE */

.tool-card h2{

    text-align:center;

    font-size:42px;

    font-weight:700;

    margin-bottom:22px;

    min-height:110px;

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

    line-height:1.3;
}

/* DESCRIPTION */

.tool-card p{

    text-align:center;

    color:#cbd5e1;

    line-height:1.9;

    font-size:18px;

    min-height:120px;

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

/* VIDEO */

.video-wrapper{

    margin:35px 0 35px;
}

.video-wrapper iframe{

    width:100%;

    height:240px;

    border:none;

    border-radius:24px;

    overflow:hidden;
}

/* BUTTON */

.tool-card a{

    display:flex;

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

    gap:12px;

    width:100%;

    padding:18px 25px;

    border-radius:18px;

    text-decoration:none;

    font-size:20px;

    font-weight:600;

    color:white;

    background:linear-gradient(
        90deg,
        #7c3aed,
        #06b6d4
    );

    transition:0.35s ease;

    margin-top:auto;

    box-shadow:
    0 10px 30px rgba(124,58,237,0.25);
}

.tool-card a:hover{

    transform:translateY(-4px);

    box-shadow:
    0 20px 40px rgba(6,182,212,0.25);
}

/* PAGE HEADER */

.page-header{

    text-align:center;

    padding:90px 8% 30px;
}

.page-header h1{

    font-size:90px;

    font-weight:800;

    margin-bottom:20px;

    background:linear-gradient(
        90deg,
        #8b5cf6,
        #38bdf8
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.page-header p{

    font-size:26px;

    color:#94a3b8;
}

/* MOBILE */

@media(max-width:1200px){

    .tools-grid{

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

@media(max-width:768px){

    .tools-grid{

        grid-template-columns:1fr;
    }

    .page-header h1{

        font-size:55px;
    }

    .tool-card{

        min-height:auto;
    }

    .tool-card h2{

        font-size:34px;

        min-height:auto;
    }

    .tool-card p{

        min-height:auto;
    }
}



/* PAGE HEADER */

.page-header{
    padding:120px 8% 60px;

    text-align:center;
}

.page-header h1{
    font-size:60px;

    margin-bottom:20px;
}

.page-header p{
    color:#cbd5e1;

    font-size:20px;
}

/* TOOL PAGES */

.tool-container{
    padding:100px 8%;
}

.tool-container h1{
    text-align:center;

    font-size:60px;

    margin-bottom:50px;
}

.glass-box{
    max-width:1000px;

    margin:auto;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    border-radius:30px;

    padding:40px;

    border:1px solid rgba(255,255,255,0.08);
}

input,
select,
textarea{
    width:100%;

    padding:18px;

    border:none;

    outline:none;

    border-radius:15px;

    background:#111827;

    color:white;

    margin-bottom:20px;

    font-size:16px;
}

textarea{
    height:200px;
}

button{
    width:100%;

    padding:18px;

    border:none;

    border-radius:15px;

    background:linear-gradient(
        90deg,
        #7c3aed,
        #06b6d4
    );

    color:white;

    font-size:18px;

    cursor:pointer;

    transition:0.3s;
}

button:hover{
    transform:translateY(-4px);
}

/* RESULTS */

.result-box,
.dashboard{
    max-width:1000px;

    margin:40px auto;
}

.result-card{
    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    border-radius:25px;

    padding:30px;

    margin-bottom:30px;

    border:1px solid rgba(255,255,255,0.08);
}

.result-card h2{
    margin-bottom:20px;

    font-size:30px;
}

.result-card p,
.result-card li{
    line-height:1.8;

    color:#e2e8f0;
}

/* FOOTER */

footer{
    text-align:center;

    padding:80px 8%;
}

footer h3{
    font-size:32px;

    margin-bottom:20px;
}

footer p{
    color:#cbd5e1;
}

/* MOBILE */

@media(max-width:768px){

    nav{
        flex-direction:column;
        gap:20px;
    }

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

    .hero p{
        font-size:18px;
    }

    .tool-container h1{
        font-size:42px;
    }

    .page-header h1{
        font-size:42px;
    }
}

.section-title{
    text-align:center;
    padding:40px 8%;
}

.section-title h1{
    font-size:60px;
    margin-bottom:20px;
}

.section-title p{
    color:#cbd5e1;
}

.hero-content{
    max-width:1000px;
}

.hero-description{
    margin-top:20px;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{
    padding:18px 35px;
    border-radius:15px;
    text-decoration:none;
    color:white;
    font-weight:600;
}

.primary-btn{
    background:linear-gradient(90deg,#7c3aed,#06b6d4);
}

.secondary-btn{
    border:1px solid rgba(255,255,255,0.2);
}

.stats-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:25px;
    padding:40px 8%;
}

.stat-card{
    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(20px);
    padding:40px;
    border-radius:25px;
    text-align:center;
}

.stat-card h2{
    font-size:50px;
    margin-bottom:10px;
}

.tool-badge{
    display:inline-block;
    margin-bottom:20px;
    padding:8px 18px;
    border-radius:30px;
    background:linear-gradient(90deg,#7c3aed,#06b6d4);
    font-size:14px;
}

.video-wrapper{
    margin-top:25px;
    margin-bottom:25px;
}

.video-wrapper iframe{
    width:100%;
    height:220px;
    border:none;
    border-radius:20px;
}

.why-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    padding:100px 8%;
    align-items:center;
}

.why-left h1{
    font-size:60px;
    margin-bottom:25px;
}

.why-left p{
    color:#cbd5e1;
    line-height:1.9;
}

.why-right{
    display:grid;
    gap:20px;
}

.why-card{
    background:rgba(255,255,255,0.08);
    padding:30px;
    border-radius:20px;
    font-size:20px;
}

.testimonial-section{
    padding:100px 8%;
    text-align:center;
}

.testimonial-section h1{
    font-size:60px;
    margin-bottom:50px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.testimonial-card{
    background:rgba(255,255,255,0.08);
    padding:40px;
    border-radius:25px;
}

.testimonial-card p{
    line-height:1.9;
    margin-bottom:20px;
}

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

.cta-section h1{
    font-size:60px;
    margin-bottom:25px;
}

.cta-section p{
    color:#cbd5e1;
    margin-bottom:40px;
}

.cta-section a{
    display:inline-block;
    padding:18px 40px;
    border-radius:15px;
    background:linear-gradient(90deg,#7c3aed,#06b6d4);
    color:white;
    text-decoration:none;
}

.about-section{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    padding:60px 8%;
}

.about-card,
.founder-card,
.contact-card{
    background:rgba(255,255,255,0.08);
    padding:40px;
    border-radius:25px;
}

.about-card h2,
.contact-card h2{
    margin-bottom:20px;
}

.about-card p,
.contact-card p{
    line-height:1.9;
    color:#cbd5e1;
}

.founder-section{
    padding:40px 8% 100px;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    padding:60px 8%;
}

.contact-info{
    display:grid;
    gap:25px;
}

.contact-form{
    background:rgba(255,255,255,0.08);
    padding:40px;
    border-radius:25px;
}

@media(max-width:768px){

    .why-section,
    .contact-container{
        grid-template-columns:1fr;
    }

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

    .section-title h1,
    .why-left h1,
    .testimonial-section h1,
    .cta-section h1{
        font-size:40px;
    }

}

/* PREMIUM HERO */

.premium-hero{
    min-height:100vh;

    display:grid;
    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:60px;

    padding:80px 8%;
}

.hero-badge{
    display:inline-block;

    padding:10px 20px;

    border-radius:30px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.1);

    margin-bottom:30px;
}

.premium-title{
    font-size:85px;

    line-height:1.05;

    margin-bottom:30px;

    background:linear-gradient(
        90deg,
        #ffffff,
        #7c3aed,
        #06b6d4
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.premium-description{
    color:#cbd5e1;

    font-size:22px;

    line-height:1.9;

    max-width:700px;
}

.hero-stats{
    display:flex;
    gap:30px;

    margin-top:50px;

    flex-wrap:wrap;
}

.hero-stat h2{
    font-size:40px;
}

.hero-stat p{
    color:#94a3b8;
}

.hero-right{
    position:relative;
}

.main-dashboard{
    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    border-radius:30px;

    padding:30px;

    border:1px solid rgba(255,255,255,0.1);

    position:relative;

    z-index:2;
}

.dashboard-header{
    display:flex;
    gap:10px;

    margin-bottom:25px;
}

.dashboard-dot{
    width:14px;
    height:14px;

    border-radius:50%;
}

.red{
    background:#ef4444;
}

.yellow{
    background:#facc15;
}

.green{
    background:#22c55e;
}

.dashboard-content{
    margin-top:25px;
}

.dashboard-box{
    padding:20px;

    border-radius:20px;

    background:#111827;

    margin-bottom:20px;
}

.floating-card{
    position:absolute;

    padding:18px 25px;

    border-radius:20px;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,0.1);

    animation:float 4s ease-in-out infinite;
}

.floating-1{
    top:-30px;
    right:-20px;
}

.floating-2{
    bottom:100px;
    left:-40px;
}

.floating-3{
    bottom:-20px;
    right:50px;
}

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0px);
    }

}

.trusted-section{
    padding:60px 8%;

    text-align:center;
}

.trusted-section p{
    color:#94a3b8;

    margin-bottom:40px;
}

.trusted-grid{
    display:flex;
    justify-content:center;
    gap:25px;

    flex-wrap:wrap;
}

.trusted-box{
    padding:18px 35px;

    border-radius:15px;

    background:rgba(255,255,255,0.05);

    border:1px solid rgba(255,255,255,0.08);
}

.section-header{
    text-align:center;

    padding:100px 8% 40px;
}

.section-header h1{
    font-size:60px;

    margin-bottom:20px;
}

.section-header p{
    color:#94a3b8;
}

.modern-tools-grid{
    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

    gap:30px;

    padding:40px 8%;
}

.modern-tool-card{
    background:rgba(255,255,255,0.08);

    border-radius:30px;

    padding:35px;

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,0.08);

    transition:0.4s;
}

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

.tool-top{
    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;
}

.tool-icon{
    width:70px;
    height:70px;

    border-radius:20px;

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

    background:linear-gradient(
        90deg,
        #7c3aed,
        #06b6d4
    );

    font-size:28px;
}

.tool-preview{
    margin:30px 0;
}

.preview-line{
    height:12px;

    border-radius:30px;

    background:#1e293b;

    margin-bottom:15px;
}

.preview-line.small{
    width:60%;
}

.modern-tool-card a{
    display:inline-block;

    padding:15px 30px;

    border-radius:15px;

    background:linear-gradient(
        90deg,
        #7c3aed,
        #06b6d4
    );

    color:white;

    text-decoration:none;
}

.features-section{
    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

    padding:100px 8%;
}

.feature-card{
    background:rgba(255,255,255,0.08);

    padding:40px;

    border-radius:30px;

    text-align:center;
}

.feature-icon{
    font-size:60px;

    margin-bottom:20px;
}

.final-cta{
    text-align:center;

    padding:120px 8%;
}

.final-cta h1{
    font-size:70px;

    margin-bottom:25px;
}

.final-cta p{
    color:#94a3b8;

    margin-bottom:40px;
}

.final-cta a{
    display:inline-block;

    padding:18px 40px;

    border-radius:15px;

    background:linear-gradient(
        90deg,
        #7c3aed,
        #06b6d4
    );

    color:white;

    text-decoration:none;
}

@media(max-width:992px){

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

    .premium-title{
        font-size:55px;
    }

    .final-cta h1{
        font-size:45px;
    }

}

/* EMAIL PAGE */

.email-page{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

    min-height:100vh;

    padding:100px 8%;
}

.tool-label{

    display:inline-block;

    padding:10px 20px;

    border-radius:30px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.08);

    margin-bottom:30px;
}

.email-title{

    font-size:75px;

    line-height:1.05;

    margin-bottom:30px;

    background:linear-gradient(
        90deg,
        #ffffff,
        #7c3aed,
        #06b6d4
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.email-description{

    color:#cbd5e1;

    font-size:20px;

    line-height:1.9;

    margin-bottom:40px;
}

.email-features{

    display:grid;

    gap:20px;
}

.email-feature{

    padding:20px;

    border-radius:20px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.08);
}

/* CARD */

.email-card{

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    border-radius:30px;

    padding:35px;

    border:1px solid rgba(255,255,255,0.08);
}

.card-header{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;
}

.header-dots{

    display:flex;

    gap:10px;
}

.dot{

    width:14px;
    height:14px;

    border-radius:50%;
}

.red{
    background:#ef4444;
}

.yellow{
    background:#facc15;
}

.green{
    background:#22c55e;
}

.double-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:20px;
}

.generate-btn{

    margin-top:10px;
}

/* OUTPUT */

.output-section{

    padding:0 8% 100px;
}

.output-container{

    max-width:1200px;

    margin:auto;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    border-radius:30px;

    padding:35px;

    border:1px solid rgba(255,255,255,0.08);
}

.output-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:30px;
}

.output-actions{

    display:flex;

    gap:15px;
}

.output-actions button{

    width:auto;

    padding:12px 22px;
}

#output{

    height:400px;

    background:#0f172a;

    border-radius:20px;

    padding:25px;

    line-height:1.8;

    font-size:16px;
}

/* LOADER */

.loading{

    text-align:center;

    margin-bottom:30px;
}

.hidden{
    display:none;
}

.premium-loader{

    width:60px;
    height:60px;

    border-radius:50%;

    border:5px solid rgba(255,255,255,0.1);

    border-top:5px solid #06b6d4;

    margin:auto;

    animation:spin 1s linear infinite;
}

@keyframes spin{

    100%{
        transform:rotate(360deg);
    }

}

/* CTA */

.email-cta{

    padding:100px 8%;

    text-align:center;
}

.email-cta h1{

    font-size:42px;

    line-height:1.5;
}

.email-cta a{

    color:#06b6d4;

    text-decoration:none;
}

/* MOBILE */

@media(max-width:992px){

    .email-page{

        grid-template-columns:1fr;
    }

    .email-title{

        font-size:52px;
    }

    .double-grid{

        grid-template-columns:1fr;
    }

    .output-top{

        flex-direction:column;

        gap:20px;
    }

}

/* YOUTUBE SUMMARY PAGE */

.yt-page{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

    min-height:100vh;

    padding:100px 8%;
}

.yt-title{

    font-size:80px;

    line-height:1.05;

    margin-bottom:30px;

    background:linear-gradient(
        90deg,
        #ffffff,
        #7c3aed,
        #06b6d4
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.yt-description{

    font-size:20px;

    line-height:1.9;

    color:#cbd5e1;

    margin-bottom:40px;
}

.yt-features{

    display:grid;

    gap:20px;
}

.yt-feature{

    padding:20px;

    border-radius:20px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.08);
}

/* CARD */

.yt-card{

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    border-radius:30px;

    padding:35px;

    border:1px solid rgba(255,255,255,0.08);
}

.yt-input-box{

    display:flex;

    align-items:center;

    gap:20px;

    background:#0f172a;

    padding:20px;

    border-radius:20px;

    margin-bottom:30px;
}

.yt-input-box i{

    font-size:35px;

    color:red;
}

/* LOADING */

.loading-section{

    text-align:center;

    padding:80px 8%;
}

.loading-section h2{

    margin-top:30px;

    margin-bottom:15px;
}

.loading-section p{

    color:#94a3b8;
}

/* DASHBOARD */

.yt-dashboard{

    padding:0 8% 100px;
}

.dashboard-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:40px;
}

.dashboard-top h1{

    font-size:45px;
}

.dashboard-actions{

    display:flex;

    gap:15px;
}

.dashboard-actions button{

    width:auto;

    padding:14px 25px;
}

/* AI RESULT CARD */

.ai-result-card{

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    border-radius:30px;

    padding:35px;

    margin-bottom:30px;

    border:1px solid rgba(255,255,255,0.08);
}

.result-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:25px;
}

.result-top button{

    width:auto;

    padding:12px 20px;
}

.ai-result-card h2{

    font-size:30px;
}

.ai-result-card p{

    line-height:2;

    color:#e2e8f0;

    font-size:17px;
}

.ai-result-card ul{

    padding-left:20px;
}

.ai-result-card li{

    margin-bottom:18px;

    line-height:1.8;

    color:#e2e8f0;
}

/* CTA */

.yt-cta{

    padding:100px 8%;

    text-align:center;
}

.yt-cta h1{

    font-size:42px;

    line-height:1.5;
}

.yt-cta a{

    color:#06b6d4;

    text-decoration:none;
}

/* MOBILE */

@media(max-width:992px){

    .yt-page{

        grid-template-columns:1fr;
    }

    .yt-title{

        font-size:55px;
    }

    .dashboard-top{

        flex-direction:column;

        gap:20px;
    }

    .dashboard-actions{

        flex-wrap:wrap;
        justify-content:center;
    }

    .result-top{

        flex-direction:column;

        gap:20px;
        align-items:flex-start;
    }

}

/* VOICE NOTES AI */

.voice-page{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

    min-height:100vh;

    padding:100px 8%;
}

.voice-title{

    font-size:75px;

    line-height:1.05;

    margin-bottom:30px;

    background:linear-gradient(
        90deg,
        #ffffff,
        #7c3aed,
        #06b6d4
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.voice-description{

    color:#cbd5e1;

    font-size:20px;

    line-height:1.9;

    margin-bottom:40px;
}

.voice-features{

    display:grid;

    gap:20px;
}

.voice-feature{

    padding:20px;

    border-radius:20px;

    background:rgba(255,255,255,0.08);

    border:1px solid rgba(255,255,255,0.08);
}

.voice-card{

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    border-radius:30px;

    padding:35px;

    border:1px solid rgba(255,255,255,0.08);
}

.voice-card textarea{

    height:250px;

    margin-bottom:25px;
}

.voice-output-section{

    padding:0 8% 100px;
}

.voice-output-container{

    max-width:1200px;

    margin:auto;

    background:rgba(255,255,255,0.08);

    backdrop-filter:blur(20px);

    border-radius:30px;

    padding:35px;

    border:1px solid rgba(255,255,255,0.08);
}

#voice-output{

    height:400px;

    background:#0f172a;

    border-radius:20px;

    padding:25px;

    line-height:1.8;

    font-size:16px;
}

@media(max-width:992px){

    .voice-page{

        grid-template-columns:1fr;
    }

    .voice-title{

        font-size:55px;
    }

}

.notes-card{

background:rgba(255,255,255,0.05);

border:1px solid rgba(255,255,255,0.08);

padding:50px;

border-radius:35px;

margin-top:40px;

backdrop-filter:blur(20px);

box-shadow:0 15px 50px rgba(0,0,0,0.3);

animation:fadeUp 0.5s ease;

overflow:hidden;
}

.notes-card h2{

font-size:42px;

margin-bottom:35px;

background:linear-gradient(90deg,#7c3aed,#06b6d4);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;
}

.notes-content{

line-height:2.1;

font-size:18px;

color:#e2e8f0;
}

.notes-content h1{

font-size:42px;

margin-top:40px;

margin-bottom:25px;

color:white;
}

.notes-content h2{

font-size:32px;

margin-top:35px;

margin-bottom:20px;

color:#38bdf8;
}

.notes-content h3{

font-size:24px;

margin-top:30px;

margin-bottom:15px;

color:#a855f7;
}

.notes-content strong{

color:white;
}

.notes-content li{

margin-left:25px;

margin-bottom:15px;

color:#cbd5e1;
}

.notes-content p{

margin-bottom:20px;
}

@keyframes fadeUp{

from{

opacity:0;
transform:translateY(30px);

}

to{

opacity:1;
transform:translateY(0);

}

}

.voice-output-box{

height:600px;

overflow-y:auto;

padding:40px;

border-radius:25px;

background:#08122b;

margin-top:20px;

scroll-behavior:smooth;
}

/* SCROLLBAR */

.voice-output-box::-webkit-scrollbar{

width:10px;
}

.voice-output-box::-webkit-scrollbar-track{

background:#111827;

border-radius:20px;
}

.voice-output-box::-webkit-scrollbar-thumb{

background:linear-gradient(
180deg,
#7c3aed,
#06b6d4
);

border-radius:20px;
}

/* NOTES */

.notes-content{

color:#e2e8f0;

line-height:2;

font-size:18px;
}

.notes-content h1{

font-size:42px;

margin-bottom:30px;

color:white;
}

.notes-content h2{

font-size:30px;

margin-top:40px;

margin-bottom:20px;

color:#38bdf8;
}

.notes-content h3{

font-size:24px;

margin-top:30px;

margin-bottom:15px;

color:#a855f7;
}

.notes-content p{

margin-bottom:20px;
}

.notes-content ul{

padding-left:25px;

margin-bottom:25px;
}

.notes-content li{

margin-bottom:15px;
}


/* =========================================
LINKEDIN POST GENERATOR
========================================= */

.linkedin-page{

display:flex;
justify-content:space-between;
align-items:center;
gap:60px;

padding:80px 8%;

flex-wrap:wrap;
}

.linkedin-left{

flex:1;
min-width:320px;
}

.linkedin-right{

flex:1;
min-width:320px;
}

.linkedin-title{

font-size:78px;
font-weight:800;
line-height:1.1;

background:linear-gradient(
90deg,
#ffffff,
#8b5cf6,
#38bdf8
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

margin:25px 0;
}

.linkedin-description{

font-size:22px;
line-height:1.8;
color:#cbd5e1;

margin-bottom:40px;
}

.linkedin-features{

display:flex;
flex-direction:column;
gap:20px;
}

.linkedin-feature{

padding:22px;

background:rgba(255,255,255,0.06);

border-radius:18px;

border:1px solid rgba(255,255,255,0.08);

font-size:18px;
}

.linkedin-card{

background:rgba(255,255,255,0.06);

backdrop-filter:blur(20px);

padding:35px;

border-radius:30px;

border:1px solid rgba(255,255,255,0.08);

box-shadow:0 10px 40px rgba(0,0,0,0.3);
}

.linkedin-card textarea,
.linkedin-card input,
.linkedin-card select{

width:100%;

padding:18px;

margin-bottom:18px;

background:#091224;

border:none;

border-radius:16px;

color:white;

font-size:16px;
}

.linkedin-card textarea{

height:160px;
resize:none;
}

.linkedin-actions{

display:flex;
gap:15px;
}

.linkedin-actions button,
.output-actions button{

flex:1;

padding:16px;

border:none;

border-radius:16px;

background:linear-gradient(
90deg,
#7c3aed,
#06b6d4
);

color:white;

font-size:17px;
font-weight:600;

cursor:pointer;

transition:0.3s;
}

.linkedin-actions button:hover,
.output-actions button:hover{

transform:translateY(-3px);
}

.linkedin-output-section{

padding:40px 8% 100px;
}

.linkedin-output-container{

background:rgba(255,255,255,0.06);

padding:35px;

border-radius:30px;

border:1px solid rgba(255,255,255,0.08);
}

.output-top{

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

margin-bottom:30px;

flex-wrap:wrap;
gap:20px;
}

.output-actions{

display:flex;
gap:15px;
}

.linkedin-output-box{

background:#091224;

padding:30px;

border-radius:20px;

min-height:350px;

max-height:700px;

overflow-y:auto;

white-space:pre-wrap;

line-height:2;

font-size:18px;

color:#f8fafc;
}

.stats-bar{

display:flex;
gap:30px;

margin-bottom:25px;

color:#cbd5e1;

flex-wrap:wrap;
}

.toast{

position:fixed;

bottom:30px;
right:30px;

background:linear-gradient(
90deg,
#7c3aed,
#06b6d4
);

padding:18px 30px;

border-radius:14px;

color:white;

opacity:0;

pointer-events:none;

transition:0.4s;

z-index:9999;
}

.toast.show{

opacity:1;
}

@media(max-width:768px){

.linkedin-title{

font-size:48px;
}

.linkedin-page{

padding:60px 5%;
}

.output-top{

flex-direction:column;
align-items:flex-start;
}

.output-actions{

width:100%;
flex-direction:column;
}

.linkedin-actions{

flex-direction:column;
}
}


@media(max-width:1200px){

.tools-grid{

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

@media(max-width:768px){

.tools-grid{

grid-template-columns:1fr;
}

.tool-card{

min-height:auto;
}

.tool-card h2,
.tool-card p{

height:auto;
}
}


/* =========================================
GRAMMAR FIXER AI
========================================= */

.grammar-page{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

padding:100px 8%;
}

.grammar-title{

font-size:75px;

line-height:1.05;

margin-bottom:30px;

background:linear-gradient(
90deg,
#ffffff,
#7c3aed,
#06b6d4
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.grammar-description{

font-size:20px;

line-height:1.9;

color:#cbd5e1;

margin-bottom:40px;
}

.grammar-features{

display:grid;

gap:20px;
}

.grammar-feature{

padding:20px;

border-radius:20px;

background:rgba(255,255,255,0.08);

border:1px solid rgba(255,255,255,0.08);
}

.grammar-card{

background:rgba(255,255,255,0.08);

backdrop-filter:blur(20px);

padding:35px;

border-radius:30px;

border:1px solid rgba(255,255,255,0.08);
}

.grammar-card textarea{

height:260px;
}

.grammar-stats{

display:flex;

justify-content:space-between;

margin-bottom:20px;

color:#94a3b8;
}

.grammar-actions{

display:flex;

gap:20px;
}

.grammar-output-section{

padding:0 8% 100px;
}

.grammar-output-container{

background:rgba(255,255,255,0.08);

padding:35px;

border-radius:30px;

border:1px solid rgba(255,255,255,0.08);
}

.grammar-output-box{

background:#091224;

padding:30px;

border-radius:25px;

min-height:500px;

max-height:700px;

overflow-y:auto;
}

.grammar-result-card h2{

margin-bottom:30px;

font-size:38px;

background:linear-gradient(
90deg,
#7c3aed,
#06b6d4
);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;
}

.grammar-result-content{

line-height:2;

font-size:18px;

color:#e2e8f0;
}

@media(max-width:992px){

.grammar-page{

grid-template-columns:1fr;
}

.grammar-title{

font-size:52px;
}

.grammar-actions{

flex-direction:column;
}
}


/* =========================================
TOOLS SEARCH BAR
========================================= */

.tools-search-wrapper{

padding:0 8% 40px;

display:flex;

justify-content:center;
}

.tools-search-box{

position:relative;

width:100%;

max-width:700px;
}

.tools-search-box input{

width:100%;

padding:22px 25px 22px 65px;

border-radius:25px;

border:1px solid rgba(255,255,255,0.08);

background:rgba(255,255,255,0.06);

backdrop-filter:blur(20px);

font-size:18px;

color:white;

outline:none;

transition:0.3s;
}

.tools-search-box input:focus{

border:1px solid rgba(124,58,237,0.5);

box-shadow:
0 0 30px rgba(124,58,237,0.2);
}

.tools-search-box i{

position:absolute;

left:25px;
top:50%;

transform:translateY(-50%);

font-size:20px;

color:#06b6d4;
}

.tools-search-box input::placeholder{

color:#94a3b8;
}


/* INSTAGRAM CAPTION AI */

.caption-page{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;

align-items:center;

padding:100px 8%;
}

.caption-title{

font-size:75px;

line-height:1.1;

margin:25px 0;

background:linear-gradient(
90deg,
#ffffff,
#7c3aed,
#06b6d4
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.caption-description{

font-size:20px;

line-height:1.9;

color:#cbd5e1;

margin-bottom:40px;
}

.caption-features{

display:grid;
gap:20px;
}

.caption-feature{

padding:20px;

border-radius:20px;

background:rgba(255,255,255,0.08);

border:1px solid rgba(255,255,255,0.08);
}

.caption-card{

background:rgba(255,255,255,0.08);

padding:35px;

border-radius:30px;

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,0.08);
}

.caption-actions{

display:flex;
gap:15px;
}

.caption-output-section{

padding:0 8% 100px;
}

.caption-output-container{

background:rgba(255,255,255,0.08);

padding:35px;

border-radius:30px;

border:1px solid rgba(255,255,255,0.08);
}

.caption-output-box{

background:#081120;

padding:30px;

border-radius:25px;

min-height:400px;

max-height:700px;

overflow-y:auto;

line-height:2;

font-size:18px;
}

.caption-result{

animation:fadeUp 0.5s ease;
}

@media(max-width:992px){

.caption-page{

grid-template-columns:1fr;
}

.caption-title{

font-size:52px;
}

.caption-actions{

flex-direction:column;
}
}


/* REEL HOOK AI */

.reel-page{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

padding:100px 8%;
}

.reel-title{

font-size:75px;

line-height:1.1;

margin:25px 0;

background:linear-gradient(
90deg,
#ffffff,
#7c3aed,
#06b6d4
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.reel-description{

font-size:20px;

line-height:1.9;

color:#cbd5e1;

margin-bottom:40px;
}

.reel-features{

display:grid;
gap:20px;
}

.reel-feature{

padding:20px;

border-radius:20px;

background:rgba(255,255,255,0.08);

border:1px solid rgba(255,255,255,0.08);
}

.reel-card{

background:rgba(255,255,255,0.08);

padding:35px;

border-radius:30px;

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,0.08);
}

.reel-card textarea{

height:220px;
}

.reel-actions{

display:flex;
gap:15px;
}

.reel-output-section{

padding:0 8% 100px;
}

.reel-output-container{

background:rgba(255,255,255,0.08);

padding:35px;

border-radius:30px;

border:1px solid rgba(255,255,255,0.08);
}

.reel-output-box{

background:#081120;

padding:30px;

border-radius:25px;

min-height:400px;

max-height:700px;

overflow-y:auto;

line-height:2;

font-size:18px;
}

.hook-result{

animation:fadeUp 0.5s ease;
}

@media(max-width:992px){

.reel-page{

grid-template-columns:1fr;
}

.reel-title{

font-size:52px;
}

.reel-actions{

flex-direction:column;
}
}

/* ===================================
YOUTUBE TITLE GENERATOR
=================================== */

.yt-title-page{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;

align-items:center;

padding:100px 8%;
}

.yt-main-title{

font-size:75px;

line-height:1.05;

margin:30px 0;

background:linear-gradient(
90deg,
#ffffff,
#7c3aed,
#06b6d4
);

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.yt-main-description{

font-size:20px;

line-height:1.9;

color:#cbd5e1;

margin-bottom:40px;
}

.yt-title-features{

display:grid;
gap:20px;
}

.yt-feature-box{

padding:20px;

border-radius:20px;

background:rgba(255,255,255,0.08);

border:1px solid rgba(255,255,255,0.08);
}

.yt-generator-card{

background:rgba(255,255,255,0.08);

padding:35px;

border-radius:30px;

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,0.08);
}

.generator-actions{

display:flex;
gap:20px;
}

.stats-row{

display:flex;
justify-content:space-between;

margin-bottom:20px;

color:#cbd5e1;
}

.yt-title-output-section{

padding:0 8% 100px;
}

.yt-output-container{

background:rgba(255,255,255,0.08);

padding:35px;

border-radius:30px;

border:1px solid rgba(255,255,255,0.08);
}

.yt-title-output-box{

background:#0f172a;

padding:30px;

border-radius:25px;

min-height:400px;

max-height:700px;

overflow-y:auto;
}

.single-title-card{

background:rgba(255,255,255,0.05);

padding:22px;

border-radius:20px;

margin-bottom:20px;

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

gap:20px;

line-height:1.8;
}

.single-title-card button{

width:auto;

padding:12px 20px;
}

@media(max-width:992px){

.yt-title-page{

grid-template-columns:1fr;
}

.yt-main-title{

font-size:52px;
}

.generator-actions{

flex-direction:column;
}

.single-title-card{

flex-direction:column;
align-items:flex-start;
}

}