:root {
            --werk-green: #69d85d;
            --werk-green-strong: #35c95d;
            --werk-navy: #101a26;
            --werk-ink: #f8fbff;
            --werk-muted: rgba(248, 251, 255, .82);
            --werk-line: rgba(255, 255, 255, .18);
            --werk-glass: rgba(21, 34, 48, .68);
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        section[id],
        .objections-wrap[id] {
            scroll-margin-top: 112px;
        }

        body {
            margin: 0;
            min-width: 320px;
            color: var(--werk-ink);
            background: #1c2432;
            font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        }

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

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

        .lp-hero {
            position: relative;
            z-index: 30;
            min-height: 100vh;
            overflow: hidden;
            background: var(--werk-navy);
            isolation: isolate;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: -4;
            background-position: center;
            background-size: cover;
            opacity: 0;
            transform: scale(1.04);
            transition: opacity .85s ease, transform 6s ease;
            will-change: opacity, transform;
        }

        .hero-bg.is-active {
            opacity: 1;
            transform: scale(1);
        }

        .hero-bg.one {
            background-image: url("../img/hero-gestao.png");
        }

        .hero-bg.two {
            background-image: url("../img/hero-operacao.png");
        }

        .lp-hero::before {
            content: "";
            position: absolute;
            inset: 0;
            z-index: -3;
            background:
                linear-gradient(90deg, rgba(8, 15, 24, .98) 0%, rgba(8, 15, 24, .84) 29%, rgba(8, 15, 24, .42) 57%, rgba(8, 15, 24, .24) 100%),
                linear-gradient(180deg, rgba(8, 15, 24, .4) 0%, rgba(8, 15, 24, .04) 42%, rgba(8, 15, 24, .78) 100%);
        }

        .lp-hero::after {
            content: "";
            position: absolute;
            inset: auto 0 0;
            z-index: -2;
            height: 22%;
            background: linear-gradient(180deg, rgba(28, 36, 50, 0), #1c2432 78%);
        }

        .top-rail {
            position: relative;
            z-index: 5;
            width: min(1346px, calc(100% - 56px));
            height: 42px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            color: rgba(255, 255, 255, .9);
            font-size: .84rem;
            font-weight: 700;
        }

        .client-area-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            min-height: 32px;
            color: rgba(255, 255, 255, .86);
            font-size: .78rem;
            font-weight: 800;
            line-height: 1;
            transition: color .2s ease;
        }

        .client-area-link i,
        .client-area-link svg {
            width: 14px;
            height: 14px;
            flex: 0 0 auto;
        }

        .client-area-link:hover {
            color: var(--werk-green);
        }

        .header-wrap {
            position: relative;
            z-index: 20;
            transition:
                background .32s ease,
                border-color .32s ease,
                box-shadow .32s ease,
                backdrop-filter .32s ease,
                transform .32s cubic-bezier(.2, .8, .2, 1);
        }

        .header-wrap.is-fixed {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 999;
            animation: stickyHeaderIn .34s cubic-bezier(.2, .8, .2, 1) both;
            background: rgba(11, 20, 31, .92);
            border-bottom: 1px solid rgba(255, 255, 255, .1);
            box-shadow: 0 18px 56px rgba(0, 0, 0, .32);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }

        .header-wrap.is-fixed .nav-shell {
            width: min(1346px, calc(100% - 56px));
            min-height: 74px;
            border: 0;
            border-radius: 0;
            background: transparent;
            box-shadow: none;
            backdrop-filter: none;
            -webkit-backdrop-filter: none;
            transition:
                min-height .32s ease,
                background .32s ease,
                border-color .32s ease,
                border-radius .32s ease,
                box-shadow .32s ease,
                backdrop-filter .32s ease;
        }

        .header-spacer {
            display: none;
            height: 82px;
        }

        .header-spacer.is-active {
            display: block;
        }

        .nav-shell {
            position: relative;
            width: min(1346px, calc(100% - 56px));
            min-height: 82px;
            margin: 0 auto;
            padding: 14px 22px;
            display: grid;
            grid-template-columns: 188px 1fr auto;
            align-items: center;
            gap: 24px;
            border: 1px solid var(--werk-line);
            border-radius: 8px;
            background: var(--werk-glass);
            box-shadow: 0 22px 60px rgba(0, 0, 0, .28);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            transition:
                min-height .32s ease,
                background .32s ease,
                border-color .32s ease,
                border-radius .32s ease,
                box-shadow .32s ease,
                backdrop-filter .32s ease;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
            font-weight: 800;
        }

        .brand img {
            width: 74px;
            height: auto;
            filter: none;
        }

        .main-nav {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: clamp(18px, 2.1vw, 34px);
            font-size: .96rem;
            font-weight: 800;
            color: rgba(255, 255, 255, .92);
        }

        .main-nav a {
            min-height: 40px;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            white-space: nowrap;
            line-height: 1;
            transition: color .2s ease;
        }

        .main-nav a:hover {
            color: var(--werk-green);
        }

        .nav-cta,
        .hero-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 0;
            border-radius: 0;
            background: var(--werk-green);
            color: #17304a;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: .08em;
            line-height: 1;
            font-family: inherit;
            cursor: pointer;
            transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
            box-shadow: 0 18px 36px rgba(105, 216, 93, .18);
        }

        .nav-cta {
            min-height: 52px;
            padding: 0 28px;
            font-size: .78rem;
        }

        .hero-cta {
            min-height: 52px;
            padding: 0 26px;
            font-size: .78rem;
        }

        .nav-cta:hover,
        .hero-cta:hover {
            transform: translateY(-2px);
            background: #7ce46f;
            box-shadow: 0 24px 48px rgba(105, 216, 93, .24);
        }

        .hero-content {
            position: relative;
            z-index: 4;
            width: min(1346px, calc(100% - 56px));
            min-height: calc(100vh - 124px);
            margin: 0 auto;
            display: flex;
            align-items: center;
            padding: 86px 0 116px;
        }

        .hero-copy {
            width: min(680px, 58vw);
            padding-left: 2px;
        }

        .hero-copy h1 {
            margin: 0;
            color: #fff;
            font-size: clamp(1.9rem, 2.65vw, 3.15rem);
            line-height: 1.12;
            letter-spacing: .035em;
            font-weight: 800;
            text-transform: uppercase;
        }

        .hero-copy p {
            max-width: 590px;
            margin: 36px 0 0;
            color: var(--werk-muted);
            font-size: clamp(1rem, 1.24vw, 1.25rem);
            line-height: 1.54;
            font-weight: 700;
            letter-spacing: .01em;
        }

        .hero-copy strong {
            color: var(--werk-green);
            font-weight: 900;
        }

        .hero-actions {
            margin-top: 42px;
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .hero-proof {
            color: rgba(255, 255, 255, .72);
            font-size: .82rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .12em;
        }

        .hero-lines {
            position: absolute;
            right: -7vw;
            bottom: 14%;
            width: min(520px, 38vw);
            height: 560px;
            opacity: .3;
            color: var(--werk-green);
            pointer-events: none;
        }

        .slider-dots {
            position: absolute;
            z-index: 8;
            left: 50%;
            bottom: 24px;
            display: flex;
            align-items: center;
            gap: 16px;
            transform: translateX(-50%);
        }

        .slide-dot {
            width: 10px;
            height: 10px;
            padding: 0;
            border: 0;
            border-radius: 999px;
            background: rgba(255, 255, 255, .28);
            cursor: pointer;
            overflow: hidden;
            transition: width .25s ease, background .25s ease;
        }

        .slide-dot.is-active {
            width: 56px;
            height: 8px;
            background: rgba(255, 255, 255, .24);
        }

        .slide-progress {
            display: block;
            width: 0%;
            height: 100%;
            border-radius: 999px;
            background: #fff;
        }

        .solutions-section {
            position: relative;
            background: #1c2432;
            color: #fff;
            padding: 78px 0 102px;
        }

        .solutions-grid {
            position: relative;
            z-index: 1;
            width: min(1346px, calc(100% - 56px));
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            align-items: stretch;
            gap: clamp(14px, 1.35vw, 20px);
            isolation: isolate;
        }

        .solution-card {
            position: relative;
            min-width: 0;
            min-height: clamp(360px, 30vw, 460px);
            padding: clamp(24px, 2.4vw, 38px) clamp(18px, 1.9vw, 30px);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 8px;
            background-color: #101a26;
            background-position: center;
            background-size: cover;
            box-shadow: 0 26px 62px rgba(0, 0, 0, .24);
            isolation: isolate;
            transition:
                transform .34s cubic-bezier(.2, .8, .2, 1),
                border-color .28s ease,
                box-shadow .28s ease,
                filter .28s ease;
            will-change: transform;
        }

        .solution-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(8, 15, 24, .06) 0%, rgba(8, 15, 24, .46) 50%, rgba(8, 15, 24, .94) 100%),
                linear-gradient(90deg, rgba(8, 15, 24, .26) 0%, rgba(8, 15, 24, .05) 100%);
            z-index: -1;
            transition: background .28s ease;
        }

        .solution-card::after {
            content: "";
            position: absolute;
            left: 22px;
            right: 22px;
            bottom: 0;
            height: 5px;
            border-radius: 999px 999px 0 0;
            background: linear-gradient(90deg, var(--werk-green), rgba(105, 216, 93, .12));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .28s ease;
            z-index: 1;
        }

        .solution-card:hover,
        .solution-card:focus {
            z-index: 3;
            transform: translateY(-10px) scale(1.035);
            border-color: rgba(105, 216, 93, .42);
            box-shadow: 0 36px 86px rgba(0, 0, 0, .4);
        }

        .solution-card:focus {
            outline: none;
        }

        .solution-card:focus-visible {
            outline: 2px solid rgba(105, 216, 93, .74);
            outline-offset: 5px;
        }

        .solution-card:hover::before,
        .solution-card:focus::before {
            background:
                linear-gradient(180deg, rgba(8, 15, 24, .04) 0%, rgba(8, 15, 24, .34) 42%, rgba(8, 15, 24, .96) 100%),
                linear-gradient(90deg, rgba(8, 15, 24, .4) 0%, rgba(8, 15, 24, .12) 100%);
        }

        .solution-card:hover::after,
        .solution-card:focus::after {
            transform: scaleX(1);
        }

        .solution-card-ai {
            background-image: url("../img/solution-ai-integrada.png");
            background-position: 48% center;
        }

        .solution-card-data {
            background-image: url("../img/solution-dados.png");
            background-position: 50% center;
        }

        .solution-card-api {
            background-image: url("../img/solution-integracoes-api.png");
            background-position: 50% center;
        }

        .solution-card-multi {
            background-image: url("../img/solution-multiatendimento.png");
            background-position: 54% center;
        }

        .solution-content {
            position: relative;
            z-index: 1;
            max-width: min(430px, 100%);
            transform: translateY(0);
            transition: transform .28s ease;
        }

        .solution-card h2 {
            margin: 0;
            max-width: 310px;
            color: #fff;
            font-size: clamp(1.42rem, 1.7vw, 2rem);
            line-height: 1.08;
            letter-spacing: 0;
            font-weight: 900;
        }

        .solution-card p {
            max-height: 0;
            margin: 0;
            overflow: hidden;
            color: rgba(255, 255, 255, .78);
            font-size: clamp(.92rem, 1vw, 1.05rem);
            line-height: 1.56;
            font-weight: 700;
            opacity: 0;
            transform: translateY(14px);
            transition:
                max-height .34s ease,
                margin-top .28s ease,
                opacity .24s ease,
                transform .28s ease;
        }

        .solution-card:hover p,
        .solution-card:focus p {
            max-height: 170px;
            margin-top: 18px;
            opacity: 1;
            transform: translateY(0);
        }

        .pain-section {
            position: relative;
            overflow: hidden;
            background:
                linear-gradient(180deg, #eaf3ec 0%, #dfeadf 100%);
            color: var(--werk-navy);
            padding: 112px 0 116px;
            border-top: 1px solid rgba(16, 26, 38, .08);
            border-bottom: 1px solid rgba(16, 26, 38, .08);
        }

        .pain-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(135deg, rgba(16, 26, 38, .08), transparent 36%),
                linear-gradient(315deg, rgba(105, 216, 93, .12), transparent 42%);
            mask-image: linear-gradient(180deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .28));
            -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .28));
            pointer-events: none;
        }

        .pain-section::after {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(125deg, transparent 0 58%, rgba(105, 216, 93, .16) 58% 64%, transparent 64% 100%),
                linear-gradient(125deg, transparent 0 70%, rgba(16, 26, 38, .08) 70% 73%, transparent 73% 100%);
            pointer-events: none;
        }

        .pain-inner {
            position: relative;
            z-index: 1;
            width: min(1180px, calc(100% - 56px));
            margin: 0 auto;
        }

        .pain-top {
            display: grid;
            grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
            gap: clamp(34px, 5vw, 68px);
            align-items: start;
        }

        .pain-eyebrow,
        .pain-copy-kicker {
            margin: 0 0 14px;
            color: var(--werk-green);
            font-size: .78rem;
            font-weight: 900;
            letter-spacing: .18em;
            text-transform: uppercase;
        }

        .pain-eyebrow {
            display: inline-flex;
            align-items: center;
            min-height: 32px;
            padding: 0 12px;
            color: var(--werk-navy);
            background: rgba(16, 26, 38, .09);
            border-left: 4px solid var(--werk-green-strong);
        }

        .pain-head h2 {
            margin: 0;
            color: var(--werk-navy);
            font-size: clamp(1.8rem, 2.8vw, 3.15rem);
            line-height: 1.08;
            font-weight: 900;
            letter-spacing: 0;
        }

        .pain-quotes {
            margin: 30px 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 0;
            counter-reset: painQuote;
            border-top: 1px solid rgba(16, 26, 38, .14);
        }

        .pain-quotes li {
            position: relative;
            min-height: 70px;
            padding: 18px 0 18px 58px;
            display: flex;
            align-items: center;
            border-bottom: 1px solid rgba(16, 26, 38, .14);
            color: rgba(16, 26, 38, .9);
            font-size: 1.02rem;
            line-height: 1.45;
            font-weight: 800;
        }

        .pain-quotes li::before {
            counter-increment: painQuote;
            content: counter(painQuote, decimal-leading-zero);
            position: absolute;
            left: 0;
            top: 50%;
            width: 38px;
            height: 34px;
            display: grid;
            place-items: center;
            transform: translateY(-50%);
            color: var(--werk-green);
            background: var(--werk-navy);
            border: 1px solid rgba(16, 26, 38, .22);
            border-radius: 6px;
            box-shadow: 0 10px 22px rgba(16, 26, 38, .16);
            font-size: .82rem;
            font-weight: 900;
            letter-spacing: .12em;
        }

        .pain-copy {
            padding: clamp(28px, 4vw, 44px);
            background: var(--werk-navy);
            border-left: 6px solid var(--werk-green);
            box-shadow: 0 28px 70px rgba(16, 26, 38, .18);
        }

        .pain-copy p,
        .pain-closing p {
            color: rgba(16, 26, 38, .72);
            font-size: 1rem;
            line-height: 1.7;
            font-weight: 650;
        }

        .pain-copy p {
            margin: 0;
            color: rgba(248, 251, 255, .78);
        }

        .pain-copy .pain-copy-kicker {
            color: var(--werk-green);
        }

        .pain-copy p + p {
            margin-top: 20px;
        }

        .pain-closing {
            max-width: 100%;
            margin-top: 44px;
            padding: 28px 0 0;
            border-top: 1px solid rgba(16, 26, 38, .16);
        }

        .pain-closing p {
            margin: 0;
        }

        .pain-closing p + p {
            margin-top: 18px;
        }

        .clients-section {
            background: #1c2432;
            color: #fff;
            padding: 72px 0 110px;
        }

        .clients-inner {
            width: min(1346px, calc(100% - 56px));
            margin: 0 auto;
        }

        .clients-title {
            max-width: 720px;
            margin: 0 auto 52px;
            color: #fff;
            font-size: clamp(1.8rem, 2.7vw, 3.05rem);
            line-height: 1.15;
            font-weight: 800;
            text-align: center;
            letter-spacing: 0;
        }

        .clients-marquee {
            position: relative;
            overflow: hidden;
            padding: 8px 0;
            mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
            -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 9%, #000 91%, transparent 100%);
        }

        .clients-track {
            --clients-marquee-gap: 18px;
            --clients-marquee-offset: 9px;
            width: max-content;
            display: flex;
            gap: var(--clients-marquee-gap);
            animation: clientsMarquee 30s linear infinite;
            will-change: transform;
        }

        .clients-group {
            display: flex;
            gap: var(--clients-marquee-gap);
        }

        .client-logo {
            width: 220px;
            min-height: 104px;
            padding: 18px 20px;
            display: inline-flex;
            align-items: center;
            justify-content: flex-start;
            gap: 14px;
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 4px;
            background: rgba(255, 255, 255, .045);
            color: rgba(255, 255, 255, .78);
            font-size: 1rem;
            font-weight: 900;
            letter-spacing: .04em;
            text-transform: uppercase;
            transition: transform .22s ease, color .22s ease, border-color .22s ease, background .22s ease;
        }

        .client-logo:hover {
            transform: translateY(-5px);
            border-color: rgba(105, 216, 93, .28);
            background: rgba(255, 255, 255, .075);
            color: #fff;
        }

        .client-logo mark {
            padding: 0;
            background: transparent;
            color: var(--werk-green);
        }

        .client-mark {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            border-radius: 12px;
            background: rgba(105, 216, 93, .14);
            color: var(--werk-green);
        }

        .integrations-marquee {
            opacity: .72;
            transition: opacity .22s ease;
        }

        .integrations-marquee:hover {
            opacity: 1;
        }

        .integrations-track {
            --clients-marquee-gap: clamp(34px, 5vw, 76px);
            --clients-marquee-offset: clamp(17px, 2.5vw, 38px);
        }

        .integrations-group {
            align-items: center;
        }

        .integration-icon {
            width: 1em;
            height: 1em;
            display: block;
            flex: 0 0 auto;
            color: rgba(255, 255, 255, .82);
            font-size: 2rem;
            line-height: 1;
        }

        .integration-icon-lg {
            font-size: 2.45rem;
        }

        .client-name {
            display: flex;
            flex-direction: column;
            gap: 3px;
            line-height: 1;
        }

        .client-name small {
            color: rgba(255, 255, 255, .45);
            font-size: .62rem;
            font-weight: 800;
            letter-spacing: .16em;
        }

        @keyframes clientsMarquee {
            from {
                transform: translateX(0);
            }
            to {
                transform: translateX(calc(-50% - var(--clients-marquee-offset)));
            }
        }

        @keyframes stickyHeaderIn {
            from {
                opacity: .92;
                transform: translateY(-14px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .agent-section {
            position: relative;
            overflow: hidden;
            background:
                linear-gradient(90deg, rgba(8, 15, 24, .98), rgba(13, 24, 35, .94)),
                #080f18;
            color: #fff;
            padding: 118px 0 126px;
        }

        .agent-section::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
            background-size: 64px 64px;
            opacity: .35;
            pointer-events: none;
        }

        .agent-inner {
            position: relative;
            z-index: 1;
            width: min(1346px, calc(100% - 56px));
            margin: 0 auto;
            display: grid;
            grid-template-columns: minmax(420px, .95fr) minmax(0, 1fr);
            gap: clamp(52px, 7vw, 112px);
            align-items: center;
        }

        .agent-visual {
            min-height: 560px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .agent-console {
            width: min(560px, 100%);
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 8px;
            overflow: hidden;
            background: rgba(13, 24, 35, .88);
            box-shadow: 0 34px 90px rgba(0, 0, 0, .35);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
        }

        .console-bar {
            min-height: 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 18px;
            padding: 0 18px;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
            color: rgba(255, 255, 255, .68);
            font-size: .72rem;
            font-weight: 900;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .console-dots {
            display: flex;
            gap: 7px;
        }

        .console-dots span {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .22);
        }

        .console-dots span:first-child {
            background: var(--werk-green);
        }

        .console-body {
            position: relative;
            padding: 28px;
            min-height: 430px;
        }

        .console-body::before {
            content: "";
            position: absolute;
            inset: 28px;
            border: 1px solid rgba(105, 216, 93, .14);
            border-radius: 6px;
            pointer-events: none;
        }

        .agent-status {
            position: relative;
            z-index: 1;
            min-height: 132px;
            display: grid;
            grid-template-columns: 76px 1fr;
            align-items: center;
            gap: 18px;
            padding: 24px;
            border: 1px solid rgba(105, 216, 93, .24);
            border-radius: 6px;
            background: linear-gradient(135deg, rgba(105, 216, 93, .16), rgba(255, 255, 255, .035));
        }

        .agent-symbol {
            width: 76px;
            height: 76px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(105, 216, 93, .36);
            border-radius: 8px;
            color: var(--werk-green);
        }

        .agent-status strong {
            display: block;
            color: #fff;
            font-size: 1.25rem;
            font-weight: 900;
            line-height: 1.15;
        }

        .agent-status span {
            display: block;
            margin-top: 8px;
            color: rgba(255, 255, 255, .64);
            font-size: .85rem;
            font-weight: 700;
            line-height: 1.5;
        }

        .agent-flow {
            position: relative;
            z-index: 1;
            margin-top: 22px;
            display: grid;
            gap: 12px;
        }

        .flow-row {
            min-height: 58px;
            display: grid;
            grid-template-columns: 34px 1fr auto;
            align-items: center;
            gap: 14px;
            padding: 12px 14px;
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 6px;
            background: rgba(255, 255, 255, .035);
        }

        .flow-step {
            width: 34px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            background: rgba(105, 216, 93, .13);
            color: var(--werk-green);
            font-size: .78rem;
            font-weight: 900;
        }

        .flow-row b {
            display: block;
            color: #fff;
            font-size: .9rem;
            line-height: 1.2;
        }

        .flow-row small {
            display: block;
            margin-top: 4px;
            color: rgba(255, 255, 255, .54);
            font-size: .72rem;
            font-weight: 700;
        }

        .flow-pill {
            color: var(--werk-green);
            font-size: .66rem;
            font-weight: 900;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .console-scan {
            position: absolute;
            left: 28px;
            right: 28px;
            top: 50%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--werk-green), transparent);
            opacity: .7;
            animation: consoleScan 4s ease-in-out infinite;
        }

        .agent-eyebrow {
            margin: 0 0 18px;
            color: var(--werk-green);
            font-size: .83rem;
            font-weight: 900;
            letter-spacing: .16em;
            text-transform: uppercase;
        }

        .agent-content h2 {
            margin: 0;
            max-width: 650px;
            color: #fff;
            font-size: clamp(1.75rem, 2.55vw, 3.15rem);
            line-height: 1.05;
            font-weight: 800;
            letter-spacing: 0;
            text-transform: uppercase;
        }

        .agent-lead {
            max-width: 600px;
            margin: 26px 0 0;
            color: rgba(255, 255, 255, .72);
            font-size: 1.08rem;
            line-height: 1.7;
            font-weight: 650;
        }

        .agent-features {
            margin-top: 34px;
            display: grid;
            gap: 20px;
        }

        .agent-feature {
            display: grid;
            grid-template-columns: 42px 1fr;
            gap: 16px;
            align-items: start;
        }

        .feature-check {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 6px;
            background: rgba(105, 216, 93, .14);
            color: var(--werk-green);
        }

        .agent-feature h3 {
            margin: 0;
            color: #fff;
            font-size: 1rem;
            font-weight: 900;
        }

        .agent-feature p {
            margin: 7px 0 0;
            color: rgba(255, 255, 255, .62);
            font-size: .9rem;
            line-height: 1.58;
            font-weight: 600;
        }

        .agent-cta {
            margin-top: 38px;
            min-height: 52px;
            padding: 0 26px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 0;
            background: var(--werk-green);
            color: #17304a;
            font-size: .78rem;
            font-weight: 900;
            letter-spacing: .08em;
            line-height: 1;
            text-transform: uppercase;
            font-family: inherit;
            cursor: pointer;
            transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
            box-shadow: 0 18px 36px rgba(105, 216, 93, .16);
        }

        .agent-cta:hover {
            transform: translateY(-2px);
            background: #7ce46f;
            box-shadow: 0 24px 48px rgba(105, 216, 93, .22);
        }

        .tech-orbit {
            position: relative;
            width: min(560px, 100%);
            aspect-ratio: 1;
            display: grid;
            place-items: center;
        }

        .tech-orbit::before,
        .tech-orbit::after {
            content: "";
            position: absolute;
            border: 1px solid rgba(105, 216, 93, .18);
            border-radius: 50%;
            inset: 7%;
        }

        .tech-orbit::after {
            inset: 21%;
            border-color: rgba(255, 255, 255, .12);
        }

        .orbit-ring {
            position: absolute;
            inset: 0;
            border: 1px solid rgba(255, 255, 255, .08);
            border-radius: 50%;
            animation: orbitSpin 28s linear infinite;
        }

        .orbit-ring::before,
        .orbit-ring::after {
            content: "";
            position: absolute;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--werk-green);
            box-shadow: 0 0 26px rgba(105, 216, 93, .85);
        }

        .orbit-ring::before {
            top: 11%;
            left: 20%;
        }

        .orbit-ring::after {
            right: 12%;
            bottom: 25%;
        }

        .tech-core {
            position: relative;
            z-index: 2;
            width: min(260px, 52%);
            aspect-ratio: 1;
            display: grid;
            place-items: center;
            border: 1px solid rgba(105, 216, 93, .32);
            border-radius: 50%;
            background:
                radial-gradient(circle at 50% 50%, rgba(105, 216, 93, .28), rgba(105, 216, 93, .08) 38%, rgba(12, 20, 31, .96) 70%),
                #0c141f;
            box-shadow:
                0 0 80px rgba(105, 216, 93, .18),
                inset 0 0 42px rgba(105, 216, 93, .18);
        }

        .tech-core::before {
            content: "";
            position: absolute;
            inset: 22%;
            border: 1px dashed rgba(255, 255, 255, .22);
            border-radius: 50%;
            animation: orbitSpin 16s linear infinite reverse;
        }

        .core-label {
            position: relative;
            z-index: 1;
            display: grid;
            gap: 10px;
            justify-items: center;
            text-align: center;
        }

        .core-label img {
            width: min(118px, 36vw);
            height: auto;
            display: block;
        }

        .core-label span {
            color: var(--werk-green);
            font-size: .7rem;
            font-weight: 900;
            letter-spacing: .22em;
            text-transform: uppercase;
        }

        .tech-node {
            position: absolute;
            z-index: 3;
            min-width: 154px;
            padding: 13px 15px;
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 6px;
            background: rgba(13, 24, 35, .88);
            box-shadow: 0 20px 54px rgba(0, 0, 0, .3);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
        }

        .tech-node b {
            display: block;
            color: #fff;
            font-size: .82rem;
            font-weight: 900;
            line-height: 1.15;
        }

        .tech-node span {
            display: block;
            margin-top: 5px;
            color: rgba(255, 255, 255, .54);
            font-size: .68rem;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase;
        }

        .tech-node.n1 {
            top: 7%;
            left: 3%;
        }

        .tech-node.n2 {
            top: 18%;
            right: 0;
        }

        .tech-node.n3 {
            bottom: 12%;
            left: 0;
        }

        .tech-node.n4 {
            right: 6%;
            bottom: 5%;
        }

        .tech-pulse {
            position: absolute;
            z-index: 1;
            width: 72%;
            height: 72%;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(105, 216, 93, .12), transparent 62%);
            animation: techPulse 3.4s ease-in-out infinite;
        }

        .signal-panel {
            margin-top: 30px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            max-width: 620px;
        }

        .signal-card {
            min-height: 104px;
            padding: 18px;
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 6px;
            background: rgba(255, 255, 255, .04);
        }

        .signal-card b {
            display: block;
            color: var(--werk-green);
            font-size: 1.3rem;
            font-weight: 900;
            line-height: 1;
        }

        .signal-card span {
            display: block;
            margin-top: 10px;
            color: rgba(255, 255, 255, .62);
            font-size: .78rem;
            line-height: 1.45;
            font-weight: 700;
        }

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

        @keyframes techPulse {
            0%,
            100% {
                transform: scale(.88);
                opacity: .45;
            }
            50% {
                transform: scale(1.08);
                opacity: .9;
            }
        }

        .automation-section {
            position: relative;
            overflow: hidden;
            background:
                radial-gradient(circle at 50% 0%, rgba(105, 216, 93, .08), transparent 34%),
                linear-gradient(180deg, #080f18 0%, #101a26 100%);
            color: #fff;
            padding: 116px 0 128px;
            border-top: 1px solid rgba(255, 255, 255, .06);
        }

        .automation-inner {
            position: relative;
            z-index: 1;
            width: min(1180px, calc(100% - 56px));
            margin: 0 auto;
        }

        .automation-head {
            max-width: 780px;
            margin: 0 auto 50px;
            text-align: center;
        }

        .automation-eyebrow {
            margin: 0;
            color: rgba(255, 255, 255, .7);
            font-size: .78rem;
            font-weight: 900;
            letter-spacing: .22em;
            text-transform: uppercase;
        }

        .automation-head h2 {
            margin: 16px 0 0;
            color: #fff;
            font-size: clamp(1.9rem, 3.15vw, 3.65rem);
            line-height: 1.08;
            font-weight: 900;
            letter-spacing: 0;
        }

        .automation-head h2 span {
            color: var(--werk-green);
        }

        .automation-head p {
            max-width: 680px;
            margin: 18px auto 0;
            color: rgba(255, 255, 255, .78);
            font-size: 1.02rem;
            line-height: 1.7;
            font-weight: 650;
        }

        .workflow-product {
            max-width: 980px;
            margin: 0 auto;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 24px;
            background:
                linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025)),
                rgba(13, 24, 35, .82);
            box-shadow: 0 34px 120px -78px rgba(0, 0, 0, .72);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
        }

        .workflow-body {
            padding: clamp(28px, 4vw, 46px);
        }

        .workflow-steps {
            display: grid;
            grid-template-columns: 1fr 84px 1fr 84px 1fr 84px 1fr;
            align-items: center;
            gap: 0;
        }

        .workflow-step {
            position: relative;
            min-height: 186px;
            padding: 24px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 18px;
            background:
                radial-gradient(circle at 50% 0%, rgba(105, 216, 93, .1), transparent 58%),
                rgba(255, 255, 255, .045);
            transition: transform .22s ease, border-color .22s ease, background .22s ease;
        }

        .workflow-step:hover {
            transform: translateY(-6px);
            border-color: rgba(105, 216, 93, .34);
            background:
                radial-gradient(circle at 50% 0%, rgba(105, 216, 93, .24), transparent 60%),
                rgba(255, 255, 255, .065);
        }

        .step-badge {
            position: absolute;
            top: 14px;
            right: 14px;
            padding: 5px 8px;
            border-radius: 4px;
            background: rgba(105, 216, 93, .16);
            color: var(--werk-green);
            font-size: .62rem;
            font-weight: 900;
            letter-spacing: .1em;
            text-transform: uppercase;
        }

        .workflow-icon {
            width: 72px;
            height: 72px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 16px;
            background: rgba(105, 216, 93, .08);
            color: var(--werk-green);
        }

        .workflow-step b {
            margin-top: 18px;
            color: #fff;
            font-size: .82rem;
            font-weight: 900;
            line-height: 1.2;
        }

        .workflow-step span:not(.step-badge):not(.workflow-icon) {
            margin-top: 8px;
            color: rgba(255, 255, 255, .6);
            font-size: .78rem;
            line-height: 1.45;
            font-weight: 700;
        }

        .workflow-connector {
            position: relative;
            height: 2px;
            margin: 0 14px;
            overflow: hidden;
            border-radius: 999px;
            background: rgba(255, 255, 255, .1);
        }

        .workflow-connector::before {
            content: "";
            position: absolute;
            top: 0;
            left: -45%;
            width: 48%;
            height: 100%;
            border-radius: 999px;
            background: linear-gradient(90deg, transparent, var(--werk-green), transparent);
            filter: blur(.4px);
            animation: automationLight 2.4s ease-in-out infinite;
        }

        .workflow-connector.delay-1::before {
            animation-delay: .5s;
        }

        .workflow-connector.delay-2::before {
            animation-delay: 1s;
        }

        @keyframes automationLight {
            0% {
                transform: translateX(0);
                opacity: 0;
            }
            20%,
            80% {
                opacity: 1;
            }
            100% {
                transform: translateX(310%);
                opacity: 0;
            }
        }

        .diagnosis-section {
            position: relative;
            overflow: hidden;
            background: #080f18;
            color: #fff;
            padding: 118px 0 126px;
            border-top: 1px solid rgba(255, 255, 255, .08);
        }

        .diagnosis-inner {
            position: relative;
            z-index: 1;
            width: min(1180px, calc(100% - 56px));
            margin: 0 auto;
        }

        .diagnosis-head {
            max-width: 820px;
            margin: 0 0 46px;
        }

        .diagnosis-eyebrow {
            margin: 0 0 14px;
            color: var(--werk-green);
            font-size: .78rem;
            font-weight: 900;
            letter-spacing: .18em;
            text-transform: uppercase;
        }

        .diagnosis-head h2,
        .proof-block h3,
        .final-copy h3 {
            margin: 0;
            color: #fff;
            font-weight: 900;
            letter-spacing: 0;
        }

        .diagnosis-head h2 {
            max-width: 760px;
            font-size: clamp(1.9rem, 3vw, 3.45rem);
            line-height: 1.06;
        }

        .diagnosis-head p:not(.diagnosis-eyebrow),
        .proof-block p,
        .final-copy p {
            color: rgba(255, 255, 255, .74);
            font-size: 1rem;
            line-height: 1.72;
            font-weight: 650;
        }

        .diagnosis-head p:not(.diagnosis-eyebrow) {
            max-width: 680px;
            margin: 18px 0 0;
        }

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

        .fit-card,
        .objection-card,
        .final-copy,
        .proof-block {
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 8px;
            background: rgba(255, 255, 255, .045);
        }

        .fit-card {
            position: relative;
            padding: clamp(24px, 3vw, 34px);
            overflow: hidden;
        }

        .fit-card::before {
            content: "";
            position: absolute;
            inset: 0 0 auto;
            height: 5px;
            background: var(--werk-green);
        }

        .fit-card.is-not::before {
            background: rgba(255, 255, 255, .28);
        }

        .fit-card.is-fit {
            background:
                linear-gradient(145deg, rgba(105, 216, 93, .12), rgba(255, 255, 255, .045)),
                rgba(255, 255, 255, .04);
        }

        .fit-card.is-not {
            background: rgba(255, 255, 255, .035);
        }

        .fit-card h3,
        .objections-head h3,
        .objection-card h4 {
            margin: 0;
            color: #fff;
            font-weight: 900;
            letter-spacing: 0;
        }

        .fit-card h3 {
            font-size: clamp(1.25rem, 1.6vw, 1.75rem);
            line-height: 1.18;
        }

        .fit-card p {
            margin: 14px 0 0;
            color: rgba(255, 255, 255, .66);
            font-size: .9rem;
            line-height: 1.58;
            font-weight: 700;
        }

        .fit-card ul,
        .cta-steps {
            margin: 20px 0 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 12px;
        }

        .fit-card li,
        .cta-steps li {
            position: relative;
            padding-left: 22px;
            color: rgba(255, 255, 255, .78);
            font-size: .92rem;
            line-height: 1.55;
            font-weight: 650;
        }

        .fit-card li::before,
        .cta-steps li::before {
            content: "";
            position: absolute;
            left: 0;
            top: .62em;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--werk-green);
            box-shadow: 0 0 0 5px rgba(105, 216, 93, .12);
        }

        .proof-block {
            margin-top: 22px;
            padding: clamp(24px, 3.2vw, 38px);
            display: grid;
            grid-template-columns: minmax(0, .95fr) minmax(280px, .72fr);
            gap: clamp(28px, 4vw, 56px);
            align-items: start;
            background:
                linear-gradient(145deg, rgba(105, 216, 93, .14), rgba(255, 255, 255, .035)),
                rgba(255, 255, 255, .035);
        }

        .proof-block h3 {
            font-size: clamp(1.35rem, 1.8vw, 2rem);
            line-height: 1.18;
        }

        .proof-block p {
            margin: 16px 0 0;
        }

        .proof-list {
            margin: 0;
            padding: 0;
            list-style: none;
            display: grid;
            gap: 0;
            border-top: 1px solid rgba(255, 255, 255, .12);
        }

        .proof-list li {
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .12);
            color: rgba(255, 255, 255, .76);
            font-size: .86rem;
            line-height: 1.5;
            font-weight: 700;
        }

        .proof-list mark {
            padding: 0;
            background: transparent;
            color: var(--werk-green);
            font-weight: 900;
        }

        .objections-wrap {
            margin-top: 64px;
            display: grid;
            grid-template-columns: minmax(240px, .64fr) minmax(0, 1fr);
            gap: clamp(28px, 4vw, 54px);
            align-items: start;
        }

        .objections-head {
            position: sticky;
            top: 104px;
            max-width: 420px;
            margin-bottom: 0;
        }

        .objections-head h3 {
            font-size: clamp(1.45rem, 2.2vw, 2.5rem);
            line-height: 1.12;
        }

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

        .objection-card {
            min-height: auto;
            padding: 22px 24px;
            display: grid;
            grid-template-columns: minmax(190px, .8fr) minmax(0, 1.2fr);
            gap: 22px;
            align-items: start;
        }

        .objection-card h4 {
            color: var(--werk-green);
            font-size: .96rem;
            line-height: 1.35;
        }

        .objection-card p {
            margin: 0;
            color: rgba(255, 255, 255, .68);
            font-size: .86rem;
            line-height: 1.62;
            font-weight: 650;
        }

        .final-grid {
            margin-top: 70px;
            display: grid;
            grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
            gap: 18px;
        }

        .final-copy {
            padding: clamp(24px, 3vw, 38px);
        }

        .final-copy h3 {
            font-size: clamp(1.45rem, 2vw, 2.3rem);
            line-height: 1.14;
        }

        .final-copy.is-decision {
            background:
                linear-gradient(145deg, rgba(105, 216, 93, .18), rgba(255, 255, 255, .055)),
                rgba(255, 255, 255, .045);
        }

        .final-copy p {
            margin: 16px 0 0;
        }

        .diagnosis-cta {
            margin-top: 28px;
            min-height: 52px;
            padding: 0 26px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 0;
            background: var(--werk-green);
            color: #17304a;
            font-size: .78rem;
            font-weight: 900;
            letter-spacing: .08em;
            line-height: 1;
            text-transform: uppercase;
            font-family: inherit;
            cursor: pointer;
            transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
            box-shadow: 0 18px 36px rgba(105, 216, 93, .18);
        }

        .diagnosis-cta:hover {
            transform: translateY(-2px);
            background: #7ce46f;
            box-shadow: 0 24px 48px rgba(105, 216, 93, .24);
        }

        .cta-steps {
            counter-reset: ctaStep;
        }

        .cta-steps li {
            padding-left: 42px;
        }

        .cta-steps li::before {
            counter-increment: ctaStep;
            content: counter(ctaStep);
            top: -.05em;
            width: 26px;
            height: 26px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #17304a;
            font-size: .78rem;
            font-weight: 900;
            box-shadow: none;
        }

        .lp-footer {
            position: relative;
            overflow: hidden;
            background: #080f18;
            color: #fff;
            padding: 72px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, .08);
        }

        .lp-footer::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(255, 255, 255, .025), rgba(255, 255, 255, 0));
            opacity: 1;
            pointer-events: none;
        }

        .footer-inner {
            position: relative;
            z-index: 1;
            width: min(1180px, calc(100% - 56px));
            margin: 0 auto;
        }

        .footer-main {
            display: grid;
            grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(160px, .7fr));
            gap: 42px;
            align-items: start;
        }

        .footer-brand {
            display: inline-flex;
            align-items: center;
        }

        .footer-brand img {
            width: 78px;
            height: auto;
            filter: none;
        }

        .footer-copy {
            max-width: 390px;
            margin: 22px 0 0;
            color: rgba(255, 255, 255, .66);
            font-size: .94rem;
            line-height: 1.72;
            font-weight: 600;
        }

        .footer-social {
            margin-top: 26px;
            display: flex;
            gap: 10px;
        }

        .footer-social a {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 50%;
            color: var(--werk-green);
            background: rgba(255, 255, 255, .035);
            transition: transform .2s ease, border-color .2s ease, background .2s ease;
        }

        .footer-social a:hover {
            transform: translateY(-2px);
            border-color: rgba(105, 216, 93, .36);
            background: rgba(105, 216, 93, .1);
        }

        .footer-col h3 {
            margin: 0 0 18px;
            color: #fff;
            font-size: .84rem;
            font-weight: 900;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: grid;
            gap: 12px;
        }

        .footer-col a,
        .footer-col span {
            color: rgba(255, 255, 255, .62);
            font-size: .9rem;
            line-height: 1.5;
            font-weight: 650;
        }

        .footer-col a {
            transition: color .2s ease;
        }

        .footer-col a:hover {
            color: var(--werk-green);
        }

        .footer-bottom {
            margin-top: 56px;
            padding-top: 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            border-top: 1px solid rgba(255, 255, 255, .08);
            color: rgba(255, 255, 255, .48);
            font-size: .78rem;
            font-weight: 700;
        }

        .footer-bottom-links {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, .52);
            transition: color .2s ease;
        }

        .footer-bottom a:hover {
            color: var(--werk-green);
        }

        #contactModal {
            position: fixed;
            inset: 0;
            z-index: 9999;
            display: none;
            align-items: center;
            justify-content: center;
            padding: 16px;
            color: #f8fbff;
            font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        }

        #contactModal.flex {
            display: flex;
        }

        #contactModal.hidden {
            display: none;
        }

        #contactModal > .absolute {
            position: absolute;
            inset: 0;
            background: rgba(8, 15, 24, .72);
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }

        #modalContent {
            position: relative;
            width: min(100%, 448px);
            max-height: calc(100vh - 32px);
            overflow: auto;
            border: 1px solid var(--werk-line);
            border-radius: 8px;
            background:
                radial-gradient(circle at 18% 0%, rgba(105, 216, 93, .16), transparent 34%),
                linear-gradient(145deg, rgba(21, 34, 48, .96), rgba(8, 15, 24, .98));
            box-shadow: 0 34px 90px rgba(0, 0, 0, .46);
            transform: scale(.95);
            opacity: 0;
            transition: transform .3s ease, opacity .3s ease;
        }

        #modalContent.scale-95 {
            transform: scale(.95);
        }

        #modalContent.scale-100 {
            transform: scale(1);
        }

        #modalContent.opacity-0 {
            opacity: 0;
        }

        #modalContent.opacity-100 {
            opacity: 1;
        }

        #modalContent > div:first-child {
            position: relative;
            padding: 20px 24px;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
            overflow: hidden;
        }

        #modalContent > div:first-child > .absolute {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        #modalContent > div:first-child > .relative {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        #modalContent > div:first-child > .relative > div:first-child {
            display: flex;
            align-items: center;
            gap: 12px;
            min-width: 0;
        }

        #modalContent > div:first-child > .relative > div:first-child > div:first-child {
            width: 48px;
            height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            overflow: hidden;
            border: 1px solid rgba(105, 216, 93, .22);
            border-radius: 8px;
            background: rgba(105, 216, 93, .1);
            box-shadow: 0 16px 32px rgba(0, 0, 0, .24);
        }

        #modalContent > div:first-child img {
            width: 36px;
            height: 36px;
            object-fit: contain;
            filter: brightness(0) invert(1);
        }

        #contactModal h3 {
            margin: 0;
            color: #fff;
            font-family: "Manrope", system-ui, sans-serif !important;
            font-size: 1.25rem;
            line-height: 1.2;
            font-weight: 900;
            letter-spacing: 0;
        }

        #contactModal h3 + p {
            margin: 4px 0 0;
            color: rgba(255, 255, 255, .56);
            font-size: .9rem;
            line-height: 1.4;
            font-weight: 650;
        }

        #modalContent button[aria-label="Fechar modal"] {
            width: 38px;
            height: 38px;
            padding: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex: 0 0 auto;
            border: 0;
            border-radius: 8px;
            background: transparent;
            color: rgba(255, 255, 255, .68);
            cursor: pointer;
            transition: background .2s ease, color .2s ease;
        }

        #modalContent button[aria-label="Fechar modal"]:hover {
            background: rgba(255, 255, 255, .1);
            color: #fff;
        }

        #modalContent > div:nth-child(2) {
            padding: 24px;
        }

        #contactForm > div:first-child > div + div {
            margin-top: 20px;
        }

        #contactForm label {
            display: block;
            margin: 0 0 8px;
            color: rgba(255, 255, 255, .84);
            font-size: .88rem;
            font-weight: 850;
        }

        #contactForm .relative {
            position: relative;
        }

        #contactForm .relative > .absolute {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255, 255, 255, .44);
            pointer-events: none;
        }

        #contactForm input {
            width: 100%;
            min-height: 50px;
            padding: 12px 16px 12px 44px;
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 8px;
            background: rgba(255, 255, 255, .04);
            color: #fff;
            font: inherit;
            font-weight: 650;
            outline: none;
            transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
        }

        #contactForm input::placeholder {
            color: rgba(255, 255, 255, .42);
        }

        #contactForm input:focus {
            border-color: rgba(16, 185, 129, .52);
            background: rgba(255, 255, 255, .06);
            box-shadow: 0 0 0 3px rgba(105, 216, 93, .16);
        }

        #formMessage {
            display: none;
            margin-top: 20px;
            padding: 16px;
            border: 1px solid rgba(255, 255, 255, .1);
            border-radius: 8px;
            font-size: .9rem;
            line-height: 1.45;
            font-weight: 850;
        }

        #formMessage[class*="emerald"] {
            border-color: rgba(16, 185, 129, .36);
            background: rgba(16, 185, 129, .14);
            color: #a7f3d0;
        }

        #formMessage[class*="rose"] {
            border-color: rgba(244, 63, 94, .36);
            background: rgba(244, 63, 94, .14);
            color: #fecdd3;
        }

        #contactForm > div:last-child {
            margin-top: 24px;
            display: flex;
            gap: 12px;
        }

        #contactForm > div:last-child button {
            min-height: 48px;
            padding: 12px 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            flex: 1 1 0;
            border-radius: 8px;
            font: inherit;
            font-weight: 900;
            cursor: pointer;
            transition: transform .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
        }

        #contactForm > div:last-child button[type="button"] {
            border: 1px solid rgba(255, 255, 255, .1);
            background: rgba(255, 255, 255, .04);
            color: rgba(255, 255, 255, .82);
        }

        #contactForm > div:last-child button[type="button"]:hover {
            background: rgba(255, 255, 255, .07);
            border-color: rgba(255, 255, 255, .16);
        }

        #contactForm > div:last-child button[type="submit"] {
            border: 0;
            background: var(--werk-green) !important;
            color: #17304a;
            text-transform: uppercase;
            letter-spacing: .08em;
            box-shadow: 0 18px 36px rgba(105, 216, 93, .18);
        }

        #contactForm > div:last-child button[type="submit"]:hover {
            transform: translateY(-2px);
        }

        #contactForm > div:last-child button:disabled {
            cursor: wait;
            opacity: .72;
            transform: none;
        }

        .whatsapp-assistant {
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 9900;
            font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        }

        .whatsapp-assistant-toggle {
            position: relative;
            width: 62px;
            height: 62px;
            padding: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 0;
            border-radius: 50%;
            background: #25d366;
            color: #fff;
            cursor: pointer;
            box-shadow: 0 20px 48px rgba(0, 0, 0, .34), 0 0 0 8px rgba(37, 211, 102, .12);
            transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
        }

        .whatsapp-assistant-toggle:hover {
            transform: translateY(-3px);
            background: #20bf5a;
            box-shadow: 0 24px 58px rgba(0, 0, 0, .4), 0 0 0 10px rgba(37, 211, 102, .14);
        }

        .whatsapp-assistant-toggle i,
        .whatsapp-assistant-toggle svg {
            width: 30px;
            height: 30px;
            font-size: 1.9rem;
            position: relative;
            z-index: 2;
        }

        .whatsapp-assistant-pulse {
            position: absolute;
            inset: -7px;
            border: 1px solid rgba(37, 211, 102, .44);
            border-radius: inherit;
            animation: whatsappPulse 1.8s ease-out infinite;
        }

        .whatsapp-assistant-panel {
            position: absolute;
            right: 0;
            bottom: 82px;
            width: min(360px, calc(100vw - 32px));
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, .12);
            border-radius: 8px;
            background:
                radial-gradient(circle at 18% 0%, rgba(37, 211, 102, .18), transparent 34%),
                linear-gradient(145deg, rgba(21, 34, 48, .98), rgba(8, 15, 24, .99));
            color: #fff;
            box-shadow: 0 32px 84px rgba(0, 0, 0, .46);
            opacity: 0;
            transform: translateY(14px) scale(.96);
            transform-origin: right bottom;
            pointer-events: none;
            transition: opacity .22s ease, transform .22s ease;
        }

        .whatsapp-assistant.is-open .whatsapp-assistant-panel {
            opacity: 1;
            transform: translateY(0) scale(1);
            pointer-events: auto;
        }

        .whatsapp-assistant-head {
            min-height: 76px;
            padding: 16px;
            display: grid;
            grid-template-columns: 42px 1fr 36px;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, rgba(37, 211, 102, .2), rgba(105, 216, 93, .06));
            border-bottom: 1px solid rgba(255, 255, 255, .1);
        }

        .whatsapp-assistant-avatar {
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: #25d366;
            color: #fff;
            box-shadow: 0 12px 26px rgba(37, 211, 102, .24);
        }

        .whatsapp-assistant-avatar i,
        .whatsapp-assistant-avatar svg {
            width: 22px;
            height: 22px;
            font-size: 1.35rem;
        }

        .whatsapp-assistant-head strong {
            display: block;
            color: #fff;
            font-size: .98rem;
            line-height: 1.15;
            font-weight: 900;
        }

        .whatsapp-assistant-head span {
            display: block;
            margin-top: 4px;
            color: rgba(255, 255, 255, .68);
            font-size: .76rem;
            line-height: 1.2;
            font-weight: 750;
        }

        .whatsapp-assistant-close {
            width: 36px;
            height: 36px;
            padding: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 0;
            border-radius: 8px;
            background: rgba(255, 255, 255, .06);
            color: rgba(255, 255, 255, .72);
            cursor: pointer;
            transition: background .2s ease, color .2s ease;
        }

        .whatsapp-assistant-close:hover {
            background: rgba(255, 255, 255, .12);
            color: #fff;
        }

        .whatsapp-assistant-body {
            max-height: 330px;
            min-height: 220px;
            padding: 18px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            overflow-y: auto;
        }

        .whatsapp-assistant-message {
            max-width: 88%;
            padding: 11px 13px;
            border-radius: 8px;
            font-size: .86rem;
            line-height: 1.45;
            font-weight: 700;
            animation: whatsappMessageIn .2s ease both;
        }

        .whatsapp-assistant-message.is-bot {
            align-self: flex-start;
            background: rgba(255, 255, 255, .08);
            color: rgba(255, 255, 255, .88);
            border-top-left-radius: 2px;
        }

        .whatsapp-assistant-message.is-user {
            align-self: flex-end;
            background: #25d366;
            color: #062b16;
            border-top-right-radius: 2px;
        }

        .whatsapp-assistant-options {
            padding: 0 18px 18px;
            display: grid;
            gap: 8px;
        }

        .whatsapp-assistant-option,
        .whatsapp-assistant-action {
            width: 100%;
            min-height: 42px;
            padding: 10px 12px;
            border-radius: 8px;
            font: inherit;
            font-size: .82rem;
            font-weight: 900;
            line-height: 1.2;
            cursor: pointer;
            transition: transform .2s ease, background .2s ease, border-color .2s ease;
        }

        .whatsapp-assistant-option {
            border: 1px solid rgba(255, 255, 255, .12);
            background: rgba(255, 255, 255, .05);
            color: rgba(255, 255, 255, .88);
            text-align: left;
        }

        .whatsapp-assistant-option:hover {
            transform: translateY(-1px);
            background: rgba(255, 255, 255, .09);
            border-color: rgba(37, 211, 102, .34);
        }

        .whatsapp-assistant-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border: 0;
            background: #25d366;
            color: #062b16;
            text-align: center;
        }

        .whatsapp-assistant-action:hover {
            transform: translateY(-1px);
            background: #20bf5a;
        }

        .whatsapp-assistant-action i,
        .whatsapp-assistant-action svg {
            width: 16px;
            height: 16px;
            flex: 0 0 auto;
        }

        @keyframes consoleScan {
            0%,
            100% {
                transform: translateY(-150px);
                opacity: 0;
            }
            20%,
            80% {
                opacity: .72;
            }
            50% {
                transform: translateY(150px);
            }
        }

        @keyframes whatsappPulse {
            0% {
                opacity: .72;
                transform: scale(.9);
            }
            100% {
                opacity: 0;
                transform: scale(1.28);
            }
        }

        @keyframes whatsappMessageIn {
            from {
                opacity: 0;
                transform: translateY(5px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 1180px) {
            .nav-shell {
                grid-template-columns: auto 1fr;
            }

            .main-nav {
                display: none;
            }

            .nav-cta {
                justify-self: end;
            }

            .hero-copy {
                width: min(680px, 72vw);
            }

            .solutions-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .solution-card {
                min-height: 330px;
            }

            .pain-top {
                grid-template-columns: 1fr;
            }

            .client-logo {
                width: 208px;
            }

            .agent-inner {
                grid-template-columns: 1fr;
            }

            .agent-visual {
                order: 2;
                min-height: auto;
            }

            .agent-content {
                order: 1;
            }

            .tech-orbit {
                width: min(520px, 100%);
            }

            .workflow-steps {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .workflow-connector {
                width: 2px;
                height: 44px;
                margin: 0 auto;
            }

            .workflow-connector::before {
                top: -45%;
                left: 0;
                width: 100%;
                height: 48%;
                background: linear-gradient(180deg, transparent, var(--werk-green), transparent);
                animation-name: automationLightVertical;
            }

            .proof-block,
            .final-grid {
                grid-template-columns: 1fr;
            }

            .objections-wrap {
                grid-template-columns: 1fr;
            }

            .objections-head {
                position: static;
                max-width: 760px;
            }

            .footer-main {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

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

        @media (max-width: 760px) {
            .top-rail {
                width: min(100% - 28px, 1346px);
                height: 38px;
            }

            .nav-shell,
            .hero-content {
                width: min(100% - 28px, 1346px);
            }

            .header-wrap.is-fixed .nav-shell {
                width: min(100% - 28px, 1346px);
                min-height: 66px;
            }

            .nav-shell {
                min-height: 68px;
                margin-top: 14px;
                padding: 12px;
                grid-template-columns: 1fr;
            }

            .brand img {
                width: 62px;
            }

            .nav-cta {
                display: none;
            }

            .lp-hero::before {
                background:
                    linear-gradient(90deg, rgba(8, 15, 24, .98) 0%, rgba(8, 15, 24, .86) 60%, rgba(8, 15, 24, .58) 100%),
                    linear-gradient(180deg, rgba(8, 15, 24, .38) 0%, rgba(8, 15, 24, .16) 48%, rgba(8, 15, 24, .84) 100%);
            }

            .hero-bg {
                background-position: 62% center;
            }

            .hero-content {
                min-height: calc(100vh - 82px);
                align-items: flex-end;
                padding: 88px 0 112px;
            }

            .hero-copy {
                width: 100%;
            }

            .hero-copy h1 {
                font-size: clamp(1.65rem, 7.2vw, 2.35rem);
                line-height: 1.12;
            }

            .hero-copy p {
                margin-top: 26px;
                font-size: .98rem;
            }

            .hero-actions {
                margin-top: 30px;
                align-items: stretch;
            }

            .hero-cta {
                width: 100%;
            }

            .hero-proof {
                width: 100%;
                line-height: 1.5;
            }

            .hero-lines {
                display: none;
            }

            .solutions-section {
                padding: 48px 0 64px;
            }

            .solutions-grid {
                width: min(100% - 28px, 1346px);
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .solution-card {
                min-height: 270px;
                padding: 22px;
            }

            .solution-card:hover,
            .solution-card:focus {
                transform: translateY(-5px) scale(1.015);
            }

            .pain-section {
                padding: 72px 0 76px;
            }

            .pain-inner {
                width: min(100% - 28px, 1180px);
            }

            .pain-head h2 {
                font-size: clamp(1.55rem, 7vw, 2.2rem);
            }

            .pain-quotes {
                margin-top: 22px;
            }

            .pain-closing {
                padding: 22px 0 0;
            }

            .clients-section {
                padding: 56px 0 72px;
            }

            .clients-inner {
                width: min(100% - 28px, 1346px);
            }

            .clients-title {
                margin-bottom: 32px;
                font-size: clamp(1.55rem, 8vw, 2.2rem);
            }

            .clients-track {
                --clients-marquee-gap: 12px;
                --clients-marquee-offset: 6px;
            }

            .clients-group {
                gap: var(--clients-marquee-gap);
            }

            .client-logo {
                width: 184px;
                min-height: 84px;
                padding: 14px;
                font-size: .84rem;
            }

            .client-mark {
                width: 36px;
                height: 36px;
            }

            .integrations-track {
                --clients-marquee-gap: 30px;
                --clients-marquee-offset: 15px;
            }

            .integration-icon {
                font-size: 1.65rem;
            }

            .integration-icon-lg {
                font-size: 2rem;
            }

            .agent-section {
                padding: 76px 0 82px;
            }

            .agent-inner {
                width: min(100% - 28px, 1346px);
                gap: 44px;
            }

            .agent-content h2 {
                font-size: clamp(1.55rem, 6.7vw, 2.2rem);
            }

            .agent-lead {
                font-size: .98rem;
            }

            .agent-console {
                width: 100%;
            }

            .console-body {
                padding: 18px;
                min-height: 390px;
            }

            .console-body::before {
                inset: 18px;
            }

            .agent-status {
                grid-template-columns: 1fr;
                gap: 14px;
                padding: 18px;
            }

            .flow-row {
                grid-template-columns: 34px 1fr;
            }

            .flow-pill {
                grid-column: 2;
            }

            .console-scan {
                left: 18px;
                right: 18px;
            }

            .tech-orbit {
                width: 100%;
                max-width: 420px;
                margin: 0 auto;
            }

            .tech-node {
                min-width: 132px;
                padding: 11px 12px;
            }

            .tech-node b {
                font-size: .72rem;
            }

            .tech-node span {
                font-size: .58rem;
            }

            .core-label img {
                width: 94px;
            }

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

            .automation-section {
                padding: 76px 0 84px;
            }

            .automation-inner {
                width: min(100% - 28px, 1180px);
            }

            .automation-head h2 {
                font-size: clamp(1.65rem, 7.4vw, 2.35rem);
            }

            .workflow-body {
                padding: 18px;
            }

            .workflow-step {
                min-height: 164px;
            }

            .diagnosis-section {
                padding: 76px 0 84px;
            }

            .diagnosis-inner {
                width: min(100% - 28px, 1180px);
            }

            .diagnosis-head h2 {
                font-size: clamp(1.65rem, 7.4vw, 2.35rem);
            }

            .fit-grid,
            .objection-card {
                grid-template-columns: 1fr;
            }

            .objections-wrap {
                gap: 26px;
            }

            .proof-block,
            .fit-card,
            .objection-card,
            .final-copy {
                padding: 20px;
            }

            .diagnosis-cta {
                width: 100%;
            }

            .lp-footer {
                padding: 56px 0 26px;
            }

            .footer-inner {
                width: min(100% - 28px, 1180px);
            }

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

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

            .footer-bottom {
                margin-top: 40px;
                align-items: flex-start;
                flex-direction: column;
            }

            .whatsapp-assistant {
                right: 16px;
                bottom: 16px;
            }

            .whatsapp-assistant-toggle {
                width: 56px;
                height: 56px;
            }

            .whatsapp-assistant-panel {
                bottom: 74px;
                width: min(340px, calc(100vw - 28px));
            }

            .whatsapp-assistant-body {
                max-height: min(320px, 48vh);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-bg {
                transition: none;
            }

            .solution-card,
            .solution-card p,
            .solution-card::before,
            .solution-card::after,
            .slide-dot {
                transition: none;
            }

            .clients-track {
                animation: none;
            }

            .header-wrap.is-fixed {
                animation: none;
            }

            .console-scan {
                animation: none;
            }

            .orbit-ring,
            .tech-core::before,
            .tech-pulse {
                animation: none;
            }

            .workflow-connector::before {
                animation: none;
            }

            .whatsapp-assistant-pulse,
            .whatsapp-assistant-message {
                animation: none;
            }

            .whatsapp-assistant-panel,
            .whatsapp-assistant-toggle,
            .whatsapp-assistant-option,
            .whatsapp-assistant-action {
                transition: none;
            }
        }

        @keyframes automationLightVertical {
            0% {
                transform: translateY(0);
                opacity: 0;
            }
            20%,
            80% {
                opacity: 1;
            }
            100% {
                transform: translateY(310%);
                opacity: 0;
            }
        }
