/*======================================
 GOOGLE FONT
======================================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*======================================
 VARIABLES
======================================*/

:root{

    --bg:#090909;
    --card:#131313;
    --card2:#181818;

    --gold:#E6BA2E;
    --gold-light:#FFD86B;

    --white:#ffffff;
    --text:#c8c8c8;

    --border:rgba(230,186,46,.18);

    --shadow:0 20px 60px rgba(0,0,0,.35);

    --transition:.35s ease;

    --radius:22px;

    --container:1280px;

}


/*======================================
 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;

}

img{

    display:block;

    width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

section{

    padding:110px 8%;

}


/*======================================
 SCROLLBAR
======================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#0c0c0c;

}

::-webkit-scrollbar-thumb{

    background:var(--gold);

    border-radius:50px;

}


/*======================================
 CONTAINER
======================================*/

.nav-container,
.hero-container{

    width:100%;
    max-width:var(--container);

    margin:auto;

}


/*======================================
 NAVBAR
======================================*/

.navbar{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    background:rgba(10,10,10,.75);

    backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(255,255,255,.05);

}

.nav-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:82px;

}

.logo{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:1.35rem;

    font-weight:700;

}

.logo img{

    width:45px;

}

.nav-links{

    display:flex;

    gap:40px;

}

.nav-links a{

    color:#d8d8d8;

    font-size:.95rem;

    transition:var(--transition);

}

.nav-links a:hover{

    color:var(--gold);

}

.nav-btn{

    padding:13px 28px;

    background:var(--gold);

    color:#111;

    font-weight:600;

    border-radius:12px;

    transition:.35s;

}

.nav-btn:hover{

    transform:translateY(-3px);

    box-shadow:

    0 0 30px rgba(230,186,46,.35);

}


/*======================================
 HERO
======================================*/

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    padding-top:120px;

    position:relative;

}

.hero-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}


/*======================================
 HERO LEFT
======================================*/

.hero-badge{

    display:inline-block;

    padding:10px 18px;

    background:rgba(230,186,46,.12);

    border:1px solid rgba(230,186,46,.25);

    color:var(--gold);

    border-radius:50px;

    font-size:.88rem;

    margin-bottom:28px;

}

.hero h1{

    font-size:4rem;

    line-height:1.1;

    margin-bottom:25px;

}

.hero h1 span{

    color:var(--gold);

}

.hero p{

    color:var(--text);

    font-size:1.08rem;

    line-height:1.8;

    max-width:620px;

}


/*======================================
 HERO BUTTONS
======================================*/

.hero-buttons{

    display:flex;

    gap:18px;

    margin-top:40px;

}

.primary-btn{

    background:var(--gold);

    color:#111;

    padding:16px 34px;

    border-radius:14px;

    font-weight:700;

    transition:.35s;

}

.primary-btn:hover{

    transform:translateY(-4px);

    box-shadow:

    0 0 35px rgba(230,186,46,.35);

}

.secondary-btn{

    border:1px solid var(--border);

    padding:16px 34px;

    border-radius:14px;

    color:#fff;

    transition:.35s;

}

.secondary-btn:hover{

    background:rgba(230,186,46,.08);

    border-color:var(--gold);

}


/*======================================
 HERO FEATURES
======================================*/

.hero-features{

    display:flex;

    gap:30px;

    margin-top:45px;

    flex-wrap:wrap;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:10px;

    color:#d7d7d7;

}

.hero-features i{

    color:var(--gold);

    font-size:1.1rem;

}


/*======================================
 HERO RIGHT
======================================*/

.hero-right{

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.dragon-glow{

    position:absolute;

    width:480px;

    height:480px;

    background:radial-gradient(circle,
    rgba(230,186,46,.45),
    transparent 70%);

    filter:blur(55px);

    animation:pulse 4s infinite;

}

.dragon-image{

    position:relative;

    width:100%;

    max-width:620px;

    z-index:5;

    animation:float 5s ease-in-out infinite;

}


/*======================================
 ANIMATION
======================================*/

@keyframes float{

    0%,100%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-16px);

    }

}

@keyframes pulse{

    0%,100%{

        transform:scale(1);

        opacity:.6;

    }

    50%{

        transform:scale(1.1);

        opacity:1;

    }

}


/*======================================
 RESPONSIVE
======================================*/

@media(max-width:1000px){

.hero-container{

grid-template-columns:1fr;

text-align:center;

}

.hero p{

margin:auto;

}

.hero-buttons{

justify-content:center;

}

.hero-features{

justify-content:center;

}

.hero h1{

font-size:3rem;

}

.dragon-image{

max-width:450px;

}

}

@media(max-width:700px){

.nav-links{

display:none;

}

.hero{

padding-top:150px;

}

.hero h1{

font-size:2.4rem;

}

.hero-buttons{

flex-direction:column;

}

.primary-btn,
.secondary-btn{

width:100%;

text-align:center;

}

}
/*======================================
SECTION TITLE
======================================*/

.section-title{

    text-align:center;
    max-width:760px;
    margin:0 auto 70px;

}

.section-title span{

    display:inline-block;

    color:var(--gold);

    font-size:.9rem;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:15px;

}

.section-title h2{

    font-size:3rem;

    margin-bottom:20px;

}

.section-title p{

    color:var(--text);

    line-height:1.8;

    font-size:1.05rem;

}

/*======================================
SERIES SECTION
======================================*/

.series-section{

    background:#0d0d0d;

    position:relative;

}

.series-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

    max-width:1250px;

    margin:auto;

}

/*======================================
SERIES CARD
======================================*/

.series-card{

    position:relative;

    background:linear-gradient(
    180deg,
    #171717,
    #111111
    );

    border:1px solid var(--border);

    border-radius:24px;

    padding:45px;

    transition:.4s;

    overflow:hidden;

}

.series-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:radial-gradient(circle at top right,
    rgba(230,186,46,.12),
    transparent 60%);

    opacity:0;

    transition:.4s;

    pointer-events:none;

}

.series-card:hover::before{

    opacity:1;

}

.series-card:hover{

    transform:translateY(-12px);

    border-color:var(--gold);

    box-shadow:

    0 25px 70px rgba(230,186,46,.15);

}

/*======================================
FEATURED CARD
======================================*/

.series-card.featured{

    border:2px solid var(--gold);

    box-shadow:

    0 0 40px rgba(230,186,46,.18);

}

.series-card.featured::after{

    content:"";

    position:absolute;

    top:-120px;
    right:-120px;

    width:260px;
    height:260px;

    border-radius:50%;

    background:rgba(230,186,46,.08);

    filter:blur(30px);

     pointer-events:none;


}

/*======================================
POPULAR BADGE
======================================*/

.popular-badge{

    position:absolute;

    top:20px;
    right:20px;

    background:var(--gold);

    color:#111;

    padding:8px 16px;

    border-radius:40px;

    font-size:.75rem;

    font-weight:700;

}

/*======================================
ICON
======================================*/

.series-icon{

    width:72px;
    height:72px;

    display:flex;

    align-items:center;
    justify-content:center;

    background:rgba(230,186,46,.1);

    border:1px solid rgba(230,186,46,.2);

    border-radius:18px;

    margin-bottom:28px;

}

.series-icon i{

    color:var(--gold);

    font-size:2rem;

}

/*======================================
TEXT
======================================*/

.series-card h3{

    font-size:2rem;

    margin-bottom:8px;

}

.series-card h4{

    color:var(--gold);

    font-size:1.1rem;

    margin-bottom:22px;

}

.series-card p{

    color:var(--text);

    line-height:1.8;

    margin-bottom:30px;

}

/*======================================
LIST
======================================*/

.series-card ul{

    display:flex;

    flex-direction:column;

    gap:18px;

    margin-bottom:35px;

}

.series-card li{

    display:flex;

    align-items:center;

    gap:12px;

    color:#d8d8d8;

}

.series-card li i{

    color:var(--gold);

}

/*======================================
PRICE
======================================*/

.series-price{

    display:flex;

    flex-direction:column;

    margin-bottom:35px;

    color:#bdbdbd;

    font-size:.95rem;

}

.series-price strong{

    color:#fff;

    font-size:2.3rem;

    margin-top:8px;

}

/*======================================
BUTTON
======================================*/

.series-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:100%;

    height:58px;

    border-radius:14px;

    background:var(--gold);

    color:#111;

    font-weight:700;

    transition:.35s;

     position:relative;     
    z-index:50;             
    cursor:pointer;

}

.series-btn:hover{

    transform:translateY(-3px);

    box-shadow:

    0 0 35px rgba(230,186,46,.35);

}

/*======================================
RESPONSIVE
======================================*/

@media(max-width:1000px){

.series-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:2.3rem;

}

.series-card{

padding:35px;

}

}

@media(max-width:650px){

.section-title h2{

font-size:2rem;

}

.series-card{

padding:28px;

}

.series-card h3{

font-size:1.7rem;

}

.series-price strong{

font-size:2rem;

}

}
/*======================================
COMPARE SECTION
======================================*/

.compare-section{

    background:#090909;

    position:relative;

    overflow:hidden;

}

.compare-table{

    max-width:1150px;

    margin:auto;

    border:1px solid var(--border);

    border-radius:24px;

    overflow:hidden;

    background:linear-gradient(
    180deg,
    #171717,
    #101010
    );

    box-shadow:0 25px 70px rgba(0,0,0,.35);

}

/*======================================
HEADER
======================================*/

.compare-header{

    display:grid;

    grid-template-columns:1.2fr 1fr 1fr;

    background:#151515;

}

.compare-header div{

    padding:28px;

    text-align:center;

    font-size:1.25rem;

    font-weight:700;

    border-right:1px solid rgba(255,255,255,.05);

}

.compare-header div:last-child{

    border-right:none;

}

.compare-card-title{

    color:#ffffff;

}

.featured-title{

    color:var(--gold);

}

/*======================================
ROWS
======================================*/

.compare-row{

    display:grid;

    grid-template-columns:1.2fr 1fr 1fr;

    align-items:center;

    transition:.35s;

}

.compare-row:not(:last-child){

    border-bottom:1px solid rgba(255,255,255,.05);

}

.compare-row:hover{

    background:rgba(230,186,46,.04);

}

.compare-row span{

    padding:24px;

    text-align:center;

    color:#d8d8d8;

    border-right:1px solid rgba(255,255,255,.05);

}

.compare-row span:first-child{

    text-align:left;

    font-weight:600;

    color:#ffffff;

}

.compare-row span:last-child{

    border-right:none;

}

.compare-row i.fa-check{

    color:#4ade80;

    font-size:1.15rem;

}

.compare-row i.fa-xmark{

    color:#ef4444;

    font-size:1.15rem;

}

/*======================================
COLUMN HIGHLIGHT
======================================*/

.compare-header div:nth-child(3),
.compare-row span:nth-child(3){

    background:rgba(230,186,46,.05);

}

/*======================================
HOVER EFFECT
======================================*/

.compare-row:hover span:nth-child(3){

    background:rgba(230,186,46,.10);

}

/*======================================
MOBILE
======================================*/

@media(max-width:900px){

.compare-table{

overflow-x:auto;

}

.compare-header,
.compare-row{

min-width:760px;

}

}

@media(max-width:600px){

.compare-header div{

padding:18px;

font-size:1rem;

}

.compare-row span{

padding:18px;

font-size:.9rem;

}

}
/*======================================
INCLUDED WITH EVERY PLAN
======================================*/

.included-section{

    background:#0d0d0d;
    position:relative;

}

.included-grid{

    max-width:1250px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.feature-card{

    background:linear-gradient(
    180deg,
    #181818,
    #121212);

    border:1px solid var(--border);

    border-radius:22px;

    padding:40px 30px;

    text-align:center;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.feature-card::before{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:rgba(230,186,46,.08);

    border-radius:50%;

    top:-100px;
    right:-100px;

    transition:.35s;

}

.feature-card:hover::before{

    transform:scale(1.4);

}

.feature-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

    box-shadow:
    0 20px 60px rgba(230,186,46,.15);

}

.feature-card i{

    font-size:2.8rem;

    color:var(--gold);

    margin-bottom:22px;

}

.feature-card h3{

    font-size:1.35rem;

    margin-bottom:14px;

}

.feature-card p{

    color:var(--text);

    line-height:1.7;

    font-size:.96rem;

}

/*======================================
PERFORMANCE STATS
======================================*/

.stats-section{

    background:#090909;

}

.stats-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.stat-box{

    background:linear-gradient(
    180deg,
    #171717,
    #111111);

    border:1px solid var(--border);

    border-radius:22px;

    padding:45px;

    text-align:center;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.stat-box::before{

    content:"";

    position:absolute;

    inset:0;

    background:radial-gradient(circle,
    rgba(230,186,46,.10),
    transparent 70%);

    opacity:0;

    transition:.35s;

}

.stat-box:hover::before{

    opacity:1;

}

.stat-box:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

    box-shadow:
    0 20px 60px rgba(230,186,46,.18);

}

.stat-box h3{

    font-size:3rem;

    color:var(--gold);

    margin-bottom:12px;

    font-weight:800;

}

.stat-box p{

    color:var(--text);

    font-size:1rem;

}

/*======================================
RESPONSIVE
======================================*/

@media(max-width:1100px){

.included-grid{

grid-template-columns:repeat(2,1fr);

}

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.included-grid{

grid-template-columns:1fr;

}

.stats-grid{

grid-template-columns:1fr;

}

.feature-card{

padding:35px 25px;

}

.stat-box{

padding:35px;

}

.stat-box h3{

font-size:2.4rem;

}

}
/*======================================
REVIEWS SECTION
======================================*/

.reviews-section{
    background:#0d0d0d;
}

.reviews-grid{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.review-card{
    background:linear-gradient(180deg,#181818,#121212);
    border:1px solid var(--border);
    border-radius:22px;
    padding:35px;
    transition:.35s;
}

.review-card:hover{
    transform:translateY(-10px);
    border-color:var(--gold);
    box-shadow:0 20px 60px rgba(230,186,46,.15);
}

.featured-review{
    border:2px solid var(--gold);
}

.stars{
    color:var(--gold);
    font-size:1.2rem;
    margin-bottom:20px;
}

.review-card p{
    color:var(--text);
    line-height:1.8;
    margin-bottom:30px;
}

.review-user{
    display:flex;
    align-items:center;
    gap:15px;
}

.review-user img{
    width:60px;
    height:60px;
    border-radius:50%;
    border:2px solid var(--gold);
}

.review-user h4{
    margin-bottom:4px;
}

.review-user span{
    color:var(--text);
    font-size:.9rem;
}

/*======================================
FAQ
======================================*/

.faq-section{
    background:#090909;
}

.faq-container{
    max-width:900px;
    margin:auto;
}

.faq-item{
    border:1px solid var(--border);
    border-radius:18px;
    margin-bottom:20px;
    overflow:hidden;
    background:#141414;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    color:#fff;
    padding:24px 28px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:1rem;
    font-weight:600;
    transition:.3s;
}

.faq-question:hover{
    color:var(--gold);
}

.faq-question i{
    transition:.35s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faq-answer p{
    padding:0 28px 25px;
    color:var(--text);
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:200px;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
    color:var(--gold);
}

/*======================================
CTA
======================================*/

.cta-section{
    background:linear-gradient(180deg,#131313,#0b0b0b);
    text-align:center;
}

.cta-content{
    max-width:800px;
    margin:auto;
}

.cta-content span{
    color:var(--gold);
    letter-spacing:2px;
    font-weight:600;
}

.cta-content h2{
    font-size:3rem;
    margin:20px 0;
}

.cta-content p{
    color:var(--text);
    line-height:1.8;
    margin-bottom:40px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

/*======================================
FOOTER
======================================*/

.footer{
    background:#070707;
    border-top:1px solid rgba(255,255,255,.05);
}

.footer-top{
    max-width:1250px;
    margin:auto;
    padding:80px 8%;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-brand img{
    width:55px;
    margin-bottom:18px;
}

.footer-brand h3{
    margin-bottom:15px;
}

.footer-brand p{
    color:var(--text);
    line-height:1.8;
}

.footer-links h4{
    margin-bottom:20px;
    color:#fff;
}

.footer-links a{
    display:block;
    margin-bottom:12px;
    color:var(--text);
    transition:.3s;
}

.footer-links a:hover{
    color:var(--gold);
    padding-left:6px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.05);
    text-align:center;
    padding:25px;
    color:#888;
}

/*======================================
RESPONSIVE
======================================*/

@media(max-width:1100px){

.reviews-grid{
grid-template-columns:1fr;
}

.footer-top{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:768px){

.cta-content h2{
font-size:2.2rem;
}

.cta-buttons{
flex-direction:column;
}

.footer-top{
grid-template-columns:1fr;
text-align:center;
}

.footer-brand img{
margin:auto auto 20px;
}

}

@media(max-width:600px){

.faq-question{
padding:20px;
font-size:.95rem;
}

.faq-answer p{
padding:0 20px 20px;
}

.review-card{
padding:28px;
}

.cta-content h2{
font-size:1.9rem;
}

}

/*======================================
SELECTION
======================================*/

::selection{
    background:var(--gold);
    color:#111;
}
.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 22px;
    border:1px solid rgba(230,186,46,.25);
    border-radius:999px;
    background:rgba(230,186,46,.08);
}

.hero-badge i{
    color:var(--gold);
    font-size:15px;
}

.hero-badge span{
    color:var(--gold);
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.8px;
}
.nav-buttons{
    display:flex;
    align-items:center;
    gap:18px;
}

.client-btn{
    padding:15px 32px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.client-btn:hover{
    border-color:#e8be35;
    color:#e8be35;
}

.launch-btn{
    padding:15px 34px;
    border-radius:14px;
    background:#e8be35;
    color:#111;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.launch-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 0 30px rgba(232,190,53,.35);
}