/* ============================================================
   ZONE B — CLINICAL NUTRITION (mealuga™)
   /assets/css/zones/zone-b.css
   ============================================================ */

/* ============================================================
   HERO — Clinical Landing
   ============================================================ */
.hero-clinical {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #F8FAFC;
}

.hero-clinical-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.hero-clinical-background .hero-clinical-image {
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-clinical-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg,
        rgba(27,79,114,0.85) 0%,
        rgba(27,79,114,0.5) 60%,
        rgba(27,79,114,0.1) 100%
    );
    z-index: 1;
}

.hero-clinical-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 80px 0;
}

/* ✅ UPDATED: mealuga brand — 36px, bold (matches CRENA) */
.hero-clinical-content .hero-brand-mealuga {
    font-family: var(--font-brand, 'Comfortaa', sans-serif);
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-transform: lowercase;
    display: block;
    margin-bottom: 4px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero-clinical-headline {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-clinical-headline br { display: block; }

.hero-clinical-subheadline {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 600px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.15);
}

.hero-clinical-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-clinical-actions .btn-primary {
    background: #1B4F72;
    color: #FFFFFF;
}
.hero-clinical-actions .btn-primary:hover {
    background: #123A55;
    transform: translateY(-2px);
}

.hero-clinical-actions .btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}
.hero-clinical-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ============================================================
   CLINICAL PHILOSOPHY (4-Column)
   ============================================================ */
.clinical-philosophy {
    padding: var(--section-padding);
    background: #F8FAFC;
}

.clinical-philosophy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--card-gap);
    margin-top: 40px;
}

.clinical-philosophy-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-top: 3px solid #1B4F72;
}
.clinical-philosophy-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.clinical-philosophy-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(27,79,114,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.clinical-philosophy-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #003366;
    margin-bottom: 2px;
}

.clinical-philosophy-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #1B4F72;
    margin-bottom: 8px;
}

.clinical-philosophy-description {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--brand-slate);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   CLINICAL PORTFOLIO (3-Column)
   ============================================================ */
.clinical-portfolio {
    padding: var(--section-padding);
    background: var(--bg-warm-white);
}

.clinical-portfolio-section { margin-bottom: 60px; }
.clinical-portfolio-section:last-child { margin-bottom: 0; }

.clinical-portfolio-section-header { margin-bottom: 20px; }

.clinical-portfolio-section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: #003366;
    margin: 0;
}

.clinical-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--card-gap);
}

.clinical-portfolio-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(27,79,114,0.08);
}
.clinical-portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.clinical-portfolio-card.clinical-portfolio-card-pediatric {
    border-color: rgba(27,79,114,0.2);
    background: rgba(27,79,114,0.02);
}

.clinical-portfolio-pediatric-badge {
    display: inline-block;
    background: #1B4F72;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 12px;
    border-radius: 50px;
    margin-bottom: 6px;
}

.clinical-portfolio-product-image-wrap { margin-bottom: 12px; }

.clinical-portfolio-product-image {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.06));
    transition: var(--transition-smooth);
}
.clinical-portfolio-card:hover .clinical-portfolio-product-image { transform: scale(1.03); }

.clinical-portfolio-product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex-grow: 1;
}

.clinical-portfolio-product-name {
    font-family: var(--font-brand, 'Comfortaa', sans-serif);
    font-size: 22px;
    font-weight: 600;
    color: #1B4F72;
    margin: 0;
}

.clinical-portfolio-product-subtitle {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-slate);
    margin: 2px 0 8px;
}

.clinical-portfolio-product-description {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--brand-slate);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 12px;
}

.clinical-portfolio-formats {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.format-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    color: #1B4F72;
    background: rgba(27,79,114,0.08);
    padding: 2px 10px;
    border-radius: 50px;
}

.clinical-portfolio-disclaimer {
    font-family: var(--font-body);
    font-size: 11px;
    color: #1B4F72;
    font-weight: 600;
    background: rgba(27,79,114,0.06);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.clinical-portfolio-card .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   HCP GATEWAY
   ============================================================ */
.hcp-gateway {
    padding: var(--section-padding);
    background: #003366;
    color: #FFFFFF;
}

.hcp-gateway-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hcp-gateway-icon { margin-bottom: 16px; }

.hcp-gateway-headline {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.hcp-gateway-subheadline {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hcp-gateway-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hcp-gateway-actions .btn-primary {
    background: #1B4F72;
    color: #FFFFFF;
}
.hcp-gateway-actions .btn-primary:hover { background: #123A55; }

.hcp-gateway-actions .btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.3);
}
.hcp-gateway-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.5);
}

.hcp-gateway-alternative {
    font-family: var(--font-body);
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin: 0;
}
.hcp-gateway-alternative a {
    color: #2E86C1;
    text-decoration: none;
}
.hcp-gateway-alternative a:hover { text-decoration: underline; }

/* ============================================================
   MANDATORY BANNER (Clinical Products)
   ============================================================ */
.mandatory-banner {
    background: #FFF8E7;
    border-left: 4px solid #D4A574;
    padding: 12px 0;
}

.mandatory-banner-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mandatory-banner-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.mandatory-banner-text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: #003366;
    margin: 0;
}
.mandatory-banner-text strong { color: #1B4F72; }

/* ============================================================
   CLINICAL PRODUCT HERO
   ============================================================ */
.hero-clinical-product {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #F8FAFC;
}

.hero-clinical-product-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
}
.hero-clinical-product-background .hero-clinical-product-image {
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-clinical-product-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg,
        rgba(27,79,114,0.85) 0%,
        rgba(27,79,114,0.5) 60%,
        rgba(27,79,114,0.1) 100%
    );
    z-index: 1;
}

.hero-clinical-product-image-wrap {
    position: absolute;
    right: 8%;
    bottom: 10%;
    z-index: 1;
}

/* ✅ UPDATED: Clinical tin enlarged + zoom */
.hero-clinical-product-image-wrap .hero-clinical-product-tin {
    max-width: 320px;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.12));
    cursor: zoom-in;
    transition: transform 0.3s ease;
}
.hero-clinical-product-image-wrap .hero-clinical-product-tin:hover {
    transform: scale(1.05);
}

.hero-clinical-product-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 60px 0;
}

/* ✅ UPDATED: mealuga badge — 36px, bold (matches CRENA) */
.hero-clinical-product-badge {
    font-family: var(--font-brand, 'Comfortaa', sans-serif);
    font-size: 36px;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 1px;
    text-transform: lowercase;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.hero-clinical-product-badge sup {
    font-size: 18px;
    top: -14px;
}

.hero-clinical-product-headline {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.hero-clinical-product-headline br { display: block; }

.hero-clinical-product-subheadline {
    font-family: var(--font-body);
    font-size: 17px;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 600px;
    text-shadow: 0 1px 10px rgba(0,0,0,0.15);
}

.hero-clinical-product-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-clinical-product-actions .btn-primary {
    background: #1B4F72;
    color: #FFFFFF;
}
.hero-clinical-product-actions .btn-primary:hover {
    background: #123A55;
    transform: translateY(-2px);
}

.hero-clinical-product-actions .btn-secondary {
    background: transparent;
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.3);
}
.hero-clinical-product-actions .btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: #FFFFFF;
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

/* ============================================================
   CORE CLINICAL BENEFITS (4-Column)
   ============================================================ */
.clinical-benefits { margin-top: 40px; }

.clinical-benefits-headline {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: #003366;
    text-align: center;
    margin-bottom: 32px;
}

.clinical-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--card-gap);
}

.clinical-benefit-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border-top: 3px solid #1B4F72;
}
.clinical-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.clinical-benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(27,79,114,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.clinical-benefit-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: #003366;
    margin-bottom: 6px;
}

.clinical-benefit-description {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--brand-slate);
    line-height: 1.5;
    margin: 0;
}

/* ============================================================
   CLINICAL FLAVORS (3/4-Column)
   ============================================================ */
.clinical-flavors {
    padding: var(--section-padding);
    background: #F8FAFC;
}

.clinical-flavors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--card-gap);
    margin-top: 40px;
}

.clinical-flavors-grid-4 { grid-template-columns: repeat(4, 1fr); }

.clinical-flavor-card {
    background: var(--bg-card);
    border-radius: var(--radius-card);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    border: 1px solid rgba(27,79,114,0.08);
}
.clinical-flavor-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.clinical-flavor-image-wrap {
    margin-bottom: 12px;
}
.clinical-flavor-image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto;
    display: block;
    border: 2px solid rgba(27,79,114,0.1);
}

.clinical-flavor-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.clinical-flavor-name {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: #003366;
    margin-bottom: 4px;
}

.clinical-flavor-description {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--brand-slate);
    line-height: 1.5;
    margin: 0;
}

/* ============================================================
   PEDIATRIC BADGE (Hero)
   ============================================================ */
.pediatric-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    background: #1B4F72;
    color: #FFFFFF;
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.pediatric-badge .pediatric-badge-icon { font-size: 16px; }

/* ============================================================
   RESPONSIVE — Zone B
   ============================================================ */
@media (max-width: 1024px) {
    .clinical-philosophy-grid { grid-template-columns: repeat(2, 1fr); }
    .clinical-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-clinical-headline { font-size: 36px; }
    .clinical-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .clinical-flavors-grid { grid-template-columns: repeat(2, 1fr); }
    .clinical-flavors-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .hero-clinical-product-headline { font-size: 32px; }
    .hero-clinical-product-image-wrap .hero-clinical-product-tin { max-width: 250px; }
}

@media (max-width: 768px) {
    .clinical-philosophy-grid { grid-template-columns: 1fr; }
    .clinical-portfolio-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-clinical { min-height: 60vh; }
    .hero-clinical-content { padding: 40px 0; }
    .hero-clinical-headline { font-size: 28px; }
    .hero-clinical-subheadline { font-size: 16px; }
    .hero-clinical-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-clinical-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-clinical-overlay {
        background: linear-gradient(135deg,
            rgba(27,79,114,0.9) 0%,
            rgba(27,79,114,0.6) 100%
        );
    }

    /* ✅ UPDATED: mealuga brand on mobile */
    .hero-clinical-content .hero-brand-mealuga {
        font-size: 28px;
    }

    .hcp-gateway-headline { font-size: 26px; }
    .hcp-gateway-subheadline { font-size: 16px; }
    .hcp-gateway-actions {
        flex-direction: column;
    }
    .hcp-gateway-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .clinical-benefits-grid { grid-template-columns: 1fr; }
    .clinical-flavors-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .clinical-flavors-grid-4 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-clinical-product { min-height: 50vh; }
    .hero-clinical-product-content { padding: 40px 0; }
    .hero-clinical-product-headline { font-size: 28px; }
    .hero-clinical-product-subheadline { font-size: 15px; }
    .hero-clinical-product-image-wrap { display: none; }
    .hero-clinical-product-overlay {
        background: linear-gradient(135deg,
            rgba(27,79,114,0.9) 0%,
            rgba(27,79,114,0.6) 100%
        );
    }
    .hero-clinical-product-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-clinical-product-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* ✅ UPDATED: mealuga product badge on mobile */
    .hero-clinical-product-badge {
        font-size: 28px;
    }
    .hero-clinical-product-badge sup {
        font-size: 14px;
        top: -10px;
    }

    .clinical-benefits-headline { font-size: 22px; }
    .mandatory-banner-text { font-size: 13px; }

    .pediatric-badge {
        top: 12px;
        right: 12px;
        font-size: 11px;
        padding: 4px 12px;
    }
}

@media (max-width: 480px) {
    .hero-clinical-headline { font-size: 24px; }
    .clinical-portfolio-section-title { font-size: 22px; }
    .clinical-portfolio-product-name { font-size: 18px; }
    .hcp-gateway-headline { font-size: 22px; }
    .hero-clinical-product-headline { font-size: 24px; }

    .hero-clinical-content .hero-brand-mealuga {
        font-size: 24px;
    }
    .hero-clinical-product-badge {
        font-size: 24px;
    }
    .hero-clinical-product-badge sup {
        font-size: 12px;
        top: -8px;
    }
}

/* ============================================================
   PRODUCT NAVIGATION (Sticky)
   ============================================================ */
.product-navigation.sticky-nav {
    position: sticky;
    top: 80px;
    z-index: 40;
    background: #FFFFFF;
    border-bottom: 1px solid #E8ECF0;
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.product-nav-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.product-nav-label {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 13px;
    font-weight: 600;
    color: #415A77;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-nav-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-nav-link {
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 14px;
    font-weight: 500;
    color: #415A77;
    padding: 6px 14px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.product-nav-link:hover {
    background: rgba(27,79,114,0.06);
    color: #1B4F72;
}

.product-nav-link.active {
    background: #1B4F72;
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .product-navigation.sticky-nav {
        top: 70px;
        padding: 8px 0;
    }
    .product-nav-wrapper {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    .product-nav-links {
        gap: 4px;
    }
    .product-nav-link {
        font-size: 12px;
        padding: 4px 10px;
    }
}

/* ============================================================
   CLINICAL FLAVORS GRID — 3 and 4 Columns
   ============================================================ */
.clinical-flavors-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--card-gap, 24px);
    margin-top: 40px;
}

.clinical-flavors-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--card-gap, 24px);
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .clinical-flavors-grid-3,
    .clinical-flavors-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .clinical-flavors-grid-3,
    .clinical-flavors-grid-4 {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }
}

/* ============================================================
   CLINICAL HERO — Mobile Overlay Fix
   ============================================================ */
@media (max-width: 768px) {
    .hero-clinical-product-overlay {
        background: linear-gradient(135deg,
            rgba(27,79,114,0.9) 0%,
            rgba(27,79,114,0.6) 100%
        );
    }
}

/* ============================================================
   CLINICAL HERO — Sub-Brand Styling
   ============================================================ */
.hero-clinical-product-headline {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 38px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-sub-brand {
    display: block;
    font-family: var(--font-brand, 'Comfortaa', sans-serif);
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
    margin-bottom: 4px;
}

.hero-sub-tagline {
    display: block;
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 32px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

/* Product-specific accent colors for sub-brand - Matching Tin Colors */
.hero-clinical-product.densipro .hero-sub-brand {
    color: #74d8e4;  /* DensiPRO - Teal/Cyan */
}
.hero-clinical-product.hepapro .hero-sub-brand {
    color: #e0d3c7;  /* HepaPRO - Gold/Amber */
}
.hero-clinical-product.nephropro .hero-sub-brand {
    color: #dbdfb9;  /* NephroPRO - Sage Green */
}
.hero-clinical-product.nutripro .hero-sub-brand {
    color: #e0e7ea;  /* NutriPRO - Orange/Amber */
}
.hero-clinical-product.oncopro .hero-sub-brand {
    color: #e8acc2;  /* OncoPRO - Berry/Pink */
}
.hero-clinical-product.nutriped .hero-sub-brand {
    color: #8ab88e;  /* NutriPed - Soft Green */
}

@media (max-width: 768px) {
    .hero-clinical-product-headline {
        font-size: 28px;
    }
    .hero-sub-brand {
        font-size: 36px;
    }
    .hero-sub-tagline {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-clinical-product-headline {
        font-size: 22px;
    }
    .hero-sub-brand {
        font-size: 28px;
    }
    .hero-sub-tagline {
        font-size: 18px;
    }
}