:root {
    --brand-900: #0c2234;
    --brand-800: #173b58;
    --brand-700: #295499;
    --brand-600: #386581;
    --brand-500: #3979b8;
    --brand-400: #4aa6d8;
    --aqua: #52d6d0;
    --ink: #10293d;
    --muted: #607486;
    --line: #dbe5eb;
    --surface: #f4f8fa;
    --surface-blue: #eef5f8;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(12, 34, 52, .12);
    --gradient: linear-gradient(135deg, #386581 0%, #295499 100%);
    --gradient-bright: linear-gradient(135deg, #4aa6d8 0%, #295499 62%, #386581 100%);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--white);
    font-family: Aptos, Inter, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

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

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

.page-shell {
    min-height: 70vh;
    animation: page-enter .55s cubic-bezier(.22, 1, .36, 1) both;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--aqua), var(--brand-500));
    box-shadow: 0 0 15px rgba(82, 214, 208, .8);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 82px;
    border-bottom: 1px solid rgba(219, 229, 235, .78);
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(18px) saturate(140%);
    transition: height .25s ease, box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled {
    height: 72px;
    background: rgba(255, 255, 255, .97);
    box-shadow: 0 10px 40px rgba(12, 34, 52, .09);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
}

.brand img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 7px 22px rgba(41, 84, 153, .22);
}

.brand span {
    display: block;
}

.brand b {
    display: block;
    color: var(--brand-900);
    font-size: 20px;
    line-height: 1;
    letter-spacing: -.45px;
}

.brand small {
    display: block;
    margin-top: 6px;
    color: #718494;
    font-size: 7px;
    font-weight: 750;
    letter-spacing: 1.45px;
}

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

.main-nav > a {
    position: relative;
    color: #344f62;
    font-size: 13px;
    font-weight: 670;
    transition: color .2s ease;
}

.nav-index,
.nav-arrow {
    display: none;
}

.nav-cta-arrow {
    font-style: normal;
    transition: transform .2s ease;
}

.nav-cta:hover .nav-cta-arrow {
    transform: translateX(4px);
}

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

.main-nav > a:hover,
.main-nav > a.active {
    color: var(--brand-700);
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-cta {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 17px;
    border-radius: 10px;
    color: var(--white) !important;
    background: var(--gradient);
    box-shadow: 0 9px 25px rgba(41, 84, 153, .22);
    transition: transform .2s ease, box-shadow .2s ease !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 13px 30px rgba(41, 84, 153, .3);
}

.menu-toggle {
    width: 46px;
    height: 46px;
    display: none;
    place-items: center;
    gap: 5px;
    padding: 11px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--ink);
    background: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 4px;
    background: currentColor;
    transition: transform .25s ease, opacity .2s ease;
}

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

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

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

.menu-backdrop {
    display: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-500);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.8px;
}

.eyebrow i {
    width: 8px;
    height: 8px;
    display: block;
    border-radius: 50%;
    background: var(--aqua);
    box-shadow: 0 0 0 7px rgba(82, 214, 208, .13);
    animation: signal-pulse 2.1s ease-in-out infinite;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(115deg, #f4f8fa 0%, #fff 58%, #edf5fa 100%);
}

.hero-grid {
    position: absolute;
    z-index: -3;
    inset: 0;
    opacity: .42;
    background-image:
        linear-gradient(rgba(56, 101, 129, .11) 1px, transparent 1px),
        linear-gradient(90deg, rgba(56, 101, 129, .11) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(90deg, #000, transparent 76%);
}

.hero-aurora,
.contact-aurora {
    position: absolute;
    z-index: -2;
    width: 650px;
    height: 650px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 166, 216, .26), rgba(41, 84, 153, .08) 42%, transparent 70%);
    filter: blur(8px);
    pointer-events: none;
    animation: aurora-drift 10s ease-in-out infinite alternate;
}

.hero .hero-aurora {
    top: -180px;
    right: -130px;
}

.hero-layout {
    min-height: 655px;
    display: grid;
    grid-template-columns: 1.06fr .94fr;
    align-items: center;
    gap: 76px;
    padding-block: 82px 98px;
}

.hero-copy h1,
.inner-hero h1,
.contact-copy h1 {
    margin: 24px 0 26px;
    color: var(--brand-900);
    font-size: clamp(50px, 5.4vw, 78px);
    font-weight: 740;
    line-height: .98;
    letter-spacing: -4.3px;
}

.hero-copy h1 em,
.inner-hero h1 em,
.contact-copy h1 em {
    color: transparent;
    background: var(--gradient-bright);
    background-clip: text;
    -webkit-background-clip: text;
    font-style: normal;
}

.hero-copy > p,
.inner-hero-grid > div > p,
.contact-copy > p {
    max-width: 650px;
    margin: 0;
    color: #506779;
    font-size: 18px;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 35px 0 30px;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border: 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 750;
    cursor: pointer;
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}

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

.button-primary {
    color: var(--white);
    background: var(--gradient);
    box-shadow: 0 13px 32px rgba(41, 84, 153, .25);
}

.button-primary:hover {
    box-shadow: 0 18px 38px rgba(41, 84, 153, .34);
}

.button-ghost {
    color: var(--brand-800);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .8);
}

.button-white {
    flex: 0 0 auto;
    color: var(--brand-700);
    background: var(--white);
    box-shadow: 0 13px 32px rgba(12, 34, 52, .16);
}

.button-outline-light {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .04);
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #577084;
    font-size: 12px;
}

.trust-row span::first-letter {
    color: var(--brand-500);
}

.hero-dashboard {
    position: relative;
    padding: 24px;
    border: 1px solid rgba(202, 218, 227, .88);
    border-radius: 20px;
    background: rgba(255, 255, 255, .89);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
    transform: perspective(1200px) rotateY(-2.5deg) rotateX(1.2deg);
    transition: transform .25s ease;
}

.hero-dashboard::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 18px -20px -22px 20px;
    border: 1px solid rgba(57, 121, 184, .16);
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(74, 166, 216, .14), rgba(41, 84, 153, .08));
}

.dashboard-glow {
    position: absolute;
    top: 35%;
    right: 8%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(82, 214, 208, .1);
    filter: blur(35px);
    pointer-events: none;
}

.dashboard-head,
.chart-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-head small {
    display: block;
    margin-bottom: 4px;
    color: #80909d;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.4px;
}

.dashboard-head b {
    color: var(--brand-900);
    font-size: 17px;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 100px;
    color: #18725f;
    background: #e7f8f4;
    font-size: 10px;
    font-weight: 750;
}

.live-pill i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2ec6a5;
    animation: signal-pulse 1.7s ease-in-out infinite;
}

.kpi-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-block: 21px 12px;
}

.kpi-row article {
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #f8fafb;
}

.kpi-row article:first-child {
    border-color: rgba(74, 166, 216, .24);
    background: linear-gradient(135deg, rgba(74, 166, 216, .09), rgba(82, 214, 208, .07));
}

.kpi-row small,
.kpi-row span {
    display: block;
    color: #778997;
    font-size: 9px;
}

.kpi-row strong {
    display: block;
    margin-block: 5px 2px;
    color: var(--brand-900);
    font-size: 25px;
}

.kpi-row .positive {
    color: #22806a;
}

.production-chart {
    padding: 14px 14px 10px;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.chart-title b {
    font-size: 11px;
}

.chart-title span {
    color: #82919c;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 1px;
}

.chart-bars {
    height: 100px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-top: 14px;
    border-bottom: 1px solid var(--line);
}

.chart-bars i {
    width: 100%;
    height: var(--bar);
    display: block;
    border-radius: 5px 5px 0 0;
    background: #d4e1e8;
    transform-origin: bottom;
    animation: chart-rise 1s cubic-bezier(.22, 1, .36, 1) both;
}

.chart-bars i:nth-child(2) { animation-delay: .08s; }
.chart-bars i:nth-child(3) { animation-delay: .16s; }
.chart-bars i:nth-child(4) { animation-delay: .24s; }
.chart-bars i:nth-child(5) { animation-delay: .32s; }
.chart-bars i:nth-child(6) { animation-delay: .4s; }
.chart-bars i:nth-child(7) { animation-delay: .48s; }

.chart-bars i.active {
    background: var(--gradient);
    box-shadow: 0 0 18px rgba(57, 121, 184, .22);
}

.chart-labels {
    display: flex;
    justify-content: space-around;
    padding-top: 7px;
    color: #8796a0;
    font-size: 8px;
}

.mini-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}

.mini-flow > div {
    min-width: 0;
    flex: 1;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 9px;
}

.mini-flow > i {
    padding-inline: 5px;
    color: #92a0aa;
    font-style: normal;
}

.mini-flow span,
.mini-flow b {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-flow span {
    color: #8797a2;
    font-size: 8px;
}

.mini-flow b {
    margin-top: 4px;
    font-size: 9px;
}

.mini-flow .active {
    border-color: rgba(57, 121, 184, .3);
    background: rgba(57, 121, 184, .07);
}

.hero-stats {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    color: var(--white);
    background: var(--brand-900);
    box-shadow: 0 18px 50px rgba(12, 34, 52, .18);
}

.hero-stats > div {
    min-height: 108px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 25px 30px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.hero-stats > div:last-child {
    border: 0;
}

.hero-stats strong {
    font-size: 26px;
}

.hero-stats span {
    margin-top: 4px;
    color: #a6b8c6;
    font-size: 11px;
}

.section {
    padding-block: 110px;
}

.section-title {
    max-width: 660px;
}

.section-title h2,
.section-intro h2,
.outcome-copy h2,
.story-grid h2,
.cta-band h2 {
    margin: 14px 0 0;
    color: var(--brand-900);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 730;
    line-height: 1.08;
    letter-spacing: -2.4px;
}

.section-title > p {
    max-width: 610px;
    margin: 20px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

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

.section-intro {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    align-items: end;
    gap: 90px;
    margin-bottom: 50px;
}

.section-intro > p {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
}

.solutions-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background:
        radial-gradient(circle at 88% 17%, rgba(82, 214, 208, .09), transparent 25%),
        linear-gradient(180deg, #fff 0%, #fbfdfe 100%);
}

.solutions-section::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 115px;
    right: -260px;
    width: 560px;
    height: 560px;
    border: 1px solid rgba(57, 121, 184, .08);
    border-radius: 50%;
    box-shadow:
        0 0 0 80px rgba(74, 166, 216, .022),
        0 0 0 160px rgba(74, 166, 216, .014);
    animation: orbit-spin 36s linear infinite;
}

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

.solution-card {
    --icon-from: #4aa6d8;
    --icon-to: #295499;
    position: relative;
    min-height: 390px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 31px 27px 27px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(247, 251, 253, .93)),
        var(--white);
    box-shadow: 0 12px 35px rgba(12, 34, 52, .045);
    transition: transform .3s cubic-bezier(.22, 1, .36, 1), border-color .3s ease, box-shadow .3s ease;
}

.solution-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .45;
    background:
        linear-gradient(90deg, var(--icon-from), var(--icon-to)) top / 100% 3px no-repeat,
        radial-gradient(circle at 11% 10%, rgba(74, 166, 216, .12), transparent 25%);
    transition: opacity .3s ease, transform .45s ease;
}

.solution-card::after {
    content: "";
    position: absolute;
    right: -76px;
    bottom: -78px;
    width: 170px;
    height: 170px;
    border: 1px solid rgba(57, 121, 184, .11);
    border-radius: 50%;
    box-shadow: 0 0 0 34px rgba(74, 166, 216, .025);
    transition: transform .45s cubic-bezier(.22, 1, .36, 1);
}

.solution-card:hover {
    z-index: 2;
    border-color: rgba(57, 121, 184, .32);
    transform: translateY(-10px);
    box-shadow: 0 28px 64px rgba(12, 34, 52, .12);
}

.solution-card:hover::before {
    opacity: .8;
}

.solution-card:hover::after {
    transform: scale(1.14) rotate(16deg);
}

.solution-warehouse { --icon-from: #386581; --icon-to: #173b58; }
.solution-traceability { --icon-from: #52d6d0; --icon-to: #3979b8; }
.solution-ai { --icon-from: #3979b8; --icon-to: #295499; }

.solution-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 38px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 19px;
    color: var(--white);
    background: linear-gradient(145deg, var(--icon-from), var(--icon-to));
    box-shadow:
        0 15px 32px rgba(41, 84, 153, .23),
        inset 0 1px 0 rgba(255, 255, 255, .22);
    transition: transform .35s ease;
}

.solution-icon::before {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(57, 121, 184, .12);
    border-radius: 24px;
    transform: rotate(7deg);
    transition: transform .4s ease, border-color .4s ease;
}

.solution-icon::after {
    content: "";
    position: absolute;
    top: -5px;
    right: -5px;
    width: 11px;
    height: 11px;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--aqua);
    box-shadow: 0 5px 13px rgba(12, 34, 52, .18);
}

.solution-icon svg {
    position: relative;
    z-index: 2;
    width: 34px;
    height: 34px;
    overflow: visible;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.solution-icon .icon-spark {
    fill: var(--aqua);
    stroke: var(--aqua);
    stroke-width: .5;
}

.solution-card:hover .solution-icon {
    transform: translateY(-4px) rotate(-3deg) scale(1.04);
}

.solution-card:hover .solution-icon::before {
    border-color: rgba(82, 214, 208, .45);
    transform: rotate(-5deg) scale(1.04);
}

.solution-card small {
    position: relative;
    z-index: 1;
    color: #8a9aa6;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.solution-card h3 {
    position: relative;
    z-index: 1;
    margin: 9px 0 14px;
    color: var(--brand-900);
    font-size: 21px;
    line-height: 1.2;
    letter-spacing: -.35px;
}

.solution-card p {
    position: relative;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.72;
}

.solution-card > b {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 22px;
    border-top: 1px solid rgba(219, 229, 235, .78);
    color: var(--brand-500);
    font-size: 12px;
}

.solution-card > b i {
    font-style: normal;
    transition: transform .2s ease;
}

.solution-card:hover > b i {
    transform: translateX(5px);
}

.dark-section {
    position: relative;
    overflow: hidden;
    color: var(--white);
    background: var(--brand-900);
}

.dark-orbit {
    position: absolute;
    top: -360px;
    left: -300px;
    width: 720px;
    height: 720px;
    border: 1px solid rgba(82, 214, 208, .12);
    border-radius: 50%;
    box-shadow:
        0 0 0 100px rgba(74, 166, 216, .03),
        0 0 0 210px rgba(74, 166, 216, .02);
    animation: orbit-spin 24s linear infinite;
}

.outcomes-grid {
    position: relative;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 100px;
}

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

.outcome-copy h2 em {
    color: var(--aqua);
    font-style: normal;
}

.outcome-copy > p {
    max-width: 480px;
    margin: 26px 0 34px;
    color: #a5b8c7;
    line-height: 1.75;
}

.outcome-list article {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 18px;
    padding-block: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.outcome-list article > span {
    padding-top: 5px;
    color: var(--aqua);
    font-family: Consolas, monospace;
    font-size: 11px;
}

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

.outcome-list p {
    margin: 0;
    color: #97acbb;
    font-size: 13px;
    line-height: 1.7;
}

.modules-section {
    overflow: hidden;
    background: var(--surface);
}

.module-marquee {
    width: 100%;
    overflow: hidden;
    margin-block: 48px 62px;
    border-block: 1px solid var(--line);
    background: rgba(255, 255, 255, .58);
}

.module-track {
    width: max-content;
    display: flex;
    animation: marquee 34s linear infinite;
}

.module-track span {
    min-width: 150px;
    padding: 20px 28px;
    border-right: 1px solid var(--line);
    color: var(--brand-800);
    font-size: 12px;
    font-weight: 740;
    text-align: center;
}

.module-marquee:hover .module-track {
    animation-play-state: paused;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-block: 1px solid var(--line);
}

.industry-card {
    min-height: 180px;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-right: 1px solid var(--line);
}

.industry-card:last-child {
    border: 0;
}

.industry-card span {
    color: var(--brand-500);
    font-family: Consolas, monospace;
    font-size: 10px;
}

.industry-card b {
    margin-top: auto;
    color: var(--brand-900);
    font-size: 16px;
}

.industry-card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.cta-section {
    padding-block: 100px;
    background: var(--white);
}

.cta-band {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    overflow: hidden;
    padding: 56px 60px;
    border-radius: 20px;
    color: var(--white);
    background: var(--gradient-bright);
    box-shadow: 0 25px 70px rgba(41, 84, 153, .22);
}

.cta-band::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -160px;
    right: -80px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    box-shadow: 0 0 0 65px rgba(255, 255, 255, .04), 0 0 0 130px rgba(255, 255, 255, .03);
    animation: orbit-spin 22s linear infinite;
}

.cta-band .eyebrow {
    color: #d8ffff;
}

.cta-band h2 {
    color: var(--white);
    font-size: 41px;
}

.cta-band p {
    max-width: 680px;
    margin: 17px 0 0;
    color: #e0eef6;
    line-height: 1.65;
}

.inner-hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--white);
    background: var(--brand-900);
}

.inner-hero .hero-aurora {
    top: -240px;
    right: -80px;
}

.inner-hero-grid {
    min-height: 590px;
    display: grid;
    grid-template-columns: 1fr .68fr;
    align-items: center;
    gap: 70px;
    padding-block: 95px;
}

.inner-hero h1 {
    color: var(--white);
}

.inner-hero-grid > div > p {
    margin-bottom: 34px;
    color: #b5c5d1;
}

.inner-signal {
    position: relative;
    width: min(380px, 90vw);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    margin-inline: auto;
}

.signal-ring {
    position: absolute;
    border: 1px solid rgba(82, 214, 208, .27);
    border-radius: 50%;
}

.ring-one { inset: 0; animation: ring-breathe 4s ease-in-out infinite; }
.ring-two { inset: 17%; animation: ring-breathe 4s .5s ease-in-out infinite; }
.ring-three { inset: 34%; animation: ring-breathe 4s 1s ease-in-out infinite; }

.signal-core {
    position: relative;
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 50%;
    color: var(--white);
    background: linear-gradient(145deg, rgba(74, 166, 216, .9), rgba(41, 84, 153, .9));
    box-shadow: 0 0 60px rgba(74, 166, 216, .35);
    font-size: 17px;
    font-weight: 850;
    letter-spacing: 1px;
    animation: float 4.2s ease-in-out infinite;
}

.proof-strip {
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.proof-strip .container {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 55px;
    align-items: start;
    padding-block: 42px;
}

.proof-strip span {
    color: var(--brand-500);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: 1.5px;
}

.proof-strip p {
    max-width: 850px;
    margin: 0;
    color: #3e586b;
    font-size: 17px;
    line-height: 1.7;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin-top: 50px;
    border: 1px solid var(--line);
    background: var(--line);
}

.feature-card {
    position: relative;
    min-height: 260px;
    overflow: hidden;
    padding: 34px;
    background: var(--white);
    transition: background .25s ease;
}

.feature-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -55px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(57, 121, 184, .14);
    border-radius: 50%;
    transition: transform .35s ease;
}

.feature-card:hover {
    background: #f9fcfd;
}

.feature-card:hover::after {
    transform: scale(1.35);
}

.feature-card > span {
    color: var(--brand-500);
    font-family: Consolas, monospace;
    font-size: 10px;
}

.feature-line {
    width: 28px;
    height: 2px;
    margin-top: 25px;
    background: var(--gradient);
    transition: width .3s ease;
}

.feature-card:hover .feature-line {
    width: 54px;
}

.feature-card h3 {
    margin: 28px 0 12px;
    color: var(--brand-900);
    font-size: 19px;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.process-section {
    background: var(--surface);
}

.process-section .section-title {
    display: grid;
    grid-template-columns: 1fr;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin-top: 48px;
    border: 1px solid var(--line);
    background: var(--white);
}

.process-flow > div {
    position: relative;
    min-height: 128px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 27px 21px;
    border-right: 1px solid var(--line);
}

.process-flow > div:last-child {
    border: 0;
}

.process-flow span {
    color: var(--brand-500);
    font-family: Consolas, monospace;
    font-size: 10px;
}

.process-flow b {
    color: var(--brand-900);
    font-size: 13px;
}

.process-flow i {
    position: absolute;
    z-index: 2;
    top: calc(50% - 11px);
    right: -11px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--gradient);
    font-size: 10px;
    font-style: normal;
    box-shadow: 0 5px 12px rgba(41, 84, 153, .2);
}

.about-hero-grid {
    min-height: 600px;
    display: grid;
    grid-template-columns: 1fr .65fr;
    align-items: center;
    gap: 75px;
}

.about-logo-stage {
    position: relative;
    display: grid;
    place-items: center;
}

.about-logo-stage img {
    position: relative;
    z-index: 2;
    width: 280px;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, .25));
    animation: float 4.8s ease-in-out infinite;
}

.about-ring {
    position: absolute;
    width: 370px;
    height: 370px;
    border: 1px solid rgba(82, 214, 208, .3);
    border-radius: 50%;
    box-shadow: 0 0 0 55px rgba(74, 166, 216, .05);
    animation: ring-breathe 5s ease-in-out infinite;
}

.story-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
}

.story-copy p {
    margin: 0 0 22px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.78;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 75px;
    border-block: 1px solid var(--line);
}

.timeline > div {
    min-height: 145px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
    border-right: 1px solid var(--line);
}

.timeline > div:last-child { border: 0; }
.timeline strong { color: var(--brand-700); font-size: 28px; }
.timeline span { margin-top: 7px; color: var(--muted); font-size: 12px; }
.values-section { background: var(--surface); }

.contact-section {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(120deg, #f0f6f8, #fff);
}

.contact-aurora {
    top: -150px;
    left: -200px;
}

.contact-grid {
    min-height: 740px;
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;
    gap: 90px;
    padding-block: 90px;
}

.contact-benefits {
    margin-top: 42px;
}

.contact-benefits > div {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding-block: 15px;
    border-bottom: 1px solid var(--line);
}

.contact-benefits span {
    padding-top: 3px;
    color: var(--brand-500);
    font-family: Consolas, monospace;
    font-size: 10px;
}

.contact-benefits p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.contact-benefits b {
    color: var(--brand-900);
}

.contact-card {
    padding: 39px;
    border: 1px solid rgba(205, 220, 228, .88);
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.form-head > span {
    color: var(--brand-500);
    font-size: 9px;
    font-weight: 850;
    letter-spacing: 1.5px;
}

.form-head h2 {
    margin: 8px 0 6px;
    color: var(--brand-900);
    font-size: 26px;
    letter-spacing: -.8px;
}

.form-head p {
    margin: 0 0 25px;
    color: var(--muted);
    font-size: 13px;
}

.contact-card form {
    display: flex;
    flex-direction: column;
    gap: 17px;
}

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

.contact-card label {
    display: flex;
    flex-direction: column;
    gap: 7px;
    color: #486173;
    font-size: 11px;
    font-weight: 740;
}

.contact-card input,
.contact-card textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 9px;
    outline: none;
    color: var(--ink);
    background: #fafcfd;
    font-size: 13px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.contact-card input:focus,
.contact-card textarea:focus {
    border-color: var(--brand-400);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(74, 166, 216, .12);
}

.contact-card textarea {
    resize: vertical;
}

.form-status {
    min-height: 17px;
    margin: 0;
    color: #2a786a;
    font-size: 11px;
}

.contact-strip {
    color: var(--white);
    background: var(--gradient);
}

.contact-strip .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.contact-strip .container > div {
    padding: 28px 30px;
    border-right: 1px solid rgba(255, 255, 255, .2);
}

.contact-strip .container > div:last-child { border: 0; }
.contact-strip small { display: block; margin-bottom: 6px; color: #c9eff2; font-size: 8px; font-weight: 850; letter-spacing: 1.5px; }
.contact-strip b, .contact-strip a { font-size: 13px; font-weight: 750; }

.site-footer {
    position: relative;
    overflow: hidden;
    padding: 68px 0 25px;
    color: #9fb3c2;
    background: #071a29;
}

.footer-orbit {
    position: absolute;
    right: -240px;
    bottom: -440px;
    width: 690px;
    height: 690px;
    border: 1px solid rgba(82, 214, 208, .11);
    border-radius: 50%;
    box-shadow: 0 0 0 90px rgba(74, 166, 216, .025), 0 0 0 190px rgba(74, 166, 216, .02);
}

.footer-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.65fr .85fr .75fr 1fr;
    gap: 60px;
    padding-bottom: 52px;
}

.brand-light b { color: var(--white); }
.brand-light small { color: #90a6b5; }

.footer-brand > p {
    max-width: 370px;
    margin: 20px 0 14px;
    font-size: 13px;
    line-height: 1.75;
}

.footer-tagline {
    color: var(--aqua);
    font-size: 11px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links > b {
    margin-bottom: 4px;
    color: var(--white);
    font-size: 13px;
}

.footer-links a,
.footer-links p {
    margin: 0;
    color: #94aaba;
    font-size: 12px;
    line-height: 1.7;
    transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
    color: var(--aqua);
    transform: translateX(3px);
}

.footer-bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 23px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 10px;
    letter-spacing: .4px;
}

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 7px 16px 7px 7px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 100px;
    color: var(--white);
    background: #168a6d;
    box-shadow: 0 12px 34px rgba(10, 70, 55, .28);
    font-size: 12px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(10, 70, 55, .36);
}

.floating-whatsapp > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #168a6d;
    background: var(--white);
    font-weight: 900;
}

.not-found {
    min-height: 68vh;
    display: grid;
    place-items: center;
    text-align: center;
    background: var(--surface);
}

.not-found h1 {
    max-width: 700px;
    margin: 15px auto;
    color: var(--brand-900);
    font-size: clamp(40px, 6vw, 70px);
    line-height: 1.05;
    letter-spacing: -3px;
}

.not-found p {
    margin-bottom: 28px;
    color: var(--muted);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity .72s cubic-bezier(.22, 1, .36, 1),
        transform .72s cubic-bezier(.22, 1, .36, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.solution-grid .reveal:nth-child(2),
.feature-grid .reveal:nth-child(2),
.industry-grid .reveal:nth-child(2) { transition-delay: .08s; }
.solution-grid .reveal:nth-child(3),
.feature-grid .reveal:nth-child(3),
.industry-grid .reveal:nth-child(3) { transition-delay: .16s; }
.solution-grid .reveal:nth-child(4),
.feature-grid .reveal:nth-child(4),
.industry-grid .reveal:nth-child(4) { transition-delay: .24s; }
.feature-grid .reveal:nth-child(5) { transition-delay: .32s; }
.feature-grid .reveal:nth-child(6) { transition-delay: .4s; }

@keyframes page-enter {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: none; }
}

@keyframes signal-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(.72); opacity: .55; }
}

@keyframes aurora-drift {
    from { transform: translate3d(-30px, 10px, 0) scale(.96); }
    to { transform: translate3d(50px, -30px, 0) scale(1.08); }
}

@keyframes chart-rise {
    from { transform: scaleY(0); opacity: .3; }
    to { transform: scaleY(1); opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes ring-breathe {
    0%, 100% { transform: scale(.96); opacity: .55; }
    50% { transform: scale(1.03); opacity: 1; }
}

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

@keyframes marquee {
    to { transform: translateX(-50%); }
}

@media (max-width: 1080px) {
    .main-nav { gap: 18px; }
    .main-nav > a { font-size: 12px; }
    .hero-layout { gap: 45px; }
    .solution-grid { grid-template-columns: repeat(2, 1fr); }
    .solution-card { min-height: 300px; }
}

@media (max-width: 920px) {
    .site-header,
    .site-header.is-scrolled {
        height: 72px;
        background: #fff;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .menu-toggle {
        z-index: 125;
        display: grid;
        border-color: rgba(196, 213, 223, .88);
        border-radius: 13px;
        box-shadow: 0 8px 24px rgba(12, 34, 52, .07);
    }

    .menu-toggle.is-open {
        color: var(--brand-700);
        border-color: rgba(57, 121, 184, .25);
        background: #f5f9fc;
    }

    .menu-backdrop {
        display: none !important;
    }

    .menu-backdrop.is-open {
        display: none !important;
    }

    .main-nav {
        position: fixed;
        z-index: 120;
        inset: 72px 0 0;
        width: 100%;
        height: calc(100dvh - 72px);
        max-height: calc(100dvh - 72px);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 7px;
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 18px 18px calc(24px + env(safe-area-inset-bottom));
        border: 0;
        border-top: 1px solid var(--line);
        border-radius: 0;
        background:
            radial-gradient(circle at 100% 0%, rgba(82, 214, 208, .11), transparent 34%),
            linear-gradient(180deg, #fff 0%, #f7fafc 100%);
        box-shadow: inset 0 12px 30px rgba(12, 34, 52, .035);
        backdrop-filter: none;
        transform: translateY(-18px);
        transform-origin: top;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: transform .32s cubic-bezier(.22, 1, .36, 1), opacity .22s ease, visibility .32s;
    }

    .main-nav::before {
        content: "EXPLORE TOTAL ERP";
        display: block;
        padding: 2px 5px 10px;
        color: var(--brand-500);
        font-size: 9px;
        font-weight: 850;
        letter-spacing: 1.7px;
    }

    .main-nav.is-open {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav > a {
        min-height: 61px;
        display: grid;
        grid-template-columns: 34px 1fr 24px;
        align-items: center;
        gap: 11px;
        padding: 0 14px;
        border: 1px solid transparent;
        border-radius: 13px;
        background: rgba(244, 248, 250, .72);
        color: var(--brand-800);
        font-size: 15px;
        font-weight: 720;
        transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
    }

    .main-nav > a:hover,
    .main-nav > a.active:not(.nav-cta) {
        color: var(--brand-700);
        border-color: rgba(57, 121, 184, .17);
        background: linear-gradient(120deg, rgba(74, 166, 216, .11), rgba(82, 214, 208, .07));
        transform: translateX(3px);
    }

    .main-nav > a::after { display: none; }

    .nav-index {
        display: block;
        color: #8395a3;
        font-family: Consolas, monospace;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .7px;
    }

    .nav-label {
        line-height: 1.25;
    }

    .nav-arrow {
        display: block;
        justify-self: end;
        color: var(--brand-400);
        font-style: normal;
        transition: transform .2s ease;
    }

    .main-nav > a:hover .nav-arrow,
    .main-nav > a.active .nav-arrow {
        transform: translateX(3px);
    }

    .nav-cta {
        min-height: 58px !important;
        grid-template-columns: 1fr auto !important;
        justify-content: center;
        margin-top: 8px;
        padding-inline: 19px !important;
        border: 0 !important;
        border-radius: 13px !important;
        background: var(--gradient-bright) !important;
    }

    .nav-cta:hover {
        transform: translateY(-2px) !important;
    }

    .nav-cta-arrow {
        display: block;
        font-style: normal;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 60px;
        padding-block: 65px 90px;
    }

    .hero-copy { max-width: 730px; }
    .hero-dashboard { width: min(680px, 100%); transform: none; }
    .section-intro { grid-template-columns: 1fr; gap: 18px; }
    .outcomes-grid { grid-template-columns: 1fr; gap: 55px; }
    .industry-grid { grid-template-columns: 1fr 1fr; }
    .industry-card:nth-child(2) { border-right: 0; }
    .industry-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .cta-band { align-items: flex-start; flex-direction: column; }
    .inner-hero-grid { grid-template-columns: 1fr; gap: 15px; }
    .inner-signal { width: 300px; }
    .feature-grid { grid-template-columns: 1fr 1fr; }
    .process-flow { grid-template-columns: 1fr; }
    .process-flow > div { min-height: 85px; border-right: 0; border-bottom: 1px solid var(--line); }
    .process-flow i { top: auto; right: auto; bottom: -11px; left: calc(50% - 11px); transform: rotate(90deg); }
    .about-hero-grid { grid-template-columns: 1fr; padding-block: 80px; }
    .about-logo-stage { padding-block: 15px 55px; }
    .about-logo-stage img { width: 230px; }
    .about-ring { width: 300px; height: 300px; }
    .story-grid { grid-template-columns: 1fr; gap: 32px; }
    .timeline { grid-template-columns: 1fr 1fr; }
    .timeline > div:nth-child(2) { border-right: 0; }
    .timeline > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .contact-grid { grid-template-columns: 1fr; gap: 58px; }
    .contact-copy { max-width: 700px; }
    .contact-card { max-width: 700px; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-links:last-child { grid-column: 2 / 4; }
}

@media (max-width: 680px) {
    html { scroll-padding-top: 72px; }
    .container { width: min(100% - 28px, 1180px); }
    .brand img { width: 42px; height: 42px; }
    .brand b { font-size: 18px; }
    .brand small { font-size: 6px; letter-spacing: 1.15px; }

    .hero-layout { min-height: auto; padding-block: 55px 70px; }
    .hero-copy h1,
    .inner-hero h1,
    .contact-copy h1 {
        margin-block: 21px 22px;
        font-size: clamp(45px, 13.2vw, 62px);
        letter-spacing: -2.9px;
    }

    .hero-copy > p,
    .inner-hero-grid > div > p,
    .contact-copy > p { font-size: 16px; }

    .hero-actions { flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .trust-row { flex-direction: column; gap: 9px; }
    .hero-dashboard { padding: 16px; border-radius: 16px; }
    .hero-dashboard::before { inset: 12px -10px -12px 10px; }
    .kpi-row strong { font-size: 22px; }
    .mini-flow { display: none; }
    .hero-stats { grid-template-columns: 1fr 1fr; border-radius: 13px 13px 0 0; }
    .hero-stats > div { min-height: 92px; padding: 18px; }
    .hero-stats > div:nth-child(2) { border-right: 0; }
    .hero-stats > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .1); }
    .hero-stats strong { font-size: 22px; }

    .section { padding-block: 78px; }
    .section-title h2,
    .section-intro h2,
    .outcome-copy h2,
    .story-grid h2,
    .cta-band h2 {
        font-size: 37px;
        letter-spacing: -1.8px;
    }

    .solution-grid { grid-template-columns: 1fr; }
    .solution-card {
        min-height: 330px;
        padding: 27px 24px 24px;
        border-radius: 16px;
    }
    .solution-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 33px;
    }
    .solution-icon svg { width: 31px; height: 31px; }
    .module-marquee { margin-bottom: 45px; }
    .industry-grid { grid-template-columns: 1fr; }
    .industry-card,
    .industry-card:nth-child(2) { min-height: 150px; border-right: 0; border-bottom: 1px solid var(--line); }
    .industry-card:last-child { border-bottom: 0; }
    .cta-section { padding-block: 72px; }
    .cta-band { gap: 30px; padding: 38px 25px; border-radius: 15px; }
    .cta-band .button { width: 100%; }
    .inner-hero-grid { min-height: auto; padding-block: 72px; }
    .inner-signal { width: 240px; margin-top: 25px; }
    .signal-core { width: 88px; height: 88px; font-size: 13px; }
    .proof-strip .container { grid-template-columns: 1fr; gap: 13px; padding-block: 32px; }
    .proof-strip p { font-size: 15px; }
    .feature-grid { grid-template-columns: 1fr; }
    .feature-card { min-height: 225px; padding: 29px; }
    .about-logo-stage img { width: 185px; }
    .about-ring { width: 245px; height: 245px; }
    .timeline { grid-template-columns: 1fr; }
    .timeline > div,
    .timeline > div:nth-child(2) { min-height: 110px; border-right: 0; border-bottom: 1px solid var(--line); }
    .timeline > div:last-child { border-bottom: 0; }
    .contact-grid { min-height: auto; padding-block: 70px; }
    .contact-card { padding: 27px 22px; }
    .field-row { grid-template-columns: 1fr; }
    .contact-strip .container { grid-template-columns: 1fr; }
    .contact-strip .container > div { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
    .contact-strip .container > div:last-child { border-bottom: 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 38px; }
    .footer-links:last-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
    .floating-whatsapp { right: 14px; bottom: 14px; width: 52px; height: 52px; padding: 8px; justify-content: center; }
    .floating-whatsapp b { display: none; }
    .floating-whatsapp > span { width: 36px; height: 36px; }
}

@media (max-width: 390px) {
    .brand { gap: 9px; }
    .brand b { font-size: 16px; }
    .brand small { font-size: 5.5px; letter-spacing: .85px; }
    .hero-copy h1,
    .inner-hero h1,
    .contact-copy h1 { font-size: 43px; }
    .dashboard-head b { font-size: 15px; }
    .kpi-row { grid-template-columns: 1fr; }
    .production-chart { display: none; }
    .hero-stats span { font-size: 10px; }
}

@media (hover: none) {
    .solution-card:hover,
    .button:hover,
    .nav-cta:hover,
    .floating-whatsapp:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
}
