/*=====================================
HERO SECTION
=====================================*/

.hero{
    padding:110px 0 80px;
    background:#0B0B0F;
    overflow:hidden;
}

.hero .container{
    max-width:1200px;
    margin:auto;
    padding:0 30px;
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:70px;
    align-items:flex-start;
}

/*=====================================
HERO CONTENT
=====================================*/

.hero-subtitle{
    display:inline-block;
    padding:10px 22px;
    background:rgba(237,76,132,.12);
    border:1px solid rgba(237,76,132,.30);
    color:#ED4C84;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:28px;
}

.hero h1{
    font-size:72px;
    line-height:1;
    font-weight:800;
    letter-spacing:-2px;
    color:#fff;
    margin-bottom:28px;
}

.hero h1 span{
    color:#ED4C84;
}

.hero p{
    max-width:560px;
    font-size:18px;
    line-height:1.9;
    color:#B8BCC7;
    margin-bottom:45px;
}

/*=====================================
BUTTONS
=====================================*/

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-bottom:55px;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:17px 34px;
    border-radius:14px;
    font-weight:700;
    text-decoration:none;
    transition:.35s ease;
    cursor:pointer;
}

.btn-primary{
    background:#ED4C84;
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 20px 45px rgba(237,76,132,.35);
}

.btn-secondary{
    background:#151515;
    color:#fff;
    border:1px solid rgba(255,255,255,.10);
}

.btn-secondary:hover{
    background:#1B1B1B;
    border-color:#ED4C84;
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(237,76,132,.15);
}

/*=====================================
FEATURES
=====================================*/

.hero-features{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.feature{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:22px;
    background:#151515;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    transition:.35s ease;
}

.feature:hover{
    transform:translateY(-6px);
    background:#191919;
    border-color:#ED4C84;
    box-shadow:
        0 20px 40px rgba(0,0,0,.25),
        0 0 30px rgba(237,76,132,.12);
}

.feature-icon{
    width:60px;
    height:60px;
    border-radius:16px;
    background:#ED4C84;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:26px;
    flex-shrink:0;
}

.feature h4{
    color:#fff;
    font-size:20px;
    margin-bottom:8px;
}

.feature p{
    margin:0;
    color:#CBD5E1;
    font-size:15px;
    line-height:1.7;
}

/*=====================================
HERO IMAGE
=====================================*/

.hero-image{
    position:relative;
    display:flex;
    justify-content:flex-end;
    align-items:flex-start;
    padding-top:10px;
}

.hero-image img{
    width:100%;
    max-width:400px;
    border-radius:28px;
    position:relative;
    z-index:2;
    border:3px solid rgba(237,76,132,.18);
    box-shadow:
        0 30px 70px rgba(0,0,0,.35),
        0 0 45px rgba(237,76,132,.15);
    transition:.4s ease;
}

.hero-image img:hover{
    transform:translateY(-8px);
    box-shadow:
        0 40px 90px rgba(0,0,0,.45),
        0 0 60px rgba(237,76,132,.25);
}

.glow{
    position:absolute;
    top:-40px;
    right:-30px;
    width:500px;
    height:500px;
    background:radial-gradient(circle,#ED4C84 0%,transparent 70%);
    opacity:.20;
    filter:blur(70px);
    z-index:1;
}

/*=====================================
TABLET
=====================================*/

@media (max-width:991px){

.hero{
    padding:90px 0;
}

.hero .container{
    grid-template-columns:1fr;
    gap:50px;
    text-align:center;
}

.hero-content{
    order:1;
}

.hero-image{
    order:2;
    justify-content:center;
    padding-top:0;
}

.hero h1{
    font-size:54px;
}

.hero p{
    margin:0 auto 40px;
}

.hero-buttons{
    justify-content:center;
}

.hero-features{
    max-width:650px;
    margin:auto;
}

.feature{
    text-align:left;
}

.hero-image img{
    max-width:340px;
}

}

/*=====================================
MOBILE
=====================================*/

@media (max-width:576px){

.hero{
    padding:70px 0;
}

.hero .container{
    padding:0 20px;
}

.hero-subtitle{
    font-size:12px;
    padding:8px 18px;
}

.hero h1{
    font-size:40px;
    line-height:1.08;
}

.hero p{
    font-size:16px;
    line-height:1.8;
}

.hero-buttons{
    flex-direction:column;
}

.btn{
    width:100%;
}

.hero-image img{
    max-width:290px;
}

.feature{
    padding:18px;
}

.feature-icon{
    width:52px;
    height:52px;
    font-size:22px;
}

.feature h4{
    font-size:18px;
}

.feature p{
    font-size:14px;
}

}