.value-pillars {
    background: var(--theme-palette-color-9, #F0EEEA);
    padding: 100px 40px;
    margin-bottom: 0;
}

.value-pillars__inner {
    max-width: 960px;
    margin: 0 auto;
}

.value-pillars__label {
    font-family: var(--fw-font-mono, 'JetBrains Mono', monospace);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    color: var(--theme-palette-color-1, #C8922A);
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 12px;
}

.value-pillars__title {
    font-family: var(--fw-font-serif, 'Lora', Georgia, serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 16px;
    max-width: 600px;
    color: var(--theme-palette-color-3, #2D2D2D);
}

.value-pillars__desc {
    font-size: 1rem;
    color: var(--fw-text-secondary, #777777);
    line-height: 1.7;
    max-width: 540px;
    margin-bottom: 48px;
}

.value-pillars__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-pillars__card {
    padding: 32px;
    background: var(--theme-palette-color-7, #FAF9F6);
    border: 1px solid var(--fw-border, #E5E3DF);
    border-radius: 10px;
    transition: border-color 0.2s ease;
}

.value-pillars__card:hover {
    border-color: var(--theme-palette-color-1, #C8922A);
}

.value-pillars__num {
    font-family: var(--fw-font-mono, 'JetBrains Mono', monospace);
    font-size: 0.65rem;
    color: var(--theme-palette-color-1, #C8922A);
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.value-pillars__card-title {
    font-family: var(--fw-font-serif, 'Lora', Georgia, serif);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--theme-palette-color-3, #2D2D2D);
}

.value-pillars__card-desc {
    font-size: 0.85rem;
    color: var(--fw-text-secondary, #777777);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .value-pillars {
        padding: 64px 20px;
    }

    .value-pillars__grid {
        grid-template-columns: 1fr;
    }
}
