/* ============================================================================
   SOLUTIONS PAGES — enterprise redesign
   Brand tokens (from styles/global.css):
     --electric-blue #00d4ff  --electric-orange #ff6b00
     --nebula-pink   #ff006e  --cosmic-purple   #2d1b69
     --dark-matter   #0a0a0a  --plasma-green    #39ff14
     --starlight     #ffffff
   ============================================================================ */

/* ─── Layout shell ─── */
.solutions-main {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px 80px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* ============================================================================
   1) HERO — animated gradient background + Orbitron H1 + immediate CTA
   ============================================================================ */
.solutions-hero {
    position: relative;
    margin: 0 -24px 56px;
    padding: 110px 24px 80px;
    overflow: hidden;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(0, 212, 255, 0.18) 0%,
        rgba(45, 27, 105, 0.12) 35%,
        transparent 70%
    );
    border-bottom: 1px solid rgba(0, 212, 255, 0.12);
}
.solutions-hero::before {
    /* Subtle animated grid backdrop */
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 30%, black 0%, transparent 70%);
    pointer-events: none;
    animation: solutionsGridDrift 22s linear infinite;
}
@keyframes solutionsGridDrift {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}
.solutions-hero-inner {
    position: relative;
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}

.solutions-breadcrumb {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 22px;
    letter-spacing: 0.4px;
}
.solutions-breadcrumb a {
    color: var(--electric-blue);
    text-decoration: none;
    transition: color .2s ease;
}
.solutions-breadcrumb a:hover { color: var(--electric-orange); }

.solutions-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 22px;
    background: rgba(0, 212, 255, 0.10);
    border: 1px solid rgba(0, 212, 255, 0.32);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--electric-blue);
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.18);
}
.solutions-hero-badge i { font-size: 0.8em; }

.solutions-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.12;
    margin: 0 0 22px;
    background: linear-gradient(135deg, #ffffff 0%, var(--electric-blue) 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.solutions-hero-sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.78);
    margin: 0 auto 36px;
    line-height: 1.6;
    max-width: 720px;
}

.solutions-hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 22px;
}
.solutions-hero-trust {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.92rem;
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.solutions-hero-trust::before {
    content: '✓';
    color: var(--plasma-green);
    font-weight: 900;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

/* ─── Shared button system (used across all sections) ─── */
.btn-primary,
.solutions-cta-mid a.btn-primary,
.solutions-cta-bottom a.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--electric-orange), var(--nebula-pink));
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.3px;
    box-shadow: 0 10px 28px rgba(255, 0, 110, 0.32),
                inset 0 1px 0 rgba(255, 255, 255, 0.22);
    transition: transform .2s ease, box-shadow .2s ease;
    border: none;
    cursor: pointer;
}
.btn-primary:hover,
.solutions-cta-mid a.btn-primary:hover,
.solutions-cta-bottom a.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 42px rgba(255, 0, 110, 0.45),
                inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn-secondary,
.solutions-cta-mid a.btn-secondary,
.solutions-cta-bottom a.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 14px;
    background: rgba(0, 212, 255, 0.08);
    color: var(--electric-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.42);
    backdrop-filter: blur(6px);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.btn-secondary:hover,
.solutions-cta-mid a.btn-secondary:hover,
.solutions-cta-bottom a.btn-secondary:hover {
    background: rgba(0, 212, 255, 0.18);
    border-color: rgba(0, 212, 255, 0.75);
    transform: translateY(-3px);
}

/* ============================================================================
   2) TWO-COLUMN BODY — content + sticky conversion rail (desktop)
   ============================================================================ */
.solutions-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 56px;
    align-items: start;
}
@media (max-width: 1024px) {
    .solutions-body {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.solutions-content { min-width: 0; }

/* ─── Sticky CTA rail (desktop-only) ─── */
.solutions-rail {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
@media (max-width: 1024px) {
    .solutions-rail { display: none; }
}

.solutions-rail-card {
    background: linear-gradient(160deg, rgba(0, 212, 255, 0.10), rgba(45, 27, 105, 0.18));
    border: 1px solid rgba(0, 212, 255, 0.32);
    border-radius: 16px;
    padding: 22px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.solutions-rail-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%; right: -20%; bottom: -50%;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.18) 0%, transparent 60%);
    pointer-events: none;
    animation: railGlowPulse 6s ease-in-out infinite;
}
@keyframes railGlowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%      { opacity: 1;   transform: scale(1.08); }
}
.solutions-rail-card > * { position: relative; z-index: 1; }
.solutions-rail-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--electric-blue);
    margin-bottom: 8px;
}
.solutions-rail-headline {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.18;
    margin: 0 0 12px;
}
.solutions-rail-sub {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.5;
    margin: 0 0 20px;
}
.solutions-rail .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 14px 18px;
    font-size: 0.96rem;
}
.solutions-rail-list {
    list-style: none;
    padding: 0;
    margin: 18px 0 0;
    font-size: 0.86rem;
}
.solutions-rail-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 6px 0;
    color: rgba(255, 255, 255, 0.78);
}
.solutions-rail-list li::before {
    content: '✓';
    color: var(--plasma-green);
    font-weight: 900;
    flex-shrink: 0;
}

/* ─── Floating mobile CTA bar (≤1024px) ─── */
.solutions-mobile-cta {
    display: none;
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 90;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.92), rgba(45, 27, 105, 0.92));
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    animation: mobileCtaSlideIn 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) 1s both;
}
@media (max-width: 1024px) { .solutions-mobile-cta { display: flex; } }
@keyframes mobileCtaSlideIn {
    from { transform: translateY(140%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}
.solutions-mobile-cta-text {
    flex: 1;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.3;
}
.solutions-mobile-cta-text small {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
    font-size: 0.74rem;
    margin-top: 2px;
}
.solutions-mobile-cta a {
    background: #fff;
    color: var(--nebula-pink);
    padding: 10px 16px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.86rem;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================================================================
   3) SECTION BLOCKS — labelled, with iconographic identity
   ============================================================================ */
.solutions-section {
    margin: 64px 0 0;
}
.solutions-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--electric-blue);
    margin-bottom: 12px;
}
.solutions-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.1rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 22px;
    color: #fff;
    letter-spacing: -0.3px;
}
.solutions-section p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.82);
}

/* ============================================================================
   4) ROI / COST-OF-PROBLEM CALLOUT — visual money lever
   ============================================================================ */
.solutions-roi {
    margin-top: 28px;
    padding: 28px 30px;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.08), rgba(255, 107, 0, 0.06));
    border: 1px solid rgba(255, 0, 110, 0.28);
    border-left: 4px solid var(--nebula-pink);
    border-radius: 16px;
}
.solutions-roi-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--nebula-pink);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.solutions-roi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
}
.solutions-roi-stat {
    text-align: left;
}
.solutions-roi-num {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--electric-orange), var(--nebula-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 4px;
}
.solutions-roi-label-small {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* ============================================================================
   5) TIMELINE STEPS — "How Aedan Rose solves it"
   ============================================================================ */
.solutions-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}
.solutions-steps::before {
    /* Vertical connector line */
    content: '';
    position: absolute;
    left: 28px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(180deg,
        var(--electric-blue) 0%,
        rgba(0, 212, 255, 0.4) 50%,
        var(--nebula-pink) 100%);
    border-radius: 2px;
}
.solutions-step {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 22px;
    align-items: flex-start;
    margin-bottom: 32px;
}
.solutions-step:last-child { margin-bottom: 0; }
.solutions-step-num {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(45, 27, 105, 0.5));
    border: 1px solid rgba(0, 212, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--electric-blue);
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.solutions-step-body {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 20px 24px;
    transition: border-color .25s ease, transform .25s ease;
}
.solutions-step-body:hover {
    border-color: rgba(0, 212, 255, 0.32);
    transform: translateX(2px);
}
.solutions-step-body h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.35;
}
.solutions-step-body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.96rem;
    line-height: 1.6;
}

/* ============================================================================
   6) FEATURE GRID — "What's included"
   ============================================================================ */
.solutions-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 14px;
}
.solutions-features li {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 20px 18px 56px;
    border-radius: 12px;
    position: relative;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.96rem;
    line-height: 1.5;
    transition: border-color .25s ease, transform .25s ease, background .25s ease;
}
.solutions-features li:hover {
    border-color: rgba(0, 212, 255, 0.32);
    background: rgba(0, 212, 255, 0.04);
    transform: translateY(-2px);
}
.solutions-features li::before {
    content: '✓';
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--plasma-green), var(--electric-blue));
    color: var(--dark-matter);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
    box-shadow: 0 0 16px rgba(57, 255, 20, 0.32);
}
.solutions-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.92rem;
    margin-top: 18px !important;
    padding-top: 16px;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
    font-style: italic;
}
.solutions-note a { color: var(--electric-blue); text-decoration: none; }
.solutions-note a:hover { text-decoration: underline; }

/* ============================================================================
   7) MID-PAGE CTA + FAQ + LAUNCH-PARTNER + BOTTOM CTA
   ============================================================================ */
.solutions-cta-mid {
    margin: 64px 0;
    padding: 38px 32px;
    background:
        linear-gradient(135deg, rgba(255, 107, 0, 0.10), rgba(255, 0, 110, 0.10)),
        radial-gradient(ellipse at 70% 0%, rgba(0, 212, 255, 0.12), transparent 50%);
    border: 1px solid rgba(255, 107, 0, 0.32);
    border-radius: 18px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.solutions-cta-mid::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
    transform: translateX(-100%);
    animation: ctaMidShimmer 6s ease-in-out infinite;
    pointer-events: none;
}
@keyframes ctaMidShimmer {
    0%, 100% { transform: translateX(-100%); }
    50%      { transform: translateX(100%);  }
}
.solutions-cta-mid h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.4rem, 2.6vw, 1.85rem);
    margin: 0 0 18px;
    color: #fff;
    font-weight: 800;
    position: relative;
    z-index: 1;
}
.solutions-cta-mid .solutions-hero-cta {
    justify-content: center;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* FAQ section */
.solutions-faqs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.solutions-faq {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 18px 22px;
    transition: border-color .25s ease, background .25s ease;
}
.solutions-faq[open] {
    border-color: rgba(0, 212, 255, 0.32);
    background: rgba(0, 212, 255, 0.04);
}
.solutions-faq summary {
    cursor: pointer;
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    list-style: none;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    line-height: 1.4;
}
.solutions-faq summary::-webkit-details-marker { display: none; }
.solutions-faq summary::before {
    content: '+';
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.14);
    border: 1px solid rgba(0, 212, 255, 0.35);
    color: var(--electric-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    transition: transform .25s ease, background .25s ease;
}
.solutions-faq[open] summary::before {
    content: '−';
    background: var(--electric-blue);
    color: var(--dark-matter);
}
.solutions-faq p {
    margin: 14px 0 0 40px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.96rem;
    line-height: 1.65;
}

/* Launch-partner honest proof block */
.solutions-proof {
    margin-top: 64px;
    padding: 28px 30px;
    background:
        linear-gradient(135deg, rgba(167, 139, 250, 0.08), rgba(0, 212, 255, 0.05));
    border: 1px dashed rgba(167, 139, 250, 0.38);
    border-radius: 16px;
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 20px;
    align-items: flex-start;
}
@media (max-width: 640px) {
    .solutions-proof { grid-template-columns: 1fr; }
    .solutions-proof-icon { display: none; }
}
.solutions-proof-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.4), rgba(0, 212, 255, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 0 30px rgba(167, 139, 250, 0.4);
}
.solutions-proof h2 {
    font-family: 'Orbitron', sans-serif;
    margin: 0 0 8px;
    font-size: 1.2rem;
    color: #fff;
}
.solutions-proof p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.96rem;
    line-height: 1.6;
}
.solutions-proof a {
    color: #a78bfa;
    text-decoration: none;
    font-weight: 700;
}
.solutions-proof a:hover { text-decoration: underline; }

/* Bottom CTA — full visual finale */
.solutions-cta-bottom {
    margin: 72px -24px -80px;
    padding: 80px 24px 90px;
    text-align: center;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 212, 255, 0.18) 0%, transparent 60%),
        linear-gradient(180deg, transparent 0%, rgba(45, 27, 105, 0.25) 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.18);
    position: relative;
    overflow: hidden;
}
.solutions-cta-bottom::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 70%);
    pointer-events: none;
}
.solutions-cta-bottom > * { position: relative; z-index: 1; }
.solutions-cta-bottom h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.8rem, 3.6vw, 2.6rem);
    margin: 0 0 16px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff, var(--electric-blue), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
}
.solutions-cta-bottom p {
    color: rgba(255, 255, 255, 0.74);
    margin: 0 auto 30px;
    font-size: 1.05rem;
    max-width: 580px;
    line-height: 1.6;
}
.solutions-cta-bottom .solutions-hero-cta {
    justify-content: center;
    margin-bottom: 0;
}

/* ============================================================================
   8) HUB PAGE GRID — /solutions
   ============================================================================ */
.solutions-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
    margin-top: 12px;
}
.solutions-hub-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-decoration: none;
    background:
        linear-gradient(160deg, rgba(0, 212, 255, 0.05), rgba(45, 27, 105, 0.15));
    border: 1px solid rgba(0, 212, 255, 0.20);
    border-radius: 16px;
    padding: 26px 26px 24px;
    transition: transform .3s cubic-bezier(0.2, 0.8, 0.2, 1),
                border-color .3s ease,
                box-shadow .3s ease;
    position: relative;
    overflow: hidden;
}
.solutions-hub-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 0% 0%, rgba(0, 212, 255, 0.12), transparent 50%);
    opacity: 0;
    transition: opacity .3s ease;
}
.solutions-hub-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 212, 255, 0.55);
    box-shadow: 0 24px 56px rgba(0, 212, 255, 0.22);
}
.solutions-hub-card:hover::before { opacity: 1; }
.solutions-hub-card > * { position: relative; z-index: 1; }
.solutions-hub-card h3 {
    margin: 0;
    color: #fff;
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.3;
    font-family: 'Orbitron', sans-serif;
}
.solutions-hub-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.94rem;
    line-height: 1.55;
}
.solutions-hub-cta {
    color: var(--electric-blue);
    font-weight: 800;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    padding-top: 6px;
    transition: gap .25s ease, color .25s ease;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.solutions-hub-card:hover .solutions-hub-cta {
    gap: 12px;
    color: var(--electric-orange);
}

/* ============================================================================
   9) MOBILE polish
   ============================================================================ */
@media (max-width: 640px) {
    .solutions-main { padding: 0 16px 100px; }
    .solutions-hero { padding: 80px 16px 60px; margin: 0 -16px 40px; }
    .solutions-hero-cta { flex-direction: column; align-items: stretch; }
    .solutions-hero-cta a { width: 100%; justify-content: center; }
    .solutions-step { grid-template-columns: 48px 1fr; gap: 16px; }
    .solutions-step-num { width: 48px; height: 48px; font-size: 1.2rem; }
    .solutions-steps::before { left: 24px; }
    .solutions-cta-bottom { margin: 56px -16px -100px; padding: 60px 16px 70px; }
}
