/* Precise Brand Color Profiles */
:root {
    --med-bright-mint: #ccfbf1;
    /* Light mint-cyan hero hue */
    --med-mid-green: #00aa8a;
    /* Core green accent for titles and indicators */
    --med-dark-teal: #024b43;
    /* Dark clinical teal primary accent */
    --med-ocean-teal-bg: #0e839f;
    /* Distinct intermediate backdrop variant seen in image_b59f7a.png */
    --med-forest-green: #014737;
    /* Deep footer canvas structure background */
}

/* Base Utility Classes */
.layout-mint-bg {
    background-color: var(--med-bright-mint) !important;
}

.layout-ocean-teal-bg {
    background-color: var(--med-ocean-teal-bg) !important;
}

.layout-forest-bg {
    background-color: var(--med-forest-green) !important;
}

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

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

/* ==========================================================================
   SECTION 1 & 2: TELEHEALTH HERO AND ASYMMETRIC RADIUS MASKS (image_b5a286.png / image_b5a263.png)
   ========================================================================== */
.telehealth-hero-title {
    font-size: 2.45rem;
    line-height: 1.25;
    letter-spacing: -0.015em;
}

.telehealth-hero-text {
    font-size: 1.05rem;
    line-height: 1.65;
}

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

.btn-med-mid-green:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.btn-med-dark-teal {
    background-color: var(--med-dark-teal) !important;
    border-color: var(--med-dark-teal) !important;
}

/* Upper-Right profile cutout matching image_b5a286.png */
.telehealth-hero-mask {
    width: 100%;
    max-width: 530px;
    overflow: hidden;
    border-top-left-radius: 2rem !important;
    border-top-right-radius: 6rem !important;
    border-bottom-left-radius: 6rem !important;
    border-bottom-right-radius: 2rem !important;
}

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

/* Bottom-Left profile cutout matching image_b5a263.png */
.telehealth-section-heading {
    font-size: 1.85rem;
    line-height: 1.35;
}

.telehealth-intro-mask {
    width: 100%;
    max-width: 440px;
    overflow: hidden;
    border-top-left-radius: 6rem !important;
    border-top-right-radius: 2rem !important;
    border-bottom-left-radius: 6rem !important;
    border-bottom-right-radius: 2rem !important;
}

.telehealth-panel-img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: cover;
    display: block;
}

.telehealth-workflow-list li {
    font-size: 0.98rem;
    line-height: 1.6;
}

/* ==========================================================================
   SECTION 3 & 4: CLINICAL BULLETS AND MATRIX LAYOUTS (image_b59f9f.png / image_b59f7a.png)
   ========================================================================== */
.telehealth-clinical-bullets li {
    position: relative;
    padding-left: 1.35rem;
    font-size: 0.98rem;
    color: #2d3748;
    line-height: 1.6;
}

.telehealth-clinical-bullets li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
    font-size: 1.2rem;
    top: -1px;
}

.abstract-accent-ring {
    width: 120px;
    height: 240px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0 120px 120px 0;
}

.comparison-matrix-card {
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.comparison-label {
    font-size: 1.3rem;
    letter-spacing: -0.01em;
}

/* ==========================================================================
   SECTION 5: FOOTER OVERLAP BLOCK ARCHITECTURE (image_b59f43.png)
   ========================================================================== */
.translate-cta-card {
    transform: translateY(0);
    position: relative;
    z-index: 5;
}

.cta-onboarding-card {
    box-shadow: 0 20px 30px -5px rgba(1, 71, 55, 0.12) !important;
}

.cta-card-title {
    font-size: 1.5rem;
    line-height: 1.4;
}

.wave-spline-container {
    line-height: 0;
}

/* ==========================================================================
   MEDIA VIEWPORT BALANCING ENGINE
   ========================================================================== */
@media (max-width: 991.98px) {
    .telehealth-hero-title {
        font-size: 1.95rem;
    }

    .telehealth-section-heading {
        font-size: 1.5rem;
    }

    .telehealth-hero-mask,
    .telehealth-intro-mask {
        max-width: 100%;
        margin-top: 1.5rem;
        border-radius: 2rem !important;
        /* Mobile fallback standardization */
    }

    .translate-cta-card {
        transform: translateY(0);
    }
}