:root {
    --lp-black: #191919;
    --lp-black-soft: #242424;
    --lp-white: #ffffff;
    --lp-paper: #efefef;
    --lp-line: rgba(25, 25, 25, 0.17);
    --lp-muted: rgba(25, 25, 25, 0.66);
    --lp-orange: #f26922;
    --lp-orange-dark: #d8510d;
    --lp-display: "DM Sans", Arial, sans-serif;
    --lp-body: "DM Sans", Arial, sans-serif;
    --lp-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --lp-pad: clamp(22px, 3.2vw, 64px);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
    background: var(--lp-black);
}

body {
    margin: 0;
    background: var(--lp-white);
    color: var(--lp-black);
    font-family: var(--lp-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.55;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body,
button,
input,
select,
textarea {
    font-family: var(--lp-body);
}

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

a {
    color: inherit;
}

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

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

::selection {
    background: var(--lp-orange);
    color: var(--lp-white);
}

.lp-gtm-frame {
    position: absolute;
    width: 0;
    height: 0;
    border: 0;
    visibility: hidden;
}

.lp-skip {
    position: fixed;
    z-index: 10001;
    top: 10px;
    left: 10px;
    padding: 11px 16px;
    transform: translateY(-150%);
    background: var(--lp-white);
    color: var(--lp-black);
    text-decoration: none;
    transition: transform 180ms ease;
}

.lp-skip:focus {
    transform: translateY(0);
}

.lp-container {
    width: min(100%, 1536px);
    margin-inline: auto;
    padding-inline: var(--lp-pad);
}

.lp-section {
    padding-block: clamp(100px, 10vw, 168px);
}

.lp-header {
    position: fixed;
    z-index: 1000;
    inset: 0 0 auto;
    color: var(--lp-white);
    transition: background 280ms ease, border-color 280ms ease, backdrop-filter 280ms ease;
}

.lp-header::after {
    position: absolute;
    right: var(--lp-pad);
    bottom: 0;
    left: var(--lp-pad);
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
    content: "";
}

.lp-header.is-scrolled {
    background: rgba(25, 25, 25, 0.91);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.lp-header.is-scrolled::after {
    right: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
}

.lp-header__inner {
    width: 100%;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.lp-brand {
    width: 132px;
    display: block;
    flex: 0 0 auto;
}

.lp-brand img {
    width: 100%;
    height: auto;
}

.lp-nav {
    display: flex;
    align-items: center;
    gap: clamp(22px, 2.3vw, 40px);
}

.lp-nav > a:not(.lp-button) {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.lp-nav > a:not(.lp-button)::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 1px;
    transform: scaleX(0);
    transform-origin: right;
    background: currentColor;
    content: "";
    transition: transform 240ms var(--lp-ease);
}

.lp-nav > a:not(.lp-button):hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.lp-button {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 0 28px;
    border: 1px solid transparent;
    border-radius: 0;
    background: var(--lp-black);
    color: var(--lp-white);
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: transform 220ms var(--lp-ease), background 220ms ease, color 220ms ease, border-color 220ms ease;
}

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

.lp-button:focus-visible,
.lp-text-link:focus-visible,
.lp-nav a:focus-visible,
.lp-work__head a:focus-visible,
.lp-case a:focus-visible,
.lp-service__detail a:focus-visible,
.lp-footer a:focus-visible,
.lp-footer button:focus-visible {
    outline: 2px solid var(--lp-orange);
    outline-offset: 4px;
}

.lp-button--small {
    min-height: 44px;
    padding-inline: 19px;
    border-color: rgba(255, 255, 255, 0.42);
    background: transparent;
    font-size: 12px;
}

.lp-button--small:hover {
    border-color: var(--lp-white);
    background: var(--lp-white);
    color: var(--lp-black);
}

.lp-button--accent {
    background: var(--lp-orange);
    color: var(--lp-white);
}

.lp-button--accent:hover {
    background: var(--lp-white);
    color: var(--lp-black);
}

.lp-button span[aria-hidden="true"] {
    font-size: 18px;
    font-weight: 400;
    transition: transform 220ms var(--lp-ease);
}

.lp-button:hover span[aria-hidden="true"] {
    transform: translate(3px, -3px);
}

.lp-hero {
    position: relative;
    min-height: min(920px, 100svh);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0e0e0e;
    color: var(--lp-white);
}

.lp-hero__media,
.lp-hero__veil {
    position: absolute;
    inset: 0;
}

.lp-hero__media picture,
.lp-hero__media img {
    width: 100%;
    height: 100%;
}

.lp-hero__media img {
    object-fit: cover;
    object-position: 55% 50%;
    transform: scale(1.015);
    animation: lpHeroScale 1.6s var(--lp-ease) both;
}

.lp-hero__veil {
    background:
        linear-gradient(90deg, rgba(7, 7, 7, 0.97) 0%, rgba(7, 7, 7, 0.86) 42%, rgba(7, 7, 7, 0.25) 76%, rgba(7, 7, 7, 0.18) 100%),
        linear-gradient(0deg, rgba(7, 7, 7, 0.7) 0%, transparent 42%);
}

.lp-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 160px;
    padding-bottom: 92px;
}

.lp-hero__copy {
    max-width: 1080px;
}

.lp-hero h1,
.lp-pressure h2,
.lp-services h2,
.lp-work h2,
.lp-operation h2,
.lp-routine h2,
.lp-fit h2,
.lp-contact h2,
.lp-form-success h3 {
    font-family: var(--lp-display);
    font-weight: 500;
    letter-spacing: -0.055em;
}

.lp-hero h1 {
    max-width: 1040px;
    margin: 0;
    font-size: clamp(68px, 7.1vw, 118px);
    line-height: 0.84;
}

.lp-hero__intro {
    max-width: 780px;
    margin: clamp(34px, 4vw, 54px) 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(17px, 1.4vw, 21px);
    font-weight: 300;
    line-height: 1.6;
}

.lp-hero__actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 42px;
}

.lp-text-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-block: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
    color: rgba(255, 255, 255, 0.84);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

/* Faixa de prova social alimentada pelos clientes marcados para o Quem Somos. */
.lp-clients {
    overflow: hidden;
    padding-block: 40px 50px;
    border-bottom: 1px solid var(--lp-line);
    background: var(--lp-white);
}

.lp-clients__head {
    margin-bottom: 30px;
}

.lp-clients__head p {
    margin: 0;
    color: rgba(25, 25, 25, 0.68);
    font-size: clamp(17px, 1.45vw, 21px);
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
}

.lp-clients__viewport {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.lp-clients__track {
    width: max-content;
    display: flex;
    animation: lpClientsMarquee var(--lp-clients-duration, 46s) linear infinite;
    will-change: transform;
}

.lp-clients__viewport:hover .lp-clients__track {
    animation-play-state: paused;
}

.lp-clients__group {
    min-width: 100vw;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: clamp(46px, 5vw, 84px);
    padding-right: clamp(46px, 5vw, 84px);
}

.lp-client-logo {
    width: clamp(264px, 24vw, 380px);
    height: 128px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
}

.lp-client-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 96px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.62;
    transition: filter 220ms ease, opacity 220ms ease;
}

.lp-client-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

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

.lp-results {
    padding-block: clamp(76px, 8vw, 124px);
    background: var(--lp-white);
}

.lp-results__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
    gap: 60px;
    align-items: end;
}

.lp-results__head h2 {
    margin: 0;
    font-family: var(--lp-display);
    font-size: clamp(46px, 5vw, 76px);
    font-weight: 500;
    letter-spacing: -0.05em;
    line-height: 0.92;
}

.lp-results__head p {
    max-width: 480px;
    margin: 0 0 4px;
    color: var(--lp-muted);
    font-size: 16px;
    line-height: 1.65;
}

.lp-results__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: clamp(54px, 6vw, 84px);
    border-top: 1px solid var(--lp-line);
    border-bottom: 1px solid var(--lp-line);
}

.lp-results__grid article {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(34px, 4vw, 54px) clamp(28px, 4vw, 58px) clamp(36px, 4vw, 56px) 0;
}

.lp-results__grid article + article {
    padding-right: 0;
    padding-left: clamp(28px, 4vw, 58px);
    border-left: 1px solid var(--lp-line);
}

.lp-results__grid strong {
    max-width: 640px;
    color: var(--lp-orange-dark);
    font-family: var(--lp-display);
    font-size: clamp(50px, 6vw, 90px);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.88;
}

.lp-results__grid p {
    max-width: 520px;
    margin: 34px 0 0;
    color: var(--lp-muted);
    font-size: 16px;
    line-height: 1.65;
}

.lp-results__note {
    max-width: 760px;
    margin: 22px 0 0;
    color: rgba(25, 25, 25, 0.52);
    font-size: 13px;
    line-height: 1.6;
}

.lp-manifesto {
    padding-block: clamp(92px, 10vw, 164px);
    background: var(--lp-black);
    color: var(--lp-white);
}

.lp-manifesto p {
    max-width: 1280px;
    margin: 0 auto;
    font-family: var(--lp-display);
    font-size: clamp(56px, 6.5vw, 104px);
    font-weight: 500;
    letter-spacing: -0.055em;
    line-height: 0.9;
    text-align: center;
}

.lp-pressure {
    background: var(--lp-paper);
}

.lp-pressure__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.85fr);
    gap: clamp(60px, 10vw, 170px);
    align-items: end;
}

.lp-pressure h2,
.lp-services h2,
.lp-work h2,
.lp-operation h2,
.lp-routine h2,
.lp-fit h2,
.lp-contact h2 {
    margin: 0;
    font-size: clamp(50px, 6.1vw, 96px);
    line-height: 0.9;
}

.lp-pressure__intro > p {
    margin: 0 0 4px;
    color: var(--lp-muted);
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.7;
}

.lp-pressure__intro--single {
    display: block;
}

.lp-pressure__intro--single > p {
    max-width: 920px;
    margin: 0;
    font-size: clamp(20px, 1.65vw, 25px);
    line-height: 1.65;
}

.lp-pressure__list {
    margin-top: clamp(74px, 8vw, 120px);
    border-top: 1px solid var(--lp-line);
}

.lp-pressure__list article {
    min-height: 210px;
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(360px, 1.1fr);
    gap: clamp(40px, 9vw, 150px);
    align-items: center;
    padding-block: clamp(34px, 4vw, 54px);
    border-bottom: 1px solid var(--lp-line);
}

.lp-pressure__list h3 {
    max-width: 520px;
    margin: 0;
    font-family: var(--lp-display);
    font-size: clamp(35px, 3.5vw, 54px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.94;
}

.lp-pressure__list p {
    max-width: 650px;
    margin: 0;
    color: var(--lp-muted);
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.7;
}

/* Serviços completos: conteúdo e ordem vêm do CMS. */
.lp-services {
    overflow: hidden;
    background: var(--lp-black);
    color: var(--lp-white);
}

.lp-services__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.62fr);
    gap: clamp(60px, 10vw, 170px);
    align-items: end;
}

.lp-services__head > p {
    max-width: 620px;
    margin: 0 0 5px;
    color: rgba(255, 255, 255, 0.62);
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.7;
}

.lp-services__list {
    margin-top: clamp(76px, 8vw, 118px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-service {
    display: grid;
    grid-template-columns: 72px minmax(320px, 0.95fr) minmax(360px, 1.05fr);
    gap: clamp(28px, 5vw, 78px);
    align-items: start;
    padding-block: clamp(36px, 4.6vw, 64px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-service__index {
    padding-top: 8px;
    color: var(--lp-orange);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.lp-service__main h3 {
    max-width: 620px;
    margin: 0;
    font-family: var(--lp-display);
    font-size: clamp(38px, 4vw, 60px);
    font-weight: 500;
    letter-spacing: -0.048em;
    line-height: 0.92;
}

.lp-service__main p {
    max-width: 680px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 15px;
    line-height: 1.75;
}

.lp-service__detail {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.lp-service__detail ul {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-service__detail li {
    position: relative;
    padding: 11px 0 11px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.5;
}

.lp-service__detail li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-service__detail li::before {
    position: absolute;
    top: 19px;
    left: 1px;
    width: 5px;
    height: 5px;
    background: var(--lp-orange);
    content: "";
}

.lp-service__detail a {
    display: inline-flex;
    gap: 10px;
    margin-top: 24px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.45);
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.lp-service__detail a span {
    transition: transform 220ms var(--lp-ease);
}

.lp-service__detail a:hover span {
    transform: translate(3px, -3px);
}

.lp-capacity-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    margin-top: clamp(56px, 7vw, 96px);
    padding-top: clamp(32px, 4vw, 52px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-capacity-cta p {
    margin: 0;
    font-family: var(--lp-display);
    font-size: clamp(30px, 3.2vw, 48px);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1;
}

.lp-capacity-cta a {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
    color: var(--lp-white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.lp-capacity-cta a span {
    transition: transform 220ms var(--lp-ease);
}

.lp-capacity-cta a:hover span {
    transform: translateX(4px);
}

.lp-work {
    background: var(--lp-white);
}

.lp-work__head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 60px;
    align-items: end;
}

.lp-work__head > div {
    max-width: 960px;
}

.lp-work__head p {
    max-width: 680px;
    margin: 32px 0 0;
    color: var(--lp-muted);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.65;
}

.lp-work__head > a {
    display: inline-flex;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.lp-cases {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(34px, 4vw, 66px) clamp(20px, 3vw, 44px);
    margin-top: clamp(70px, 8vw, 116px);
}

.lp-case--large {
    grid-column: 1 / -1;
}

.lp-case a {
    display: block;
    text-decoration: none;
}

.lp-case__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--lp-paper);
}

.lp-case--large .lp-case__image {
    aspect-ratio: 16 / 7;
}

.lp-case__image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 72%, rgba(0, 0, 0, 0.11));
    content: "";
    pointer-events: none;
}

.lp-case__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 900ms var(--lp-ease);
}

.lp-case a:hover .lp-case__image img {
    transform: scale(1.035);
}

.lp-case__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: #dcdcdc;
    color: rgba(25, 25, 25, 0.35);
    font-family: var(--lp-display);
    font-size: clamp(42px, 7vw, 100px);
    letter-spacing: -0.05em;
}

.lp-case__meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding-top: 20px;
}

.lp-case__meta span:not(.lp-case__arrow) {
    display: block;
    margin-bottom: 7px;
    color: var(--lp-muted);
    font-size: 13px;
}

.lp-case__meta h3 {
    margin: 0;
    font-family: var(--lp-display);
    font-size: clamp(32px, 3vw, 47px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.95;
}

.lp-case__meta p {
    max-width: 720px;
    display: -webkit-box;
    margin: 14px 0 0;
    overflow: hidden;
    color: var(--lp-muted);
    font-size: 14px;
    line-height: 1.65;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.lp-case__arrow {
    flex: 0 0 auto;
    padding-top: 3px;
    font-size: 24px;
    transition: transform 220ms var(--lp-ease), color 220ms ease;
}

.lp-case a:hover .lp-case__arrow {
    transform: translate(4px, -4px);
    color: var(--lp-orange-dark);
}

.lp-portfolio-fallback {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: clamp(70px, 8vw, 116px);
    padding: clamp(30px, 5vw, 70px);
    border-top: 1px solid var(--lp-line);
    border-bottom: 1px solid var(--lp-line);
    background: var(--lp-paper);
}

.lp-portfolio-fallback div {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    color: var(--lp-muted);
    font-size: 14px;
}

.lp-portfolio-fallback a {
    align-self: flex-start;
    border-bottom: 1px solid currentColor;
    font-family: var(--lp-display);
    font-size: clamp(30px, 4vw, 58px);
    line-height: 1;
    text-decoration: none;
}

.lp-operation {
    overflow: hidden;
    background: var(--lp-black);
    color: var(--lp-white);
}

.lp-operation__head {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
    gap: clamp(60px, 10vw, 170px);
    align-items: end;
}

.lp-operation__head > p {
    margin: 0 0 5px;
    color: rgba(255, 255, 255, 0.62);
    font-size: clamp(17px, 1.35vw, 20px);
    line-height: 1.7;
}

.lp-ownership {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: clamp(78px, 9vw, 130px);
    border-top: 1px solid rgba(255, 255, 255, 0.21);
    border-bottom: 1px solid rgba(255, 255, 255, 0.21);
}

.lp-ownership section {
    padding: clamp(38px, 5vw, 68px) clamp(24px, 4vw, 60px) clamp(44px, 5.5vw, 78px) 0;
}

.lp-ownership section + section {
    padding-right: 0;
    padding-left: clamp(24px, 4vw, 60px);
    border-left: 1px solid rgba(255, 255, 255, 0.21);
}

.lp-ownership h3 {
    margin: 0 0 38px;
    font-family: var(--lp-display);
    font-size: clamp(36px, 4vw, 58px);
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.95;
}

.lp-ownership ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-ownership li {
    position: relative;
    padding: 17px 0 17px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    color: rgba(255, 255, 255, 0.67);
    font-size: 15px;
}

.lp-ownership li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.lp-ownership li::before {
    position: absolute;
    top: 25px;
    left: 1px;
    width: 7px;
    height: 7px;
    background: var(--lp-orange);
    content: "";
}

.lp-routine {
    background: var(--lp-paper);
}

.lp-routine__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(440px, 1.05fr);
    gap: clamp(70px, 11vw, 180px);
    align-items: start;
}

.lp-routine__intro {
    position: sticky;
    top: 132px;
}

.lp-routine__intro > p {
    max-width: 620px;
    margin: 34px 0 0;
    color: var(--lp-muted);
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.7;
}

.lp-routine__list {
    margin: 0;
    border-top: 1px solid var(--lp-line);
}

.lp-routine__list > div {
    padding-block: clamp(34px, 4vw, 54px);
    border-bottom: 1px solid var(--lp-line);
}

.lp-routine__list dt {
    margin: 0;
    font-family: var(--lp-display);
    font-size: clamp(34px, 3.5vw, 50px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 0.95;
}

.lp-routine__list dd {
    max-width: 590px;
    margin: 20px 0 0;
    color: var(--lp-muted);
    font-size: 15px;
    line-height: 1.7;
}

.lp-fit {
    padding-block: clamp(100px, 10vw, 164px);
    background: var(--lp-orange);
    color: var(--lp-white);
}

.lp-fit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(65px, 10vw, 180px);
    align-items: start;
}

.lp-fit__copy > p {
    max-width: 640px;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(21px, 1.75vw, 28px);
    font-weight: 600;
    line-height: 1.5;
}

.lp-fit__criteria {
    padding-top: 4px;
}

.lp-fit__criteria ul {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.42);
    list-style: none;
}

.lp-fit__criteria li {
    position: relative;
    padding: 22px 0 22px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
    font-size: 15px;
    line-height: 1.55;
}

.lp-fit__criteria li::before {
    position: absolute;
    top: 31px;
    left: 1px;
    width: 7px;
    height: 7px;
    background: var(--lp-white);
    content: "";
}

.lp-fit__criteria > p {
    margin: 30px 0 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 13px;
    line-height: 1.7;
}

.lp-contact {
    overflow: hidden;
    background: var(--lp-black);
    color: var(--lp-white);
}

.lp-contact__grid {
    display: grid;
    grid-template-columns: minmax(0, 0.83fr) minmax(540px, 1.17fr);
    gap: clamp(60px, 9vw, 145px);
    align-items: start;
}

.lp-contact__intro {
    position: sticky;
    top: 128px;
}

.lp-contact__intro > p {
    max-width: 570px;
    margin: 35px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: clamp(16px, 1.3vw, 19px);
    line-height: 1.7;
}

.lp-contact__note {
    margin-top: 42px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.lp-contact__note p {
    max-width: 500px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.7;
}

.lp-form-card {
    padding: clamp(30px, 4vw, 58px);
    background: var(--lp-white);
    color: var(--lp-black);
}

.lp-form__heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--lp-line);
}

.lp-form__heading h3 {
    margin: 0;
    font-family: var(--lp-display);
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 500;
    letter-spacing: -0.04em;
    line-height: 1;
}

.lp-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
}

.lp-field {
    min-width: 0;
    display: block;
}

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

.lp-field > span {
    display: block;
    margin-bottom: 9px;
    color: rgba(25, 25, 25, 0.72);
    font-size: 13px;
    font-weight: 500;
}

.lp-field input,
.lp-field select,
.lp-field textarea {
    width: 100%;
    min-height: 54px;
    padding: 12px 0;
    border: 0;
    border-bottom: 1px solid rgba(25, 25, 25, 0.27);
    border-radius: 0;
    outline: 0;
    background: transparent;
    color: var(--lp-black);
    font-size: 15px;
    line-height: 1.45;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.lp-field textarea {
    min-height: 136px;
    resize: vertical;
}

.lp-field select {
    cursor: pointer;
}

.lp-field input::placeholder,
.lp-field textarea::placeholder {
    color: rgba(25, 25, 25, 0.38);
}

.lp-field input:focus,
.lp-field select:focus,
.lp-field textarea:focus {
    border-color: var(--lp-orange);
    box-shadow: 0 1px 0 var(--lp-orange);
}

.lp-field.is-invalid input,
.lp-field.is-invalid select,
.lp-field.is-invalid textarea {
    border-color: #b42318;
}

.lp-field.is-invalid > span {
    color: #b42318;
}

.lp-consent {
    display: grid;
    grid-template-columns: 19px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin-top: 34px;
    color: rgba(25, 25, 25, 0.62);
    font-size: 12px;
    line-height: 1.55;
    cursor: pointer;
}

.lp-consent input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--lp-orange);
}

.lp-consent a {
    text-underline-offset: 2px;
}

.lp-consent.is-invalid {
    color: #b42318;
}

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

.lp-form-step {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.lp-form-step[hidden] {
    display: none !important;
}

.lp-form__heading > div:first-child {
    min-width: 0;
}

.lp-form__heading p {
    margin: 8px 0 0;
    color: var(--lp-muted);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.lp-form-progress {
    width: 112px;
    height: 3px;
    overflow: hidden;
    background: rgba(25, 25, 25, 0.12);
}

.lp-form-progress span {
    display: block;
    width: 50%;
    height: 100%;
    background: var(--lp-orange);
    transition: width 280ms var(--lp-ease);
}

.lp-form-progress span.is-step-2 {
    width: 100%;
}

.lp-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 28px;
}

.lp-form-actions--end {
    justify-content: flex-end;
}

.lp-form-actions .lp-button--submit {
    width: auto;
    min-width: 230px;
    margin-top: 0;
}

.lp-form-back {
    appearance: none;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid rgba(25, 25, 25, 0.45);
    background: transparent;
    color: var(--lp-black);
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
}

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

.lp-button--submit {
    width: 100%;
    min-height: 62px;
    justify-content: space-between;
    margin-top: 28px;
    padding-inline: 26px;
    background: var(--lp-orange);
}

.lp-button--submit:hover {
    background: var(--lp-black);
}

.lp-button--submit:disabled {
    transform: none;
    background: #8b8b8b;
    cursor: wait;
}

.lp-form__status {
    min-height: 21px;
    margin: 14px 0 0;
    color: #b42318;
    font-size: 12px;
}

.lp-form__status.is-success {
    color: #236c3c;
}

.lp-form-success {
    min-height: 610px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lp-form-success[hidden] {
    display: none;
}

.lp-form-success h3 {
    max-width: 580px;
    margin: 0;
    font-size: clamp(52px, 6vw, 84px);
    line-height: 0.88;
}

.lp-form-success p {
    max-width: 520px;
    margin: 32px 0 0;
    color: var(--lp-muted);
    font-size: 16px;
}

.lp-form-success a {
    align-self: flex-start;
    display: inline-flex;
    gap: 12px;
    margin-top: 44px;
    padding-bottom: 7px;
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.lp-footer {
    padding-block: 68px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    background: var(--lp-black);
    color: var(--lp-white);
}

.lp-footer__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 60px;
}

.lp-footer__top img {
    width: 150px;
    height: auto;
}

.lp-footer__top p {
    max-width: 390px;
    margin: 0;
    color: rgba(255, 255, 255, 0.54);
    font-size: 13px;
    text-align: right;
}

.lp-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
}

.lp-footer__bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.lp-footer__bottom a,
.lp-footer__bottom button {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-decoration: none;
    cursor: pointer;
}

.lp-mobile-cta {
    display: none;
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 700ms ease, transform 800ms var(--lp-ease);
}

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

.rco-privacy-modal__panel {
    background: var(--lp-paper);
}

@keyframes lpHeroScale {
    from { transform: scale(1.07); }
    to { transform: scale(1.015); }
}

@media (max-width: 1180px) {
    .lp-hero {
        min-height: 880px;
    }

    .lp-pressure__intro,
    .lp-services__head,
    .lp-operation__head {
        gap: 70px;
    }

    .lp-contact__grid {
        grid-template-columns: minmax(0, 0.72fr) minmax(510px, 1.28fr);
        gap: 54px;
    }
}

@media (max-width: 960px) {
    :root {
        --lp-pad: 26px;
    }

    .lp-nav > a:not(.lp-button) {
        display: none;
    }

    .lp-hero__media img {
        object-position: 59% 50%;
    }

    .lp-hero__veil {
        background:
            linear-gradient(90deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.78) 58%, rgba(7, 7, 7, 0.28) 100%),
            linear-gradient(0deg, rgba(7, 7, 7, 0.8) 0%, transparent 52%);
    }

    .lp-pressure__intro,
    .lp-services__head,
    .lp-operation__head,
    .lp-routine__grid,
    .lp-fit__grid,
    .lp-contact__grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .lp-results__head {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .lp-pressure__intro > p,
    .lp-services__head > p,
    .lp-operation__head > p {
        max-width: 720px;
    }

    .lp-pressure__list article {
        grid-template-columns: minmax(280px, 0.85fr) minmax(340px, 1.15fr);
        gap: 50px;
    }

    .lp-service {
        grid-template-columns: 56px minmax(260px, 0.9fr) minmax(300px, 1.1fr);
        gap: 30px;
    }

    .lp-routine__intro,
    .lp-contact__intro {
        position: static;
    }

    .lp-routine__list {
        max-width: 760px;
    }

    .lp-contact__intro {
        max-width: 760px;
    }
}

@media (max-width: 720px) {
    :root {
        --lp-pad: 18px;
    }

    html {
        scroll-padding-top: 76px;
    }

    body {
        padding-bottom: 74px;
    }

    .lp-section {
        padding-block: 86px;
    }

    .lp-results {
        padding-block: 76px;
    }

    .lp-results__grid {
        grid-template-columns: 1fr;
        margin-top: 48px;
    }

    .lp-results__grid article,
    .lp-results__grid article + article {
        min-height: 230px;
        padding: 34px 0 38px;
        border-left: 0;
    }

    .lp-results__grid article + article {
        border-top: 1px solid var(--lp-line);
    }

    .lp-results__grid strong {
        font-size: clamp(52px, 15vw, 76px);
    }

    .lp-header__inner {
        min-height: 72px;
    }

    .lp-brand {
        width: 112px;
    }

    .lp-nav .lp-button {
        min-height: 38px;
        padding-inline: 13px;
        font-size: 10px;
    }

    .lp-hero {
        min-height: 820px;
    }

    .lp-hero__media img {
        object-position: 59% 50%;
    }

    .lp-hero__veil {
        background:
            linear-gradient(90deg, rgba(7, 7, 7, 0.9) 0%, rgba(7, 7, 7, 0.54) 100%),
            linear-gradient(0deg, rgba(7, 7, 7, 0.97) 0%, rgba(7, 7, 7, 0.38) 69%, rgba(7, 7, 7, 0.6) 100%);
    }

    .lp-hero__content {
        padding-top: 132px;
        padding-bottom: 60px;
    }

    .lp-hero h1 {
        font-size: clamp(51px, 15.7vw, 72px);
        line-height: 0.86;
    }

    .lp-hero__intro {
        margin-top: 28px;
        font-size: 16px;
    }

    .lp-hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 21px;
        margin-top: 34px;
    }

    .lp-button--accent {
        width: 100%;
        justify-content: space-between;
    }

    .lp-pressure h2,
    .lp-services h2,
    .lp-work h2,
    .lp-operation h2,
    .lp-routine h2,
    .lp-fit h2,
    .lp-contact h2 {
        font-size: clamp(44px, 13vw, 60px);
        line-height: 0.9;
    }

    .lp-pressure__intro,
    .lp-services__head,
    .lp-operation__head,
    .lp-routine__grid,
    .lp-fit__grid,
    .lp-contact__grid {
        gap: 38px;
    }

    .lp-pressure__list {
        margin-top: 62px;
    }

    .lp-pressure__list article {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 18px;
        padding-block: 32px;
    }

    .lp-pressure__list h3 {
        font-size: 38px;
    }

    .lp-clients {
        padding-block: 32px 38px;
    }

    .lp-clients__head {
        margin-bottom: 22px;
    }

    .lp-clients__viewport {
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
        mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    }

    .lp-clients__group {
        gap: 36px;
        padding-right: 36px;
    }

    .lp-client-logo {
        width: 236px;
        height: 104px;
    }

    .lp-client-logo img {
        max-height: 78px;
    }

    .lp-manifesto {
        padding-block: 78px;
    }

    .lp-manifesto p {
        font-size: clamp(46px, 13vw, 62px);
        line-height: 0.92;
    }

    .lp-service {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 18px;
        padding-block: 38px;
    }

    .lp-service__index {
        padding-top: 5px;
    }

    .lp-service__main h3 {
        font-size: 40px;
    }

    .lp-service__main p {
        margin-top: 18px;
        font-size: 14px;
    }

    .lp-service__detail {
        grid-column: 2;
        margin-top: 12px;
    }

    .lp-service__detail a {
        margin-top: 22px;
    }

    .lp-work__head {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .lp-work__head p {
        margin-top: 26px;
    }

    .lp-work__head > a {
        justify-self: start;
    }

    .lp-cases {
        grid-template-columns: 1fr;
        gap: 38px;
        margin-top: 62px;
    }

    .lp-case--large {
        grid-column: auto;
    }

    .lp-case--large .lp-case__image,
    .lp-case__image {
        aspect-ratio: 4 / 3;
    }

    .lp-case__meta {
        padding-top: 15px;
    }

    .lp-ownership {
        grid-template-columns: 1fr;
        margin-top: 62px;
    }

    .lp-ownership section,
    .lp-ownership section + section {
        padding: 34px 0 42px;
        border-left: 0;
    }

    .lp-ownership section + section {
        border-top: 1px solid rgba(255, 255, 255, 0.21);
    }

    .lp-ownership h3 {
        margin-bottom: 28px;
        font-size: 40px;
    }


    .lp-routine__list > div {
        padding-block: 32px;
    }

    .lp-fit {
        padding-block: 88px;
    }

    .lp-fit__criteria li {
        padding-right: 2px;
        padding-left: 27px;
        font-size: 14px;
    }

    .lp-contact__note {
        margin-top: 40px;
    }

    .lp-form-card {
        margin-inline: calc(var(--lp-pad) * -1);
        padding: 32px 18px 38px;
    }

    .lp-form__heading {
        margin-bottom: 38px;
    }

    .lp-form__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .lp-field--full {
        grid-column: auto;
    }

    .lp-form-success {
        min-height: 500px;
    }

    .lp-footer {
        padding-top: 54px;
    }

    .lp-footer__top {
        align-items: flex-start;
        flex-direction: column;
        gap: 28px;
        padding-bottom: 42px;
    }

    .lp-footer__top p {
        text-align: left;
    }

    .lp-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .lp-mobile-cta {
        position: fixed;
        z-index: 900;
        right: 10px;
        bottom: 10px;
        left: 10px;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        background: var(--lp-orange);
        color: var(--lp-white);
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.24);
        font-size: 12px;
        font-weight: 600;
        text-decoration: none;
        transition: opacity 200ms ease, transform 300ms var(--lp-ease);
    }

    .lp-mobile-cta.is-hidden {
        opacity: 0;
        transform: translateY(80px);
        pointer-events: none;
    }

    .rco-privacy-bar {
        bottom: 78px;
    }
}

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

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .lp-clients__track {
        animation: none !important;
    }

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}


@media (max-width: 768px) {
    .lp-capacity-cta {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .lp-capacity-cta a {
        font-size: 13px;
    }

    .lp-form__heading {
        align-items: flex-start;
        gap: 18px;
    }

    .lp-form-progress {
        width: 88px;
        margin-top: 8px;
    }

    .lp-form-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .lp-form-actions--end {
        flex-direction: column;
    }

    .lp-form-actions .lp-button--submit {
        width: 100%;
        justify-content: space-between;
    }

    .lp-form-back {
        align-self: flex-start;
    }
}
