/* ====================
   HOME.CSS
===================== */

.hero,
.business-needs,
.ecosystem-section,
.how-it-works,
.success-stores,
.marketplace-section,
.testimonial-section{
    position:relative;
}

/* =====================================
   HERO
===================================== */

.hero{

    position:relative;

    padding:60px 0 120px;

    overflow:hidden;

    background:
    radial-gradient(
        circle at top right,
        rgba(255,47,146,.08),
        transparent 30%
    ),

    radial-gradient(
        circle at left center,
        rgba(71,35,217,.05),
        transparent 35%
    ),

    #fff;
}

.hero-grid{

    display:grid;

    grid-template-columns:
    1fr
    1.1fr;

    align-items:center;

    gap:70px;
}

.hero-content{
    position:relative;
}

.hero-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:999px;



    background:

    linear-gradient(

        135deg,

        rgba(255,47,146,.08),

        rgba(71,35,217,.08)

    );

    border:

    1px solid rgba(255,47,146,.08);

    backdrop-filter:blur(10px);

    color:var(--primary);

    font-weight:200;

    font-size:14px;

    margin-bottom:24px;
}

.hero-trust{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-top:28px;

    color:var(--muted);

    font-size:14px;
}

.hero-trust span{

    color:var(--primary);
}



.hero-dots{

    position:absolute;
    width:140px;

    height:140px;

    background-image:
    radial-gradient(
        rgba(71,35,217,.8) 1.2px,
        transparent 1.2px
    );

    background-size:12px 12px;

    opacity:.15;
}

.hero-dots-left{

    left:0px;

    top:180px;
}

.hero-dots-right{

    right:30px;

    bottom:120px;
}


.hero-arrow{

    position:absolute;

    right:140px;

    bottom:140px;

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    color:#fff;

    background:
    linear-gradient(
        135deg,
        var(--secondary),
        var(--primary)
    );

    box-shadow:
    0 20px 40px rgba(255,47,146,.25);

    z-index:5;
}


.hero-ring{

    position:absolute;

    width:250px;

    height:250px;

    border-radius:50%;

    border:18px solid
    rgba(71,35,217,.05);

    left:42%;

    top:160px;
}

.hero h1{

    font-size:78px;

    font-weight:700;

    letter-spacing:-4px;

    line-height:.92;
}

.hero h1 span{

    display:block;

    background:
    linear-gradient(
        135deg,
        var(--secondary),
        var(--primary)
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero p{

    max-width:540px;

    font-size:20px;

    color:var(--muted);

    margin-bottom:35px;
}

.hero-buttons{

    display:flex;

    gap:16px;
}



/* =====================================
   HERO BLOBS
===================================== */

.hero-blob{

    position:absolute;

    width:500px;
    height:500px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(255,47,146,.12),
        transparent 70%
    );

    right:-150px;
    top:-100px;

    z-index:0;
}

.hero-blob-2{

    left:-180px;
    bottom:-180px;

    background:
    radial-gradient(
        circle,
        rgba(71,35,217,.10),
        transparent 70%
    );
}

.hero-blob,
.hero-dots,
.pricing-blob,
.pricing-dots{
    pointer-events:none;
}

/* =====================================
   HERO IMAGE
===================================== */
.hero-image::before{

    content:'';

    position:absolute;

    width:120%;

    height:120%;

    background:
    linear-gradient(
        135deg,
        rgba(255,47,146,.15),
        rgba(71,35,217,.15)
    );

    border-radius:
    42% 58% 60% 40% /
    40% 45% 55% 60%;

    top:-10%;

    left:-10%;

    z-index:-1;

    filter:blur(20px);
}
.hero-image{

    position:relative;

}

.hero-image img{

    width:100%;

    position:relative;

    z-index:4;

    animation:
    floatHero 6s ease-in-out infinite;

    filter:
    drop-shadow(
        0 40px 100px rgba(0,0,0,.18)
    );
}

@keyframes floatHero{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-10px);
    }

    100%{
        transform:translateY(0);
    }
}


.hero-blob,
.hero-dots,
.hero-ring{
    z-index:0;
}

.hero-content,
.hero-image{
    z-index:3;
}

/* =====================================
   GLASS CARD
===================================== */

.glass-card{

    background:
    rgba(255,255,255,.75);

    border:
    1px solid rgba(255,255,255,.5);

    backdrop-filter:
    blur(20px);

    -webkit-backdrop-filter:
    blur(20px);

    box-shadow:
    var(--shadow-md);

    border-radius:
    var(--radius);
}

/* =====================================
   MOBILE
===================================== */

@media(max-width:992px){

    .hero{

        padding:20px 0 70px;
    }

    .hero-grid{

        grid-template-columns:1fr;

        gap:30px;
    }

    .hero-content{

        order:2;
    }

    .hero-image{

        order:1;
    }

    .hero h1{

        font-size:46px;

        line-height:1;

        letter-spacing:-2px;
    }

    .hero p{

        font-size:15px;

        margin-bottom:25px;
    }

    .hero-buttons{

        flex-direction:column;
    }

.hero-buttons .primary-btn,
.hero-buttons .secondary-btn{

    width:100%;
    justify-content:center;
}


}


/* =====================================
   BUSINESS NEEDS
===================================== */

.business-needs{

    position:relative;

    padding:50px 0;

    background:
    linear-gradient(
        180deg,
        #fff,
        #faf8ff
    );
}



.needs-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

    margin-top:60px;
}

.need-card{

    position:relative;

    padding:40px;

    background:#fff;

    border-radius:28px;

    border:1px solid #f0f0f5;

    text-align:center;

    box-shadow:
    0 20px 50px rgba(0,0,0,.05);

    transition:.35s;
}

.need-card:hover{

    transform:
    translateY(-10px);
}

.need-icon{

    width:80px;
    height:80px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    background:
    linear-gradient(
        135deg,
        rgba(71,35,217,.12),
        rgba(255,47,146,.12)
    );

    box-shadow:
    0 15px 35px rgba(255,47,146,.12);
}

.need-card h3{

    margin-bottom:12px;

    font-size:22px;
}

.need-card p{

    color:var(--muted);

    font-size:15px;
}

.need-arrow{

    width:40px;
    height:40px;

    margin:25px auto 0;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#faf8ff;

    color:var(--primary);

    font-weight:700;
}

.need-card.featured{

    transform:
    translateY(-15px);

    border:none;

    background:
    linear-gradient(
        180deg,
        #fff,
        #fff7fc
    );

    box-shadow:
    0 30px 70px rgba(255,47,146,.12);
}

@media(max-width:992px){

    .needs-grid{

        display:grid;

        grid-template-columns:repeat(3,1fr);

        gap:10px;

        margin-top:25px;
    }

    .need-card{

        padding:14px 10px;

        border-radius:16px;
    }

    .need-icon{

        width:45px;
        height:45px;

        margin:0 auto 10px;

        font-size:20px;
    }

    .need-card h3{

        font-size:12px;

        line-height:1.3;

        margin-bottom:6px;
    }

    .need-card p{

        display:none;
    }

    .need-arrow{

        width:26px;
        height:26px;

        margin:10px auto 0;

        font-size:12px;
    }

    .need-card.featured{

        transform:none;
    }

} 

/* =====================================
   STORE + MARKETPLACE
===================================== */

.ecosystem-section{

    position:relative;

    padding:30px 0;

    overflow:hidden;
}

.ecosystem-grid{

    display:grid;

    grid-template-columns:
    1fr
    1.2fr;

    gap:70px;

    align-items:center;
}

.ecosystem-content h2{

    font-size:54px;

    line-height:1.05;

    letter-spacing:-2px;

    margin-bottom:20px;
}

.ecosystem-content h2 span{

    display:block;

    background:
    linear-gradient(
        135deg,
        var(--secondary),
        var(--primary)
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.ecosystem-content p{

    color:var(--muted);

    margin-bottom:30px;

    max-width:500px;
}

.ecosystem-list{

    display:flex;

    flex-direction:column;

    gap:20px;

    margin-top:30px;
}

.ecosystem-list li{

    position:relative;

    padding-left:28px;

    color:#475569;

    font-size:16px;

    font-weight:500;

    min-height:auto;

    display:flex;

    align-items:center;
}

.ecosystem-list li::before{

    content:'✓';

    position:absolute;

    left:0;

    top:50%;

    transform:translateY(-50%);

    color:#22c55e;

    font-size:16px;

    font-weight:700;

    background:none;

    box-shadow:none;

    width:auto;

    height:auto;
}

/* =====================================
   VISUAL
===================================== */

.ecosystem-visual{

    position:relative;

    display:flex;

    justify-content:center;

    gap:25px;
}

.ecosystem-card{

    width:320px;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);

    position:relative;

    z-index:3;
}

.ecosystem-card h4{

    padding:20px;

    text-align:center;

    font-size:18px;

    border-bottom:
    1px solid #f1f1f5;
}

.ecosystem-card img{

    width:100%;
}

.store-card{

    transform:
    rotate(-2deg);
}

.marketplace-card{

    transform:
    rotate(2deg);
}

.link-badge{

    position:absolute;

    left:50%;

    top:50%;

    transform:
    translate(-50%,-50%);

    width:70px;

    height:70px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    background:
    linear-gradient(
        135deg,
        var(--secondary),
        var(--primary)
    );

    color:#fff;

    z-index:10;

    box-shadow:
    0 20px 40px rgba(255,47,146,.25);
}

.ecosystem-blob{

    position:absolute;

    width:500px;

    height:500px;

    border-radius:50%;

    background:
    radial-gradient(
        circle,
        rgba(255,47,146,.10),
        transparent 70%
    );

    right:50px;

    top:80px;

    z-index:1;
}

@media(max-width:992px){
    .ecosystem-grid{

    grid-template-columns:1fr;

    gap:40px;
}

.ecosystem-content{

    text-align:center;
}

.ecosystem-content h2{

    font-size:38px;
}

.ecosystem-list{

    text-align:left;
}

.ecosystem-visual{

    flex-direction:column;

    align-items:center;
}

.ecosystem-card{

    width:100%;
    max-width:350px;
}

.link-badge{

    position:relative;

    left:auto;
    top:auto;

    transform:none;

    margin:20px 0;
}
}

/* =====================================
   HOW IT WORKS
===================================== */

.how-it-works{

    position:relative;

    padding:120px 0;

    background:
    linear-gradient(
        180deg,
        #fff,
        #faf8ff
    );
}

.steps-wrapper{

    position:relative;

    margin-top:80px;
}

.step-line{

    position:absolute;

    top:55px;

    left:12.5%;

    width:75%;

    height:2px;

    background:
    linear-gradient(
        90deg,
        rgba(71,35,217,.15),
        rgba(255,47,146,.25),
        rgba(71,35,217,.15)
    );

    z-index:1;
}

.steps-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    position:relative;

    z-index:2;
}

.step-item{

    text-align:center;
}

.step-circle{

    width:110px;

    height:110px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#fff;

    border:2px solid rgba(255,47,146,.12);

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    position:relative;

    box-shadow:
    0 20px 40px rgba(0,0,0,.05);

    font-size:32px;

    transition:.35s;
}

.step-item:hover .step-circle{

    transform:
    translateY(-8px);

    box-shadow:
    0 25px 50px rgba(255,47,146,.15);
}

.step-circle span{

    position:absolute;

    top:-12px;

    width:36px;

    height:36px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(
        135deg,
        var(--secondary),
        var(--primary)
    );

    color:#fff;

    font-size:12px;

    font-weight:700;
}

.step-item h3{

    font-size:18px;

    margin-bottom:10px;
}

.step-item p{

    font-size:14px;

    color:var(--muted);

    max-width:180px;

    margin:auto;
}



.step-circle{

    width:110px;
    height:110px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;

    background:#fff;

    border:2px solid #f1f1f1;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);
}

.step-circle i{

    font-size:34px;
}

.step-store{

    background:#faf5ff;
}

.step-store i{

    color:#7c3aed;
}

.step-products{

    background:#fff1f2;
}

.step-products i{

    color:#ec4899;
}


.step-design{

    background:#f5f3ff;
}

.step-design i{

    color:#8b5cf6;
}
.step-domain{

    background:#ecfeff;
}

.step-domain i{

    color:#14b8a6;
}
.step-launch{

    background:#fdf2f8;
}

.step-launch i{

    color:#ff2f92;
}

.step-circle::after{

    content:'';

    position:absolute;

    inset:0;

    border-radius:50%;

    background:

    radial-gradient(
        circle at top,
        rgba(255,255,255,.7),
        transparent 60%
    );

    pointer-events:none;
}


@media(max-width:992px){

    .how-it-works{

        padding:70px 0;
    }

    .steps-wrapper{

        margin-top:40px;
    }

    .step-line{

        display:none;
    }

    .steps-grid{

        display:grid;

        grid-template-columns:repeat(2,1fr);

        gap:24px 16px;
    }

    .step-item{

        min-width:unset;

        text-align:center;
    }

    .step-circle{

        width:72px;

        height:72px;

        margin:0 auto 14px;
    }

    .step-circle i{

        font-size:22px;
    }

    .step-circle span{

        width:24px;

        height:24px;

        font-size:10px;

        top:-8px;
    }

    .step-item h3{

        font-size:15px;

        margin-bottom:8px;
    }

    .step-item p{

        font-size:12px;

        line-height:1.5;

        max-width:150px;

        margin:0 auto;
    }

}
/* =====================================
   SUCCESS STORES
===================================== */

.success-stores{

    padding:80px 0 60px;
}

.success-grid{

    display:grid;

    grid-template-columns:
    1.2fr
    repeat(4,1fr);

    gap:24px;

    align-items:start;
}

.success-intro{

    padding-top:25px;
}

.success-intro h2{

    font-size:42px;

    line-height:1.05;

    margin:15px 0;
}

.success-intro h2 span{

    background:
    linear-gradient(
        135deg,
        var(--secondary),
        var(--primary)
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.success-intro p{

    color:var(--muted);

    margin-bottom:25px;
}

.store-preview-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    box-shadow:
    0 15px 40px rgba(0,0,0,.06);

    transition:.35s;
}

.store-preview-card:hover{

    transform:
    translateY(-8px);
}

.store-preview-card img{

    width:100%;

    display:block;
}

.store-preview-info{

    padding:16px;
}

.store-preview-info h4{

    font-size:15px;

    margin-bottom:3px;
}

.store-preview-info span{

    color:var(--muted);

    font-size:13px;
}

.success-dots{

    display:flex;

    justify-content:center;

    gap:8px;

    margin:25px 0 40px;
}

.success-dots span{

    width:8px;
    height:8px;

    border-radius:50%;

    background:#d1d5db;
}

.success-dots span.active{

    width:24px;

    border-radius:20px;

    background:var(--primary);
}

.success-stats{

    background:
    linear-gradient(
        135deg,
        #1f1147,
        #2d1464,
        #4718a8
    );

    border-radius:24px;

    padding:35px;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    margin-top:20px;

    position:relative;

    overflow:hidden;
}

.success-stats::before{

    content:'';

    position:absolute;

    width:200px;
    height:200px;

    background:
    radial-gradient(
        circle,
        rgba(255,47,146,.4),
        transparent 70%
    );

    left:-80px;
    bottom:-80px;
}

.success-stats::after{

    content:'';

    position:absolute;

    width:180px;
    height:180px;

    background:
    radial-gradient(
        circle,
        rgba(34,211,238,.35),
        transparent 70%
    );

    right:-60px;
    bottom:-60px;
}

.success-stat{

    display:flex;

    align-items:center;

    gap:15px;

    color:#fff;

    position:relative;

    z-index:2;
}

.success-stat i{

    font-size:26px;

    color:#d8b4fe;
}

.success-stat h3{

    font-size:32px;

    margin-bottom:3px;
}

.success-stat p{

    color:
    rgba(255,255,255,.75);

    font-size:13px;
}

@media(max-width:992px){

.success-grid{

    display:flex;

    overflow-x:auto;

    gap:18px;

    padding-bottom:10px;
}

.success-intro{

    min-width:280px;
}

.store-preview-card{

    min-width:240px;
}

.success-stats{

    grid-template-columns:
    repeat(2,1fr);

    gap:25px;
}

}

/* =========================
   MARKETPLACE SECTION
========================= */

.marketplace-section{

    padding:40px 0 90px;

    position:relative;
}

.marketplace-grid{

    display:grid;

    grid-template-columns:
    1.1fr
    .9fr;

    gap:70px;

    align-items:center;
}

/* =========================
   IMAGE
========================= */

.marketplace-image{

    position:relative;
}

.marketplace-image img{

    width:100%;

    border-radius:26px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.08);
}

.marketplace-card-shadow{

    position:absolute;

    width:80%;

    height:80%;

    left:10%;

    bottom:-25px;

    background:

    radial-gradient(
        circle,
        rgba(255,47,146,.15),
        transparent 70%
    );

    z-index:-1;
}

/* =========================
   CONTENT
========================= */

.marketplace-content{

    position:relative;

    z-index:2;
}



.marketplace-content h2{

    font-size:56px;

    line-height:1;

    margin-bottom:25px;

    letter-spacing:-2px;
}

.marketplace-content h2 span{

    background:
    linear-gradient(
        135deg,
        var(--secondary),
        var(--primary)
    );

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;
}

.marketplace-content p{

    color:var(--muted);

    font-size:17px;

    max-width:500px;

    margin-bottom:30px;
}

/* =========================
   BENEFITS
========================= */

.marketplace-benefits{

    display:flex;

    flex-direction:column;

    gap:14px;

    margin-bottom:35px;
}

.marketplace-benefits li{

    position:relative;

    padding-left:30px;

    font-weight:500;
}

.marketplace-benefits li::before{
    content:'✓';

    position:absolute;

    left:0;

    top:50%;

    transform:translateY(-50%);

    color:#16a34a;

    font-size:18px;

    font-weight:700;
}

/* =========================
   DECORATION
========================= */

.marketplace-dots{

    position:absolute;

    right:20px;

    top:80px;

    width:120px;

    height:120px;

    background-image:

    radial-gradient(
        #7c3aed 1px,
        transparent 1px
    );

    background-size:12px 12px;

    opacity:.25;
}

.marketplace-blob{

    position:absolute;

    right:-100px;

    bottom:-80px;

    width:280px;

    height:280px;

    border-radius:50%;

    background:

    radial-gradient(
        circle,
        rgba(167,139,250,.18),
        transparent 70%
    );

    z-index:-1;
}

/* =========================
   MOBILE
========================= */

@media(max-width:992px){

    .marketplace-grid{

        grid-template-columns:1fr;

        gap:35px;
    }

    .marketplace-content{

        text-align:center;
    }

    .marketplace-content h2{

        font-size:38px;
    }

    .marketplace-content p{

        margin:auto auto 25px;
    }

    .marketplace-benefits{

        text-align:left;
    }

        .marketplace-blob{
        display:none;
        }
}


/* =========================
   TESTIMONIALS
========================= */

.testimonial-section{

    padding:60px 0 90px;
}

.testimonial-header{

    text-align:center;

    margin-bottom:40px;
}

.testimonial-header h2{

    font-size:42px;

    margin-top:10px;
}

/* =========================
   WRAPPER
========================= */

.testimonial-slider{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:25px;
}

/* =========================
   ARROWS
========================= */

.testimonial-arrow{

    width:42px;

    height:42px;

    border-radius:50%;

    border:1px solid #ececf3;

    background:#fff;

    cursor:pointer;

    transition:.3s;
}

.testimonial-arrow:hover{

    background:#faf8ff;

    color:var(--primary);
}

/* =========================
   CARD
========================= */

.testimonial-card{

    display:grid;

    grid-template-columns:
    220px
    1fr;

    gap:35px;

    align-items:center;

    padding:30px;

    border-radius:24px;
    background:

    linear-gradient(

        135deg,

        #ffffff,

        #faf7ff

    );

    border:1px solid #f1ebff;

    box-shadow:
    0 20px 50px rgba(0,0,0,.05);

    width:100%;

    max-width:900px;
}

/* =========================
   IMAGE
========================= */

.testimonial-image img{

    width:100%;

    border-radius:18px;
}

/* =========================
   CONTENT
========================= */

.testimonial-content p{

    font-size:18px;

    line-height:1.8;

    color:var(--muted);

    margin-bottom:20px;
}

.testimonial-content h4{

    font-size:20px;

    margin-bottom:5px;
}

.testimonial-content span{

    color:var(--muted);

    display:block;

    margin-bottom:12px;
}

.testimonial-stars{

    color:#fbbf24;

    display:flex;

    gap:5px;
}
.testimonial-image img,
.testimonial-content p,
.testimonial-content h4,
.testimonial-content span{

    transition:
    opacity .35s ease;
}

@media(max-width:992px){

    .testimonial-slider{

        gap:10px;
    }

    .testimonial-card{

        grid-template-columns:1fr;

        text-align:center;

        padding:25px;
    }

    .testimonial-image{

        max-width:180px;

        margin:auto;
    }

    .testimonial-content p{

        font-size:15px;
    }

    .testimonial-header h2{

        font-size:30px;
    }
        .testimonial-stars{

        justify-content:center;

    }

    
/* =========================
   HERO MOBILE
========================= */

.hero-content{
    text-align:center;
}

.hero-tag{
    margin:0 auto 20px;
}

.hero h1{
    font-size:48px;
    line-height:1;
    text-align:center;
}

.hero p{
    max-width:100%;
    text-align:center;
    margin:0 auto 25px;
}

.hero-buttons{
    width:100%;
}

.hero-trust{
    justify-content:center;
    gap:10px;
    font-size:12px;
    margin-top:20px;
    white-space:nowrap;
}

.hero-trust span{
    font-size:10px;
}

/* Hide hero image completely */

.hero-image{
    display:none;
}

/* Hero becomes single-column */

.hero-grid{
    grid-template-columns:1fr;
}

.hero-content{
    order:1;
}    
}
@media(max-width:992px){

    .success-stats{

        display:none;
    }

}
@media(max-width:992px){

    .testimonial-arrow{

        display:none;
    }

}





