/* ==========================================
   ERP SOLUTIONS PAGE
=========================================== */

:root {
    --pink: #f5386d;
    --orange: #ff8a1e;
    --gradient: linear-gradient(90deg,
            #f5386d 0%,
            #ff8a1e 100%);
    --dark: #1a1a2e;
    --gray: #666666;
    --light: #fff8f8;
    --iconBg: #fff3f5;
}


.erp-page {
    width: 100%;
    overflow: hidden;
    color: var(--dark);
    background: #ffffff;
}

.erp-page *,
.erp-page *::before,
.erp-page *::after {
    box-sizing: border-box;
}

.erp-page img {
    max-width: 100%;
}

.erp-page a {
    text-decoration: none;
}


/* ==========================================
   COMMON SECTION HEADING
=========================================== */

.erp-section-heading h2 {
    margin: 0;
    color: var(--dark);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.25;
}

.erp-section-heading h2 span {
    color: var(--pink);
}

.erp-title-line {
    width: 55px;
    height: 3px;
    margin-top: 14px;
    border-radius: 50px;
    background: var(--gradient);
}


/* ==========================================
   BREADCRUMB
=========================================== */

.erp-breadcrumb {
    padding: 12px 0;
    background: #ffffff;
    border-bottom: 1px solid #f4e8ea;
}

.erp-breadcrumb-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px;
}

.erp-breadcrumb-wrapper a,
.erp-breadcrumb-wrapper span {
    font-size: 10px;
    font-weight: 600;
}

.erp-breadcrumb-wrapper a {
    color: var(--gray);
    transition: color 0.3s ease;
}

.erp-breadcrumb-wrapper a:hover {
    color: var(--pink);
}

.erp-breadcrumb-wrapper span {
    color: var(--pink);
}

.erp-breadcrumb-wrapper i {
    color: #b8aeb2;
    font-size: 7px;
}


/* ==========================================
   ERP HERO
=========================================== */

.erp-hero {
    position: relative;
    min-height: 580px;
    padding: 10px 0 22px;
    overflow: hidden;
    background: #fff;
}

.erp-hero::before {
    position: absolute;
    top: 65px;
    right: 5%;
    width: 380px;
    height: 380px;
    content: "";
    border: 1px solid rgba(245, 56, 109, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.erp-hero::after {
    position: absolute;
    right: 18%;
    bottom: 45px;
    width: 190px;
    height: 190px;
    content: "";
    border-radius: 50%;
    background: rgba(255, 138, 30, 0.05);
    filter: blur(10px);
    pointer-events: none;
}

.erp-hero .row {
    min-height: 415px;
}

.erp-hero-content {
    position: relative;
    z-index: 5;
}

.erp-hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* padding: 7px 16px; */
    margin-bottom: 18px;
    color: var(--pink);
    /* background: var(--iconBg);
    border: 1px solid rgba(245, 56, 109, 0.18);
    border-radius: 50px; */
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
}

.erp-hero-content h1 {
    max-width: 610px;
    margin: 0 0 20px;
    color: var(--dark);
    font-size: 46px;
    font-weight: 800;
    line-height: 1.13;
    letter-spacing: -1.5px;
}

.erp-hero-content h1 span {
    color: var(--pink);
}

.erp-hero-description {
    max-width: 510px;
    margin: 0 0 27px;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
}

.erp-hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.erp-primary-btn,
.erp-outline-btn {
    display: inline-flex;
    min-height: 45px;
    padding: 0 21px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.erp-primary-btn {
    color: #ffffff;
    background: var(--gradient);
    border: 1px solid transparent;
    box-shadow:
        0 12px 25px rgba(245, 56, 109, 0.22);
}

.erp-primary-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow:
        0 16px 30px rgba(245, 56, 109, 0.3);
}

.erp-outline-btn {
    color: var(--pink);
    background: #ffffff;
    border: 1px solid var(--pink);
}

.erp-outline-btn:hover {
    color: #ffffff;
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-3px);
}


/* ==========================================
   ERP HERO VISUAL
=========================================== */

.erp-hero-visual {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.erp-hero-shape {
    position: absolute;
    z-index: 0;
    width: 390px;
    height: 390px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(245, 56, 109, 0.14) 0%,
            rgba(255, 138, 30, 0.07) 43%,
            transparent 72%);
}

.erp-hero-main-image {
    position: relative;
    z-index: 2;
    width: 92%;
    max-width: 650px;
    max-height: 440px;
    object-fit: contain;
    filter:
        drop-shadow(0 28px 35px rgba(26, 26, 46, 0.18));
}

.erp-floating-card {
    position: absolute;
    z-index: 7;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(245, 56, 109, 0.16);
    box-shadow:
        0 12px 28px rgba(26, 26, 46, 0.13);
    backdrop-filter: blur(10px);
}

.erp-floating-analytics {
    top: 25px;
    right: 2%;
    min-width: 190px;
    padding: 10px 13px;
    gap: 10px;
    border-radius: 10px;
    animation:
        erpAnalyticsFloat 4s ease-in-out infinite;
}

.erp-floating-icon {
    display: flex;
    flex: 0 0 39px;
    width: 39px;
    height: 39px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--gradient);
    border-radius: 50%;
    font-size: 13px;
}

.erp-floating-content span,
.erp-floating-content strong {
    display: block;
}

.erp-floating-content span {
    margin-bottom: 2px;
    color: #918894;
    font-size: 7px;
}

.erp-floating-content strong {
    color: var(--dark);
    font-size: 9px;
    font-weight: 800;
}

@keyframes erpAnalyticsFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.erp-floating-automation {
    position: absolute;
    z-index: 7;
    top: 90px;
    left: 3%;
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--gradient);
    border: 5px solid #ffffff;
    border-radius: 50%;
    font-size: 15px;
    box-shadow:
        0 10px 25px rgba(245, 56, 109, 0.25);
    animation:
        erpAutomationFloat 4.5s ease-in-out infinite;
}

@keyframes erpAutomationFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-7deg);
    }

    50% {
        transform: translateY(10px) rotate(5deg);
    }
}

.erp-floating-status {
    right: 5%;
    bottom: 20px;
    min-width: 205px;
    padding: 11px 14px;
    gap: 10px;
    border-radius: 10px;
    animation:
        erpStatusFloat 5s ease-in-out infinite;
}

.erp-status-dot {
    position: relative;
    flex: 0 0 12px;
    width: 12px;
    height: 12px;
    background: #22c55e;
    border-radius: 50%;
}

.erp-status-dot::before {
    position: absolute;
    inset: -5px;
    content: "";
    border: 1px solid rgba(34, 197, 94, 0.35);
    border-radius: 50%;
    animation:
        erpStatusPulse 1.8s ease-out infinite;
}

.erp-floating-status span,
.erp-floating-status strong {
    display: block;
}

.erp-floating-status span {
    margin-bottom: 2px;
    color: #918894;
    font-size: 7px;
}

.erp-floating-status strong {
    color: var(--dark);
    font-size: 9px;
    font-weight: 800;
}

@keyframes erpStatusFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}

@keyframes erpStatusPulse {
    0% {
        opacity: 1;
        transform: scale(0.7);
    }

    100% {
        opacity: 0;
        transform: scale(1.5);
    }
}

.erp-hero-dots {
    position: absolute;
    z-index: 1;
    right: 2%;
    bottom: 50px;
    display: grid;
    grid-template-columns: repeat(6, 4px);
    gap: 8px;
}

.erp-hero-dots span {
    width: 4px;
    height: 4px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.55;
}


/* ==========================================
   ERP HERO BENEFITS
=========================================== */

.erp-hero-benefits {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 700px;
    margin-top: 25px;
}

.erp-hero-benefit {
    min-height: 48px;
    padding: 0 18px;
    align-items: center;
    gap: 10px;
    border-right: 1px solid #f0dfe2;
}

.erp-hero-benefit:last-child {
    border-right: 0;
}

.erp-benefit-icon {
    display: flex;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    background: var(--iconBg);
    border-radius: 50%;
    font-size: 13px;
}

.erp-hero-benefit span {
    color: #504a57;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.5;
}


/* ==========================================
   ERP SERVICES
=========================================== */

/* .erp-services-section {
    background: #ffffff;
}

.erp-service-card {
    --mouse-x: 50%;
    --mouse-y: 50%;

    position: relative;
    height: 100%;
    min-height: 270px;
    padding: 25px 16px 20px;
    overflow: hidden;
    text-align: center;
    background: #ffffff;
    border: 1px solid #f0e3e5;
    border-radius: 9px;
    box-shadow:
        0 8px 25px
        rgba(26, 26, 46, 0.05);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.erp-service-card::before {
    position: absolute;
    inset: 0;
    content: "";
    opacity: 0;
    background:
        radial-gradient(
            circle at var(--mouse-x) var(--mouse-y),
            rgba(245, 56, 109, 0.11),
            transparent 37%
        );
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.erp-service-card:hover::before {
    opacity: 1;
}

.erp-service-card:hover {
    border-color: rgba(245, 56, 109, 0.35);
    transform: translateY(-7px);
    box-shadow:
        0 18px 36px
        rgba(245, 56, 109, 0.13);
}

.erp-service-icon {
    position: relative;
    z-index: 2;
    display: flex;
    width: 58px;
    height: 58px;
    margin: 0 auto 17px;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    background: #ffffff;
    border: 1px solid rgba(245, 56, 109, 0.6);
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
}

.erp-service-card:hover .erp-service-icon {
    color: #ffffff;
    background: var(--gradient);
    border-color: transparent;
    transform: rotateY(180deg);
    box-shadow:
        0 10px 22px
        rgba(245, 56, 109, 0.23);
}

.erp-service-icon i {
    transition: transform 0.3s ease;
}

.erp-service-card:hover .erp-service-icon i {
    transform: rotateY(-180deg);
}

.erp-service-card h3 {
    position: relative;
    z-index: 2;
    min-height: 25px;
    margin: 0 0 11px;
    color: var(--dark);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.45;
}

.erp-service-card p {
    position: relative;
    z-index: 2;
    min-height: 82px;
    margin: 0;
    color: var(--gray);
    font-size: 9.5px;
    line-height: 1.65;
}

.erp-service-card > a {
    position: relative;
    z-index: 2;
    display: inline-flex;
    width: 30px;
    height: 30px;
    margin-top: 12px;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    background: var(--iconBg);
    border-radius: 50%;
    font-size: 10px;
    transition: all 0.3s ease;
}

.erp-service-card > a:hover {
    color: #ffffff;
    background: var(--gradient);
    transform: translateX(4px);
} */


/* ==========================================
   ERP IMPLEMENTATION PROCESS
=========================================== */

/* .erp-process-section {
    background: var(--light);
} */

.erp-process-wrapper {
    position: relative;
}

.erp-process-wrapper::before {
    position: absolute;
    z-index: 0;
    top: 55px;
    left: 8.4%;
    width: 83.2%;
    height: 1px;
    content: "";
    background:
        linear-gradient(90deg,
            rgba(245, 56, 109, 0.2),
            rgba(255, 138, 30, 0.55),
            rgba(245, 56, 109, 0.2));
}

.erp-process-item {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0 0 0 20px;
}

.erp-process-icon {
    display: flex;
    width: 62px;
    height: 62px;
    margin: 0 auto 15px;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    background: #ffffff;
    border: 1px solid rgba(245, 56, 109, 0.58);
    border-radius: 50%;
    font-size: 20px;
    box-shadow:
        0 8px 20px rgba(245, 56, 109, 0.08);
    transition: all 0.3s ease;
}

.erp-process-item:hover .erp-process-icon,
.erp-process-active .erp-process-icon {
    color: #ffffff;
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow:
        0 12px 25px rgba(245, 56, 109, 0.2);
}

/* .erp-process-dot {
    position: relative;
    z-index: 4;
    width: 9px;
    height: 9px;
    margin: 0 auto 10px;
    background: var(--pink);
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow:
        0 0 0 2px
        rgba(245, 56, 109, 0.3);
} */

.erp-process-dot {
    position: absolute;
    z-index: 4;
    width: 9px;
    height: 9px;
    /* margin: 0 auto 10px; */
    background: var(--pink);
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgba(245, 56, 109, 0.3);
    left: -15px;
    top: 27px;
}

.erp-process-number {
    display: block;
    margin-bottom: 4px;
    color: var(--gray);
    font-size: 13px;
    font-weight: 700;
}

.erp-process-item h3 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 15px;
    font-weight: 700;
}

.erp-process-item p {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.6;
}


/* ==========================================
   ERP STATISTICS
=========================================== */

/* .erp-stats-section {
    background: var(--light);
} */

.erp-stats-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--gradient);
    border-radius: 10px;
    box-shadow:
        0 17px 38px rgba(245, 56, 109, 0.22);
}

.erp-stats-wrapper::before {
    position: absolute;
    top: -170px;
    right: 5%;
    width: 350px;
    height: 350px;
    content: "";
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
}

.erp-stats-wrapper::after {
    position: absolute;
    left: 15%;
    bottom: -200px;
    width: 360px;
    height: 360px;
    content: "";
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.erp-stat-item {
    position: relative;
    z-index: 2;
    min-height: 175px;
    padding: 25px 10px 20px;
    text-align: center;
    color: #ffffff;
}

.erp-stat-item::after {
    position: absolute;
    top: 28px;
    right: 0;
    width: 1px;
    height: calc(100% - 56px);
    content: "";
    background: rgba(255, 255, 255, 0.25);
}

.erp-stat-item-last::after {
    display: none;
}

.erp-stat-icon {
    display: flex;
    width: 42px;
    height: 42px;
    margin: 0 auto 10px;
    align-items: center;
    justify-content: center;
    color: #fff;
    /* background: #ffffff; */
    /* border-radius: 50%; */
    font-size: 35px;
    /* box-shadow:
        0 8px 20px
        rgba(91, 25, 44, 0.18); */
}

.erp-stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.erp-stat-number span,
.erp-stat-number strong {
    color: #ffffff;
    font-size: 30px;
    line-height: 1.1;
}

.erp-stat-number strong {
    font-size: 18px;
}

.erp-stat-item p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.5;
}


/* ==========================================
   ERP SOLUTIONS & INDUSTRIES
=========================================== */

.erp-solutions-industries-section {
    background: #ffffff;
}

.erp-solutions-card,
.erp-industries-card {
    height: 100%;
    min-height: auto;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #f0e3e5;
    border-radius: 11px;
    box-shadow:
        0 9px 28px rgba(26, 26, 46, 0.06);
}

.erp-card-heading {
    margin-bottom: 10px;
}

.erp-card-heading h2 {
    margin: 0;
    color: var(--dark);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.35;
}


/* ==========================================
   ERP SOLUTIONS LIST
=========================================== */

.erp-solutions-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.erp-solution-list-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.erp-solution-list-item i {
    margin-top: 2px;
    color: var(--pink);
    font-size: 13px;
}

.erp-solution-list-item span {
    color: #514b58;
    font-size: 13px;
    font-weight: 600;
}


/* ==========================================
   ERP MODULE ORBIT
=========================================== */

.erp-module-orbit {
    position: relative;
    width: 250px;
    height: 250px;
    max-width: 100%;
    margin: 5px auto 0;
}

.erp-orbit-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.erp-orbit-ring-one {
    inset: 27px;
    border: 1px dashed rgba(245, 56, 109, 0.4);
    animation:
        erpOrbitRotate 20s linear infinite;
}

.erp-orbit-ring-two {
    inset: 60px;
    border: 1px solid rgba(255, 138, 30, 0.18);
    animation:
        erpOrbitReverse 15s linear infinite;
}

@keyframes erpOrbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes erpOrbitReverse {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.erp-orbit-paused .erp-orbit-ring {
    animation-play-state: paused;
}

.erp-orbit-center {
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    display: flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--gradient);
    border: 8px solid #fff1f4;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow:
        0 15px 30px rgba(245, 56, 109, 0.25);
}

.erp-orbit-center span {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

.erp-orbit-module {
    position: absolute;
    z-index: 7;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
    text-align: center;
    transition: transform 0.3s ease;
}

.erp-orbit-module:hover,
.erp-orbit-module-active {
    transform: scale(1.12);
}

.erp-orbit-module-icon {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    background: #ffffff;
    border: 1px solid rgba(245, 56, 109, 0.32);
    border-radius: 50%;
    font-size: 12px;
    box-shadow:
        0 8px 18px rgba(26, 26, 46, 0.09);
    transition: all 0.3s ease;
}

.erp-orbit-module:hover .erp-orbit-module-icon,
.erp-orbit-module-active .erp-orbit-module-icon {
    color: #ffffff;
    background: var(--gradient);
    border-color: transparent;
}

.erp-orbit-module span {
    color: #514b58;
    font-size: 7px;
    font-weight: 700;
}

.erp-module-finance {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.erp-module-finance:hover,
.erp-module-finance.erp-orbit-module-active {
    transform:
        translateX(-50%) scale(1.12);
}

.erp-module-sales {
    top: 55px;
    right: 20px;
}

.erp-module-inventory {
    right: 25px;
    bottom: 45px;
}

.erp-module-hr {
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
}

.erp-module-hr:hover,
.erp-module-hr.erp-orbit-module-active {
    transform:
        translateX(-50%) scale(1.12);
}

.erp-module-production {
    bottom: 45px;
    left: 20px;
}

.erp-module-purchase {
    top: 55px;
    left: 20px;
}


/* ==========================================
   ERP INDUSTRIES
=========================================== */

.erp-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 0px;
    padding-top: 18px;
}

.erp-industry-item {
    display: flex;
    min-width: 0;
    align-items: center;
    flex-direction: column;
    text-align: center;
    transition: transform 0.3s ease;
    border-right: 1px solid #eee;
}

.erp-industry-item.last-child {
    border-right: 0;
}

.erp-industry-item:hover,
.erp-industry-active {
    transform: translateY(-5px);
}

.erp-industry-icon {
    display: flex;
    /* width: 55px;
    height: 55px; */
    margin-bottom: 10px;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    /* background: var(--iconBg);
    border: 1px solid rgba(245, 56, 109, 0.15);
    border-radius: 50%; */
    font-size: 40px;
    transition: all 0.3s ease;
}

/* .erp-industry-item:hover .erp-industry-icon,
.erp-industry-active .erp-industry-icon {
    color: #ffffff;
    background: var(--gradient);
    border-color: transparent;
    box-shadow:
        0 10px 22px
        rgba(245, 56, 109, 0.2);
} */

.erp-industry-item span {
    color: #504a57;
    font-size: 12px;
    font-weight: 700;
}


/* ==========================================
   WHY CHOOSE ERP
=========================================== */

.erp-why-card,
.erp-testimonial-wrapper {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #f0e3e5;
    border-radius: 11px;
    box-shadow:
        0 9px 28px rgba(26, 26, 46, 0.06);
}

.erp-why-card {
    padding: 34px 30px;
    background:
        linear-gradient(135deg,
            #fff8f8 0%,
            #ffffff 58%,
            #fff7f0 100%);
}

.erp-why-card::before {
    position: absolute;
    right: -120px;
    bottom: -150px;
    width: 330px;
    height: 330px;
    content: "";
    border-radius: 50%;
    background: rgba(255, 138, 30, 0.07);
}

.erp-why-content {
    position: relative;
    z-index: 4;
}

.erp-why-tag {
    display: inline-flex;
    padding: 6px 13px;
    margin-bottom: 13px;
    color: var(--pink);
    background: var(--iconBg);
    border: 1px solid rgba(245, 56, 109, 0.16);
    border-radius: 50px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.7px;
}

.erp-why-content h2 {
    margin: 0;
    color: var(--dark);
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
}

.erp-why-content h2 span {
    color: var(--pink);
}

.erp-why-description {
    margin: 18px 0;
    color: var(--gray);
    font-size: 9.5px;
    line-height: 1.65;
}

.erp-why-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.erp-why-item {
    display: flex;
    align-items: center;
    gap: 9px;
}

.erp-why-check {
    display: flex;
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    margin-top: 1px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--gradient);
    border-radius: 50%;
    font-size: 6px;
}

.erp-why-item span {
    color: #514b58;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
}

.erp-why-image {
    position: absolute;
    z-index: 2;
    right: -12px;
    bottom: -4px;
    width: 235px;
}

.erp-why-image img {
    width: 100%;
    max-height: 290px;
    object-fit: contain;
    filter:
        drop-shadow(0 17px 22px rgba(26, 26, 46, 0.17));
}


/* ==========================================
   ERP TESTIMONIALS
=========================================== */

.erp-testimonial-wrapper {
    padding: 34px 35px;
}

.erp-testimonial-heading>span {
    display: block;
    margin-bottom: 8px;
    color: var(--pink);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.erp-testimonial-heading h2 {
    margin: 0;
    color: var(--dark);
    font-size: 26px;
    font-weight: 800;
    line-height: 1.3;
}

.erp-testimonial-heading h2 strong {
    color: var(--pink);
    font-weight: 800;
}


/* ==========================================
   CUSTOM ERP SLIDER
=========================================== */

.erp-custom-slider {
    position: relative;
    margin-top: 25px;
}

.erp-slider-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 9px;
}

.erp-slider-track {
    display: flex;
    width: 100%;
    transition:
        transform 0.65s cubic-bezier(0.22,
            1,
            0.36,
            1);
    will-change: transform;
}

.erp-slider-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
}

.erp-testimonial-card {
    position: relative;
    width: 100%;
    min-height: 260px;
    padding: 27px 28px;
    background: var(--light);
    border: 1px solid #f0e3e5;
    border-radius: 9px;
}

.erp-testimonial-quote {
    display: flex;
    width: 42px;
    height: 42px;
    margin-bottom: 17px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--gradient);
    border-radius: 50%;
    font-size: 15px;
}

.erp-testimonial-card>p {
    max-width: 570px;
    margin: 0 0 14px;
    color: var(--gray);
    font-size: 10px;
    font-style: italic;
    line-height: 1.75;
}

.erp-testimonial-rating {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
    color: var(--orange);
    font-size: 9px;
}

.erp-testimonial-client {
    display: flex;
    align-items: center;
    gap: 11px;
}

.erp-testimonial-client img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border: 3px solid #ffe1e8;
    border-radius: 50%;
}

.erp-testimonial-client h4 {
    margin: 0 0 3px;
    color: var(--dark);
    font-size: 10px;
    font-weight: 800;
}

.erp-testimonial-client span {
    color: #8b838f;
    font-size: 8px;
}


/* ==========================================
   ERP SLIDER FOOTER
=========================================== */

.erp-slider-footer {
    display: flex;
    min-height: 40px;
    margin-top: 12px;
    align-items: center;
    justify-content: space-between;
}

.erp-slider-dots {
    display: flex;
    align-items: center;
    gap: 5px;
}

.erp-slider-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    opacity: 0.3;
    background: var(--pink);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition:
        width 0.3s ease,
        opacity 0.3s ease,
        transform 0.3s ease;
}

.erp-slider-dot:hover {
    opacity: 0.7;
    transform: scale(1.15);
}

.erp-slider-dot.active {
    width: 22px;
    opacity: 1;
    border-radius: 50px;
    background: var(--gradient);
}

.erp-slider-controls {
    display: flex;
    align-items: center;
    gap: 7px;
}

.erp-slider-controls button {
    display: flex;
    width: 32px;
    height: 32px;
    padding: 0;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    background: #ffffff;
    border: 1px solid rgba(245, 56, 109, 0.25);
    border-radius: 50%;
    cursor: pointer;
    font-size: 9px;
    transition: all 0.3s ease;
}

.erp-slider-controls button:hover {
    color: #ffffff;
    background: var(--gradient);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow:
        0 8px 18px rgba(245, 56, 109, 0.2);
}

.erp-slider-controls button:active {
    transform: scale(0.92);
}


/* ==========================================
   FINAL ERP CTA
=========================================== */

.erp-final-cta-section {
    background: #ffffff;
}

.erp-final-cta {
    position: relative;
    overflow: hidden;
    padding: 42px 55px;
    color: #ffffff;
    background:
        linear-gradient(115deg,
            #17172b 0%,
            #29213c 48%,
            #4b1f3a 100%);
    border-radius: 13px;
    box-shadow:
        0 18px 42px rgba(26, 26, 46, 0.23);
}

.erp-final-cta::before {
    position: absolute;
    top: -180px;
    right: -70px;
    width: 450px;
    height: 450px;
    content: "";
    border: 1px solid rgba(245, 56, 109, 0.23);
    border-radius: 50%;
}

.erp-final-cta::after {
    position: absolute;
    right: 180px;
    bottom: -220px;
    width: 400px;
    height: 400px;
    content: "";
    border-radius: 50%;
    background: rgba(255, 138, 30, 0.07);
}

.erp-final-cta-content {
    position: relative;
    z-index: 4;
}

.erp-final-cta-tag {
    display: inline-flex;
    padding: 6px 13px;
    margin-bottom: 15px;
    color: #ffffff;
    background: rgba(245, 56, 109, 0.18);
    border: 1px solid rgba(245, 56, 109, 0.35);
    border-radius: 50px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.erp-final-cta-content h2 {
    max-width: 620px;
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.22;
}

.erp-final-cta-content h2 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.erp-final-cta-content p {
    max-width: 590px;
    margin: 0 0 23px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    line-height: 1.7;
}

.erp-final-cta-btn {
    display: inline-flex;
    min-height: 43px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #ffffff;
    background: var(--gradient);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 800;
    box-shadow:
        0 10px 23px rgba(245, 56, 109, 0.23);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.erp-final-cta-btn:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow:
        0 15px 28px rgba(245, 56, 109, 0.32);
}


/* ==========================================
   FINAL CTA VISUAL
=========================================== */

.erp-final-cta-visual {
    position: relative;
    z-index: 4;
    min-height: 255px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.erp-final-cta-image {
    width: 100%;
    max-width: 410px;
    max-height: 280px;
    object-fit: contain;
    filter:
        drop-shadow(0 22px 28px rgba(0, 0, 0, 0.28));
}

.erp-cta-status-card {
    position: absolute;
    right: -5px;
    bottom: 0;
    display: flex;
    min-width: 225px;
    padding: 10px 12px;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 9px;
    box-shadow:
        0 12px 27px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
}

.erp-cta-status-icon {
    display: flex;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--gradient);
    border-radius: 50%;
    font-size: 14px;
}

.erp-cta-status-content {
    flex: 1;
}

.erp-cta-status-content span,
.erp-cta-status-content strong {
    display: block;
}

.erp-cta-status-content span {
    margin-bottom: 2px;
    color: #918894;
    font-size: 7px;
}

.erp-cta-status-content strong {
    color: var(--dark);
    font-size: 9px;
    font-weight: 800;
}

.erp-cta-status-value {
    color: #22c55e;
    font-size: 11px;
    font-weight: 800;
}


/* ==========================================
   LARGE DESKTOP
=========================================== */

@media (min-width: 1400px) {

    .erp-page .container {
        max-width: 1320px;
    }

    .erp-hero-content h1 {
        font-size: 50px;
    }

}


/* ==========================================
   LAPTOP
=========================================== */

@media (max-width: 1199px) {

    .erp-hero-content h1 {
        font-size: 40px;
    }

    .erp-hero-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 0;
    }

    .erp-hero-benefit:nth-child(2) {
        border-right: 0;
    }

    .erp-solutions-card,
    .erp-industries-card {
        min-height: auto;
    }

    .erp-module-orbit {
        width: 220px;
        height: 220px;
    }

    .erp-why-image {
        width: 190px;
    }

}


/* ==========================================
   TABLET
=========================================== */

@media (max-width: 991px) {

    .erp-process-wrapper::before,
    .erp-process-dot {
        display: none;
    }

    .erp-hero {
        min-height: auto;
        padding-top: 50px;
    }

    .erp-hero .row {
        min-height: auto;
    }

    .erp-hero-content {
        max-width: 680px;
        margin: 0 auto;
        text-align: center;
    }

    .erp-hero-content h1,
    .erp-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .erp-hero-buttons {
        justify-content: center;
    }

    .erp-hero-visual {
        min-height: 430px;
        margin-top: 30px;
    }

    .erp-hero-benefits {
        margin-left: auto;
        margin-right: auto;
    }

    .erp-stat-item:nth-child(3)::after {
        display: none;
    }

    .erp-solutions-card,
    .erp-industries-card {
        min-height: auto;
    }

    .erp-module-orbit {
        width: 250px;
        height: 250px;
    }

    .erp-why-card,
    .erp-testimonial-wrapper {
        min-height: auto;
    }

    .erp-why-image {
        width: 240px;
    }

    .erp-final-cta {
        text-align: center;
    }

    .erp-final-cta-content h2,
    .erp-final-cta-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .erp-cta-status-card {
        right: 50%;
        transform: translateX(50%);
    }

}


/* ==========================================
   MOBILE
=========================================== */

@media (max-width: 767px) {

    .erp-section-heading {
        margin-bottom: 32px !important;
    }

    .erp-section-heading h2 {
        font-size: 20px;
    }


    /* ======================================
       BREADCRUMB
    ======================================= */

    .erp-breadcrumb {
        padding: 10px 0;
    }

    .erp-breadcrumb-wrapper {
        gap: 7px;
    }

    .erp-breadcrumb-wrapper a,
    .erp-breadcrumb-wrapper span {
        font-size: 9px;
    }


    /* ======================================
       HERO
    ======================================= */

    .erp-hero {
        padding: 38px 0 30px;
    }

    .erp-hero-content h1 {
        font-size: 35px;
        line-height: 1.14;
        letter-spacing: -1px;
    }

    .erp-hero-description {
        font-size: 13px;
        line-height: 1.65;
    }

    .erp-hero-buttons {
        flex-direction: column;
    }

    .erp-primary-btn,
    .erp-outline-btn {
        width: 100%;
        max-width: 320px;
    }

    .erp-hero-visual {
        min-height: 350px;
        margin-top: 28px;
    }

    .erp-hero-main-image {
        width: 95%;
    }

    .erp-hero-shape {
        width: 280px;
        height: 280px;
    }

    .erp-floating-analytics {
        top: 0;
        right: 0;
        min-width: 160px;
        padding: 8px 10px;
    }

    .erp-floating-icon {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
        font-size: 11px;
    }

    .erp-floating-automation {
        top: 70px;
        left: 0;
        width: 44px;
        height: 44px;
        border-width: 4px;
        font-size: 13px;
    }

    .erp-floating-status {
        right: 0;
        bottom: 12px;
        min-width: 175px;
        padding: 9px 11px;
    }

    .erp-hero-dots {
        right: 0;
        bottom: 30px;
        grid-template-columns: repeat(5, 3px);
        gap: 6px;
    }

    .erp-hero-dots span {
        width: 3px;
        height: 3px;
    }

    .erp-hero-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 0;
        margin-top: 28px;
    }

    .erp-hero-benefit {
        padding: 0 10px;
    }

    .erp-hero-benefit:first-child {
        padding-left: 10px;
    }

    .erp-hero-benefit:nth-child(even) {
        border-right: 0;
    }


    /* ======================================
       SERVICES
    ======================================= */

    .erp-service-card {
        min-height: 285px;
        padding: 22px 12px 17px;
    }

    .erp-service-icon {
        width: 52px;
        height: 52px;
        font-size: 18px;
    }

    .erp-service-card h3 {
        min-height: 25px;
        font-size: 11px;
    }

    .erp-service-card p {
        min-height: 95px;
        font-size: 8.5px;
    }


    /* ======================================
       PROCESS
    ======================================= */

    .erp-process-icon {
        width: 56px;
        height: 56px;
        font-size: 18px;
    }

    .erp-process-item h3 {
        font-size: 11px;
    }

    .erp-process-item p {
        font-size: 8px;
    }


    /* ======================================
       STATS
    ======================================= */

    .erp-stat-item {
        min-height: 155px;
        padding: 20px 8px;
    }

    .erp-stat-item:nth-child(2)::after,
    .erp-stat-item:nth-child(4)::after,
    .erp-stat-item:nth-child(6)::after {
        display: none;
    }

    .erp-stat-number span,
    .erp-stat-number strong {
        font-size: 21px;
    }


    /* ======================================
       ERP SOLUTIONS
    ======================================= */

    .erp-solutions-card,
    .erp-industries-card {
        padding: 26px 20px;
    }

    .erp-card-heading h2 {
        font-size: 20px;
    }

    .erp-solutions-list {
        gap: 12px;
    }

    .erp-solution-list-item span {
        font-size: 9px;
    }

    .erp-module-orbit {
        width: 250px;
        height: 250px;
        margin-top: 30px;
    }


    /* ======================================
       INDUSTRIES
    ======================================= */

    .erp-industry-item {
        border: 0;
    }


    /* ======================================
       WHY CHOOSE
    ======================================= */

    .erp-why-card {
        padding: 30px 22px;
    }

    .erp-why-content {
        max-width: 100%;
    }

    .erp-why-description {
        max-width: 100%;
        font-size: 9.5px;
    }

    .erp-why-image {
        position: relative;
        right: auto;
        bottom: auto;
        width: 220px;
        margin: 20px auto -25px;
    }


    /* ======================================
       TESTIMONIAL
    ======================================= */

    .erp-testimonial-wrapper {
        padding: 30px 20px;
    }

    .erp-testimonial-heading h2 {
        font-size: 24px;
    }

    .erp-testimonial-card {
        min-height: 285px;
        padding: 25px 21px;
    }

    .erp-testimonial-card>p {
        font-size: 9.5px;
    }

    .erp-slider-controls button {
        width: 34px;
        height: 34px;
    }


    /* ======================================
       FINAL CTA
    ======================================= */

    .erp-final-cta {
        padding: 35px 20px;
    }

    .erp-final-cta-content h2 {
        font-size: 27px;
    }

    .erp-final-cta-content p {
        font-size: 10px;
    }

    .erp-final-cta-btn {
        width: 100%;
        max-width: 310px;
    }

    .erp-final-cta-visual {
        min-height: 280px;
    }

}


/* ==========================================
   SMALL MOBILE
=========================================== */

@media (max-width: 420px) {

    .erp-hero-content h1 {
        font-size: 31px;
    }

    .erp-hero-visual {
        min-height: 315px;
    }

    .erp-floating-analytics {
        min-width: 145px;
    }

    .erp-floating-content strong,
    .erp-floating-status strong {
        font-size: 8px;
    }

    .erp-service-card {
        min-height: 300px;
    }

    .erp-service-card h3 {
        font-size: 10px;
    }

    .erp-service-card p {
        min-height: 105px;
        font-size: 8px;
    }

    .erp-module-orbit {
        width: 225px;
        height: 225px;
    }

    .erp-orbit-module-icon {
        width: 38px;
        height: 38px;
        font-size: 11px;
    }

    .erp-orbit-center {
        width: 70px;
        height: 70px;
    }

    .erp-orbit-center span {
        font-size: 16px;
    }

    .erp-industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 8px;
    }

    .erp-why-content h2,
    .erp-testimonial-heading h2 {
        font-size: 20px;
    }

    .erp-testimonial-card {
        min-height: 310px;
    }

    .erp-final-cta-content h2 {
        font-size: 24px;
    }

    .erp-cta-status-card {
        min-width: 205px;
    }

}


/* ==========================================
   REDUCED MOTION
=========================================== */

@media (prefers-reduced-motion: reduce) {

    .erp-floating-analytics,
    .erp-floating-automation,
    .erp-floating-status,
    .erp-orbit-ring-one,
    .erp-orbit-ring-two {
        animation: none;
    }

    .erp-page *,
    .erp-page *::before,
    .erp-page *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

}


/*===============================
        IOT SERVICES
================================*/

.erp-service-area {
    background: #fff;
}

.erp-service-heading h2 {
    font-size: 20px;
    font-weight: 700;
    color: #151515;
    margin-bottom: 15px;
}

.erp-heading-divider {
    width: 70px;
    height: 4px;
    background: #ff4d6d;
    border-radius: 30px;
    margin: auto;
    position: relative;
}

.erp-heading-divider::after {
    content: "";
    width: 22px;
    height: 4px;
    background: #ffc107;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 30px;
}

/*===============================
            CARD
================================*/

.erp-service-box {

    background: #fff;
    border: 1px solid #ffe1e8;
    border-radius: 18px;
    padding: 20px;
    position: relative;
    height: 100%;
    transition: .35s;
}

.erp-service-box:hover {

    transform: translateY(-8px);

    border-color: #ff4d6d;
    background: var(--gradient);

    box-shadow: 0 20px 45px rgba(255, 77, 109, .12);

}

/*===============================
            ICON
================================*/

.erp-service-icon {

    width: 68px;
    height: 68px;

    background: #fff4f6;

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #ff4d6d;

    font-size: 30px;

    margin-bottom: 22px;

    transition: .35s;

}

.erp-service-box:hover .erp-service-icon {
    background: #ff4d6d;
}

.erp-service-box:hover .erp-service-icon,
.erp-service-box:hover h4,
.erp-service-box:hover p,
.erp-service-box:hover .erp-service-link i {

    color: #fff;

}

/*===============================
            TITLE
================================*/

.erp-service-box h4 {

    font-size: 15px;

    font-weight: 700;

    color: #222;

    margin-bottom: 14px;

    line-height: 1.4;

}

/*===============================
        DESCRIPTION
================================*/

.erp-service-box p {

    color: #666;

    font-size: 13px;

    line-height: 1.6;

    margin: 0;

}

/*===============================
            LINK
================================*/

.erp-service-link {

    position: absolute;

    bottom: 15px;

    right: 22px;

    color: #ff4d6d;

    font-size: 18px;

    transition: .3s;

}

.erp-service-box:hover .erp-service-link {

    transform: translateX(6px);

    color: #ff4d6d;

}

.erp-hero {
    background: linear-gradient(180deg,
            #ffe7ee 0%,
            #fff1f5 18%,
            #fff7f9 40%,
            #ffffff 75%,
            #ffffff 100%);
}

/* =========================================
   ERP INDUSTRY ITEMS
========================================= */

.erp-industry-item {
   position: relative;

   padding: 28px 15px;
   min-height: 150px;

   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;

   border-radius: 18px;

   background: #fff;

   border: 1px solid rgba(0, 0, 0, 0.08);

   overflow: hidden;

   cursor: pointer;

   transform-style: preserve-3d;

   transition:
      transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
      background 0.45s ease,
      box-shadow 0.45s ease,
      border-color 0.45s ease;
}


/* =========================================
   GRADIENT BACKGROUND
========================================= */

.erp-industry-item::before {
   content: "";

   position: absolute;
   inset: 0;

   background: var(--gradient);

   opacity: 0;

   transform: scale(0.7);

   border-radius: inherit;

   transition:
      opacity 0.45s ease,
      transform 0.45s ease;

   z-index: 0;
}


/* =========================================
   HOVER CARD
========================================= */

.erp-industry-item:hover {
   transform:
      perspective(900px)
      translateY(-12px)
      rotateX(5deg)
      rotateY(-5deg)
      scale(1.04);

   border-color: transparent;

   box-shadow:
      0 20px 40px rgba(0, 0, 0, 0.16),
      0 8px 25px rgba(37, 117, 252, 0.20);
}


.erp-industry-item:hover::before {
   opacity: 1;

   transform: scale(1);
}


/* =========================================
   ICON
========================================= */

.erp-industry-icon {
   position: relative;
   z-index: 2;

   width: 65px;
   height: 65px;

   display: flex;
   align-items: center;
   justify-content: center;

   margin-bottom: 14px;

   border-radius: 50%;

   background: var(--gradient);

   color: #fff;

   font-size: 25px;

   box-shadow:
      0 8px 20px rgba(37, 117, 252, 0.25);

   transform: translateZ(25px);

   transition:
      transform 0.55s ease,
      background 0.4s ease,
      box-shadow 0.4s ease;
}


/* =========================================
   ICON HOVER
========================================= */

.erp-industry-item:hover .erp-industry-icon {
   transform:
      translateZ(55px)
      rotateY(360deg)
      scale(1.12);

   background: rgba(255, 255, 255, 0.18);

   box-shadow:
      0 10px 30px rgba(255, 255, 255, 0.30);
}


/* =========================================
   TEXT
========================================= */

.erp-industry-item span {
   position: relative;
   z-index: 2;

   font-size: 16px;

   font-weight: 600;

   color: #222;

   transform: translateZ(20px);

   transition:
      color 0.35s ease,
      transform 0.35s ease;
}


.erp-industry-item:hover span {
   color: #fff;

   transform:
      translateZ(40px)
      translateY(-2px);
}


/* =========================================
   GLOW
========================================= */

.erp-industry-item:hover .erp-industry-icon::after {
   content: "";

   position: absolute;

   inset: -7px;

   border-radius: 50%;

   border: 2px solid rgba(255, 255, 255, 0.35);

   animation: industryPulse 1.5s infinite;
}


@keyframes industryPulse {

   0% {
      transform: scale(0.9);
      opacity: 1;
   }

   100% {
      transform: scale(1.35);
      opacity: 0;
   }

}


/* =========================================
   SHINE EFFECT
========================================= */

.erp-industry-item::after {
   content: "";

   position: absolute;

   top: -120%;
   left: -100%;

   width: 45%;
   height: 300%;

   background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.25),
      transparent
   );

   transform: rotate(25deg);

   transition: left 0.8s ease;

   z-index: 3;

   pointer-events: none;
}


.erp-industry-item:hover::after {
   left: 150%;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

   .erp-industry-item {
      min-height: 135px;

      padding: 22px 10px;

      border-radius: 15px;
   }

   .erp-industry-icon {
      width: 55px;
      height: 55px;

      font-size: 21px;

      margin-bottom: 10px;
   }

   .erp-industry-item span {
      font-size: 14px;
   }

   .erp-industry-item:hover {
      transform:
         translateY(-7px)
         scale(1.02);
   }

}

 /* =====================================
    ERP HERO BENEFITS
 ===================================== */

.erp-hero-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;

    margin-top: 35px;
    max-width: 700px;
}


/* =====================================
   BENEFIT CARD
===================================== */

.erp-hero-benefit {
    position: relative;

    align-items: center;
    gap: 12px;

    min-height: 82px;

    padding: 14px 16px;

    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.96),
        rgba(255, 246, 249, 0.92)
    );

    border: 1px solid rgba(245, 56, 109, 0.13);

    border-radius: 18px;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.045);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    overflow: hidden;

    cursor: pointer;

    transition:
        transform 0.45s cubic-bezier(.34, 1.56, .64, 1),
        box-shadow 0.45s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}


/* =====================================
   TOP ACCENT LINE
===================================== */

.erp-hero-benefit::after {
    content: "";

    position: absolute;

    top: 0;
    left: 15%;

    width: 70%;
    height: 2px;

    background: linear-gradient(
        90deg,
        #f5386d 0%,
        #ff8a1e 100%
    );

    transform: scaleX(0);

    transform-origin: center;

    transition: transform 0.45s ease;
}

.erp-hero-benefit:hover::after {
    transform: scaleX(1);
}


/* =====================================
   SHINE ANIMATION
===================================== */

.erp-hero-benefit::before {
    content: "";

    position: absolute;

    top: -50%;
    left: -120%;

    width: 70%;
    height: 200%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.75),
        transparent
    );

    transform: skewX(-20deg);

    transition: left 0.75s ease;

    pointer-events: none;
}

.erp-hero-benefit:hover::before {
    left: 140%;
}


/* =====================================
   CARD HOVER
===================================== */

.erp-hero-benefit:hover {
    transform: translateY(-9px);

    background: linear-gradient(
        145deg,
        #ffffff 0%,
        #fff4f7 100%
    );

    border-color: rgba(245, 56, 109, 0.28);

    box-shadow:
        0 18px 40px rgba(245, 56, 109, 0.13),
        0 6px 15px rgba(0, 0, 0, 0.04);
}


/* =====================================
   BENEFIT ICON
===================================== */

.erp-benefit-icon {
    position: relative;
    z-index: 2;

    flex: 0 0 auto;

    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #f5386d;

    background: linear-gradient(
        135deg,
        #fff0f4 0%,
        #ffffff 100%
    );

    border: 1px solid rgba(245, 56, 109, 0.14);

    box-shadow:
        0 7px 18px rgba(245, 56, 109, 0.10);

    transition:
        transform 0.5s cubic-bezier(.34, 1.56, .64, 1),
        background 0.4s ease,
        color 0.3s ease,
        box-shadow 0.4s ease;
}


/* =====================================
   ICON OUTER RING
===================================== */

.erp-benefit-icon::before {
    content: "";

    position: absolute;

    inset: -5px;

    border-radius: 50%;

    border: 1px solid rgba(245, 56, 109, 0.14);

    opacity: 0;

    transform: scale(0.7);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}


/* =====================================
   ICON HOVER
===================================== */

.erp-hero-benefit:hover .erp-benefit-icon {
    transform: scale(1.12) rotate(-7deg);

    color: #ffffff;

    background: linear-gradient(
        135deg,
        #f5386d 0%,
        #ff8a1e 100%
    );

    box-shadow:
        0 12px 28px rgba(245, 56, 109, 0.30);
}


.erp-hero-benefit:hover .erp-benefit-icon::before {
    opacity: 1;

    transform: scale(1.05);
}


.erp-benefit-icon i {
    font-size: 19px;

    transition:
        transform 0.4s ease;
}


.erp-hero-benefit:hover .erp-benefit-icon i {
    transform: scale(1.15);
}


/* =====================================
   BENEFIT TEXT
===================================== */

.erp-hero-benefit span {
    position: relative;
    z-index: 2;

    color: #2c2c2c;

    font-size: 11px;

    font-weight: 700;

    line-height: 1.4;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


.erp-hero-benefit:hover span {
    color: #f5386d;

    transform: translateX(3px);
}


/* =====================================
   SMALL GLOW
===================================== */

.erp-hero-benefit:hover {
    isolation: isolate;
}


/* =====================================
   SUBTLE FLOATING EFFECT
===================================== */

.erp-hero-benefit:nth-child(1) {
    animation: erpFloat1 4.5s ease-in-out infinite;
}

.erp-hero-benefit:nth-child(2) {
    animation: erpFloat2 4.5s ease-in-out infinite;
}

.erp-hero-benefit:nth-child(3) {
    animation: erpFloat1 4.5s ease-in-out infinite;
}

.erp-hero-benefit:nth-child(4) {
    animation: erpFloat2 4.5s ease-in-out infinite;
}


@keyframes erpFloat1 {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}


@keyframes erpFloat2 {
    0%,
    100% {
        transform: translateY(-2px);
    }

    50% {
        transform: translateY(3px);
    }
}


/* =====================================
   TABLET
===================================== */

@media (max-width: 991px) {

    .erp-hero-benefits {
        grid-template-columns: repeat(2, 1fr);

        max-width: 520px;

        margin-left: auto;
        margin-right: auto;
    }

    .erp-hero-benefit {
        min-height: 78px;
    }
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 575px) {

    .erp-hero-benefits {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;

        width: 100%;
    }

    .erp-hero-benefit {
        min-height: 72px;

        padding: 11px 10px;

        gap: 9px;

        border-radius: 15px;
    }

    .erp-benefit-icon {
        width: 42px;
        height: 42px;
    }

    .erp-benefit-icon i {
        font-size: 15px;
    }

    .erp-hero-benefit span {
        font-size: 11px;
    }

    .erp-hero-benefit:hover {
        transform: translateY(-5px);
    }
}


/* =====================================
   ACCESSIBILITY
===================================== */

@media (prefers-reduced-motion: reduce) {

    .erp-hero-benefit,
    .erp-benefit-icon,
    .erp-benefit-icon i,
    .erp-hero-benefit::before,
    .erp-hero-benefit::after {
        animation: none !important;
        transition: none !important;
    }
}