/* ==================================
   HERO SECTION
================================== */

.hero-section{

    position:relative;
    overflow:hidden;

    padding:40px 20px;

    background:transparent;
}

.hero-container{

    max-width:1400px;
    margin:auto;
}

/* ==========================
   DESKTOP LAYOUT
========================== */

.hero-content{

    display:grid;

    grid-template-columns:40% 60%;

    grid-template-areas:
    "heading image"
    "desc image"
    "features image"
    "buttons image";

    align-items:center;

    column-gap:30px;
}

.hero-content h1{

    grid-area:heading;

    font-size:64px;
    line-height:1.05;

    font-weight:800;

    letter-spacing:-2px;

    color:#0f172a;

    margin-bottom:20px;
}

.hero-content h1 span{

    display:block;

    background:linear-gradient(
        135deg,
        #4f46e5,
        #7c3aed
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-content p{

    grid-area:desc;

    font-size:18px;

    line-height:1.8;

    color:#5f6678;

    max-width:520px;

    margin-bottom:28px;
}

.hero-features{

    grid-area:features;

    list-style:none;

    margin-bottom:28px;
}

.hero-features li{

    position:relative;

    padding-left:30px;

    margin-bottom:14px;

    font-size:17px;

    font-weight:500;

    color:#222;
}

.hero-features li:before{

    content:"✓";

    position:absolute;

    left:0;
    top:1px;

    width:20px;
    height:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#5b3df5;

    color:#fff;

    font-size:11px;
}

.hero-buttons{

    grid-area:buttons;

    display:flex;
    gap:14px;
}

.btn-store{

    display:flex;
    align-items:center;
    justify-content:center;

    min-width:160px;

    height:56px;

    background:#0f172a;

    color:#fff;

    text-decoration:none;

    border-radius:16px;

    font-weight:600;

    transition:.3s;
}

.btn-store:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(0,0,0,.12);
}

/* ==========================
   IMAGE
========================== */

.hero-image{

    grid-area:image;

    display:flex;
    justify-content:center;
    align-items:center;

    position:relative;
}

.hero-image:before{

    content:"";

    position:absolute;

    width:700px;
    height:700px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(124,58,237,.18),
        transparent 70%
    );

    filter:blur(60px);

    z-index:0;
}

.hero-image img{

    position:relative;
    z-index:1;

    width:130%;

    max-width:none;

    height:auto;

    transform:
    translateX(-40px)
    translateY(-10px);
}

/* ==========================
   TABLET
========================== */

@media(max-width:1200px){

    .hero-content h1{
        font-size:52px;
    }

    .hero-image img{
        width:115%;
        transform:none;
    }
}

/* ==========================
   MOBILE
========================== */

@media(max-width:991px){

    .hero-content{

        display:flex;
        flex-direction:column;
        text-align:center;
    }

    /* Image sabse pehle */

    .hero-image{
        order:-1;

        width:100%;
        margin:0 0 20px;
    }

    .hero-image img{

        width:100%;
        max-width:500px;

        margin:auto;
        display:block;

        transform:none;
    }

    .hero-content h1{

        font-size:42px;
        margin-bottom:15px;
    }

    .hero-content p{

        max-width:100%;
    }

    .hero-features{

        text-align:left;

        width:100%;
        max-width:420px;

        margin:0 auto 25px;
    }

    .hero-buttons{

        justify-content:center;
    }
}
/* ==========================
   SMALL MOBILE
========================== */

@media(max-width:576px){

    .hero-content h1{

        font-size:34px;

        line-height:1.1;
    }

    .hero-content p{

        font-size:16px;
    }

    .hero-image img{

        max-width:100%;
    }
}
.hero-image{
    position:relative;
    overflow:hidden;
}

.hero-image img{
    width:115%;
    height:auto;
    display:block;

    -webkit-mask-image:
        linear-gradient(
            to right,
            transparent 0%,
            rgba(0,0,0,.25) 5%,
            rgba(0,0,0,.7) 12%,
            #000 20%,
            #000 80%,
            rgba(0,0,0,.7) 88%,
            rgba(0,0,0,.25) 95%,
            transparent 100%
        );

    mask-image:
        linear-gradient(
            to right,
            transparent 0%,
            rgba(0,0,0,.25) 5%,
            rgba(0,0,0,.7) 12%,
            #000 20%,
            #000 80%,
            rgba(0,0,0,.7) 88%,
            rgba(0,0,0,.25) 95%,
            transparent 100%
        );
}
@media(max-width:576px){

    .hero-image img{
        max-width:100%;
    }

    .hero-content h1{
        font-size:34px;
        line-height:1.1;
    }
}
/* ==================================
   FEATURE CARDS
================================== */

.hero-benefits{

    max-width:1400px;

    margin:30px auto 0;

    padding:30px;

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.7);

    border-radius:28px;

    display:grid;

    grid-template-columns:
    repeat(5,1fr);

    gap:25px;

    box-shadow:
    0 10px 40px rgba(0,0,0,.04);
}

.hero-benefit-card{

    display:flex;
    gap:15px;
}

.benefit-icon{

    width:58px;
    height:58px;

    flex-shrink:0;

    border-radius:16px;

    background:#f4f1ff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:24px;
}

.hero-benefit-card h3{

    font-size:17px;

    margin-bottom:8px;

    color:#111827;
}

.hero-benefit-card p{

    color:#667085;

    line-height:1.7;

    font-size:14px;
}

/* ==================================
   TABLET
================================== */

@media(max-width:1200px){

    .hero-content h1{
        font-size:52px;
    }

    .hero-image img{
        width:120%;
    }

    .hero-benefits{
        grid-template-columns:
        repeat(2,1fr);
    }
}

/* ==================================
   MOBILE
================================== */

@media(max-width:991px){

    .hero-container{

        flex-direction:column;

        text-align:center;
    }

    .hero-content{

        flex:0 0 100%;
        max-width:100%;
    }

    .hero-image{

        flex:0 0 100%;
        max-width:100%;

        margin-top:20px;
    }

    .hero-image img{

        width:100%;

        transform:none;
    }

    .hero-buttons{

        justify-content:center;
    }

    .hero-features{

        display:inline-block;
        text-align:left;
    }

    .hero-benefits{

        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .hero-section{

        padding:20px 15px 30px;
    }

    .hero-content h1{

        font-size:42px;

        letter-spacing:-1px;
    }

    .hero-content p{

        font-size:16px;
    }

    .hero-buttons{

        flex-direction:column;
    }

    .btn-store{

        width:100%;
    }

    .hero-badge{

        font-size:13px;
    }

    .hero-benefit-card{

        text-align:left;
    }
}
/* ==========================================
   TOOLS SECTION
========================================== */

.tools-section{

    max-width:1450px;

    margin:100px auto;

    padding:0 20px;
}

.tools-heading{

    text-align:center;

    margin-bottom:50px;
}

.tools-badge{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;

    background:#f4f1ff;

    color:#5b3df5;

    font-size:13px;

    font-weight:700;

    margin-bottom:15px;
}

.tools-heading h2{

    font-size:48px;

    font-weight:800;

    color:#111827;

    margin-bottom:12px;
}

.tools-heading p{

    color:#667085;

    font-size:18px;
}

.tools-grid{

    display:grid;

    grid-template-columns:
    repeat(5,1fr);

    gap:18px;
}

.tool-card{

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.95),
        rgba(250,248,255,.95)
    );

    border:1px solid #eef0ff;

    border-radius:24px;

    padding:28px 15px;

    text-align:center;

    transition:.3s;

    backdrop-filter:blur(20px);

    box-shadow:
    0 10px 30px rgba(91,61,245,.05);
}

.tool-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 18px 40px rgba(91,61,245,.10);

    border-color:#d8d1ff;
}

.tool-card i{

    font-size:36px;

    color:#5b3df5;

    margin-bottom:14px;

    display:block;
}

.tool-card span{

    font-size:15px;

    font-weight:700;

    color:#374151;
}

/* ==========================================
   TABLET
========================================== */

@media(max-width:991px){

    .tools-grid{

        grid-template-columns:
        repeat(3,1fr);
    }

    .tools-heading h2{

        font-size:38px;
    }
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:576px){

    .tools-grid{

        grid-template-columns:
        repeat(2,1fr);

        gap:12px;
    }

    .tool-card{

        padding:20px 10px;
    }

    .tool-card i{

        font-size:28px;
    }

    .tool-card span{

        font-size:13px;
    }

    .tools-heading h2{

        font-size:30px;
    }
}
.tool-card img{
    width:36px;
    height:36px;
    margin-bottom:14px;
}
/* ==================================
   PREMIUM FEATURE STRIP
================================== */

.hero-highlights{

    max-width:1450px;
    margin:0 auto 80px;

    display:grid;
    grid-template-columns:repeat(5,1fr);

    background:rgba(255,255,255,.65);

    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);

    border:1px solid rgba(255,255,255,.8);

    border-radius:28px;

    overflow:hidden;

    box-shadow:
    0 20px 60px rgba(0,0,0,.04),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.highlight-item{

    display:flex;
    align-items:flex-start;

    gap:16px;

    padding:28px;

    position:relative;

    transition:.3s;
}

.highlight-item:hover{

    background:rgba(255,255,255,.45);
}

.highlight-item:not(:last-child)::after{

    content:'';

    position:absolute;

    top:25px;
    right:0;

    width:1px;
    height:calc(100% - 50px);

    background:#ececf5;
}

/* ICON */

.highlight-icon{

    width:52px;
    height:52px;

    flex-shrink:0;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(
        135deg,
        rgba(91,61,245,.08),
        rgba(91,61,245,.14)
    );

    color:#5b3df5;

    font-size:22px;
}

/* CONTENT */

.highlight-item h3{

    font-size:18px;
    font-weight:700;

    color:#0f172a;

    margin-bottom:8px;
}

.highlight-item p{

    font-size:14px;
    line-height:1.8;

    color:#667085;
}

/* TABLET */

@media(max-width:1200px){

    .hero-highlights{

        grid-template-columns:
        repeat(2,1fr);
    }

    .highlight-item::after{
        display:none;
    }

    .highlight-item{
        border-bottom:1px solid #ececf5;
    }

    .highlight-item:last-child{
        border-bottom:none;
    }
}

/* MOBILE */

@media(max-width:768px){

    .hero-highlights{

        margin:25px 15px 60px;

        grid-template-columns:1fr;

        border-radius:22px;
    }

    .highlight-item{

        padding:20px;

        gap:14px;

        border-bottom:1px solid #ececf5;
    }

    .highlight-item:last-child{
        border-bottom:none;
    }

    .highlight-icon{

        width:46px;
        height:46px;

        font-size:18px;

        border-radius:14px;
    }

    .highlight-item h3{

        font-size:16px;
    }

    .highlight-item p{

        font-size:13px;
        line-height:1.7;
    }
}

/* Business section */
/* ==================================
   BUSINESS SECTION
================================== */

.business-section{

    max-width:1450px;
    margin:100px auto;

    padding:0 20px;
}

/* ==================================
   HEADING
================================== */

.section-heading{

    text-align:center;

    margin-bottom:60px;
}

.section-badge{

    display:inline-flex;
    align-items:center;

    padding:10px 18px;

    background:rgba(91,61,245,.08);

    border:1px solid rgba(91,61,245,.12);

    color:#5b3df5;

    border-radius:50px;

    font-size:13px;
    font-weight:700;

    margin-bottom:18px;
}

.section-heading h2{

    font-size:52px;
    line-height:1.1;

    font-weight:800;

    color:#0f172a;

    margin-bottom:15px;
}

.section-heading h2 span{

    background:linear-gradient(
        135deg,
        #4f46e5,
        #9333ea
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.section-heading p{

    max-width:700px;

    margin:auto;

    color:#667085;

    font-size:18px;

    line-height:1.8;
}

/* ==================================
   GRID
================================== */

.business-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:24px;
}

/* ==================================
   CARD
================================== */

.business-card{

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(24px);

    border:1px solid rgba(255,255,255,.8);

    border-radius:28px;

    overflow:hidden;

    transition:.35s ease;

    box-shadow:
    0 10px 40px rgba(0,0,0,.04);

    position:relative;
}

.business-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 25px 60px rgba(0,0,0,.10);
}

/* ==================================
   TOP COLOR BORDER
================================== */

.seller-card{
    border-top:4px solid #5b3df5;
}

.publisher-card{
    border-top:4px solid #22c55e;
}

.affiliate-card{
    border-top:4px solid #f97316;
}

.agency-card{
    border-top:4px solid #3b82f6;
}

/* ==================================
   IMAGE
================================== */

.business-image{

    position:relative;

    overflow:hidden;
}

.business-image img{

    width:100%;

    height:200px;

    object-fit:cover;

    transition:.5s;
}

.business-card:hover img{

    transform:scale(1.05);
}

/* ==================================
   BADGE
================================== */

.coming-soon{

    position:absolute;

    top:14px;
    right:14px;

    padding:7px 12px;

    border-radius:50px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(10px);

    color:#5b3df5;

    font-size:11px;

    font-weight:700;
}

/* ==================================
   CONTENT
================================== */

.business-content{

    padding:24px;
}

.business-content h3{

    font-size:22px;

    color:#111827;

    margin-bottom:10px;
}

.business-content p{

    color:#667085;

    line-height:1.8;

    font-size:15px;

    margin-bottom:20px;
}

/* ==================================
   FEATURES
================================== */

.business-features{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:12px;

    margin-bottom:22px;
}

.feature-item{

    display:flex;
    flex-direction:column;

    align-items:center;
    justify-content:center;

    gap:8px;

    padding:12px 8px;

    background:#fafaff;

    border:1px solid #ececf5;

    border-radius:14px;

    transition:.3s;
}

.feature-item:hover{

    background:#f4f1ff;

    transform:translateY(-2px);
}

.feature-item i{

    font-size:16px;

    color:#5b3df5;
}

.feature-item span{

    font-size:11px;

    font-weight:600;

    color:#555;
}
.business-features span{

    padding:8px 12px;

    background:#f8f8fc;

    border:1px solid #ececf5;

    border-radius:50px;

    font-size:12px;

    color:#555;
}
@media(max-width:768px){

    .business-features{

        grid-template-columns:
        repeat(2,1fr);
    }
}
/* ==================================
   BUTTON
================================== */

.business-btn{

    display:flex;

    align-items:center;
    justify-content:center;

    height:50px;

    border-radius:14px;

    text-decoration:none;

    font-weight:700;

    transition:.3s;
}

/* Seller */

.seller-card .business-btn{

    color:#5b3df5;
    border:1px solid #5b3df5;
}

/* Publisher */

.publisher-card .business-btn{

    color:#22c55e;
    border:1px solid #22c55e;
}

/* Affiliate */

.affiliate-card .business-btn{

    color:#f97316;
    border:1px solid #f97316;
}

/* Agency */

.agency-card .business-btn{

    color:#3b82f6;
    border:1px solid #3b82f6;
}

.business-btn:hover{

    background:#111827;

    color:#fff !important;

    border-color:#111827 !important;
}

/* ==================================
   RESPONSIVE
================================== */

@media(max-width:1200px){

    .business-grid{

        grid-template-columns:
        repeat(2,1fr);
    }
}

@media(max-width:768px){

    .business-section{

        margin:70px auto;

        padding:0 15px;
    }

    .section-heading{

        margin-bottom:35px;
    }

    .section-heading h2{

        font-size:34px;
    }

    .section-heading p{

        font-size:15px;
    }

    .business-grid{

        grid-template-columns:1fr;

        gap:18px;
    }

    .business-image img{

        height:220px;
    }

    .business-content{

        padding:20px;
    }

    .business-content h3{

        font-size:20px;
    }
}

/* ==================================
   LIFESTYLE SECTION
================================== */

.lifestyle-section{

    max-width:1450px;
    margin:100px auto;

    padding:0 20px;
}

.lifestyle-card{

    position:relative;

    overflow:hidden;

    border-radius:32px;

    background:
    rgba(255,255,255,.65);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.8);

    box-shadow:
    0 20px 60px rgba(0,0,0,.05);

    min-height:520px;

    display:flex;
    align-items:center;
}

/* BG Image */

.lifestyle-image{

    position:absolute;

    inset:0;
}

.lifestyle-image img{

    width:100%;
    height:100%;

    object-fit:cover;
}

/* Overlay */

.lifestyle-image:after{

    content:'';

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        90deg,
        rgba(255,255,255,.95) 0%,
        rgba(255,255,255,.75) 35%,
        rgba(255,255,255,.10) 100%
    );
}

/* Content */

.lifestyle-content{

    position:relative;
    z-index:2;

    max-width:520px;

    padding:60px;
}

.life-badge{

    display:inline-block;

    padding:10px 18px;

    background:#f4f1ff;

    color:#5b3df5;

    border-radius:50px;

    font-size:13px;
    font-weight:700;

    margin-bottom:20px;
}

.lifestyle-content h2{

    font-size:46px;
    line-height:1.1;

    font-weight:800;

    margin-bottom:18px;

    color:#0f172a;
}

.lifestyle-content h2 span{

    display:block;

    background:
    linear-gradient(
        135deg,
        #4f46e5,
        #9333ea
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.lifestyle-content p{

    color:#667085;

    line-height:1.9;

    font-size:17px;

    margin-bottom:28px;
}

/* Features */

.life-features{

    list-style:none;
}

.life-features li{

    position:relative;

    padding-left:28px;

    margin-bottom:14px;

    font-size:15px;

    color:#374151;
}

.life-features li:before{

    content:'✓';

    position:absolute;

    left:0;

    color:#22c55e;

    font-weight:700;
}

/* Floating CTA */

.floating-cta{

    position:absolute;

    right:40px;
    bottom:40px;

    z-index:5;

    width:340px;

    padding:26px;

    border-radius:24px;

    background:
    rgba(255,255,255,.22);

    backdrop-filter:blur(25px);
    -webkit-backdrop-filter:blur(25px);

    border:1px solid
    rgba(255,255,255,.35);

    box-shadow:
    0 20px 50px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.4);
}
.floating-cta h3{

    font-size:26px;
    line-height:1.4;

    color:#111827;

    margin-bottom:20px;
}

.floating-cta a{

    display:flex;
    align-items:center;
    justify-content:center;

    height:52px;

    border-radius:14px;

    text-decoration:none;

    background:
    linear-gradient(
        135deg,
        #4f46e5,
        #9333ea
    );

    color:#fff;

    font-weight:700;
}

/* ==================================
   TABLET
================================== */

@media(max-width:1024px){

    .lifestyle-content{

        max-width:450px;

        padding:32px;
    }

    .lifestyle-content h2{

        font-size:42px;
    }

    .floating-cta{

        width:300px;
    }
}

/* ==================================
   MOBILE
================================== */

@media(max-width:768px){

    .lifestyle-card{

        min-height:auto;

        display:block;
    }

    .lifestyle-image{

        position:relative;

        height:280px;
    }

    .lifestyle-image:after{

        background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.15),
            rgba(255,255,255,.55)
        );
    }

    .lifestyle-content{

        max-width:100%;

        padding:25px;
    }

    .lifestyle-content h2{

        font-size:34px;
    }

    .lifestyle-content p{

        font-size:15px;
    }

    .floating-cta{

        position:relative;

        right:auto;
        bottom:auto;

        width:calc(100% - 30px);

        margin:20px auto;
    }
}

/* ==========================================
   BENEFITS SECTION
========================================== */

.benefits-section{
    max-width:1450px;
    margin:100px auto;
    padding:0 20px;
}

.benefits-heading{
    text-align:center;
    margin-bottom:50px;
}

.benefits-badge{

    display:inline-flex;
    align-items:center;

    padding:10px 18px;

    border-radius:50px;

    background:#f4f1ff;

    color:#5b3df5;

    font-size:13px;
    font-weight:700;

    margin-bottom:15px;
}

.benefits-heading h2{

    font-size:56px;
    font-weight:800;

    color:#111827;

    margin-bottom:10px;
}

.benefits-heading h2 span{

    background:linear-gradient(
        135deg,
        #4f46e5,
        #9333ea
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.benefits-heading p{

    color:#667085;

    font-size:18px;
}

/* ==========================================
   MAIN LAYOUT
========================================== */

.benefits-layout{

    display:grid;

    grid-template-columns:
    1.7fr 1fr;

    gap:24px;
}

/* ==========================================
   COMMON CARD
========================================== */
/* ==========================================
   LEFT BENEFIT CARD
========================================== */

.benefit-main-card{

    background:#fff;

    border-radius:36px;

    padding:35px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.04);

    height:100%;
}

.benefit-icon{

    width:58px;
    height:58px;

    border-radius:18px;

    background:#f4f1ff;

    display:flex;
    align-items:center;
    justify-content:center;

    color:#5b3df5;

    font-size:24px;

    margin-bottom:25px;
}

.benefit-title{

    font-size:54px;

    line-height:1.05;

    letter-spacing:-1px;

    font-weight:800;

    color:#111827;

    margin-bottom:20px;
}

.benefit-desc{

    font-size:17px;

    line-height:1.8;

    color:#667085;

    max-width:550px;

    margin-bottom:25px;
}

/* Features */

.benefit-list{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:15px;

    margin-bottom:30px;
}

.benefit-item{

    display:flex;

    align-items:center;

    gap:10px;

    font-size:15px;

    font-weight:600;

    color:#4b5563;
}

.benefit-item i{

    color:#5b3df5;
}

/* ==========================================
   ORBIT
========================================== */

.orbit-section{

    display:flex;

    justify-content:center;

    margin-bottom:25px;
}

.orbit-container{

    width:420px;
    height:280px;

    position:relative;
}

.growksy-logo{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

    width:95px;
    height:95px;

    border-radius:24px;

    background:
    linear-gradient(
        135deg,
        #4f46e5,
        #9333ea
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:42px;

    font-weight:800;

    box-shadow:
    0 20px 60px rgba(91,61,245,.25);
}

.orbit-container::before{

    content:'';

    position:absolute;

    top:50%;
    left:50%;

    width:240px;
    height:240px;

    transform:translate(-50%,-50%);

    border:2px dashed rgba(91,61,245,.15);

    border-radius:50%;
}

.orbit-icon{

    position:absolute;

    width:58px;
    height:58px;

    border-radius:18px;

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

    color:#5b3df5;

    font-size:22px;
}

.i1{
    top:0;
    left:50%;
    transform:translateX(-50%);
}

.i2{
    top:55px;
    left:45px;
}

.i3{
    bottom:45px;
    left:55px;
}

.i4{
    bottom:0;
    left:50%;
    transform:translateX(-50%);
}

.i5{
    bottom:45px;
    right:55px;
}

.i6{
    top:55px;
    right:45px;
}

/* ==========================================
   MINI FEATURES
========================================== */

.benefit-mini-features{

    display:grid;

    grid-template-columns:
    repeat(5,1fr);

    gap:12px;
}

.mini-feature{

    padding:16px 10px;

    text-align:center;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #ffffff,
        #faf8ff
    );

    border:1px solid #eef0ff;
}

.mini-feature i{

    display:block;

    margin-bottom:8px;

    color:#5b3df5;

    font-size:20px;
}

.mini-feature span{

    font-size:12px;

    font-weight:700;

    color:#374151;
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:991px){

    .benefit-title{

        font-size:38px;
    }

    .benefit-list{

        grid-template-columns:1fr;
    }

    .benefit-mini-features{

        grid-template-columns:
        repeat(2,1fr);
    }

    .orbit-container{

        width:320px;
        height:240px;
    }
}

@media(max-width:576px){

    .benefit-mini-features{

        grid-template-columns:1fr;
    }

    .benefit-title{

        font-size:30px;
    }
}
/* ==========================================
   ORBIT
========================================== */

.orbit-section{

    display:flex;
    align-items:center;
    justify-content:center;
}
.orbit-container{

    width:460px;
    height:320px;

    position:relative;
}
.orbit-container{

    animation:
    orbitFloat 6s ease-in-out infinite;
}

@keyframes orbitFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }
}
.growksy-logo{

    position:absolute;

    top:50%;
    left:50%;

    transform:translate(-50%,-50%);

     width:110px;
    height:110px;

    font-size:48px;

    border-radius:28px;

    background:
    linear-gradient(
        135deg,
        #4f46e5,
        #9333ea
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;

    font-size:42px;
    font-weight:800;

    box-shadow:
    0 20px 60px rgba(91,61,245,.30);
}
.orbit-container::before{

    content:'';

    position:absolute;

    top:50%;
    left:50%;

    width:280px;
    height:280px;

    transform:translate(-50%,-50%);

    border:2px dashed
    rgba(91,61,245,.12);

    border-radius:50%;
}
.orbit-icon{

    position:absolute;

    width:58px;
    height:58px;

    border-radius:18px;

    background:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:
    0 12px 30px rgba(0,0,0,.08);

    color:#5b3df5;

    font-size:22px;

    transition:.3s;
}

.orbit-icon:hover{

    transform:translateY(-5px);

    box-shadow:
    0 18px 40px rgba(91,61,245,.12);
}
/* top */

.i1{
    top:0;
    left:50%;
    transform:translateX(-50%);
}

/* top left */

.i2{
    top:50px;
    left:50px;
}

/* left bottom */

.i3{
    bottom:40px;
    left:60px;
}

/* bottom */

.i4{
    bottom:0;
    left:50%;
    transform:translateX(-50%);
}

/* right bottom */

.i5{
    bottom:40px;
    right:60px;
}

/* top right */

.i6{
    top:50px;
    right:50px;
}


/* ==========================================
   RIGHT CARD
========================================== */

.benefits-side-card{

    padding:30px;
}

.platforms-box h4{

    font-size:24px;

    margin-bottom:20px;
}

.platforms-box ul{

    list-style:none;
    margin:0;
    padding:0;
}

.platforms-box li{

    display:flex;
    align-items:center;

    gap:10px;

    padding:12px 0;

    border-bottom:1px solid #ececf5;
}

.platforms-box li i{

    width:20px;

    color:#5b3df5;
}

.platforms-box li span{

    flex:1;
}

/* ==========================================
   STATS
========================================== */

.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:15px;

    margin-top:25px;
}

.stat-box{

    padding:12px;

    border-radius:18px;

    background:#fafaff;

    border:1px solid #ececf5;
}

.stat-box small{

    color:#667085;
}

.stat-box h4{

    font-size:22px;

    margin:6px 0;
}

.stat-box span{

    color:#16a34a;

    font-weight:600;
}

/* ==========================================
   BUTTON
========================================== */

.manage-btn{

    display:flex;

    align-items:center;
    justify-content:center;

    height:58px;

    margin-top:20px;

    text-decoration:none;

    border-radius:16px;

    font-weight:700;

    color:#fff;

    background:
    linear-gradient(
        135deg,
        #4f46e5,
        #9333ea
    );
}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:1200px){

    .benefits-layout{
        grid-template-columns:1fr;
    }

    .benefits-main-card{
        grid-template-columns:1fr;
        gap:40px;
    }
}
@media(max-width:991px){

    .benefits-main-card{

        grid-template-columns:1fr;

        text-align:center;
    }

    .benefits-content{

        max-width:100%;
    }

    .benefit-list{

        grid-template-columns:1fr;
    }

    .orbit-container{

        width:300px;
        height:240px;
    }
}
@media(max-width:768px){

    .benefits-section{
        padding:0 15px;
    }

    .benefits-heading h2{
        font-size:36px;
    }

    .benefits-heading p{
        font-size:15px;
    }

    .benefits-content h3{
        font-size:28px;
    }

    .benefit-list{
        grid-template-columns:1fr;
    }

    .orbit-container{
        width:240px;
        height:240px;
    }

    .orbit-icon{
        width:48px;
        height:48px;
    }

    .growksy-logo{
        width:80px;
        height:80px;
        font-size:36px;
    }

    .stats-grid{
        grid-template-columns:1fr 1fr;
    }
}

/* ==========================================
   Features Section 
========================================== */
.feature-showcase{
    max-width:1450px;
    margin:80px auto;
    padding:0 20px;

    display:flex;
    gap:24px;

    overflow-x:auto;
    overflow-y:hidden;

    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;

    scrollbar-width:none;
}

.feature-showcase::-webkit-scrollbar{
    display:none;
}

.showcase-card{
    flex:0 0 calc(33.333% - 16px);

    background:rgba(255,255,255,.75);
    backdrop-filter:blur(24px);

    border:1px solid rgba(255,255,255,.8);
    border-radius:28px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.04);

    scroll-snap-align:start;
}

.showcase-card:hover{
    transform:translateY(-8px);

    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.showcase-top{
    display:flex;
    gap:15px;
    padding:22px;
}

.showcase-icon{
    width:54px;
    height:54px;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    font-size:20px;
}

.sales{
    background:#eef2ff;
    color:#4f46e5;
}

.earnings{
    background:#ecfdf3;
    color:#16a34a;
}

.alerts{
    background:#f3e8ff;
    color:#9333ea;
}

.showcase-top h3{
    font-size:22px;
    margin-bottom:6px;
}

.showcase-top p{
    font-size:14px;
    color:#667085;
    line-height:1.7;
}

.showcase-card img{
    width:100%;
    display:block;
}

/* Tablet */

@media(max-width:991px){

    .showcase-card{
        flex:0 0 calc(50% - 12px);
    }
}

/* Mobile */

@media(max-width:767px){

    .feature-showcase{
        padding:0 15px;
        gap:16px;
    }

    .showcase-card{
        flex:0 0 100%;
    }

    .showcase-top h3{
        font-size:20px;
    }
}
/* ==========================================
   Benefits
========================================== */

.benefit-section{
    display:none;
}
.benefit-top{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    margin-bottom:25px;
}

.benefits-side-card{
    background:#fff;
    border-radius:36px;
    padding:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.04);
}

.benefit-stats{
    display:flex;
    justify-content:space-between;
    margin:25px 0;
}

.benefit-stats strong{
    display:block;
    font-size:34px;
    font-weight:800;
}

.benefit-stats span{
    color:#667085;
    font-size:13px;
}

@media(max-width:1200px){

    .benefits-layout{
        grid-template-columns:1fr;
    }

    .benefit-top{
        grid-template-columns:1fr;
    }
}

/* ==========================================
   APP SECTION
========================================== */

.app-section{

    max-width:1450px;

    margin:80px auto;

    padding:0 20px;
}

.app-card{

    position:relative;

    overflow:hidden;

    border-radius:40px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.92),
        rgba(246,243,255,.95)
    );

    border:1px solid
    rgba(255,255,255,.9);

    box-shadow:
    0 25px 70px rgba(91,61,245,.08),
    inset 0 1px 0 rgba(255,255,255,.9);
}

/* Glow */

.app-card::before{

    content:'';

    position:absolute;

    top:-150px;
    right:-150px;

    width:400px;
    height:400px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(91,61,245,.12),
        transparent 70%
    );

    pointer-events:none;
}
.app-card::after{

    content:'';

    position:absolute;

    inset:0;

    border-radius:40px;

    padding:1px;

    background:
    linear-gradient(
        135deg,
        rgba(91,61,245,.25),
        rgba(255,255,255,.8),
        rgba(0,184,255,.18)
    );

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    mask-composite:exclude;

    pointer-events:none;
}
/* ==========================================
   TOP AREA
========================================== */

.app-top{

    display:grid;

    grid-template-columns:
    1.15fr .85fr;

    align-items:center;

    gap:30px;

    padding:40px;
}

/* ==========================================
   IMAGE
========================================== */

.app-visual{

    display:flex;

    justify-content:center;
    align-items:center;
}

.app-visual-image{

    animation:
    floatImage 6s ease-in-out infinite;
}

@keyframes floatImage{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }
}
.app-visual{
    display:flex;
    justify-content:center;
    align-items:flex-end;

    width:100%;
    height:100%;

    position:relative;
    overflow:hidden;
}

.app-visual-image{
    display:block;

    width:100%;
    max-width:650px; /* desktop size */

    height:auto;

    object-fit:contain;
    object-position:bottom center;

    transition:.3s ease;
}
@media(max-width:991px){

    .app-visual{
        min-height:auto;
    }

    .app-visual-image{
        width:90%;
        max-width:500px;
    }
}
@media(max-width:768px){

    .app-visual{
        padding:0 15px;
    }

    .app-visual-image{
        width:100%;
        max-width:380px;
    }
}
.app-visual-image{

    width:100%;
    max-width:750px;
    display:block;

    -webkit-mask-image:
        linear-gradient(
            to right,
            transparent 0%,
            rgba(0,0,0,.6) 10%,
            rgba(0,0,0,1) 20%,
            rgba(0,0,0,1) 80%,
            rgba(0,0,0,.6) 90%,
            transparent 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0,0,0,1) 0%,
            rgba(0,0,0,1) 80%,
            rgba(0,0,0,.6) 90%,
            transparent 100%
        );

    -webkit-mask-composite: source-in;

    mask-image:
        linear-gradient(
            to right,
            transparent 0%,
            rgba(0,0,0,.6) 10%,
            rgba(0,0,0,1) 20%,
            rgba(0,0,0,1) 80%,
            rgba(0,0,0,.6) 90%,
            transparent 100%
        ),
        linear-gradient(
            to bottom,
            rgba(0,0,0,1) 0%,
            rgba(0,0,0,1) 80%,
            rgba(0,0,0,.6) 90%,
            transparent 100%
        );
}
/* ==========================================
   CONTENT
========================================== */

.app-content{

    max-width:500px;
}

/* Badge */

.app-badge{

    background:
    linear-gradient(
        135deg,
        rgba(91,61,245,.08),
        rgba(91,61,245,.15)
    );

    border:1px solid
    rgba(91,61,245,.12);

    backdrop-filter:blur(20px);

    box-shadow:
    0 8px 25px rgba(91,61,245,.08);
}

/* Brand */

.app-brand{

    display:flex;

    align-items:center;

    gap:12px;

    margin-bottom:22px;
}

.app-brand img{

    width:160px;
    height:60px;

    object-fit:contain;
}

.app-brand strong{

    display:block;

    font-size:28px;

    font-weight:800;

    color:#111827;
}

.app-brand span{

    display:block;

    font-size:14px;

    color:#667085;
}

/* Heading */

.app-content h2{

    font-size:60px;

    line-height:1;

    letter-spacing:-1px;

    margin-bottom:18px;

    color:#111827;

    font-weight:800;
}

.app-content h2 span{

    background:
    linear-gradient(
        135deg,
        #4f46e5,
        #9333ea
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* Description */

.app-content p{

    font-size:17px;

    line-height:1.8;

    color:#667085;

    margin-bottom:24px;
}

/* ==========================================
   STORE BUTTONS
========================================== */

.app-buttons{

    display:flex;

    gap:14px;

    flex-wrap:wrap;

    margin-bottom:18px;
}

.store-btn{

    position:relative;

    overflow:hidden;

    display:flex;

    align-items:center;

    gap:12px;

    min-width:190px;

    height:60px;

    padding:0 18px;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #0f172a,
        #1e293b
    );

    color:#fff;

    text-decoration:none;

    box-shadow:
    0 10px 25px rgba(15,23,42,.20);

    transition:.35s;
}
.store-btn::before{

    content:'';

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transform:skewX(-25deg);

    animation:
    storeShine 4s infinite;
}

@keyframes storeShine{

    0%{
        left:-120%;
    }

    30%{
        left:140%;
    }

    100%{
        left:140%;
    }
}
.store-btn:hover{

    transform:
    translateY(-4px);

    box-shadow:
    0 18px 40px rgba(91,61,245,.18);
}
.store-btn i{

    font-size:26px;
}

.store-btn small{

    display:block;

    font-size:11px;

    opacity:.7;
}

.store-btn strong{

    font-size:15px;
}

/* ==========================================
   RATING
========================================== */

.app-rating{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:15px;

    color:#f59e0b;

    font-weight:700;
}

.app-rating span{

    color:#667085;
}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:991px){

    .app-top{

        grid-template-columns:1fr;

        text-align:center;
    }

    .app-content{

        max-width:100%;
        margin:auto;
    }

    .app-brand{

        justify-content:center;
    }

    .app-buttons{

        justify-content:center;
    }

    .app-rating{

        justify-content:center;
    }

    .app-visual-image{

        max-width:420px;
    }
}

@media(max-width:768px){

    .app-section{

        padding:0 15px;
    }

    .app-top{

        padding:25px;
    }

    .app-content h2{

        font-size:42px;
    }

    .app-content p{

        font-size:15px;
    }

    .store-btn{

        width:100%;
        justify-content:center;
    }
}

@media(max-width:480px){

    .app-content h2{

        font-size:34px;
    }

    .app-visual-image{

        max-width:300px;
    }
}

.cta-icon{
    width:90px;
    height:90px;

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;

    background:#fff;

    border-radius:24px;

    box-shadow:
        0 10px 30px rgba(99,102,241,.08);

    border:1px solid rgba(99,102,241,.08);
}

.cta-icon img{
    width:64px;
    height:64px;
    object-fit:contain;
}
@media(max-width:768px){

    .cta-icon{
        width:70px;
        height:70px;
        border-radius:18px;
    }

    .cta-icon img{
        width:46px;
        height:46px;
    }
}

/* Play Icon Css */

.play-badge-link{
    display:inline-block;
    text-decoration:none;
    transition:.3s ease;
}

.play-badge-link:hover{
    transform:translateY(-3px);
}

.play-badge{
    display:block;
    height:60px;
    width:auto;
}
@media(max-width:768px){

    .play-badge{
        height:52px;
    }

}