* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f6f8;
    color: #101828;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
}

button,
input {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: calc(100% - 40px);
    max-width: 1180px;
    margin: 0 auto;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #e4e7ec;
    transition: 0.2s ease;
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: flex;
    align-items: center;
}

.brand img {
    width: auto;
    height: 52px;
    max-width: 280px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-button {
    min-height: 43px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: 0.2s ease;
}

.nav-secondary {
    background: #ffffff;
    border: 1px solid #d0d5dd;
    color: #344054;
}

.nav-secondary:hover {
    border-color: #155eef;
    color: #155eef;
    background: #f8faff;
}

.nav-primary {
    background: #155eef;
    border: 1px solid #155eef;
    color: #ffffff;
}

.nav-primary:hover {
    background: #004eeb;
    border-color: #004eeb;
}


/* SEARCH */

.search-area {
    padding: 105px 0 100px;
    background: linear-gradient(
        180deg,
        #ffffff 0%,
        #fbfcfe 100%
    );
    border-bottom: 1px solid #e4e7ec;
}

.search-area-inner {
    max-width: 880px;
    text-align: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 19px;
    color: #155eef;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.search-area h1 {
    max-width: 780px;
    margin: 0 auto;
    color: #101828;
    font-size: 55px;
    line-height: 1.07;
    letter-spacing: -3px;
    font-weight: 800;
}

.search-area p {
    max-width: 700px;
    margin: 23px auto 0;
    color: #667085;
    font-size: 17px;
    line-height: 1.72;
}

.search-wrapper {
    position: relative;
    width: 100%;
    max-width: 730px;
    margin: 38px auto 0;
}

.search-control {
    width: 100%;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #d0d5dd;
    border-radius: 13px;
    box-shadow: 0 12px 35px rgba(16, 24, 40, 0.08);
}

.search-control:focus-within {
    border-color: #84adff;
    box-shadow:
        0 0 0 4px rgba(21, 94, 239, 0.08),
        0 12px 35px rgba(16, 24, 40, 0.08);
}

.search-control input {
    flex: 1;
    min-width: 0;
    height: 54px;
    padding: 0 17px;
    border: 0;
    outline: 0;
    background: transparent;
    color: #101828;
    font-size: 15px;
}

.search-control input::placeholder {
    color: #98a2b3;
}

.search-control button {
    height: 54px;
    padding: 0 30px;
    flex-shrink: 0;
    border: 0;
    border-radius: 9px;
    background: #155eef;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.search-control button:hover {
    background: #004eeb;
}

.search-results {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 500;
    width: 100%;
    max-height: 350px;
    padding: 6px;
    overflow-y: auto;
    background: #ffffff;
    border: 1px solid #e4e7ec;
    border-radius: 10px;
    box-shadow: 0 18px 45px rgba(16, 24, 40, 0.14);
    text-align: left;
}

.search-results.active {
    display: block;
}

.search-result {
    width: 100%;
    padding: 14px 16px;
    border: 0;
    border-radius: 7px;
    background: transparent;
    color: #101828;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.search-result:hover {
    background: #f2f4f7;
    color: #155eef;
}

.no-result {
    padding: 17px;
    color: #667085;
    font-size: 13px;
    text-align: center;
}

.search-note {
    max-width: 660px;
    margin: 18px auto 0;
    color: #98a2b3;
    font-size: 12px;
    line-height: 1.5;
}


/* SOLUTIONS */

.solutions {
    padding: 95px 0;
    background: #f7f8fa;
    border-bottom: 1px solid #e4e7ec;
}

.solutions-heading {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}

.solutions-heading > span {
    color: #155eef;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.solutions-heading h2 {
    margin-top: 12px;
    color: #101828;
    font-size: 40px;
    line-height: 1.15;
    letter-spacing: -1.8px;
}

.solutions-heading p {
    max-width: 650px;
    margin: 17px auto 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.7;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.solution-card {
    min-height: 270px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e4e7ec;
    border-radius: 13px;
    transition: 0.2s ease;
}

.solution-card:hover {
    transform: translateY(-3px);
    border-color: #d0d5dd;
    box-shadow: 0 15px 35px rgba(16, 24, 40, 0.07);
}

.featured-solution {
    border-color: #b2ccff;
    background: #fbfdff;
}

.solution-top {
    margin-bottom: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.solution-number {
    color: #155eef;
    font-size: 12px;
    font-weight: 800;
}

.solution-label {
    padding: 6px 9px;
    background: #f2f4f7;
    border-radius: 5px;
    color: #667085;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.7px;
}

.solution-card h3 {
    margin-bottom: 13px;
    color: #101828;
    font-size: 20px;
    line-height: 1.3;
}

.solution-card p {
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}

.solutions-bottom {
    margin-top: 28px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    background: #ffffff;
    border: 1px solid #e4e7ec;
    border-radius: 10px;
}

.solutions-bottom strong {
    color: #101828;
    font-size: 13px;
}

.solutions-bottom span {
    color: #667085;
    font-size: 12px;
}


/* PROCESS */

.process-section {
    padding: 90px 0;
    background: #f5f6f8;
}

.process-box {
    display: grid;
    grid-template-columns: 0.9fr 1.3fr;
    gap: 70px;
    padding: 62px;
    background: #0d1729;
    border: 1px solid #19253a;
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.15);
}

.process-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-kicker {
    color: #84adff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.process-copy h2 {
    color: #ffffff;
    font-size: 39px;
    line-height: 1.15;
    letter-spacing: -1.7px;
    margin-bottom: 20px;
}

.process-copy p {
    max-width: 470px;
    color: #a8b3c5;
    font-size: 14px;
    line-height: 1.8;
}

.process-button {
    width: fit-content;
    min-height: 48px;
    margin-top: 28px;
    padding: 0 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #155eef;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.process-button:hover {
    background: #004eeb;
}

.process-flow {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-item {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 17px;
    align-items: center;
}

.process-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #34508a;
    border-radius: 10px;
    background: #13213a;
    color: #84adff;
    font-size: 12px;
    font-weight: 800;
}

.process-item-text span {
    display: block;
    margin-bottom: 4px;
    color: #667085;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.8px;
}

.process-item-text strong {
    display: block;
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 15px;
}

.process-item-text p {
    color: #98a2b3;
    font-size: 12px;
    line-height: 1.5;
}

.process-divider {
    width: 1px;
    height: 24px;
    margin: 6px 0 6px 23px;
    background: #344054;
}


/* SECTORS */

.sector-section {
    padding: 90px 0;
    background: #ffffff;
}

.section-title {
    max-width: 670px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-title > span {
    color: #155eef;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.section-title h2 {
    margin-top: 8px;
    color: #101828;
    font-size: 41px;
    letter-spacing: -1.8px;
}

.section-title p {
    margin-top: 13px;
    color: #667085;
    font-size: 14px;
    line-height: 1.65;
}

.sector-card {
    margin-bottom: 40px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e4e7ec;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
    transition: 0.2s ease;
}

.sector-card:hover {
    transform: translateY(-2px);
    border-color: #d0d5dd;
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.09);
}

.sector-card.highlight {
    border-color: #155eef;
    box-shadow:
        0 0 0 3px rgba(21, 94, 239, 0.1),
        0 18px 40px rgba(16, 24, 40, 0.09);
}

.sector-visual {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #eaecf0;
}

.sector-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sector-details {
    padding: 27px;
}

.sector-details h3 {
    margin-bottom: 21px;
    color: #101828;
    text-align: center;
    font-size: 26px;
    font-weight: 800;
}

.sector-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.button {
    min-height: 56px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

.primary-button {
    background: #155eef;
    color: #ffffff;
}

.primary-button:hover {
    background: #004eeb;
}

.secondary-button {
    background: #101828;
    color: #ffffff;
}

.secondary-button:hover {
    background: #1d2939;
}


/* FOOTER */

.site-footer {
    padding: 36px 0;
    background: #0c111d;
    color: #98a2b3;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-brand img {
    width: auto;
    height: 48px;
    object-fit: contain;
}

.footer-company {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-company strong {
    color: #ffffff;
    font-size: 13px;
}

.footer-company span {
    color: #667085;
    font-size: 11px;
}

.footer-inner p {
    font-size: 11px;
}


/* TABLET */

@media (max-width: 950px) {

    .search-area h1 {
        font-size: 46px;
    }

    .solution-grid {
        grid-template-columns: 1fr;
    }

    .solution-card {
        min-height: auto;
    }

    .process-box {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .sector-visual {
        height: 400px;
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .container {
        width: calc(100% - 20px);
    }

    .header-inner {
        min-height: 68px;
        gap: 8px;
    }

    .brand img {
        height: 38px;
        max-width: 170px;
    }

    .main-nav {
        gap: 5px;
    }

    .nav-button {
        min-height: 37px;
        padding: 0 9px;
        font-size: 9px;
    }

    .main-nav .nav-secondary:nth-child(2) {
        display: none;
    }

    .search-area {
        padding: 65px 0;
    }

    .eyebrow {
        font-size: 9px;
    }

    .search-area h1 {
        font-size: 35px;
        letter-spacing: -1.5px;
    }

    .search-area p {
        font-size: 14px;
    }

    .search-wrapper {
        margin-top: 28px;
    }

    .search-control {
        padding: 6px;
        gap: 5px;
    }

    .search-control input {
        height: 48px;
        padding: 0 9px;
        font-size: 12px;
    }

    .search-control button {
        height: 48px;
        padding: 0 13px;
        font-size: 11px;
    }

    .solutions {
        padding: 60px 0;
    }

    .solutions-heading h2 {
        font-size: 29px;
    }

    .solution-card {
        padding: 23px;
    }

    .solutions-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-section {
        padding: 55px 0;
    }

    .process-box {
        padding: 30px 22px;
        border-radius: 14px;
        gap: 38px;
    }

    .process-copy h2 {
        font-size: 29px;
        letter-spacing: -1px;
    }

    .process-copy p {
        font-size: 13px;
    }

    .process-button {
        width: 100%;
    }

    .process-item {
        grid-template-columns: 47px 1fr;
        gap: 13px;
    }

    .process-icon {
        width: 43px;
        height: 43px;
        font-size: 11px;
    }

    .sector-section {
        padding: 55px 0;
    }

    .section-title h2 {
        font-size: 30px;
    }

    .sector-card {
        margin-bottom: 25px;
        border-radius: 11px;
    }

    .sector-visual {
        height: 270px;
    }

    .sector-details {
        padding: 18px 11px 13px;
    }

    .sector-details h3 {
        margin-bottom: 16px;
        font-size: 20px;
    }

    .sector-actions {
        grid-template-columns: 1fr 1fr;
        gap: 7px;
    }

    .button {
        min-height: 49px;
        padding: 0 5px;
        font-size: 11px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

}