:root {
    --navy: #071525;
    --ink: #10243d;
    --blue: #1478e8;
    --black: #000;
    --cyan: #43d4e8;
    --mist: #f3f7fb;
    --line: #dce5ef;
    --white: #fff;
    --muted: #607187;
    --serif: Georgia, 'Times New Roman', serif
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    background: var(--white);
    color: var(--ink);
    font: 16px/1.65 Arial, Helvetica, sans-serif
}

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

p {
    margin: 0 0 1.15rem
}

h1,
h2,
h3 {
    line-height: 1.12;
    margin: 0 0 1rem;
    letter-spacing: -.035em
}

h1 {
    font: clamp(2.7rem, 6vw, 5.5rem) var(--serif)
}

h2 {
    font: clamp(2rem, 3.8vw, 3.5rem) var(--serif)
}

h3 {
    font-size: 1.25rem
}

.site-header {
    height: 82px;
    display: flex;
    align-items: center;
    padding: 0 5vw;
    border-bottom: 1px solid #e8eef4;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 20
}

.main-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 700;
    line-height: 1.05
}

.brand small {
    display: block;
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: .1em;
    color: var(--muted);
    margin-top: 4px
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 39px;
    height: 39px;
    color: #fff;
    background: var(--blue);
    font: 700 15px var(--serif);
    border-radius: 5px
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 23px;
    font-size: 14px
}

.nav-links>a:not(.button) {
    padding: 29px 0 25px;
    border-bottom: 3px solid transparent
}

.nav-links>a.active {
    color: var(--blue);
    border-color: var(--blue)
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--blue);
    color: #fff;
    padding: 14px 21px;
    border: 1px solid var(--blue);
    font-weight: 700;
    border-radius: 3px;
    cursor: pointer;
    transition: .2s
}

.button:hover {
    background: #0764cc;
    transform: translateY(-2px)
}

.button-small {
    padding: 10px 14px
}

.button-light {
    background: #fff;
    color: var(--navy);
    border-color: #fff
}

.text-link,
.card a,
.service-item a {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue)
}

.skip-link {
    position: absolute;
    left: -999px
}

.skip-link:focus {
    left: 10px;
    top: 10px;
    z-index: 99;
    background: #fff;
    padding: 10px
}

.hero {
    min-height: 620px;
    display: grid;
    grid-template-columns: 1.18fr .82fr;
    gap: 55px;
    align-items: center;
    padding: 7vw 9vw;
    background: linear-gradient(120deg, #f5f9fd, #e8f2fb)
}

.hero-copy h1 {
    max-width: 820px
}

.hero h1 em {
    font-style: italic;
    color: var(--blue)
}

.lead {
    font-size: 1.18rem;
    color: var(--muted);
    max-width: 710px
}

.eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    color: var(--blue);
    margin-bottom: 16px
}

.actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 30px
}

.hero-visual {
    height: 390px;
    position: relative;
    display: grid;
    place-items: center
}

.tech-card {
    position: relative;
    z-index: 2;
    width: 270px;
    padding: 28px;
    background: var(--navy);
    color: #fff;
    box-shadow: 20px 24px 0 #c7e4f5
}

.tech-card small {
    display: block;
    letter-spacing: .13em;
    font-size: 9px;
    color: #9fc9ed;
    margin: 17px 0 12px
}

.tech-card strong {
    font: 27px var(--serif)
}

.status-dot {
    width: 9px;
    height: 9px;
    display: block;
    border-radius: 50%;
    background: #64e2b7
}

.metric {
    margin-top: 26px;
    border-top: 1px solid #365069;
    padding-top: 12px;
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #b7c7d5
}

.metric b {
    color: #64e2b7
}

.orbit {
    position: absolute;
    border: 1px solid #8ac7ed;
    border-radius: 50%
}

.orbit-a {
    width: 355px;
    height: 355px
}

.orbit-b {
    width: 440px;
    height: 220px;
    transform: rotate(-35deg)
}

.proof-bar {
    background: var(--navy);
    padding: 24px 9vw;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.proof-bar p {
    margin: 0;
    font-size: 13px
}

.proof-bar div {
    display: flex;
    gap: 22px;
    color: #9eb9d0;
    font-size: 10px;
    letter-spacing: .1em
}

.section {
    padding: 90px 9vw
}

.section-tint {
    background: var(--mist)
}

.section-dark {
    background: var(--navy);
    color: #fff
}

.section-dark .eyebrow {
    color: var(--cyan)
}

.section-dark p {
    color: #b6c8d9
}

.section-intro {
    max-width: 760px;
    margin-bottom: 42px
}

.section-intro.centered {
    text-align: center;
    margin-inline: auto
}

.grid {
    display: grid;
    gap: 20px
}

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

.card {
    padding: 29px;
    background: #fff;
    border: 1px solid var(--line);
    transition: .25s
}

.card:hover {
    box-shadow: 0 15px 32px #12243d16;
    transform: translateY(-5px)
}

.card p {
    color: var(--muted)
}

.icon-box {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    background: #e4f2ff;
    color: var(--blue);
    margin-bottom: 23px
}

.icon-box svg,
.contact-aside svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9vw
}

.process-list {
    list-style: none;
    margin: 0;
    padding: 0
}

.process-list li {
    display: flex;
    gap: 20px;
    border-top: 1px solid #365069;
    padding: 17px 0
}

.process-list li>span {
    color: var(--cyan);
    font-weight: bold
}

.process-list h3 {
    margin: 0;
    font-size: 18px
}

.process-list p {
    margin: 3px 0 0
}

.capabilities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line)
}

.capabilities span {
    padding: 18px 30px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    font-weight: bold;
    color: #41536b;
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.capabilities .specialty-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex: 0 0 auto
}

.capabilities .specialty-icon-dataflex {
    padding: 4px;
    border-radius: 5px;
    background: var(--black)
}

.cta-section {
    padding: 90px 9vw;
    text-align: center;
    background: linear-gradient(135deg, #0875df, #0758b9);
    color: #fff
}

.cta-section .eyebrow {
    color: #bce9ff
}

.cta-section h2 {
    max-width: 730px;
    margin-inline: auto
}

.cta-section p:not(.eyebrow) {
    color: #d8edff;
    max-width: 600px;
    margin-inline: auto
}

.cta-section .button {
    margin-top: 18px;
    background: #fff;
    color: var(--blue);
    border-color: #fff
}

.page-hero {
    padding: 95px 17vw 70px;
    background: var(--mist)
}

.page-hero.compact {
    padding-bottom: 50px
}

.page-hero h1 {
    max-width: 960px
}

.number,
.solution-index {
    color: var(--blue);
    font: bold 12px Arial;
    letter-spacing: .1em
}

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

.timeline article {
    border-top: 3px solid var(--blue);
    padding-top: 17px
}

.timeline b {
    font-size: 18px
}

.timeline p {
    margin-top: 9px;
    color: var(--muted)
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line)
}

.service-item {
    padding: 28px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.service-item h2 {
    font: 24px var(--serif)
}

.service-item p {
    color: var(--muted);
    min-height: 76px
}

.solution-row {
    display: grid;
    grid-template-columns: 100px minmax(0, 700px);
    gap: 35px;
    padding: 48px 0;
    border-top: 1px solid var(--line)
}

.solution-index {
    font-size: 25px
}

.check-list {
    padding: 0;
    list-style: none
}

.check-list li {
    margin: 10px 0
}

.check-list li:before {
    content: '✓';
    color: var(--blue);
    font-weight: bold;
    margin-right: 10px
}

.dark-cards .card {
    background: #0d2742;
    border-color: #254460
}

.dark-cards .card p {
    color: #b6c8d9
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.portfolio-card {
    padding: 38px;
    background: var(--navy);
    color: #fff;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: end
}

.portfolio-card:nth-child(2),
.portfolio-card:nth-child(3) {
    background: #126cc8
}

.portfolio-card p {
    color: #d4e1ed
}

.tag {
    font-size: 10px;
    letter-spacing: .14em;
    color: #87d5ff;
    font-weight: bold;
    margin-bottom: auto
}

.portfolio-card h2 {
    font-size: 29px
}

.portfolio-card div {
    display: flex;
    gap: 7px;
    flex-wrap: wrap
}

.portfolio-card div span {
    font-size: 11px;
    border: 1px solid #ffffff55;
    padding: 4px 7px
}

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

.testimonial {
    margin: 0;
    padding: 30px;
    border: 1px solid var(--line)
}

.testimonial svg {
    width: 28px;
    height: 28px;
    fill: var(--blue)
}

.testimonial p {
    font: 16px/1.55 var(--serif);
    margin-top: 20px
}

.testimonial footer {
    font-size: 12px;
    color: var(--muted);
    border-top: 1px solid var(--line);
    padding-top: 16px
}

.contact-section {
    display: grid;
    grid-template-columns: .7fr 1.3fr;
    gap: 8vw
}

.contact-aside a {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--blue);
    font-weight: bold;
    margin: 18px 0
}

.contact-aside p {
    margin-top: 30px;
    color: var(--muted)
}

.contact-form {
    padding: 34px;
    background: var(--mist)
}

label {
    display: block;
    font-size: 13px;
    font-weight: bold;
    margin-bottom: 17px
}

input,
textarea,
select {
    width: 100%;
    display: block;
    margin-top: 6px;
    padding: 12px;
    border: 1px solid #bdcada;
    background: #fff;
    border-radius: 2px;
    font: 16px Arial
}

input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #81bdf2;
    border-color: var(--blue)
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.consent {
    display: flex;
    align-items: start;
    gap: 9px;
    font-weight: normal
}

.consent input {
    width: 16px;
    margin-top: 4px
}

.consent a {
    color: var(--blue);
    text-decoration: underline
}

.form-honeypot {
    position: absolute;
    left: -9999px
}

.form-feedback {
    margin: 14px 0 0;
    font-weight: bold
}

.form-feedback.error {
    color: #b42318
}

.form-feedback.success {
    color: #08764e
}

.legal-content {
    max-width: 950px
}

.legal-content h2 {
    font: 25px var(--serif);
    margin-top: 38px
}

.legal-content p {
    color: #43566d
}

.not-found {
    padding: 140px 9vw;
    text-align: center;
    min-height: 60vh
}

.not-found h1 {
    max-width: 750px;
    margin-inline: auto
}

.site-footer {
    background: #04101d;
    color: #c2d1df;
    padding: 55px 9vw 22px
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px
}

.footer-brand {
    color: #fff
}

.site-footer h2 {
    font: 700 12px Arial;
    letter-spacing: .12em;
    color: #fff
}

.site-footer section>a:not(.brand) {
    display: block;
    margin: 9px 0;
    font-size: 14px
}

.site-footer p {
    margin-top: 15px;
    font-size: 14px;
    max-width: 350px
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #223748;
    margin-top: 42px;
    padding-top: 20px;
    font-size: 12px
}

.whatsapp {
    position: fixed;
    right: 23px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1bae63;
    color: #fff;
    padding: 12px 16px;
    border-radius: 30px;
    z-index: 10;
    font-weight: bold;
    font-size: 13px;
    box-shadow: 0 6px 20px #0003
}

.whatsapp svg {
    width: 20px;
    height: 20px;
    fill: currentColor
}

.menu-toggle {
    display: none;
    background: none;
    border: 0
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0)
}

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

.partner-card {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 28px;
    background: #fff;
    border: 1px solid var(--line);
    transition: .25s
}

.partner-card:hover {
    box-shadow: 0 15px 32px #12243d16;
    transform: translateY(-5px)
}

.logo-placeholder {
    min-height: 112px;
    display: grid;
    place-items: center;
    padding: 18px;
    border: 1px dashed #9bb2c9;
    background: var(--mist);
    color: #607187;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-align: center
}

.partner-card h3 {
    margin-bottom: 10px
}

.partner-card p {
    color: var(--muted)
}

.partner-card h4 {
    margin: 22px 0 9px;
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue)
}

.partner-card ul {
    margin: 0;
    padding-left: 18px;
    color: #41536b;
    font-size: 14px
}

.partner-card li+li {
    margin-top: 6px
}

.testimonial-client {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 22px
}

.logo-placeholder-small {
    min-width: 78px;
    min-height: 58px;
    padding: 9px;
    font-size: 8px
}

.testimonial-client strong,
.testimonial-client span {
    display: block
}

.testimonial-client strong {
    font-size: 14px;
    margin-bottom: 3px
}

.testimonial-client span {
    font-size: 12px;
    line-height: 1.35;
    color: var(--muted)
}

.testimonial-client-empty {
    min-height: 58px
}

.client-logo-empty,
.client-name-empty {
    display: block;
    background: var(--line)
}

.client-logo-empty {
    width: 78px;
    height: 58px
}

.client-name-empty {
    width: 110px;
    height: 10px
}

.testimonial-invitation footer a {
    color: var(--blue);
    font-weight: 700
}

.location-detail {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line)
}

.location-detail span,
.location-detail strong,
.location-detail small {
    display: block
}

.location-detail span {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: bold
}

.location-detail strong {
    margin-top: 5px;
    color: var(--ink)
}

.location-detail small {
    margin-top: 3px;
    color: var(--muted)
}

.footer-location {
    margin: 12px 0 !important;
    color: #8fa8bf
}

.client-logo {
  width: 78px;
  height: 58px;
  flex: 0 0 78px;
  display: block;
  object-fit: contain;
}
