html { scroll-behavior: smooth; }

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding-top: 88px;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}
        h1, h2, h3, .font-headline { font-family: 'Manrope', sans-serif; }
        
        :root {
            --story-progress: 0;
            --jasa-blue-dark: #0f3f63;
            --jasa-blue-light: #164a72;
        }

        .section-band--dark {
            background: var(--jasa-blue-dark);
        }

        .section-band--light {
            background: var(--jasa-blue-light);
        }

.animated-logo {
    position: relative;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    isolation: isolate;
    --animated-logo-diameter: 81%;
}

.animated-logo::before {
    content: "";
    position: absolute;
    inset: 50%;
    width: calc(var(--animated-logo-diameter) + 6px);
    height: calc(var(--animated-logo-diameter) + 6px);
    transform: translate(-50%, -50%);
    z-index: 0;
    border-radius: 50%;
    background: #ffffff;
    pointer-events: none;
}

.animated-logo--header {
    width: 72px;
    height: 72px;
}

.animated-logo--footer {
    width: 240px;
    height: 240px;
}

.animated-logo--flow {
    width: 82px;
    height: 82px;
}

.top-nav__inner {
    gap: 16px;
    min-height: 88px;
    height: 88px !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
    padding-left: clamp(16px, 5vw, 64px);
    padding-right: clamp(16px, 5vw, 64px);
}

.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    width: 100%;
    overflow: visible;
    border-bottom: 1px solid #3a76a4;
    backdrop-filter: blur(12px);
}

.pointer-events-none,
.story-backdrop,
.story-route,
.story-bridge,
.story-step-icon {
    pointer-events: none !important;
}

.top-nav__brand-wrap {
    flex: 1 1 auto;
}

.top-nav__brand {
    min-width: 0;
    color: #ffffff;
    text-decoration: none;
}

.top-nav__brand-text {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.top-nav__links {
    display: none;
    gap: clamp(12px, 1.7vw, 24px);
    margin-left: clamp(20px, 3.2vw, 40px);
    min-width: 0;
}

.top-nav__link {
    color: #d8edf8;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.15;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.top-nav__link:hover,
.top-nav__link:focus-visible {
    color: #6fb7e9;
}

.top-nav__desktop-cta {
    display: none;
    flex: 0 0 auto;
}

.top-nav__cta,
.top-nav__toggle,
.top-nav__mobile-cta {
    min-height: 44px;
}

.top-nav__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    color: #ffffff;
    background: #fd8b00;
    border: 0;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.15;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
}

.top-nav__toggle {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    border: 1px solid rgba(216, 237, 248, 0.68);
    border-radius: 4px;
    background: rgba(11, 44, 70, 0.62);
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.top-nav__toggle:hover,
.top-nav__toggle[aria-expanded="true"] {
    border-color: #fd8b00;
    color: #ffffff;
    background: rgba(253, 139, 0, 0.18);
}

.top-nav__toggle .material-symbols-outlined {
    font-size: 26px;
}

.top-nav__mobile-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 14px clamp(16px, 5vw, 64px) 18px;
    border-top: 1px solid rgba(142, 183, 212, 0.22);
    border-bottom: 1px solid rgba(142, 183, 212, 0.32);
    background: rgba(15, 63, 99, 0.98);
    box-shadow: 0 22px 48px rgba(3, 20, 33, 0.34);
}

.top-nav__mobile-panel[hidden] {
    display: none !important;
}

.top-nav__mobile-links {
    display: grid;
    gap: 6px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.top-nav__mobile-link,
.top-nav__mobile-cta {
    border-radius: 4px;
    border: 0;
    text-decoration: none;
    cursor: pointer;
}

.top-nav__mobile-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    color: #d8edf8;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.top-nav__mobile-link:hover,
.top-nav__mobile-link:focus-visible {
    color: #ffffff;
    background: rgba(33, 103, 157, 0.48);
}

.top-nav__mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 8px;
    padding: 0 16px;
    color: #ffffff;
    background: #fd8b00;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
}

.hero-action {
    min-height: 52px;
    max-width: 100%;
    justify-content: center;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    white-space: normal;
}

.hero-action .material-symbols-outlined {
    flex: 0 0 auto;
}

.hero-action--portfolio:hover {
    box-shadow: 0 10px 28px rgba(253, 139, 0, 0.2);
}

@media (min-width: 1180px) {
    .top-nav__links {
        display: flex;
    }

    .top-nav__desktop-cta {
        display: block;
    }

    .top-nav__toggle,
    .top-nav__mobile-panel {
        display: none !important;
    }
}

@media (max-width: 1179px) {
    .top-nav__brand-wrap {
        gap: 16px;
    }

    #inicio > .max-w-container-max {
        flex-direction: column !important;
    }
}

@media (max-width: 640px) {
    main > section,
    footer > .section-band {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    main > section {
        padding-top: 72px !important;
        padding-bottom: 72px !important;
    }

    #inicio > .max-w-container-max {
        gap: 32px;
    }

    .text-headline-xl {
        font-size: 38px !important;
        line-height: 1.12 !important;
    }

    .text-headline-lg {
        font-size: 28px !important;
        line-height: 1.16 !important;
    }

    .text-body-lg {
        font-size: 17px !important;
        line-height: 1.58 !important;
    }

    .hero-actions {
        width: 100%;
        align-items: stretch !important;
    }

    .hero-action {
        width: 100%;
    }

    .hero-industry-visual {
        height: auto !important;
        min-height: 340px;
        max-height: 480px;
        aspect-ratio: 1 / 1;
    }
}

@media (max-width: 430px) {
    .top-nav__inner {
        padding-left: 16px;
        padding-right: 16px;
    }

    .animated-logo--header {
        width: 64px;
        height: 64px;
    }

    .top-nav__brand-text {
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    .animated-logo--header {
        width: 58px;
        height: 58px;
    }

    .top-nav__brand-text {
        font-size: 15px;
    }
}

.footer-brand {
    flex-wrap: wrap;
}

.footer-brand--animated {
    display: block;
    width: min(100%, 760px);
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

.footer-logo-sequence {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 5334 / 3334;
    overflow: hidden;
    isolation: isolate;
}

.footer-logo-sequence__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    pointer-events: none;
    animation-duration: 6.4s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
}

.footer-logo-sequence__image--azul {
    animation-name: footer-logo-azul;
}

.footer-logo-sequence__image--verde {
    animation-name: footer-logo-verde;
}

.footer-logo-sequence__image--amarillo {
    animation-name: footer-logo-amarillo;
}

.footer-logo-sequence__image--original {
    animation-name: footer-logo-original;
}

.footer-logo-sequence__tagline-shine {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    opacity: 0;
    clip-path: inset(70.7% 29.5% 24.6% 29.8%);
    background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 1) 40%, rgba(183, 226, 255, 1) 50%, transparent 70%);
    background-size: 24% 100%;
    background-repeat: no-repeat;
    background-position: 22% 0;
    mix-blend-mode: screen;
    filter: drop-shadow(0 0 10px rgba(216, 237, 248, 0.82));
    -webkit-mask: url("assets/F.TRANSPARENTE_JASA_original.png") center / 100% 100% no-repeat;
    mask: url("assets/F.TRANSPARENTE_JASA_original.png") center / 100% 100% no-repeat;
    animation: footer-tagline-shine 3.4s ease-out 6.25s infinite;
}

@keyframes footer-logo-azul {
    0%, 20% { opacity: 1; }
    34%, 100% { opacity: 0; }
}

@keyframes footer-logo-verde {
    0%, 18% { opacity: 0; }
    32%, 45% { opacity: 1; }
    59%, 100% { opacity: 0; }
}

@keyframes footer-logo-amarillo {
    0%, 43% { opacity: 0; }
    57%, 69% { opacity: 1; }
    82%, 100% { opacity: 0; }
}

@keyframes footer-logo-original {
    0%, 68% { opacity: 0; }
    86%, 94% { opacity: 1; }
    100% { opacity: 0; }
}

@keyframes footer-tagline-shine {
    0% {
        opacity: 0;
        background-position: 22% 0;
    }
    18%, 46% {
        opacity: 1;
    }
    64%, 100% {
        opacity: 0;
        background-position: 76% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .footer-logo-sequence__image {
        animation: none;
        opacity: 0;
    }

    .footer-logo-sequence__image--original {
        opacity: 1;
    }

    .footer-logo-sequence__tagline-shine {
        animation: none;
        opacity: 0;
    }

}

@media (min-width: 768px) {
    .footer-layout {
        grid-template-columns: minmax(360px, 1.55fr) repeat(3, minmax(150px, 1fr));
    }
}

@media (min-width: 1180px) {
    .footer-layout {
        grid-template-columns: minmax(560px, 1.95fr) repeat(3, minmax(160px, 1fr));
    }
}

.animated-logo__image {
    grid-area: 1 / 1;
    width: 100%;
    height: 100%;
}

.animated-logo__image {
    z-index: 2;
    object-fit: cover;
    pointer-events: none;
}

.animated-logo__color {
    grid-area: 1 / 1;
    place-self: center;
    width: var(--animated-logo-diameter);
    height: var(--animated-logo-diameter);
    z-index: 1;
    display: block;
    border-radius: 50%;
    background: #1f8fe5;
    animation: logo-circle-color 5.4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes logo-circle-color {
    0%, 100% {
        background: #1f8fe5;
    }
    33% {
        background: #fd8b00;
    }
    66% {
        background: #31c46a;
    }
}
        /* Narrative Piping Animations */
        .story-backdrop {
            position: fixed;
            inset: 88px 0 0;
            pointer-events: none;
            z-index: 2;
            opacity: 0.3;
            overflow: hidden;
        }
        .story-backdrop svg {
            width: 100%;
            height: 100%;
            display: block;
        }
        .story-grid-line {
            stroke: rgba(139, 144, 159, 0.08);
            stroke-width: 1;
        }
        .story-pipe {
            fill: none;
            stroke: rgba(253, 139, 0, 0.22);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .story-side-pipe {
            fill: none;
            stroke: rgba(253, 139, 0, 0.28);
            stroke-width: 3;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .story-side-pipe--progress {
            stroke: rgba(253, 139, 0, 0.92);
            stroke-dasharray: 1;
            stroke-dashoffset: 1;
            filter: drop-shadow(0 0 10px rgba(253, 139, 0, 0.28));
        }
        .story-pipe--progress {
            stroke: rgba(253, 139, 0, 0.78);
            stroke-dasharray: 1;
            stroke-dashoffset: 1;
            filter: drop-shadow(0 0 8px rgba(253, 139, 0, 0.18));
            transition: stroke-dashoffset 160ms linear;
        }
        .story-flow {
            stroke: rgba(253, 139, 0, 0.5);
            stroke-dasharray: 12 22;
            animation: story-flow 9s linear infinite;
        }
        .story-joint {
            fill: #164a72;
            stroke: rgba(253, 139, 0, 0.45);
            stroke-width: 1.5;
        }
        .story-side-valve {
            fill: #164a72;
            stroke: rgba(226, 232, 240, 0.32);
            stroke-width: 1.5;
        }
        .story-side-valve--active {
            stroke: rgba(253, 139, 0, 0.72);
            filter: drop-shadow(0 0 8px rgba(253, 139, 0, 0.18));
        }
        .story-route {
            position: absolute;
            inset: 0;
            z-index: 16;
            pointer-events: none;
            max-width: 1440px;
            width: 100%;
            margin: 0 auto;
            opacity: 1;
        }
        .story-route__svg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            overflow: visible;
        }
        .story-route__pipe {
            fill: none;
            stroke: rgba(253, 139, 0, 0.34);
            stroke-width: 2.6;
            stroke-linecap: round;
            stroke-linejoin: round;
            vector-effect: non-scaling-stroke;
        }
        .story-route__pipe--progress {
            stroke: rgba(253, 139, 0, 0.88);
            stroke-dasharray: 1;
            stroke-dashoffset: 1;
            stroke-width: 3;
            filter: drop-shadow(0 0 12px rgba(253, 139, 0, 0.22));
        }
        .story-route__flow {
            stroke: rgba(253, 139, 0, 0.46);
            stroke-dasharray: 10 20;
            animation: story-flow 8s linear infinite;
            filter: drop-shadow(0 0 10px rgba(253, 139, 0, 0.24));
        }
        main > section {
            position: relative;
            z-index: auto;
        }
main > section > * {
    position: relative;
    z-index: 20;
}

#inicio {
    z-index: 6;
}

        .story-bridge {
            position: relative;
            z-index: 18;
            height: 76px;
            margin: -38px auto;
            max-width: 1440px;
            padding: 0 40px;
            pointer-events: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .story-bridge[data-stage="produccion"] {
            justify-content: flex-start;
            padding-left: clamp(72px, 10vw, 160px);
        }
        .story-bridge[data-stage="inversion"] {
            justify-content: flex-end;
            padding-right: clamp(72px, 12vw, 180px);
        }
        .story-bridge[data-stage="eficiencia"] {
            justify-content: center;
        }
        .story-bridge[data-stage="retorno"] {
            justify-content: flex-start;
            padding-left: 40px;
            padding-right: 40px;
            margin-top: -76px;
            height: 116px;
            z-index: 18;
        }
        .story-bridge:not([data-stage="retorno"]) .story-bridge__node {
            display: none;
        }
        .story-bridge[data-stage="retorno"] .story-bridge__node {
            position: absolute;
            left: calc(40px + ((100% - 80px) * 0.62) - 39px);
            top: 210px;
            width: 78px;
            height: 78px;
            border-color: rgba(253, 139, 0, 0.9);
            box-shadow: 0 0 0 12px rgba(22, 74, 114, 0.86), 0 0 42px rgba(253, 139, 0, 0.26);
        }
        .story-bridge[data-stage="retorno"] .story-bridge__icon {
            font-size: 42px;
        }
        .story-bridge[data-stage="retorno"] .story-bridge__node::after {
            display: none;
        }
        .story-bridge[data-stage="retorno"] .story-bridge__svg {
            top: -282px;
            height: 600px;
            overflow: visible;
            opacity: 0.92;
        }
        .story-bridge[data-stage="retorno"] .story-bridge__pipe {
            stroke-width: 3;
            stroke: rgba(253, 139, 0, 0.64);
        }
        .story-bridge[data-stage="retorno"] .story-bridge__pipe--flow {
            stroke: rgba(253, 139, 0, 0.95);
        }
        .story-bridge__svg {
            position: absolute;
            inset: 0 40px;
            width: calc(100% - 80px);
            height: 100%;
            opacity: 0.68;
        }
        .story-bridge__pipe {
            fill: none;
            stroke: rgba(253, 139, 0, 0.36);
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .story-bridge__pipe--flow {
            stroke: rgba(253, 139, 0, 0.72);
            stroke-dasharray: 10 18;
            stroke-dashoffset: 60;
            opacity: 0;
            filter: drop-shadow(0 0 10px rgba(253, 139, 0, 0.28));
            transition: opacity 700ms ease;
        }
        .story-bridge__node {
            position: relative;
            width: 48px;
            height: 48px;
            border: 1px solid rgba(253, 139, 0, 0.48);
            background: radial-gradient(circle at 50% 35%, rgba(253, 139, 0, 0.18), #164a72 64%);
            color: #fd8b00;
            display: grid;
            place-items: center;
            border-radius: 999px;
            box-shadow: 0 0 0 8px rgba(22, 74, 114, 0.78), 0 0 28px rgba(253, 139, 0, 0.12);
            opacity: 0;
            transform: translateY(10px) scale(0.94);
            transition: opacity 700ms ease, transform 700ms ease, border-color 700ms ease;
        }
        .story-bridge__node::before,
        .story-bridge__node::after {
            content: "";
            position: absolute;
            width: 10px;
            height: 2px;
            background: rgba(253, 139, 0, 0.72);
            top: 50%;
            transform: translateY(-50%);
        }
        .story-bridge__node::before { right: calc(100% + 8px); }
        .story-bridge__node::after { left: calc(100% + 8px); }
        .story-bridge__icon {
            font-size: 25px;
            line-height: 1;
            transform-origin: center;
        }
        .story-step-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            color: rgba(253, 139, 0, 0.24);
            font-size: 34px;
            line-height: 1;
            transform-origin: center;
            pointer-events: none;
        }
        .story-bridge.is-visible .story-bridge__pipe--flow {
            opacity: 1;
            animation: story-flow 5.5s linear infinite;
        }
        .story-bridge.is-visible .story-bridge__node {
            opacity: 1;
            transform: translateY(0) scale(1);
            border-color: rgba(253, 139, 0, 0.82);
            animation: story-node-pulse 4.2s ease-in-out infinite;
        }
        .pipe-path {
            stroke-dasharray: 1000;
            stroke-dashoffset: 1000;
            transition: stroke-dashoffset 2s ease-out;
        }
        .is-visible .pipe-path {
            stroke-dashoffset: 0;
        }

.section-signal {
    position: relative;
    z-index: 18;
    min-height: 44px;
    display: grid;
    place-items: center;
    padding: 10px clamp(16px, 5vw, 64px);
    overflow: hidden;
    border-block: 1px solid rgba(142, 183, 212, 0.28);
    background: linear-gradient(90deg, rgba(15, 63, 99, 0.96), rgba(31, 143, 229, 0.42), rgba(15, 63, 99, 0.96));
}

.section-signal::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: translateX(-100%);
    animation: section-signal-sweep 4.8s ease-in-out infinite;
}

.section-signal span {
    position: relative;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: clamp(11px, 1.2vw, 14px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 18px rgba(111, 183, 233, 0.45);
    animation: section-signal-text 4.8s ease-in-out infinite;
}

@keyframes section-signal-sweep {
    0%, 18% { transform: translateX(-100%); opacity: 0; }
    42%, 62% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

@keyframes section-signal-text {
    0%, 100% { opacity: 0.72; }
    45%, 62% { opacity: 1; }
}

.scroll-trigger { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
        .scroll-trigger.is-visible { opacity: 1; transform: translateY(0); }

.process-background-section {
    min-height: clamp(560px, 66vh, 780px);
    display: flex;
    align-items: center;
    background: #0f3f63;
}

.process-background-section::before,
.process-background-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    transition: opacity 420ms ease, background 420ms ease, filter 420ms ease;
}

.process-background-section::before {
    z-index: 0;
    background-image: var(--process-background-image);
    background-position: var(--process-background-position, center);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.96;
    filter: saturate(1.08) contrast(1.05);
}

.process-background-section::after {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(15, 63, 99, 0.9) 0%, rgba(15, 63, 99, 0.68) 34%, rgba(15, 63, 99, 0.22) 68%, rgba(15, 63, 99, 0.04) 100%),
        linear-gradient(180deg, rgba(15, 63, 99, 0.18), rgba(15, 63, 99, 0.36));
}

.process-background-section:hover::before,
.process-background-section:focus-within::before {
    opacity: 0.82;
    filter: saturate(1) contrast(1);
}

.process-background-section:hover::after,
.process-background-section:focus-within::after {
    background:
        linear-gradient(90deg, rgba(15, 63, 99, 0.98) 0%, rgba(15, 63, 99, 0.9) 34%, rgba(15, 63, 99, 0.42) 68%, rgba(15, 63, 99, 0.16) 100%),
        linear-gradient(180deg, rgba(15, 63, 99, 0.42), rgba(15, 63, 99, 0.72));
}

.process-background-section--support {
    --process-background-image: url("assets/proceso1.png");
    --process-background-position: center;
}

.process-background-section--benefit {
    --process-background-image: url("assets/proceso2.png");
    --process-background-position: center;
}

.process-background-section--structural {
    --process-background-image: url("assets/proceso3.png");
    --process-background-position: center;
}

.process-background-section__inner {
    width: 100%;
}

.process-background-section > .max-w-container-max {
    width: 100%;
}

.process-background-section__copy {
    max-width: min(680px, 100%);
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.process-background-section__copy h2,
.process-background-section__copy p,
.process-background-section__copy .inline-flex {
    text-shadow: 0 12px 32px rgba(3, 20, 33, 0.42);
}

.process-background-section__copy p,
.process-background-section__copy h2 {
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 768px) {
    .process-background-section {
        min-height: 560px;
    }

    .process-background-section::before {
        background-size: auto 100%;
        background-position: 60% center;
        opacity: 0.62;
    }

    .process-background-section::after {
        background:
            linear-gradient(90deg, rgba(15, 63, 99, 0.98) 0%, rgba(15, 63, 99, 0.92) 66%, rgba(15, 63, 99, 0.56) 100%),
            linear-gradient(180deg, rgba(15, 63, 99, 0.42), rgba(15, 63, 99, 0.78));
    }
}

.hero-industry-visual {
    position: relative;
    z-index: 8;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    background: #0f3f63;
}

.hero-industry-visual.scroll-trigger {
    opacity: 1;
    transform: none;
}

.hero-industry-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 10;
    background:
        linear-gradient(rgba(139, 144, 159, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 144, 159, 0.06) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.8;
    pointer-events: none;
}

.hero-industry-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: radial-gradient(circle at 56% 42%, rgba(253, 139, 0, 0.18), transparent 34%),
        linear-gradient(180deg, transparent, rgba(22, 74, 114, 0.78));
    pointer-events: none;
}

.hero-industry-svg {
    position: relative;
    z-index: 11;
    width: min(96%, 620px);
    height: auto;
    overflow: visible;
}

.hero-factory path,
.hero-gear path,
.hero-gear circle,
.hero-gauge path,
.hero-gauge circle,
.hero-steam path {
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-stage-title__item {
    text-anchor: middle;
    font-family: 'Manrope', sans-serif;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: 0;
    fill: #f8fafc;
    opacity: 0;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.26));
}

.hero-stage-title__item--red {
    animation: hero-title-red 9s ease-in-out infinite;
}

.hero-stage-title__item--yellow {
    animation: hero-title-yellow 9s ease-in-out infinite;
}

.hero-stage-title__item--green {
    animation: hero-title-green 9s ease-in-out infinite;
}

.hero-gauge {
    filter: drop-shadow(0 0 22px rgba(173, 199, 255, 0.24));
}

.hero-gauge-track {
    stroke: rgba(226, 232, 240, 0.18);
    stroke-width: 38;
}

.hero-gauge-segment {
    stroke-width: 28;
    opacity: 0.3;
}

.hero-gauge-segment--red,
.hero-gauge-fill--red {
    stroke: #f05252;
    color: #f05252;
}

.hero-gauge-segment--yellow,
.hero-gauge-fill--yellow {
    stroke: #f3c13a;
    color: #f3c13a;
}

.hero-gauge-segment--green,
.hero-gauge-fill--green {
    stroke: #31c46a;
    color: #31c46a;
}

.hero-gauge-fill {
    stroke-width: 18;
    opacity: 0;
    filter: drop-shadow(0 0 12px currentColor);
}

.hero-gauge-fill--red {
    opacity: 0.95;
}

.hero-gauge-fill--yellow {
    animation: hero-fill-yellow 9s ease-in-out infinite;
}

.hero-gauge-fill--green {
    animation: hero-fill-green 9s ease-in-out infinite;
}

.hero-gauge-tick {
    stroke: rgba(248, 250, 252, 0.78);
    stroke-width: 5;
}

.hero-gauge-needle {
    stroke: #e2e8f0;
    stroke-width: 12;
    transform-origin: 320px 280px;
    animation: hero-needle-sweep 9s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(248, 250, 252, 0.35));
}

.hero-gauge-hub {
    fill: #164a72;
    stroke: #e2e8f0;
    stroke-width: 8;
}

.hero-industry-symbol {
    transform: translateY(22px);
    filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.14));
}

.hero-factory path {
    stroke: rgba(226, 232, 240, 0.86);
    stroke-width: 12;
}

.hero-gear {
    transform-origin: 276px 418px;
    animation: hero-gear-spin 24s linear infinite;
}

.hero-gear-base {
    stroke: rgba(226, 232, 240, 0.2);
    stroke-width: 12;
}

.hero-gear-progress,
.hero-gear-teeth,
.hero-gear-hub {
    stroke: #f05252;
    stroke-width: 10;
    animation: hero-gear-stage 9s ease-in-out infinite;
    filter: drop-shadow(0 0 14px rgba(240, 82, 82, 0.26));
}

.hero-gear-progress {
    stroke-dasharray: 28 72;
    transform: rotate(-90deg);
    transform-origin: 276px 418px;
}

.hero-gear-hub {
    fill: #164a72;
}

.hero-gear-teeth {
    stroke-dasharray: 24 26;
}

.hero-steam path {
    stroke: rgba(226, 232, 240, 0.62);
    stroke-width: 10;
    stroke-dasharray: 70 38;
    animation-duration: 9s, 4.2s;
    animation-timing-function: ease-in-out, ease-in-out;
    animation-iteration-count: infinite, infinite;
    animation-name: hero-smoke-one, hero-steam-rise;
}

.hero-steam__plume--two {
    animation-name: hero-smoke-two, hero-steam-rise;
    animation-delay: 0s, 0.55s;
}

.hero-steam__plume--three {
    animation-name: hero-smoke-three, hero-steam-rise;
    animation-delay: 0s, 1.05s;
}

        @keyframes hero-title-red {
            0%, 27% { opacity: 1; transform: translateY(0); }
            32%, 100% { opacity: 0; transform: translateY(-8px); }
        }
        @keyframes hero-title-yellow {
            0%, 30% { opacity: 0; transform: translateY(8px); }
            36%, 61% { opacity: 1; transform: translateY(0); }
            66%, 100% { opacity: 0; transform: translateY(-8px); }
        }
        @keyframes hero-title-green {
            0%, 64% { opacity: 0; transform: translateY(8px); }
            70%, 100% { opacity: 1; transform: translateY(0); }
        }
        @keyframes hero-fill-yellow {
            0%, 31% { opacity: 0; }
            37%, 100% { opacity: 0.95; }
        }
        @keyframes hero-fill-green {
            0%, 65% { opacity: 0; }
            71%, 100% { opacity: 0.95; }
        }
        @keyframes hero-needle-sweep {
            0%, 27% { transform: rotate(45deg); }
            37%, 61% { transform: rotate(96deg); }
            71%, 100% { transform: rotate(180deg); }
        }
        @keyframes hero-gear-stage {
            0%, 27% {
                stroke: #f05252;
                stroke-dasharray: 28 72;
                opacity: 0.84;
                filter: drop-shadow(0 0 10px rgba(240, 82, 82, 0.22));
            }
            37%, 61% {
                stroke: #f3c13a;
                stroke-dasharray: 62 38;
                opacity: 0.96;
                filter: drop-shadow(0 0 16px rgba(243, 193, 58, 0.3));
            }
            71%, 100% {
                stroke: #31c46a;
                stroke-dasharray: 100 0;
                opacity: 1;
                filter: drop-shadow(0 0 18px rgba(49, 196, 106, 0.34));
            }
        }
        @keyframes hero-smoke-one {
            0%, 27% { opacity: 0.78; }
            37%, 61% { opacity: 0.3; }
            71%, 100% { opacity: 0; }
        }
        @keyframes hero-smoke-two {
            0%, 27% { opacity: 0.68; }
            37%, 61% { opacity: 0.16; }
            71%, 100% { opacity: 0; }
        }
        @keyframes hero-smoke-three {
            0%, 27% { opacity: 0.58; }
            37%, 61% { opacity: 0; }
            71%, 100% { opacity: 0; }
        }
        @keyframes story-flow {
            to { stroke-dashoffset: -160; }
        }
        @keyframes story-node-pulse {
            0%, 100% { box-shadow: 0 0 0 8px rgba(22, 74, 114, 0.78), 0 0 22px rgba(253, 139, 0, 0.12); }
            50% { box-shadow: 0 0 0 8px rgba(22, 74, 114, 0.78), 0 0 34px rgba(253, 139, 0, 0.28); }
        }
        @keyframes hero-gear-spin {
            to { transform: rotate(360deg); }
        }
        @keyframes hero-steam-rise {
            0% { stroke-dashoffset: 78; transform: translateY(12px); }
            100% { stroke-dashoffset: -46; transform: translateY(-18px); }
        }

.impact-section {
    position: relative;
    display: grid;
    gap: 36px;
}

.impact-section::before {
    content: "";
    position: absolute;
    inset: -40px 0 auto;
    height: 220px;
    background:
        linear-gradient(90deg, transparent, rgba(253, 139, 0, 0.18), transparent),
        repeating-linear-gradient(90deg, rgba(226, 232, 240, 0.08) 0 1px, transparent 1px 92px);
    opacity: 0.35;
    pointer-events: none;
}

.impact-section__header {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 32px;
    align-items: end;
}

.production-flow {
    position: relative;
    display: grid;
    gap: 10px;
    width: min(100%, 760px);
    margin: 0 auto;
    padding: clamp(12px, 3vw, 28px);
    border: 1px solid rgba(139, 144, 159, 0.24);
    border-radius: 12px;
    background:
        radial-gradient(circle at 86% 32%, rgba(49, 196, 106, 0.11), transparent 28%),
        linear-gradient(180deg, rgba(11, 44, 70, 0.88), rgba(7, 31, 50, 0.76)),
        repeating-linear-gradient(90deg, rgba(226, 232, 240, 0.045) 0 1px, transparent 1px 72px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 24px 60px rgba(4, 25, 42, 0.18);
}

.production-flow__intro {
    display: grid;
    gap: 5px;
    padding: 2px 2px 8px;
    text-align: center;
}

.production-flow__intro span,
.production-flow__goal {
    color: #fd8b00;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.production-flow__intro strong {
    max-width: 570px;
    margin: 0 auto;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(17px, 3.7vw, 25px);
    line-height: 1.18;
}

.production-flow__goal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: rgba(216, 237, 248, 0.62);
}

.production-flow__goal .material-symbols-outlined {
    color: #31c46a;
    font-size: 18px;
}

.production-flow__metrics,
.production-flow__actors {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(4px, 1.4vw, 10px);
}

.production-flow__row--company {
    --flow-color: #8eb7d4;
    --flow-soft: rgba(142, 183, 212, 0.18);
}

.production-flow__row--legal {
    --flow-color: #f4c430;
    --flow-soft: rgba(244, 196, 48, 0.2);
}

.production-flow__row--accounting {
    --flow-color: #ef6262;
    --flow-soft: rgba(239, 98, 98, 0.2);
}

.production-flow__row--jasa {
    --flow-color: #31c46a;
    --flow-soft: rgba(49, 196, 106, 0.3);
}

.production-flow__metric {
    display: grid;
    gap: 4px;
    place-items: center;
    min-width: 0;
    padding: 8px 3px;
    border: 1px solid color-mix(in srgb, var(--flow-color) 42%, transparent);
    border-radius: 10px 10px 4px 4px;
    color: var(--flow-color);
    background: color-mix(in srgb, var(--flow-color) 8%, rgba(11, 44, 70, 0.92));
    box-shadow: 0 0 18px var(--flow-soft);
}

.production-flow__metric--jasa {
    border-color: rgba(49, 196, 106, 0.76);
    background: linear-gradient(180deg, rgba(49, 196, 106, 0.2), rgba(11, 44, 70, 0.96));
    box-shadow: 0 0 26px rgba(49, 196, 106, 0.22);
}

.production-flow__percent {
    color: var(--flow-color);
    font-family: 'Manrope', sans-serif;
    font-size: clamp(21px, 5vw, 31px);
    line-height: 1;
    font-weight: 800;
    text-align: center;
}

.production-flow__metric small {
    color: var(--flow-color);
    font-size: clamp(7px, 1.8vw, 10px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
}

.production-flow__road {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    min-height: clamp(500px, 78vw, 640px);
    overflow: hidden;
    border: 1px solid rgba(142, 183, 212, 0.24);
    border-radius: 8px;
    background:
        linear-gradient(180deg, rgba(142, 183, 212, 0.08), transparent 22%, rgba(2, 18, 30, 0.3)),
        repeating-linear-gradient(180deg, rgba(226, 232, 240, 0.025) 0 1px, transparent 1px 58px),
        #092c46;
    box-shadow: inset 0 2px 22px rgba(2, 18, 30, 0.68);
}

.production-flow__road::before,
.production-flow__road::after {
    content: "";
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    pointer-events: none;
}

.production-flow__road::before {
    top: 0;
    height: 90px;
    background: linear-gradient(180deg, rgba(111, 183, 233, 0.11), transparent);
}

.production-flow__road::after {
    bottom: 0;
    height: 110px;
    background: linear-gradient(0deg, rgba(5, 24, 39, 0.7), transparent);
}

.production-flow__lane {
    position: relative;
    min-width: 0;
    border-right: 1px dashed rgba(216, 237, 248, 0.27);
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--flow-color) 3%, transparent), transparent);
}

.production-flow__lane:first-child {
    border-left: 1px solid rgba(216, 237, 248, 0.18);
}

.production-flow__lane--jasa {
    border-right-color: rgba(49, 196, 106, 0.62);
    background:
        linear-gradient(180deg, rgba(49, 196, 106, 0.13), transparent 58%),
        linear-gradient(90deg, rgba(49, 196, 106, 0.02), rgba(49, 196, 106, 0.12), rgba(49, 196, 106, 0.02));
    box-shadow: inset 0 0 30px rgba(49, 196, 106, 0.09);
}

.production-flow__lane-badge {
    position: absolute;
    z-index: 7;
    top: 10px;
    left: 50%;
    width: calc(100% - 8px);
    padding: 5px 2px;
    color: #d9ffe7;
    border: 1px solid rgba(49, 196, 106, 0.52);
    border-radius: 999px;
    background: rgba(18, 110, 61, 0.84);
    box-shadow: 0 0 16px rgba(49, 196, 106, 0.24);
    font-size: clamp(6px, 1.55vw, 9px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.04em;
    text-align: center;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.production-flow__fleet {
    --fleet-top: 60%;
    --cruise-distance: 3px;
    --cruise-duration: 5.8s;
    position: absolute;
    z-index: 4;
    left: 50%;
    top: var(--fleet-top);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    color: var(--flow-color);
    transform: translateX(-50%);
    filter: drop-shadow(0 5px 8px rgba(1, 18, 29, 0.55));
}

.impact-section.is-visible .production-flow__fleet {
    animation: production-fleet-cruise var(--cruise-duration) ease-in-out infinite;
}

.production-flow__fleet--company {
    --fleet-top: 68%;
    --cruise-distance: 3px;
    --cruise-duration: 5.8s;
}

.production-flow__fleet--legal {
    --fleet-top: 35%;
    --cruise-distance: 8px;
    --cruise-duration: 2.8s;
    gap: 44px;
}

.production-flow__fleet--accounting {
    --fleet-top: 48%;
    --cruise-distance: 6px;
    --cruise-duration: 3.6s;
    gap: 62px;
}

.production-flow__fleet--train {
    --fleet-top: 14%;
    --cruise-distance: 14px;
    --cruise-duration: 1.2s;
    gap: 5px;
}

.production-flow__fleet--train::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 30px;
    bottom: 10px;
    left: 50%;
    width: 5px;
    border-radius: 999px;
    background: var(--flow-color);
    box-shadow: 0 0 16px rgba(49, 196, 106, 0.52);
    transform: translateX(-50%);
}

.production-flow__vehicle {
    position: relative;
    display: grid;
    place-items: center;
    width: clamp(32px, 7.4vw, 46px);
    height: clamp(48px, 9vw, 58px);
    flex: 0 0 auto;
    border: 2px solid color-mix(in srgb, var(--flow-color) 82%, #ffffff);
    border-radius: 16px 16px 10px 10px;
    color: var(--flow-color);
    background:
        linear-gradient(180deg, color-mix(in srgb, var(--flow-color) 21%, #164a72), rgba(11, 44, 70, 0.98));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.13), 0 0 15px var(--flow-soft);
}

.production-flow__vehicle::before,
.production-flow__vehicle::after {
    content: "";
    position: absolute;
    top: 17%;
    bottom: 17%;
    width: 5px;
    border: 1px solid color-mix(in srgb, var(--flow-color) 54%, #d8edf8);
    border-radius: 4px;
    background: #071f33;
}

.production-flow__vehicle::before {
    left: -6px;
}

.production-flow__vehicle::after {
    right: -6px;
}

.production-flow__vehicle .material-symbols-outlined {
    font-size: clamp(18px, 4.6vw, 25px);
    line-height: 1;
}

.production-flow__brand-mark {
    display: block;
    flex: 0 0 auto;
    object-fit: contain;
}

.production-flow__brand-mark--engine {
    width: clamp(25px, 5.4vw, 34px);
    height: clamp(25px, 5.4vw, 34px);
    padding: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 0 14px rgba(216, 237, 248, 0.35);
}

.production-flow__vehicle--engine {
    width: clamp(39px, 8.6vw, 53px);
    height: clamp(52px, 9.5vw, 62px);
    border-radius: 18px 18px 9px 9px;
    color: #d9ffe7;
    background: linear-gradient(180deg, #2ac46c, #0f4d39);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 0 24px rgba(49, 196, 106, 0.38);
}

.production-flow__vehicle--engine .material-symbols-outlined {
    font-size: 27px;
}

.production-flow__vehicle--engine .production-flow__train-arrow {
    position: absolute;
    top: -31px;
    left: 50%;
    color: #79efa4;
    font-size: 27px;
    filter: drop-shadow(0 0 7px rgba(49, 196, 106, 0.72));
    transform: translateX(-50%);
}

.production-flow__vehicle--wagon {
    width: clamp(29px, 6.7vw, 41px);
    height: clamp(31px, 6.5vw, 39px);
    border-radius: 7px;
    background: linear-gradient(180deg, rgba(49, 196, 106, 0.28), rgba(11, 44, 70, 0.98));
}

.production-flow__vehicle--wagon .material-symbols-outlined {
    font-size: clamp(15px, 4vw, 21px);
}

.production-flow__speed-lines {
    position: absolute;
    z-index: 3;
    left: 12%;
    right: 12%;
    top: 58%;
    height: 34%;
    opacity: 0;
    background:
        linear-gradient(180deg, rgba(49, 196, 106, 0.64), transparent) 18% 0 / 2px 100% no-repeat,
        linear-gradient(180deg, rgba(49, 196, 106, 0.42), transparent) 50% 12px / 2px 88% no-repeat,
        linear-gradient(180deg, rgba(49, 196, 106, 0.72), transparent) 82% 0 / 2px 100% no-repeat;
}

.impact-section.is-visible .production-flow__speed-lines {
    opacity: 1;
    animation: production-speed-lines 0.7s linear infinite;
}

.production-flow__actors {
    align-items: stretch;
}

.production-flow__actor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 0;
    padding: 9px 4px;
    border: 1px solid color-mix(in srgb, var(--flow-color) 26%, transparent);
    border-radius: 4px 4px 10px 10px;
    color: var(--flow-color);
    background: color-mix(in srgb, var(--flow-color) 5%, rgba(11, 44, 70, 0.86));
    text-align: center;
}

.production-flow__actor > .material-symbols-outlined {
    font-size: clamp(18px, 4.5vw, 28px);
}

.production-flow__actor > .production-flow__brand-mark {
    width: clamp(20px, 4.8vw, 29px);
    height: clamp(20px, 4.8vw, 29px);
}

.production-flow__brand-mark--actor {
    padding: 2px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 0 12px rgba(49, 196, 106, 0.24);
}

.production-flow__actor strong {
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(9px, 2.25vw, 14px);
    line-height: 1.14;
}

.production-flow__actor small {
    color: color-mix(in srgb, var(--flow-color) 80%, #ffffff);
    font-size: clamp(7px, 1.65vw, 10px);
    line-height: 1.2;
}

.production-flow__actor--jasa {
    border-color: rgba(49, 196, 106, 0.6);
    background: linear-gradient(180deg, rgba(49, 196, 106, 0.15), rgba(11, 44, 70, 0.9));
    box-shadow: 0 0 20px rgba(49, 196, 106, 0.13);
}

.production-flow__jasa-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 4px;
    padding: 12px 14px;
    border: 1px solid rgba(49, 196, 106, 0.42);
    border-radius: 8px;
    color: #d9ffe7;
    background: linear-gradient(90deg, rgba(49, 196, 106, 0.15), rgba(22, 74, 114, 0.54));
    box-shadow: inset 4px 0 0 #31c46a, 0 0 24px rgba(49, 196, 106, 0.08);
}

.production-flow__jasa-summary > .material-symbols-outlined {
    flex: 0 0 auto;
    color: #31c46a;
    font-size: 30px;
}

.production-flow__brand-mark--summary {
    width: 34px;
    height: 34px;
    padding: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 0 16px rgba(49, 196, 106, 0.28);
}

.production-flow__jasa-summary p {
    margin: 0;
    font-size: clamp(11px, 2.2vw, 14px);
    line-height: 1.45;
}

.production-flow__jasa-summary strong {
    color: #fff;
}

.production-flow__percent.is-animating {
    animation: flow-percent-breathe 0.46s ease-in-out infinite alternate;
}

.production-flow__percent.is-settled {
    text-shadow: 0 0 18px var(--flow-soft);
}

.trust-reveal {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(142, 183, 212, 0.28);
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(15, 63, 99, 0.92), rgba(22, 74, 114, 0.72));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    outline: none;
}

.trust-reveal:focus-visible {
    border-color: rgba(111, 183, 233, 0.72);
    box-shadow: 0 0 0 3px rgba(111, 183, 233, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.trust-reveal::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(111, 183, 233, 0.14), transparent);
    transform: translateX(-100%);
    transition: transform 900ms ease;
    pointer-events: none;
}

.trust-reveal:hover::before,
.trust-reveal:focus-within::before,
.trust-reveal:focus::before {
    transform: translateX(100%);
}

.trust-reveal__cover {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    min-height: 122px;
    padding: 28px;
    text-align: left;
    transition: min-height 520ms ease, padding 520ms ease;
}

.trust-reveal__icon {
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(111, 183, 233, 0.44);
    border-radius: 50%;
    color: #6fb7e9;
    background: rgba(11, 44, 70, 0.4);
    box-shadow: 0 0 0 8px rgba(11, 44, 70, 0.24);
}

.trust-reveal__cover h3 {
    margin: 0;
    color: #ffffff;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(22px, 2.6vw, 34px);
    line-height: 1.15;
    font-weight: 800;
}

.trust-reveal__cover p {
    margin: 6px 0 0;
    color: #d8edf8;
    font-size: 15px;
    line-height: 1.45;
}

.trust-reveal__panel {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 22px;
    max-height: 0;
    padding: 0 28px;
    opacity: 0;
    transform: translateY(18px);
    transition: max-height 680ms ease, opacity 420ms ease, transform 520ms ease, padding 520ms ease;
}

.trust-reveal:hover .trust-reveal__cover,
.trust-reveal:focus-within .trust-reveal__cover,
.trust-reveal:focus .trust-reveal__cover {
    min-height: 88px;
    padding-bottom: 18px;
}

.trust-reveal:hover .trust-reveal__panel,
.trust-reveal:focus-within .trust-reveal__panel,
.trust-reveal:focus .trust-reveal__panel {
    max-height: 430px;
    padding: 0 28px 28px;
    opacity: 1;
    transform: translateY(0);
}

.trust-logo-group {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    overflow: clip;
    contain: paint;
    padding: 0 2px 4px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trust-logo-group h4 {
    margin: 0 0 14px;
    color: #6fb7e9;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.trust-logo-grid {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 16px;
    animation: trust-logo-scroll 34s linear infinite;
    animation-play-state: paused;
}

.trust-logo-grid--institutions {
    animation-duration: 18s;
}

.trust-logo-grid--clients {
    animation-duration: 46s;
}

.trust-logo-grid figure {
    display: grid;
    place-items: center;
    flex: 0 0 168px;
    height: 92px;
    margin: 0;
    padding: 16px 18px;
    border: 1px solid rgba(142, 183, 212, 0.24);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 16px 34px rgba(11, 44, 70, 0.16);
    opacity: 0;
    transform: translateY(14px) scale(0.97);
    transition: opacity 420ms ease, transform 520ms ease, border-color 320ms ease;
}

.trust-logo-grid--institutions figure {
    flex-basis: 210px;
}

.trust-reveal:hover .trust-logo-grid figure,
.trust-reveal:focus-within .trust-logo-grid figure,
.trust-reveal:focus .trust-logo-grid figure {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.trust-reveal:hover .trust-logo-grid,
.trust-reveal:focus-within .trust-logo-grid,
.trust-reveal:focus .trust-logo-grid {
    animation-play-state: running;
}

.trust-reveal:hover .trust-logo-grid figure:nth-child(2),
.trust-reveal:focus-within .trust-logo-grid figure:nth-child(2),
.trust-reveal:focus .trust-logo-grid figure:nth-child(2) { transition-delay: 70ms; }

.trust-reveal:hover .trust-logo-grid figure:nth-child(3),
.trust-reveal:focus-within .trust-logo-grid figure:nth-child(3),
.trust-reveal:focus .trust-logo-grid figure:nth-child(3) { transition-delay: 140ms; }

.trust-reveal:hover .trust-logo-grid figure:nth-child(4),
.trust-reveal:focus-within .trust-logo-grid figure:nth-child(4),
.trust-reveal:focus .trust-logo-grid figure:nth-child(4) { transition-delay: 210ms; }

.trust-reveal:hover .trust-logo-grid figure:nth-child(5),
.trust-reveal:focus-within .trust-logo-grid figure:nth-child(5),
.trust-reveal:focus .trust-logo-grid figure:nth-child(5) { transition-delay: 280ms; }

.trust-reveal:hover .trust-logo-grid figure:nth-child(6),
.trust-reveal:focus-within .trust-logo-grid figure:nth-child(6),
.trust-reveal:focus .trust-logo-grid figure:nth-child(6) { transition-delay: 350ms; }

.trust-logo-grid img {
    max-width: 100%;
    max-height: 74px;
    object-fit: contain;
    justify-self: center;
    filter: saturate(0.94) contrast(1.04);
}

@keyframes trust-logo-scroll {
    to {
        transform: translateX(-50%);
    }
}

@keyframes production-fleet-cruise {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(calc(-1 * var(--cruise-distance)));
    }
}

@keyframes production-speed-lines {
    0% {
        transform: translateY(-18px) scaleY(0.82);
        opacity: 0;
    }
    35% {
        opacity: 1;
    }
    100% {
        transform: translateY(28px) scaleY(1);
        opacity: 0;
    }
}

@keyframes flow-percent-breathe {
    to {
        transform: translateY(-2px);
        filter: brightness(1.12);
    }
}

        @media (max-width: 768px) {
            .story-backdrop { opacity: 0.12; }
            .story-route { opacity: 0.35; }
            .story-route__pipe,
            .story-route__pipe--progress,
            .story-route__flow {
                stroke-width: 1.5;
            }
            .story-bridge {
                height: 56px;
                margin: -28px auto;
                padding: 0 20px;
            }
            .story-bridge[data-stage] {
                justify-content: center;
                padding-left: 20px;
                padding-right: 20px;
            }
            .story-bridge__svg {
                inset: 0 20px;
                width: calc(100% - 40px);
            }
            .story-bridge__node {
                width: 42px;
                height: 42px;
            }
            .story-bridge__icon { font-size: 22px; }
            .story-bridge[data-stage="retorno"] .story-bridge__node {
                left: calc(20px + ((100% - 40px) * 0.62) - 29px);
                top: 178px;
                width: 58px;
                height: 58px;
            }
            .story-bridge[data-stage="retorno"] .story-bridge__icon {
                font-size: 32px;
            }

            .impact-section__header {
                grid-template-columns: 1fr;
            }

            .production-flow {
                padding: 12px;
            }

            .production-flow__road {
                min-height: clamp(500px, 148vw, 590px);
            }

            .production-flow__jasa-summary {
                align-items: flex-start;
                padding: 11px 12px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .animated-logo__color {
                animation: none;
                background: #fd8b00;
            }

            .story-flow,
            .story-bridge.is-visible .story-bridge__pipe--flow,
            .story-bridge.is-visible .story-bridge__node,
            .hero-gear,
            .hero-steam path,
            .hero-stage-title__item,
            .hero-gauge-fill--yellow,
            .hero-gauge-fill--green,
            .hero-gauge-needle,
            .hero-gear-progress,
            .hero-gear-teeth,
            .hero-gear-hub,
            .impact-section.is-visible .production-flow__fleet,
            .impact-section.is-visible .production-flow__speed-lines,
            .production-flow__percent.is-animating {
                animation: none;
            }

            .hero-stage-title__item {
                opacity: 0;
            }

            .hero-stage-title__item--green {
                opacity: 1;
                transform: translateY(0);
            }

            .hero-gauge-fill--yellow,
            .hero-gauge-fill--green {
                opacity: 0.95;
            }

            .hero-gauge-needle {
                transform: rotate(180deg);
            }

            .hero-gear-progress,
            .hero-gear-teeth,
            .hero-gear-hub {
                stroke: #31c46a;
                stroke-dasharray: 100 0;
                opacity: 1;
            }

            .hero-steam path {
                opacity: 0;
            }

            .story-pipe--progress,
            .story-side-pipe--progress,
            .story-route__pipe--progress,
            .scroll-trigger,
            .story-bridge__node,
            .story-bridge__pipe--flow {
                transition: none;
            }

            .impact-section.is-visible .production-flow__speed-lines {
                opacity: 0.52;
            }

            .trust-logo-grid {
                animation: none;
            }
        }

.modal-shell {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-shell.is-open {
    display: flex;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 14, 28, 0.78);
    backdrop-filter: blur(12px);
}

.modal-panel {
    position: relative;
    width: min(960px, 100%);
    max-height: min(760px, calc(100vh - 48px));
    overflow: auto;
    border: 1px solid rgba(139, 144, 159, 0.32);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(33, 103, 157, 0.98), rgba(22, 74, 114, 0.98));
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 28px 18px;
    border-bottom: 1px solid rgba(139, 144, 159, 0.22);
}

.modal-title {
    margin: 0;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
}

.modal-subtitle {
    margin: 8px 0 0;
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.5;
}

.modal-close {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    border: 1px solid rgba(139, 144, 159, 0.35);
    border-radius: 4px;
    color: #fff;
    background: rgba(33, 103, 157, 0.72);
    cursor: pointer;
}

.modal-body {
    padding: 28px;
}

.booking-actions {
    display: grid;
    gap: 14px;
}

.booking-action {
    width: 100%;
    min-height: 56px;
}

.calendar-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 24px;
}

.calendar-card,
.lead-step,
.integration-card {
    border: 1px solid rgba(139, 144, 159, 0.26);
    border-radius: 6px;
    background: rgba(22, 74, 114, 0.72);
}

.calendar-card {
    padding: 18px;
}

.calendar-month {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.calendar-month-title {
    display: grid;
    gap: 4px;
}

.calendar-month strong {
    font-family: 'Manrope', sans-serif;
    color: #fff;
    font-size: 18px;
}

.calendar-month-controls {
    display: flex;
    gap: 8px;
}

.calendar-nav {
    display: grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(139, 144, 159, 0.28);
    border-radius: 4px;
    color: #e2e8f0;
    background: rgba(22, 74, 114, 0.58);
    cursor: pointer;
}

.calendar-nav:hover {
    border-color: rgba(253, 139, 0, 0.56);
    color: #fff;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
}

.calendar-day,
.calendar-weekday {
    min-height: 42px;
    display: grid;
    place-items: center;
    border-radius: 4px;
    font-size: 13px;
}

.calendar-weekday {
    min-height: 26px;
    color: #8b909f;
    font-weight: 700;
}

.calendar-day {
    border: 1px solid rgba(139, 144, 159, 0.22);
    color: #e2e8f0;
    background: rgba(22, 74, 114, 0.7);
}

.calendar-day:disabled {
    color: rgba(226, 232, 240, 0.34);
    cursor: not-allowed;
}

.calendar-day.is-available {
    border-color: rgba(253, 139, 0, 0.56);
    color: #fff;
    background: rgba(253, 139, 0, 0.11);
    cursor: pointer;
}

.calendar-day.is-selected {
    border-color: #fd8b00;
    background: rgba(253, 139, 0, 0.24);
    box-shadow: 0 0 0 2px rgba(253, 139, 0, 0.18);
}

.time-panel {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.calendar-actions {
    display: grid;
    gap: 10px;
    margin-top: 16px;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.time-slot,
.choice-card,
.modal-action,
.modal-secondary {
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.time-slot {
    border: 1px solid rgba(253, 139, 0, 0.62);
    padding: 11px 10px;
    color: #fff;
    background: rgba(253, 139, 0, 0.16);
    box-shadow: inset 0 0 0 1px rgba(255, 184, 28, 0.08);
}

.time-slot:hover {
    border-color: #fd8b00;
    background: rgba(253, 139, 0, 0.26);
}

.time-slot.is-unavailable,
.time-slot:disabled {
    color: rgba(226, 232, 240, 0.42);
    border-color: rgba(139, 144, 159, 0.16);
    background: rgba(22, 74, 114, 0.42);
    cursor: not-allowed;
    text-decoration: line-through;
    box-shadow: none;
}

.time-slot.is-selected,
.choice-card.is-selected {
    border-color: #fd8b00;
    background: rgba(253, 139, 0, 0.16);
}

.integration-card {
    padding: 16px;
}

.integration-card p {
    margin: 0 0 14px;
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.5;
}

.modal-action,
.modal-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid transparent;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
}

.modal-action {
    color: #fff;
    background: #fd8b00;
}

.modal-action--calendly {
    color: #fff;
    border-color: rgba(49, 196, 106, 0.48);
    background: #1f8fe5;
}

.modal-action--calendly:hover {
    background: #31c46a;
}

.modal-action--whatsapp {
    color: #fff;
    border-color: rgba(126, 231, 164, 0.5);
    background: #168a47;
}

.modal-action--whatsapp:hover {
    background: #1fa85a;
}

.modal-secondary {
    color: #fff;
    border-color: rgba(139, 144, 159, 0.36);
    background: rgba(33, 103, 157, 0.72);
}

.lead-progress {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 24px;
}

.lead-progress span {
    height: 4px;
    border-radius: 999px;
    background: rgba(139, 144, 159, 0.28);
}

.lead-progress span.is-active {
    background: #fd8b00;
}

.lead-step {
    display: none;
    padding: 22px;
}

.lead-step.is-active {
    display: block;
}

.lead-step h3 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 20px;
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.choice-card {
    min-height: 76px;
    padding: 16px;
    text-align: left;
    border: 1px solid rgba(139, 144, 159, 0.28);
    color: #fff;
    background: rgba(22, 74, 114, 0.58);
}

.choice-card span {
    display: block;
    margin-top: 6px;
    color: #e2e8f0;
    font-size: 13px;
    line-height: 1.4;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    color: #e2e8f0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(139, 144, 159, 0.36);
    border-radius: 4px;
    padding: 12px 14px;
    color: #fff;
    background: rgba(22, 74, 114, 0.74);
    outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #fd8b00;
}

.form-field--full {
    grid-column: 1 / -1;
}

.lead-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
}

.modal-status {
    margin-top: 14px;
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.5;
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 820px) {
    .modal-shell {
        padding: 14px;
    }

    .calendar-layout,
    .choice-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .modal-header,
    .modal-body {
        padding: 20px;
    }
}
