#hc-kardes-uyum {
    max-width: 740px;
    margin: 24px auto;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #1e293b;
}

#hc-kardes-uyum .hc-header {
    text-align: center;
    margin-bottom: 22px;
}

#hc-kardes-uyum .hc-header h3 {
    margin: 0 0 6px 0;
    color: #0f172a;
    font-size: 22px;
    font-weight: 800;
}

#hc-kardes-uyum .hc-subtitle {
    margin: 0;
    color: #64748b;
    font-size: 14px;
}

.hc-kar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 18px;
}

#hc-ku-result {
    display: none;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 2px dashed #cbd5e1;
}

#hc-ku-result.visible {
    display: block;
    animation: hcFadeIn 0.3s ease-out;
}

@keyframes hcFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.hc-kar-hero-card {
    background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 100%);
    border: 2px solid #fde68a;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    margin-bottom: 18px;
}

.hc-kar-hero-badge {
    display: inline-block;
    padding: 4px 12px;
    background: #d97706;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 8px;
}

.hc-kar-hero-title {
    font-size: 24px;
    font-weight: 800;
    color: #92400e;
    margin-bottom: 6px;
}

.hc-kar-hero-sub {
    margin: 0;
    font-size: 13px;
    color: #b45309;
    font-weight: 600;
}

.hc-kar-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 18px;
}

.hc-kar-sec-title {
    margin: 0 0 14px 0;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
}

.hc-kar-dim-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hc-kar-dim-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 10px 14px;
}

.hc-kar-dim-head {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
}

.hc-kar-dim-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.hc-kar-dim-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.5s ease-out;
}

.hc-result-content p {
    margin: 0 0 8px 0;
    font-size: 13px;
    line-height: 1.6;
    color: #334155;
}

.hc-result-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 650px) {
    .hc-kar-grid {
        grid-template-columns: 1fr;
    }
}

