/* ==========================================================
   GLOBEVEST
   STYLE.CSS
   PART 1
   Reset • Variables • Header • Hero
==========================================================*/

/*==========================
    GOOGLE FONT
==========================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==========================
    CSS VARIABLES
==========================*/

:root{

    --bg:#16031F;
    --bg-light:#1F072D;
    --card:#1A0627;

    --yellow:#FDB913;
    --yellow-dark:#F5A400;

    --purple:#8D37FF;
    --purple2:#B13EFF;

    --white:#FFFFFF;

    --text:#d4d4d4;

    --border:rgba(255,255,255,.08);

    --radius:22px;

    --transition:.35s ease;

    --shadow:
        0 15px 40px rgba(0,0,0,.25);

}

/*==========================
    RESET
==========================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Poppins",sans-serif;

    background:var(--bg);

    color:var(--white);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    width:100%;

    display:block;

}

a{

    color:inherit;

    text-decoration:none;

}

button{

    border:none;

    background:none;

    font-family:inherit;

}

ul{

    list-style:none;

}

/*==========================
    SCROLLBAR
==========================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#14041d;

}

::-webkit-scrollbar-thumb{

    background:var(--purple);

    border-radius:30px;

}

/*==========================
    CONTAINER
==========================*/

.container{

    width:min(1150px,92%);

    margin:auto;

}

/*==========================
    GLOBAL
==========================*/

section{

    padding:90px 0;

}

.section-title{

    text-align:center;

    margin-bottom:65px;

}

.section-title h2{

    font-size:42px;

    line-height:1.2;

    font-weight:700;

}

.section-title span{

    color:var(--purple);

}

.section-title p{

    color:var(--text);

    margin-top:18px;

}

/*==========================
    BUTTONS
==========================*/

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:100%;

    height:58px;

    border-radius:100px;

    font-weight:600;

    transition:var(--transition);

    cursor:pointer;

}

.btn-yellow{

    background:var(--yellow);

    color:#181818;

}

.btn-yellow:hover{

    background:var(--yellow-dark);

    transform:translateY(-4px);

}

.btn-purple{

    background:linear-gradient(
        90deg,
        #7F35FF,
        #B53DFF
    );

    color:#fff;

}

.btn-purple:hover{

    transform:translateY(-4px);

}

/*==========================
    HEADER
==========================*/

.header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:999;

    background:rgba(22,3,31,.90);

    backdrop-filter:blur(16px);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:80px;

}

.logo{

    display:flex;

    align-items:center;

    gap:10px;

    font-weight:700;

    font-size:22px;

}

.logo-circle{

    width:14px;

    height:14px;

    border-radius:50%;

    background:var(--yellow);

}

.menu-btn{

    color:#fff;

    font-size:20px;

    cursor:pointer;

}

/*==========================
    HERO
==========================*/

.hero{

    padding-top:150px;

    text-align:center;

}

.hero-image{

    max-width:520px;

    margin:0 auto 45px;

}

.hero h1{

    font-size:58px;

    line-height:1.15;

    font-weight:800;

    max-width:850px;

    margin:auto;

}

.hero p{

    margin:30px auto 45px;

    max-width:760px;

    color:var(--text);

    font-size:18px;

}

.hero-buttons{

    max-width:700px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:18px;

}

/*==========================
    HERO DECORATION
==========================*/

.hero::before{

    content:"";

    position:absolute;

    top:120px;

    left:50%;

    transform:translateX(-50%);

    width:700px;

    height:700px;

    border-radius:50%;

    background:radial-gradient(

        rgba(143,58,255,.18),

        transparent 70%

    );

    z-index:-1;

    filter:blur(30px);

}

/*==========================
    SMALL DEVICES
==========================*/

@media(max-width:992px){

.hero h1{

    font-size:44px;

}

.section-title h2{

    font-size:34px;

}

}

@media(max-width:768px){

.hero{

    padding-top:120px;

}

.hero h1{

    font-size:34px;

}

.hero p{

    font-size:15px;

}

.section-title h2{

    font-size:30px;

}

.nav{

    height:70px;

}

.logo{

    font-size:18px;

}

}

@media(max-width:480px){

.hero h1{

    font-size:28px;

}

.section-title h2{

    font-size:25px;

}

.btn{

    height:54px;

    font-size:14px;

}

}

/*==========================================================
    PART 2
    FEATURES SECTION
    FEATURE CARDS
==========================================================*/

/*==========================
    FEATURES
==========================*/

.section{
    position:relative;
}

.feature-grid{

    display:grid;

    grid-template-columns:1fr;

    gap:32px;

    margin-bottom:55px;

}

/*==========================
    FEATURE CARD
==========================*/

.feature-card{

    position:relative;

    background:var(--card);

    border:1px solid var(--border);

    border-radius:28px;

    padding:42px;

    overflow:hidden;

    transition:var(--transition);

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.04);

}

.feature-card:hover{

    transform:translateY(-8px);

    border-color:rgba(141,55,255,.45);

    box-shadow:
        0 18px 40px rgba(0,0,0,.30);

}

/*==========================
    TOP GLOW
==========================*/

.feature-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:linear-gradient(
        90deg,
        var(--yellow),
        var(--purple),
        var(--yellow)
    );

    opacity:.75;

}

.feature-card::after{

    content:"";

    position:absolute;

    top:-120px;
    right:-120px;

    width:250px;
    height:250px;

    border-radius:50%;

    background:radial-gradient(
        rgba(141,55,255,.18),
        transparent 70%
    );

    pointer-events:none;

}

/*==========================
    FEATURE TITLE
==========================*/

.feature-card h3{

    font-size:34px;

    font-weight:700;

    line-height:1.2;

    margin-bottom:20px;

}

.feature-card p{

    color:var(--text);

    font-size:16px;

    line-height:1.9;

    max-width:760px;

}

/*==========================
    FEATURE ICON
==========================*/

.feature-icon{

    width:72px;

    height:72px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:20px;

    margin-bottom:28px;

    color:#fff;

    background:linear-gradient(
        135deg,
        var(--purple),
        #c04dff
    );

    font-size:28px;

    box-shadow:
        0 15px 30px rgba(141,55,255,.30);

}

/*==========================
    REGISTER BUTTON
==========================*/

.full-btn{

    margin-top:10px;

    display:flex;

    justify-content:center;

    align-items:center;

    max-width:100%;

}

/*==========================
    SECTION BACKGROUND GLOW
==========================*/

.section::before{

    content:"";

    position:absolute;

    top:120px;

    left:-250px;

    width:500px;

    height:500px;

    border-radius:50%;

    background:radial-gradient(
        rgba(253,185,19,.08),
        transparent 70%
    );

    pointer-events:none;

}

.section::after{

    content:"";

    position:absolute;

    bottom:80px;

    right:-220px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:radial-gradient(
        rgba(141,55,255,.12),
        transparent 70%
    );

    pointer-events:none;

}

/*==========================
    CARD ANIMATION
==========================*/

@keyframes floatCard{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-4px);
    }

    100%{
        transform:translateY(0);
    }

}

.feature-card:nth-child(1){

    animation:floatCard 5s ease-in-out infinite;

}

.feature-card:nth-child(2){

    animation:floatCard 6s ease-in-out infinite;

}

.feature-card:nth-child(3){

    animation:floatCard 7s ease-in-out infinite;

}

.feature-card:nth-child(4){

    animation:floatCard 8s ease-in-out infinite;

}

/*==========================
    TABLET
==========================*/

@media (max-width:992px){

    .feature-card{

        padding:34px;

    }

    .feature-card h3{

        font-size:28px;

    }

}

/*==========================
    MOBILE
==========================*/

@media (max-width:768px){

    .feature-grid{

        gap:24px;

    }

    .feature-card{

        padding:28px;

        border-radius:22px;

    }

    .feature-card h3{

        font-size:25px;

    }

    .feature-card p{

        font-size:15px;

        line-height:1.8;

    }

    .feature-icon{

        width:60px;
        height:60px;
        font-size:22px;
        border-radius:16px;

    }

}

/*==========================
    SMALL MOBILE
==========================*/

@media (max-width:480px){

    .feature-card{

        padding:24px;

    }

    .feature-card h3{

        font-size:22px;

    }

    .feature-card p{

        font-size:14px;

    }

}

/*==========================================================
    PART 3
    SUBSCRIPTION PLANS
==========================================================*/

/*==========================
    PLANS SECTION
==========================*/

.plans{

    position:relative;

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.01),
        rgba(255,255,255,.02)
    );

    overflow:hidden;

}

/* Background Glow */

.plans::before{

    content:"";

    position:absolute;

    top:-220px;
    left:-180px;

    width:550px;
    height:550px;

    border-radius:50%;

    background:radial-gradient(
        rgba(141,55,255,.15),
        transparent 70%
    );

}

.plans::after{

    content:"";

    position:absolute;

    bottom:-220px;
    right:-180px;

    width:550px;
    height:550px;

    border-radius:50%;

    background:radial-gradient(
        rgba(253,185,19,.10),
        transparent 70%
    );

}

/*==========================
    PLAN GRID
==========================*/

.plan-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

/*==========================
    PLAN CARD
==========================*/

.plan-card{

    position:relative;

    background:var(--card);

    border:1px solid var(--border);

    border-radius:28px;

    padding:45px 35px;

    text-align:center;

    transition:var(--transition);

    overflow:hidden;

    box-shadow:
        0 15px 40px rgba(0,0,0,.25);

}

/* Hover */

.plan-card:hover{

    transform:translateY(-12px);

    border-color:rgba(141,55,255,.45);

    box-shadow:
        0 25px 55px rgba(0,0,0,.35);

}

/*==========================
    TOP BORDER
==========================*/

.plan-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(
        90deg,
        var(--yellow),
        var(--purple)
    );

}

/*==========================
    POPULAR PLAN
==========================*/

.plan-card.popular{

    transform:scale(1.05);

    border:2px solid var(--yellow);

}

.plan-card.popular:hover{

    transform:scale(1.08);

}

/*==========================
    BADGE
==========================*/

.badge{

    display:inline-block;

    padding:10px 22px;

    border-radius:100px;

    background:rgba(141,55,255,.12);

    color:#d7b7ff;

    font-size:14px;

    font-weight:600;

    margin-bottom:30px;

}

/*==========================
    PRICE
==========================*/

.plan-card h3{

    font-size:46px;

    font-weight:800;

    color:var(--yellow);

    margin-bottom:30px;

}

.plan-card h4{

    font-size:20px;

    margin-bottom:15px;

}

.plan-card p{

    color:var(--text);

}

/*==========================
    FEATURES
==========================*/

.plan-card ul{

    margin:35px 0;

    display:flex;

    flex-direction:column;

    gap:18px;

}

.plan-card ul li{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:12px;

    color:var(--text);

    font-size:16px;

}

/* Check icon */

.plan-card ul li::before{

    content:"✓";

    color:var(--yellow);

    font-weight:700;

    font-size:18px;

}

/*==========================
    BUTTON
==========================*/

.plan-card .btn{

    margin-top:15px;

}

/*==========================
    SHIMMER EFFECT
==========================*/

.plan-card::after{

    content:"";

    position:absolute;

    top:-120%;

    left:-40%;

    width:60%;

    height:300%;

    background:linear-gradient(

        rgba(255,255,255,0),

        rgba(255,255,255,.08),

        rgba(255,255,255,0)

    );

    transform:rotate(25deg);

    transition:.8s;

}

.plan-card:hover::after{

    left:140%;

}

/*==========================
    ANIMATION
==========================*/

@keyframes cardRise{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.plan-card{

    animation:cardRise .8s ease both;

}

.plan-card:nth-child(2){

    animation-delay:.15s;

}

.plan-card:nth-child(3){

    animation-delay:.3s;

}

/*==========================
    TABLET
==========================*/

@media(max-width:992px){

    .plan-grid{

        grid-template-columns:1fr;

    }

    .plan-card{

        max-width:650px;

        margin:auto;

    }

    .plan-card.popular{

        transform:none;

    }

}

/*==========================
    MOBILE
==========================*/

@media(max-width:768px){

    .plan-card{

        padding:35px 28px;

    }

    .plan-card h3{

        font-size:38px;

    }

    .plan-card ul li{

        font-size:15px;

    }

}

/*==========================
    SMALL MOBILE
==========================*/

@media(max-width:480px){

    .plan-card{

        padding:30px 22px;

        border-radius:22px;

    }

    .plan-card h3{

        font-size:32px;

    }

    .badge{

        font-size:13px;

        padding:8px 18px;

    }

}

/*==========================================================
    PART 4
    WHY CHOOSE US
    VIDEO
    FAQ
==========================================================*/


/*==========================
    WHY SECTION
==========================*/

.video-preview{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    border:1px solid var(--border);

    background:var(--card);

    box-shadow:0 18px 45px rgba(0,0,0,.30);

}

.video-preview img{

    width:100%;

    display:block;

    transition:.5s ease;

}

.video-preview:hover img{

    transform:scale(1.04);

}

/*==========================
    PLAY BUTTON
==========================*/

.video-preview::before{

    content:"\f04b";

    font-family:"Font Awesome 6 Free";

    font-weight:900;

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:95px;
    height:95px;

    border-radius:50%;

    display:flex;

    align-items:center;
    justify-content:center;

    font-size:34px;

    color:#fff;

    background:linear-gradient(
        135deg,
        var(--yellow),
        #ffce4d
    );

    box-shadow:0 0 35px rgba(253,185,19,.45);

    z-index:2;

}

.video-preview::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to bottom,
        rgba(0,0,0,.05),
        rgba(0,0,0,.45)
    );

}

/*==========================
    FAQ SECTION
==========================*/

.faq{

    background:#14041d;

    position:relative;

}

.accordion{

    max-width:900px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:22px;

}

/*==========================
    FAQ ITEM
==========================*/

.accordion-item{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:22px;

    overflow:hidden;

    transition:.35s;

}

.accordion-item:hover{

    border-color:rgba(141,55,255,.45);

    transform:translateY(-3px);

}

/*==========================
    BUTTON
==========================*/

.accordion-btn{

    width:100%;

    padding:24px 30px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    color:#fff;

    font-size:18px;

    font-weight:600;

}

.accordion-btn i{

    transition:.35s;

    color:var(--yellow);

}

/*==========================
    ACTIVE
==========================*/

.accordion-item.active .accordion-btn i{

    transform:rotate(180deg);

}

/*==========================
    CONTENT
==========================*/

.accordion-content{

    max-height:0;

    overflow:hidden;

    transition:max-height .4s ease;

    padding:0 30px;

    color:var(--text);

    line-height:1.9;

}

.accordion-item.active .accordion-content{

    max-height:250px;

    padding:0 30px 25px;

}

/*==========================
    FAQ GLOW
==========================*/

.faq::before{

    content:"";

    position:absolute;

    top:-180px;

    left:-180px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:radial-gradient(

        rgba(141,55,255,.12),

        transparent 70%

    );

}

.faq::after{

    content:"";

    position:absolute;

    bottom:-180px;

    right:-180px;

    width:420px;

    height:420px;

    border-radius:50%;

    background:radial-gradient(

        rgba(253,185,19,.08),

        transparent 70%

    );

}

/*==========================
    ANIMATION
==========================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

.video-preview{

    animation:fadeUp .8s ease both;

}

.accordion-item{

    animation:fadeUp .8s ease both;

}

.accordion-item:nth-child(2){

    animation-delay:.15s;

}

.accordion-item:nth-child(3){

    animation-delay:.3s;

}

.accordion-item:nth-child(4){

    animation-delay:.45s;

}

/*==========================
    TABLET
==========================*/

@media(max-width:992px){

    .accordion-btn{

        font-size:17px;

    }

}

/*==========================
    MOBILE
==========================*/

@media(max-width:768px){

    .video-preview{

        border-radius:22px;

    }

    .video-preview::before{

        width:75px;
        height:75px;
        font-size:28px;

    }

    .accordion-btn{

        padding:20px;

        font-size:16px;

    }

    .accordion-content{

        padding:0 20px;

    }

    .accordion-item.active .accordion-content{

        padding:0 20px 20px;

    }

}

/*==========================
    SMALL MOBILE
==========================*/

@media(max-width:480px){

    .video-preview::before{

        width:65px;
        height:65px;
        font-size:22px;

    }

    .accordion-btn{

        font-size:15px;

        padding:18px;

    }

    .accordion-content{

        font-size:14px;

    }

}

/*==========================================================
    PART 5
    CTA • FOOTER • UTILITIES • ANIMATIONS
==========================================================*/

/*==========================
    CALL TO ACTION
==========================*/

.cta{

    position:relative;

    overflow:hidden;

    text-align:center;

    padding:120px 0;

    background:linear-gradient(
        180deg,
        #1b0828 0%,
        #16031f 100%
    );

}

.cta::before{

    content:"";

    position:absolute;

    top:-220px;
    left:-220px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:radial-gradient(
        rgba(141,55,255,.18),
        transparent 70%
    );

}

.cta::after{

    content:"";

    position:absolute;

    bottom:-220px;
    right:-220px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:radial-gradient(
        rgba(253,185,19,.10),
        transparent 70%
    );

}

.cta h2{

    font-size:52px;

    font-weight:800;

    margin-bottom:25px;

}

.cta p{

    max-width:700px;

    margin:0 auto 45px;

    color:var(--text);

    font-size:18px;

    line-height:1.9;

}

.cta .btn{

    max-width:340px;

    margin:auto;

}

/*==========================
    FOOTER
==========================*/

footer{

    padding:35px 0;

    border-top:1px solid rgba(255,255,255,.06);

    background:#12031a;

}

footer .container{

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

}

footer p,
footer{

    color:#9b9b9b;

    font-size:15px;

}

/*==========================
    TEXT UTILITIES
==========================*/

.text-center{

    text-align:center;

}

.text-white{

    color:#fff;

}

.text-yellow{

    color:var(--yellow);

}

.text-purple{

    color:var(--purple);

}

/*==========================
    SPACING UTILITIES
==========================*/

.mt-1{margin-top:10px;}
.mt-2{margin-top:20px;}
.mt-3{margin-top:30px;}
.mt-4{margin-top:40px;}
.mt-5{margin-top:50px;}

.mb-1{margin-bottom:10px;}
.mb-2{margin-bottom:20px;}
.mb-3{margin-bottom:30px;}
.mb-4{margin-bottom:40px;}
.mb-5{margin-bottom:50px;}

/*==========================
    GLOBAL FADE ANIMATION
==========================*/

.fade-up{

    animation:fadeUp .8s ease both;

}

.fade-in{

    animation:fadeIn .8s ease both;

}

.zoom{

    animation:zoomIn .7s ease both;

}

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

@keyframes zoomIn{

    from{

        opacity:0;

        transform:scale(.92);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

/*==========================
    LINKS
==========================*/

a{

    transition:.3s;

}

a:hover{

    opacity:.95;

}

/*==========================
    BUTTON ACTIVE
==========================*/

.btn:active{

    transform:scale(.97);

}

/*==========================
    IMAGE DEFAULT
==========================*/

img{

    user-select:none;

    -webkit-user-drag:none;

}

/*==========================
    SELECTION
==========================*/

::selection{

    background:var(--yellow);

    color:#111;

}

/*==========================
    TABLET
==========================*/

@media(max-width:992px){

    .cta h2{

        font-size:42px;

    }

    .cta p{

        font-size:17px;

    }

}

/*==========================
    MOBILE
==========================*/

@media(max-width:768px){

    section{

        padding:75px 0;

    }

    .cta{

        padding:90px 0;

    }

    .cta h2{

        font-size:34px;

    }

    .cta p{

        font-size:15px;

        margin-bottom:35px;

    }

    footer{

        padding:28px 0;

    }

}

/*==========================
    SMALL DEVICES
==========================*/

@media(max-width:480px){

    .container{

        width:94%;

    }

    section{

        padding:60px 0;

    }

    .cta{

        padding:70px 0;

    }

    .cta h2{

        font-size:28px;

    }

    .cta p{

        font-size:14px;

        line-height:1.8;

    }

    footer{

        font-size:13px;

    }

}

/*==========================
    LARGE SCREENS
==========================*/

@media(min-width:1400px){

    .container{

        max-width:1280px;

    }

}

/*==========================================================
    END OF STYLE.CSS
==========================================================*/

