* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.enterprise-business-hero {
    background: var(--bg-light);
    height: calc(100vh - 79px);
    display: flex;
    align-items: center;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.enterprise-business-hero-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 20px;
    align-items: center;
}



.breadcrumb {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 12px 24px;
    border: 1px solid #d7dff0;
    border-radius: 30px;
    background: #fff;
    font-size: 12px;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: .3px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.highlight {
    color: var(--primary-color) !important;
    white-space: nowrap;

}

.highlight-red {
    color: #e40000;
}

.enterprise-business-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: auto 0;
}

.enterprise-business-content h1 {
    position: relative;
    font-family: var(--heading-bold-font-family);
    font-size: clamp(28px, 3.8vw, 52px);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: 0%;
    color: var(--text-primary);
    margin-bottom: 20px;
    max-width: 90%;
}



.enterprise-business-content h1 span {
    position: relative;
    color: var(--primary-color);
}

.enterprise-business-content h1 span::before {
    content: "";
    position: absolute;
    bottom: -3%;
    left: -4px;
    width: 97%;
    height: 10px;
    background: var(--primary-color);
    clip-path: polygon(0 0, 100% 35%, 100% 65%, 0 100%);
    border-radius: 50px;
}

.enterprise-business-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-primary);
    max-width: 90%;
    letter-spacing: 2%;
}

.enterprise-business-hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.enterprise-business-primary-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    color: #fff;
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 5%;
    font-weight: 500;
    transition: .3s;
}

.enterprise-business-primary-btn:hover {
    transform: translateY(-2px);
}

.enterprise-business-secondary-btn {
    border: 2px solid var(--primary-color);
    color: var(--text-primary);
    padding: 14px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 5%;
    transition: .3s;
}

.enterprise-business-secondary-btn:hover {
    background: var(--primary-color);
    color: #fff;
}

.enterprise-business-dashboard {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 560px;
    margin: 0 auto;

}



.enterprise-business-dashboard {

    display: flex;

    justify-content: center;

}

.business-control-card {
    position: relative;

    width: 100%;

    background: #ffffff99;

    border: 2px solid #fff;

    border-radius: 16px;

    padding: 32px;

    backdrop-filter: blur(7px);

    box-shadow: 16px 7px 8px #c7c7c7;
}


.business-control-header span {

    display: none;

    padding: 8px 16px;

    border-radius: 100px;

    background: #EEF5FF;

    color: var(--primary-color);

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 18px;
}

.business-control-header h3 {
    font-family: var(--heading-font-family);
    font-size: 26px;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--text-primary);
}

.business-control-list {

    display: flex;

    flex-direction: column;

    gap: 24px;
}

.control-item {

    display: flex;

    gap: 16px;

    align-items: flex-start;


}

.control-item:last-child {

    border: none;

    padding-bottom: 0;

}

.number {

    width: 42px;

    height: 42px;

    flex-shrink: 0;

    border-radius: 6px;

    background: var(--text-primary);

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 500;

    font-size: 24px;

    box-shadow: 8px 8px 4px #c7c7c7;

    font-family: var(--heading-font-family);
}

.control-item h4 {
    font-family: var(--heading-font-family);
    font-size: 20px;
    margin-bottom: 8px;
    line-height: 1.4;
    color: var(--text-primary);
}

.control-item p {

    font-size: 16px;

    line-height: 1.75;

    font-weight: 500;

    color: var(--text-primary);
}



/* =========================
   Tablet
========================= */

@media (max-width: 1300px) {
    .enterprise-business-content h1 {
        max-width: 550px;
        font-size: clamp(28px, 3.8vw, 42px);

    }

    .enterprise-business-dashboard-card:last-child {
        display: none;
    }

    .enterprise-business-top-badge {
        margin-bottom: 12px;
    }

    .business-control-list .control-item:nth-child(4) {

        display: none;

    }

}

@media (max-width: 1100px) {


    .enterprise-business-dashboard-card:last-child {
        display: flex;
    }

    .enterprise-business-hero {
        height: auto;
        padding: 40px 0;
    }

    .enterprise-business-hero-wrapper {
        grid-template-columns: 1fr;
    }

    .enterprise-business-content {
        text-align: center;
        align-items: center;
    }

    .enterprise-business-hero-buttons {
        justify-content: center;
    }

    .enterprise-business-dashboard {
        margin-top: 20px;
        max-width: 600px;
        overflow: hidden;
        border-radius: 16px;
        border-bottom-left-radius: 16px !important;

    }

    .enterprise-business-content h1 span::before {
        bottom: -5%;
    }

    .business-control-list .control-item:nth-child(4) {

        display: flex;

    }
}

/* =========================
   Mobile
========================= */

@media (max-width: 768px) {
    .enterprise-business-dashboard {
        display: none;
    }



    .enterprise-business-top-badge {
        flex-wrap: wrap;
        justify-content: center;
        padding: 8px 16px;
    }

    .enterprise-business-hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .enterprise-business-primary-btn,
    .enterprise-business-secondary-btn {
        width: 100%;
        text-align: center;
    }




    .enterprise-business-dashboard-card strong {
        margin-top: 5px;
    }


}

@media(max-width: 500px) {
    .breadcrumb {
        font-size: 11px
    }

    .enterprise-business-content h1 span::before {
        bottom: -19%;

    }

    .enterprise-business-content h1 {
        font-size: 24px;
        line-height: 1.4;
    }

    .enterprise-business-top-badge {
        font-size: 10px;
        margin-bottom: 24px;
    }
}




























.section-eyebrow {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: var(--space-12);
    color: var(--primary-color);
}

.section-eyebrow__line {
    width: 28px;
    height: 1.5px;
    background-color: var(--primary-color);
}

.section-eyebrow__text {
    font-size: var(--p-size-12);
    font-weight: var(--font-600);
    color: var(--text-grey);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color);
}



.section-heading {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 65px;
}

.section-heading h2 {
    font-family: var(--heading-bold-font-family);
    font-size: clamp(26px, 5vw, 32px);
    font-weight: var(--font-700);
    color: var(--text-primary);
}

.section-heading p {
    font-family: var(--para-font-family);
    font-size: var(--p-size-18);
    font-weight: var(--font-400);
    color: var(--text-primary);
    line-height: var(--leading-normal);
    margin-top: 2px;
}

@media(max-width:767px) {
    .enterprise-business-content p {
        line-height: 1.5;
    }

    .section-heading p {
        font-size: var(--p-size-16);
        line-height: 1.5;
    }
}

















/*==================================
        ENTERPRISE INTENT
==================================*/

.enterprise-intent-section {

    padding: 85px 0;

    background: #fff;

}

/*==================================
        PILLARS
==================================*/

.enterprise-pillars {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 40px;

    margin-top: 70px;

}

/*==================================
        PILLAR
==================================*/

.enterprise-pillar {

    position: relative;

    padding: 0 0px 0 34px;

    transition: .35s;
}

.enterprise-pillar::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 2px;

    height: 100%;

    background: #E6EDF8;

    transition: .35s;

}

.pillar-line {

    display: block;

    width: 56px;

    height: 4px;

    margin-bottom: 28px;

    border-radius: 50px;

    background: var(--primary-color);

    transition: .35s;

}

/*==================================
        TITLE
==================================*/

.enterprise-pillar h3 {

    margin: 0 0 18px;

    font-size: 24px;

    line-height: 1.2;

    color: var(--text-primary);

    font-family: var(--heading-font-family);

    transition: .35s;
}

/*==================================
        DESCRIPTION
==================================*/

.enterprise-pillar p {

    margin: 0;

    font-size: 16px;

    line-height: 1.75;

    color: var(--text-primary);
}

/*==================================
        HOVER
==================================*/

.enterprise-pillar:hover {

    transform: translateY(-8px);

}

.enterprise-pillar:hover::before {

    width: 5px;

    background: var(--primary-color);

}

.enterprise-pillar:hover .pillar-line {

    width: 90px;

}

.enterprise-pillar:hover h3 {

    color: var(--primary-color);

}

/*==================================
        RESPONSIVE
==================================*/

@media(max-width:1199px) {

    .enterprise-pillars {

        grid-template-columns: repeat(2, 1fr);

        gap: 50px 40px;

    }

    .enterprise-pillar p {
        font-size: 18px;
    }

}

@media(max-width:767px) {

    .enterprise-pillars {

        grid-template-columns: 1fr;

        gap: 40px;

        margin-top: 50px;

    }

    .enterprise-pillar {

        padding-left: 28px;

    }

    .enterprise-pillar h3 {

        font-size: 22px;

    }



}



























/*==================================
        ENTERPRISE SIGNALS
==================================*/

.enterprise-signals-section {
    padding: 85px 0;
    background: var(--bg-light);
}

/*==================================
            MATRIX
==================================*/

.signals-matrix {

    margin-top: 70px;

    border: 1px solid #E7EDF6;

    border-radius: 16px;

    overflow: hidden;

    background: #fff;

    box-shadow: 0 20px 60px rgba(18, 38, 63, .05);
}

/*==================================
            HEADER
==================================*/

.signals-head {

    display: grid;

    grid-template-columns: 1fr 1fr;

    padding: 24px 36px;

    background: var(--text-primary);

    border-bottom: 1px solid #E7EDF6;

    font-size: 18px;

    font-weight: 600;

    letter-spacing: .08em;

    text-transform: uppercase;

    color: #fff;
}

/*==================================
            ROW
==================================*/

.signal-row {

    position: relative;

    display: grid;

    grid-template-columns: 360px 1fr;

    align-items: center;

    gap: 50px;

    padding: 22px 36px;

    border-bottom: 1px solid #EEF2F8;

    transition: .35s;

    overflow: hidden;
}

.signal-row:last-child {

    border-bottom: none;

}

.signal-row::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 4px;

    height: 100%;

    background: var(--primary-color);

    transform: scaleY(0);

    transform-origin: top;

    transition: .35s;

}

.signal-row::after {

    content: "";

    position: absolute;

    width: 260px;

    height: 260px;

    right: -140px;

    top: -140px;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            rgba(0, 101, 242, .08),
            transparent 72%);

    opacity: 0;

    transition: .35s;

}

.signal-row:hover {

    background: #FBFDFF;

}

.signal-row:hover::before {

    transform: scaleY(1);

}

.signal-row:hover::after {

    opacity: 1;

}

/*==================================
            TITLE
==================================*/

.signal-row h3 {

    margin: 0;

    font-size: 20px;

    line-height: 1.3;

    color: var(--text-primary);

    font-family: var(--heading-font-family);

    transition: .35s;

    position: relative;

    z-index: 2;
}

.signal-row:hover h3 {

    color: var(--primary-color);

}

/*==================================
        DESCRIPTION
==================================*/

.signal-row p {

    margin: 0;

    font-size: 18px;

    line-height: 1.75;

    color: var(--text-primary);

    position: relative;

    z-index: 2;
}

/*==================================
        RESPONSIVE
==================================*/

@media(max-width:991px) {

    .signals-head {

        display: none;

    }

    .signal-row {

        grid-template-columns: 1fr;

        gap: 18px;

        padding: 28px;

    }

}

@media(max-width:767px) {

    .signals-matrix {

        margin-top: 50px;

    }

    .signal-row {

        padding: 24px;

    }

    .signal-row h3 {

        font-size: 20px;

    }

    .signal-row p {

        font-size: 15px;

        line-height: 1.7;

    }

}











/*==================================
        STANDARDIZATION
==================================*/

.standardization-section {

    padding: 85px 0;

    background: #fff;

}

/*==================================
            LAYOUT
==================================*/

.standardization-layout {

    display: grid;

    grid-template-columns: 1.1fr 0.9fr;

    gap: 60px;

    align-items: center;

    margin-top: 70px;

}

/*==================================
            IMAGE
==================================*/

.standardization-image {

    position: relative;

}

.standardization-image img {

    width: 100%;

    display: block;

    border-radius: 24px;

    /* border:1px solid #E7EDF6; */

    /* box-shadow:
        0 25px 70px rgba(18,38,63,.08); */

    transition: .4s;

    scale: 1.2;
}


/*==================================
            CONTENT
==================================*/

.standardization-content {

    display: flex;

    flex-direction: column;

    gap: 8px;
}

/*==================================
            BLOCK
==================================*/

.standard-block {

    position: relative;

    padding: 20px;

    background: linear-gradient(45deg, #e9e9e9, transparent);

    /* border:1px solid #E7EDF6; */

    border-radius: 8px;

    overflow: hidden;

    transition: .35s;


}


.standard-block .standard-number {

    position: absolute;
    right: 8px;
    top: -8px;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 72px;
    font-weight: 700;
    color: #d3d3d3;
    font-family: var(--heading-font-family);
}




/*==================================
            TITLE
==================================*/

.standard-block h3 {

    margin: -2px -10px 8px;

    font-size: 24px;

    padding-left: 12px;

    border-top-left-radius: 2px;

    border-bottom-left-radius: 2px;

    line-height: 1.3;

    color: #333;

    font-family: var(--heading-font-family);

    /* background: linear-gradient(90deg, #4D504F, transparent); */

    position: relative;

    z-index: 2;
}

/*==================================
            LIST
==================================*/

.standard-block ul {

    margin: 0;

    padding: 0;

    list-style: none;

    display: grid;

    grid-template-columns: repeat(1fr);

    gap: 1px 26px;

    position: relative;

    z-index: 2;
}

.standard-block li {

    position: relative;

    padding-left: 30px;

    font-size: 16px;

    line-height: 1.7;

    color: var(--text-primary);

    transition: .3s;
}

.standard-block li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 18px;
    height: 18px;
    background: url(../images/icons/li_check-circle-2.svg) center / contain no-repeat;
    filter: brightness(0) saturate(100%) opacity(.6);
}

.standard-block:hover li {

    color: var(--text-primary);

}

/*==================================
        RESPONSIVE
==================================*/

@media(max-width:991px) {

    .standardization-layout {

        grid-template-columns: 1fr;

        gap: 45px;

    }

}

@media(max-width:767px) {

    .standardization-layout {

        margin-top: 50px;

    }

    .standard-block {

        padding: 24px;

    }

    .standard-block h3 {

        font-size: 22px;

    }

    .standard-block ul {

        grid-template-columns: 1fr;

    }

    .standard-block li {

        font-size: 15px;

    }

}














.workflow-design-section {

    padding: 85px 0;

    background: var(--bg-light);

}

.workflow-bento {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    /* grid-auto-rows:220px; */

    gap: 20px;

    margin-top: 70px;
}

.workflow-box {

    display: flex;

    flex-direction: column;

    justify-content: end;

    position: relative;

    padding: 24px;

    border: 1px solid #E7EDF6;

    border-radius: 16px;

    background: #fff;

    overflow: hidden;

    transition: .35s;

    box-shadow: 0 18px 45px rgba(18, 38, 63, .05);
}

.workflow-box::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 5px;

    background: var(--primary-color);

    transform: scaleX(0);

    transform-origin: left;

    transition: .35s;

}

.workflow-box::after {

    /* content:""; */

    position: absolute;

    width: 220px;

    height: 220px;

    right: -120px;

    top: -120px;

    border-radius: 50%;

    background: radial-gradient(circle,
            rgba(0, 101, 242, .08),
            transparent 72%);

    opacity: 0;

    transition: .35s;
}

.workflow-box h3 {

    margin-bottom: 18px;

    font-size: 24px;

    /* background: linear-gradient(45deg, #dadada, transparent, transparent); */

    border-radius: 6px;

    padding: 8px 16px;

    line-height: 1.25;

    font-family: var(--heading-font-family);

    color: var(--text-primary);
}

.workflow-box p {

    font-size: 16px;

    line-height: 1.75;

    color: var(--text-primary);
}

/* Bento Sizes */

.workflow-large {
    margin-top: 24px;
    grid-column: span 2;

}

.workflow-large img {
    position: absolute;
    right: 24px;
    top: 4px;
    width: 132px;
    height: auto;
    text-align: right;
}

.workflow-wide {

    grid-column: span 2;

}

@media(max-width:991px) {

    .workflow-bento {

        grid-template-columns: repeat(2, 1fr);

    }

    .workflow-large,
    .workflow-wide {

        grid-column: span 2;

    }

}

@media(max-width:767px) {

    .workflow-bento {

        grid-template-columns: 1fr;

        grid-auto-rows: auto;

    }

    .workflow-large,
    .workflow-wide {

        grid-column: span 1;

    }

    .workflow-box {
        padding: 28px;
        overflow: visible;

    }

    .workflow-large img {
        position: relative;
        top: -60px;
        left: 6px;
        background: #fff;
        border-radius: 8px;

    }

}





/*==================================
    MANAGEMENT VISIBILITY
==================================*/

.management-visibility-section {

    padding: 85px 0;

    background: var(--bg-light);

}

/*==================================
        LAYOUT
==================================*/

.management-layout {

    display: grid;

    grid-template-columns: 44% 56%;

    gap: 50px;

    align-items: center;


}

/*==================================
        LEFT
==================================*/

.management-content {

    display: flex;

    flex-direction: column;

    gap: 8px;
}

/*==================================
        ITEM
==================================*/

.management-item {

    position: relative;

    padding: 20px 16px 10px 32px;

    border: 1px solid #E7EDF6;

    border-radius: 12px;

    background: #eaeaea;

    overflow: hidden;

    transition: .35s;
}

.management-item::before {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 5px;

    height: 100%;

    background: var(--primary-color);

    transform: scaleY(0);

    transform-origin: top;

    transition: .35s;

}








.management-item h3 {

    margin-bottom: 10px;

    font-size: 20px;

    line-height: 1.3;

    color: var(--text-primary);

    font-family: var(--heading-font-family);

    transition: .35s;
}

.management-item:hover h3 {

    color: var(--primary-color);

}

.management-item p {

    margin: 0;

    font-size: 17px;

    line-height: 1.75;

    color: var(--text-primary);
}

/*==================================
        IMAGE
==================================*/

.management-image {

    position: relative;

    border-radius: 16px;

    overflow: hidden;

    /* border:1px solid #E7EDF6; */

    /* background:#F7FAFD; */

    /* box-shadow:
    0 25px 70px rgba(18,38,63,.06); */
}

.management-image img {

    display: block;

    width: 100%;

    scale: .8;

    margin-top: -77px;

    transition: .45s;
}



/* Floating Label */

.management-image::after {

    content: "Financial Reporting Dashboard";

    position: absolute;

    left: 24px;

    bottom: 24px;

    padding: 14px 22px;

    border-radius: 8px;

    background: rgba(255, 255, 255, .94);

    backdrop-filter: blur(10px);

    font-size: 15px;

    font-weight: 600;

    color: var(--text-primary);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .10);
}

/*==================================
        RESPONSIVE
==================================*/

@media(max-width:991px) {

    .management-layout {

        grid-template-columns: 1fr;

        gap: 40px;

    }

    .management-image {

        order: -1;

    }

}

@media(max-width:767px) {

    .management-visibility-section {

        padding: 70px 0;

    }

    .management-layout {

        margin-top: 50px;

    }

    .management-item {

        padding: 20px;

    }

    .management-item h3 {

        font-size: 20px;

    }

    .management-item p {

        font-size: 15px;

        line-height: 1.7;

    }

    .management-image::after {

        left: 16px;

        right: 16px;

        bottom: 16px;

        text-align: center;

        font-size: 14px;

    }

    .management-image img {
        margin-top: -32px;
    }

}




























/*==================================
        ACCESS SECTION
==================================*/

.access-section {

    padding: 85px 0;

 
}

.access-layout {

display: grid;

grid-template-columns: 36% 58%;

gap: 70px;

align-items: center;
}

.access-left h2 {

margin: 22px 0 20px;

font-size: 42px;

line-height: 1.2;

max-width: 400px;

font-family: var(--heading-font-family);

color: var(--text-primary);
}

.access-left p {

max-width: 560px;

font-size: 18px;

line-height: 1.7;

color: var(--text-primary);
}

/*=========================
        RIGHT BOX
=========================*/

.access-right {

display: grid;

grid-template-columns: repeat(2, 1fr);

gap: 50px 18px;

padding: 32px;

border: 1px solid #E5EBF5;

border-radius: 16px;

background: #fff;

box-shadow: 0 25px 70px rgba(18, 38, 63, .05);
}

/*=========================
        CARD
=========================*/

.access-card {

    transition: .35s;

}

 

.access-icon {

    width: 32px;

    height: 32px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 18px;

    border-radius: 16px;

    background: #EEF5FF;

    color: #0065F2;

    font-size: 28px;

    transition: .35s;

}

 

.access-card h3 {

margin-bottom: 12px;

font-size: 24px;

line-height: 1.25;

color: var(--text-primary);

font-family: var(--heading-font-family);
}

.access-card p {

font-size: 18px;

line-height: 1.75;

color: var(--text-primary);
}

/*=========================
        RESPONSIVE
=========================*/

@media(max-width:1300px) {
    .access-card h3 {

        font-size: 22px;

    }
    .access-card p{
        font-size: 16px;
    }
}
@media(max-width:1200px) {

    .access-layout {

        grid-template-columns: 1fr;

        gap: 50px;

    }

}

@media(max-width:768px) {

    .access-right {

        grid-template-columns: 1fr;

        padding: 30px;

        gap: 30px;

    }

    .access-left h2 {

        font-size: 42px;

    }

    .access-left p {

        font-size: 18px;

    }

    .access-card h3 {

        font-size: 24px;

    }

    .access-card p {

        font-size: 16px;

    }

}
















/*==================================
    IMPLEMENTATION FRAMEWORK
==================================*/

.implementation-framework-section {

    padding: 85px 0;


}

.implementation-list {

    margin-top: 70px;

    border-top: 1px solid #DCE3EE;

}

/*==================================
            ITEM
==================================*/

.implementation-item {

    display: grid;

    grid-template-columns: 110px 260px 1fr;

    gap: 60px;

    align-items: start;

    padding: 42px 0;

    border-bottom: 1px solid #DCE3EE;

    transition: .35s;
}

/*==================================
            NUMBER
==================================*/

.implementation-number {

    width: 62px;

    height: 62px;

    border-radius: 8px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: var(--text-primary);

    color: #fff;

    letter-spacing: 5%;

    font-size: 24px;

    font-family: var(--heading-font-family);

    font-weight: 600;

    transition: .35s;
}

/*==================================
            TITLE
==================================*/

.implementation-title h3 {

    margin-bottom: 16px;

    font-size: 24px;

    line-height: 1.2;

    color: var(--text-primary);

    font-family: var(--heading-font-family);

    transition: .35s;
}

/*==================================
            TAG
==================================*/

.implementation-tag {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    gap: 10px;

    padding: 4px 10px;

    border-radius: 40px;

    background: #EEF5FF;

    color: var(--primary-color);

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 5%;

    line-height: 1;
}



/*==================================
        DESCRIPTION
==================================*/

.implementation-description p {

    margin: 0;

    font-size: 18px;

    line-height: 1.75;

    color: var(--text-primary);
}

/*==================================
            HOVER
==================================*/


.implementation-item:hover .implementation-title h3 {

    color: var(--primary-color);

}

/*==================================
        TAG COLORS
==================================*/

.implementation-item:nth-child(1) .implementation-tag {

    background: #FFF2F4;

    color: #B4233C;

}

.implementation-item:nth-child(2) .implementation-tag {

    background: #EEF5FF;

    color: #2563EB;

}

.implementation-item:nth-child(3) .implementation-tag {

    background: #FFF8EA;

    color: #C97700;

}

.implementation-item:nth-child(4) .implementation-tag {

    background: #ECFDF3;

    color: #15803D;

}

.implementation-item:nth-child(5) .implementation-tag {

    background: #F3F4F6;

    color: #4B5563;

}

.implementation-item:nth-child(6) .implementation-tag {

    background: #EEF2FF;

    color: #4338CA;

}

.implementation-item:nth-child(7) .implementation-tag {

    background: #EFFCF6;

    color: #047857;

}

.implementation-item:nth-child(8) .implementation-tag {

    background: #FDF2F8;

    color: #BE185D;

}

/*==================================
        RESPONSIVE
==================================*/

@media(max-width:1200px) {

    .implementation-item {

        grid-template-columns: 70px 1fr;

        gap: 30px;

    }

    .implementation-description {

        grid-column: 2;

    }

}

@media(max-width:767px) {

    .implementation-framework-section {

        padding: 70px 0;

    }

    .implementation-list {

        margin-top: 50px;

    }

    .implementation-item {

        grid-template-columns: 1fr;

        gap: 16px;

        padding: 30px 0;

    }

    .implementation-number {

        width: 48px;

        height: 48px;

        font-size: 20px;

    }

    .implementation-title h3 {

        font-size: 20px;

    }

    .implementation-description {

        grid-column: 1/-1;

        /* padding-left:80px; */

    }

    .implementation-description p {

        font-size: 15px;

        line-height: 1.7;

    }

}























/* FAQ Section */

.faq-section {
    padding: var(--space-85) 0;
}


.faq-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--space-24);
    flex-wrap: wrap;
}

.faq-header__left {
    flex: 1;
}


.collapse-all-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-8);
    cursor: pointer;
    color: var(--primary-color);
    font-family: var(--para-font-family);
    font-size: var(--p-size-14);
    font-weight: var(--font-600);
    padding: 8px 14px;
    border-radius: var(--radius-9999);
    border: 1.5px solid var(--color-border);
    background: var(--bg-main);
    user-select: none;
    white-space: nowrap;
    transition: background 0.2s;
    flex-shrink: 0;
    margin-top: 6px;
    margin-bottom: 32px;
}

.collapse-all-btn:hover {
    background: #eaf0ff;
}

.collapse-all-btn .btn-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    font-weight: var(--font-700);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.faq-item input[type="checkbox"] {
    display: none;
}

.faq-item {
    background: var(--bg-main);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-12);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 101, 242, 0.08);
}

.faq-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-24);
    padding: var(--space-20) var(--space-24);
    cursor: pointer;
    user-select: none;
}

.faq-question {
    font-family: var(--para-font-family);
    font-size: clamp(var(--p-size-18), 2.5vw, 22px);
    font-weight: var(--font-500);
    color: var(--text-primary);
    line-height: 1.5;
    letter-spacing: -0.38px;
}

.faq-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-grey);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.2s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 var(--space-24);
}

.faq-answer p {
    font-size: var(--p-size-16);
    color: var(--text-primary);
    line-height: var(--leading-relaxed);
    padding-bottom: var(--space-20);
    max-width: 1000px;
}

.faq-item input[type="checkbox"]:checked~.faq-label .faq-icon {
    transform: rotate(180deg);
}

.faq-item input[type="checkbox"]:checked~.faq-label .faq-icon svg {
    stroke: var(--primary-color);
}

.faq-item input[type="checkbox"]:checked~.faq-answer {
    max-height: 300px;
    padding-top: 0;
}

#faq1:checked~.faq-label .faq-icon {
    transform: rotate(180deg);
}

#faq1:checked~.faq-answer {
    max-height: 300px;
}

@media (max-width: 1023px) {}

@media (max-width: 767px) {
    .faq-section {
        padding: var(--space-48) var(--space-16);
    }


    .faq-label {
        padding: var(--space-16);
        gap: var(--space-12);
    }

    .faq-answer {
        padding: 0 var(--space-16);
    }

    .faq-item input[type="checkbox"]:checked~.faq-answer {
        padding-top: 0;
    }

    .faq-header {
        flex-direction: column;
    }
}