@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600&family=DM+Sans:wght@300;400;500&display=swap');

.sc-about { font-family: 'DM Sans', sans-serif; }

/* HERO */
.sc-hero {
    background: linear-gradient(135deg, #f0faf7 0%, #e8f8f3 50%, #d4f2ea 100%);
    padding: 64px 40px 56px;
    position: relative;
    overflow: hidden;
}
.sc-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: rgba(15,168,132,0.07);
    pointer-events: none;
}
.sc-hero::after {
    content: '';
    position: absolute;
    bottom: -40px; left: 10%;
    width: 180px; height: 180px;
    border-radius: 50%;
    background: rgba(15,168,132,0.05);
    pointer-events: none;
}
.sc-hero-inner { max-width: 600px; position: relative; z-index: 1; }

.sc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #edfaf6;
    border: 1px solid #a8ddd4;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 12px;
    color: #0fa884;
    font-weight: 500;
    margin-bottom: 18px;
    letter-spacing: 0.3px;
}
.sc-eyebrow-dot {
    width: 6px; height: 6px;
    background: #0fa884;
    border-radius: 50%;
    animation: sc-pulse 2s infinite;
}
@keyframes sc-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.sc-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: #064d3a;
    line-height: 1.2;
    margin: 0 0 16px;
}
.sc-hero-title em { color: #0fa884; font-style: normal; }

.sc-hero-desc {
    font-size: 15px;
    color: #3a7a6e;
    line-height: 1.7;
    margin: 0 0 28px;
    font-weight: 300;
    max-width: 480px;
}
.sc-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.sc-btn-primary {
    background: #0fa884;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 11px 24px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.15s, transform 0.1s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
}
.sc-btn-primary:hover { background: #0b8f70; transform: translateY(-1px); color: #fff; text-decoration: none; }

.sc-btn-ghost {
    background: #fff;
    color: #0a7a60;
    border: 1.5px solid #a8ddd4;
    border-radius: 24px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.15s, background 0.15s;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
}
.sc-btn-ghost:hover { border-color: #0fa884; background: #edfaf6; color: #0a7a60; text-decoration: none; }

/* STATS */
.sc-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #c2e8e0;
    border-top: 1px solid #c2e8e0;
    border-bottom: 1px solid #c2e8e0;
}
.sc-stat { background: #fff; padding: 22px 28px; text-align: center; transition: background 0.15s; }
.sc-stat:hover { background: #f4fcfb; }
.sc-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    color: #0fa884;
    line-height: 1;
    margin-bottom: 5px;
}
.sc-stat-label { font-size: 12px; color: #7ab8ae; font-weight: 400; letter-spacing: 0.3px; }

/* SECTIONS */
.sc-section { padding: 52px 40px; }
.sc-section-alt { background: #f8fdfc; }
.sc-section-header { text-align: center; margin-bottom: 40px; }
.sc-section-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #0fa884;
    font-weight: 500;
    margin-bottom: 10px;
}
.sc-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #064d3a;
    margin: 0 0 10px;
    line-height: 1.3;
}
.sc-section-sub {
    font-size: 14px;
    color: #5a9e95;
    font-weight: 300;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
}

/* FEATURES */
.sc-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sc-feature-card {
    background: #fff;
    border: 1px solid #c2e8e0;
    border-radius: 13px;
    padding: 28px 22px;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    position: relative;
    overflow: hidden;
}
.sc-feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: #0fa884;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
}
.sc-feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(15,168,132,0.12); border-color: #a8ddd4; }
.sc-feature-card:hover::before { transform: scaleX(1); }
.sc-feature-icon {
    width: 44px; height: 44px;
    background: #edfaf6;
    border-radius: 11px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    font-size: 20px;
}
.sc-feature-title { font-size: 15px; font-weight: 500; color: #064d3a; margin: 0 0 8px; }
.sc-feature-desc { font-size: 13px; color: #5a9e95; line-height: 1.6; font-weight: 300; margin: 0; }

/* TEAM */
.sc-team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.sc-doctor-card {
    background: #fff;
    border: 1px solid #c2e8e0;
    border-radius: 13px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}
.sc-doctor-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(15,168,132,0.10); }
.sc-doctor-img {
    height: 140px;
    background: linear-gradient(135deg, #edfaf6 0%, #d4f2ea 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 52px;
}
.sc-doctor-info { padding: 16px 18px 20px; }
.sc-doctor-name { font-size: 15px; font-weight: 500; color: #064d3a; margin: 0 0 3px; }
.sc-doctor-role { font-size: 12px; color: #0fa884; font-weight: 400; margin: 0 0 12px; }
.sc-doctor-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.sc-tag {
    background: #edfaf6;
    border: 1px solid #a8ddd4;
    color: #0a7a60;
    font-size: 11px;
    border-radius: 20px;
    padding: 3px 9px;
    font-weight: 400;
}

/* VALUES */
.sc-values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.sc-value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e0f2ee;
    border-radius: 10px;
    transition: border-color 0.15s, background 0.15s;
}
.sc-value-item:hover { border-color: #a8ddd4; background: #f8fdfc; }
.sc-value-check {
    width: 30px; height: 30px; flex-shrink: 0;
    background: #edfaf6;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #0fa884;
    font-size: 14px;
    margin-top: 1px;
}
.sc-value-text-title { font-size: 14px; font-weight: 500; color: #064d3a; margin: 0 0 4px; }
.sc-value-text-desc { font-size: 13px; color: #5a9e95; font-weight: 300; line-height: 1.5; margin: 0; }

/* SPLIT */
.sc-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

/* CTA */
.sc-cta { background: #0fa884; padding: 48px 40px; text-align: center; }
.sc-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 10px;
}
.sc-cta-sub { font-size: 14px; color: rgba(255,255,255,0.80); font-weight: 300; margin: 0 0 24px; }
.sc-cta-btn {
    background: #fff;
    color: #0a7a60;
    border: none;
    border-radius: 24px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: background 0.15s, transform 0.1s;
    text-decoration: none;
    display: inline-block;
}
.sc-cta-btn:hover { background: #edfaf6; transform: translateY(-1px); color: #0a7a60; text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .sc-hero { padding: 40px 20px; }
    .sc-hero-title { font-size: 28px; }
    .sc-stats-row { grid-template-columns: 1fr; }
    .sc-features-grid { grid-template-columns: 1fr; }
    .sc-team-grid { grid-template-columns: 1fr; }
    .sc-values-grid { grid-template-columns: 1fr; }
    .sc-split { grid-template-columns: 1fr; }
    .sc-section { padding: 36px 20px; }
    .sc-cta { padding: 36px 20px; }
}
