@import "bootstrap/dist/css/bootstrap.min.css";

@font-face {
    font-family: "MSYH";
    src: url("../fonts/msyh/msyh.eot");
    src: url("../fonts/msyh/msyh.eot?#iefix") format("embedded-opentype"),
        url("../fonts/msyh/msyh.woff") format("woff"),
        url("../fonts/msyh/msyh.otf") format("opentype"),
        url("../fonts/msyh/msyh.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

:root {
    --landing-text: #1f2937;
    --landing-muted: #64748b;
    --landing-bg: #ffffff;
    --landing-soft: #f8fafc;
    --landing-border: #e2e8f0;
    --landing-primary: #2563eb;
    --landing-orange: #ff5700;
    --landing-dark: #242124;
}

body {
    min-height: 100vh;
    margin: 0;
    color: var(--landing-text);
    background: var(--landing-bg);
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

a {
    color: inherit;
}

.web-page {
    min-height: 100vh;
    background: var(--landing-bg);
}

.web-section {
    padding: 72px 0;
}

.web-section-soft {
    background: var(--landing-soft);
}

.web-muted {
    color: var(--landing-muted);
}

.web-card {
    border: 1px solid var(--landing-border);
    border-radius: 8px;
    background: #ffffff;
}

.alpunto-brand-font {
    font-family: "MSYH", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 900;
    letter-spacing: 0;
}

.alpunto-brand-prefix {
    color: var(--landing-orange);
}

@keyframes landingFadeDown {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes landingFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes landingFadeLeft {
    from {
        opacity: 0;
        transform: translateX(28px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes landingBackgroundIn {
    from {
        background-position: right 34px bottom;
        opacity: 0;
    }

    to {
        background-position: right bottom;
        opacity: 1;
    }
}

.landing-hero {
    width: 100%;
    min-height: calc(100vh - 100px);
    overflow: hidden;
    background: #ffffff;
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: auto calc(100vh - 120px);
    opacity: 0;
}

.landing-hero.is-visible {
    animation: landingBackgroundIn 800ms ease both;
}

.landing-hero-container {
    min-height: calc(100vh - 100px);
    padding-right: 0;
    padding-left: clamp(22px, 4.9vw, 86px);
}

.landing-hero-container > .row {
    min-height: calc(100vh - 100px);
}

.landing-hero-copy {
    max-width: 760px;
    padding: clamp(44px, 7vh, 92px) 0;
}

.landing-hero-copy h1 {
    margin: 0 0 clamp(44px, 8vh, 88px);
    color: #000000;
    font-size: clamp(3.25rem, 6.25vw, 7.25rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.96;
    opacity: 0;
}

.landing-hero.is-visible .landing-hero-copy h1 {
    animation: landingFadeUp 650ms ease 120ms both;
}

.landing-hero-copy h1 span {
    display: block;
}

.landing-hero-copy h1 span:not(:first-child) {
    font-size: clamp(2.45rem, 4.7vw, 5.55rem);
}

.landing-hero-highlight {
    color: var(--landing-orange);
}

.landing-hero-copy p {
    max-width: 700px;
    margin: 0 0 clamp(48px, 12vh, 148px);
    color: #0d1320;
    font-size: clamp(1.15rem, 1.55vw, 1.88rem);
    line-height: 1.16;
    opacity: 0;
}

.landing-hero.is-visible .landing-hero-copy p {
    animation: landingFadeUp 650ms ease 260ms both;
}

.landing-hero-button {
    display: inline-flex;
    min-width: clamp(250px, 20vw, 338px);
    min-height: 80px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 18px 28px;
    border: 0;
    border-radius: 16px;
    color: #ffffff;
    background: var(--landing-orange);
    font-size: clamp(1.08rem, 1.42vw, 1.7rem);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
    opacity: 0;
}

.landing-hero.is-visible .landing-hero-button {
    animation: landingFadeUp 650ms ease 400ms both;
}

.landing-hero-button:focus,
.landing-hero-button:hover {
    color: #ffffff;
    background: var(--landing-orange);
    box-shadow: 0 14px 28px rgba(255, 87, 0, 0.28);
    transform: translateY(-2px);
}

.landing-hero-button:hover .landing-hero-button-icon,
.landing-hero-button:focus .landing-hero-button-icon {
    transform: translateX(4px);
}

.landing-hero-button-icon {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
    transition: transform 180ms ease;
}

.landing-hero-button-icon::before,
.landing-hero-button-icon::after {
    position: absolute;
    content: "";
}

.landing-hero-button-icon::before {
    top: 11px;
    right: 1px;
    width: 22px;
    height: 2px;
    background: currentColor;
}

.landing-hero-button-icon::after {
    top: 5px;
    right: 1px;
    width: 13px;
    height: 13px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.landing-hero-visual {
    position: relative;
    min-height: calc(100vh - 100px);
}

.landing-hero-badge {
    position: absolute;
    z-index: 2;
    display: block;
    height: auto;
    filter: drop-shadow(0 18px 34px rgba(15, 23, 42, 0.16));
    opacity: 0;
    transform: translate3d(0, var(--parallax-y, 0), 0);
    will-change: transform;
}

.landing-hero.is-visible .landing-hero-badge {
    animation: landingFadeLeft 560ms ease both;
}

.landing-hero.is-visible .landing-hero-badge[data-parallax] {
    animation-name: landingFadeLeftParallax;
}

@keyframes landingFadeLeftParallax {
    from {
        opacity: 0;
        transform: translate3d(28px, var(--parallax-y, 0), 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, var(--parallax-y, 0), 0);
    }
}

.landing-hero-badge-visit {
    top: 12%;
    right: 12px;
    width: clamp(140px, 13vw, 210px);
    animation-delay: 560ms;
}

.landing-hero-badge-evidence {
    top: 37%;
    right: 28px;
    width: clamp(145px, 13.4vw, 210px);
    animation-delay: 700ms;
}

.landing-hero-badge-payment {
    right: calc(6% - 15px);
    bottom: 11%;
    width: clamp(175px, 14vw, 235px);
    animation-delay: 840ms;
}

.landing-work-section {
    overflow: hidden;
    background: #ffffff;
}

.landing-work-container {
    min-height: min(838px, calc(100vh - 100px));
    padding-right: 0;
    padding-left: clamp(22px, 4vw, 66px);
}

.landing-work-container > .row {
    min-height: min(838px, calc(100vh - 100px));
}

.landing-work-copy {
    position: relative;
    z-index: 2;
    max-width: 760px;
    padding: clamp(58px, 8vh, 112px) 0 clamp(50px, 7vh, 86px);
}

.landing-work-copy h2 {
    margin: 0 0 clamp(58px, 9vh, 98px);
    color: #242124;
    font-size: clamp(2.75rem, 4.2vw, 4.4rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.18;
    opacity: 0;
}

.landing-work-section.is-visible .landing-work-copy h2 {
    animation: landingFadeUp 650ms ease 120ms both;
}

.landing-work-copy h2 span {
    display: block;
}

.landing-work-copy h2 strong {
    color: var(--landing-orange);
    font-weight: inherit;
}

.landing-work-quote {
    position: relative;
    max-width: 665px;
    margin: 0 0 clamp(40px, 6vh, 58px);
    padding: 29px clamp(28px, 3vw, 74px);
    border-radius: 42px;
    color: #ffffff;
    background: #202b35;
    opacity: 0;
}

.landing-work-section.is-visible .landing-work-quote {
    animation: landingFadeUp 650ms ease 260ms both;
}

.landing-work-quote::before {
    position: absolute;
    top: -24px;
    left: 33px;
    color: var(--landing-orange);
    content: "\201C";
    font-family: Georgia, "Times New Roman", serif;
    font-size: 5.8rem;
    font-weight: 900;
    line-height: 1;
}

.landing-work-quote blockquote {
    margin: 0;
    font-size: clamp(1.15rem, 1.66vw, 1.75rem);
    font-weight: 400;
    line-height: 1.18;
}

.landing-work-quote strong {
    color: var(--landing-orange);
    font-weight: 400;
}

.landing-work-actions {
    display: grid;
    max-width: 660px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 0;
}

.landing-work-action {
    position: relative;
    display: flex;
    min-height: 124px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 clamp(12px, 1.4vw, 28px);
    text-align: center;
    opacity: 0;
}

.landing-work-section.is-visible .landing-work-action {
    animation: landingFadeUp 560ms ease both;
}

.landing-work-section.is-visible .landing-work-action:nth-child(1) {
    animation-delay: 400ms;
}

.landing-work-section.is-visible .landing-work-action:nth-child(2) {
    animation-delay: 520ms;
}

.landing-work-section.is-visible .landing-work-action:nth-child(3) {
    animation-delay: 640ms;
}

.landing-work-action + .landing-work-action::before {
    position: absolute;
    top: 27px;
    left: 0;
    width: 2px;
    height: 62px;
    background: #8a8f93;
    content: "";
}

.landing-work-icon {
    display: flex;
    width: 74px;
    height: 74px;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border: 2px solid var(--landing-orange);
    border-radius: 50%;
    background: #ffffff;
    transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.landing-work-icon img {
    display: block;
    width: 42px;
    max-height: 42px;
    object-fit: contain;
    transition: filter 180ms ease;
}

.landing-work-action:hover .landing-work-icon {
    border-color: var(--landing-orange);
    background: var(--landing-orange);
    transform: translateY(-2px);
}

.landing-work-action:hover .landing-work-icon img {
    filter: brightness(0) invert(1);
}

.landing-work-action h3 {
    max-width: 150px;
    margin: 0;
    color: #0d1320;
    font-size: clamp(0.86rem, 1vw, 1.05rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.1;
}

.landing-work-visual {
    position: relative;
    min-height: min(838px, calc(100vh - 100px));
}

.landing-work-visual::before {
    position: absolute;
    top: -26%;
    right: -28%;
    width: min(80vw, 930px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: #f5f5f5;
    content: "";
}

.landing-work-image-frame {
    position: absolute;
    top: 50%;
    right: -10%;
    width: min(58vw, 760px);
    aspect-ratio: 1;
    padding: clamp(16px, 2.4vw, 34px);
    border-radius: 50%;
    background: var(--landing-orange);
    opacity: 0;
    transform: translateY(-50%);
}

.landing-work-section.is-visible .landing-work-image-frame {
    animation: landingWorkImageIn 780ms ease 360ms both;
}

@keyframes landingWorkImageIn {
    from {
        opacity: 0;
        transform: translate(34px, -50%);
    }

    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

@keyframes landingWorkImageInCentered {
    from {
        opacity: 0;
        transform: translate(50%, calc(-50% + 34px));
    }

    to {
        opacity: 1;
        transform: translate(50%, -50%);
    }
}

.landing-work-image-frame::before {
    position: absolute;
    inset: clamp(12px, 1.7vw, 24px);
    border-radius: 50%;
    background: #ffffff;
    content: "";
}

.landing-work-image-frame img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}

.landing-benefits-section {
    overflow: hidden;
    background-color: #eef9ff;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.landing-benefits-container {
    min-height: min(900px, calc(100vh - 100px));
    padding-top: calc(clamp(34px, 5vh, 72px) + 30px);
    padding-right: clamp(22px, 4vw, 70px);
    padding-left: 0;
}

.landing-benefits-container > .row {
    min-height: min(900px, calc(100vh - 100px) - calc(clamp(34px, 5vh, 72px) + 30px));
}

.landing-benefits-visual {
    position: relative;
    min-height: min(900px, calc(100vh - 100px));
}

.landing-benefits-phone {
    position: absolute;
    top: 50%;
    left: clamp(28px, 8vw, 150px);
    display: block;
    width: min(48vw, 650px);
    height: auto;
    opacity: 0;
    transform: translate(-42px, -50%);
    filter: drop-shadow(0 34px 36px rgba(15, 23, 42, 0.2));
}

.landing-benefits-section.is-visible .landing-benefits-phone {
    animation: landingBenefitsPhoneIn 780ms ease 160ms both;
}

@keyframes landingBenefitsPhoneIn {
    from {
        opacity: 0;
        transform: translate(-42px, -50%);
    }

    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

.landing-benefits-copy {
    max-width: 890px;
    padding: clamp(70px, 9vh, 120px) 0 clamp(62px, 8vh, 100px);
}

.landing-benefits-copy h2 {
    margin: 0 0 clamp(86px, 12vh, 146px);
    color: #242124;
    font-size: clamp(3.3rem, 5.1vw, 6.25rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
    opacity: 0;
}

.landing-benefits-section.is-visible .landing-benefits-copy h2 {
    animation: landingFadeUp 650ms ease 220ms both;
}

.landing-benefits-copy h2 span,
.landing-benefits-copy h2 strong {
    display: block;
}

.landing-benefits-copy h2 strong {
    color: var(--landing-orange);
    font-weight: inherit;
}

.landing-benefits-list {
    display: grid;
    gap: clamp(34px, 4.6vh, 58px);
}

.landing-benefit {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    align-items: center;
    gap: clamp(28px, 3.2vw, 54px);
    opacity: 0;
}

.landing-benefits-section.is-visible .landing-benefit {
    animation: landingFadeUp 560ms ease both;
}

.landing-benefits-section.is-visible .landing-benefit:nth-child(1) {
    animation-delay: 380ms;
}

.landing-benefits-section.is-visible .landing-benefit:nth-child(2) {
    animation-delay: 500ms;
}

.landing-benefits-section.is-visible .landing-benefit:nth-child(3) {
    animation-delay: 620ms;
}

.landing-benefits-section.is-visible .landing-benefit:nth-child(4) {
    animation-delay: 740ms;
}

.landing-benefit-icon {
    display: flex;
    width: clamp(118px, 7.5vw, 154px);
    height: clamp(118px, 7.5vw, 154px);
    align-items: center;
    justify-content: center;
    justify-self: end;
    border: 4px solid #ffffff;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background-color 180ms ease, transform 180ms ease;
}

.landing-benefit-icon img {
    display: block;
    width: 58%;
    max-height: 58%;
    object-fit: contain;
    transition: filter 180ms ease;
}

.landing-benefit:hover .landing-benefit-icon {
    background: var(--landing-orange);
    transform: translateY(-2px);
}

.landing-benefit:hover .landing-benefit-icon img {
    filter: brightness(0) invert(1);
}

.landing-benefit h3 {
    margin: 0 0 14px;
    color: #242124;
    font-size: clamp(1.5rem, 2vw, 2.28rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.12;
}

.landing-benefit p {
    max-width: 590px;
    margin: 0;
    color: #242124;
    font-size: clamp(1.1rem, 1.55vw, 1.9rem);
    font-weight: 400;
    line-height: 1.14;
}

.landing-how-section {
    overflow: hidden;
    background: #ffffff;
}

.landing-how-container {
    min-height: min(830px, calc(100vh - 100px));
    padding: clamp(54px, 7vh, 88px) clamp(22px, 4.4vw, 92px) clamp(56px, 7vh, 88px);
}

.landing-how-container h2 {
    margin: 0 0 clamp(58px, 7vh, 86px);
    color: #242124;
    font-size: clamp(2.8rem, 4.7vw, 5.25rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
    text-align: center;
    opacity: 0;
}

.landing-how-section.is-visible .landing-how-container h2 {
    animation: landingFadeUp 650ms ease 120ms both;
}

.landing-how-container h2 strong {
    color: var(--landing-orange);
    font-weight: inherit;
}

.landing-how-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(28px, 3.2vw, 58px);
    margin-bottom: clamp(78px, 11vh, 140px);
}

.landing-how-step {
    position: relative;
    display: grid;
    grid-template-rows: 178px auto;
    align-items: start;
    opacity: 0;
}

.landing-how-section.is-visible .landing-how-step {
    animation: landingFadeUp 560ms ease both;
}

.landing-how-section.is-visible .landing-how-step:nth-child(1) {
    animation-delay: 260ms;
}

.landing-how-section.is-visible .landing-how-step:nth-child(2) {
    animation-delay: 380ms;
}

.landing-how-section.is-visible .landing-how-step:nth-child(3) {
    animation-delay: 500ms;
}

.landing-how-section.is-visible .landing-how-step:nth-child(4) {
    animation-delay: 620ms;
}

.landing-how-step:not(:last-child)::after {
    position: absolute;
    top: 74px;
    right: -12%;
    width: 28px;
    height: 28px;
    border-top: 6px solid #73777b;
    border-right: 6px solid #73777b;
    content: "";
    transform: rotate(45deg);
}

.landing-how-step-icon {
    display: flex;
    height: 160px;
    align-items: center;
    justify-content: center;
}

.landing-how-step-icon img {
    display: block;
    width: 80px;
    max-height: 80px;
    object-fit: contain;
}

.landing-how-step h3 {
    margin: 0 0 12px;
    color: #242124;
    font-size: clamp(1.2rem, 1.56vw, 2rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.1;
}

.landing-how-step p {
    margin: 0;
    color: #242124;
    font-size: clamp(1rem, 1.32vw, 1.55rem);
    font-weight: 400;
    line-height: 1.15;
}

.landing-how-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(24px, 3vw, 62px);
    align-items: start;
    padding: clamp(58px, 6.6vw, 94px) clamp(32px, 4.8vw, 86px) clamp(58px, 6.4vw, 86px);
    border-radius: 54px;
    background: #202b35;
    opacity: 0;
}

.landing-how-section.is-visible .landing-how-stats {
    animation: landingFadeUp 650ms ease 720ms both;
}

.landing-how-stat {
    display: grid;
    align-content: start;
    justify-items: center;
    min-height: 230px;
    text-align: center;
}

.landing-how-stat img {
    display: block;
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-bottom: clamp(28px, 3.6vw, 54px);
}

.landing-how-stat strong {
    display: block;
    margin-bottom: clamp(22px, 2vw, 32px);
    color: var(--landing-orange);
    font-size: clamp(2.45rem, 4vw, 4.7rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.9;
}

.landing-how-stat span {
    display: block;
    max-width: 360px;
    color: #ffffff;
    font-size: clamp(1.08rem, 1.36vw, 1.7rem);
    font-weight: 900;
    line-height: 1.18;
}

.landing-allies-section {
    overflow: hidden;
    background: #ffffff;
}

.landing-allies-container {
    position: relative;
    min-height: min(882px, calc(100vh - 100px));
    padding: clamp(52px, 6.6vh, 84px) clamp(22px, 4.4vw, 92px) 0;
}

.landing-allies-container > h2 {
    margin: 0 0 clamp(28px, 3.8vh, 44px);
    color: #242124;
    font-size: clamp(2.7rem, 4.6vw, 5.25rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
    text-align: center;
    opacity: 0;
}

.landing-allies-section.is-visible .landing-allies-container > h2 {
    animation: landingFadeUp 650ms ease 120ms both;
}

.landing-allies-container > h2 strong {
    color: var(--landing-orange);
    font-weight: inherit;
}

.landing-testimonials {
    display: grid;
    max-width: 2480px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0 auto 50px;
    padding: clamp(38px, 3.4vw, 62px) clamp(28px, 3vw, 58px);
    border: 1px solid #d8dde2;
    border-radius: 28px;
    background: #ffffff;
    opacity: 0;
}

.landing-allies-section.is-visible .landing-testimonials {
    animation: landingFadeUp 650ms ease 260ms both;
}

.landing-testimonial {
    display: grid;
    grid-template-columns: clamp(130px, 8vw, 180px) minmax(250px, 430px);
    grid-template-areas:
        "photo quote"
        "person person";
    align-items: center;
    align-content: center;
    justify-content: center;
    column-gap: clamp(18px, 1.8vw, 34px);
    row-gap: 10px;
    min-height: 210px;
    padding: 0 clamp(22px, 2.4vw, 48px);
}

.landing-testimonial + .landing-testimonial {
    border-left: 1px solid #bfc5cb;
}

.landing-testimonial-photo {
    grid-area: photo;
    display: block;
    width: 115px;
    height: 114px;
    align-self: center;
    justify-self: center;
    border-radius: 50%;
    object-fit: cover;
}

.landing-testimonial-person {
    grid-area: person;
    width: 100%;
    align-self: start;
    margin-top: 10px;
    white-space: nowrap;
}

.landing-testimonial-person h3 {
    margin: 0 0 2px;
    color: #242124;
    font-size: clamp(1rem, 1.12vw, 1.4rem);
    font-weight: 900;
    line-height: 1.08;
}

.landing-testimonial-person p {
    margin: 0;
    color: #242124;
    font-size: clamp(0.9rem, 1vw, 1.22rem);
    line-height: 1.1;
}

.landing-testimonial blockquote {
    grid-area: quote;
    max-width: 430px;
    align-self: center;
    margin: 0;
    color: #242124;
    font-size: clamp(0.9rem, 1.02vw, 1.3rem);
    font-weight: 400;
    line-height: 1.14;
}

.landing-allies-cta {
    position: relative;
    min-height: clamp(330px, 34vh, 480px);
}

.landing-allies-cta-copy {
    position: relative;
    z-index: 2;
    max-width: 1540px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    opacity: 0;
}

.landing-allies-section.is-visible .landing-allies-cta-copy {
    animation: landingFadeUp 650ms ease 420ms both;
}

.landing-allies-cta-copy h2 {
    margin: 0 0 clamp(24px, 3.4vh, 46px);
    color: #000000;
    font-size: clamp(2.45rem, 4.3vw, 5.2rem);
    font-style: italic;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.95;
}

.landing-allies-cta-copy p {
    margin: 0;
    color: #242124;
    font-size: clamp(1.18rem, 1.85vw, 2.45rem);
    font-weight: 400;
    line-height: 1.1;
}

.landing-allies-people-wrap {
    display: flex;
    min-height: clamp(300px, 32vh, 430px);
    align-items: flex-end;
    justify-content: flex-end;
}

.landing-allies-people {
    display: block;
    width: min(100%, 426px);
    height: auto;
    opacity: 0;
    transform: translateX(36px);
}

.landing-allies-section.is-visible .landing-allies-people {
    animation: landingFadeLeft 650ms ease 560ms both;
}

.landing-register-section {
    overflow: hidden;
    background: #ffffff;
}

.landing-register-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-color: #ffffff;
}

.landing-register-hero-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
    object-position: center center;
}

.landing-register-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.landing-register-container {
    padding: clamp(42px, 5.2vh, 70px) 0 clamp(64px, 8vh, 110px);
}

.landing-register-panel {
    overflow: visible;
    margin-bottom: clamp(82px, 12vh, 140px);
    border-radius: 46px;
    background: var(--landing-orange);
    opacity: 0;
}

.landing-register-section.is-visible .landing-register-panel {
    animation: landingFadeUp 650ms ease 140ms both;
}

.landing-register-visual {
    display: flex;
    min-height: clamp(280px, 26vw, 430px);
    align-items: center;
    justify-content: center;
    margin-top: -120px;
    padding-left: 30px;
}

.landing-register-visual img {
    display: block;
    width: min(138%, 900px);
    max-width: none;
    height: auto;
    margin-top: -70px;
    margin-bottom: -82px;
    filter: drop-shadow(0 24px 28px rgba(15, 23, 42, 0.18));
}

.landing-register-copy {
    display: flex;
    min-height: clamp(280px, 26vw, 430px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(34px, 4vw, 72px) clamp(28px, 4vw, 82px);
    color: #ffffff;
    text-align: center;
}

.landing-register-copy h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: clamp(1.65rem, 2.8vw, 3.25rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.landing-register-copy p {
    margin: 0 0 clamp(46px, 6vh, 82px);
    color: #ffffff;
    font-size: clamp(1.2rem, 1.85vw, 2.35rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
}

.landing-register-copy p span {
    display: block;
    font-size: 0.75em;
}

.landing-register-cta {
    display: inline-flex;
    width: min(100%, 340px);
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 36px);
    padding: 12px clamp(20px, 2.4vw, 40px);
    border: 0;
    border-radius: 999px;
    color: #242124;
    background: #ffffff;
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.12);
    font-size: clamp(0.92rem, 1.12vw, 1.42rem);
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.landing-register-cta:focus,
.landing-register-cta:hover {
    color: #242124;
    background: #ffffff;
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.2);
    transform: translateY(-2px);
}

.landing-register-cta-icon {
    position: relative;
    display: inline-block;
    width: 24px;
    height: 18px;
    flex: 0 0 24px;
}

.landing-register-cta-icon::before,
.landing-register-cta-icon::after {
    position: absolute;
    content: "";
}

.landing-register-cta-icon::before {
    top: 8px;
    left: 0;
    width: 24px;
    height: 2px;
    background: currentColor;
}

.landing-register-cta-icon::after {
    top: 3px;
    left: 0;
    width: 11px;
    height: 11px;
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
    transform: rotate(45deg);
}

.landing-launch-copy {
    max-width: 1080px;
    margin: 0 auto;
    color: #242124;
    text-align: center;
    opacity: 0;
}

.landing-register-section.is-visible .landing-launch-copy {
    animation: landingFadeUp 650ms ease 320ms both;
}

.landing-launch-copy p {
    margin: 0 0 8px;
    font-size: clamp(0.92rem, 1.15vw, 1.35rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0;
}

.landing-launch-copy h2 {
    margin: 0 0 10px;
    color: #242124;
    font-size: clamp(1.75rem, 3.4vw, 4.1rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
}

.landing-launch-copy strong {
    display: block;
    color: #242124;
    font-size: clamp(0.88rem, 1.1vw, 1.35rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.2;
}

.landing-header {
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    background: var(--landing-orange);
    animation: landingFadeDown 520ms ease both;
}

.landing-header.is-sticky {
    position: fixed;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
    animation: landingHeaderSlideDown 320ms ease both;
}

@keyframes landingHeaderSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.landing-navbar {
    min-height: 100px;
    padding: 14px 0;
}

.landing-navbar-container {
    padding-right: clamp(20px, 2.6vw, 45px);
    padding-left: clamp(20px, 2.6vw, 45px);
}

.landing-brand {
    display: inline-flex;
    align-items: center;
    flex: 0 1 auto;
    max-width: min(34vw, 460px);
    margin: 0;
    padding: 0;
}

.landing-logo {
    display: block;
    width: clamp(210px, 23vw, 340px);
    max-width: 100%;
    height: auto;
}

.landing-navbar-collapse {
    align-items: center;
}

.landing-nav {
    gap: clamp(22px, 3vw, 54px);
}

.landing-nav-link {
    padding: 12px 0;
    color: #ffffff !important;
    font-size: clamp(1.08rem, 1.42vw, 1.75rem);
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
}

.landing-nav-link.active,
.landing-nav-link:focus,
.landing-nav-link:hover {
    color: #ffffff !important;
}

.landing-nav-link.active {
    font-weight: 700 !important;
}

.landing-nav-link:not(.active) {
    font-weight: 400 !important;
}

.landing-register-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.4vw, 24px);
    min-height: 50px;
    padding: 11px clamp(18px, 1.5vw, 24px);
    border: 0;
    border-radius: 13px;
    color: var(--landing-orange);
    background: #ffffff;
    font-size: clamp(0.9rem, 1vw, 1.18rem);
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.landing-register-button:focus,
.landing-register-button:hover {
    color: var(--landing-orange);
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(18, 24, 38, 0.18);
    transform: translateY(-2px);
}

.landing-register-button:hover .landing-register-icon,
.landing-register-button:focus .landing-register-icon {
    transform: translateX(4px);
}

.landing-register-icon {
    position: relative;
    display: inline-block;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    transition: transform 180ms ease;
}

.landing-register-icon::before,
.landing-register-icon::after {
    position: absolute;
    content: "";
}

.landing-register-icon::before {
    top: 10px;
    right: 1px;
    width: 20px;
    height: 2px;
    background: currentColor;
}

.landing-register-icon::after {
    top: 5px;
    right: 1px;
    width: 12px;
    height: 12px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
}

.landing-navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 8px;
    padding: 8px 10px;
}

.landing-navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.28);
}

.landing-navbar-toggler .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}

.landing-footer {
    min-height: 360px;
    padding: 36px 0 0;
    color: #ffffff;
    background: #151d2c;
    animation: landingFadeUp 650ms ease 180ms both;
}

.landing-footer-container {
    display: flex;
    min-height: 324px;
    flex-direction: column;
}

.landing-footer-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 42px;
}

.landing-footer-logo {
    display: block;
    width: clamp(240px, 24vw, 404px);
    max-width: 100%;
    height: auto;
}

.landing-footer-content {
    align-items: flex-start;
    flex: 0 0 auto;
}

.landing-footer-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-top: 15px;
}

.landing-footer-links a,
.landing-footer-email {
    color: #ffffff;
    font-size: clamp(0.95rem, 1.1vw, 1.25rem);
    line-height: 1.25;
}

.landing-footer-links a {
    text-decoration: none;
}

.landing-footer-links a:hover,
.landing-footer-email:hover {
    color: var(--landing-orange);
}

.landing-footer-link-row {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(28px, 4vw, 72px);
}

.landing-footer-contact {
    text-align: center;
}

.landing-footer-contact h2 {
    margin-bottom: 24px;
    color: #ffffff;
    font-size: clamp(1.28rem, 1.55vw, 1.9rem);
    font-weight: 400;
    line-height: 1.2;
}

.landing-footer-contact p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 4px;
    color: #ffffff;
    font-size: clamp(1rem, 1.25vw, 1.5rem);
    line-height: 1.3;
}

.landing-whatsapp-icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    align-items: center;
    justify-content: center;
    color: #25d366;
    text-decoration: none;
}

.landing-whatsapp-icon:hover {
    color: #25d366;
}

.landing-whatsapp-icon svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.landing-floating-whatsapp {
    position: fixed;
    right: clamp(18px, 2vw, 34px);
    bottom: clamp(18px, 2vw, 34px);
    z-index: 1040;
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: #25d366;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.22);
    opacity: 0;
    pointer-events: none;
    text-decoration: none;
    transform: translate3d(0, 26px, 0) scale(0.82);
    transition: color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.landing-floating-whatsapp.is-visible {
    animation: landingWhatsappIn 520ms cubic-bezier(0.2, 0.8, 0.2, 1.18) both;
    pointer-events: auto;
}

.landing-floating-whatsapp:focus,
.landing-floating-whatsapp:hover {
    color: #ffffff;
    background: #20bd5a;
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.28);
    transform: translate3d(0, -2px, 0) scale(1.02);
}

.landing-floating-whatsapp svg {
    display: block;
    width: 36px;
    height: 36px;
    fill: currentColor;
}

@keyframes landingWhatsappIn {
    from {
        opacity: 0;
        transform: translate3d(0, 26px, 0) scale(0.82);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1);
    }
}

.landing-footer-copy {
    margin: 0;
    padding: 52px 0 18px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.95rem;
    text-align: center;
}

@media (max-width: 1199.98px) {
    .landing-hero-copy h1 {
        font-size: clamp(2.95rem, 6vw, 5.6rem);
    }

    .landing-hero-copy h1 span:not(:first-child) {
        font-size: clamp(2.15rem, 4.8vw, 4.4rem);
    }

    .landing-hero-visual {
        min-height: calc(100vh - 100px);
    }

    .landing-hero-badge-visit {
        right: 10px;
    }

    .landing-hero-badge-evidence {
        right: 22px;
    }

    .landing-hero-badge-payment {
        right: calc(2% - 15px);
    }

    .landing-work-copy h2 {
        font-size: clamp(2.35rem, 4.4vw, 3.35rem);
    }

    .landing-work-image-frame {
        right: -18%;
        width: min(62vw, 680px);
    }

    .landing-benefits-phone {
        left: clamp(20px, 4vw, 70px);
        width: min(48vw, 570px);
    }

    .landing-benefits-copy h2 {
        font-size: clamp(2.8rem, 4.8vw, 4.8rem);
    }

    .landing-benefit {
        grid-template-columns: 130px minmax(0, 1fr);
        gap: 30px;
    }

    .landing-benefit p {
        max-width: 520px;
    }

    .landing-how-container {
        padding-right: 48px;
        padding-left: 48px;
    }

    .landing-how-steps {
        gap: 32px;
    }

    .landing-how-step:not(:last-child)::after {
        right: -11%;
    }

    .landing-how-step h3 {
        font-size: clamp(1.08rem, 1.6vw, 1.45rem);
    }

    .landing-how-step p {
        font-size: clamp(0.98rem, 1.35vw, 1.22rem);
    }

    .landing-how-stats {
        border-radius: 44px;
    }

    .landing-testimonials {
        padding-right: 24px;
        padding-left: 24px;
    }

    .landing-testimonial {
        grid-template-columns: 115px minmax(210px, 1fr);
        grid-template-areas:
            "photo quote"
            "person person";
        column-gap: 18px;
        row-gap: 10px;
        min-height: 190px;
        padding: 0 22px;
    }

    .landing-testimonial blockquote {
        max-width: 360px;
        font-size: clamp(0.92rem, 1.12vw, 1.08rem);
    }

    .landing-allies-cta-copy {
        padding-right: 0;
    }

    .landing-register-container {
        max-width: calc(100% - 64px);
    }

    .landing-register-visual img {
        width: min(140%, 740px);
        margin-top: -64px;
        margin-bottom: -64px;
    }

    .landing-brand {
        max-width: min(40vw, 380px);
    }

    .landing-nav {
        gap: 26px;
    }

    .landing-register-button {
        min-height: 48px;
    }

    .landing-footer-links a,
    .landing-footer-email {
        font-size: 1.12rem;
    }
}

@media (max-width: 991.98px) {
    .landing-hero,
    .landing-hero-container,
    .landing-hero-container > .row,
    .landing-hero-visual {
        min-height: auto;
    }

    .landing-hero {
        background-position: center bottom;
        background-size: auto 540px;
    }

    .landing-hero-container {
        padding-right: 0;
        padding-left: 22px;
    }

    .landing-hero-copy {
        max-width: 720px;
        padding: 52px 0 24px;
        text-align: center;
    }

    .landing-hero-copy h1 {
        margin-bottom: 28px;
        font-size: clamp(2.75rem, 10vw, 5.25rem);
    }

    .landing-hero-copy h1 span:not(:first-child) {
        font-size: clamp(2.05rem, 7.8vw, 4rem);
    }

    .landing-hero-copy p {
        max-width: 620px;
        margin: 0 auto 34px;
        font-size: clamp(1.05rem, 3.8vw, 1.4rem);
    }

    .landing-hero-button {
        min-width: min(100%, 300px);
        min-height: 62px;
        border-radius: 13px;
    }

    .landing-hero-visual {
        min-height: 560px;
        margin-top: 4px;
    }

    .landing-hero-badge-visit {
        top: 11%;
        right: 10px;
        width: clamp(128px, 29vw, 180px);
    }

    .landing-hero-badge-evidence {
        top: 38%;
        right: 10px;
        width: clamp(130px, 30vw, 185px);
    }

    .landing-hero-badge-payment {
        right: calc(4% - 15px);
        bottom: 9%;
        width: clamp(156px, 36vw, 210px);
    }

    .landing-work-container,
    .landing-work-container > .row,
    .landing-work-visual {
        min-height: auto;
    }

    .landing-work-container {
        padding-right: 22px;
        padding-left: 22px;
    }

    .landing-work-copy {
        max-width: 720px;
        margin: 0 auto;
        padding: 54px 0 28px;
    }

    .landing-work-copy h2 {
        margin-bottom: 36px;
        font-size: clamp(2.35rem, 7.4vw, 4rem);
        text-align: center;
    }

    .landing-work-quote {
        max-width: 100%;
        margin-bottom: 34px;
        border-radius: 34px;
    }

    .landing-work-quote blockquote {
        font-size: clamp(1.05rem, 3.6vw, 1.45rem);
    }

    .landing-work-actions {
        max-width: 620px;
        margin: 0 auto;
    }

    .landing-work-visual {
        min-height: 520px;
        margin-right: -22px;
        margin-left: -22px;
    }

    .landing-work-visual::before {
        top: -16%;
        right: -20%;
        width: min(112vw, 720px);
    }

    .landing-work-image-frame {
        top: 48%;
        right: 50%;
        width: min(86vw, 580px);
        transform: translate(50%, -50%);
    }

    .landing-work-section.is-visible .landing-work-image-frame {
        animation-name: landingWorkImageInCentered;
    }

    .landing-benefits-container,
    .landing-benefits-container > .row,
    .landing-benefits-visual {
        min-height: auto;
    }

    .landing-benefits-container {
        padding-right: 22px;
        padding-left: 22px;
    }

    .landing-benefits-visual {
        min-height: 560px;
        order: 2;
    }

    .landing-benefits-phone {
        top: 46%;
        left: 50%;
        width: min(86vw, 500px);
        transform: translate(-50%, -50%);
    }

    .landing-benefits-section.is-visible .landing-benefits-phone {
        animation-name: landingBenefitsPhoneInCentered;
    }

    @keyframes landingBenefitsPhoneInCentered {
        from {
            opacity: 0;
            transform: translate(calc(-50% - 22px), -50%);
        }

        to {
            opacity: 1;
            transform: translate(-50%, -50%);
        }
    }

    .landing-benefits-copy {
        max-width: 720px;
        margin: 0 auto;
        padding: 58px 0 18px;
    }

    .landing-benefits-copy h2 {
        margin-bottom: 42px;
        font-size: clamp(2.45rem, 8.8vw, 4.6rem);
        text-align: center;
    }

    .landing-benefits-list {
        gap: 28px;
    }

    .landing-benefit {
        grid-template-columns: 100px minmax(0, 1fr);
        gap: 22px;
    }

    .landing-benefit-icon {
        width: 96px;
        height: 96px;
        border-width: 3px;
    }

    .landing-benefit h3 {
        margin-bottom: 8px;
        font-size: clamp(1.28rem, 4.2vw, 1.85rem);
    }

    .landing-benefit p {
        font-size: clamp(1rem, 3.4vw, 1.28rem);
        line-height: 1.22;
    }

    .landing-how-container {
        min-height: auto;
        padding: 56px 22px 64px;
    }

    .landing-how-container h2 {
        margin-bottom: 42px;
        font-size: clamp(2.2rem, 8.5vw, 4rem);
    }

    .landing-how-steps {
        grid-template-columns: 1fr 1fr;
        gap: 34px 28px;
        margin-bottom: 52px;
    }

    .landing-how-step {
        grid-template-rows: 118px auto;
        text-align: center;
    }

    .landing-how-step:not(:last-child)::after {
        display: none;
    }

    .landing-how-step-icon {
        height: 112px;
    }

    .landing-how-step-icon img {
        width: 80px;
        max-height: 80px;
    }

    .landing-how-step h3 {
        margin-bottom: 8px;
        font-size: clamp(1.05rem, 3.6vw, 1.35rem);
    }

    .landing-how-step p {
        font-size: clamp(0.94rem, 3.1vw, 1.08rem);
        line-height: 1.22;
    }

    .landing-how-stats {
        grid-template-columns: 1fr 1fr;
        gap: 36px 22px;
        padding: 42px 24px;
        border-radius: 34px;
    }

    .landing-how-stat {
        min-height: auto;
    }

    .landing-how-stat img {
        width: 50px;
        height: 50px;
        margin-bottom: 22px;
    }

    .landing-how-stat strong {
        margin-bottom: 14px;
        font-size: clamp(2.2rem, 6.4vw, 3.25rem);
    }

    .landing-how-stat span {
        font-size: clamp(0.96rem, 3.2vw, 1.18rem);
    }

    .landing-allies-container {
        min-height: auto;
        padding: 54px 22px 0;
    }

    .landing-allies-container > h2 {
        margin-bottom: 32px;
        font-size: clamp(2.2rem, 8vw, 4rem);
    }

    .landing-testimonials {
        grid-template-columns: 1fr;
        max-width: 720px;
        margin-bottom: 50px;
        padding: 0 24px;
        border-radius: 22px;
    }

    .landing-testimonial {
        grid-template-columns: 130px minmax(0, 1fr);
        grid-template-areas:
            "photo quote"
            "person person";
        min-height: auto;
        column-gap: 18px;
        row-gap: 10px;
        padding: 34px 0;
    }

    .landing-testimonial + .landing-testimonial {
        border-top: 1px solid #bfc5cb;
        border-left: 0;
    }

    .landing-testimonial-photo {
        margin-bottom: 18px;
    }

    .landing-testimonial-person h3 {
        font-size: 1rem;
    }

    .landing-testimonial-person p {
        font-size: 0.9rem;
    }

    .landing-testimonial blockquote {
        font-size: clamp(0.95rem, 3vw, 1.12rem);
        line-height: 1.22;
    }

    .landing-allies-cta {
        min-height: 390px;
    }

    .landing-allies-cta-copy {
        padding-right: 0;
    }

    .landing-allies-cta-copy h2 {
        margin-bottom: 20px;
        font-size: clamp(2.1rem, 7vw, 3.7rem);
    }

    .landing-allies-cta-copy p {
        max-width: 620px;
        margin: 0 auto;
        font-size: clamp(1.12rem, 3.8vw, 1.65rem);
    }

    .landing-allies-people {
        width: min(54vw, 300px);
        transform: translateY(34px);
    }

    .landing-allies-people-wrap {
        min-height: 280px;
        justify-content: center;
    }

    .landing-allies-section.is-visible .landing-allies-people {
        animation-name: landingAlliesPeopleInCentered;
    }

    @keyframes landingAlliesPeopleInCentered {
        from {
            opacity: 0;
            transform: translateY(34px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .landing-register-container {
        max-width: calc(100% - 44px);
        padding-top: 42px;
    }

    .landing-register-panel {
        margin-bottom: 72px;
        border-radius: 34px;
    }

    .landing-register-visual {
        min-height: auto;
        padding: 28px 28px 0;
    }

    .landing-register-visual img {
        width: min(112%, 560px);
        margin: -42px auto -42px;
    }

    .landing-register-copy {
        min-height: auto;
        padding: 28px 28px 44px;
    }

    .landing-register-copy h2 {
        font-size: clamp(1.55rem, 5.8vw, 2.55rem);
    }

    .landing-register-copy p {
        margin-bottom: 34px;
        font-size: clamp(1.05rem, 4vw, 1.65rem);
    }

    .landing-register-cta {
        width: min(100%, 310px);
        min-height: 50px;
        gap: 18px;
        font-size: clamp(0.9rem, 3vw, 1.12rem);
    }

    .landing-launch-copy h2 {
        font-size: clamp(2.7rem, 9vw, 4.8rem);
    }

    .landing-navbar {
        min-height: auto;
        padding: 20px 0;
    }

    .landing-navbar-container {
        align-items: center;
    }

    .landing-brand {
        max-width: calc(100% - 64px);
    }

    .landing-logo {
        width: clamp(210px, 52vw, 340px);
    }

    .landing-navbar-collapse {
        margin-top: 22px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.35);
    }

    .landing-nav {
        gap: 0;
        margin-bottom: 16px;
    }

    .landing-nav-link {
        padding: 10px 0;
        font-size: 1.2rem;
    }

    .landing-register-button {
        width: 100%;
        min-height: 56px;
        justify-content: space-between;
        padding-right: 22px;
        padding-left: 22px;
        font-size: 1rem;
    }

    .landing-footer {
        min-height: auto;
        padding-top: 36px;
    }

    .landing-footer-container {
        min-height: auto;
    }

    .landing-footer-logo-wrap {
        margin-bottom: 34px;
    }

    .landing-footer-content {
        gap: 34px;
    }

    .landing-footer-links {
        align-items: center;
        padding-top: 0;
        text-align: center;
    }

    .landing-footer-link-row {
        justify-content: center;
        gap: 18px 34px;
    }
}

@media (max-width: 575.98px) {
    .landing-hero-container {
        padding-right: 0;
        padding-left: 16px;
    }

    .landing-hero-copy {
        padding-top: 38px;
    }

    .landing-hero-copy h1 {
        font-size: clamp(2.3rem, 13vw, 3.9rem);
        line-height: 1;
    }

    .landing-hero-copy h1 span:not(:first-child) {
        font-size: clamp(1.72rem, 9.6vw, 2.8rem);
    }

    .landing-hero-copy p {
        margin-bottom: 28px;
        font-size: 1.02rem;
        line-height: 1.28;
    }

    .landing-hero-button {
        width: auto;
        max-width: 100%;
        min-height: 56px;
        font-size: 1rem;
    }

    .landing-hero-visual {
        min-height: 430px;
        margin-right: -16px;
        margin-left: -16px;
    }

    .landing-hero-visual {
        min-height: 430px;
    }

    .landing-hero {
        background-size: auto 410px;
    }

    .landing-hero-badge-visit {
        top: 11%;
        right: auto;
        left: 14px;
        width: 120px;
    }

    .landing-hero-badge-evidence {
        top: 39%;
        right: auto;
        left: 14px;
        width: 128px;
    }

    .landing-hero-badge-payment {
        right: auto;
        left: 14px;
        bottom: 8%;
        width: 148px;
    }

    .landing-work-container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .landing-work-copy {
        padding-top: 40px;
    }

    .landing-work-copy h2 {
        margin-bottom: 30px;
        font-size: clamp(2.05rem, 10.6vw, 3rem);
        line-height: 1.1;
    }

    .landing-work-quote {
        padding: 28px 22px 25px 58px;
        border-radius: 28px;
    }

    .landing-work-quote::before {
        top: -17px;
        left: 18px;
        font-size: 4.6rem;
    }

    .landing-work-quote blockquote {
        font-size: 1.04rem;
        line-height: 1.25;
    }

    .landing-work-actions {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .landing-work-action {
        min-height: auto;
        padding: 0;
    }

    .landing-work-action + .landing-work-action::before {
        display: none;
    }

    .landing-work-icon {
        width: 66px;
        height: 66px;
        margin-bottom: 9px;
    }

    .landing-work-icon img {
        width: 38px;
        max-height: 38px;
    }

    .landing-work-action h3 {
        max-width: 210px;
        font-size: 0.9rem;
    }

    .landing-work-visual {
        min-height: 350px;
        margin-top: 30px;
        margin-right: -16px;
        margin-left: -16px;
    }

    .landing-work-visual::before {
        top: -8%;
        right: -28%;
        width: 118vw;
    }

    .landing-work-image-frame {
        width: min(94vw, 390px);
    }

    .landing-benefits-container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .landing-benefits-copy {
        padding-top: 42px;
    }

    .landing-benefits-copy h2 {
        margin-bottom: 34px;
        font-size: clamp(2.1rem, 11vw, 3rem);
    }

    .landing-benefits-list {
        gap: 24px;
    }

    .landing-benefit {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 16px;
    }

    .landing-benefit-icon {
        width: 72px;
        height: 72px;
        border-width: 2px;
    }

    .landing-benefit h3 {
        margin-bottom: 6px;
        font-size: 1.12rem;
    }

    .landing-benefit p {
        font-size: 0.98rem;
    }

    .landing-benefits-visual {
        min-height: 390px;
    }

    .landing-benefits-phone {
        width: min(96vw, 360px);
    }

    .landing-how-container {
        padding: 44px 16px 52px;
    }

    .landing-how-container h2 {
        margin-bottom: 34px;
        font-size: clamp(1.95rem, 10vw, 2.8rem);
    }

    .landing-how-steps {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .landing-how-step {
        grid-template-rows: auto;
        gap: 10px;
    }

    .landing-how-step-icon {
        height: auto;
    }

    .landing-how-step-icon img {
        width: 80px;
        max-height: 80px;
    }

    .landing-how-step h3 {
        font-size: 1.12rem;
    }

    .landing-how-step p {
        max-width: 330px;
        margin-right: auto;
        margin-left: auto;
        font-size: 0.98rem;
    }

    .landing-how-stats {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 38px 22px;
        border-radius: 28px;
    }

    .landing-how-stat img {
        margin-bottom: 18px;
    }

    .landing-how-stat strong {
        font-size: 2.75rem;
    }

    .landing-how-stat span {
        max-width: 270px;
        font-size: 1rem;
    }

    .landing-allies-container {
        padding: 42px 16px 0;
    }

    .landing-allies-container > h2 {
        font-size: clamp(1.95rem, 9.2vw, 2.7rem);
    }

    .landing-testimonials {
        margin-bottom: 50px;
        padding: 0 16px;
        border-radius: 18px;
    }

    .landing-testimonial {
        grid-template-columns: 1fr;
        grid-template-areas:
            "photo"
            "quote"
            "person";
        gap: 14px;
        padding: 30px 0;
        text-align: center;
    }

    .landing-testimonial-photo {
        margin-right: auto;
        margin-left: auto;
    }

    .landing-testimonial blockquote {
        max-width: 300px;
        margin: 0 auto;
        font-size: 0.94rem;
    }

    .landing-allies-cta {
        min-height: 330px;
    }

    .landing-allies-cta-copy h2 {
        font-size: clamp(1.75rem, 9vw, 2.45rem);
    }

    .landing-allies-cta-copy p {
        font-size: 1rem;
    }

    .landing-allies-people {
        width: min(70vw, 240px);
    }

    .landing-allies-people-wrap {
        min-height: 240px;
    }

    .landing-register-container {
        max-width: calc(100% - 32px);
        padding-bottom: 58px;
    }

    .landing-register-hero {
        height: auto;
        min-height: 0;
    }

    .landing-register-hero-image {
        width: 100%;
        height: auto;
        min-height: 0;
        object-fit: initial;
        object-position: initial;
        background: transparent;
    }

    .landing-register-section {
        margin-top: 50px;
        padding: 50px;
    }

    .landing-register-panel {
        margin-bottom: 54px;
        border-radius: 26px;
    }

    .landing-register-visual {
        padding: 22px 18px 0;
    }

    .landing-register-visual img {
        margin-top: -24px;
        margin-bottom: -24px;
    }

    .landing-register-copy {
        padding: 24px 20px 36px;
    }

    .landing-register-copy h2 {
        font-size: clamp(1.45rem, 7.6vw, 1.95rem);
    }

    .landing-register-copy p {
        margin-bottom: 26px;
        font-size: clamp(0.98rem, 5vw, 1.25rem);
    }

    .landing-register-cta {
        width: min(100%, 280px);
        min-height: 46px;
        gap: 12px;
        padding: 10px 18px;
        font-size: 0.86rem;
    }

    .landing-register-cta-icon {
        width: 26px;
        height: 20px;
        flex-basis: 26px;
    }

    .landing-register-cta-icon::before {
        top: 9px;
        width: 26px;
        height: 2px;
    }

    .landing-register-cta-icon::after {
        top: 4px;
        width: 13px;
        height: 13px;
        border-bottom-width: 2px;
        border-left-width: 2px;
    }

    .landing-launch-copy p {
        margin-bottom: 6px;
        font-size: 0.92rem;
    }

    .landing-launch-copy h2 {
        margin-bottom: 8px;
        font-size: clamp(1.55rem, 8vw, 2.4rem);
    }

    .landing-launch-copy strong {
        font-size: 0.84rem;
    }

    .landing-navbar-container {
        padding-right: 16px;
        padding-left: 16px;
    }

    .landing-logo {
        width: min(66vw, 260px);
    }

    .landing-register-button {
        min-height: 52px;
        border-radius: 10px;
    }

    .landing-footer {
        padding-top: 30px;
    }

    .landing-footer-logo {
        width: min(68vw, 270px);
    }

    .landing-footer-logo-wrap {
        margin-bottom: 28px;
    }

    .landing-footer-links {
        gap: 18px;
    }

    .landing-footer-link-row {
        flex-direction: column;
        gap: 18px;
    }

    .landing-footer-links a,
    .landing-footer-email {
        font-size: 0.98rem;
    }

    .landing-footer-contact h2 {
        margin-bottom: 18px;
    }

    .landing-footer-contact p {
        gap: 12px;
        font-size: 1rem;
    }

    .landing-whatsapp-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .landing-floating-whatsapp {
        width: 56px;
        height: 56px;
    }

    .landing-floating-whatsapp svg {
        width: 31px;
        height: 31px;
    }

    .landing-footer-copy {
        padding-top: 28px;
        font-size: 0.82rem;
    }
}

.registration-form-section {
    padding: 56px 0 88px;
    background: #ffffff;
}

.registration-form-title {
    margin: 0 0 34px;
    text-align: center;
    font-size: clamp(2.1rem, 4vw, 3.55rem);
    font-weight: 500;
    line-height: 1.08;
    color: #25232b;
}

.registration-form-card {
    border: 1px solid rgba(33, 37, 41, 0.07);
    border-radius: 30px;
    background: #ffffff;
    box-shadow: 0 16px 44px rgba(34, 34, 34, 0.08);
    padding: 28px 28px 34px;
}

.registration-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.registration-block {
    padding-top: 22px;
    border-top: 1px solid rgba(34, 34, 34, 0.09);
}

.registration-block:first-child {
    padding-top: 0;
    border-top: 0;
}

.registration-block-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
}

.registration-block-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ff5a00;
    color: #ffffff;
    flex: 0 0 52px;
}

.registration-block-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.registration-block-header h2 {
    margin: 0;
    font-size: clamp(1.55rem, 2vw, 2rem);
    font-weight: 600;
    line-height: 1.15;
    color: #2a2d38;
}

.registration-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 30px;
}

.registration-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.registration-field > span {
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.2;
    color: #373640;
}

.registration-input {
    width: 100%;
    min-height: 52px;
    border: 1px solid #e4e1de;
    border-radius: 10px;
    background: #ffffff;
    padding: 0 16px;
    font-size: 1rem;
    color: #2a2a2a;
    outline: none;
    box-shadow: none;
}

.registration-input::placeholder {
    color: #b2b2b2;
}

.registration-input:focus,
.registration-input:focus-visible {
    border-color: #ff5a00;
    box-shadow: 0 0 0 0.2rem rgba(255, 90, 0, 0.12);
}

.registration-select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #8c8c8c 50%), linear-gradient(135deg, #8c8c8c 50%, transparent 50%);
    background-position: calc(100% - 22px) calc(50% - 2px), calc(100% - 16px) calc(50% - 2px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 42px;
}

.registration-phone-input {
    display: flex;
    align-items: stretch;
    min-height: 52px;
    border: 1px solid #e4e1de;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
}

.registration-phone-input span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border-right: 1px solid #e4e1de;
    background: #faf8f6;
    font-size: 1rem;
    font-weight: 600;
    color: #2d2d36;
    white-space: nowrap;
}

.registration-phone-input input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 0 16px;
    font-size: 1rem;
    color: #2a2a2a;
    outline: none;
}

.registration-phone-input.is-invalid,
.registration-input.is-invalid {
    border-color: #dc3545;
}

.registration-choice-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.registration-choice {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    border: 1px solid #e5e0db;
    border-radius: 12px;
    padding: 0 18px;
    background: #ffffff;
    cursor: pointer;
}

.registration-choice input {
    width: 22px;
    height: 22px;
    margin: 0;
    accent-color: #ff5a00;
}

.registration-choice span {
    font-size: 1rem;
    font-weight: 500;
    color: #2a2d37;
}

.registration-help {
    margin: 0 0 22px;
    font-size: 1.03rem;
    font-weight: 500;
    color: #3a3941;
}

.registration-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.registration-other-row {
    display: grid;
    grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
    gap: 16px;
    margin-top: 16px;
    align-items: end;
}

.registration-field--inline {
    gap: 10px;
}

.registration-chip--other {
    width: 100%;
}

.registration-chip {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 54px;
    border: 1px solid #ffd5bd;
    border-radius: 10px;
    padding: 0 18px;
    background: #ffffff;
    cursor: pointer;
}

.registration-chip input {
    width: 20px;
    height: 20px;
    margin: 0;
    accent-color: #ff5a00;
    flex: 0 0 auto;
}

.registration-chip span {
    font-size: 1rem;
    font-weight: 500;
    color: #2a2d37;
}

.registration-extra-field {
    margin-top: 16px;
}

.registration-error {
    font-size: 0.87rem;
    font-weight: 500;
    color: #dc3545;
}

.registration-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    min-height: 62px;
    margin-top: 20px;
    border: 0;
    border-radius: 12px;
    background: #ff5a00;
    color: #ffffff;
    font-size: 1.18rem;
    font-weight: 600;
    letter-spacing: 0;
    padding: 10px 18px;
    box-shadow: 0 14px 26px rgba(255, 90, 0, 0.24);
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.registration-submit svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.registration-submit:hover,
.registration-submit:focus-visible {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(255, 90, 0, 0.28);
}

.registration-privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 18px;
    color: #3a3941;
    font-size: 0.98rem;
    line-height: 1.45;
    cursor: pointer;
}

.registration-privacy-check input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex: 0 0 auto;
    accent-color: #ff5a00;
}

.registration-privacy-check a {
    color: #ff5a00;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.registration-thanks-page {
    background: #ffffff;
}

.registration-thanks-hero {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: hidden;
    line-height: 0;
}

.registration-thanks-hero-image {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    max-width: 100%;
    object-fit: initial;
    object-position: center center;
}

.registration-thanks-section {
    padding: 72px 0 96px;
}

.registration-thanks-content {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.registration-thanks-content h1 {
    margin: 0 0 22px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    color: #25232b;
}

.registration-thanks-content p {
    margin: 0;
    font-size: clamp(1.02rem, 1.6vw, 1.4rem);
    line-height: 1.7;
    color: #5a5963;
    white-space: pre-line;
}

.registration-thanks-card {
    max-width: 720px;
    margin: 0 auto;
    padding: 44px 36px;
    border: 1px solid rgba(33, 37, 41, 0.08);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 16px 44px rgba(34, 34, 34, 0.08);
    text-align: center;
}

.registration-thanks-eyebrow {
    margin: 0 0 14px;
    color: #ff5a00;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.registration-thanks-card h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.08;
    color: #25232b;
}

.registration-thanks-card p {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #5a5963;
}

.registration-thanks-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 28px;
    padding: 0 24px;
    border-radius: 12px;
    background: #ff5a00;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
}

.registration-thanks-button:hover,
.registration-thanks-button:focus-visible {
    color: #ffffff;
    opacity: 0.94;
}

@media (max-width: 1199.98px) {
    .registration-grid {
        gap: 20px 22px;
    }
}

@media (max-width: 991.98px) {
    .registration-form-section {
        padding: 44px 0 72px;
    }

    .registration-form-card {
        padding: 24px 20px 28px;
        border-radius: 24px;
    }

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

@media (max-width: 767.98px) {
    .registration-form-title {
        margin-bottom: 24px;
        font-size: clamp(1.9rem, 9vw, 2.6rem);
    }

    .registration-block-header {
        gap: 14px;
        margin-bottom: 18px;
    }

    .registration-block-icon {
        width: 46px;
        height: 46px;
        flex-basis: 46px;
    }

    .registration-block-icon svg {
        width: 22px;
        height: 22px;
    }

    .registration-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .registration-field > span,
    .registration-help {
        font-size: 0.98rem;
    }

    .registration-choice-row {
        gap: 10px;
    }

    .registration-chip {
        flex: 1 1 100%;
    }

    .registration-other-row {
        grid-template-columns: 1fr;
    }

    .registration-submit {
        min-height: 58px;
        font-size: 1.02rem;
        padding: 8px 16px;
    }

    .registration-privacy-check {
        font-size: 0.92rem;
    }

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

    .registration-thanks-hero-image {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: initial;
        object-position: center center;
        background: transparent;
    }

    .registration-thanks-content h1 {
        margin-bottom: 16px;
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }

    .registration-thanks-content p {
        font-size: 1rem;
    }
}

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