/* ===== PAGE CONTAINER ===== */
.solution-page-container {
    max-width: 1450px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

/* ===== HERO SECTION ===== */
.solution-hero {
    margin-top: 99px;
    padding: 30px 0 108px;
    background: linear-gradient(to bottom, #1C48B2 0%, #23a6d5 55%, #ECFAFF 100%);
}

.solution-hero-shell {
    border-radius: 0;
    padding: 40px 0 28px;
    background: transparent;
    box-shadow: none;
}

.solution-hero-main {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    align-items: center;
    margin-bottom: 40px;
}

.solution-hero-copy {
    flex: 1 1 520px;
    max-width: 600px;
}

.solution-hero-copy h1 {
    margin: 0 0 16px;
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-size: 46px;
    line-height: 62px;
    font-weight: bold;
    letter-spacing: 0;
    max-width: 600px;
    text-shadow: 0 8px 24px rgba(28, 72, 178, 0.22);
}

.solution-hero-copy p {
    margin: 0;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
}

.solution-hero-copy p + p {
    margin-top: 10px;
}

.solution-hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.solution-hero-primary {
    min-width: 176px;
    text-transform: none;
}

.solution-hero-primary:hover {
    color: #ffffff;
}

.solution-hero-secondary-cta {
    background: linear-gradient(to right, #6f5bc6, #1C48B2) !important;
}

.solution-hero-visual {
    flex: 1 1 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 340px;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.solution-hero-image {
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: drop-shadow(0 20px 34px rgba(28, 72, 178, 0.16));
}

/* ===== SECTION TITLES ===== */
.solution-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #1C48B2;
    margin: 0 0 12px;
    font-family: 'Nunito', sans-serif;
}

.solution-section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin: 0 auto 40px;
    max-width: 700px;
    line-height: 1.6;
    font-family: 'Nunito', sans-serif;
}

/* ===== INDUSTRIES GRID ===== */
.solution-industries-section {
    padding: 80px 0;
    background: #ECFAFF;
}

.solution-industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.solution-industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px 28px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(28, 72, 178, 0.08);
    box-shadow: 0 2px 8px rgba(28, 72, 178, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.solution-industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(111, 91, 198, 0.12);
    border-color: rgba(111, 91, 198, 0.2);
}

.solution-industry-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 14px;
}

.solution-industry-icon i {
    font-size: 26px;
}

.solution-industry-card:nth-child(1) .solution-industry-icon { background: linear-gradient(135deg, #e8eaf6, #dce4ff); }
.solution-industry-card:nth-child(1) .solution-industry-icon i { color: #1C48B2; }

.solution-industry-card:nth-child(2) .solution-industry-icon { background: linear-gradient(135deg, #ede7f6, #e8dff5); }
.solution-industry-card:nth-child(2) .solution-industry-icon i { color: #7c4dff; }

.solution-industry-card:nth-child(3) .solution-industry-icon { background: linear-gradient(135deg, #e3f2fd, #d6eaff); }
.solution-industry-card:nth-child(3) .solution-industry-icon i { color: #1565c0; }

.solution-industry-card:nth-child(4) .solution-industry-icon { background: linear-gradient(135deg, #f3e5f5, #ecdaf5); }
.solution-industry-card:nth-child(4) .solution-industry-icon i { color: #8e24aa; }

.solution-industry-card:nth-child(5) .solution-industry-icon { background: linear-gradient(135deg, #e0f0ff, #d4e8ff); }
.solution-industry-card:nth-child(5) .solution-industry-icon i { color: #1976d2; }

.solution-industry-card:nth-child(6) .solution-industry-icon { background: linear-gradient(135deg, #ede7f6, #e1d5f5); }
.solution-industry-card:nth-child(6) .solution-industry-icon i { color: #6f5bc6; }

.solution-industry-card:nth-child(7) .solution-industry-icon { background: linear-gradient(135deg, #e8eaf6, #d9deff); }
.solution-industry-card:nth-child(7) .solution-industry-icon i { color: #3949ab; }

.solution-industry-card:nth-child(8) .solution-industry-icon { background: linear-gradient(135deg, #f0e6ff, #e8dbf9); }
.solution-industry-card:nth-child(8) .solution-industry-icon i { color: #9c27b0; }

.solution-industry-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1C48B2;
    margin: 0 0 6px;
    font-family: 'Nunito', sans-serif;
}

.solution-industry-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

/* ===== SCROLL ANIMATION HEADING ===== */
.solution-scroll-heading {
    background: #fff;
    padding: 80px 20px 20px;
    text-align: center;
}

#solution-scroll-section #Pharmacy-cards-list {
    --numcards: 8;
}

/* Force Solution auto-scroll section to be white (override Pharmacy.css) */
#solution-scroll-section.PharmacyScrollCards,
#solution-scroll-section.PharmacyScrollCards .Pharmacy-cards-main,
#solution-scroll-section.PharmacyScrollCards .Pharmacy-tabs-container,
#solution-scroll-section.PharmacyScrollCards #Pharmacy-cards-list,
#solution-scroll-section.PharmacyScrollCards .Pharmacy-card-content {
    background: #ffffff !important;
    background-color: #ffffff !important;
}

/* Tabs: inactive should be light blue */
#solution-scroll-section.PharmacyScrollCards .Pharmacy-tab-item {
    background: #ECFAFF !important;
}

#solution-scroll-section.PharmacyScrollCards .Pharmacy-tab-item:hover {
    background-color: rgba(37, 182, 255, 0.22) !important;
    color: rgba(28, 72, 178, 1) !important;
}

#solution-scroll-section.PharmacyScrollCards .Pharmacy-tab-item.active {
    background: linear-gradient(to right, #1C48B2, #8873d7) !important;
    color: #ffffff !important;
}

/* Pharmacy.css applies ECFAFF at large screens; force white there too */
@media (min-width: 1225px) {
    #solution-scroll-section.PharmacyScrollCards,
    #solution-scroll-section.PharmacyScrollCards .Pharmacy-cards-main,
    #solution-scroll-section.PharmacyScrollCards .Pharmacy-tabs-container,
    #solution-scroll-section.PharmacyScrollCards #Pharmacy-cards-list,
    #solution-scroll-section.PharmacyScrollCards .Pharmacy-card-content {
        background: #ffffff !important;
        background-color: #ffffff !important;
    }

    /* Keep section full-width so sides stay white */
    #solution-scroll-section.PharmacyScrollCards {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Keep inner content centered like before */
    #solution-scroll-section.PharmacyScrollCards .Pharmacy-tabs-container,
    #solution-scroll-section.PharmacyScrollCards .Pharmacy-cards-main {
        max-width: 1100px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 30px !important;
        padding-right: 30px !important;
        box-sizing: border-box;
    }

    #solution-scroll-section.PharmacyScrollCards #Pharmacy-cards-list {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100%;
        box-sizing: border-box;
    }
}

/* Extra spacing below scroll-cards block — Solution page only */
#solution-scroll-section.PharmacyScrollCards {
    padding-bottom: 90px;
}

/* Legacy tab styles kept for reference */
.solution-tabs-section {
    padding: 80px 0 0;
    background: #ECFAFF;
    display: none;
}

.solution-tabs-section > .solution-page-container {
    margin-bottom: 32px;
}

.solution-tabs-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: var(--solution-sticky-top, 100px);
    z-index: 900;
    width: 100%;
    display: flex;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 20px;
    box-shadow: none;
    box-sizing: border-box;
}

.solution-tabs-sticky .solution-page-container {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    background: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(136, 115, 215, 0.12);
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 10px 24px rgba(28, 72, 178, 0.08);
}

.solution-tabs-bar {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 7px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
    justify-content: center;
    max-width: 100%;
    scroll-snap-type: x mandatory;
    box-sizing: border-box;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-padding-inline: 4px;
}

.solution-tabs-bar::-webkit-scrollbar {
    display: none;
}

.solution-tab {
    border: 0;
    cursor: pointer;
    white-space: nowrap;
    padding: 10px 14px;
    border-radius: 999px;
    background: transparent;
    color: #202328;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    scroll-snap-align: center;
}

.solution-tab:hover {
    background: rgba(28, 72, 178, 0.08);
}

.solution-tab.solution-tab-active {
    background: linear-gradient(135deg, rgba(28, 72, 178, 0.16) 0%, rgba(136, 115, 215, 0.16) 100%);
    color: #1C48B2;
}

@media (max-width: 1450px) {
    .solution-tabs-bar {
        justify-content: flex-start;
        scroll-snap-type: x proximity;
        touch-action: pan-x;
    }
}

@media (max-width: 900px) {
    .solution-tabs-sticky {
        border-radius: 14px;
        padding: 10px 8px;
    }

    .solution-tabs-bar {
        padding: 4px 4px;
        scroll-padding-inline: 4px;
    }
}

.solution-tabs-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 24px;
}

.solution-tab-panel {
    scroll-margin-top: 220px;
    width: 100%;
    padding: 56px 0;
    background: #ECFAFF;
}

.solution-tab-panel:nth-child(even) {
    background: #ffffff;
}

.solution-tab-panel-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 48px;
    box-sizing: border-box;
}

.solution-tab-panel:nth-child(even) .solution-tab-panel-inner {
    flex-direction: row-reverse;
}

.solution-tab-text {
    flex: 1 1 50%;
    min-width: 0;
}

.solution-tab-header h2 {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 16px;
    font-family: 'Nunito', sans-serif;
}

.solution-tab-header p {
    font-size: 17px;
    color: #555;
    line-height: 1.65;
    margin: 0 0 12px;
    font-family: 'Nunito', sans-serif;
}

.solution-tab-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(28, 72, 178, 0.06), rgba(136, 115, 215, 0.06));
    margin: 20px 0;
    font-size: 16px;
    color: #1a1a2e;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    line-height: 1.5;
}

.solution-stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    background: #1C48B2;
    color: #ffffff;
}

.solution-tab-stat strong {
    color: #1C48B2;
}

.solution-tab-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    background: #1C48B2;
    color: #ffffff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Nunito', sans-serif;
}

.solution-tab-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 72, 178, 0.3);
}

.solution-tab-cta img {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

.solution-tab-visual {
    flex: 1 1 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.solution-tab-visual img {
    width: 100%;
    max-width: 480px;
    height: auto;
    border-radius: 16px;
    object-fit: contain;
}

/* ===== CASE STUDIES ===== */
.solution-casestudies-section {
    padding: 80px 0;
    background: #ECFAFF;
    height: 700px;
}

.solution-casestudies-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.solution-casestudies-carousel {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(28, 72, 178, 0.08);
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(28, 72, 178, 0.08);
    margin-bottom: 34px;
}

.solution-casestudy-nav {
    display: flex;
    gap: 8px;
    z-index: 5;
    flex-shrink: 0;
}

.solution-casestudy-nav-btn {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(28, 72, 178, 0.18);
    background: #ffffff;
    color: #1a1a2e;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}

.solution-casestudy-nav-btn:hover {
    transform: translateY(-1px);
    background: rgba(28, 72, 178, 0.06);
}

.solution-casestudy-nav-btn:disabled,
.solution-casestudy-nav-btn[aria-disabled="true"] {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    background: #ffffff;
    box-shadow: none;
}

.solution-casestudy-stage {
    position: relative;
    min-height: 260px;
}

.solution-casestudy-slide {
    display: none;
    grid-template-columns: 320px 1fr;
    min-height:400px;
}

.solution-casestudy-slide.is-active {
    display: grid;
}

.solution-casestudy-left {
    background: #ffffff;
    padding: 24px 22px;
    border-right: 1px solid rgba(28, 72, 178, 0.08);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.solution-casestudy-brand {
    height: 50px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    margin-top: 50px;
}

.solution-casestudy-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.solution-casestudy-meta-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 10px;
    border-top: 1px solid rgba(28, 72, 178, 0.08);
}

.solution-casestudy-meta-row:first-child {
    padding-top: 0;
    border-top: none;
}

.solution-casestudy-meta-row span {
    font-size: 12px;
    color: rgba(32, 35, 40, 0.7);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.solution-casestudy-meta-row strong {
    font-size: 13px;
    color: #1a1a2e;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
}

.solution-casestudy-right {
    background: #ffffff;
    padding: 34px 34px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    position: relative;
    overflow: hidden;
}

.solution-casestudy-right::before,
.solution-casestudy-right::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(38px);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

.solution-casestudy-right::before {
    right: -220px;
    top: -180px;
    background: radial-gradient(circle at 30% 30%, rgba(136, 115, 215, 0.95), rgba(136, 115, 215, 0) 60%);
}

.solution-casestudy-right::after {
    left: -150px;
    bottom: -260px;
    background: radial-gradient(circle at 30% 30%, rgba(37, 182, 255, 0.85), rgba(37, 182, 255, 0) 62%);
}

.solution-casestudy-right > * {
    position: relative;
    z-index: 1;
}

.solution-casestudy-quote p {
    margin: 0;
    font-size: 20px;
    line-height: 1.7;
    color: #1a1a2e;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    max-width: 720px;
}

.solution-casestudy-stat {
    margin-top: 14px;
    font-size: 18px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: #1C48B2;
}

.solution-casestudy-read {
    align-self: flex-end;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(28, 72, 178, 0.25);
    background: rgba(255, 255, 255, 0.45);
    color: #1a1a2e;
    text-decoration: none;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 14px;
}

.solution-casestudy-read:hover {
    background: rgba(255, 255, 255, 0.7);
}

.solution-casestudies-cta-wrap {
    display: flex;
    justify-content: center;
}

@media (max-width: 900px) {
    .solution-casestudies-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .solution-casestudy-stage {
        margin-top: 14px;
    }

    .solution-casestudy-slide.is-active {
        display: flex;
        flex-direction: column;
    }

    .solution-casestudy-left {
        border-right: none;
        border-bottom: 1px solid rgba(28, 72, 178, 0.08);
    }

    .solution-casestudy-right {
        padding: 18px 18px 20px;
    }

    .solution-casestudy-brand {
        margin-top: 0;
    }
}

/* ===== HOW FINERR WORKS (horizontal flow) ===== */
.solution-howworks-section {
    padding: 70px 0 120px;
    background: #ffffff;
    overflow: hidden;
}

.solution-howworks-inner {
    position: relative;
}

.solution-howworks-header {
    text-align: center;
    margin-bottom: 56px;
    position: relative;
}

.solution-howworks-header::before {
   
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -52%);
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: clamp(56px, 12vw, 140px);
    letter-spacing: 0.02em;
    color: rgba(28, 72, 178, 0.06);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
}

.solution-howworks-kicker {
    position: relative;
    z-index: 1;
    margin: 0 0 12px;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.solution-howworks-title-row {
    position: relative;
    z-index: 1;
}

.solution-howworks-title {
    margin: 0;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
}

.solution-howworks-title-dark {
    color: #111827;
}

.solution-howworks-title-accent {
    color: #1C48B2;
}

.solution-howworks-lead {
    position: relative;
    z-index: 1;
    margin: 16px 0 0;
    font-family: 'Nunito', sans-serif;
    font-size: 17px;
    color: #6b7280;
}

.solution-howworks-flow {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    max-width: 1160px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.solution-howworks-step {
    flex: 1 1 0;
    min-width: 0;
    text-align: center;
    padding: 0 8px;
}

.solution-howworks-step-visual {
    position: relative;
    width: 96px;
    height: 96px;
    margin: 0 auto 22px;
}

.solution-howworks-icon-circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(145deg, #1C48B2 0%, #2563eb 55%, #23a6d5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 34px;
    box-shadow: 0 10px 28px rgba(28, 72, 178, 0.22);
}

.solution-howworks-badge {
    position: absolute;
    right: -13px;
    top: 52%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1C48B2 0%, #8873d7 100%);
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
    box-shadow: 0 10px 22px rgba(28, 72, 178, 0.16);
}

.solution-howworks-step-title {
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #1C48B2;
    margin: 0 0 12px;
    line-height: 1.3;
}

.solution-howworks-step-text {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: #6b7280;
    margin: 0;
}

.solution-howworks-connector {
    flex: 0 0 58px;
    width: 28px;
    height: 3px;
    background: #1f2937;
    align-self: flex-start;
    margin-top: 47px;
    opacity: 0.65;
}

/* ===== FAQ SECTION ===== */
.solution-faq-section {
    padding: 90px 0;
    background: #ffffff;
}

.solution-faq-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: #1C48B2;
    margin-bottom: 48px;
    font-family: 'Nunito', sans-serif;
}

.solution-faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.solution-faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 0;
}

.solution-faq-hidden {
    display: none;
}

.solution-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    gap: 16px;
}

.solution-faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    font-family: 'Nunito', sans-serif;
    flex: 1;
}

.solution-faq-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.solution-faq-icon {
    width: 24px;
    height: 24px;
}

.solution-faq-answer {
    display: none;
    padding: 0 0 20px;
}

.solution-faq-answer p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

.solution-faq-item.active .solution-faq-question h3 {
    color: #1C48B2;
}

.solution-faq-read-more-container {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.solution-faq-read-more-btn {
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 999px;
    border: 2px solid #1C48B2;
    background: transparent;
    color: #1C48B2;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    font-family: 'Nunito', sans-serif;
}

.solution-faq-read-more-btn:hover {
    background: #1C48B2;
    color: #ffffff;
}

/* Phone FAQ look (scoped) */
.solution-faq-section.Phone-faq-section {
    padding: 75px 0;
}

.solution-faq-section.Phone-faq-section .solution-faq-title {
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    margin-bottom: 50px;
    color: rgba(28, 72, 178, 1);
}

.solution-faq-section.Phone-faq-section .solution-faq-container {
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-faq-section.Phone-faq-section .solution-faq-item {
    background: rgba(234, 248, 255, 1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    padding: 0;
}

.solution-faq-section.Phone-faq-section .solution-faq-item.active {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.15);
}

.solution-faq-section.Phone-faq-section .solution-faq-question {
    padding: 20px 24px;
    position: relative;
    z-index: 1;
    background: white;
}

.solution-faq-section.Phone-faq-section .solution-faq-question h3 {
    font-size: 22px;
    line-height: normal;
    color: rgba(28, 72, 178, 1);
    padding-right: 20px;
}

.solution-faq-section.Phone-faq-section .solution-faq-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(to right, #1C48B2, #8873d7) !important;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}

.solution-faq-section.Phone-faq-section .solution-faq-toggle:hover {
    transform: scale(1.05);
}

.solution-faq-section.Phone-faq-section .solution-faq-icon {
    width: 16px;
    height: 17px;
}

.solution-faq-section.Phone-faq-section .solution-faq-toggle img {
    width: 16px;
    height: 17px;
}

.solution-faq-section.Phone-faq-section .solution-faq-answer {
    padding: 0 24px 20px 24px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 1);
}

.solution-faq-section.Phone-faq-section .solution-faq-item.active .solution-faq-answer {
    opacity: 1;
    transform: translateY(0);
}

.solution-faq-section.Phone-faq-section .solution-faq-answer p {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: rgba(57, 57, 59, 1);
    max-width: 90%;
}

.solution-faq-section.Phone-faq-section .home-faq-read-more-container,
.solution-faq-section.Phone-faq-section .solution-faq-read-more-container {
    text-align: center;
    margin-top: 24px;
    display: block;
}

.solution-faq-section.Phone-faq-section .home-faq-read-more-btn,
.solution-faq-section.Phone-faq-section .solution-faq-read-more-btn {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1C48B2;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.solution-faq-section.Phone-faq-section .home-faq-read-more-btn:hover,
.solution-faq-section.Phone-faq-section .solution-faq-read-more-btn:hover {
    color: #8873d7;
    background: none;
}

/* Products FAQ look (scoped) */
.solution-faq-section.products-faq-section {
    padding: 75px 0 10px 0;
    background: #ECFAFF;
}

.solution-faq-section.products-faq-section .solution-faq-title {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: normal;
    color: rgba(28, 72, 178, 1);
    text-align: center;
    margin-bottom: 50px;
    padding: 0 100px;
}

.solution-faq-section.products-faq-section .solution-faq-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.solution-faq-section.products-faq-section .solution-faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.solution-faq-section.products-faq-section .solution-faq-item.active {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 24px rgba(0, 0, 0, 0.15);
}

.solution-faq-section.products-faq-section .solution-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    background: white;
}

.solution-faq-section.products-faq-section .solution-faq-question h3 {
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: normal;
    color: rgba(28, 72, 178, 1);
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.solution-faq-section.products-faq-section .solution-faq-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(to right, #1C48B2, #8873d7);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.solution-faq-section.products-faq-section .solution-faq-toggle:hover {
    transform: scale(1.05);
}

.solution-faq-section.products-faq-section .solution-faq-icon {
    width: 16px;
    height: 17px;
    display: block;
}

.solution-faq-section.products-faq-section .solution-faq-answer {
    display: none;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 24px 20px 24px;
    opacity: 0;
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 1);
}

.solution-faq-section.products-faq-section .solution-faq-item.active .solution-faq-answer {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.solution-faq-section.products-faq-section .solution-faq-answer p {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: rgba(57, 57, 59, 1);
    margin: 0;
    max-width: 90%;
}

.solution-faq-section.products-faq-section .solution-faq-item.solution-faq-hidden {
    display: none;
}

.solution-faq-section.products-faq-section .solution-faq-read-more-container {
    text-align: center;
    margin-top: 32px;
    padding: 20px 0;
    display: block;
}

.solution-faq-section.products-faq-section .solution-faq-read-more-btn {
    background: linear-gradient(90deg, #1C48B2 0%, #25B6FF 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 24px;
    padding: 12px 32px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(28, 72, 178, 0.2);
}

.solution-faq-section.products-faq-section .solution-faq-read-more-btn:hover {
    background: linear-gradient(90deg, #25B6FF 0%, #1C48B2 100%);
    box-shadow: 0 4px 16px rgba(28, 72, 178, 0.3);
    transform: translateY(-2px);
}

/* ===== CTA (FewerCreateBetterCtaSection) ===== */
.FewerCreateBetterCtaSection {
    width: 100%;
    max-width: 1020px;
    margin: 48px auto 40px auto;
    padding: 48px 24px 48px 24px;
    background: linear-gradient(180deg, #1C48B2 0%, #1F72CF 38.2%, #25B6FF 100%);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.FewerCreateBetterCtaTitle {
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 18px;
}

.FewerCreateBetterCtaDescription {
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    text-align: center;
    margin: 0 0 32px;
}

.FewerCreateBetterCtaButtons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.FewerCreateBetterCtaButton {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(90deg, #1C48B2 0%, #8873d7 100%);
    border: none;
    border-radius: 24px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    box-shadow: 0 10px 26px rgba(28, 72, 178, 0.25);
    cursor: pointer;
    white-space: nowrap;
}

.FewerCreateBetterCtaButton:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(28, 72, 178, 0.32);
    filter: saturate(1.05);
}

.FewerCreateBetterCtaButton img {
    width: 14px;
    height: 14px;
    transition: all 0.3s ease;
    transform: rotate(-45deg);
}

.FewerCreateBetterCtaButton:hover img {
    transform: rotate(0deg);
}

@media (max-width: 1100px) {
    .FewerCreateBetterCtaSection {
        max-width: 98vw;
        padding: 32px 20px;
    }
}

@media (max-width: 600px) {
    .FewerCreateBetterCtaSection {
        max-width: 95vw;
        padding: 40px 10px 40px 10px;
        margin: 15px auto 60px auto;
    }

    .FewerCreateBetterCtaTitle {
        font-size: 22px;
    }

    .FewerCreateBetterCtaDescription {
        font-size: 15px;
    }

    .FewerCreateBetterCtaButtons {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        align-items: center;
    }

    .FewerCreateBetterCtaButton {
        width: auto;
        min-width: 185px;
        justify-content: center;
        padding: 11px 28px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .solution-hero-main {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 28px;
    }

    .solution-hero-copy {
        max-width: 100%;
        flex: 0 1 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .solution-hero-copy h1 {
        text-align: center;
        max-width: 680px;
    }

    .solution-hero-copy p {
        text-align: center;
        max-width: 720px;
    }

    .solution-hero-actions {
        justify-content: center;
        width: 100%;
        gap: 12px;
    }

    .solution-hero-visual {
        max-width: 920px;
        min-height: 360px;
      
        justify-content: center;
    }

    .solution-hero-image {
        width: 82%;
        max-width: none;
        height: 100%;
        border-radius: 20px;
       
    }

    .solution-industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .solution-howworks-flow {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 40px;
        column-gap: 24px;
    }

    .solution-howworks-step {
        flex: 1 1 calc(50% - 20px);
        max-width: 340px;
        min-width: 200px;
    }

    .solution-howworks-connector {
        display: none;
    }

    .solution-tab-panel-inner {
        flex-direction: column !important;
        gap: 32px;
    }

    .solution-tab-visual {
        max-width: 400px;
    }
}

@media (max-width: 900px) {
    .solution-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .solution-hero {
        padding: 24px 0 18px;
    }

    .solution-hero-shell {
        padding: 30px 0 24px;
    }

    .solution-hero-main {
        gap: 24px;
    }

    .solution-hero-copy h1 {
        font-size: 38px;
        line-height: 52px;
    }

    .solution-hero-copy p {
        font-size: 18px;
    }

    .solution-hero-visual {
        min-height: 290px;
      
        margin: 0 auto;
        width: 100%;
    }

    .solution-section-title {
        font-size: 28px;
    }

    .solution-section-subtitle {
        font-size: 16px;
    }

    .solution-tab-panel {
        padding: 40px 0;
        scroll-margin-top: 190px;
    }

    .solution-tab-header h2 {
        font-size: 24px;
    }

    .solution-industries-section,
    .solution-casestudies-section,
    .solution-howworks-section {
        padding: 60px 0;
    }

    .solution-faq-section {
        padding: 60px 0;
    }

    .solution-faq-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
}

@media (max-width: 640px) {
    .solution-page-container,
    .solution-faq-section .home-container {
        padding: 0 16px;
    }

    .solution-casestudies-header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .solution-casestudies-section {
        padding-bottom: 0;
    }

    .solution-casestudy-quote p {
        font-size: 18px;
    }

    .solution-faq-section.products-faq-section .solution-faq-title {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .home-faq-question h3,
    .solution-faq-section.products-faq-section .solution-faq-question h3 {
        font-size: 16px;
    }

    .home-faq-answer p,
    .solution-faq-section.products-faq-section .solution-faq-answer p {
        font-size: 15px;
        line-height: 22px;
    }

    .solution-faq-section.products-faq-section {
        padding: 40px 0 10px 0;
    }

    .solution-faq-section.products-faq-section .solution-faq-toggle {
        width: 32px;
        height: 32px;
    }

    .solution-faq-section.products-faq-section .solution-faq-read-more-container {
        margin-top: 20px;
    }

    .solution-faq-section.Phone-faq-section .solution-faq-toggle img {
        height: 17px;
    }

    .solution-howworks-section {
        padding-top: 70px;
    }

    .solution-howworks-header {
        margin-bottom: 32px;
    }

    .solution-howworks-step-visual {
        width: 80px;
        height: 80px;
        margin-bottom: 18px;
    }

    .solution-howworks-icon-circle {
        width: 55px;
        height: 55px;
        font-size: 25px;
    }

    .solution-howworks-badge {
        right: 0;
        top: 40%;
    }

    .solution-casestudy-right::before {
        display: none;
    }

    .solution-hero-copy h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .solution-hero-copy p {
        font-size: 16px;
    }

    .solution-hero-visual {
        max-width: 420px;
        min-height: auto;
        margin: 0 auto;
    }

    .solution-hero-image {
        width: 100%;
        height: auto;
        max-height: 260px;
        object-fit: contain;
        border-radius: 10px;
    }

    .solution-hero-main {
        margin-bottom: 0;
    }

    .solution-hero-shell {
        padding-bottom: 0;
    }

    .solution-industries-grid {
        grid-template-columns: 1fr;
    }

    .solution-howworks-step {
        flex: 1 1 100%;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .solution-howworks-header::before {
        font-size: clamp(36px, 22vw, 72px);
    }

    .solution-casestudies-grid {
        grid-template-columns: 1fr;
    }

    .solution-tab-panel-inner {
        padding: 0 16px;
        gap: 24px;
    }

    .solution-tab-header h2 {
        font-size: 22px;
    }

    .solution-tab-header p {
        font-size: 15px;
    }

    .solution-faq-question h3 {
        font-size: 16px;
    }

    .solution-faq-answer p {
        font-size: 15px;
    }
}

@media (max-width: 420px) {
    .solution-tab {
        font-size: 13px;
        padding: 9px 12px;
    }

    .solution-hero-primary {
        padding: 11px 22px;
        font-size: 14px;
    }

    .solution-casestudy-quote p {
        font-size: 17px;
    }
}

@media (max-width: 320px) {
    .solution-casestudy-quote p {
        font-size: 15px;
    }
}
