.why-work-section {
    position: relative;
    overflow: hidden;
    background:
    radial-gradient(1200px 600px at 80% -10%, rgba(34, 211, 238, .2), transparent 60%),
    var(--bg);
}

.why-work-section h2 {
    color: var(--text);
}


.why-work-section > .container {
    position: relative;
    z-index: 1;
}

/* KVP card styling */
.kvp-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
    padding: 22px 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35),
        inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(6px);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.kvp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.7);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.55),
    0 0 30px rgba(34, 211, 238, 0.30);
}

.kvp-key {
    font-weight: 800;
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--text);
}

.kvp-val {
    color: var(--text-dim);
    font-size: 14px;
    line-height: 1.6;
}
