/* ===================================
HERO SECTION
=================================== */

.hero-section{

    max-width:1400px;

    margin:auto;

    min-height:82vh;

    display:grid;

    grid-template-columns:1.1fr .9fr;

    align-items:center;

    gap:80px;

}


/* LEFT */

.hero-left{

    z-index:10;

}

.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    color:#ffffff;

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    margin-bottom:25px;

    border:1px solid rgba(255,255,255,.15);

}

.hero-left h1{

    font-size:64px;

    line-height:1.1;

    margin-bottom:30px;

    font-weight:700;

}

.hero-left p{

    font-size:20px;

    color:#dbe7ff;

    line-height:1.8;

    max-width:720px;

}



/* BUTTONS */

.hero-buttons{

    margin-top:40px;

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.hero-btn{

    padding:16px 34px;

    border-radius:12px;

    text-decoration:none;

    font-size:17px;

    font-weight:700;

    transition:.3s;

}

.hero-primary{

    background:#ffb300;

    color:#111;

}

.hero-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(255,179,0,.35);

}

.hero-secondary{

    background:white;

    color:#0b3d91;

}

.hero-secondary:hover{

    transform:translateY(-4px);

}

.hero-outline{

    border:2px solid rgba(255,255,255,.3);

    color:white;

}

.hero-outline:hover{

    background:white;

    color:#0b3d91;

}



/* HERO INFO */

.hero-info{

    margin-top:45px;

    display:flex;

    gap:35px;

    flex-wrap:wrap;

    color:#ffe082;

    font-weight:600;

}



/* RIGHT */

.hero-right{

    display:flex;

    justify-content:center;

    align-items:center;

}

.hero-card{

    width:520px;

    height:520px;

    background:rgba(255,255,255,.08);

    border-radius:30px;

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.15);

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    overflow:hidden;

}

.hero-image{

    width:82%;

}



/* FLOATING TAGS */

.floating-box{

    position:absolute;

    background:white;

    color:#0b3d91;

    padding:12px 20px;

    border-radius:12px;

    font-weight:bold;

    box-shadow:0 15px 30px rgba(0,0,0,.15);

    animation:floatBox 4s infinite;

}

.box1{

    left:20px;

    top:40px;

}

.box2{

    right:20px;

    top:120px;

    animation-delay:1s;

}

.box3{

    bottom:40px;

    left:70px;

    animation-delay:2s;

}



@keyframes floatBox{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}



/* MOBILE */

@media(max-width:992px){

.hero-section{

    grid-template-columns:1fr;

    text-align:center;

}

.hero-left h1{

    font-size:46px;

}

.hero-left p{

    margin:auto;

}

.hero-buttons{

    justify-content:center;

}

.hero-info{

    justify-content:center;

}

.hero-card{

    width:100%;

    max-width:420px;

    height:420px;

}

}

/* =====================================
STATISTICS
====================================== */

.stats-section{

    max-width:1400px;

    margin:120px auto;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    margin-bottom:20px;

}

.section-title p{

    font-size:18px;

    color:#dbe7ff;

    max-width:850px;

    margin:auto;

    line-height:1.8;

}



/* GRID */

.stats-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}



/* CARD */

.stat-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:22px;

    padding:45px 25px;

    text-align:center;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.stat-card::before{

    content:"";

    position:absolute;

    width:140px;

    height:140px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    right:-45px;

    top:-45px;

}

.stat-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.25);

}



/* ICON */

.stat-icon{

    font-size:52px;

    margin-bottom:25px;

}



/* NUMBER */

.stat-card h3{

    font-size:52px;

    color:#ffb300;

    margin-bottom:10px;

    font-weight:700;

}



/* TEXT */

.stat-card span{

    color:#dce7ff;

    font-size:18px;

}



/* MOBILE */

@media(max-width:1100px){

.stats-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:700px){

.stats-grid{

    grid-template-columns:1fr;

}

.section-title h2{

    font-size:34px;

}

}

/* =====================================
FEATURES
====================================== */

.features-section{

    max-width:1400px;

    margin:130px auto;

}



.features-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}



/* CARD */

.feature-card{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:24px;

    padding:40px 35px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}



.feature-card::before{

    content:"";

    position:absolute;

    width:170px;

    height:170px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

    top:-70px;

    right:-70px;

}



.feature-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(0,0,0,.28);

}



.feature-icon{

    width:80px;

    height:80px;

    border-radius:18px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:38px;

    margin-bottom:30px;

    background:linear-gradient(

        135deg,

        #ffb300,

        #ff9800

    );

}



.feature-card h3{

    font-size:26px;

    margin-bottom:18px;

    color:#ffffff;

}



.feature-card p{

    color:#dce7ff;

    line-height:1.9;

    font-size:16px;

}



/* RESPONSIVE */

@media(max-width:1100px){

.features-grid{

    grid-template-columns:repeat(2,1fr);

}

}



@media(max-width:700px){

.features-grid{

    grid-template-columns:1fr;

}

}

/* =========================================
   LICENSE PLANS
========================================= */

.pricing-section{

    max-width:1400px;

    margin:100px auto;

}

.pricing-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(320px,1fr));

    gap:35px;

}

.pricing-card{

    background:white;

    border-radius:22px;

    padding:45px 35px;

    color:#222;

    text-align:center;

    position:relative;

    transition:.35s;

    overflow:hidden;

    box-shadow:
        0 20px 45px rgba(0,0,0,.15);

}

.pricing-card:hover{

    transform:translateY(-10px);

}

.pricing-card.featured{

    border:3px solid #ffb300;

    transform:scale(1.05);

}

.pricing-card.featured:hover{

    transform:scale(1.08);

}

.pricing-badge{

    position:absolute;

    top:20px;

    right:-40px;

    width:150px;

    background:#ffb300;

    color:#111;

    padding:8px;

    font-weight:700;

    transform:rotate(35deg);

    font-size:13px;

}

.pricing-card h3{

    font-size:30px;

    margin-top:15px;

    margin-bottom:20px;

}

.price{

    font-size:46px;

    color:#0b3d91;

    font-weight:bold;

    margin-bottom:25px;

}

.price span{

    display:block;

    margin-top:8px;

    font-size:16px;

    color:#777;

}

.pricing-card ul{

    list-style:none;

    padding:0;

    margin:35px 0;

    text-align:left;

}

.pricing-card li{

    padding:12px 0;

    border-bottom:1px solid #ececec;

    color:#444;

}

.pricing-btn{

    display:block;

    background:linear-gradient(
        135deg,
        #ffb300,
        #ff9800
    );

    color:#111;

    padding:15px;

    border-radius:12px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.pricing-btn:hover{

    transform:translateY(-3px);

    box-shadow:
        0 12px 30px rgba(255,179,0,.35);

}

@media(max-width:768px){

    .pricing-card.featured{

        transform:none;

    }

}

/* =========================================
   DOCUMENTATION
========================================= */

.documentation-section{

    max-width:1400px;

    margin:100px auto;

}

.documentation-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(330px,1fr));

    gap:30px;

}

.doc-card{

    background:white;

    color:#222;

    padding:35px;

    border-radius:22px;

    transition:.35s;

    box-shadow:
        0 15px 35px rgba(0,0,0,.15);

}

.doc-card:hover{

    transform:translateY(-8px);

}

.doc-icon{

    width:75px;

    height:75px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        #0b3d91,
        #1565c0
    );

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:25px;

}

.doc-card h3{

    font-size:28px;

    margin-bottom:18px;

}

.doc-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.doc-card a{

    color:#0b3d91;

    font-weight:bold;

    text-decoration:none;

}

.doc-card a:hover{

    color:#ff9800;

}

.view-all-card{

    background:linear-gradient(
        135deg,
        #0b3d91,
        #1565c0
    );

    color:white;

}

.view-all-card p{

    color:white;

}

.view-all-card a{

    color:white;

}

.doc-main-btn{

    display:inline-block;

    margin-top:15px;

    padding:14px 24px;

    background:#ffb300;

    color:#111 !important;

    border-radius:10px;

    text-decoration:none;

    font-weight:bold;

}

.doc-main-btn:hover{

    background:#ff9800;

}

/* =========================================
   DOWNLOAD CENTER
========================================= */

.download-section{

    max-width:1400px;

    margin:110px auto;

}

.download-wrapper{

    display:grid;

    grid-template-columns:2fr 1.2fr;

    gap:35px;

}

.download-main-card{

    background:linear-gradient(
        135deg,
        #0b3d91,
        #1565c0
    );

    color:white;

    border-radius:24px;

    padding:50px;

    position:relative;

    overflow:hidden;

}

.download-main-card::before{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    right:-80px;

    top:-80px;

}

.download-badge{

    display:inline-block;

    background:#ffb300;

    color:#111;

    padding:8px 18px;

    border-radius:50px;

    font-weight:bold;

    margin-bottom:20px;

}

.download-main-card h2{

    font-size:42px;

    margin-bottom:12px;

}

.download-main-card p{

    margin-bottom:30px;

    color:#d9e8ff;

}

.download-info{

    list-style:none;

    padding:0;

    margin-bottom:35px;

}

.download-info li{

    margin-bottom:14px;

    font-size:17px;

}

.download-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.download-btn{

    background:#ffb300;

    color:#111;

    padding:16px 30px;

    border-radius:12px;

    text-decoration:none;

    font-weight:bold;

}

.download-btn:hover{

    background:#ff9800;

}

.download-btn-outline{

    border:2px solid white;

    color:white;

    padding:15px 28px;

    border-radius:12px;

    text-decoration:none;

}

.download-btn-outline:hover{

    background:white;

    color:#0b3d91;

}

.download-side{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

}

.download-card{

    background:white;

    border-radius:20px;

    padding:30px;

    text-align:center;

    box-shadow:0 15px 30px rgba(0,0,0,.12);

    transition:.35s;

}

.download-card:hover{

    transform:translateY(-8px);

}

.download-icon{

    width:75px;

    height:75px;

    margin:auto;

    margin-bottom:20px;

    border-radius:18px;

    background:linear-gradient(
        135deg,
        #0b3d91,
        #1565c0
    );

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:36px;

}

.download-card h3{

    color:#111;

    margin-bottom:15px;

}

.download-card p{

    color:#666;

    line-height:1.7;

    margin-bottom:18px;

}

.download-card a{

    text-decoration:none;

    font-weight:bold;

    color:#0b3d91;

}

.download-card a:hover{

    color:#ff9800;

}

@media(max-width:1000px){

.download-wrapper{

    grid-template-columns:1fr;

}

.download-side{

    grid-template-columns:1fr 1fr;

}

}

@media(max-width:768px){

.download-side{

    grid-template-columns:1fr;

}

.download-main-card{

    padding:35px;

}

.download-main-card h2{

    font-size:32px;

}

}

/* =========================================
   SCREENSHOT GALLERY
========================================= */

.gallery-section{

    max-width:1400px;

    margin:120px auto;

}

.gallery-grid{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:28px;

}

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:22px;

    cursor:pointer;

    box-shadow:
        0 15px 35px rgba(0,0,0,.15);

    transition:.4s;

    height:280px;

    background:#fff;

}

.gallery-card.large{

    grid-column:span 2;

    height:580px;

}

.gallery-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.45s;

}

.gallery-card:hover img{

    transform:scale(1.08);

}

.gallery-overlay{

    position:absolute;

    left:0;

    right:0;

    bottom:0;

    padding:28px;

    color:white;

    background:

    linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );

}

.gallery-overlay h3{

    font-size:26px;

    margin-bottom:10px;

}

.gallery-overlay p{

    color:#e5e5e5;

    line-height:1.7;

}

.gallery-card:hover{

    transform:translateY(-10px);

}

.gallery-footer{

    margin-top:50px;

    text-align:center;

}

.gallery-btn{

    display:inline-block;

    padding:18px 36px;

    border-radius:12px;

    background:#0b3d91;

    color:white;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.gallery-btn:hover{

    background:#1565c0;

}

@media(max-width:1000px){

.gallery-grid{

    grid-template-columns:1fr 1fr;

}

.gallery-card.large{

    grid-column:span 2;

}

}

@media(max-width:768px){

.gallery-grid{

    grid-template-columns:1fr;

}

.gallery-card.large{

    grid-column:auto;

    height:300px;

}

.gallery-card{

    height:260px;

}

}

/* =========================================
   FAQ
========================================= */

.faq-section{

    max-width:1100px;

    margin:120px auto;

}

.faq-container{

    margin-top:50px;

}

.faq-item{

    background:white;

    color:#222;

    border-radius:18px;

    margin-bottom:18px;

    overflow:hidden;

    box-shadow:
        0 10px 25px rgba(0,0,0,.10);

}

.faq-question{

    width:100%;

    background:none;

    border:none;

    padding:26px 30px;

    cursor:pointer;

    display:flex;

    justify-content:space-between;

    align-items:center;

    font-size:19px;

    font-weight:700;

}

.faq-question:hover{

    background:#f8f9fc;

}

.faq-icon{

    font-size:28px;

    color:#0b3d91;

    transition:.3s;

}

.faq-item.active .faq-icon{

    transform:rotate(45deg);

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:.35s;

    padding:0 30px;

    line-height:1.9;

    color:#666;

}

.faq-item.active .faq-answer{

    max-height:300px;

    padding:0 30px 28px;

}

@media(max-width:768px){

.faq-question{

    font-size:17px;

    padding:20px;

}

.faq-answer{

    padding:0 20px;

}

.faq-item.active .faq-answer{

    padding:0 20px 20px;

}

}

/* =========================================
   CONTACT CTA
========================================= */

.contact-cta-section{

    max-width:1400px;

    margin:120px auto 80px;

}

.contact-cta-card{

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:40px;

    background:linear-gradient(
        135deg,
        #0b3d91,
        #1565c0
    );

    border-radius:28px;

    padding:60px;

    color:white;

    position:relative;

    overflow:hidden;

}

.contact-cta-card::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.06);

    right:-120px;

    top:-120px;

}

.contact-left{

    position:relative;

    z-index:2;

}

.contact-tag{

    display:inline-block;

    background:#ffb300;

    color:#111;

    padding:8px 20px;

    border-radius:40px;

    font-size:13px;

    font-weight:bold;

    margin-bottom:20px;

}

.contact-left h2{

    font-size:48px;

    margin-bottom:20px;

}

.contact-left p{

    color:#dce7ff;

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

}

.contact-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:18px;

}

.contact-feature{

    background:rgba(255,255,255,.08);

    padding:16px;

    border-radius:12px;

}

.contact-right{

    display:flex;

    flex-direction:column;

    gap:25px;

    position:relative;

    z-index:2;

}

.contact-box{

    background:rgba(255,255,255,.12);

    border-radius:18px;

    padding:25px;

    text-align:center;

    transition:.3s;

}

.contact-box:hover{

    background:rgba(255,255,255,.18);

    transform:translateY(-5px);

}

.contact-icon{

    font-size:40px;

    margin-bottom:15px;

}

.contact-box h3{

    margin-bottom:12px;

}

.contact-box p{

    color:#dce7ff;

}

.contact-buttons{

    margin-top:45px;

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-primary-btn{

    background:#ffb300;

    color:#111;

    padding:18px 38px;

    border-radius:12px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.cta-primary-btn:hover{

    transform:translateY(-4px);

    box-shadow:0 10px 25px rgba(255,179,0,.35);

}

.cta-secondary-btn{

    background:white;

    color:#0b3d91;

    padding:18px 34px;

    border-radius:12px;

    text-decoration:none;

    font-weight:bold;

    transition:.3s;

}

.cta-secondary-btn:hover{

    background:#eef4ff;

}

@media(max-width:900px){

.contact-cta-card{

    grid-template-columns:1fr;

    padding:40px;

}

.contact-left h2{

    font-size:34px;

}

.contact-features{

    grid-template-columns:1fr;

}

}