@charset "utf-8";

/* solution_ specific styles */

.solution_section {
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
}

.solution_bg_white {
    background-color: var(--white, #ffffff);
}

.solution_bg_slate50 {
    background-color: #f8fafc;
    /* slate-50 */
}

.solution_bg_dark {
    background-color: var(--graywhite);
}

[class*="solution_bg_photo"] {
    background: var(--keycolor_deep);
    position: relative;
    padding-top: 9rem;
    padding-bottom: 9rem;
}

[class*="solution_bg_photo-light"] {
    background-color: var(--keycolor_vivid);
}

[class*="solution_bg_photo-accent"] {
    background-color: var(--accentcolor);
}

.solution_bg_dark [class^="solution_title"] { color: var(--txt_basiccolor); }
[class*="solution_bg_photo"] [class^="solution_title"] {
    color: var(--white);
}

.solution_bg_Imgphoto {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.solution_lead {
    text-align: center;
    font-size: var(--font_normal);
}

@media (min-width: 768px) {
    .solution_lead {
        font-size: var(--font_large);
    }
}

.solution_container {
    width: 100%;
    max-width: 1200px;
    /* container mx-auto approximation */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    position: relative;
    z-index: 10;
}

.solution_header {
    max-width: 56rem;
    /* max-w-4xl */
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.solution_number_bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    font-weight: bold;
    color: #f8fafc;
    /* slate-50 */
    line-height: 1;
    z-index: -10;
    user-select: none;
    font-family: var(--en-sans, sans-serif);
}

@media (min-width: 768px) {
    .solution_number_bg {
        font-size: 14rem;
    }
}

.solution_bg_slate50 .solution_number_bg {
    color: #ffffff;
}

.solution_bg_white .solution_number_bg {
    color: #f8fafc;
}


[class^="solution_title"] {
    font-size: 2.25rem;
    /* text-4xl */
    font-weight: bold;
    color: #0f172a;
    /* slate-900 */
    margin-bottom: 2rem;
    position: relative;
    z-index: 10;
    line-height: 1.3;
}

@media (min-width: 768px) {
    [class^="solution_title"] {
        font-size: 3rem;
        /* text-5xl */
    }
}

.solution_desc {
    font-size: 1.125rem;
    /* text-lg */
    line-height: 1.625;
    /* leading-relaxed */
    margin-bottom: 1rem;
    font-weight: 500;
    color: #475569;
    /* slate-600 */
}

.solution_desc_strong {
    font-size: 1.25rem;
    /* text-xl */
    font-weight: bold;
    color: #1e3a8a;
    /* text-blue-900 */
}

.solution_desc_strong_wrappable {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #475569;
}

.solution_desc_strong_wrappable strong {
    font-weight: bold;
}

/* Grids */
.solution_grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

/* Areas specific: 1 column on mobile */
.solution_bg_stone .solution_grid {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .solution_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }

    .solution_grid_4cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .solution_grid_3cols {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .solution_grid_4cols {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .solution_grid_5cols_center {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .solution_grid_5cols_center>* {
        grid-column: span 2;
    }

    .solution_grid_5cols_center> :nth-child(4) {
        grid-column: 2 / span 2;
    }
}

/* Cards */
.solution_card {
    background-color: #fff;
    padding: 2.5rem;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
    /* shadow-[...] */
    /* border-top: 4px solid #f1f5f9; */
    /* border-slate-100 */
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
}


.solution_card_icon {
    margin-bottom: 1.5rem;
    color: #cbd5e1;
    /* slate-300 */
    font-size: 3rem;
    transition: all 0.3s;
    display: inline-block;
}


.solution_card_text {
    font-size: 1.125rem;
    /* text-lg */
    font-weight: bold;
    color: #1e293b;
    /* slate-800 */
    letter-spacing: 0.025em;
    /* tracking-wide */
    margin: 0;
}

/* Bottom Text Area */
.solution_bottom_area {
    margin-top: 5rem;
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.solution_bottom_box {
    /* padding: 2rem; */
    position: relative;
    display: inline-block;
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .solution_bottom_box {
        /* padding: 3rem; */
    }
}

.solution_corner_tl {
    position: absolute;
    top: 0;
    left: 0;
    width: 2rem;
    height: 2rem;
    border-top: 2px solid #60a5fa;
    border-left: 2px solid #60a5fa;
    display: none;
}

.solution_corner_br {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 2rem;
    height: 2rem;
    border-bottom: 2px solid #60a5fa;
    border-right: 2px solid #60a5fa;
    display: none;
}

.solution_bottom_text {
    font-size: 1.125rem;
    line-height: 2;
    color: #334155;
    /* slate-700 */
    font-weight: 500;
    text-align: center;
}

@media (min-width: 768px) {
    .solution_bottom_text {
        font-size: 1.25rem;
    }

    .solution_bottom_text_large {
        font-size: 1.875rem;
        /* text-3xl */
    }
}

.solution_highlight_blue {
    display: inline-block;
    color: #2563eb;
    /* blue-600 */
    font-weight: bold;
    border-bottom: 2px solid #bfdbfe;
    /* blue-200 */
}

/* For Section 2 Bottom text variant */
.solution_bottom_text_large {
    font-size: 1.5rem;
    /* text-2xl */
    font-weight: bold;
    color: #1e3a8a;
    /* blue-900 */
    display: inline-block;
    padding-bottom: 0.5rem;
    position: relative;
}

.solution_bottom_marker {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.75rem;
    background-color: rgba(219, 234, 254, 0.8);
    /* blue-100/80 */
    z-index: 0;
}

.solution_text_relative {
    position: relative;
    z-index: 10;
}

.solution_bottom_text_desc {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: #475569;
}

.solution_bottom_text_strong_block {
    font-size: 1.25rem;
    font-weight: bold;
    color: #1e3a8a;
    line-height: 1.625;
}

@media (min-width: 768px) {
    .solution_bottom_text_strong_block {
        font-size: 1.5rem;
    }
}


/* Utility for mobile hidden br */
.solution_md_hidden {
    display: inline;
}

@media (min-width: 768px) {
    .solution_md_hidden {
        display: none;
    }
}

.solution_hidden_md_inline {
    display: none;
}

@media (min-width: 768px) {
    .solution_hidden_md_inline {
        display: inline;
    }
}

/* Flow Chart */
.solution_flow {
    display: block;
    /* space for arrows */
    max-width: 600px;
    margin: 4rem auto;
    text-align: center;
}

.solution_flow_item {
    border: 1px solid var(--keycolor_vivid);
    padding: 1.5rem 2rem;
    text-align: center;
    position: relative;
    margin-bottom: 3rem;
    box-shadow: 0 4px 6px -1px rgba(76, 148, 255, 0.3), 0 2px 10px 2px rgba(76, 148, 255, 0.06);
    align-items: center;
    justify-content: center;
    background: rgba(76, 148, 255, 1);
}

/* Arrow between items */
.solution_flow_item:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    /* Adjust based on gap */
    left: 50%;
    transform: rotate(-45deg) translateX(-50%);
    border-left: 1px solid var(--keycolor_vivid);
    border-bottom: 1px solid var(--keycolor_vivid);
    z-index: 1;
    width: 2rem;
    height: 2rem;
}

.solution_flow_number {
    color: var(--white);
    display: inline-block;
    font-family: var(--en-sans);
    font-size: var(--font_xlarge);
    margin-right: 0.5em;
}

.solution_flow_text {
    font-size: var(--font_large);
    font-weight: normal;
    color: var(--white);
    display: inline-block;
    line-height: 1.5;
}



.solution_statement {
    color: var(--white);
    font-size: var(--font_xlarge);
    text-align: center;
    line-height: 2;
}

/* Areas Section Styles */
.solution_bg_stone {
    background-color: #d6d6cea4
}

/* Areas specific overrides for responsive grid */
/* Mobile (default) is 1 column via .solution_bg_stone .solution_grid */

@media (min-width: 768px) {

    /* Tablet: 2 cols */
    .solution_bg_stone .solution_grid_3cols {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {

    /* PC: 3 cols */
    .solution_bg_stone .solution_grid_3cols {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.solution_areas_label {
    color: #78716c;
    /* stone-500 */
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.5rem;
    display: block;
}

.solution_areas_title {
    font-size: 2.25rem;
    /* text-3xl */
    font-weight: bold;
    color: #292524;
    /* stone-800 */
    margin: 0;
}

@media (min-width: 768px) {
    .solution_areas_title {
        font-size: 3rem;
        /* md:text-4xl */
    }
}

.solution_areas_card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid #e7e5e4;
    /* stone-200 */
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    text-decoration: none;
    /* In case it's a link or just for reset */
}

.solution_areas_icon_box {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    background: #f5f5f4;
    /* stone-100 */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #57534e;
    /* stone-600 */
    transition: all 0.3s;
    flex-shrink: 0;
}


.solution_areas_card_title {
    font-size: 1.25rem;
    /* text-xl */
    font-weight: bold;
    color: #44403c;
    /* stone-700 */
    margin: 0;
    letter-spacing: 0.025em;
    /* tracking-wide */
    transition: color 0.3s;
}

.solution_areas_card_title br {
    display: none;
}

@media (min-width: 768px) {
    .solution_areas_card_title br {
        display: inline;
    }

    .solution_areas_card {
        padding: 2rem;
        gap: 1.5rem;
    }

    .solution_areas_icon_box {
        width: 4rem;
        height: 4rem;
    }

    .solution_areas_icon_box i {
        font-size: 2em;
    }
}