.executive-health-wrapper {
    background: var(--clr-white);
    border-radius: 24px;
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
}

.executive-health-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--clr-line);
    padding-bottom: 1rem;
}

.executive-health-header h3 {
    color: var(--clr-primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.executive-health-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .executive-health-grid {
        grid-template-columns: 1fr;
    }
}

.input-section {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 16px;
}

.input-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--clr-dark-grey);
}

.form-input-group {
    margin-bottom: 1rem;
}

.form-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
}

.form-input-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-input-group input:focus {
    border-color: var(--clr-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(2, 128, 230, 0.1);
}

.result-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ratio-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ratio-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.ratio-value-box {
    min-width: 80px;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1f5f9;
    border: 4px solid #e2e8f0;
}

.ratio-num {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

.ratio-label-small {
    font-size: 0.65rem;
    font-weight: 500;
    color: #94a3b8;
    margin-top: 2px;
}

.ratio-info {
    flex: 1;
}

.ratio-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--clr-dark-grey);
}

.ratio-status {
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    padding: 2px 10px;
    border-radius: 100px;
    text-transform: uppercase;
}

/* Status Colors */
.status-optimal { color: #10b981; background: #ecfdf5; border: 1px solid #10b981; }
.status-borderline { color: #f59e0b; background: #fffbeb; border: 1px solid #f59e0b; }
.status-high { color: #ef4444; background: #fef2f2; border: 1px solid #ef4444; }

.ratio-card.status-optimal .ratio-value-box { border-color: #10b981; background: #f0fdf4; }
.ratio-card.status-borderline .ratio-value-box { border-color: #f59e0b; background: #fffbeb; }
.ratio-card.status-high .ratio-value-box { border-color: #ef4444; background: #fef2f2; }

.lipid-profile-table {
    margin-top: 2.5rem;
    background: #f8fafc;
    border-radius: 16px;
    padding: 1.5rem;
}

.lipid-profile-table h4 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.lipid-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 576px) {
    .lipid-row {
        grid-template-columns: 1fr;
    }
}

.lipid-item {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.lipid-name {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #475569;
}

.lipid-scale {
    height: 6px;
    background: #e2e8f0;
    border-radius: 100px;
    margin: 10px 0;
    position: relative;
    overflow: hidden;
}

.lipid-bar {
    height: 100%;
    width: 0%;
    transition: width 0.5s ease, background-color 0.5s ease;
}

.lipid-info-text {
    font-size: 0.75rem;
    color: #64748b;
    display: flex;
    justify-content: space-between;
}

.ratio-card-wrapper {
    margin-bottom: 1.5rem;
}

.ratio-description-box {
    background: #fff9db;
    border: 1.5px solid #fcc419;
    border-radius: 0 0 16px 16px;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #83640e;
    margin-top: -8px;
    position: relative;
    z-index: 1;
}

.ratio-card {
    position: relative;
    z-index: 2;
}

.recommendation-box {
    margin-top: 1.5rem;
    padding: 1.5rem;
    border-radius: 16px;
    color: #1a1a1a;
}

.recommendation-box h6 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.recommendation-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.recommendation-box a {
    font-weight: 700;
    text-decoration: underline;
    color: inherit;
}

.recommendation-box.res-risk {
    background: #ffa94d;
    border: 2px solid #fd7e14;
}

.recommendation-box.res-optimal {
    background: #8ce99a;
    border: 2px solid #51cf66;
}

.gender-selection-group {
    margin-bottom: 1.5rem;
}

.gender-selection-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #444;
}

.gender-options {
    display: flex;
    gap: 1rem;
}

.gender-option {
    flex: 1;
    cursor: pointer;
    margin-bottom: 0 !important;
}

.gender-option input {
    display: none;
}

.gender-btn {
    padding: 0.8rem;
    text-align: center;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-weight: 700;
    color: #adb5bd;
    transition: all 0.2s ease;
}

.gender-option input:checked + .gender-btn {
    background: #e7f5ff;
    border-color: #0280e6;
    color: #0280e6;
}

.gender-option input#eh-female:checked + .gender-btn {
    background: #fff0f6;
    border-color: #d63384;
    color: #d63384;
}

.result-section-full {
    background: white;
    padding: 2rem;
    border-radius: 20px;
}

.ratios-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (max-width: 991px) {
    .ratios-row {
        grid-template-columns: 1fr;
    }
}

.premium-info-box {
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #0280e6 0%, #0056b3 100%);
    color: white;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.premium-info-box::after {
    content: '';
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.premium-info-box h5 {
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.premium-info-box p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.9;
}
