:root {
    --navy: #000b1a;
    --navy-2: #06152a;
    --blue: #0057c9;
    --blue-dark: #003f94;
    --orange: #f5821f;
    --gold: #f6a11a;
    --text: #101827;
    --muted: #5f6b7a;
    --line: #e7edf5;
    --soft: #f6f8fb;
    --white: #fff;
    --shadow: 0 10px 28px rgba(6, 21, 42, .12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 1.55;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(100% - 64px, 1140px);
    margin-inline: auto;
}

.topbar {
    background: #030303;
    color: #fff;
    font-size: 12px;
}

.topbar-inner,
.contact-strip,
.socials,
.nav-inner,
.nav-menu,
.card-title-row,
.stats-grid,
.footer-bottom .container {
    display: flex;
    align-items: center;
}

.topbar-inner {
    min-height: 30px;
    justify-content: space-between;
    gap: 18px;
}

.contact-strip {
    gap: 28px;
    flex-wrap: wrap;
}

.contact-strip a,
.contact-strip span,
.contact-list li {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.top-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    position: relative;
    color: var(--orange);
}

.top-icon::before,
.top-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid currentColor;
}

.top-icon.mail::before {
    border-radius: 2px;
}

.top-icon.mail::after {
    top: 2px;
    left: 1px;
    width: 8px;
    height: 5px;
    border-width: 0 0 2px 2px;
    transform: rotate(-45deg);
}

.top-icon.phone::before {
    width: 7px;
    height: 7px;
    border-width: 0 0 2px 2px;
    transform: rotate(-35deg);
}

.top-icon.phone::after {
    display: none;
}

.top-icon.pin::before {
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.top-icon.pin::after {
    inset: 4px;
    border-radius: 50%;
    border-width: 1px;
}

.socials,
.footer-socials {
    gap: 10px;
}

.socials a,
.footer-socials a {
    display: inline-grid;
    place-items: center;
    width: 23px;
    height: 23px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: 50%;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    min-height: 60px;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .05);
}

.brand-panel {
    position: absolute;
    left: 0;
    top: 0;
    width: 325px;
    height: 60px;
    background: var(--navy-2);
    clip-path: polygon(0 0, 100% 0, 87% 100%, 0 100%);
}

.brand {
    display: flex;
    width: 190px;
    height: 60px;
    align-items: center;
    justify-content: center;
    margin-left: 82px;
}

.brand img {
    width: 112px;
    height: 60px;
    object-fit: cover;
}

.nav-inner {
    min-height: 60px;
    justify-content: flex-end;
    gap: 34px;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 36px;
}

.nav-menu a {
    position: relative;
    display: block;
    padding: 22px 0 18px;
    font-size: 12px;
    font-weight: 700;
}

.nav-menu a.active,
.nav-menu a:hover {
    color: var(--orange);
}

.nav-menu a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 14px;
    height: 2px;
    background: var(--orange);
}

.quote-btn,
.btn,
.small-pill,
.outline-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 999px;
    font-weight: 700;
    white-space: nowrap;
}

.quote-btn {
    min-width: 118px;
    height: 36px;
    padding: 0 7px 0 20px;
    color: #fff;
    background: linear-gradient(90deg, var(--blue), var(--blue-dark));
    font-size: 12px;
}

.quote-btn span,
.btn span,
.small-pill span {
    display: inline-grid;
    place-items: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #fff;
    background: #020612;
}

.menu-toggle {
    display: none;
}

.hero {
    position: relative;
    min-height: 410px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(90deg, rgba(0, 10, 26, .98) 0%, rgba(0, 10, 26, .9) 38%, rgba(0, 10, 26, .12) 68%), url("../img/hero.jpg") center / cover no-repeat;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 85px;
}

.hero-welcome {
    color: var(--orange);
    font-size: 19px;
}

.hero h1 {
    margin: 0 0 14px;
    font-size: 42px;
    line-height: 1.08;
    font-weight: 800;
}

.hero p:not(.eyebrow) {
    max-width: 515px;
    margin: 0 0 25px;
    color: #e9eef7;
    font-size: 13px;
}

.btn {
    min-height: 36px;
    padding: 6px 6px 6px 20px;
    font-size: 12px;
}

.btn-blue {
    color: #fff;
    background: linear-gradient(90deg, var(--blue), var(--blue-dark));
}

.compact {
    min-height: 32px;
    padding-left: 18px;
}

.slider-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #08152a;
    font-size: 28px;
    cursor: pointer;
    transform: translateY(-50%);
}

.slider-prev {
    left: 22px;
}

.slider-next {
    right: 22px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 36px;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    opacity: .95;
}

.hero-dots button.active {
    background: var(--orange);
}

.page-hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(90deg, rgba(0, 10, 26, .97), rgba(0, 10, 26, .82), rgba(0, 10, 26, .36)), url("../img/hero.jpg") center / cover no-repeat;
}

.page-hero .container {
    min-height: 245px;
    display: grid;
    align-content: center;
}

.page-hero h1 {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.08;
}

.page-hero p:not(.eyebrow) {
    max-width: 590px;
    margin: 0;
    color: #e9eef7;
}

.section-pad {
    padding: 30px 0;
}

.about-section {
    background: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr .93fr;
    gap: 72px;
    align-items: center;
}

.about-image {
    width: 100%;
    min-height: 360px;
    border-radius: 9px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.eyebrow {
    margin: 0 0 4px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.line-left::before,
.section-heading .eyebrow::before,
.section-heading .eyebrow::after {
    content: "";
    display: inline-block;
    width: 28px;
    height: 1px;
    margin: 0 8px 4px 0;
    background: #f0c58e;
}

.section-heading .eyebrow::after {
    margin: 0 0 4px 8px;
}

h2 {
    margin: 0 0 14px;
    font-size: 28px;
    line-height: 1.16;
}

.about-copy p {
    max-width: 540px;
    margin: 0 0 12px;
    color: #465266;
}

.feature-list {
    margin: 16px 0 16px;
    padding: 0;
    list-style: none;
    font-weight: 700;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 8px 0;
}

.mini-icon {
    display: grid;
    width: 23px;
    height: 23px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--orange);
    font-size: 10px;
    text-transform: uppercase;
}

.section-heading {
    text-align: center;
    margin-bottom: 18px;
}

.section-heading h2 {
    margin-bottom: 5px;
}

.section-heading p:last-child {
    margin: 0;
    color: var(--muted);
}

.card-grid {
    display: grid;
    gap: 16px;
}

.division-grid {
    grid-template-columns: repeat(3, 1fr);
}

.division-card,
.eco-card,
.testimonial-card,
.news-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 7px 18px rgba(7, 22, 40, .07);
}

.division-card img {
    width: 100%;
    height: 205px;
    object-fit: cover;
}

.card-body,
.eco-body,
.news-body {
    padding: 19px 20px 20px;
}

.card-title-row {
    gap: 12px;
    margin-bottom: 12px;
}

.card-title-row h3 {
    margin: 0;
    font-size: 16px;
    color: #17427c;
}

.round-icon {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    place-items: center;
    border-radius: 50%;
    color: var(--orange);
    background: #061327;
    font-size: 14px;
}

.round-icon.orange {
    color: #fff;
    background: var(--orange);
}

.division-card p,
.eco-card p,
.news-card p {
    margin: 0 0 17px;
    color: #4c5a6e;
    font-size: 13px;
}

.small-pill {
    min-width: 126px;
    min-height: 32px;
    padding: 5px 5px 5px 16px;
    color: #fff;
    background: linear-gradient(90deg, var(--blue), var(--blue-dark));
    font-size: 11px;
}

.small-pill span {
    width: 22px;
    height: 22px;
}

.ecosystem-section {
    color: #fff;
    background: #000b18;
}

.section-heading.light p,
.section-heading.light h2 {
    color: #fff;
}

.section-heading.light .eyebrow {
    color: var(--orange);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.eco-card {
    border-color: rgba(255, 255, 255, .22);
}

.eco-card img {
    width: 100%;
    height: 144px;
    object-fit: cover;
}

.eco-body {
    color: var(--text);
}

.eco-body h3 {
    color: #101827;
}

.outline-pill {
    min-height: 28px;
    padding: 4px 6px 4px 15px;
    border: 1px solid #f1d5af;
    color: #24324b;
    background: #fff;
    font-size: 11px;
}

.outline-pill span {
    display: inline-grid;
    width: 20px;
    height: 20px;
    place-items: center;
    border-radius: 50%;
    color: var(--orange);
    background: #fff4e7;
}

.stats-strip {
    padding: 26px 0;
    background: #fff;
}

.stats-grid {
    justify-content: space-around;
    min-height: 92px;
    border: 1px solid var(--line);
    border-radius: 6px;
    box-shadow: 0 6px 18px rgba(4, 22, 48, .06);
}

.stat-item {
    display: grid;
    grid-template-columns: 46px auto;
    column-gap: 14px;
    align-items: center;
    min-width: 190px;
}

.stat-icon {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    position: relative;
    color: var(--orange);
}

.stat-icon::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 5px solid currentColor;
    border-radius: 7px;
}

.stat-icon.customers::before {
    border-radius: 50%;
    box-shadow: -14px 8px 0 -7px currentColor, 14px 8px 0 -7px currentColor;
}

.stat-icon.platform::before {
    border-radius: 50% 50% 12px 12px;
    border-top-color: transparent;
}

.stat-icon.calendar::before {
    border-radius: 4px;
    border-top-width: 10px;
}

.stat-item strong {
    font-size: 28px;
    line-height: 1;
}

.stat-item span:last-child {
    color: #39465a;
    font-size: 12px;
    font-weight: 700;
}

.testimonials {
    background: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.testimonial-card {
    padding: 22px 17px 18px;
    text-align: center;
}

.quote-mark {
    height: 28px;
    color: #064fbd;
    font-family: Georgia, serif;
    font-size: 44px;
    line-height: 34px;
}

.testimonial-card p {
    min-height: 120px;
    margin: 0 0 14px;
    font-size: 12px;
    color: #26344c;
}

.avatar {
    width: 46px;
    height: 46px;
    margin: 0 auto 7px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 35%, #f3c098 0 26%, #222 27% 34%, #154f99 35% 100%);
}

.testimonial-card h3 {
    margin: 0;
    color: #16417d;
    font-size: 13px;
}

.testimonial-card span {
    display: block;
    color: #667386;
    font-size: 11px;
}

.stars {
    margin-top: 8px;
    color: var(--gold);
    font-size: 13px;
    letter-spacing: 2px;
}

.news-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.news-title-row .compact {
    position: absolute;
    right: 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.news-img-wrap {
    position: relative;
}

.news-card img {
    width: 100%;
    height: 135px;
    object-fit: cover;
}

.date-badge {
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    width: 47px;
    height: 51px;
    place-items: center;
    color: #fff;
    background: var(--blue);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
}

.news-body {
    padding-top: 16px;
}

.news-body h3 {
    margin: 0 0 9px;
    font-size: 15px;
}

.news-body a {
    color: var(--blue-dark);
    font-size: 12px;
    font-weight: 700;
}

.partners {
    padding: 24px 0;
    background: #fff;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: center;
    gap: 22px;
    text-align: center;
}

.partner-grid span {
    color: #4a4f58;
    font-size: 28px;
    font-weight: 700;
}

.partner-grid span:nth-child(3) {
    font-family: Georgia, serif;
}

.partner-grid span:nth-child(4) {
    color: #1d2530;
}

.site-footer {
    color: #d8e0ec;
    background: #000b18;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .82fr 1fr .82fr 1.34fr;
    gap: 34px;
    padding: 34px 0 24px;
}

.footer-brand img {
    width: 122px;
    height: 66px;
    object-fit: cover;
    margin-bottom: 6px;
}

.footer-brand p {
    max-width: 170px;
    margin: 0 0 16px;
    color: #b8c5d5;
    font-size: 12px;
}

.footer-socials {
    display: flex;
}

.site-footer h3 {
    margin: 0 0 13px;
    color: #fff;
    font-size: 15px;
}

.site-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer li {
    margin: 8px 0;
    color: #c4cedb;
    font-size: 12px;
}

.site-footer li::before {
    content: "\203A";
    margin-right: 8px;
    color: var(--orange);
    font-weight: 700;
}

.site-footer .contact-list li {
    align-items: flex-start;
}

.site-footer .contact-list li::before {
    display: none;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom .container {
    justify-content: space-between;
    padding: 12px 0;
}

.footer-bottom p {
    margin: 0;
    color: #aeb9c8;
    font-size: 12px;
}

.footer-bottom a {
    margin-left: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 36px;
    align-items: start;
}

.contact-panel,
.contact-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 7px 18px rgba(7, 22, 40, .07);
}

.contact-panel {
    padding: 30px;
}

.contact-info-list {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.contact-info-list li {
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 2px 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.contact-info-list li:last-child {
    border-bottom: 0;
}

.contact-info-list .top-icon {
    grid-row: span 2;
    margin-top: 5px;
}

.contact-info-list strong {
    font-size: 14px;
}

.contact-info-list a,
.contact-info-list span:last-child {
    color: #59677b;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 30px;
}

.form-row {
    display: grid;
    gap: 7px;
}

.form-row label {
    color: #25324a;
    font-size: 13px;
    font-weight: 700;
}

.form-row input,
.form-row textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 7px;
    padding: 12px 13px;
    color: var(--text);
    background: #f9fbfe;
    font: inherit;
}

.form-row textarea {
    resize: vertical;
}

.form-submit {
    border: 0;
    justify-self: start;
    cursor: pointer;
}

@media (max-width: 1050px) {
    .brand-panel {
        width: 260px;
    }

    .brand {
        margin-left: 42px;
    }

    .nav-menu {
        gap: 22px;
    }

    .about-grid,
    .division-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ecosystem-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 760px) {
    .container {
        width: min(100% - 28px, 1140px);
    }

    .topbar-inner {
        align-items: flex-start;
        padding: 8px 0;
    }

    .contact-strip {
        display: grid;
        gap: 6px;
    }

    .socials {
        display: none;
    }

    .brand-panel {
        width: 205px;
    }

    .brand {
        width: 150px;
        margin-left: 20px;
    }

    .nav-inner {
        justify-content: flex-end;
    }

    .menu-toggle {
        display: grid;
        width: 38px;
        height: 36px;
        place-items: center;
        border: 1px solid var(--line);
        border-radius: 6px;
        background: #fff;
    }

    .menu-toggle span {
        display: block;
        width: 18px;
        height: 2px;
        background: #111827;
    }

    .nav-menu {
        position: absolute;
        left: 0;
        right: 0;
        top: 60px;
        display: none;
        padding: 10px 22px 16px;
        background: #fff;
        border-top: 1px solid var(--line);
        box-shadow: var(--shadow);
    }

    .nav-menu.open {
        display: block;
    }

    .nav-menu a {
        padding: 12px 0;
    }

    .nav-menu a.active::after {
        bottom: 8px;
        right: auto;
        width: 35px;
    }

    .quote-btn {
        min-width: 42px;
        width: 42px;
        padding: 0;
        font-size: 0;
    }

    .hero {
        min-height: 390px;
    }

    .hero-content {
        padding-top: 70px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .slider-nav {
        display: none;
    }

    .about-grid,
    .division-grid,
    .ecosystem-grid,
    .testimonial-grid,
    .news-grid,
    .partner-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        gap: 26px;
    }

    .about-image {
        min-height: 240px;
    }

    .section-pad {
        padding: 28px 0;
    }

    h2 {
        font-size: 24px;
    }

    .page-hero .container {
        min-height: 210px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
        padding: 22px;
    }

    .stat-item {
        min-width: 0;
    }

    .news-title-row {
        display: block;
    }

    .news-title-row .compact {
        position: static;
        margin: 5px auto 17px;
    }

    .partner-grid span {
        font-size: 24px;
    }

    .footer-bottom .container {
        display: block;
        text-align: center;
    }

    .footer-bottom a {
        display: inline-block;
        margin: 8px 10px 0;
    }
}

@media (max-width: 460px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        background-position: 59% center;
    }

    .hero p:not(.eyebrow) {
        max-width: 92%;
    }
}
