/* =========================================================
   SOLUTIONS PAGE (PAGE-SCOPED CSS)
   Only for /solutions
   ========================================================= */

/* Page section rhythm */
.solutions-page .page-section {
    padding: 88px 40px;
    margin-top:70px;
}

.solutions-page .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Top intro block */
.solutions-page .solutions-intro {
    text-align: center;
    max-width: 920px;
    margin: 0 auto 56px auto;
}

.solutions-page .solutions-intro h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 14px 0;
}

.solutions-page .solutions-intro p {
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.9;
    margin: 0;
}

/* Cards grid (Solutions only) */
.solutions-page .solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 24px;
}

/* Card */
.solutions-page .solution-card {
    background: #14171c;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* Subtle top highlight line */
.solutions-page .solution-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 2px;
    width: 100%;
    background: rgba(225,17,26,0.45);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.solutions-page .solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    border-color: rgba(225,17,26,0.25);
}

.solutions-page .solution-card:hover::before {
    opacity: 1;
}

/* Title + text */
.solutions-page .solution-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.solutions-page .solution-card p {
    margin: 0 0 18px 0;
    color: #cbd5e1;
    font-size: 14.5px;
    line-height: 1.85;
}

/* CTA area */
.solutions-page .solution-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Learn More button uses your global .cta-button spec,
   but keep spacing consistent in cards */
.solutions-page .solution-actions .cta-button {
    display: inline-block;
    margin-top: 0;
}

/* Optional small inline link */
.solutions-page .solution-actions .text-link {
    color: #e2e8f0;
    opacity: 0.9;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.2s ease;
}
.solutions-page .solution-actions .text-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Bottom CTA block (if you have it) */
.solutions-page .solutions-cta {
    text-align: center;
    margin-top: 70px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.solutions-page .solutions-cta h2 {
    font-size: clamp(24px, 2.6vw, 34px);
    margin: 0 0 12px 0;
    font-weight: 700;
}
.solutions-page .solutions-cta p {
    max-width: 860px;
    margin: 0 auto 20px auto;
    color: #cbd5e1;
    line-height: 1.9;
}

/* Responsive */
@media (max-width: 1024px) {
    .solutions-page .solutions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 680px) {
    .solutions-page .page-section {
        padding: 70px 18px;
    }
    .solutions-page .solutions-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .solutions-page .solution-card {
        padding: 22px;
        border-radius: 12px;
    }
}