@charset "UTF-8";

/* =========================
   CRM PAGE ONLY
========================= */

.module-hero{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:80px;
    align-items:center;
    padding:90px 7%;
    background:#F5FAFF;
}

.module-hero-right{
    width:100%;
    max-width:1400px;
    min-height:520px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-slider{
    position:relative;
    width:100%;
}

.hero-slide{
    display:none;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    width:100%;
}

.hero-slide.active{
    display:flex;
}

/* LEFT SIDE */
.hero-image-wrap{
    flex:0 0 62%;
    max-width:62%;
}

/* IMAGE */
.hero-main-image{
    width:100%;
    height:auto;
    display:block;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(44,134,211,.12);
}

.hero-image-wrap--mobile .hero-main-image{
    max-width:320px;
    margin:0 auto;
    border-radius:34px;
    border:10px solid white;
}

/* RIGHT TEXT CARD */
.hero-slide-content{
    flex:0 0 34%;
    max-width:34%;
    background:#fff;
    border-radius:28px;
    padding:48px;
    box-shadow:0 10px 40px rgba(44,134,211,.08);
}

.hero-slide-content h3{
    font-size:34px;
    margin:0 0 14px;
    line-height:1.1;
}

.hero-slide-content p{
    font-size:17px;
    line-height:1.6;
    color:#52637A;
    margin:0;
}

.hero-slide-tag{
    display:inline-block;
    padding:8px 14px;
    border-radius:999px;
    background:#EAF4FF;
    color:#2C86D3;
    font-size:12px;
    font-weight:800;
    margin-bottom:16px;
}

.carousel-controls{
    display:flex;
    gap:14px;
    justify-content:center;
    margin-top:24px;
}

.carousel-controls button{
    width:54px;
    height:54px;
    border:none;
    border-radius:50%;
    background:white;
    color:#2C86D3;
    font-size:34px;
    cursor:pointer;
    box-shadow:0 12px 30px rgba(44,134,211,.16);
}

/* =========================
   CRM CAROUSEL
========================= */

.crm-carousel-section{
    padding:90px 7%;
    background:#F8FBFE;
}

.crm-carousel{
    display:grid;
    gap:34px;
}

.crm-slide{
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:40px;
    align-items:center;
    background:white;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 16px 40px rgba(44,134,211,.10);
    border:1px solid rgba(44,134,211,.10);
}

.crm-slide img{
    width:100%;
    max-height:520px;
    object-fit:contain;
    display:block;
    background:#F8FBFE;
}

.slide-content,
.crm-slide-content{
    padding:40px;
}

.slide-card{
    position:relative;
}

.crm-slide-content h3{
    font-size:36px;
    margin:0 0 18px;
}

.crm-slide-content p{
    font-size:18px;
    line-height:1.7;
    color:#52637A;
}

.carousel-nav{
    display:flex;
}

/* =========================
   CRM FEATURE CARDS
========================= */

.content-split{
    display:grid;
    grid-template-columns:1fr 420px;
    gap:60px;
    align-items:start;
    padding:90px 7%;
    background:#F5FAFF;
}

.content-split > div:first-child{
    max-width:760px;
}

.content-split h2{
    font-size:44px;
    line-height:1.1;
    margin:0 0 20px;
}

.content-split p{
    font-size:18px;
    line-height:1.7;
    color:#52637A;
}

.split-card{
    background:white;
    border:1px solid rgba(44,134,211,.14);
    box-shadow:0 12px 32px rgba(44,134,211,.10);
    border-radius:18px;
    padding:34px;
}

.split-card h3{
    margin:0 0 18px;
    font-size:22px;
}

.split-card ul{
    margin:0;
    padding-left:22px;
}

.split-card li{
    margin-bottom:12px;
    color:#52637A;
    line-height:1.5;
}

.module-feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    padding:80px 7%;
    background:white;
}

.feature-card{
    background:white;
    border:1px solid rgba(44,134,211,.12);
    border-radius:18px;
    padding:30px;
    box-shadow:0 8px 24px rgba(44,134,211,.08);
}

.feature-card h3{
    margin:18px 0 10px;
    font-size:22px;
}

.feature-card p{
    margin:0;
    color:#52637A;
    line-height:1.6;
}

/* =========================
   RESPONSIVE (CRM ONLY)
========================= */

@media(max-width:1100px){

    .module-hero,
    .crm-slide,
    .content-split{
        grid-template-columns:1fr;
    }

    .hero-slide,
    .hero-slide.active{
        flex-direction:column;
    }

    .hero-image-wrap,
    .hero-slide-content{
        flex:1 1 100%;
        max-width:100%;
    }
}