/* Scoped to .iws-page so this stylesheet cannot leak into other pages. */
.iws-page {
    --iws-ink: #1c1c1c;
    --iws-muted: #4e4e4e;
    --iws-soft: #f7f7f9;
    --iws-line: #e8e8ee;
    --iws-pink: #f6114a;
    --iws-purple: #6d17f2;
    --iws-radius: 24px;
    --iws-measure: 740px;
    background: #fff;
    color: var(--iws-ink);
    max-width: 100%;
    overflow-x: hidden;
}

.iws-page *,
.iws-page *::before,
.iws-page *::after {
    box-sizing: border-box;
}

.iws-page .small_container {
    max-width: min(1020px, 100%);
}

.iws-page .iws-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.iws-page .iws-hero-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 28px;
    text-decoration: none;
    max-width: 100%;
}

.iws-page .iws-section {
    margin: 72px auto 0;
}

.iws-page .iws-section-head {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.iws-page .iws-section-head h2 {
    margin: 0 auto 18px;
    font: 800 40px/50px Outfit;
    color: var(--iws-ink);
    letter-spacing: 0;
    text-align: center;
}

.iws-page .iws-copy p {
    font: 400 16px/27px Outfit;
    color: var(--iws-muted);
    margin: 0 0 16px;
    text-align: left;
}

.iws-page .iws-section-head p,
.iws-page .iws-lede p {
    font: 400 16px/27px Outfit;
    color: var(--iws-muted);
    max-width: 780px;
    margin: 20px auto 0;
    text-align: center;
}

.iws-page .iws-lede p + p {
    margin-top: 16px;
}

.iws-page .iws-copy p:last-child {
    margin-bottom: 0;
}

.iws-page .iws-lede {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.iws-page .iws-stack {
    margin-top: 48px;
}

.iws-page .iws-chip-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.iws-page .iws-chip-nav a {
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    border: 1px solid var(--iws-line);
    border-radius: 93px;
    color: var(--iws-ink);
    text-decoration: none;
    font: 500 14px/20px Outfit;
    background: #fff;
    transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.iws-page .iws-chip-nav a:hover,
.iws-page .iws-chip-nav a:focus-visible {
    border-color: var(--iws-pink);
    color: var(--iws-pink);
    box-shadow: 0 6px 18px rgba(246, 17, 74, 0.08);
}

.iws-page .iws-industry {
    scroll-margin-top: 120px;
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 22px;
    align-items: start;
    padding: 28px 30px;
    margin: 0 0 18px;
    background: #fff;
    border: 1px solid var(--iws-line);
    border-radius: var(--iws-radius);
    box-sizing: border-box;
}

.iws-page .iws-industry:last-child {
    margin-bottom: 0;
}

.iws-page .iws-industry:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.iws-page .iws-industry-icon {
    width: 64px;
    padding-top: 2px;
}

.iws-page .iws-industry-icon img {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.iws-page .iws-industry .iws-copy {
    min-width: 0;
}

.iws-page .iws-industry h2 {
    margin: 0 0 12px;
    padding-top: 8px;
    font: 800 28px/34px Outfit;
    color: var(--iws-ink);
    text-align: left;
}

.iws-page .iws-industry .iws-copy p {
    text-align: left;
}

.iws-page .iws-tech {
    display: inline-block;
    max-width: 100%;
    margin-top: 10px;
    padding: 8px 14px;
    border-radius: 93px;
    background: var(--iws-soft);
    color: var(--iws-ink);
    font: 500 13px/18px Outfit;
    white-space: normal;
    overflow-wrap: anywhere;
}

.iws-page .iws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 20px;
    margin-top: 32px;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
}

.iws-page .iws-grid-3 {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

.iws-page .iws-card {
    background: #fff;
    border: 1px solid var(--iws-line);
    border-radius: var(--iws-radius);
    padding: 26px;
    box-sizing: border-box;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iws-page .iws-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.iws-page .iws-card h3 {
    margin: 0 0 12px;
    font: 600 20px/1.35 Outfit;
    color: var(--iws-ink);
    text-align: left;
}

.iws-page .iws-card p {
    margin: 0;
    font: 400 16px/26px Outfit;
    color: var(--iws-muted);
    text-align: left;
}

.iws-page .iws-band {
    background: var(--iws-soft);
    padding: 72px 0;
    margin-top: 72px;
}

.iws-page .iws-band .small_container {
    max-width: 1080px;
}

.iws-page .iws-markets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.iws-page .iws-markets span {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 93px;
    background: #fff;
    border: 1px solid var(--iws-line);
    font: 600 14px/18px Outfit;
    color: var(--iws-ink);
}

.iws-page .iws-cta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.iws-page .iws-cta-row .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 28px;
    text-decoration: none;
}

.iws-page .iws-final-cta {
    background: transparent linear-gradient(93deg, #6d17f2 0%, #6d17f29e 100%) 0% 0% no-repeat padding-box;
    color: #fff;
    padding: 80px 33px 140px;
    margin-top: 72px;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
    max-width: 100%;
}

.iws-page .iws-final-cta .small_container {
    max-width: 780px;
}

.iws-page .iws-final-cta h2 {
    margin: 0 auto 18px;
    max-width: 780px;
    font: 800 36px/44px Outfit;
    color: #fff;
    text-align: center;
}

.iws-page .iws-final-cta p {
    max-width: 780px;
    margin: 0 auto 16px;
    font: 300 16px/27px Outfit;
    color: #fff;
    text-align: center;
}

.iws-page .iws-final-cta .iws-cta-row {
    justify-content: center;
    margin-top: 32px;
}

.iws-page .iws-final-cta .btn_back_fff {
    color: #fff;
}

.iws-page .iws-final-cta .btn_back {
    background: #fff;
    color: var(--iws-ink);
}

.iws-page .accordion {
    max-width: none;
    margin: 0;
}

.iws-page .accordian-wrap {
    margin: 0 0 20px;
}

.iws-page .accordion-header {
    text-align: left;
    padding: 22px 40px 22px 0;
}

.iws-page .accordion-content p {
    text-align: left;
    max-width: none;
    margin: 0;
}

@media (max-width: 991px) {
    .iws-page .iws-section-head h2,
    .iws-page .iws-final-cta h2 {
        font-size: 30px;
        line-height: 38px;
    }

    .iws-page .iws-industry h2 {
        font-size: 24px;
        line-height: 30px;
        padding-top: 4px;
    }
}

@media (max-width: 767px) {
    .iws-page .iws-section {
        margin-top: 40px;
    }

    .iws-page .iws-section-head h2,
    .iws-page .iws-industry h2,
    .iws-page .iws-final-cta h2 {
        overflow-wrap: anywhere;
    }

    .iws-page .iws-chip-nav a {
        max-width: 100%;
        white-space: normal;
        justify-content: center;
    }

    .iws-page .iws-industry {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 22px 20px;
    }

    .iws-page .iws-industry-icon {
        padding-top: 0;
    }

    .iws-page .iws-industry h2 {
        padding-top: 0;
    }

    .iws-page .iws-band,
    .iws-page .iws-final-cta {
        padding: 48px 20px 90px;
        margin-top: 48px;
    }

    .iws-page .iws-card {
        padding: 22px;
    }

    .iws-page .iws-hero-actions,
    .iws-page .iws-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .iws-page .iws-hero-actions .btn,
    .iws-page .iws-cta-row .btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .iws-page .iws-final-cta .iws-cta-row {
        align-items: stretch;
    }
}
