/* Clinical Capabilities Page Styles - Refactored */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Spacing & Layout */
    --pad-page-h: 80px;
    /* Standard Horizontal Padding */
    --pad-page-v: 40px;
    /* Standard Vertical Padding */
    --width-container: 1200px;

    /* Colors */
    --c-dark: #1a2e1a;
    --c-mint: #b5ffdc;
    --c-green: #4ade80;
    --c-green-grad: linear-gradient(135deg, #86efac 0%, #4ade80 100%);
    --c-blue-text: #0a3d4d;
    --c-text-main: #1a1a1a;
    --c-text-gray: #374151;
    --c-text-light: #15241d;
    --c-bg-gray: #e5e6eb;
    --c-bg-light: #f3f4f6;
    --c-white: #ffffff;

    /* Typography */
    --font-main: "helvetica-w01-roman", sans-serif;
    font-family: var(--font-main);
    --fz-h2: 42px;
    --fz-h3: 32px;
    --fz-p: 16px;
    --lh-p: 1.6;

    /* Borders */
    --br-lg: 16px;
    --br-xl: 20px;
    --br-xxl: 24px;

    /* Legacy/Alias support */
    --pad-page: var(--pad-page-h);
}

/* Base */
body.clinical-capabilities-template {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body.clinical-capabilities-template.cc-mobile-menu-open {
    overflow: hidden;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.clinical-capabilities-page {
    font-family: var(--font-main);
    color: var(--c-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

.clinical-capabilities-page * {
    box-sizing: border-box;
}

/* Keep this template isolated from global theme typography overrides */
body {
    font-family: var(--font-main) !important;
}

/* Animations - Consolidated */
.scroll-animate,
.scroll-animate-children>*,
.scroll-animate-left,
.scroll-animate-right,
.scroll-animate-scale {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.scroll-animate {
    transform: translateY(80px);
}

.scroll-animate-children>* {
    transform: translateY(60px);
}

.scroll-animate-left {
    transform: translateX(-80px);
}

.scroll-animate-right {
    transform: translateX(80px);
}

.scroll-animate-scale {
    transform: scale(0.85);
}

.animate-in,
.animate-in>* {
    opacity: 1;
    transform: none;
}

.scroll-animate-children.animate-in>*:nth-child(1) {
    transition-delay: 0s;
}

.scroll-animate-children.animate-in>*:nth-child(2) {
    transition-delay: 0.15s;
}

.scroll-animate-children.animate-in>*:nth-child(3) {
    transition-delay: 0.3s;
}

.scroll-animate-children.animate-in>*:nth-child(4) {
    transition-delay: 0.45s;
}

.scroll-animate-children.animate-in>*:nth-child(5) {
    transition-delay: 0.6s;
}

.scroll-animate-children.animate-in>*:nth-child(6) {
    transition-delay: 0.75s;
}

@media (prefers-reduced-motion: reduce) {

    .scroll-animate,
    .scroll-animate-left,
    .scroll-animate-right,
    .scroll-animate-scale,
    .scroll-animate-children>* {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Top Bar */
.cc-top-bar {
    background: var(--c-mint);
    padding: 25px var(--pad-page-h);
    text-align: center;
}

.cc-top-bar-text {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--c-blue-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cc-top-bar-link {
    color: var(--c-blue-text);
    text-decoration: underline;
    font-weight: 700;
    margin-left: 8px;
    transition: opacity 0.3s;
}

.cc-top-bar-link:hover {
    opacity: 0.8;
}

/* Navigation */
.cc-nav {
    background: var(--c-dark);
    padding: 10px var(--pad-page-h);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.cc-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cc-nav-logo a {
    display: block;
}

.cc-nav-logo-img {
    width: auto;
}

.cc-nav-logo-icon {
    width: 28px;
    height: 28px;
    background: var(--c-green-grad);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: var(--c-dark);
}

.cc-nav-logo-text {
    color: var(--c-green);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.cc-nav-menu {
    display: flex;
    align-items: center;
    gap: 45px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.cc-nav-menu li a {
    color: #9ca3af !important;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    display: block;
}
.cc-nav-menu li a.glink {
    padding: 31px 0 !important;
    font-weight: 500 !important;
}

.cc-nav-translate .gtranslate_wrapper {
    display: flex;
    align-items: center;
}

.cc-nav-menu li:hover>a,
.cc-nav-menu li a.active,
.cc-nav-menu .current-menu-item>a {
    color: var(--c-green) !important;
}

.cc-nav-menu>li:first-child>a {
    color: var(--c-green);
}

/* Sub-menu */
.cc-nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-dark);
    padding: 15px 0;
    min-width: 220px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    z-index: 1001;
    margin-top: 10px;
}

.cc-nav-menu .sub-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--c-dark);
}

.cc-nav-menu li:hover>.sub-menu {
    display: block;
}

.cc-nav-menu .sub-menu li a {
    padding: 12px 24px;
    color: #fff !important;
    font-size: 14px;
    white-space: nowrap;
}

.cc-nav-menu .sub-menu li a:hover {
    background: rgba(74, 222, 128, 0.15);
    color: var(--c-green) !important;
}

.cc-nav-menu .book-now a {
    background: var(--c-dark) !important;
    width: auto;
}

/* Mobile Menu Toggle */
.cc-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.cc-mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--c-green);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cc-mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.cc-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.cc-mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.cc-hero {
    background: transparent;
    padding: 0 var(--pad-page-h);
}

.cc-hero-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 25px;
    max-width: var(--width-container);
    margin: 30px auto 0;
    min-height: 550px;
}

.cc-hero-image-col {
    border-radius: var(--br-lg);
    overflow: hidden;
    display: flex;
}

.cc-hero-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-hero-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.cc-hero-card {
    background: var(--c-dark);
    border-radius: var(--br-lg);
    padding: 45px 40px;
    color: #fff;
}

.cc-hero-card h1 {
    font-size: var(--fz-h2);
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.25;
    color: #fff;
}

.cc-hero-card p {
    font-size: var(--fz-p);
    line-height: 1.8;
}

.cc-btn-primary {
    background: var(--c-mint);
    color: var(--c-dark);
    padding: 12px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cc-btn-primary:hover {
    background: #9ee8c6;
    color: var(--c-dark);
}

.cc-hero-animation {
    background: #e8e8e0;
    border-radius: var(--br-lg);
    overflow: hidden;
    aspect-ratio: 10 / 7;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-hero-animation video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-sphere-container img {
    max-width: 320px;
    max-height: 280px;
}

/* Investors Grid */
.cc-investors-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cc-investors-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}

.cc-investor-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cc-investor-item img {
    /* Removed strict size constraints to allow original size as requested */
    max-width: 100%;
    height: auto;
    object-fit: contain;
    /* Removed grayscale and opacity as requested */
    transition: transform 0.3s;
}

.cc-investor-item img:hover {
    transform: scale(1.05);
}

/* Ensure Partners Section padding is consistent */
.cc-partners {
    padding: 60px var(--pad-page-h);
    background: #fff;
}

/* Responsible stacking for investors */
@media (max-width: 768px) {
    .cc-investors-grid {
        gap: 30px;
    }

    .cc-investors-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cc-investor-item img {
        max-height: 70px;
        max-width: 80%;
    }
}

/* Technology Section */
.cc-technology {
    padding: var(--pad-page-v) var(--pad-page-h);
    background: #fff;
}

.cc-technology-header,
.cc-services-header,
.cc-advisors-header,
.cc-partners-header,
.cc-why-partner-header {
    text-align: center;
    margin-bottom: 40px;
}

.cc-section-label {
    color: var(--c-text-light);
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.cc-technology h2,
.cc-services-header h2,
.cc-mission-section h2,
.cc-partners-header h2,
.cc-why-partner-header h2 {
    font-size: var(--fz-h2);
    font-weight: 700;
    margin: 0 0 40px;
    color: var(--c-text-main);
}

.cc-technology-content {
    max-width: var(--width-container);
    margin: 0 auto;
}

.cc-technology-phone {
    width: 100%;
    max-width: 640px;
    aspect-ratio: 4/3;
    margin: 0 auto 50px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.cc-technology-phone img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.cc-technology-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.cc-tech-feature {
    text-align: center;
    padding: 25px 20px;
    background: var(--c-bg-gray);
    border-radius: 12px;
    transition: box-shadow 0.3s;
}

.cc-tech-feature:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cc-tech-feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
}

.cc-tech-feature-icon svg,
.cc-tech-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cc-tech-feature h3 {
    font-size: 18px;
    /* Too small for H3 variable (32px), keeping local opt-in or making new var? keeping for now but maybe standardising sub-headers later */
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--c-text-main);
}

.cc-tech-feature p {
    font-size: 14px;
    color: var(--c-text-light);
    margin: 0;
}

.cc-technology-banner {
    width: 100%;
    max-width: 1200px;
    height: 350px;
    overflow: hidden;
    margin: 0 auto 80px;
}

.cc-technology-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

/* Services Section */
.cc-services-header p {
    font-size: var(--fz-p);
    color: var(--c-text-light);
}

.cc-services-slider {
    max-width: 920px;
    margin: 0 auto;
    position: relative;
    min-width: 0;
}

.cc-services-slides {
    display: grid;
    grid-template-columns: 1fr;
    /* Grid overlap trick essentially allows container to fit tallest item */
    /* Or we can rely on active item being 'relative' and others 'absolute' or similar? 
       Actually, standard Grid overlap makes the container the size of the tallest item (visible or not usually, depends on visibility).
       If we want it to adapt to ACTIVE item only:
       We can make inactive items `display: none`?
       But we want transition.
       If we want transition, we need them present.
       If we use Grid Overlay (all items in 1/1), the container is as tall as the TALLEST item.
       This is acceptable and prevents jumping.
    */
    position: relative;
    z-index: 1;
    min-width: 0;
}

.cc-services-slide {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0s 0.6s;
    width: 100%;
    /* Ensure full width in grid */
    min-width: 0;
}

.cc-services-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
    z-index: 2;
}

/* Bento Grid System */
.cc-bento-grid,
.cc-mission-bento {
    display: grid;
    gap: 16px;
}

/* Styles for Items */
/* Items Common */
.cc-bento-image {
    border-radius: var(--br-xxl);
    overflow: hidden;
    position: relative;
}

.cc-bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-bento-stat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--c-dark);
    padding: 25px 35px;
    border-radius: var(--br-xxl);
    text-align: center;
}

.cc-bento-stat-overlay .stat-number {
    font-size: 52px;
    font-weight: 300;
    color: #6dd1ca;
    line-height: 1;
    display: block;
}

.cc-bento-stat-overlay .stat-label {
    font-size: 15px;
    color: #fff;
    margin-top: 8px;
    display: block;
}

.cc-bento-block {
    border-radius: var(--br-xxl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-bento-icon {
    border-radius: var(--br-xxl);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-bento-icon.mint {
    background: var(--c-mint);
}

.cc-bento-icon.dark-green {
    background: var(--c-dark);
}

.cc-bento-text {
    border-radius: var(--br-xxl);
    background: #e8e8e8;
    padding: 28px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cc-bento-text p {
    font-size: 17px;
    color: var(--c-text-gray);
    margin: 0;
}

/* Stat Blocks */
.cc-bento-stat,
.cc-bento-stat-wide {
    padding: 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: var(--br-xxl);
}

.cc-bento-stat.dark-green,
.cc-bento-stat-wide.dark-green {
    background: var(--c-dark);
}

.cc-bento-stat.mint {
    background: var(--c-mint);
}

.cc-bento-stat .stat-number {
    font-size: 58px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.cc-bento-stat .stat-number.dark {
    color: var(--c-dark);
}

.cc-bento-stat .stat-label {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-top: 8px;
}

.cc-bento-stat .stat-label.dark {
    color: var(--c-dark);
}

.cc-bento-stat .stat-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.cc-bento-stat .stat-sub.dark {
    color: var(--c-text-gray);
}

.cc-bento-stat-wide .stat-number {
    font-size: 25px;
    color: #6dd1ca;
}

.cc-bento-stat-wide .stat-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.cc-bento-content {
    border-radius: var(--br-xxl);
    padding: 40px 45px;
    background: var(--c-dark);
}

.cc-bento-content h3 {
    font-size: 30px;
    font-weight: 700;
    color: #DDE7FE;
    margin: 0 0 22px;
    line-height: 1.2;
}

.cc-bento-content ul {
    padding-left: 22px;
    margin: 0;
}

.cc-bento-content li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
    line-height: 1.65;
    list-style: disc;
}

.cc-bento-list {
    background: #e8e8e8;
    padding: 32px;
    flex-direction: column;
}

.cc-bento-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cc-bento-list li {
    font-size: 15px;
    color: var(--c-text-gray);
    text-align: center;
}

/* Slider Controls */
.cc-slider-controls {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 45px;
    position: relative;
    z-index: 5;
}

.cc-slider-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--c-dark);
    background: #fff;
    color: var(--c-dark);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
    flex-shrink: 0;
    z-index: 6;
    position: relative;
    font-size: 0;
}

@media (hover: hover) {
    .cc-slider-arrow:hover {
        background: var(--c-dark);
        color: #fff;
        transform: translateY(-1px);
    }
}

@media (hover: none) {
    .cc-slider-arrow:hover {
        background: #fff;
        color: var(--c-dark);
        transform: none;
    }
}

.cc-slider-arrow svg {
    display: none;
}

.cc-slider-arrow::before {
    content: '';
    width: 11px;
    height: 11px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    display: block;
}

.cc-slider-prev::before {
    transform: rotate(-135deg);
    margin-left: 2px;
}

.cc-slider-next::before {
    transform: rotate(45deg);
    margin-right: 2px;
}

.cc-slider-dots {
    display: flex;
    gap: 12px;
}

.cc-slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--c-dark);
    cursor: pointer;
    transition: 0.3s;
}

.cc-slider-dots span:hover {
    background: rgba(26, 46, 26, 0.3);
}

.cc-slider-dots span.active {
    background: var(--c-dark);
}

/* Specific Grids (Services) */
.cc-bento-grid.care-navigation {
    grid-template-columns: 320px 130px 1fr;
    grid-template-rows: 340px 170px;
}

.care-navigation .bento-1 {
    grid-column: 1;
    grid-row: 1;
    height: 340px;
}

.care-navigation .bento-1-stat {
    grid-column: 1;
    grid-row: 2;
    height: 170px;
}

.care-navigation .bento-2 {
    grid-column: 2;
    grid-row: 1;
    height: 170px;
}

.care-navigation .bento-3 {
    grid-column: 3;
    grid-row: 1;
    height: 170px;
}

.care-navigation .bento-4 {
    grid-column: 2 / 4;
    grid-row: 1 / 3;
    margin-top: 186px;
}

.cc-bento-grid.clinical-network {
    grid-template-columns: 2fr 2fr 1fr;
    grid-template-rows: 255px 340px;
}

.clinical-network .bento-1 {
    grid-column: 2;
    grid-row: 1;
    height: 170px;
}

.clinical-network .bento-2 {
    grid-column: 3;
    grid-row: 1;
    height: 170px;
}

.clinical-network .bento-3 {
    grid-column: 1;
    grid-row: 2;
    height: 255px;
    align-self: start;
}

.clinical-network .bento-4 {
    grid-column: 1;
    grid-row: 1;
    height: 255px;
}

.clinical-network .bento-5 {
    grid-column: 2 / 4;
    grid-row: 2;
    height: 340px;
    margin-top: -85px;
    align-self: start;
}

.cc-bento-grid.mental-health {
    grid-template-columns: 130px 1fr 1fr;
    grid-template-rows: 170px 340px;
}

.mental-health .bento-1 {
    grid-column: 1;
    grid-row: 1;
}

.mental-health .bento-2 {
    grid-column: 2;
    grid-row: 1;
}

.mental-health .bento-3 {
    grid-column: 3;
    grid-row: 1;
}

.mental-health .bento-4 {
    grid-column: 1 / 3;
    grid-row: 2;
    aspect-ratio: 1;
    max-height: 340px;
}

.mental-health .bento-5 {
    grid-column: 3;
    grid-row: 2;
    margin-left: -180px;
}

.cc-bento-grid.physician-care {
    grid-template-columns: 2.2fr 1fr 2fr;
    grid-template-rows: 170px 170px 170px;
    row-gap: 8px;
}

.physician-care .bento-1 {
    grid-column: 1;
    grid-row: 1 / 3;
    height: 340px;
}

.physician-care .bento-2 {
    grid-column: 2;
    grid-row: 1;
    height: 170px;
}

.physician-care .bento-3 {
    grid-column: 3;
    grid-row: 1;
    height: 170px;
}

.physician-care .bento-4 {
    grid-column: 2 / 4;
    grid-row: 2 / 4;
    height: 340px;
}

.physician-care .bento-5 {
    grid-column: 1;
    grid-row: 3;
    height: 170px;
}

/* Wait-time & Virtual Care */
.cc-waittime {
    max-width: 980px;
    margin: 0 auto;
}

.cc-waittime-container {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 20px;
}

.cc-waittime-main {
    background: var(--c-bg-gray);
    border-radius: 20px;
    padding: 20px 40px;
}

.cc-waittime-main h3 {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 30px;
}

.cc-waittime-stats {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.cc-waittime-stat {
    text-align: center;
    flex: 1;
}

.cc-waittime-stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.cc-waittime-stat-icon svg,
.cc-waittime-stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cc-waittime-stat h4 {
    font-size: 32px;
    font-weight: 700;
    color: var(--c-dark);
    margin: 0 0 8px;
}

.cc-waittime-stat p {
    font-size: 12px;
    color: var(--c-text-light);
    margin: 0;
    line-height: 1.4;
}

.cc-waittime-sidebar {
    background: var(--c-mint);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cc-waittime-sidebar-stat {
    text-align: left;
}

.cc-waittime-sidebar-stat h4 {
    font-size: 28px;
    color: var(--c-dark);
    margin: 0 0 5px;
}

.cc-waittime-sidebar-stat p {
    font-size: 12px;
    color: var(--c-text-gray);
    margin: 0 0 25px;
    line-height: 1.4;
}

.cc-virtual-care {
    background: var(--c-mint);
    padding: 40px;
    border-radius: 20px;
    max-width: 980px;
    margin: 20px auto 0;
    text-align: center;
}

.cc-virtual-care h3 {
    font-size: 40px;
    font-weight: 700;
    margin: 0 0 30px;
    color: var(--c-text-main);
}

.cc-virtual-care-features {
    display: flex;
    justify-content: space-evenly;
    gap: 100px;
}

.cc-virtual-care-feature {
    text-align: center;
    max-width: 210px;
}

.cc-virtual-care-feature img {
    height: 56px;
    object-fit: cover;
    margin-bottom: 20px;
}

.cc-virtual-care-feature h4 {
    font-size: 15px;
    font-weight: 400;
    color: var(--c-text-gray);
    margin: 0;
}

.cc-virtual-care-feature h4 strong {
    display: block;
    font-weight: 600;
    color: var(--c-text-main);
}

/* About & Mission */
.cc-about {
    padding: 40px var(--pad-page) 0;
}

.cc-about-hero {
    background: var(--c-dark);
    border-radius: 20px;
    max-width: 980px;
    margin: 0 auto 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    min-height: 400px;
}

.cc-about-hero-content {
    padding: 60px 0 0 58px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cc-about-hero-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 30px;
}

.cc-about-hero-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0 0 18px;
}

.cc-about-hero-image {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
}

.cc-mission-section {
    max-width: 920px;
    margin: 80px auto 40px;
    text-align: center;
}

.cc-mission-section>p {
    font-size: 16px;
    color: var(--c-text-light);
    margin-bottom: 50px;
}

.cc-mission-slider {
    position: relative;
}

.cc-mission-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cc-mission-slide.active {
    display: block;
    opacity: 1;
}

.cc-mission-bento {
    --bento-cols: repeat(3, minmax(0, 1fr));
    --bento-rows: auto;
    grid-template-columns: var(--bento-cols);
    grid-template-rows: var(--bento-rows);
}

.cc-mission-bento .cc-mission-item {
    grid-column: var(--grid-col, auto);
    grid-row: var(--grid-row, auto);
}

/* Mission Bento Grids - Reuse grid defaults */
/* Mission Items */
.cc-mission-item {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-mission-item.image img,
.cc-mission-item.image-tall img,
.cc-mission-item.image-wide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-mission-item.image {
    min-height: 200px;
}

.cc-mission-item.image-wide {
    min-height: 280px;
}

.cc-mission-item.mint-icon {
    background: #dde7fe;
    padding: 30px;
    min-height: 150px;
}

.cc-mission-item.mint-icon svg {
    max-width: 80px;
    height: auto;
}

.cc-mission-item.text-box {
    background: var(--c-bg-light);
    padding: 25px 30px;
    min-height: 150px;
}

.cc-mission-item.text-box p {
    font-size: 16px;
    color: #4b5563;
    text-align: left;
    margin: 0;
}

.cc-mission-item.gray-label {
    background: #15241d;
    padding: 30px 25px;
}

.cc-mission-item.gray-label h3 {
    font-size: 40px;
    font-weight: 700;
    color: var(--c-mint);
    margin: 0;
    line-height: 1.2;
}

.cc-mission-item.dark-content,
.cc-mission-item.dark-content-large {
    background: var(--c-dark);
    padding: 35px 40px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.cc-mission-item.dark-content {
    min-height: 200px;
    justify-content: center;
}

.cc-mission-item.dark-content h3 {
    font-size: 40px;
    font-weight: 700;
    color: #dde7fe;
    margin: 0 0 15px;
}

.cc-mission-item.dark-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.cc-mission-item.dark-content-large {
    min-height: 200px;
    padding: 50px 40px;
}

.cc-mission-item.dark-content-large h3 {
    font-size: 40px;
    font-weight: 700;
    color: #dde7fe;
    margin: 0 0 20px;
}

.cc-mission-item.dark-content-large p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.cc-mission-item.gray-text,
.cc-mission-item.gray-text-small,
.cc-mission-item.gray-text-wide,
.cc-mission-item.gray-text-tall {
    background: var(--c-bg-gray);
    padding: 30px;
}

.cc-mission-item.gray-text p,
.cc-mission-item.gray-text-small p,
.cc-mission-item.gray-text-wide p,
.cc-mission-item.gray-text-tall p {
    font-size: 18px;
    color: var(--c-text-gray);
    text-align: center;
    margin: 0;
}

.cc-mission-item.gray-text-tall {
    min-height: 200px;
    border-left: 4px solid #f5d742;
}

.cc-mission-item.dark-stethoscope {
    background: var(--c-dark);
    padding: 30px;
    min-height: 180px;
    flex-direction: column;
    gap: 15px;
}

.cc-mission-item.dark-stethoscope h3 {
    font-size: 28px;
    color: #22c55e;
    margin: 0;
    text-align: center;
}

.cc-mission-item.dark-icon,
.cc-mission-item.dark-icon-small {
    background: var(--c-dark);
    padding: 40px;
    min-height: 150px;
}

.cc-mission-item.mint-text {
    background: var(--c-mint);
    padding: 40px;
    min-height: 150px;
}

.cc-mission-item.mint-text h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--c-dark);
    margin: 0;
    text-align: center;
}

.cc-mission-item.mint-icon-small,
.cc-mission-item.mint-icon-heart {
    background: var(--c-mint);
    padding: 30px;
    min-height: 120px;
}

.cc-mission-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.cc-mission-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--c-dark);
    cursor: pointer;
    transition: 0.3s;
}

.cc-mission-dots span.active {
    background: transparent;
    border: 2px solid var(--c-dark);
}

.cc-mission-dots span:hover {
    opacity: 0.7;
}

/* Founder Cards */
.cc-founder-cards {
    display: flex;
    gap: 30px;
    max-width: var(--width-container);
    margin: 0 auto;
}

.cc-founder-image-card {
    flex: 0 0 400px;
    background: var(--c-mint);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 450px;
}

.cc-founder-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.cc-founder-bio-card {
    flex: 1;
    background: var(--c-dark);
    border-radius: 16px;
    padding: 45px 50px;
    color: #fff;
}

.cc-founder-name {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    color: #fff;
}

.cc-founder-title {
    font-size: 16px;
    font-style: italic;
    margin: 0 0 30px;
    color: #fff;
}

.cc-founder-bio {
    font-size: 20px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 20px;
}

/* Advisors Section */
.cc-advisors {
    padding: var(--pad-page-v) var(--pad-page-h);
    background: #fff;
}

.cc-advisors-header p {
    font-size: var(--fz-p);
    color: var(--c-text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.cc-featured-advisor {
    display: flex;
    align-items: center;
    max-width: 500px;
    margin: 0 auto 30px;
    position: relative;
}

.cc-featured-photo {
    flex: 0 0 180px;
    z-index: 2;
}

.cc-featured-photo img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
}

.cc-featured-info {
    flex: 1;
    background: var(--c-mint);
    border-radius: 12px;
    padding: 20px 30px 20px 80px;
    margin-left: -60px;
}

.cc-featured-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
    color: var(--c-text-main);
}

.cc-featured-role {
    font-size: 13px;
    font-weight: 600;
    color: var(--c-text-main);
    margin: 0 0 2px;
}

.cc-featured-subtitle {
    font-size: 13px;
    color: #4b5563;
    margin: 0;
}

.cc-advisors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.cc-advisor-card {
    display: flex;
    align-items: center;
    background: var(--c-mint);
    border-radius: 18px;
    overflow: hidden;
}

.cc-advisor-photo {
    flex: 0 0 150px;
}

.cc-advisor-photo img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    display: block;
}

.cc-advisor-info {
    flex: 1;
    padding: 22.5px 30px;
}

.cc-advisor-info h4 {
    font-size: 22.5px;
    font-weight: 600;
    margin: 0 0 7.5px;
    color: var(--c-text-main);
}

.cc-advisor-info .cc-advisor-role {
    font-size: 18px;
    font-weight: 600;
    color: var(--c-text-main);
    margin: 0 0 3px;
}

.cc-advisor-info .cc-advisor-company {
    font-size: 18px;
    color: #4b5563;
    margin: 0;
}

.cc-advisors-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 60px auto 0;
    padding: 50px 40px;
    background: var(--c-mint);
    border-radius: 20px;
}

.cc-stat-item {
    text-align: center;
}

.cc-stat-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
    border-radius: 16px;
    overflow: hidden;
}

.cc-stat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cc-stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--c-text-main);
    margin-bottom: 8px;
}

.cc-stat-label {
    display: block;
    font-size: 13px;
    color: #4b5563;
    max-width: 140px;
    margin: 0 auto;
}

/* Partners Section */
.cc-partners,
.cc-why-partner {
    padding: var(--pad-page-v) var(--pad-page-h);
    background: #fff;
}

.cc-why-partner-header {
    text-align: center;
    margin-bottom: 40px;
}

.cc-why-partner-header h2 {
    font-size: var(--fz-h2);
    font-weight: 700;
    color: var(--c-text-main);
    margin: 0;
}

.cc-why-partner-cards {
    display: flex;
    justify-content: center;
    max-width: var(--width-container);
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    min-height: 250px;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cc-why-card {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    min-height: 280px;
}

.cc-why-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.9;
    transition: opacity 0.3s;
    z-index: 1;
}

/* Specific overlay colors based on previous analysis/screenshot colors */
.cc-overlay-light {
    background: rgba(255, 255, 255, 0.85);
}

.cc-overlay-blue {
    background: rgba(210, 244, 234, 0.9);
    /* Minty light */
}

.cc-overlay-mint {
    background: rgba(59, 130, 246, 0.85);
    /* Blue-ish */
}

/* Adjusting to match the alternating pattern likely used in original */
/* Re-inferring better colors to match "Blue Cross" style */
.cc-overlay-light {
    background: rgba(255, 255, 255, 0.9);
}

.cc-overlay-blue {
    background: rgba(181, 255, 220, 0.85);
}

.cc-overlay-mint {
    background: rgba(30, 136, 229, 0.85);
}

.cc-overlay-teal {
    background: rgba(181, 255, 220, 0.85);
}

.cc-overlay-light-end {
    background: rgba(255, 255, 255, 0.6);
}

/* Better color approximations based on "Gotodoctor" branding */
.cc-why-card:nth-child(2) .cc-why-card-overlay {
    background: rgba(181, 255, 220, 0.9);
}

/* Light green/mint */
.cc-why-card:nth-child(3) .cc-why-card-overlay {
    background: rgba(30, 115, 190, 0.9);
}

/* Strong Blue */
.cc-why-card:nth-child(4) .cc-why-card-overlay {
    background: rgba(181, 255, 220, 0.9);
}

/* Light green/mint */
.cc-why-card:nth-child(5) .cc-why-card-overlay {
    background: rgba(255, 255, 255, 0.4);
}

/* Transparentish */


.cc-why-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.cc-why-card-content svg {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

/* Specific Icon styling adjustments if SVG paths use fill */
.cc-why-card-content svg path {
    fill: var(--c-dark);
}

.cc-why-card:nth-child(3) .cc-why-card-content svg path {
    fill: #fff !important;
    /* White icon on blue background */
}

/* Text Styling */
.cc-why-card-content p {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--c-dark);
    margin: 0;
}

.cc-why-card:nth-child(3) .cc-why-card-content p {
    color: #fff;
}

.cc-why-partner-footer {
    text-align: center;
    margin-top: 40px;
}

.cc-why-partner-footer p {
    font-size: 16px;
    color: var(--c-text-main);
}


.cc-partners-header p {
    font-size: 15px;
    color: var(--c-text-light);
    max-width: 800px;
    margin: 0 auto 1.7;
}

.cc-partners-row {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.cc-partners-row-reverse {
    flex-direction: row;
}

.cc-partners-title {
    flex: 0 0 200px;
}

.cc-partners-title h3 {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--c-text-main);
    margin: 0;
}

/* Carousel (Simplified) */
.cc-partners-carousel-wrapper {
    flex: 1;
    height: 340px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.cc-partners-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.cc-carousel-item {
    position: absolute;
    left: 50%;
    top: 50%;
    transition: transform 0.1s ease-out, opacity 0.1s ease-out;
    will-change: transform, opacity;
}

.cc-partner-logo-link img {
    max-height: 130px;
    width: auto;
    object-fit: contain;
}

.cc-partners-logos-box {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
    padding: 40px 50px;
    background: var(--c-mint);
    border-radius: 20px;
    align-items: center;
    justify-items: center;
}

/* Contact */
.cc-contact {
    padding: 80px 40px;
}

.cc-contact-container {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
}

.cc-contact-info {
    flex: 0 0 280px;
    background: var(--c-dark);
    border-radius: 20px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 50px;
}

.cc-contact-info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

.cc-contact-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.cc-contact-icon svg {
    width: 100%;
    height: 100%;
    color: var(--c-mint);
    stroke-width: 2;
}



.cc-contact-info-item p,
.cc-contact-info-item a {
    margin: 0;
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
    text-decoration: none;
    transition: 0.3s;
}

.cc-contact-info-item a:hover {
    color: var(--c-mint);
    text-decoration: underline;
}

.cc-contact-form {
    flex: 1;
    background: var(--c-mint);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cc-contact-label {
    display: block;
    font-size: 20px;
    color: var(--c-text-main);
    margin-bottom: 10px;
    font-weight: 400;
}

.cc-contact-form h3 {
    font-size: 70px;
    font-weight: 400;
    margin-bottom: 15px;
    font-family: var(--font-main);
    letter-spacing: -1px;
    color: var(--c-text-main);
}

.cc-contact-form .wpcf7-form-control:not(.wpcf7-submit) {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
    background: transparent;
    font-size: 16px;
    color: var(--c-text-main);
    transition: border-color 0.3s;
}

.cc-contact-form input[type="submit"].wpcf7-submit {
    width: 100%;
    background: var(--c-dark) !important;
    color: #fff;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 20px;
}

.cc-contact-form input[type="submit"].wpcf7-submit:hover {
    background: #2d4a2d !important;
}

/* Footer */
.cc-footer {
    background: var(--c-dark);
    color: #fff;
    overflow: hidden;
}

.cc-footer-content {
    display: flex;
    gap: 80px;
    padding: 60px 80px;
}

.cc-footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex-shrink: 0;
}

.cc-footer-logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #0ea5e9;
}

.cc-footer-columns {
    display: flex;
    gap: 80px;
    flex: 1;
    justify-content: space-evenly;
}

.cc-footer-column h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.cc-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Footer Contact Specifics */
.cc-footer-emergency p,
.cc-footer-copyright p,
.cc-footer-contact p {
    margin: 0 0 10px;
    font-size: 18px;
    color: #fff;
    line-height: 1.5;
}

.cc-footer-contact a {
    color: #ffffff;
    /* Pinkish-red from screenshot */
    text-decoration: none;
    font-weight: 500;
}

.cc-footer-contact a:hover {
    text-decoration: underline;
}

.cc-footer-location em {
    font-style: normal;
    color: #e5e7eb;
}

.cc-footer-column ul li {
    margin-bottom: 15px;
    display: block;
    line-height: normal;
}

.cc-footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 17px;
    transition: 0.3s;
    display: block;
}

.cc-footer-column ul li a:hover {
    color: #fff;
}

.cc-footer-emergency {
    background: transparent;
    padding: 20px 80px;
    margin: 0 10rem 5rem;
    text-align: center;
}

.cc-footer-copyright {
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    margin: -40px 10rem 40px;
}

.cc-footer-logo-img {
    width: 400px;
}

/* Responsive Consolidated */
@media (max-width: 1200px) {
    :root {
        --pad-page-h: 40px;
        --fz-h2: 36px;
    }

    .cc-hero-grid {
        gap: 30px;
        min-height: auto;
    }

    .cc-footer-content {
        flex-direction: column;
        gap: 40px;
        padding: 60px 40px;
    }

    .cc-footer-logo {
        justify-content: center;
    }
}

@media (max-width: 1024px) {

    /* Tablet */
    /* Tablet */
    :root {
        --pad-page-h: 30px;
    }

    .cc-hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        display: flex;
        flex-direction: column-reverse;
        /* Stack Image on top of Text? No, Text usually first on mobile, but design might vary. Let's keep Text first (Reverse column order if needed, but DOM is Image then Text. Wait. DOM is Image Col then Right Col (Card + Anim). Use flex-direction: column-reverse to put Right Col (Text) on top? Or just column.
        DOM:
        1. cc-hero-image-col (Girl)
        2. cc-hero-right (Card + Anim)
        
        If we want Text First: column-reverse? 
        Actually, usually visual hierarchy: Title -> Image/Anim -> Details.
        Let's try standard column for now, so Image comes first as per DOM, then Title/Card.
        Wait, design usually wants Title visible. 
        Let's leave order as is (Image, then Content) for tablet unless requested otherwise.
        
        Actually, let's fix spacing.
        */
        display: block;
        /* Simpler stacking */
    }

    .cc-hero-right {
        margin-top: 30px;
    }

    .cc-hero-card {
        padding: 30px;
        min-height: auto;
    }

    .cc-hero-image-col {
        max-height: 400px;
    }

    .cc-technology-features,
    .cc-services-row,
    .cc-advisors-stats,
    .cc-partners-logos-box,
    .cc-why-partner-cards {
        grid-template-columns: repeat(2, 1fr);
        flex-wrap: wrap;
    }

    .cc-why-partner-cards .cc-why-card {
        flex: 0 0 50%;
        min-height: 250px;
    }

    .cc-founder-cards {
        flex-direction: column;
        max-width: 500px;
    }

    .cc-founder-image-card {
        flex: none;
        min-height: 280px;
    }

    /* Bento Grids to 2 Columns */
    .cc-bento-grid,
    .cc-mission-bento {
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto !important;
        height: auto !important;
    }

    .cc-bento-grid>div,
    .cc-mission-bento>div {
        grid-column: auto !important;
        grid-row: auto !important;
        height: auto !important;
        min-height: 200px;
        margin: 0 !important;
    }

    /* Services bento must collapse to single column on tablet/mobile */
    .cc-services-slide .cc-bento-grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
    }

    .cc-services-slide .cc-bento-grid>div {
        grid-area: auto !important;
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        width: 100%;
        min-width: 0;
    }

    /* Spans for 2-col */
    .care-navigation .bento-4,
    .clinical-network .bento-5,
    .physician-care .bento-4,
    .slide-1 .item-5,
    .slide-2 .item-5,
    .slide-5 .item-5 {
        grid-column: span 2 !important;
    }

    /* Keep service slides single-column even for blocks that previously spanned 2 columns */
    .cc-services-slide .care-navigation .bento-4,
    .cc-services-slide .clinical-network .bento-5,
    .cc-services-slide .physician-care .bento-4,
    .cc-services-slide .mental-health .bento-5 {
        grid-column: 1 / -1 !important;
        margin-top: 0 !important;
        margin-left: 0 !important;
    }
}

@media (max-width: 768px) {

    /* Mobile */
    :root {
        --pad-page-h: 20px;
        --fz-h2: 30px;
    }

    .cc-top-bar {
        padding: 16px var(--pad-page-h);
    }

    .cc-nav {
        padding-block: 12px;
        padding-inline: clamp(24px, 5.8vw, 32px);
        min-height: 72px;
    }

    .cc-nav-logo-img {
        width: clamp(150px, 50vw, 220px);
        height: auto;
    }

    .cc-hero {
        padding: 20px var(--pad-page-h);
    }

    .cc-hero-card {
        padding: 25px 20px;
    }

    .cc-mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .cc-nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 8px clamp(24px, 5.8vw, 32px) 16px;
        background: var(--c-dark);
        border-top: 1px solid rgba(181, 255, 220, 0.2);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
        z-index: 1001;
    }

    .cc-nav-menu.active {
        display: flex;
    }

    .cc-nav-menu>li {
        width: 100%;
        position: relative;
    }

    .cc-nav-menu>li>a {
        padding: 12px 0 !important;
        font-size: 16px;
        line-height: 1.35;
        border-bottom: 1px solid rgba(156, 163, 175, 0.24);
        white-space: normal;
    }

    .cc-nav-menu>li:last-child>a {
        border-bottom: 0;
    }

    .cc-nav-menu li a.glink {
        padding: 12px 0 !important;
    }

    .cc-nav-menu>li.cc-nav-translate {
        padding: 12px 0;
        border-bottom: 1px solid rgba(156, 163, 175, 0.24);
    }

    .cc-nav-menu>li.cc-nav-translate:last-child {
        border-bottom: 0;
    }

    .cc-nav-translate .gtranslate_wrapper {
        width: 100%;
        flex-wrap: wrap;
        gap: 8px;
    }

    .cc-nav-menu .sub-menu {
        display: block;
        position: static;
        top: auto;
        left: auto;
        transform: none;
        min-width: 0;
        margin: 0 0 6px;
        padding: 0 0 0 12px;
        box-shadow: none;
        border-radius: 0;
        background: transparent;
    }

    .cc-nav-menu .sub-menu::before {
        display: none;
    }

    .cc-nav-menu .sub-menu li a {
        padding: 10px 0;
        font-size: 14px;
        white-space: normal;
        color: #d1d5db !important;
    }

    .cc-hero-card h1 {
        font-size: 24px;
    }

    .cc-technology-features,
    .cc-services-row,
    .cc-waittime-container,
    .cc-waittime-stats,
    .cc-virtual-care-features,
    .cc-about-hero,
    .cc-founder-cards,
    .cc-advisors-grid,
    .cc-partners-row,
    .cc-contact-container,
    .cc-footer-columns,
    .cc-why-partner-cards {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .cc-why-partner-cards .cc-why-card {
        flex: 0 0 100%;
    }

    /* Bento Grids to 1 Column */
    .cc-bento-grid,
    .cc-mission-bento {
        grid-template-columns: 1fr !important;
    }

    .cc-mission-bento {
        display: flex !important;
        flex-direction: column;
    }

    .cc-bento-grid>div,
    .cc-mission-bento>div {
        grid-area: auto !important;
        grid-column: auto !important;
        grid-row: auto !important;
        min-height: auto;
        height: auto;
    }

    .cc-services-slide .cc-bento-grid>div {
        grid-column: 1 / -1 !important;
        grid-row: auto !important;
        width: 100%;
        min-width: 0;
    }

    .cc-services-slide .cc-bento-text p {
        overflow-wrap: break-word;
        word-break: normal;
    }

    .cc-virtual-care {
        padding: 30px 20px;
    }

    .cc-virtual-care-features {
        width: 100%;
        align-items: center;
        justify-content: flex-start;
        gap: 34px;
    }

    .cc-virtual-care-feature {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }

    .cc-virtual-care-feature img {
        display: block;
        margin: 0 auto 16px;
    }

    .cc-virtual-care-feature h4 {
        text-align: center;
    }

    .cc-slider-controls {
        margin-top: 14px;
        margin-bottom: 28px;
    }

    .cc-slider-arrow {
        width: 42px;
        height: 42px;
    }

    .cc-bento-stat,
    .cc-bento-stat-wide,
    .cc-bento-content,
    .cc-bento-image {
        min-height: 220px;
        /* Ensure visual consistency but allow growth */
    }

    /* Text sizing adjustments */
    .cc-technology h2,
    .cc-services-header h2,
    .cc-mission-section h2,
    .cc-contact-form h3 {
        font-size: 28px;
    }

    .cc-contact-info {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .cc-contact {
        padding: 40px var(--pad-page-h);
    }

    .cc-contact-form {
        padding: 36px 20px;
    }

    .cc-contact-form .wpcf7-form-control-wrap.recaptcha {
        display: flex;
        justify-content: center;
        max-width: 100%;
        overflow: hidden;
        margin-top: 8px;
    }

    .cc-contact-form .wpcf7-form-control-wrap.recaptcha .g-recaptcha>div {
        margin: 0 auto;
    }

    .cc-footer-emergency,
    .cc-footer-copyright {
        margin: 0 20px 30px;
    }
}

@media (max-width: 430px) {
    .cc-contact-form .wpcf7-form-control-wrap.recaptcha {
        min-height: 74px;
    }

    .cc-contact-form .wpcf7-form-control-wrap.recaptcha .g-recaptcha>div {
        transform: scale(0.94);
        transform-origin: center top;
    }
}
