/**
 * Case Study Generic Template Styles (Phase 37)
 *
 * Scope: Used on all case-study singulars EXCEPT the bespoke
 * Elcome/SpaceX page (which has its own elcome-spacex.css).
 *
 * Sections covered:
 *   0. .onyx-cs-hero            — Typography-led navy hero (NO upscaled logo image)
 *   1. .onyx-cs-meta-grid       — Microsoft-style fact strip with iconography
 *   2. .onyx-cs-pdf-gate        — Email-gated PDF download form
 *   3. .cs-value-ladder         — 3-step methodology cards with feature icons
 *
 * All values use design-system.css tokens. No new colour tokens introduced.
 *
 * @package Onyx
 * @version 2.0.0
 */

/* ==========================================================================
   -1. Hub-card placeholder (no featured image) — branded fallback so cards
   without logos sit visually equal to cards with logos in the /results/ grid.
   Onyx navy gradient + subtle gold corner accent + large industry-name
   typography. Matches existing 16:10 aspect ratio.
   ========================================================================== */

.onyx-case-card__image-wrap--placeholder {
    aspect-ratio: 16 / 10;
    background: linear-gradient(135deg, #1F273B 0%, #2a3550 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.onyx-case-card__image-wrap--placeholder::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 187, 9, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

.onyx-case-card__image-wrap--placeholder::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 36px;
    height: 36px;
    background:
        linear-gradient(135deg, var(--onyx-gold) 0%, var(--onyx-gold) 50%, transparent 50%);
    opacity: 0.85;
    pointer-events: none;
}

.onyx-case-card__placeholder-industry {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: #ffffff;
    text-align: center;
    padding: 0 1.5rem;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   0. Hero (.onyx-cs-hero) — typography-led, no upscaled logo image
   ========================================================================== */

.onyx-cs-hero {
    padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
    background: linear-gradient(180deg, #1F273B 0%, #141B2B 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Subtle gold radial accent in top-right corner */
.onyx-cs-hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 187, 9, 0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 0;
}

.onyx-cs-hero__inner {
    /* Override legacy main.css flex-row (was for old two-column hero with thumbnail) */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: 1;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.onyx-cs-hero__overline {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: var(--onyx-gold);
    margin: 0 0 var(--onyx-space-md) 0;
}

.onyx-cs-hero__overline-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--onyx-gold);
    box-shadow: 0 0 0 4px rgba(255, 187, 9, 0.18);
}

.onyx-cs-hero__title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    line-height: 1.08;
    letter-spacing: -0.02em;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 var(--onyx-space-md) 0;
}

.onyx-cs-hero__subtitle {
    font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    margin: 0 auto clamp(1.75rem, 3vw, 2.5rem) auto;
    max-width: 680px;
    font-weight: 400;
}

.onyx-cs-hero__pills {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.625rem;
    margin: 0 0 clamp(2rem, 4vw, 3rem) 0;
}

.onyx-cs-pill {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.onyx-cs-pill--industry {
    background: rgba(255, 187, 9, 0.10);
    border-color: rgba(255, 187, 9, 0.35);
    color: var(--onyx-gold);
}

/* Customer logo inline as a hero signature card. Distinct elevation so it
   reads as intentional. Logo within is capped so even hi-res sources display
   at a confident-but-controlled size. */
.onyx-cs-hero__logo {
    margin: 0;
    padding: clamp(1.25rem, 2vw, 1.75rem);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    min-height: 200px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22), 0 2px 4px rgba(0, 0, 0, 0.10);
}

.onyx-cs-hero__logo-img {
    display: block;
    /* Hi-res logo display: scales fluidly, capped for hierarchy */
    width: clamp(140px, 18vw, 200px);
    height: auto;
    max-height: 200px;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
}

@media (max-width: 640px) {
    .onyx-cs-hero {
        padding: 3rem 0 2rem;
    }
    .onyx-cs-hero__logo {
        padding: 1rem;
        min-width: 144px;
        min-height: 144px;
    }
    .onyx-cs-hero__logo-img {
        width: 120px;
    }
}

/* ==========================================================================
   1.5 Section rhythm overrides — consistent vertical breathing room across
   all case-study sections. Legacy main.css had 4rem flat padding; this
   responsively scales to match the elevated hero.
   ========================================================================== */

.single-case-study .onyx-cs-section,
.single-case-study .onyx-cs-challenge,
.single-case-study .onyx-cs-solution,
.single-case-study .onyx-cs-results,
.single-case-study .onyx-cs-testimonial,
.single-case-study .onyx-cs-cta {
    padding: clamp(3.5rem, 6vw, 6rem) 0;
}

/* ==========================================================================
   Results / Metrics elevation — Snowflake-style huge stats
   ========================================================================== */

.single-case-study .onyx-cs-metric-card__value {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    color: var(--onyx-navy);
    line-height: 1;
    letter-spacing: -0.02em;
    /* Gold underline accent below the number */
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    margin-bottom: 0.25rem;
}

.single-case-study .onyx-cs-metric-card__value::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--onyx-gold);
    border-radius: 2px;
}

.single-case-study .onyx-cs-metric-card__label {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--onyx-text-secondary, #4b5563);
    line-height: 1.5;
    margin-top: 0.75rem;
}

.single-case-study .onyx-cs-metrics {
    gap: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(3rem, 5vw, 4rem);
}

/* ==========================================================================
   Testimonial elevation — decorative opening quote + larger type
   ========================================================================== */

.single-case-study .onyx-cs-testimonial {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfd 100%);
    border-top: 1px solid rgba(31, 39, 59, 0.06);
    border-bottom: 1px solid rgba(31, 39, 59, 0.06);
}

.single-case-study .onyx-cs-testimonial__quote {
    max-width: 56rem;
    position: relative;
    padding-top: 4rem;
}

/* Large decorative opening quote mark in gold */
.single-case-study .onyx-cs-testimonial__quote::before {
    content: "\201C"; /* curly opening double-quote */
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(4rem, 7vw, 6rem);
    line-height: 1;
    color: var(--onyx-gold);
    font-family: 'Lato', serif;
    font-weight: 900;
    opacity: 0.85;
    pointer-events: none;
}

.single-case-study .onyx-cs-testimonial__quote p {
    font-size: clamp(1.375rem, 2.2vw, 1.875rem);
    font-weight: 400;
    font-style: normal;
    line-height: 1.45;
    color: var(--onyx-navy);
    margin: 0 0 var(--onyx-space-xl);
    letter-spacing: -0.01em;
}

/* Attribution block: avatar + cite stacked on mobile, side-by-side on desktop */
.single-case-study .onyx-cs-testimonial__attribution {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin: 0 auto;
}

.single-case-study .onyx-cs-testimonial__avatar {
    flex-shrink: 0;
    display: inline-block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(31, 39, 59, 0.06);
    box-shadow: 0 0 0 3px var(--onyx-gold), 0 4px 12px rgba(31, 39, 59, 0.12);
    position: relative;
}

.single-case-study .onyx-cs-testimonial__avatar-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.single-case-study .onyx-cs-testimonial__cite {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
    font-style: normal;
    text-align: left;
    color: var(--onyx-navy);
}

.single-case-study .onyx-cs-testimonial__cite::before {
    display: none; /* gold rule now lives above the whole attribution block */
}

.single-case-study .onyx-cs-testimonial__author {
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.005em;
    line-height: 1.3;
}

.single-case-study .onyx-cs-testimonial__meta {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--onyx-text-secondary, #6b7280);
    line-height: 1.4;
}

@media (max-width: 480px) {
    .single-case-study .onyx-cs-testimonial__attribution {
        flex-direction: column;
        gap: 0.625rem;
        text-align: center;
    }
    .single-case-study .onyx-cs-testimonial__cite {
        text-align: center;
        align-items: center;
    }
}

/* ==========================================================================
   1. Metadata Grid (.onyx-cs-meta-grid)
   "At-a-glance" customer fact strip rendered between hero and challenge.
   Visual goal: airy, scannable, premium — Microsoft Customer Stories DNA
   with Onyx brand restraint.
   ========================================================================== */

.onyx-cs-meta-grid {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
    border-top: 1px solid rgba(31, 39, 59, 0.06);
    border-bottom: 1px solid rgba(31, 39, 59, 0.06);
    position: relative;
}

/* Thin gold accent rule centred above the grid */
.onyx-cs-meta-grid::before {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--onyx-gold);
    margin: 0 auto calc(var(--onyx-space-lg) - 0.5rem) auto;
    border-radius: 2px;
}

.onyx-cs-meta-grid__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: var(--onyx-space-lg) var(--onyx-space-xl);
    margin: 0;
    padding: 0;
    list-style: none;
}

.onyx-cs-meta-grid__cell {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.625rem;
    row-gap: 0.25rem;
    padding: 0;
    transition: transform 0.2s ease;
}

.onyx-cs-meta-grid__cell:hover {
    transform: translateY(-1px);
}

.onyx-cs-meta-grid__cell:hover .onyx-cs-meta-grid__icon {
    background: rgba(255, 187, 9, 0.18);
    color: var(--onyx-gold);
}

.onyx-cs-meta-grid__icon {
    grid-row: 1 / span 2;
    grid-column: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(31, 39, 59, 0.06);
    color: var(--onyx-navy);
    flex-shrink: 0;
    align-self: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.onyx-cs-meta-grid__icon svg {
    width: 18px;
    height: 18px;
}

.onyx-cs-meta-grid__label {
    grid-row: 1;
    grid-column: 2;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--onyx-text-secondary, #6b7280);
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    align-self: end;
}

.onyx-cs-meta-grid__value {
    grid-row: 2;
    grid-column: 2;
    font-size: 1.0625rem;
    color: var(--onyx-navy);
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.005em;
    align-self: start;
}

@media (max-width: 900px) {
    .onyx-cs-meta-grid__list {
        gap: var(--onyx-space-md) var(--onyx-space-lg);
    }
}

@media (max-width: 640px) {
    .onyx-cs-meta-grid {
        padding: 2rem 0;
    }
    .onyx-cs-meta-grid__list {
        grid-template-columns: 1fr 1fr;
        gap: var(--onyx-space-md);
    }
    .onyx-cs-meta-grid__cell {
        padding-left: 0.75rem;
    }
    .onyx-cs-meta-grid__value {
        font-size: 1rem;
    }
}

/* ==========================================================================
   2. PDF Download Gate (.onyx-cs-pdf-gate)
   ========================================================================== */

.onyx-cs-pdf-gate {
    padding: var(--onyx-space-xl) 0;
}

.onyx-cs-pdf-gate__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--onyx-space-xl);
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 12px;
    padding: var(--onyx-space-xl);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.onyx-cs-pdf-gate__copy {
    display: flex;
    flex-direction: column;
    gap: var(--onyx-space-sm);
}

.onyx-cs-pdf-gate__icon {
    width: 48px;
    height: 48px;
    color: var(--onyx-gold);
}

.onyx-cs-pdf-gate__headline {
    font-size: 1.5rem;
    color: var(--onyx-navy);
    margin: 0;
    line-height: 1.3;
}

.onyx-cs-pdf-gate__description {
    color: var(--onyx-text-secondary, #4b5563);
    line-height: 1.5;
    margin: 0;
}

.onyx-cs-pdf-gate__form {
    display: flex;
    flex-direction: column;
    gap: var(--onyx-space-sm);
}

.onyx-cs-pdf-gate__input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.onyx-cs-pdf-gate__input {
    padding: 0.75rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    font-size: 1rem;
    background: #fff;
    color: var(--onyx-navy);
    transition: border-color 0.15s ease;
}

.onyx-cs-pdf-gate__input:focus {
    outline: none;
    border-color: var(--onyx-gold);
    box-shadow: 0 0 0 3px rgba(255, 187, 9, 0.2);
}

.onyx-cs-pdf-gate__submit {
    width: 100%;
}

.onyx-cs-pdf-gate__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.onyx-cs-pdf-gate__privacy {
    font-size: 0.75rem;
    color: var(--onyx-text-secondary, #6b7280);
    margin: 0;
}

.onyx-cs-pdf-gate__success {
    text-align: left;
}

.onyx-cs-pdf-gate__success-text {
    color: var(--onyx-navy);
    font-weight: 500;
    margin: 0 0 var(--onyx-space-sm) 0;
}

.onyx-cs-pdf-gate__error {
    color: #b91c1c;
    font-size: 0.875rem;
    margin: 0;
}

@media (max-width: 768px) {
    .onyx-cs-pdf-gate__container {
        grid-template-columns: 1fr;
        gap: var(--onyx-space-md);
        padding: var(--onyx-space-md);
    }

    .onyx-cs-pdf-gate__headline {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   3. Value Ladder (.cs-value-ladder + .cs-step-card)
   Phase 37 — methodology bridge between case study and services.
   Visual goal: premium 3-step journey card grid with subtle progression
   cues (connector dots on desktop), restrained gold accents, generous
   whitespace.
   ========================================================================== */

.cs-value-ladder {
    padding: clamp(3.5rem, 6vw, 6rem) 0;
    background: #ffffff;
    position: relative;
}

/* Thin gold accent rule centred above the heading */
.cs-value-ladder__header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto clamp(2rem, 4vw, 3.5rem) auto;
    position: relative;
}

.cs-value-ladder__header::before {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--onyx-gold);
    margin: 0 auto var(--onyx-space-md) auto;
    border-radius: 2px;
}

.cs-value-ladder__heading {
    font-size: clamp(1.875rem, 3.25vw, 2.5rem);
    color: var(--onyx-navy);
    margin: 0 0 var(--onyx-space-sm) 0;
    line-height: 1.15;
    letter-spacing: -0.015em;
}

.cs-value-ladder__intro {
    color: var(--onyx-text-secondary, #4b5563);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

.cs-value-ladder__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1rem, 2vw, 1.75rem);
    margin: 0 0 clamp(1.5rem, 3vw, 2.5rem) 0;
    position: relative;
}

/* Connector dots between cards on desktop (progression cue) */
@media (min-width: 901px) {
    .cs-value-ladder__grid::before,
    .cs-value-ladder__grid::after {
        content: "";
        position: absolute;
        top: 4rem;
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--onyx-gold);
        opacity: 0.7;
        z-index: 2;
        pointer-events: none;
    }
    .cs-value-ladder__grid::before { left: calc(33.333% - 4px); }
    .cs-value-ladder__grid::after  { left: calc(66.666% - 4px); }
}

.cs-step-card {
    display: flex;
    flex-direction: column;
    gap: var(--onyx-space-md);
    padding: clamp(1.5rem, 2.5vw, 2.25rem);
    background: #ffffff;
    border: 1px solid rgba(31, 39, 59, 0.08);
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(31, 39, 59, 0.03), 0 4px 12px rgba(31, 39, 59, 0.04);
    color: inherit;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Gold accent stripe at top of card — hidden by default, revealed on hover */
.cs-step-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--onyx-gold) 0%, #ffd25a 100%);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s ease;
    z-index: 1;
}

.cs-step-card:hover,
.cs-step-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(31, 39, 59, 0.06), 0 16px 32px rgba(31, 39, 59, 0.10);
    border-color: rgba(255, 187, 9, 0.5);
    outline: none;
}

.cs-step-card:hover::before,
.cs-step-card:focus-visible::before {
    transform: scaleX(1);
}

/* Step-card badge: feature icon + step pill (replaces flat numbered circle) */
.cs-step-card__badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: var(--onyx-space-xs, 0.5rem);
}

.cs-step-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--onyx-gold) 0%, #ffd25a 100%);
    color: var(--onyx-navy);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 187, 9, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cs-step-card__icon svg {
    width: 28px;
    height: 28px;
}

.cs-step-card:hover .cs-step-card__icon,
.cs-step-card:focus-visible .cs-step-card__icon {
    transform: rotate(-4deg) scale(1.04);
    box-shadow: 0 8px 20px rgba(255, 187, 9, 0.35);
}

.cs-step-card__step-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    border-radius: 999px;
    background: rgba(31, 39, 59, 0.05);
    color: var(--onyx-navy);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Legacy fallback (older posts using .cs-step-card__number) */
.cs-step-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--onyx-gold) 0%, #ffd25a 100%);
    color: var(--onyx-navy);
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 187, 9, 0.25);
}

.cs-step-card__title {
    font-size: 1.375rem;
    color: var(--onyx-navy);
    margin: 0;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.cs-step-card__desc {
    color: var(--onyx-text-secondary, #4b5563);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
    font-size: 0.9375rem;
}

.cs-step-card__link {
    color: var(--onyx-navy);
    font-weight: 700;
    font-size: 0.9375rem;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.3125rem;
    transition: color 0.2s ease, gap 0.2s ease;
    letter-spacing: 0.005em;
}

.cs-step-card:hover .cs-step-card__link,
.cs-step-card:focus-visible .cs-step-card__link {
    color: var(--onyx-gold);
    gap: 0.625rem;
}

.cs-value-ladder__overview-link {
    text-align: center;
    margin: 0;
    font-size: 0.9375rem;
}

.cs-value-ladder__overview-link a {
    color: var(--onyx-navy);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    text-decoration-color: rgba(31, 39, 59, 0.3);
    transition: color 0.15s ease, text-decoration-color 0.15s ease;
}

.cs-value-ladder__overview-link a:hover {
    color: var(--onyx-gold);
    text-decoration-color: var(--onyx-gold);
}

@media (max-width: 900px) {
    .cs-value-ladder__grid {
        grid-template-columns: 1fr;
        gap: var(--onyx-space-md);
    }
    .cs-step-card {
        padding: var(--onyx-space-lg);
    }
    .cs-step-card__title {
        font-size: 1.25rem;
    }
}
