/* =============================================================
   sempra.css — MAGNETOM Sempra page styles
   All styles extracted from inline <style> block.
   No font-family declarations. No animations. No transitions.
   ============================================================= */

/* ----------------------------------------------------------
   1. CSS VARIABLES
   ---------------------------------------------------------- */
:root {
    --c-blue:      #000064;
    --c-sky:       #00c9c9;
    --c-ink:       #0d0d2b;
    --c-mist:      #f0f7fb;
    --c-border:    rgba(0, 0, 100, 0.10);
    --c-text:      rgba(13, 13, 43, 0.70);
    --c-text-mute: rgba(13, 13, 43, 0.50);
    --c-text-dark: rgba(5, 5, 48, 0.70);

    --shadow-sm: 0 2px 8px rgba(0, 0, 100, 0.08);
    --shadow-md: 0 8px 32px rgba(0, 0, 100, 0.12);
    --shadow-lg: 0 24px 64px rgba(0, 0, 100, 0.16);

    --radius:    16px;
    --radius-sm: 10px;
    --sec-pad-y: 80px;
}

/* ----------------------------------------------------------
   2. SECTION BACKGROUNDS
   ---------------------------------------------------------- */
.s-white { background: #fff; }
.s-mist  { background: var(--c-mist); }
.s-light { background: #f8f9fa; }
.s-dark  { background: var(--c-ink); color: #fff; }

/* ----------------------------------------------------------
   3. SECTION PADDING
   ---------------------------------------------------------- */
.sec-pad { padding: var(--sec-pad-y) 0; }

/* ----------------------------------------------------------
   4. SECTION HEADING  (single reusable heading class)
   ---------------------------------------------------------- */
.section-heading {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--c-blue);
    margin-bottom: 0;
}

.section-heading--white { color: #fff; }

.heading-accent {
    color: var(--c-sky);
    font-style: italic;
}

/* ----------------------------------------------------------
   5. EYEBROW LABEL
   ---------------------------------------------------------- */
.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--c-sky);
    margin-bottom: 16px;
}

.eyebrow::before { content: '— '; }

/* ----------------------------------------------------------
   6. BODY / PARAGRAPH UTILITIES
   ---------------------------------------------------------- */
.body-text {
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--c-text);
}

.body-text--dark { color: var(--c-text-dark); }

.body-text--mute {
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 420px;
    color: rgba(255, 255, 255, 0.65);
}

.body-intro {
    max-width: 660px;
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--c-text);
}

/* ----------------------------------------------------------
   7. SECTION INTRO BLOCK
   ---------------------------------------------------------- */
.section-intro { margin-bottom: 3rem; }

/* ----------------------------------------------------------
   8. HERO
   ---------------------------------------------------------- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 100, .15);
    background: rgba(255, 255, 255, .7);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .10em;
    text-transform: uppercase;
    color: var(--c-blue);
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-sky);
}

.hero-title {
    color: var(--c-blue);
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: .95;
}

.hero-title em { color: var(--c-sky); font-style: italic; }

.hero-subtitle {
    margin-top: 16px;
    font-size: 1.15rem;
    color: var(--c-text-dark);
}

.hero-body {
    margin-top: 16px;
    max-width: 550px;
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--c-text-dark);
}

.hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-img-card img {
    width: 100%;
    scale: 1.3;
    border-radius: 24px;
    display: block;
}

/* ----------------------------------------------------------
   9. BUTTONS
   ---------------------------------------------------------- */
.btn-primary-pill {
    background: var(--c-blue);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    display: inline-block;
}

.btn-primary-pill:hover {
    background: var(--c-ink);
    color: #fff;
}

.btn-text-link {
    color: var(--c-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
}

.btn-text-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.btn-sky {
    background: var(--c-sky);
    color: var(--c-blue);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 12px 28px;
    border-radius: 99px;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-sky:hover {
    background: #fff;
    color: var(--c-blue);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 12px 28px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, .25);
    text-decoration: none;
    display: inline-block;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

/* ----------------------------------------------------------
   10. FEATURE OVERVIEW CARDS
   ---------------------------------------------------------- */
.feature-card {
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    padding: 32px 28px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 201, 201, 0.3);
}

.feature-card-num {
    position: absolute;
    top: 24px;
    right: 28px;
    font-size: 2.8rem;
    color: rgba(0, 0, 100, 0.05);
    line-height: 1;
    pointer-events: none;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 0, 100, .08), rgba(0, 201, 201, .12));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--c-blue);
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--c-blue);
    margin-bottom: 8px;
}

.feature-card-sub {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--c-sky);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 10px;
    display: block;
}

.feature-card p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--c-text);
    margin: 0;
}

/* ----------------------------------------------------------
   11. FEATURE BLOCKS (alternating image + copy rows)
   ---------------------------------------------------------- */
.feature-block { border-top: 1px solid rgba(0, 0, 0, .05); }

.feature-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-block-num {
    font-size: 2.6rem;
    color: var(--c-sky);
    line-height: 1;
}

.feature-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .20em;
    color: var(--c-text-mute);
}

.feature-title {
    margin-top: 1.25rem;
    font-size: clamp(1.3rem, 3vw, 1.75rem);
    line-height: 1.1;
    color: var(--c-blue);
}

.feature-body {
    margin-top: 1.25rem;
    max-width: 32rem;
    font-size: 0.875rem;
    line-height: 1.8;
    color: var(--c-text-dark);
}

.feature-bullets {
    margin-top: 1.75rem;
    list-style: none;
    padding: 0;
}

.feature-bullets li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    border-top: 1px solid rgba(0, 0, 0, .05);
    padding-top: .75rem;
    margin-top: .75rem;
    font-size: 0.85rem;
    color: rgba(5, 5, 48, .75);
}

.bullet-bar {
    margin-top: 6px;
    flex-shrink: 0;
    display: inline-block;
    width: 16px;
    height: 4px;
    border-radius: 9999px;
    background: var(--c-sky);
}

.feature-img-frame {
    border-radius: 1.5rem;
    overflow: hidden;
}

.feature-img-frame img {
    width: 100%;
    object-fit: contain;
    display: block;
}

/* ----------------------------------------------------------
   12. KEY BENEFITS
   ---------------------------------------------------------- */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid var(--c-border);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
}

.benefit-item:hover {
    box-shadow: var(--shadow-sm);
    border-color: rgba(0, 201, 201, 0.25);
}

.benefit-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 0, 100, .06), rgba(0, 201, 201, .10));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-blue);
    font-size: 0.95rem;
}

.benefit-item h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--c-blue);
    margin-bottom: 3px;
}

.benefit-item p {
    font-size: 0.8rem;
    line-height: 1.65;
    color: var(--c-text);
    margin: 0;
}

/* ----------------------------------------------------------
   13. CLINICAL SPECIALTIES
   ---------------------------------------------------------- */
.specialty-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin-bottom: 14px;
    cursor: default;
}

.specialty-card:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(0, 201, 201, 0.40);
}

.specialty-num {
    font-size: 1.8rem;
    color: var(--c-sky);
    flex-shrink: 0;
    min-width: 48px;
}

.specialty-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 3px;
}

.specialty-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, .60);
    margin: 0;
    line-height: 1.6;
}

.specialty-arrow {
    margin-left: auto;
    color: rgba(255, 255, 255, .25);
    font-size: 1rem;
}

.specialty-card:hover .specialty-arrow { color: var(--c-sky); }

.clinical-stat-divider {
    border-top: 1px solid rgba(255, 255, 255, .10);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
}

.clinical-stat-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: rgba(255, 255, 255, .40);
    margin-bottom: 4px;
}

.clinical-stat-value {
    font-size: 3rem;
    color: var(--c-sky);
    line-height: 1;
}

.clinical-stat-value span { font-size: 1.3rem; }

.clinical-stat-sub {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, .50);
}

/* ----------------------------------------------------------
   14. SPECIFICATIONS TABLE
   ---------------------------------------------------------- */
.specs-table {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--c-border);
}

.spec-row {
    display: flex;
    align-items: center;
    padding: 15px 22px;
    border-bottom: 1px solid var(--c-border);
}

.spec-row:last-child { border-bottom: none; }

.spec-row:hover { background: rgba(0, 201, 201, 0.04); }

.spec-k {
    flex: 0 0 45%;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--c-text-mute);
}

.spec-v {
    font-size: 1rem;
    color: var(--c-blue);
}

.specs-intro {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--c-text);
    max-width: 280px;
}

.specs-footnote {
    margin-top: .75rem;
    font-size: 11px;
    color: rgba(13, 13, 43, .45);
}

/* ----------------------------------------------------------
   15. CTA BOX
   ---------------------------------------------------------- */
.cta-box {
    background: linear-gradient(135deg, var(--c-blue) 0%, #001a8c 60%, #003399 100%);
    border-radius: var(--radius);
    padding: 52px 44px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(0, 201, 201, 0.20);
    filter: blur(80px);
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(199, 243, 243, 0.12);
    filter: blur(60px);
}

.cta-box h2 {
    font-size: clamp(1.7rem, 4vw, 2.5rem);
    color: #fff;
    position: relative;
    z-index: 1;
}

.cta-box h2 em { color: var(--c-sky); }

.cta-box p {
    color: rgba(255, 255, 255, .70);
    font-size: 0.875rem;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.cta-actions {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 28px;
}

/* ----------------------------------------------------------
   16. RESPONSIVE
   ---------------------------------------------------------- */
@media (max-width: 767px) {
    :root { --sec-pad-y: 52px; }

    .cta-box  { padding: 36px 22px; }
    .feature-card { padding: 26px 22px; }
    .body-text--mute { max-width: 100%; }
}