
.binary-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
    gap: 30px;
    padding: 100px 5%;
}

.glow-card {
    background: linear-gradient(180deg, rgba(15, 28, 63, 0.9) 0%, rgba(5, 11, 26, 0.95) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 40px;
    width: 350px;
    border-radius: 24px;
    color: #cbd5e1;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}


.glow-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.glow-card:hover::before {
    opacity: 1;
}

.glow-card:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 212, 255, 0.6);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.glow-card h2 {
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: 2px; 
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}


.glow-card h2::after {
    content: "";
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, transparent);
}

.glow-card p {
    text-align: justify;
    text-justify: inter-word;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #94a3b8;
}
.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    padding: 14px 0;
    font-size: var(--list-text-size);
    display: flex; 
    align-items: flex-start; 
    line-height: 1.6;
    color: #94a3b8;
    transition: 0.3s;
    

    text-align: justify;
    text-justify: inter-word;
    hyphens: auto; 
}


.values-list li:hover {
    color: #fff;
    padding-left: 5px;
}