/* ====================================================
   OUR VALUES  —  st-ov
==================================================== */

.st-ov {
    background: transparent;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    overflow: hidden;
    padding: 0;
}

/* ── Subtle background glow ── */
.st-ov-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 20%, var(--accent-ghost) 0%, transparent 65%);
    pointer-events: none;
}

.st-ov-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5vw;
    position: relative;
    z-index: 2;
}

/* ── Header ── */
.st-ov-header {
    text-align: center;
    margin-bottom: 72px;
}

.st-ov-label {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.st-ov-label::before,
.st-ov-label::after {
    content: '';
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--color-primary);
    flex-shrink: 0;
}

.st-ov-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    margin: 0 0 24px;
}

.st-ov-subtitle {
    font-family: var(--font-text);
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--text-desc);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Values Grid ── */
.st-ov-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ── Card ── */
.st-ov-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 6px;
    padding: 40px 32px 36px;
    position: relative;
    overflow: hidden;
    cursor: default;
    opacity: 0;
    transform: translateY(50px);
    transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s ease;
}
.st-ov-card:hover {
    border-color: var(--hover-border);
    background: var(--bg-card-hover);
    transform: translateY(-6px) !important;
}

/* Top accent bar */
.st-ov-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.st-ov-card.st-ov-active::before { transform: scaleX(1); }

/* Inner hover glow */
.st-ov-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, var(--accent-ghost) 0%, transparent 65%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.st-ov-card:hover::after { opacity: 1; }

/* ── Icon ── */
.st-ov-card-icon {
    width: 44px;
    height: 44px;
    color: var(--color-primary);
    margin-bottom: 22px;
    transition: opacity 0.3s, transform 0.35s;
}
.st-ov-card:hover .st-ov-card-icon {
    opacity: 1;
    transform: scale(1.1) rotate(-4deg);
}

/* ── Text ── */
.st-ov-card-title {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin: 0 0 14px;
    line-height: 1.25;
}

.st-ov-card-desc {
    font-family: var(--font-text);
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 24px;
}

/* Bottom accent line */
.st-ov-card-line {
    height: 1px;
    background: linear-gradient(to right, var(--color-primary), transparent);
    width: 0%;
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.st-ov-card.st-ov-active .st-ov-card-line { width: 50%; }

/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width: 1024px) {
    .st-ov-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .st-ov-inner { padding: 70px 5vw; }
}

@media (max-width: 700px) {
    .st-ov-grid { grid-template-columns: 1fr; }
    .st-ov-inner { padding: 60px 5vw; }
    .st-ov-header { margin-bottom: 48px; }
    .st-ov-card { padding: 32px 24px 28px; }
    .st-ov-label, .st-ov-heading, .st-ov-subtitle { opacity: 1 !important; transform: none !important; }
}
@media (max-width: 400px) {
    .st-ov-inner { padding: 50px 16px; }
    .st-ov-card { padding: 28px 16px 24px; }
}