/* ==========================================
   CORE VALUES SECTION
   ========================================== */
.core-values {
    background: var(--color-white);
}

.core-values__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 400px) {
    .core-values__grid {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
}

@media (min-width: 768px) {
    .core-values__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.value-badge__hexagon {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-3);
    transition: transform var(--duration-normal) var(--ease-premium);
}

.value-badge:hover .value-badge__hexagon {
    transform: translateY(-8px);
}

/* Hexagon shape using clip-path */
.value-badge__hexagon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #7db070 0%, #4a7c40 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.value-badge:hover .value-badge__hexagon::before {
    background: linear-gradient(135deg, #8bc580 0%, #5a8c50 100%);
    box-shadow: 0 10px 30px rgba(74, 124, 64, 0.3);
}

.value-badge__number {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--text-base);
    font-weight: var(--font-bold);
    color: rgba(255, 255, 255, 0.95);
    background: rgba(26, 53, 24, 0.9);
    padding: 2px var(--space-2);
    border-radius: var(--radius-md);
    z-index: 2;
}

.value-badge__icon {
    position: relative;
    z-index: 1;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-badge__icon svg {
    width: 36px;
    height: 36px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.value-badge__title {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--color-gray-800);
    transition: color var(--duration-fast);
}

.value-badge:hover .value-badge__title {
    color: var(--color-primary-600);
}