/* Solutions + Features landing pages. Audience-led grid for /solutions
   and format-led grid for /features. Same visual language so the two
   pages feel like sides of the same coin. */

.solutions-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.solutions-hero {
    padding: 64px 0 40px;
}
.solutions-hero-inner {
    max-width: 760px;
}
.solutions-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 12px;
}
.solutions-page h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin: 0 0 16px;
    color: #0f172a;
    font-weight: 800;
}
.solutions-lede {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 24px;
}
.solutions-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.solutions-cta-row .btn-primary {
    background: #2563eb;
    color: #ffffff;
    border-radius: 9999px;
    padding: 12px 22px;
    font-weight: 700;
    text-decoration: none;
    transition: background 120ms ease;
}
.solutions-cta-row .btn-primary:hover { background: #1d4ed8; }
.solutions-cta-row .btn-secondary {
    background: #ffffff;
    color: #1e293b;
    border: 1px solid #cbd5e1;
    border-radius: 9999px;
    padding: 11px 22px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color 120ms ease, color 120ms ease;
}
.solutions-cta-row .btn-secondary:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.solutions-section {
    padding: 36px 0;
    border-top: 1px solid #e2e8f0;
}
.solutions-section:first-of-type {
    border-top: 0;
}
.solutions-section-head {
    margin-bottom: 24px;
}
.solutions-section-head h2 {
    font-size: 1.6rem;
    margin: 0 0 6px;
    color: #0f172a;
    font-weight: 700;
}
.solutions-section-head p {
    margin: 0;
    color: #475569;
    font-size: 1rem;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}

.solution-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px 20px;
    text-decoration: none;
    color: inherit;
    transition: border-color 120ms ease, transform 120ms ease, box-shadow 120ms ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 100px;
}
.solution-card:hover {
    border-color: #2563eb;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.solution-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    color: #0f172a;
}
.solution-card p {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #475569;
    margin: 0;
}

.solutions-foot {
    margin-top: 48px;
    padding: 40px 32px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    text-align: center;
}
.solutions-foot h2 {
    font-size: 1.4rem;
    margin: 0 0 8px;
    color: #0f172a;
    font-weight: 700;
}
.solutions-foot p {
    margin: 0 0 20px;
    color: #475569;
    font-size: 1rem;
}
.solutions-foot .solutions-cta-row {
    justify-content: center;
}

@media (max-width: 768px) {
    .solutions-page { padding: 0 16px 64px; }
    .solutions-hero { padding: 40px 0 24px; }
    .solutions-section { padding: 28px 0; }
}
