:root {
    --navy: #071d49;
    --navy-soft: #0c2b65;
    --blue: #0088C9;
    --cyan: #0088C9;
    --ink: #182238;
    --muted: #5d6880;
    --line: #dce3ef;
    --surface: #f5f8fd;
    --white: #ffffff;
    --success: #137333;
    --danger: #b42318;
    --shadow-sm: 0 12px 36px rgba(7, 29, 73, 0.08);
    --shadow-lg: 0 28px 80px rgba(7, 29, 73, 0.16);
    --radius-sm: 0.75rem;
    --radius-md: 1.25rem;
    --radius-lg: 2rem;
    --header-height: 5rem;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
    color: var(--ink);
    background: var(--white);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: var(--blue);
    text-underline-offset: 0.2em;
}

a:hover {
    color: var(--navy);
}

:focus-visible {
    outline: 3px solid var(--cyan) !important;
    outline-offset: 3px;
    box-shadow: none !important;
}

.skip-link {
    position: fixed;
    z-index: 2000;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--white);
    background: var(--navy);
    border-radius: 0.5rem;
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    color: var(--white);
    transform: translateY(0);
}

.site-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    min-height: var(--header-height);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(220, 227, 239, 0.8);
    transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(7, 29, 73, 0.1);
}

.navbar {
    min-height: var(--header-height);
    padding: 0.6rem 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0;
}

.navbar-brand img {
    width: clamp(10.5rem, 17vw, 13.65rem);
    height: auto;
}

.navbar-toggler {
    min-width: 2.75rem;
    min-height: 2.75rem;
    border-color: var(--line);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    position: relative;
    padding: 0.7rem 0.85rem !important;
    color: var(--ink);
    font-size: 0.94rem;
    font-weight: 650;
}

.nav-link::after {
    position: absolute;
    right: 0.85rem;
    bottom: 0.45rem;
    left: 0.85rem;
    height: 2px;
    content: "";
    background: var(--blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--blue);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.btn {
    min-height: 2.75rem;
    padding: 0.68rem 1.25rem;
    border-radius: 0.72rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
    --bs-btn-bg: var(--blue);
    --bs-btn-border-color: var(--blue);
    --bs-btn-hover-bg: #0076ad;
    --bs-btn-hover-border-color: #0076ad;
    --bs-btn-active-bg: var(--navy);
    --bs-btn-active-border-color: var(--navy);
    box-shadow: 0 10px 24px rgba(0, 136, 201, 0.24);
}

.btn-light {
    color: var(--navy);
    border-color: var(--white);
}

.btn-outline-light:hover {
    color: var(--navy);
}

.hero {
    position: relative;
    display: flex;
    min-height: min(53rem, 100svh);
    padding: calc(var(--header-height) + 5.5rem) 0 5.5rem;
    color: var(--white);
    background:
        linear-gradient(125deg, rgba(7, 29, 73, 0.98) 8%, rgba(0, 136, 201, 0.96) 58%, #0088C9 66%, #29D895 112%),
        var(--navy);
    isolation: isolate;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    opacity: 0.18;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
    background-size: 4rem 4rem;
    mask-image: linear-gradient(to right, transparent, black 45%, black);
}

.hero-glow {
    position: absolute;
    z-index: -1;
    width: 26rem;
    height: 26rem;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.32;
}

.hero-glow-one {
    top: 5rem;
    right: -8rem;
    background: var(--blue);
}

.hero-glow-two {
    bottom: -13rem;
    left: 22%;
    background: var(--blue);
}

.eyebrow,
.section-kicker,
.card-label {
    margin: 0 0 1rem;
    color: var(--blue);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero .eyebrow {
    color: #99e7ff;
}

.hero h1 {
    max-width: 13ch;
    margin: 0;
    font-size: clamp(2.65rem, 5.4vw, 5.1rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.99;
}

.hero h1 span {
    color: #8de5ff;
}

.hero-lead {
    max-width: 45rem;
    margin: 1.75rem 0 0;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1.05rem, 1.7vw, 1.23rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}

.hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin: 3rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-proof li {
    display: grid;
    min-width: 9rem;
    padding: 0 1.4rem;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-proof li:first-child {
    padding-left: 0;
    border-left: 0;
}

.hero-proof strong {
    color: var(--white);
    font-size: 1.45rem;
    line-height: 1.15;
}

.hero-proof span {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
}

.tech-visual {
    position: relative;
    width: min(100%, 31rem);
    aspect-ratio: 1;
    margin-inline: auto;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1), rgba(7, 29, 73, 0.14) 55%, transparent 56%);
    box-shadow: inset 0 0 80px rgba(0, 136, 201, 0.16), 0 30px 80px rgba(7, 29, 73, 0.3);
}

.tech-visual::before,
.tech-visual::after {
    position: absolute;
    content: "";
    border-radius: 50%;
}

.tech-visual::before {
    inset: 9%;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    animation: spin 32s linear infinite;
}

.tech-visual::after {
    inset: 23%;
    border: 1px solid rgba(141, 229, 255, 0.32);
}

.orbit {
    position: absolute;
    z-index: 1;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0 22px var(--cyan);
}

.orbit-one {
    top: 17%;
    left: 23%;
}

.orbit-two {
    right: 13%;
    bottom: 28%;
    width: 0.45rem;
    height: 0.45rem;
    background: #8de5ff;
}

.tech-core {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: grid;
    place-content: center;
    width: 8.8rem;
    height: 8.8rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08));
    box-shadow: 0 16px 45px rgba(7, 29, 73, 0.28), inset 0 0 35px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    transform: translate(-50%, -50%);
}

.tech-core span {
    font-size: 2.7rem;
    font-weight: 850;
    line-height: 1;
}

.tech-core small {
    margin-top: 0.35rem;
    color: #a6ebff;
    font-size: 0.65rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.tech-node {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 2.7rem;
    padding: 0.5rem 0.8rem;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 0.8rem;
    background: rgba(7, 29, 73, 0.54);
    box-shadow: 0 12px 28px rgba(7, 29, 73, 0.22);
    backdrop-filter: blur(10px);
}

.tech-node span {
    display: grid;
    width: 1.55rem;
    height: 1.55rem;
    place-items: center;
    color: var(--navy);
    font-size: 0.58rem;
    border-radius: 0.45rem;
    background: #a8ebff;
}

.node-one { top: 10%; left: 42%; }
.node-two { top: 41%; right: -5%; }
.node-three { right: 19%; bottom: 7%; }
.node-four { bottom: 23%; left: -3%; }

@keyframes spin {
    to { transform: rotate(360deg); }
}

.section {
    padding: clamp(5rem, 9vw, 8rem) 0;
}

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

.section h2,
.cta-section h2 {
    max-width: 18ch;
    margin: 0;
    color: var(--navy);
    font-size: clamp(2rem, 3.7vw, 3.35rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    line-height: 1.08;
}

.section-intro {
    margin-top: 1.4rem;
    color: var(--ink);
    font-size: 1.15rem;
    font-weight: 520;
}

.section p {
    color: var(--muted);
}

.text-link {
    display: inline-flex;
    gap: 0.45rem;
    align-items: center;
    min-height: 2.75rem;
    margin-top: 0.65rem;
    font-weight: 750;
    text-decoration: none;
}

.experience-card {
    position: relative;
    padding: clamp(2rem, 5vw, 3.5rem);
    border: 1px solid #cfeaf6;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 100% 0, rgba(0, 136, 201, 0.18), transparent 40%),
        linear-gradient(145deg, #f7fcfe, #eef8fc);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.experience-card::after {
    position: absolute;
    right: -2rem;
    bottom: -3rem;
    width: 10rem;
    height: 10rem;
    content: "";
    border: 1.5rem solid rgba(0, 136, 201, 0.07);
    border-radius: 50%;
}

.experience-number {
    display: block;
    color: var(--blue);
    font-size: clamp(4rem, 9vw, 7rem);
    font-weight: 850;
    letter-spacing: -0.08em;
    line-height: 0.9;
}

.experience-card h3 {
    max-width: 13ch;
    margin: 1.3rem 0 0.8rem;
    color: var(--navy);
    font-size: 1.45rem;
    font-weight: 800;
}

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.experience-tags span {
    padding: 0.4rem 0.75rem;
    color: var(--navy-soft);
    font-size: 0.74rem;
    font-weight: 750;
    border: 1px solid #c7e6f3;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
}

.services-section,
.clients-section {
    background: var(--surface);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.75fr);
    gap: 3rem;
    align-items: end;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-heading > p {
    max-width: 33rem;
    margin: 0;
}

.service-featured {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(20rem, 0.75fr);
    gap: 3rem;
    align-items: center;
    padding: clamp(2rem, 5vw, 4.25rem);
    color: var(--white);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 86% 12%, rgba(0, 136, 201, 0.34), transparent 32%),
        linear-gradient(130deg, var(--navy) 0%, var(--blue) 72%, #0098d8 115%);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.service-featured .card-label {
    color: #8de5ff;
}

.service-featured h3 {
    margin-bottom: 1rem;
    font-size: clamp(1.85rem, 3vw, 2.7rem);
    font-weight: 800;
    letter-spacing: -0.035em;
}

.service-featured p {
    max-width: 43rem;
    color: rgba(255, 255, 255, 0.78);
}

.service-icon {
    display: grid;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1.4rem;
    place-items: center;
    color: var(--blue);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: -0.03em;
    border: 1px solid #cce8f4;
    border-radius: 0.9rem;
    background: #eef8fc;
}

.service-icon-featured {
    color: var(--navy);
    border-color: rgba(255, 255, 255, 0.45);
    background: #8de5ff;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.65rem;
    margin: 1.75rem 0 2rem;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    font-weight: 650;
}

.check-list li::before {
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 0.48rem;
    height: 0.48rem;
    content: "";
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0, 136, 201, 0.18);
}

.automation-panel {
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-md);
    background: rgba(7, 29, 73, 0.38);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
}

.automation-row {
    display: grid;
    grid-template-columns: 1fr 2.5rem 1fr;
    gap: 0.6rem;
    align-items: center;
    min-height: 3.6rem;
    padding: 0.6rem 0.8rem;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.76rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.automation-row i {
    position: relative;
    height: 1px;
    background: rgba(255, 255, 255, 0.34);
}

.automation-row i::after {
    position: absolute;
    top: -3px;
    right: 0;
    width: 7px;
    height: 7px;
    content: "";
    border-radius: 50%;
    background: var(--cyan);
}

.automation-row b {
    color: var(--white);
    text-align: right;
}

.automation-row.active {
    margin-inline: -0.35rem;
    color: var(--white);
    border-radius: 0.7rem;
    background: rgba(0, 136, 201, 0.16);
}

.automation-status {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    margin-top: 1rem;
    padding: 0.65rem 0.8rem;
    color: #a6ebff;
    font-size: 0.73rem;
    font-weight: 700;
}

.automation-status span {
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 50%;
    background: #58e096;
    box-shadow: 0 0 0 5px rgba(88, 224, 150, 0.13);
}

.service-card,
.product-card {
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 6px 24px rgba(7, 29, 73, 0.035);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover,
.product-card:hover {
    border-color: #80c8e8;
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.service-card h3,
.product-card h3 {
    color: var(--navy);
    font-size: 1.2rem;
    font-weight: 800;
}

.service-card p {
    margin: 0.85rem 0 1.4rem;
    font-size: 0.94rem;
}

.service-card a {
    display: inline-flex;
    gap: 0.35rem;
    align-items: center;
    min-height: 2.75rem;
    font-size: 0.86rem;
    font-weight: 750;
    text-decoration: none;
}

.service-card-cta {
    color: var(--white);
    border-color: var(--navy);
    background: var(--navy);
}

.service-card-cta .service-icon {
    color: var(--navy);
    border-color: #8de5ff;
    background: #8de5ff;
}

.service-card-cta h3,
.service-card-cta a {
    color: var(--white);
}

.service-card-cta p {
    color: rgba(255, 255, 255, 0.7);
}

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

.content-pending {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 1.5rem;
    align-items: center;
    padding: clamp(1.75rem, 4vw, 3rem);
    border: 1px solid #cce8f4;
    border-radius: var(--radius-md);
    background: linear-gradient(120deg, #f8fcfe, #eef8fc);
}

.pending-symbol {
    display: grid;
    width: 4.2rem;
    height: 4.2rem;
    place-items: center;
    color: var(--white);
    font-weight: 850;
    border-radius: 1.2rem;
    background: linear-gradient(145deg, var(--blue), var(--cyan));
    box-shadow: 0 12px 25px rgba(0, 136, 201, 0.24);
}

.content-pending h3 {
    margin: 0 0 0.4rem;
    color: var(--navy);
    font-size: 1.3rem;
    font-weight: 800;
}

.content-pending p {
    max-width: 54rem;
    margin: 0;
}

.differentiators {
    color: var(--white);
    background: var(--navy);
}

.differentiators .section-kicker {
    color: #67d9ff;
}

.differentiators h2 {
    color: var(--white);
}

.differentiators > .container > .row > div > p:last-child {
    margin-top: 1.4rem;
    color: rgba(255, 255, 255, 0.68);
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.difference-grid article {
    min-height: 13rem;
    padding: 1.8rem;
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.difference-grid span {
    color: #67d9ff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.difference-grid h3 {
    margin: 1.2rem 0 0.65rem;
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 750;
}

.difference-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
}

.clients-placeholder {
    display: grid;
    grid-template-columns: minmax(13rem, 1.3fr) repeat(4, minmax(6rem, 0.6fr));
    gap: 1rem;
    align-items: center;
}

.clients-placeholder span,
.clients-placeholder i {
    display: grid;
    min-height: 6rem;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.8);
}

.clients-placeholder span {
    padding: 1rem;
    color: var(--navy);
    font-size: 0.83rem;
    font-style: normal;
    font-weight: 750;
    text-align: center;
}

.clients-placeholder i::before {
    width: 45%;
    height: 0.7rem;
    content: "";
    border-radius: 999px;
    background: #dfe6f1;
}

.testimonial-card {
    margin: 0;
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
}

.testimonial-card blockquote {
    color: var(--navy);
    font-size: 1.1rem;
}

.testimonial-card figcaption {
    display: grid;
    margin-top: 1.5rem;
}

.testimonial-card figcaption span {
    color: var(--muted);
    font-size: 0.84rem;
}

.cta-section {
    padding: 0 0 clamp(5rem, 9vw, 8rem);
    background: var(--surface);
}

.cta-panel {
    position: relative;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    padding: clamp(2.2rem, 5vw, 4.5rem);
    color: var(--white);
    border-radius: var(--radius-lg);
    background: linear-gradient(120deg, var(--blue), #007ab5 65%, #00a2df 135%);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.cta-panel::after {
    position: absolute;
    top: -7rem;
    right: 17%;
    width: 18rem;
    height: 18rem;
    content: "";
    border: 2rem solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.cta-panel .section-kicker {
    color: #c9f4ff;
}

.cta-panel h2 {
    position: relative;
    z-index: 1;
    max-width: 21ch;
    color: var(--white);
}

.cta-panel .btn {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
}

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

.contact-direct {
    display: grid;
    margin-top: 2rem;
    padding: 1.4rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.contact-direct span {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-direct a {
    width: fit-content;
    margin: 0.15rem 0;
    color: var(--navy);
    font-size: 1.1rem;
    font-weight: 750;
    text-decoration: none;
}

.contact-direct small {
    color: var(--muted);
}

.contact-form {
    position: relative;
    padding: clamp(1.5rem, 4vw, 2.75rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow-sm);
}

.form-label {
    margin-bottom: 0.4rem;
    color: var(--navy);
    font-size: 0.86rem;
    font-weight: 700;
}

.form-control,
.form-select {
    min-height: 3.15rem;
    color: var(--ink);
    border-color: #cdd7e6;
    border-radius: 0.65rem;
    background-color: var(--white);
}

textarea.form-control {
    min-height: 9rem;
    resize: vertical;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 0.22rem rgba(0, 136, 201, 0.16);
}

.form-control.is-invalid,
.form-select.is-invalid,
.was-validated .form-control:invalid,
.was-validated .form-select:invalid {
    border-color: var(--danger);
}

.form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.23rem;
    border-color: #9dabc0;
}

.form-check-input:checked {
    border-color: var(--blue);
    background-color: var(--blue);
}

.invalid-feedback {
    color: var(--danger);
    font-weight: 600;
}

.form-text,
.required-note {
    color: var(--muted);
    font-size: 0.76rem;
}

.alert {
    border-radius: var(--radius-sm);
}

.alert-success {
    color: #0c5125;
    border-color: #b8ddc5;
    background: #eaf7ee;
}

.alert-danger {
    color: #7a1913;
    border-color: #efc6c2;
    background: #fff0ef;
}

.honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    overflow: hidden !important;
    white-space: nowrap !important;
}

.site-footer {
    color: rgba(255, 255, 255, 0.68);
    background:
        linear-gradient(rgba(4, 19, 48, 0.44), rgba(4, 19, 48, 0.44)),
        linear-gradient(125deg, #041330 8%, #0088C9 66%, #29D895 112%);
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(15rem, 1.5fr) repeat(2, minmax(10rem, 0.55fr));
    gap: 4rem;
    padding: 4.5rem 0 3rem;
}

.footer-main > div img {
    width: 11.9rem;
    height: auto;
    padding: 0.65rem 0.8rem;
    border-radius: 0.65rem;
    background: var(--white);
}

.footer-main > div p {
    max-width: 24rem;
    margin: 1.2rem 0 0;
}

.footer-main nav {
    display: grid;
    align-content: start;
    gap: 0.65rem;
}

.footer-main nav h2 {
    margin-bottom: 0.35rem;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-main nav a,
.footer-bottom a {
    width: fit-content;
    min-height: 2rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.86rem;
    text-decoration: none;
}

.footer-main nav a:hover,
.footer-bottom a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.78rem;
}

.whatsapp-button {
    position: fixed;
    z-index: 900;
    right: max(1rem, env(safe-area-inset-right));
    bottom: max(1rem, env(safe-area-inset-bottom));
    display: grid;
    width: 3.5rem;
    height: 3.5rem;
    place-items: center;
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 850;
    border: 2px solid var(--white);
    border-radius: 50%;
    background: #178b50;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    text-decoration: none;
}

.whatsapp-button:hover {
    color: var(--white);
    background: #0d6f3d;
}

.legal-page {
    min-height: 100vh;
    padding: calc(var(--header-height) + 4rem) 0 5rem;
    background: var(--surface);
}

.legal-content {
    max-width: 52rem;
    padding: clamp(1.5rem, 5vw, 4rem);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.legal-content h1 {
    margin-bottom: 1rem;
    color: var(--navy);
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.legal-content h2 {
    margin: 2.2rem 0 0.8rem;
    color: var(--navy);
    font-size: 1.3rem;
    font-weight: 800;
}

.legal-content p,
.legal-content li {
    color: var(--muted);
}

@media (max-width: 1199.98px) {
    .check-list {
        grid-template-columns: 1fr;
    }

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

    .clients-placeholder span {
        grid-column: 1 / -1;
    }
}

@media (max-width: 991.98px) {
    :root {
        --header-height: 4.5rem;
    }

    .navbar-collapse {
        position: fixed;
        inset: var(--header-height) 0 auto;
        max-height: calc(100svh - var(--header-height));
        padding: 1rem max(1rem, calc((100vw - 720px) / 2));
        background: var(--white);
        border-top: 1px solid var(--line);
        box-shadow: 0 18px 35px rgba(7, 29, 73, 0.12);
        overflow-y: auto;
    }

    .navbar-collapse:not(.show) {
        display: none;
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .nav-link {
        min-height: 3rem;
        padding: 0.8rem 0 !important;
    }

    .nav-link::after {
        right: 0;
        bottom: 0.35rem;
        left: 0;
        transform-origin: left;
    }

    .navbar-nav .btn {
        width: 100%;
        margin-top: 0.6rem;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 4.5rem);
    }

    .hero h1 {
        max-width: 15ch;
    }

    .tech-visual {
        width: min(100%, 28rem);
        margin-top: 1.5rem;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        align-items: start;
    }

    .service-featured {
        grid-template-columns: 1fr;
    }

    .automation-panel {
        max-width: 34rem;
    }

    .cta-panel {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .footer-main > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767.98px) {
    .hero {
        padding-bottom: 4rem;
    }

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

    .hero-proof li {
        min-width: 0;
        padding: 0 0.75rem;
    }

    .hero-proof strong {
        font-size: 1.2rem;
    }

    .tech-node {
        font-size: 0.65rem;
    }

    .node-two { right: 0; }
    .node-four { left: 0; }

    .content-pending {
        grid-template-columns: auto 1fr;
    }

    .content-pending .btn {
        grid-column: 1 / -1;
        width: 100%;
    }

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

    .difference-grid article {
        min-height: auto;
    }

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

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

    .footer-main > div:first-child {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-actions .btn {
        width: 100%;
    }

    .hero-proof {
        gap: 1rem 0;
        grid-template-columns: 1fr 1fr;
    }

    .hero-proof li:nth-child(3) {
        grid-column: 1 / -1;
        padding-left: 0;
        border-left: 0;
    }

    .tech-visual {
        width: 20rem;
        max-width: 100%;
    }

    .tech-core {
        width: 6.5rem;
        height: 6.5rem;
    }

    .tech-core span {
        font-size: 2rem;
    }

    .tech-node {
        min-height: 2.3rem;
        padding: 0.35rem 0.55rem;
    }

    .node-one { top: 5%; left: 31%; }
    .node-three { right: 9%; bottom: 3%; }

    .service-featured,
    .service-card,
    .contact-form {
        border-radius: 1rem;
    }

    .content-pending {
        grid-template-columns: 1fr;
    }

    .clients-placeholder {
        grid-template-columns: 1fr 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: more) {
    :root {
        --muted: #3f4859;
        --line: #9da9ba;
    }

    .hero-lead,
    .service-featured p,
    .differentiators > .container > .row > div > p:last-child,
    .difference-grid p,
    .site-footer {
        color: var(--white);
    }
}
