/* ═══════════════════════════════════════════════
   SOLUTIONS PAGE (standalone)
   ═══════════════════════════════════════════════ */

.section-solutions-page {
    padding: var(--section-pad) 0;
    padding-top: clamp(100px, 12vw, 160px);
    background: var(--bg-primary);
}

.section-solutions-page .section-intro {
    max-width: 720px;
    margin-bottom: 56px;
}

/* ─── Solution Block ─── */
.sol-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 72px;
    padding-bottom: 72px;
    border-bottom: 1px solid var(--grey-100);
}

.sol-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* Alternate layout */
.sol-block--reverse {
    direction: rtl;
}

.sol-block--reverse > * {
    direction: ltr;
}

/* ─── Image ─── */
.sol-image {
    border-radius: 20px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.sol-image img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out);
}

.sol-block:hover .sol-image img {
    transform: scale(1.03);
}

/* ─── Content ─── */
.sol-content {
    padding: 8px 0;
}

/* ─── Meta ─── */
.sol-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.sol-number {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    color: var(--lime);
    letter-spacing: 0.05em;
}

.sol-label {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--grey-400);
}

/* ─── Heading ─── */
.sol-heading {
    font-family: var(--font-heading);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 500;
    color: var(--navy);
    margin: 0 0 20px;
    line-height: 1.3;
}

/* ─── Lead ─── */
.sol-lead {
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
    color: var(--navy);
    margin: 0 0 16px;
    opacity: 0.85;
}

/* ─── Body text ─── */
.sol-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-body);
    margin: 0 0 16px;
}

.sol-content p.sol-lead {
    color: var(--navy);
}

/* ─── Quote ─── */
.sol-quote {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    color: var(--lime);
    margin: 24px 0;
    padding: 0;
    border: none;
    line-height: 1.5;
}

/* ─── Badge ─── */
.sol-badge {
    display: inline-block;
    background: rgba(194, 213, 48, 0.12);
    color: var(--navy);
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.sol-badge strong {
    color: var(--lime);
    font-weight: 600;
}

/* ─── Note ─── */
.sol-note {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-body);
    background: rgba(10, 30, 61, 0.03);
    border: 1px solid var(--grey-100);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
}

.sol-note strong {
    color: var(--navy);
}

/* ─── Features ─── */
.sol-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.sol-features li {
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    background: rgba(10, 30, 61, 0.05);
    padding: 6px 14px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

/* ─── Stagger animation ─── */
.sol-block[data-animate]:nth-child(1) { transition-delay: 0.05s; }
.sol-block[data-animate]:nth-child(2) { transition-delay: 0.1s; }
.sol-block[data-animate]:nth-child(3) { transition-delay: 0.15s; }
.sol-block[data-animate]:nth-child(4) { transition-delay: 0.2s; }
.sol-block[data-animate]:nth-child(5) { transition-delay: 0.25s; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .sol-block {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 48px;
        padding-bottom: 48px;
    }

    .sol-block--reverse {
        direction: ltr;
    }

    .sol-image {
        position: static;
    }
}

@media (max-width: 600px) {
    .sol-block {
        gap: 20px;
        margin-bottom: 36px;
        padding-bottom: 36px;
    }

    .sol-heading {
        font-size: 20px;
    }
}
