.analysis-card-web {
    padding: 20px;
    background-color: #fff;
    border-radius: 4px;
    border: 1px solid var(--box-color);
}

.analysis-card-header-web {
    margin-bottom: 0px;
    height: auto;
}

.analysis-section {
    background: #ECFCF5;
    position: relative;
    padding: 80px 40px;
}

.analysis-container {
    max-width: 1240px;
    margin: 0 auto;
}

.analysis-header {
    text-align: center;
    margin-bottom: 60px;
}

.analysis-title {
    font-size: 40px;
    font-weight: 400;
    color: #000000;
    margin-bottom: 5px;
    font-family: "Replica-LL", sans-serif;
    line-height: 120%;
}

.analysis-subtitle {
    font-size: 16px;
    color: #111;
    font-weight: 400;
    font-family: "Roboto";
}

/* Flowchart */

.flowchart-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    justify-content: center;
}


.flow-card-primary {
    background: var(--box-color);
    color: white;
    padding: 24px 16px;
    border-radius: 8px;
    height: 350px;
    width: 300px;
    min-width: 300px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 4px 16px rgba(61, 153, 112, 0.2);
}

.flow-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
}

.flow-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

.flow-card-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 120%;
    font-family: "Replica-LL", sans-serif;
    text-transform: uppercase;
}

.flow-card-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 160%;
    font-family: "Roboto";
    color: #fff;
}

/* Arrow with Badge */
.flow-arrow {
    display: flex;
    align-items: center;
    margin-top: 80px;
    position: relative;
}

.arrow-line {
    width: 60px;
    height: 2px;
    background: #3d9970;
    position: relative;
}

.arrow-line::after {
    content: '';
    position: absolute;
    right: -8px;
    top: -4px;
    width: 0;
    height: 0;
    border-left: 8px solid #3d9970;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.arrow-badge {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: 3px solid #3d9970;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #3d9970;
}

/* Analysis Cards Grid */
.analysis-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
}

.analysis-row {
    --gap: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap);
    justify-content: center; 
}
  
.analysis-row > .analysis-card {
    flex: 0 0 calc((100% - 2 * var(--gap)) / 3);
}
  
.analysis-row:has(> .analysis-card:nth-child(2)):not(:has(> .analysis-card:nth-child(3)))
    > .analysis-card {
    flex-basis: calc((100% - var(--gap)) / 2);
}
  
.analysis-row:not(:has(> .analysis-card:nth-child(2))) > .analysis-card {
    flex-basis: 100%;
}

.analysis-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    margin: 0 auto;
    gap: 16px;

}

.analysis-row-2 .analysis-card {
    width: 250px;
    height: 150px;
}

.analysis-card-nuterient {
    background: white;
    border: 1px solid #d4e8dd;
    border-radius: 8px;
    padding: 20px 24px;
    flex: 1;
    min-width: 0;
    width: 250px;
}

.analysis-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.analysis-card-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.analysis-card-icon svg {
    width: 100%;
    height: 100%;
    stroke: #3d9970;
    stroke-width: 2;
    fill: none;
}

.analysis-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    line-height: normal;
    font-family: "Replica-LL", sans-serif;
}

.analysis-card-description {
    display: flex;
}

.analysis-card-description p {
    font-size: 14px;
    margin-bottom: 6px;
    color: #111111;
    font-weight: 400;
    line-height: 1.5;
    font-family: "Roboto";
    opacity: 0.7;
}

.analysis-card-description .tick-mark-icon {
    margin-right: 6px;
}

.analysis-card-description .tick-mark-icon svg path {
    stroke: var(--box-color);
}

.partner-logos-container {
    background-color: #F9F7EE;
}

@media only screen and (min-width: 768px) {
    .analysis-header { 
        margin: 0 0 2rem;
    }

    .flowchart { 
        height: 60vh!important; 
        overflow: hidden; 
    }

    .flowchart .splide__track { 
        height: 60vh; 
    }

    .flowchart .splide__slide {
    height: 60vh!important;
    display: flex;
    align-items: center;
    }
}


@media only screen and (max-width: 1100px) {
    .analysis-row > .analysis-card {
        flex: 0 0 48%;
        gap: 10px;
    }

    .flow-card-primary {
        height: 250px;
        width: 200px;
        min-width: 200px;
    }

    .flow-card-title {
        font-size: 16px;
    }
}

@media only screen and (max-width: 992px) {
    .analysis-row > .analysis-card {
        flex: 0 0 45%;
    }
}

@media only screen and (max-width: 768px) {
    .flowchart {
        margin: unset;
        gap: 0px;
        justify-content: start;
    }

    .analysis-section {
        padding: 32px 16px;
    }

    div#analysis-section-slider {
        visibility: visible;
    }

    div#analysis-section-slider .splide__list {
        display: block;
        transform: unset !important;
    }

    div#analysis-section-slider .splide__track {
        overflow: visible;
        height: auto !important;
    }

    .flowchart-inner {
        display: block;
    }
    
    .box-number-image {
        display: none;
    }

    .flow-card-primary {
        width: 100%;
        min-height: auto;
        min-width: 100%;
        height: auto;
    }

    .analysis-card-web {
        border-bottom: 1px solid #11111133 !important;
        border: 0;
        border-radius: unset;
        padding: 0;
        padding-bottom: 12px;
        padding-top: 12px;
    }

    .analysis-card-web:last-child {
        border: 0!important;
        padding-bottom: 0;
    }

    .analysis-row {
        display: block;
        padding: 16px;
        border: 1px solid var(--box-color);
        background-color: #fff;
        border-radius: 4px;
    }

    .analysis-cards {
        margin-bottom: 24px;
    }

    .flow-card-primary .card-primary-inner {
        display: flex;
        width: 100%;
        align-items: center;
    }

    .flow-card-icon {
        margin: 0;
        margin-right: 12px;
        width: 30px;
        height: 30px;
    }

    .flow-card-subtitle {
        text-align: left;
    }

    .flow-card-title {
        margin-bottom: 0;
        font-size: 20px;
        text-align: left;
    }
}

@media only screen and (max-width: 500px) {
    .footer-top {
        padding: 45px 0px !important;
    }

    .wpcf7 input {
        width: 100%;
    }
    .footer-top .container {
        width: 90% !important;
    }
    #colophon .container {
        width: 90%;
    }
    #colophon section {
        background-color: transparent !important;
    }
    .partner-logos-container {
        padding: 45px 0px !important;
    }
}