/* ===== HEALTHCARE HERO ===== */
.hc-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a1628 0%, #12293d 40%, #1a4a5e 100%);
    overflow: hidden;
}
.hc-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 160%;
    background: radial-gradient(ellipse, rgba(91,164,181,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hc-hero-content {
    position: relative;
    z-index: 2;
    padding-top: 72px;
    max-width: 800px;
}
.hc-hero-badge {
    display: inline-block;
    background: rgba(91,164,181,0.15);
    border: 1px solid rgba(91,164,181,0.3);
    color: var(--teal-light);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hc-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
}
.hc-hero-sub {
    font-size: 18px;
    color: var(--sky);
    font-weight: 500;
    margin-bottom: 16px;
}
.hc-hero-desc {
    font-size: 16px;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 36px;
}

/* ===== STATS 4-COL ===== */
.stats-bar .stats-grid {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 768px) {
    .stats-bar .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .stats-bar .stats-grid { grid-template-columns: 1fr; }
}

/* ===== SECTION HELPERS ===== */
.section-subtitle-hc {
    text-align: center;
    color: var(--gray-500);
    font-size: 17px;
    max-width: 760px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

/* ===== QUOTE ===== */
.hc-quote {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, #1e3a4a 100%);
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    margin-bottom: 48px;
    text-align: center;
}
.hc-quote blockquote {
    font-family: var(--font-display);
    font-size: 19px;
    font-style: italic;
    color: var(--white);
    line-height: 1.6;
    margin-bottom: 12px;
}
.hc-quote cite {
    font-size: 14px;
    color: var(--sky-light);
    font-style: normal;
}

/* ===== REASONS GRID ===== */
.hc-subsection-title {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 24px;
}
.hc-reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.hc-reason {
    display: flex;
    gap: 14px;
    align-items: start;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    transition: transform 0.2s, box-shadow 0.2s;
}
.hc-reason:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.hc-reason-icon {
    width: 36px;
    height: 36px;
    color: var(--teal);
    flex-shrink: 0;
}
.hc-reason-icon svg { width: 100%; height: 100%; }
.hc-reason p { font-size: 14px; line-height: 1.6; color: var(--gray-700); }
.hc-reason strong { color: var(--navy); }

/* ===== FACILITY TYPES ===== */
.hc-decision-intro {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 16px;
}
.hc-facility-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.hc-facility {
    padding: 14px 16px;
    background: var(--gray-50);
    border-left: 3px solid var(--teal);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
}

/* ===== SERVICES ===== */
.hc-services {
    background: var(--gray-50);
}
.hc-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.hc-service-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--teal);
    transition: transform 0.3s, box-shadow 0.3s;
}
.hc-service-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.hc-service-icon {
    width: 36px;
    height: 36px;
    color: var(--teal);
    margin-bottom: 12px;
}
.hc-service-icon svg { width: 100%; height: 100%; }
.hc-service-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 8px;
}
.hc-service-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-500);
    margin-bottom: 12px;
}
.hc-service-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--teal);
    font-weight: 600;
    padding-top: 12px;
    border-top: 1px solid var(--gray-100);
}

/* ===== COMPLIANCE ===== */
.hc-compliance {
    background: var(--white);
}
.hc-compliance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}
.hc-compliance-item {
    display: flex;
    gap: 16px;
    align-items: start;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}
.hc-check {
    width: 32px;
    height: 32px;
    background: #d1fae5;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hc-check svg { width: 18px; height: 18px; }
.hc-compliance-item h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}
.hc-compliance-item p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.55;
}

/* ===== ON-SITE BOX ===== */
.hc-onsite-box {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    border-radius: var(--radius-lg);
    padding: 36px;
}
.hc-onsite-box h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
}
.hc-onsite-box > p {
    font-size: 15px;
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 20px;
}
.hc-onsite-box ul {
    list-style: none;
    padding: 0;
}
.hc-onsite-box li {
    font-size: 14px;
    color: var(--sky-light);
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hc-onsite-box li:last-child { border-bottom: none; }
.hc-onsite-box li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 10px;
    height: 10px;
    background: var(--teal-light);
    border-radius: 50%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hc-reasons-grid { grid-template-columns: 1fr; }
    .hc-facility-types { grid-template-columns: 1fr; }
    .hc-services-grid { grid-template-columns: 1fr; }
    .hc-compliance-grid { grid-template-columns: 1fr; }
    .hc-quote { padding: 28px 24px; }
    .hc-onsite-box { padding: 24px; }
}
