/* =====================================================
   GETCLOUD v3.0
   Success Stories
===================================================== */

/* =====================================================
   Breadcrumb
===================================================== */

.breadcrumb{
    margin-top:80px;
    padding:18px 0;
    background:#f8fbff;
    border-bottom:1px solid #edf2f7;
}

.breadcrumb .container{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:14px;
    color:#64748b;
}

.breadcrumb a{
    color:var(--primary);
    font-weight:600;
}

/* =====================================================
   Hero
===================================================== */

.success-hero{
    padding:100px 0;
    background:
    linear-gradient(
        180deg,
        #f7fbff 0%,
        #ffffff 100%
    );
}

.hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(37,99,235,.08);
    color:var(--primary);
    font-weight:600;
    margin-bottom:20px;
}

.hero-content h1{
    font-size:64px;
    color:#102a5c;
    margin-bottom:10px;
}

.hero-content h2{
    font-size:32px;
    margin-bottom:25px;

    background:
    linear-gradient(
        90deg,
        #2563eb,
        #10b981,
        #8b5cf6
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-content p{
    font-size:20px;
    line-height:1.9;
    color:#64748b;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:15px;
}

.hero-image img{
    width:100%;
    max-width:700px;
    display:block;
    margin:auto;
}

/* =====================================================
   KPI
===================================================== */

.success-kpi{
    padding:80px 0;
    background:#fff;
}

.kpi-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.kpi-card{
    text-align:center;
    padding:40px 25px;
    border-radius:24px;
    background:#fff;
    box-shadow:var(--shadow-md);
}

.kpi-card h3{
    font-size:48px;
    color:var(--primary);
    margin-bottom:10px;
}

.kpi-card p{
    color:#64748b;
    font-size:16px;
}

/* =====================================================
   Case Study
===================================================== */

.case-study{
    padding:100px 0;
    background:#f8fbff;
}

.case-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.case-grid.reverse{
    direction:rtl;
}

.case-grid.reverse > *{
    direction:ltr;
}

.case-image img{
    width:100%;
    border-radius:24px;
    box-shadow:var(--shadow-lg);
}

.case-tag{
    display:inline-block;
    padding:8px 16px;
    border-radius:999px;
    background:#eaf2ff;
    color:#2563eb;
    font-size:14px;
    font-weight:700;
    margin-bottom:20px;
}

.case-content h3{
    font-size:36px;
    color:#102a5c;
    margin-bottom:25px;
}

.case-content p{
    color:#64748b;
    line-height:1.9;
    margin-bottom:20px;
}

.case-result{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin:30px 0;
}

.result-item{
    background:#fff;
    border-radius:12px;
    padding:15px;
    box-shadow:var(--shadow-sm);
    font-weight:600;
    color:#102a5c;
}

/* =====================================================
   Services
===================================================== */

.success-services{
    padding:100px 0;
    background:#fff;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.service-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    text-align:center;
    box-shadow:var(--shadow-md);
    transition:.3s;
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:var(--shadow-lg);
}

.service-icon{
    font-size:42px;
    margin-bottom:20px;
}

.service-card h3{
    color:#102a5c;
    margin-bottom:15px;
}

.service-card p{
    color:#64748b;
    line-height:1.8;
}

/* =====================================================
   Benefits
===================================================== */

.success-benefits{
    padding:100px 0;
    background:#f8fbff;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.benefit-card{
    background:#fff;
    border-radius:24px;
    padding:40px 30px;
    text-align:center;
    box-shadow:var(--shadow-md);
}

.benefit-card h3{
    font-size:48px;
    color:#2563eb;
    margin-bottom:15px;
}

.benefit-card p{
    color:#64748b;
    line-height:1.8;
}

/* =====================================================
   CTA
===================================================== */

.cta{
    padding:100px 0;
    background:
    linear-gradient(
        135deg,
        #2563eb,
        #10b981,
        #8b5cf6
    );
    color:#fff;
}

.cta-content{
    max-width:900px;
    margin:auto;
    text-align:center;
}

.cta-content h2{
    font-size:48px;
    margin-bottom:20px;
}

.cta-content p{
    font-size:20px;
    line-height:1.9;
    margin-bottom:35px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

/* =====================================================
   Footer
===================================================== */

.footer-logo{
    max-width:220px;
    margin-bottom:20px;
}

/* =====================================================
   Reveal Animation
===================================================== */

.reveal{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

/* =====================================================
   Responsive
===================================================== */

@media (max-width:1200px){

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .benefits-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:992px){

    .hero-grid,
    .case-grid{
        grid-template-columns:1fr;
    }

    .case-grid.reverse{
        direction:ltr;
    }

    .hero-content{
        text-align:center;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-content h1{
        font-size:52px;
    }

}

@media (max-width:768px){

    .kpi-grid,
    .services-grid,
    .benefits-grid{
        grid-template-columns:1fr;
    }

    .case-result{
        grid-template-columns:1fr;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content h2{
        font-size:28px;
    }

    .case-content h3{
        font-size:30px;
    }

    .cta-content h2{
        font-size:34px;
    }

}

@media (max-width:576px){

    .hero-buttons,
    .cta-buttons{
        flex-direction:column;
    }

    .hero-buttons a,
    .cta-buttons a{
        width:100%;
    }

    .hero-content h1{
        font-size:34px;
    }

    .kpi-card h3,
    .benefit-card h3{
        font-size:40px;
    }

}