:root {
    --navy-950: #041426;
    --navy-900: #071b33;
    --navy-800: #0d2c4e;
    --navy-700: #16436d;
    --cyan: #18c1cc;
    --cyan-soft: #8fe9e8;
    --coral: #ff8c6b;
    --lime: #c7ef76;
    --paper: #f5f8fa;
    --white: #ffffff;
    --ink: #10243a;
    --muted: #607083;
    --line: rgba(16, 36, 58, .13);
    --display: "Newsreader", Georgia, serif;
    --sans: "Manrope", Arial, sans-serif;
    --shadow: 0 24px 70px rgba(6, 27, 51, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(1200px, calc(100% - 48px));
    margin-inline: auto;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: -90px;
    left: 16px;
    z-index: 999;
    padding: 12px 18px;
    color: var(--white);
    background: var(--navy-950);
    border-radius: 8px;
}

.skip-link:focus {
    top: 12px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

.site-header.scrolled {
    color: var(--ink);
    background: rgba(245, 248, 250, .94);
    box-shadow: 0 10px 30px rgba(6, 27, 51, .08);
    backdrop-filter: blur(18px);
}

.nav-shell {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
}

.brand img {
    width: 46px;
    height: 46px;
    border-radius: 13px;
}

.brand > span {
    display: grid;
    gap: 5px;
}

.brand strong {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.02em;
    white-space: nowrap;
}

.brand small {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 650;
}

.primary-nav > a:not(.nav-cta) {
    position: relative;
}

.primary-nav > a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    background: var(--cyan);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .2s ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 17px;
    color: var(--navy-950);
    background: var(--cyan-soft);
    border-radius: 999px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    padding: 10px;
    color: inherit;
    background: transparent;
    border: 0;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.hero {
    position: relative;
    min-height: 820px;
    display: grid;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(4, 20, 38, .98) 0%, rgba(4, 20, 38, .92) 38%, rgba(7, 27, 51, .66) 66%, rgba(7, 27, 51, .28) 100%),
        linear-gradient(0deg, rgba(4, 20, 38, .48), transparent 55%),
        url("../images/enterprise-consulting-hero.webp") center / cover no-repeat;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    opacity: .11;
    background-image:
        linear-gradient(rgba(143, 233, 232, .18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(143, 233, 232, .18) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(90deg, transparent, #000 30%, #000);
}

.hero-orb {
    position: absolute;
    border: 1px solid rgba(143, 233, 232, .24);
    border-radius: 50%;
}

.hero-orb::before,
.hero-orb::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(143, 233, 232, .15);
    border-radius: inherit;
}

.hero-orb::before {
    inset: 34px;
}

.hero-orb::after {
    inset: 76px;
}

.hero-orb-one {
    top: -180px;
    right: -150px;
    width: 580px;
    height: 580px;
}

.hero-orb-two {
    bottom: -220px;
    left: 36%;
    width: 440px;
    height: 440px;
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    align-items: center;
    gap: 76px;
    padding-top: 110px;
    padding-bottom: 70px;
}

.eyebrow {
    margin: 0 0 17px;
    color: var(--navy-700);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .19em;
    text-transform: uppercase;
}

.eyebrow.light {
    color: var(--cyan-soft);
}

.hero h1,
.section-heading h2,
.impact-copy h2,
.about-copy h2,
.procurement-layout h2,
.contact-copy h2 {
    margin: 0;
    font-family: var(--display);
    font-weight: 500;
    letter-spacing: -.04em;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(54px, 6vw, 82px);
    line-height: .96;
}

.hero h1 em,
.section-heading h2 em,
.approach-heading h2 em,
.contact-copy h2 em {
    color: var(--cyan-soft);
    font-weight: 500;
}

.hero-lead {
    max-width: 650px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 21px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 750;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    color: var(--navy-950);
    background: var(--cyan-soft);
    box-shadow: 0 15px 35px rgba(24, 193, 204, .18);
}

.button-primary:hover {
    background: #a9f3f1;
}

.button-ghost {
    color: var(--white);
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .28);
}

.button-dark {
    color: var(--white);
    background: var(--navy-900);
    border: 0;
}

.button-whatsapp {
    color: var(--white);
    background: #178c54;
    border: 0;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 42px;
}

.hero-tags span {
    padding: 7px 11px;
    color: rgba(255, 255, 255, .68);
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.delivery-card {
    overflow: hidden;
    background: rgba(4, 20, 38, .72);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 22px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, .25);
    backdrop-filter: blur(18px);
}

.delivery-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 23px 24px;
    background: rgba(255, 255, 255, .055);
    border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.delivery-card-head > div {
    display: grid;
    gap: 4px;
}

.delivery-card-head small {
    color: var(--cyan-soft);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.delivery-card-head strong {
    font-size: 16px;
}

.live-dot {
    position: relative;
    padding: 5px 9px 5px 20px;
    color: var(--lime);
    background: rgba(199, 239, 118, .08);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.live-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 8px;
    width: 6px;
    height: 6px;
    background: var(--lime);
    border-radius: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 12px var(--lime);
}

.delivery-flow {
    margin: 0;
    padding: 12px 24px;
    list-style: none;
}

.delivery-flow li {
    display: grid;
    grid-template-columns: 36px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.delivery-flow li:last-child {
    border-bottom: 0;
}

.delivery-flow li > span {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    color: var(--cyan-soft);
    background: rgba(24, 193, 204, .09);
    border: 1px solid rgba(143, 233, 232, .2);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
}

.delivery-flow li > div {
    display: grid;
    gap: 2px;
}

.delivery-flow strong {
    font-size: 15px;
}

.delivery-flow small {
    color: rgba(255, 255, 255, .54);
    font-size: 12px;
}

.delivery-flow li > b {
    color: var(--coral);
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.delivery-foot {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 16px 20px;
    color: rgba(255, 255, 255, .48);
    background: rgba(0, 0, 0, .13);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .07em;
    text-align: center;
    text-transform: uppercase;
}

.signal-strip {
    position: relative;
    z-index: 3;
    color: var(--white);
    background: var(--navy-800);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.signal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.signal-grid > div {
    display: grid;
    min-height: 154px;
    align-content: center;
    gap: 12px;
    padding: 25px 30px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.signal-grid > div:first-child {
    border-left: 1px solid rgba(255, 255, 255, .1);
}

.signal-grid strong {
    color: var(--cyan-soft);
    font-family: var(--display);
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
}

.signal-grid span {
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
}

.signal-grid > div:nth-child(2) strong {
    font-size: 34px;
}

.section {
    padding: 118px 0;
}

.section-heading {
    margin-bottom: 58px;
}

.section-heading h2,
.impact-copy h2,
.about-copy h2,
.procurement-layout h2,
.contact-copy h2 {
    font-size: clamp(42px, 5.1vw, 68px);
    line-height: 1;
}

.section-heading h2 em,
.contact-copy h2 em {
    color: var(--navy-700);
}

.split-heading {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 70px;
}

.split-heading > p,
.heading-support > p {
    margin: 0 0 5px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.heading-support {
    display: grid;
    gap: 24px;
    align-self: stretch;
    align-content: end;
    padding: 8px 0 8px 32px;
    border-left: 2px solid rgba(24, 193, 204, .34);
}

.support-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.support-points span {
    display: grid;
    min-height: 66px;
    align-content: center;
    padding: 10px 12px;
    color: var(--navy-700);
    background: rgba(24, 193, 204, .08);
    border: 1px solid rgba(24, 193, 204, .17);
    border-radius: 9px;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.35;
}

.centered-heading {
    max-width: 820px;
    margin-inline: auto;
    text-align: center;
}

.centered-heading > p:last-child {
    max-width: 660px;
    margin: 23px auto 0;
    color: var(--muted);
}

.capabilities-section {
    background:
        radial-gradient(circle at 8% 18%, rgba(24, 193, 204, .09), transparent 24%),
        var(--paper);
}

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

.capability-visual {
    position: relative;
    overflow: hidden;
    height: 470px;
    margin: 0 0 26px;
    background: var(--navy-900);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.capability-visual::after {
    content: "";
    position: absolute;
    inset: 35% 0 0;
    background: linear-gradient(transparent, rgba(4, 20, 38, .94));
}

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

.capability-visual figcaption {
    position: absolute;
    right: 32px;
    bottom: 28px;
    left: 32px;
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    color: var(--white);
}

.capability-visual figcaption span {
    flex: 0 0 auto;
    color: var(--cyan-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.capability-visual figcaption strong {
    max-width: 620px;
    font-family: var(--display);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.08;
    text-align: right;
}

.capability-card {
    position: relative;
    grid-column: span 2;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(6, 27, 51, .05);
    transition: transform .25s ease, box-shadow .25s ease;
}

.capability-card:nth-child(4),
.capability-card:nth-child(5) {
    grid-column: span 3;
    min-height: 300px;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.capability-primary {
    color: var(--white);
    background:
        radial-gradient(circle at 95% 5%, rgba(24, 193, 204, .22), transparent 35%),
        var(--navy-900);
    border-color: transparent;
}

.card-index {
    position: absolute;
    top: 24px;
    right: 26px;
    color: rgba(16, 36, 58, .22);
    font-family: var(--display);
    font-size: 54px;
    line-height: 1;
}

.capability-primary .card-index {
    color: rgba(255, 255, 255, .15);
}

.card-label {
    margin: 0 0 42px;
    color: var(--navy-700);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.card-label span {
    display: inline-flex;
    margin-left: 7px;
    padding: 4px 7px;
    color: var(--navy-950);
    background: var(--cyan-soft);
    border-radius: 999px;
    font-size: 8px;
    letter-spacing: .08em;
}

.capability-primary .card-label {
    color: var(--cyan-soft);
}

.capability-card h3 {
    max-width: 320px;
    margin: 0;
    font-family: var(--display);
    font-size: 29px;
    font-weight: 500;
    line-height: 1.05;
}

.capability-card > p:not(.card-label) {
    margin: 15px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.capability-primary > p:not(.card-label) {
    color: rgba(255, 255, 255, .66);
}

.capability-card ul {
    display: grid;
    gap: 8px;
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
}

.capability-card li {
    position: relative;
    padding-left: 16px;
    color: rgba(255, 255, 255, .67);
    font-size: 13px;
}

.capability-card li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 6px;
    height: 2px;
    background: var(--coral);
}

.capability-card > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 21px;
    color: var(--navy-700);
    border-top: 1px solid var(--line);
    font-size: 13px;
    font-weight: 800;
}

.capability-card > a span {
    font-size: 19px;
    transition: transform .2s ease;
}

.capability-card > a:hover span {
    transform: translateX(4px);
}

.ai-section {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 12% 15%, rgba(24, 193, 204, .2), transparent 27%),
        radial-gradient(circle at 90% 80%, rgba(255, 140, 107, .12), transparent 25%),
        var(--navy-950);
}

.ai-section::before {
    content: "";
    position: absolute;
    top: -230px;
    left: 46%;
    width: 620px;
    height: 620px;
    opacity: .38;
    border: 1px solid rgba(143, 233, 232, .24);
    border-radius: 50%;
    box-shadow:
        inset 0 0 0 70px rgba(143, 233, 232, .025),
        inset 0 0 0 140px rgba(143, 233, 232, .02);
}

.ai-layout {
    position: relative;
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    align-items: center;
    gap: 90px;
}

.ai-mark {
    display: grid;
    place-items: center;
    width: 82px;
    height: 82px;
    margin-bottom: 30px;
    color: var(--navy-950);
    background: var(--cyan-soft);
    border: 9px solid rgba(255, 255, 255, .08);
    border-radius: 24px;
    outline: 1px solid rgba(143, 233, 232, .25);
    outline-offset: 8px;
}

.ai-mark span {
    font-family: var(--display);
    font-size: 31px;
    font-weight: 600;
}

.ai-intro h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(46px, 5vw, 68px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.04em;
}

.ai-intro > p:not(.eyebrow) {
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .68);
}

.ai-intro .button {
    margin-top: 25px;
}

.ai-capabilities {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.ai-capabilities article {
    min-height: 235px;
    padding: 25px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.ai-capabilities article > span {
    display: grid;
    place-items: center;
    width: 37px;
    height: 37px;
    margin-bottom: 43px;
    color: var(--cyan-soft);
    background: rgba(24, 193, 204, .09);
    border: 1px solid rgba(143, 233, 232, .2);
    border-radius: 50%;
    font-size: 9px;
    font-weight: 800;
}

.ai-capabilities h3 {
    margin: 0;
    font-family: var(--display);
    font-size: 25px;
    font-weight: 500;
}

.ai-capabilities p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .59);
    font-size: 13px;
}

.impact-section {
    padding: 120px 0;
    color: var(--white);
    background:
        radial-gradient(circle at 18% 20%, rgba(24, 193, 204, .14), transparent 28%),
        linear-gradient(135deg, var(--navy-950), #0d2e4c);
}

.impact-layout {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: start;
    gap: 90px;
}

.impact-copy {
    position: sticky;
    top: 120px;
}

.impact-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, .66);
}

.impact-copy .button {
    margin-top: 20px;
}

.impact-photo {
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    overflow: hidden;
    min-height: 520px;
    margin: 72px 0 0;
    background: var(--navy-800);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px;
    box-shadow: 0 28px 65px rgba(0, 0, 0, .2);
}

.impact-photo-media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.impact-photo-media::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(transparent, rgba(4, 20, 38, .88));
}

.impact-photo-note {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
    color: var(--white);
    background:
        radial-gradient(circle at 90% 10%, rgba(24, 193, 204, .2), transparent 32%),
        var(--navy-950);
    border-left: 1px solid rgba(255, 255, 255, .13);
}

.impact-photo-note small {
    margin-bottom: 13px;
    color: var(--coral);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.impact-photo-note h3 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(32px, 3.6vw, 48px);
    font-weight: 500;
    line-height: 1.05;
}

.impact-photo-note > p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .65);
    font-size: 14px;
    line-height: 1.65;
}

.impact-photo-note ul {
    display: grid;
    gap: 11px;
    margin: 25px 0 0;
    padding: 21px 0 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, .14);
}

.impact-photo-note li {
    position: relative;
    padding-left: 14px;
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    font-weight: 700;
}

.impact-photo-note li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--cyan-soft);
    border-radius: 50%;
    transform: translateY(-50%);
}

.impact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impact-photo figcaption {
    position: absolute;
    right: 22px;
    bottom: 19px;
    left: 22px;
    z-index: 1;
    padding: 0;
    color: rgba(255, 255, 255, .66);
    font-size: 13px;
}

.impact-solutions {
    display: grid;
    gap: 12px;
}

.impact-solutions article {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 22px;
    padding: 27px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
}

.impact-solutions article > span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--navy-950);
    background: var(--cyan-soft);
    border-radius: 50%;
    font-size: 9px;
    font-weight: 800;
}

.impact-solutions h3 {
    margin: 0;
    font-family: var(--display);
    font-size: 25px;
    font-weight: 500;
}

.impact-solutions p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
}

.outcomes-section {
    background: var(--white);
}

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

.outcome-grid article {
    min-height: 270px;
    padding: 27px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.outcome-grid article > span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 42px;
    color: var(--navy-950);
    background: var(--cyan-soft);
    border-radius: 14px;
    font-family: var(--display);
    font-size: 24px;
}

.outcome-grid article:nth-child(2) > span {
    background: #ffd0c3;
}

.outcome-grid article:nth-child(3) > span {
    background: #e1f5aa;
}

.outcome-grid article:nth-child(4) > span {
    background: #d5d9ff;
}

.outcome-grid h3 {
    margin: 0;
    font-family: var(--display);
    font-size: 24px;
    font-weight: 500;
}

.outcome-grid p {
    margin: 12px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.approach-section {
    padding: 120px 0;
    color: var(--white);
    background: var(--navy-800);
}

.approach-heading h2 em {
    color: var(--cyan-soft);
}

.approach-heading > p {
    color: rgba(255, 255, 255, .62);
}

.heading-support-dark {
    border-left-color: rgba(143, 233, 232, .4);
}

.heading-support-dark > p {
    color: rgba(255, 255, 255, .72);
}

.heading-support-dark .support-points span {
    color: var(--white);
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .13);
}

.approach-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 70px 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.approach-steps li {
    min-height: 300px;
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.approach-steps li:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.approach-steps li > span {
    color: var(--cyan-soft);
    font-family: var(--display);
    font-size: 44px;
}

.approach-steps li > div {
    margin-top: 72px;
}

.approach-steps small {
    color: var(--coral);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.approach-steps h3 {
    margin: 7px 0 0;
    font-family: var(--display);
    font-size: 25px;
    font-weight: 500;
    line-height: 1.1;
}

.approach-steps p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, .56);
    font-size: 14px;
}

.operations-feature {
    padding: 110px 0;
    background: var(--white);
}

.operations-layout {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 80px;
}

.operations-photo {
    position: relative;
    overflow: hidden;
    min-height: 610px;
    margin: 0;
    background: var(--navy-900);
    border-radius: 22px 180px 22px 22px;
    box-shadow: var(--shadow);
}

.operations-photo::after {
    content: "";
    position: absolute;
    inset: 55% 0 0;
    background: linear-gradient(transparent, rgba(4, 20, 38, .9));
}

.operations-photo img {
    width: 100%;
    height: 610px;
    object-fit: cover;
}

.operations-photo figcaption {
    position: absolute;
    right: 28px;
    bottom: 24px;
    left: 28px;
    z-index: 1;
    color: var(--white);
    font-family: var(--display);
    font-size: 20px;
}

.operations-photo figcaption span {
    display: block;
    margin-bottom: 5px;
    color: var(--cyan-soft);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.operations-copy h2 {
    margin: 0;
    font-family: var(--display);
    font-size: clamp(42px, 4.8vw, 64px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -.04em;
}

.operations-copy > p:not(.eyebrow) {
    margin: 24px 0 0;
    color: var(--muted);
}

.operations-copy ul {
    display: grid;
    gap: 0;
    margin: 30px 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.operations-copy li {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 20px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.operations-copy li strong {
    color: var(--navy-700);
    font-size: 13px;
}

.operations-copy li span {
    color: var(--muted);
    font-size: 13px;
}

.about-section {
    background: var(--paper);
}

.about-layout {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    align-items: center;
    gap: 90px;
}

.about-panel {
    position: relative;
    min-height: 570px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 40px;
    color: var(--white);
    background:
        radial-gradient(circle at 70% 20%, rgba(24, 193, 204, .35), transparent 25%),
        linear-gradient(155deg, var(--navy-700), var(--navy-950));
    border-radius: 220px 220px 24px 24px;
}

.about-panel::before {
    content: "";
    position: absolute;
    top: 84px;
    left: 50%;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(143, 233, 232, .22);
    border-radius: 50%;
    transform: translateX(-50%);
}

.about-mark {
    position: absolute;
    top: 125px;
    left: 50%;
    display: grid;
    place-items: center;
    width: 170px;
    height: 170px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    transform: translateX(-50%);
    backdrop-filter: blur(12px);
}

.about-mark img {
    width: 90px;
    height: 90px;
    border-radius: 24px;
}

.about-panel > p {
    position: relative;
    margin: 0;
    font-family: var(--display);
    font-size: 34px;
    line-height: 1.1;
}

.about-coordinates {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
}

.about-coordinates span {
    padding: 5px 9px;
    color: rgba(255, 255, 255, .65);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.about-copy .lead {
    margin: 28px 0 17px;
    color: var(--navy-700);
    font-size: 19px;
    font-weight: 600;
}

.about-copy > p:not(.eyebrow, .lead) {
    color: var(--muted);
}

.values-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 38px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

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

.values-row strong {
    font-family: var(--display);
    font-size: 21px;
    font-weight: 500;
}

.values-row span {
    color: var(--muted);
    font-size: 12px;
}

.procurement-section {
    padding: 92px 0;
    color: var(--white);
    background:
        linear-gradient(110deg, rgba(4, 20, 38, .98), rgba(13, 44, 78, .94)),
        var(--navy-950);
}

.procurement-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px 90px;
}

.procurement-layout h2 {
    max-width: 620px;
}

.procurement-layout > div:first-child > p:not(.eyebrow) {
    color: rgba(255, 255, 255, .62);
}

.procurement-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.procurement-list span {
    position: relative;
    padding: 12px 12px 12px 27px;
    color: rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    font-size: 12px;
}

.procurement-list span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 12px;
    width: 6px;
    height: 6px;
    background: var(--lime);
    border-radius: 50%;
    transform: translateY(-50%);
}

.procurement-layout > .button {
    grid-column: 1 / -1;
    justify-self: start;
}

.contact-section {
    padding: 120px 0;
    background:
        radial-gradient(circle at 8% 85%, rgba(24, 193, 204, .1), transparent 27%),
        var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    align-items: start;
    gap: 85px;
}

.contact-copy {
    position: sticky;
    top: 120px;
}

.contact-copy > p:not(.eyebrow) {
    color: var(--muted);
}

.contact-links {
    display: grid;
    gap: 14px;
    margin-top: 38px;
}

.contact-links a {
    display: grid;
    gap: 3px;
}

.contact-links small {
    color: var(--navy-700);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.contact-links strong {
    font-size: 17px;
}

.contact-form {
    position: relative;
    display: grid;
    gap: 20px;
    padding: 38px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: #41566d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .03em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 13px 14px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid rgba(16, 36, 58, .17);
    border-radius: 9px;
    outline: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(24, 193, 204, .13);
}

.contact-form textarea {
    resize: vertical;
}

.form-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-actions .button {
    width: 100%;
}

.form-actions .button:disabled {
    opacity: .65;
    cursor: wait;
}

.form-note {
    margin: -7px 0 0;
    color: var(--muted);
    font-size: 11px;
    text-align: center;
}

.bot-field {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.site-footer {
    padding: 78px 0 24px;
    color: rgba(255, 255, 255, .62);
    background: var(--navy-950);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.35fr .72fr 1fr 1fr 1.05fr;
    gap: 34px;
    padding-bottom: 55px;
}

.brand-light {
    color: var(--white);
}

.footer-brand p {
    max-width: 390px;
    margin: 22px 0 0;
}

.footer-main h3 {
    margin: 4px 0 20px;
    color: var(--cyan-soft);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.footer-main h3 span {
    display: block;
    margin-top: 5px;
    color: var(--coral);
    font-size: 9px;
    letter-spacing: .17em;
}

.footer-main > div:not(.footer-brand) {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-main a,
.footer-main address {
    font-size: 13px;
    line-height: 1.7;
}

.footer-main a:hover {
    color: var(--cyan-soft);
}

.footer-main address {
    margin: 0 0 10px;
    font-style: normal;
}

.footer-office {
    padding-left: 18px;
    border-left: 1px solid rgba(255, 255, 255, .12);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 21px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 11px;
}

.mobile-contact {
    display: none;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 89;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 12px 16px;
    color: var(--white);
    background: #178c54;
    border-radius: 999px;
    box-shadow: 0 15px 35px rgba(15, 83, 49, .3);
    font-size: 12px;
    font-weight: 800;
}

.whatsapp-float b {
    font-size: 17px;
}

@media (max-width: 1040px) {
    .menu-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        inset: 84px 0 auto;
        display: grid;
        gap: 0;
        padding: 18px 24px 30px;
        color: var(--ink);
        background: var(--paper);
        box-shadow: 0 28px 45px rgba(6, 27, 51, .16);
        transform: translateY(-130%);
        transition: transform .25s ease;
    }

    .primary-nav.open {
        transform: translateY(0);
    }

    .primary-nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
    }

    .primary-nav .nav-cta {
        margin-top: 12px;
        padding: 14px 18px;
        justify-content: center;
        border-bottom: 0;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-layout,
    .impact-layout,
    .about-layout,
    .contact-layout,
    .operations-layout,
    .ai-layout {
        grid-template-columns: 1fr;
    }

    .hero-layout {
        gap: 55px;
    }

    .delivery-card {
        max-width: 680px;
    }

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

    .signal-grid > div:nth-child(2) {
        border-right: 0;
    }

    .signal-grid > div:nth-child(-n+2) {
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .capability-card,
    .capability-card:nth-child(4),
    .capability-card:nth-child(5) {
        grid-column: span 3;
    }

    .impact-copy,
    .contact-copy {
        position: static;
    }

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

    .approach-steps {
        grid-template-columns: 1fr 1fr;
    }

    .approach-steps li:nth-child(2) {
        border-right: 1px solid rgba(255, 255, 255, .15);
    }

    .about-panel {
        max-width: 560px;
    }

    .operations-photo {
        max-width: 720px;
    }

    .ai-intro {
        max-width: 760px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-capabilities {
        grid-column: 1 / -1;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 32px, 1200px);
    }

    .nav-shell {
        min-height: 72px;
    }

    .brand img {
        width: 40px;
        height: 40px;
    }

    .brand strong {
        font-size: 13px;
    }

    .brand small {
        font-size: 8px;
    }

    .primary-nav {
        top: 72px;
    }

    .hero {
        min-height: auto;
        background:
            linear-gradient(180deg, rgba(4, 20, 38, .72) 0%, rgba(4, 20, 38, .93) 52%, rgba(4, 20, 38, .99) 100%),
            linear-gradient(90deg, rgba(4, 20, 38, .62), rgba(4, 20, 38, .18)),
            url("../images/enterprise-consulting-hero.webp") 68% center / cover no-repeat;
    }

    .hero-layout {
        padding-top: 128px;
        padding-bottom: 75px;
    }

    .hero h1 {
        font-size: clamp(47px, 13.5vw, 64px);
    }

    .hero-lead {
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
    }

    .delivery-card-head {
        align-items: flex-start;
    }

    .delivery-flow {
        padding-inline: 18px;
    }

    .delivery-flow li {
        grid-template-columns: 32px 1fr;
    }

    .delivery-flow li > b {
        display: none;
    }

    .delivery-foot {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

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

    .signal-grid > div,
    .signal-grid > div:first-child {
        min-height: 132px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        border-left: 0;
    }

    .section,
    .impact-section,
    .approach-section,
    .contact-section,
    .operations-feature,
    .ai-section {
        padding: 82px 0;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2,
    .impact-copy h2,
    .about-copy h2,
    .procurement-layout h2,
    .contact-copy h2 {
        font-size: clamp(39px, 11.5vw, 54px);
    }

    .split-heading,
    .procurement-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .heading-support {
        padding: 22px 0 0;
        border-top: 2px solid rgba(24, 193, 204, .3);
        border-left: 0;
    }

    .support-points {
        grid-template-columns: 1fr;
    }

    .support-points span {
        min-height: 0;
        padding: 12px 14px;
    }

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

    .capability-visual {
        height: 390px;
    }

    .capability-visual figcaption {
        display: grid;
        gap: 8px;
    }

    .capability-visual figcaption strong {
        font-size: 24px;
        text-align: left;
    }

    .capability-card,
    .capability-card:nth-child(4),
    .capability-card:nth-child(5) {
        grid-column: auto;
        min-height: 320px;
    }

    .ai-layout {
        gap: 48px;
    }

    .ai-capabilities {
        grid-template-columns: 1fr;
    }

    .ai-capabilities article {
        min-height: 0;
    }

    .ai-capabilities article > span {
        margin-bottom: 28px;
    }

    .impact-layout {
        gap: 48px;
    }

    .impact-solutions article {
        grid-template-columns: 46px 1fr;
        gap: 15px;
        padding: 20px;
    }

    .impact-photo-note {
        padding: 30px 24px;
        border-top: 1px solid rgba(255, 255, 255, .13);
        border-left: 0;
    }

    .impact-photo-note h3 {
        font-size: 34px;
    }

    .impact-photo {
        grid-template-columns: 1fr;
        min-height: 0;
        margin-top: 48px;
    }

    .impact-photo-media {
        min-height: 390px;
    }

    .impact-solutions article > span {
        width: 40px;
        height: 40px;
    }

    .outcome-grid,
    .approach-steps,
    .values-row,
    .procurement-list,
    .field-row {
        grid-template-columns: 1fr;
    }

    .approach-steps li,
    .approach-steps li:first-child,
    .approach-steps li:nth-child(2) {
        min-height: auto;
        border-right: 1px solid rgba(255, 255, 255, .15);
        border-bottom: 1px solid rgba(255, 255, 255, .15);
        border-left: 1px solid rgba(255, 255, 255, .15);
    }

    .approach-steps li > div {
        margin-top: 35px;
    }

    .about-panel {
        min-height: 500px;
        padding: 30px;
        border-radius: 150px 150px 22px 22px;
    }

    .operations-layout {
        gap: 45px;
    }

    .operations-photo,
    .operations-photo img {
        min-height: 450px;
        height: 450px;
    }

    .operations-photo {
        border-radius: 20px 100px 20px 20px;
    }

    .operations-copy li {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .procurement-layout > .button {
        grid-column: auto;
    }

    .contact-form {
        padding: 27px 20px;
    }

    .form-actions {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-capabilities {
        grid-column: auto;
    }

    .footer-office {
        padding-top: 22px;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, .12);
        border-left: 0;
    }

    .footer-bottom {
        display: grid;
    }

    .footer-bottom p {
        margin: 0;
    }

    .mobile-contact {
        position: fixed;
        inset: auto 0 0;
        z-index: 90;
        display: grid;
        grid-template-columns: .6fr 1.4fr;
        padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
        background: rgba(245, 248, 250, .96);
        border-top: 1px solid var(--line);
        backdrop-filter: blur(14px);
    }

    .whatsapp-float {
        display: none;
    }

    .mobile-contact a {
        padding: 12px 10px;
        text-align: center;
        font-size: 11px;
        font-weight: 800;
    }

    .mobile-contact a:last-child {
        color: var(--white);
        background: var(--navy-900);
        border-radius: 999px;
    }

    .site-footer {
        padding-bottom: 90px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}
