.crm-hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    padding: 80px;
    background: linear-gradient(0deg, #f8fafc, #e0f2fe);
    flex-wrap: wrap;
}

.crm-hero-section-text {
    font-size: 1rem;
    color: var(--gray);
}

.main-illustration {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.crm-corner-top-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 160px;
    height: 160px;
    background: #f5decc;
    border-bottom-right-radius: 160px;
    z-index: 0;
}

.crm-corner-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 160px;
    height: 160px;
    background: #f5decc;
    border-top-left-radius: 160px;
    z-index: 0;
}

/* about section */
.crm-about-section {
    text-align: center;
}

.crm-about-section p {
    font-size: 1rem;
    color: var(--gray);
}

.crm-about-subcard {
    position: relative;
    background: #fff;
    padding: 10px;
    border-left: 6px solid var(--secondary);
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: start;
    justify-content: center;
}

.crm-about-subcard p {
    margin: 0;
    font-weight: 700;
    font-size: 1rem;
    color: var(--gray);
}

/* process section */
.crm-process-section {
    text-align: center;
    padding: 60px 20px;
}

.crm-process-container {
    justify-content: space-between;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Side List */
.crm-side-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}

.crm-side-list .crm-process-list {
    background: #fff;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    position: relative;
    max-width: 480px;
    width: 100%;
    margin: auto;
}

/* Number Style */
.crm-process-num {
    min-width: 40px;
    height: 40px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 16px;
    color: white;
    background: var(--primary, #2c7be5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(44, 123, 229, 0.5);
}

/* Left alignment */
.crm-side-left .crm-process-list .crm-process-num {
    margin-right: 15px;
}

.crm-side-left .crm-process-list .crm-process-content {
    text-align: left;
}

/* Right alignment */
.crm-side-right .crm-process-list {
    flex-direction: row-reverse;
}

.crm-side-right .crm-process-list .crm-process-num {
    margin-left: 15px;
}

.crm-side-right .crm-process-list .crm-process-content {
    text-align: right;
}

/* Titles */
.crm-process-list h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.crm-process-list .crm-process-desc {
    font-size: 1rem;
    color: var(--gray, #555);
    line-height: 1.5;
}

/* Center Circle */
.crm-process-center-circle {
    flex: 0 0 220px;
    height: 220px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    padding: 30px;
    color: var(--secondary, #ff6b35);
    letter-spacing: 0.05em;
}

.crm-process-center-circle::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 244px;
    height: 244px;
    border-radius: 50%;
    border: 3px dotted #faa25bb8;
    pointer-events: none;
}

/* why section */
.crm-why-section {
    text-align: center;
}

.crm-why-card {
    position: relative;
   height: 200px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 20px 60px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.crm-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8fafc, #c2e4fa);
    border-bottom-left-radius: 80px;
    border-top-right-radius: 20px;
}

.crm-why-card h5 {
    margin-top: 0;
    position: relative;
    z-index: 2;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.crm-why-card p {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--gray);
    position: relative;
    z-index: 2;
}

.crm-why-card-icon-circle {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.crm-why-card-icon-circle img {
    width: 70%;
    height: 70%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .crm-hero-section {
        padding: 40px 20px;
        text-align: start;
    }

    .crm-corner-top-left {
        display: none;
    }

    .crm-corner-right {
        display: none;
    }
}

@media (max-width: 992px) {
    .crm-hero-section {
        text-align: center;
    }

    .crm-corner-top-left {
        display: none;
    }

    .crm-corner-right {
        display: none;
    }

    .crm-process-container {
        flex-direction: column;
        align-items: center;
    }

    .crm-side-list {
        width: 100%;
        align-items: center;
    }

    .crm-side-list .crm-process-list {
        width: 90%;
        max-width: 700px;
    }

    .crm-side-right .crm-process-list,
    .crm-side-left .crm-process-list {
        flex-direction: row;
        text-align: left;
    }

    .crm-side-right .crm-process-list .crm-process-num,
    .crm-side-left .crm-process-list .crm-process-num {
        margin: 0 15px 0 0;
    }

    .crm-side-right .crm-process-list .crm-process-content,
    .crm-side-left .crm-process-list .crm-process-content {
        text-align: left;
    }

    .crm-process-center-circle {
        display: none;
    }
}

@media (max-width: 576px) {
    .crm-hero-section {
        padding: 30px 15px;
        text-align: center;
    }

    .crm-corner-top-left {
        display: none;
    }

    .crm-corner-right {
        display: none;
    }

    .crm-process-center-circle {
        display: none;
    }

    .crm-process-center-circle::before {
        display: none;
    }
}