/* ============================= */
/* REDESIGNED ABOUT SECTION */
/* ============================= */

.about-section {
    padding: 100px 0;
    /* Soft gradient using your BG and a hint of your primary care green */
    background: radial-gradient(circle at 10% 20%, rgba(47, 143, 107, 0.05) 0%, var(--color-bg) 90%);
}

.badge-accent {
    background: rgba(47, 143, 107, 0.1); /* Primary Green at 10% opacity */
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: var(--radius-lg);
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-header { margin-bottom: 60px; }
.about-header h2 span { color: var(--color-primary); }

/* BENTO GRID LAYOUT */
.about-bento {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto;
    gap: 25px;
    margin-bottom: 60px;
}

.bento-card {
    background: var(--color-bg-soft);
    border: 1px solid var(--color-border);
    border-radius: 40px; /* Kept large for friendly UI */
    padding: 40px;
    transition: var(--transition-base);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.bento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: var(--color-accent);
}


/* Story Card (Left Large) */
.story-card {
    grid-row: span 2;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.expertise-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.expertise-tags span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.expertise-tags i {
    color: var(--color-success);
    width: 18px;
}

/* Stats Card (Top Right) - Uses Medical Blue */
/* Stats Card (Top Right) */
.stats-card {
    display: flex;
    align-items: center;
    gap: 25px;
    background: var(--color-secondary);
    /* We remove the global color: #fff so we can define it specifically below */
    border: none;
}

/* Target the text wrapper specifically */
.stat-text h4 {
    color: var(--color-bg-soft); /* Now uses your dark slate variable */
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-text p {
    color: var(--color-bg-soft); /* Now uses your dark slate variable */
    font-size: 0.9rem;
    line-height: 1.4;
    opacity: 0.9; /* Optional: makes it slightly softer if the contrast is too harsh */
}

/* Note: If the text is too dark against the blue, 
   consider changing the background to a lighter version:
   background: rgba(31, 93, 145, 0.1); 
*/


.stat-circle {
    min-width: 100px;
    height: 100px;
    border: 4px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-soft);
}

.stat-circle .number { font-size: 1.5rem; font-weight: 800; }
.stat-circle .label { font-size: 0.6rem; text-transform: uppercase; }

/* Identity Card (Bottom Right) */
.identity-card {
    background: rgba(31, 93, 145, 0.05); /* Secondary Blue at 5% opacity */
}

.identity-flex {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.identity-flex i { color: var(--color-secondary); width: 40px; height: 40px; }
.identity-flex h4 { color: var(--color-text); }

/* Values Pills */
.values-wrapper {
    text-align: center;
    padding-top: 40px;
}

.values-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.value-pill {
    background: var(--color-bg-soft);
    padding: 15px 35px;
    border-radius: 100px;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(241, 241, 241, 0.02);
    transition: var(--transition-fast);
}

.value-pill:hover {
    border-color: var(--color-primary);
}

.v-num {
    background: rgba(47, 143, 107, 0.1);
    color: var(--color-primary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}

.v-text { font-weight: 700; color: var(--color-text); }




