/* ===========================
   GOOGLE RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#090909;
    color:#fff;
    font-family:'Inter',sans-serif;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

/* ===========================
   HEADER
=========================== */

.header{
    width:100%;
    padding:22px 0;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    background:rgba(10,10,10,.85);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.08);
}

.header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    text-decoration:none;
    display:flex;
    flex-direction:column;
}

.logo span{
    color:#ff5d95;
    font-size:30px;
    font-family:'Poppins',sans-serif;
    font-weight:700;
}

.logo small{
    color:#fff;
    font-size:12px;
    letter-spacing:1px;
}

.navbar ul{
    display:flex;
    list-style:none;
    gap:40px;
}

.navbar a{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    transition:.3s;
}

.navbar a:hover,
.navbar .active{
    color:#ff5d95;
}

.btn{
    padding:14px 28px;
    border-radius:8px;
    background:#ff5d95;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-3px);
}
/*==============================
 HERO
===============================*/

.hero{
    padding:170px 0 100px;
}

.hero-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:60px;
}

.hero-subtitle{
    color:#ff5d95;
    font-weight:600;
    letter-spacing:2px;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
    margin:20px 0;
    font-family:'Poppins',sans-serif;
}

.hero h1 span{
    color:#ff5d95;
}

.hero p{
    color:#bbb;
    font-size:18px;
    line-height:1.8;
    max-width:600px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    margin:35px 0;
}

.btn-outline{
    padding:14px 28px;
    border:2px solid #ff5d95;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
}

.btn-outline:hover{
    background:#ff5d95;
}

.hero-features{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}

.feature{
    display:flex;
    gap:12px;
    align-items:center;
}

.feature h4{
    font-size:15px;
}

.feature small{
    color:#aaa;
}

.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:420px;
    position:relative;
    z-index:2;
}

.glow{
    position:absolute;
    width:380px;
    height:380px;
    background:#ff5d95;
    border-radius:50%;
    filter:blur(120px);
    opacity:.35;
    top:90px;
}/*=========================
 SOFTWARE CARDS
==========================*/

.hero-image{
    position:relative;
}

.software-card{

    position:absolute;

    right:-20px;

    display:flex;

    align-items:center;

    gap:12px;

    padding:18px 28px;

    background:#121212;

    border:1px solid rgba(255,255,255,.08);

    border-radius:14px;

    color:white;

    font-weight:600;

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.software-card i{

    color:#ff5d95;

    font-size:28px;

}

.capcut{

    top:80px;

}

.flowveo{

    top:180px;

}

.elevenlabs{

    top:280px;

}

.hero-image img{

    width:430px;

    position:relative;

    z-index:10;

}/*=========================================
PAIN POINTS
=========================================*/

.pain-points{

    padding:100px 0;

}

.pain-wrapper{

    display:grid;

    grid-template-columns:1fr 120px 1fr;

    gap:30px;

    align-items:center;

}

.pain-box,
.solution-box{

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:40px;

}

.pain-box h2,
.solution-box h2{

    color:#ff5d95;

    margin-bottom:25px;

    font-size:22px;

}

.pain-box ul,
.solution-box ul{

    list-style:none;

}

.pain-box li,
.solution-box li{

    margin-bottom:18px;

    color:#ddd;

    font-size:17px;

}

.arrow-box{

    display:flex;

    justify-content:center;

    align-items:center;

}

.arrow-circle{

    width:90px;

    height:90px;

    border-radius:50%;

    border:2px solid #ff5d95;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    font-size:38px;

}/*=================================
SERVICES
=================================*/

.services{
    padding:100px 0;
}

.section-subtitle{
    color:#ff5d95;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:600;
}

.section-title{
    font-size:42px;
    margin:10px 0 40px;
    font-family:'Poppins',sans-serif;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.service-card{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#ff5d95;
    box-shadow:0 20px 40px rgba(255,93,149,.15);
}

.service-card i{
    font-size:42px;
    color:#ff5d95;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.service-card p{
    color:#bdbdbd;
    line-height:1.8;
}/*=================================
PORTFOLIO
=================================*/

.portfolio{
    padding:100px 0;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.portfolio-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    border:1px solid rgba(255,255,255,.08);
}

.portfolio-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.4s;
    display:block;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,.9), rgba(0,0,0,.2));
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:25px;
}

.overlay i{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:65px;
    color:white;
}

.overlay h3{
    margin-bottom:6px;
}

.overlay p{
    color:#ddd;
}

.portfolio-card:hover img{
    transform:scale(1.08);
}

.portfolio-btn{
    margin-top:45px;
    text-align:center;
}/*=============================
TESTIMONIALS
=============================*/

.testimonials{
    padding:100px 0;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.testimonial-card{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
    transition:.3s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    border-color:#ff5d95;
}

.quote{
    font-size:45px;
    color:#ff5d95;
    margin-bottom:20px;
}

.testimonial-card p{
    color:#ccc;
    line-height:1.8;
    margin-bottom:30px;
}

.client{
    display:flex;
    align-items:center;
    gap:15px;
}

.client img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.client h4{
    margin-bottom:4px;
}

.client small{
    color:#aaa;
}

.stars{
    margin-top:8px;
    color:#ff5d95;
}/*==============================
CONTACT
==============================*/

.contact{
    padding:100px 0;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:40px;
}

.contact-form input,
.contact-form textarea{

    width:100%;
    padding:18px;
    margin-bottom:20px;

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    border-radius:10px;

    color:white;

    font-size:16px;

}

.contact-form textarea{

    resize:none;

}

.contact-form button{

    border:none;

    cursor:pointer;

}

.contact-info{

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:35px;

}

.info-box{

    margin-bottom:35px;

}

.info-box h3{

    color:#ff5d95;

    margin-bottom:10px;

}

.info-box p{

    color:#bbb;

}

.social-links{

    display:flex;

    gap:18px;

}

.social-links a{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#1a1a1a;

    border-radius:50%;

    color:white;

    text-decoration:none;

    transition:.3s;

    font-size:20px;

}

.social-links a:hover{

    background:#ff5d95;

}


/*=====================================
VERSION 2
PREMIUM UI
=====================================*/

/*=====================================
COMMON CHALLENGES
=====================================*/

.problems{
    padding:100px 0;
}

.problems .section-header{
    max-width:800px;
    margin:0 auto 60px;
    text-align:center;
}

.problems .section-header h2{
    font-size:56px;
    line-height:1.2;
    margin:15px 0;
}

.problems .section-header p{
    color:#bdbdbd;
    font-size:18px;
    line-height:1.8;
}

.problems-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.problem-card{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px;
    transition:.35s;
}

.problem-card:hover{
    transform:translateY(-8px);
    border-color:#ff5d95;
    box-shadow:0 20px 40px rgba(255,93,149,.15);
}

.problem-icon{
    width:65px;
    height:65px;
    background:rgba(255,93,149,.12);
    border-radius:16px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:30px;
    margin-bottom:20px;
}

.problem-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.problem-card p{
    color:#bdbdbd;
    line-height:1.8;
}

@media(max-width:768px){

.problems-grid{
    grid-template-columns:1fr;
}

.problems .section-header h2{
    font-size:38px;
}

}