/* Color Palette System Variables */
:root {
    --eval-bright-mint: #ccfbf1;
    --eval-mid-green: #00aa8a;
    --eval-dark-teal: #024b43;
    --eval-forest-matrix: #064e3b;
}

/* Base utility bindings */
.layout-mint-bg {
    background-color: var(--eval-bright-mint) !important;
}

.text-brand-dark-teal {
    color: var(--eval-dark-teal) !important;
}

.text-brand-green {
    color: var(--eval-mid-green) !important;
}

.opacity-90 {
    opacity: 0.90;
}

.py-2-5 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
}

.z-index-2 {
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   SECTION 1: HERO DISPLAY OVERRIDES (image_b60fa0.png)
   ========================================================================== */
.eval-hero-wrapper {
    background-color: var(--eval-bright-mint);
}

.eval-hero-title {
    font-size: 2.5rem;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.eval-hero-text {
    font-size: 1.05rem;
    line-height: 1.65;
    text-align: justify;
}

.btn-eval-dark-teal {
    background-color: var(--eval-dark-teal) !important;
    border-color: var(--eval-dark-teal) !important;
    transition: all 0.2s ease-in-out;
}

.btn-eval-dark-teal:hover {
    background-color: #01322d !important;
    transform: translateY(-1px);
}

/* Signature three-corner radius layout for medical graphics */
.eval-hero-mask {
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    border-top-left-radius: 2rem !important;
    border-top-right-radius: 2rem !important;
    border-bottom-left-radius: 2rem !important;
    border-bottom-right-radius: 0rem !important;
}

.hero-eval-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
}

/* Replicates the smooth upward angled container slope divider layout */
.eval-hero-angle-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 35px;
    background-color: #ffffff;
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
    z-index: 1;
}

/* ==========================================================================
   SECTION 2: CONTENT GRID PROPS (image_b60f64.png)
   ========================================================================== */
.eval-section-heading {
    font-size: 1.85rem;
    letter-spacing: -0.01em;
}

.eval-section-text {
    font-size: 1.02rem;
    line-height: 1.65;
    text-align: justify;
}

/* Perfectly reversed custom corner configuration mapping layout */
.eval-process-mask {
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    border-top-left-radius: 2rem !important;
    border-top-right-radius: 2rem !important;
    border-bottom-right-radius: 2rem !important;
    border-bottom-left-radius: 0rem !important;
}

.process-eval-img {
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: cover;
}

/* ==========================================================================
   SECTION 3 & 4: CALL TO ACTION BANNER & BASE MATRIX (image_b60f3f.png)
   ========================================================================== */
.eval-cta-card {
    border-radius: 1rem !important;
}

.eval-cta-title {
    font-size: 1.65rem;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.btn-eval-mid-green {
    background-color: var(--eval-mid-green) !important;
    border-color: var(--eval-mid-green) !important;
    transition: background-color 0.2s ease;
}

.btn-eval-mid-green:hover {
    background-color: #008f73 !important;
}

/* Bottom Purpose Matrix Container Styles */
.eval-purpose-section {
    background-color: var(--eval-forest-matrix);
    position: relative;
    overflow: hidden;
}

.eval-purpose-heading {
    font-size: 1.7rem;
    letter-spacing: -0.01em;
}

.eval-purpose-intro {
    font-size: 1.05rem;
}

.matrix-bullet {
    font-size: 1.5rem;
    line-height: 1.1;
}

.eval-purpose-list p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Background Geometric Shapes Overlay */
.pattern-overlay {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.025);
    z-index: 1;
}

.matrix-circle {
    width: 280px;
    height: 280px;
    border: 45px solid rgba(255, 255, 255, 0.02);
    border-radius: 50%;
    bottom: -60px;
    right: 40px;
}

.matrix-chevron {
    width: 120px;
    height: 120px;
    clip-path: polygon(50% 0%, 100% 50%, 100% 100%, 50% 50%, 0% 100%, 0% 50%);
    top: 20px;
    left: 20%;
}

/* Structural Layout Breakpoint Adaptations */
@media (max-width: 991.98px) {
    .eval-hero-title {
        font-size: 2rem;
    }

    .eval-cta-title {
        font-size: 1.45rem;
    }

    .eval-hero-mask,
    .eval-process-mask {
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .pattern-overlay {
        display: none;
    }
}