:root {
    --landing-blue: #0b63ff;
    --landing-blue-bright: #2684ff;
    --landing-ink: #0a0c10;
    --landing-muted: #646b76;
    --landing-line: #e2e5e9;
    --landing-dark: #05070a;
    --landing-radius: 18px;
}

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

.landing-shell {
    overflow-x: hidden;
    background: #fff;
    color: var(--landing-ink);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.landing-shell.is-menu-open {
    overflow: hidden;
}

.landing-container {
    width: min(1240px, calc(100% - 64px));
    margin-inline: auto;
}

.landing-skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 200;
    padding: 11px 16px;
    border-radius: 8px;
    background: #fff;
    color: #111;
    font-weight: 700;
    text-decoration: none;
    transform: translateY(-150%);
}

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

.landing-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 100;
    color: #fff;
    transition: background-color 180ms ease, box-shadow 180ms ease;
}

.landing-header::after {
    position: absolute;
    right: 32px;
    bottom: 0;
    left: 32px;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    content: "";
}

.landing-header.is-scrolled,
.landing-header.is-menu-open {
    background: rgba(3, 6, 10, 0.88);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.landing-header.is-scrolled:not(.is-menu-open) {
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.landing-header__inner {
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.landing-header__brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    padding: 8px 0;
}

.landing-header__brand img {
    width: 192px;
    height: auto;
}

.landing-nav {
    display: flex;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: clamp(14px, 2vw, 30px);
}

.landing-nav a {
    position: relative;
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 620;
    text-decoration: none;
    white-space: nowrap;
}

.landing-nav a::after {
    position: absolute;
    right: 0;
    bottom: -16px;
    left: 0;
    height: 2px;
    background: var(--landing-blue-bright);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 160ms ease;
}

.landing-nav a:hover::after,
.landing-nav a:focus-visible::after,
.landing-nav a.is-active::after {
    transform: scaleX(1);
}

.landing-nav a:focus-visible,
.landing-header__brand:focus-visible,
.landing-menu-toggle:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

.landing-nav .landing-nav__cta {
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
}

.landing-nav .landing-nav__cta::after {
    display: none;
}

.landing-nav .landing-nav__cta:hover {
    border-color: #fff;
    background: #fff;
    color: #080a0e;
}

.landing-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 11px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #fff;
}

.landing-menu-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    margin: 5px auto;
    background: currentColor;
    transition: transform 160ms ease, opacity 160ms ease;
}

.landing-menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(6.5px) rotate(45deg);
}

.landing-menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.landing-menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-6.5px) rotate(-45deg);
}

.landing-hero {
    position: relative;
    display: grid;
    min-height: 100vh;
    min-height: 100svh;
    align-items: center;
    overflow: hidden;
    background: #020305;
    color: #fff;
}

.landing-hero__media,
.landing-hero__media img,
.landing-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.landing-hero__media img {
    object-fit: cover;
    object-position: center center;
}

.landing-hero__overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.48) 34%, rgba(0, 0, 0, 0.06) 67%, rgba(0, 0, 0, 0.02) 100%);
}

.landing-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 110px;
    padding-bottom: 110px;
}

.landing-hero h1 {
    max-width: 730px;
    margin: 0 0 24px;
    font-size: clamp(3rem, 6.3vw, 6rem);
    font-weight: 520;
    letter-spacing: -0.055em;
    line-height: 0.98;
    text-wrap: balance;
}

.landing-hero__content > p {
    max-width: 610px;
    margin: 0 0 38px;
    color: rgba(255, 255, 255, 0.82);
    font-size: clamp(1.08rem, 2vw, 1.4rem);
    line-height: 1.55;
}

.landing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.landing-hero .landing-actions {
    gap: 18px;
}

.landing-hero .landing-button {
    min-width: 174px;
    padding-right: 29px;
    padding-left: 29px;
}

.landing-button {
    display: inline-flex;
    min-height: 52px;
    padding: 13px 24px;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 3px;
    font-weight: 680;
    text-align: center;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.landing-button:focus-visible {
    outline: 3px solid rgba(38, 132, 255, 0.42);
    outline-offset: 3px;
}

.landing-button--primary {
    background: var(--landing-blue);
    color: #fff;
}

.landing-button--primary:hover {
    background: #0957df;
    transform: translateY(-1px);
}

.landing-button--glass {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.16);
    color: #fff;
}

.landing-button--glass:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.landing-button--light {
    background: #fff;
    color: #07090d;
}

.landing-button--light:hover {
    background: #eef5ff;
    transform: translateY(-1px);
}

.landing-hero__discover {
    position: absolute;
    bottom: 28px;
    left: 50%;
    z-index: 2;
    display: grid;
    justify-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.76rem;
    font-weight: 650;
    letter-spacing: 0.06em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.landing-section {
    padding: clamp(90px, 10vw, 150px) 0;
    scroll-margin-top: 74px;
}

.landing-section__heading {
    max-width: 820px;
    margin-bottom: 60px;
}

.landing-section__heading--center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.landing-eyebrow {
    margin: 0 0 18px;
    color: var(--landing-blue);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    line-height: 1.3;
    text-transform: uppercase;
}

.landing-section h2,
.landing-final-cta h2 {
    margin: 0;
    font-size: clamp(2.25rem, 4.7vw, 4.35rem);
    font-weight: 540;
    letter-spacing: -0.045em;
    line-height: 1.05;
    text-wrap: balance;
}

.landing-section h3 {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: -0.02em;
}

.landing-section p {
    color: var(--landing-muted);
    line-height: 1.7;
}

.landing-section__heading > p:last-child {
    max-width: 750px;
    margin: 26px auto 0;
    font-size: 1.08rem;
}

.landing-intro {
    position: relative;
    background: #fff url('/assets/img/vhigo-pattern-light.png') top center / 720px auto repeat;
}

.landing-intro::before {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.94);
    content: "";
}

.landing-intro > * {
    position: relative;
}

.landing-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.landing-pillar {
    min-height: 280px;
    padding: 34px;
    border: 1px solid var(--landing-line);
    border-radius: var(--landing-radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 50px rgba(15, 22, 32, 0.045);
}

.landing-icon {
    display: inline-grid;
    width: 48px;
    height: 48px;
    margin-bottom: 30px;
    place-items: center;
    border: 1px solid rgba(11, 99, 255, 0.18);
    border-radius: 50%;
    background: rgba(11, 99, 255, 0.06);
    color: var(--landing-blue);
}

.landing-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.landing-pillar p {
    margin: 15px 0 0;
}

.landing-process {
    background: #f5f6f8;
}

.landing-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.landing-steps::before {
    position: absolute;
    top: 50px;
    right: 8%;
    left: 8%;
    height: 1px;
    background: #cfd5dc;
    content: "";
}

.landing-steps li {
    position: relative;
    z-index: 1;
    padding-right: 10px;
}

.landing-step__number {
    display: block;
    margin-bottom: 17px;
    color: #8a919c;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.72rem;
}

.landing-steps .landing-icon {
    margin-bottom: 24px;
    background: #fff;
}

.landing-steps p {
    margin: 13px 0 0;
    font-size: 0.92rem;
}

.landing-split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(50px, 8vw, 110px);
}

.landing-split--reverse > :first-child {
    order: 2;
}

.landing-audience__content h2,
.landing-certificate__copy h2,
.landing-pass__copy h2 {
    margin-bottom: 28px;
}

.landing-checklist {
    display: grid;
    gap: 14px;
    margin: 0 0 34px;
    padding: 0;
    list-style: none;
}

.landing-checklist li {
    position: relative;
    padding-left: 28px;
    color: #363b43;
    line-height: 1.55;
}

.landing-checklist li::before {
    position: absolute;
    top: 0.62em;
    left: 3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--landing-blue);
    content: "";
}

.landing-helper,
.landing-notice {
    max-width: 500px;
    margin: 18px 0 0;
    font-size: 0.86rem;
}

.landing-product-frame {
    overflow: hidden;
    border: 1px solid #d9dde2;
    border-radius: 22px;
    background: #f6f8fb;
    box-shadow: 0 28px 80px rgba(19, 28, 40, 0.14);
}

.landing-product-frame__bar {
    display: flex;
    min-height: 48px;
    padding: 0 18px;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid #dde1e6;
    background: #fff;
}

.landing-product-frame__bar > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d8dce1;
}

.landing-product-frame__bar strong {
    margin-left: 10px;
    font-size: 0.75rem;
}

.landing-owner-preview,
.landing-provider-preview {
    display: grid;
    gap: 20px;
    margin: 34px;
    padding: 30px;
    border: 1px solid #e1e4e8;
    border-radius: 16px;
    background: #fff;
}

.landing-owner-preview > div:not(.landing-preview-plate):not(.landing-preview-status) {
    display: grid;
    gap: 5px;
}

.landing-owner-preview span,
.landing-preview-status p,
.landing-provider-preview p {
    margin: 0;
    color: #747b85;
    font-size: 0.8rem;
}

.landing-preview-action {
    display: grid;
    min-height: 44px;
    padding: 0 18px;
    place-items: center;
    border: 0;
    border-radius: 7px;
    background: var(--landing-blue);
    color: #fff;
    font-weight: 700;
    text-align: center;
}

.landing-preview-plate {
    display: grid;
    width: min(220px, 100%);
    overflow: hidden;
    border: 2px solid #20242a;
    border-radius: 6px;
    background: #fafafa;
    color: #111;
    text-align: center;
}

.landing-preview-plate small {
    padding: 3px;
    background: #1268b3;
    color: #fff;
    font-size: 0.46rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.landing-preview-plate strong {
    padding: 9px 12px 11px;
    font-size: 1.15rem;
    letter-spacing: 0.13em;
}

.landing-preview-status {
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-preview-status > span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2a9d4b;
}

.landing-audience--dark {
    background: var(--landing-dark);
    color: #fff;
}

.landing-audience--dark .landing-eyebrow {
    color: #60a4ff;
}

.landing-audience--dark .landing-checklist li,
.landing-audience--dark p {
    color: rgba(255, 255, 255, 0.7);
}

.landing-product-frame--dark {
    border-color: #242a33;
    background: #10141a;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.landing-product-frame--dark .landing-product-frame__bar {
    border-color: #2b313a;
    background: #171c23;
    color: #fff;
}

.landing-product-frame--dark .landing-provider-preview {
    border-color: #2b313a;
    background: #0c1015;
}

.landing-preview-badge {
    width: max-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(37, 185, 88, 0.13);
    color: #68d88d;
    font-size: 0.72rem;
    font-weight: 750;
}

.landing-provider-preview > div:last-child {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
}

.landing-provider-preview > div:last-child span {
    display: grid;
    min-height: 42px;
    padding: 8px;
    place-items: center;
    border: 1px solid #313844;
    border-radius: 6px;
    color: #d6dbe2;
    font-size: 0.66rem;
    text-align: center;
}

.landing-certificate {
    background: #f5f6f8;
}

.landing-certificate__copy > p:not(.landing-eyebrow) {
    margin: 0 0 18px;
    font-size: 1.02rem;
}

.landing-disclaimer {
    padding: 18px 20px;
    border-left: 2px solid var(--landing-blue);
    background: #fff;
    font-size: 0.82rem !important;
}

.landing-certificate-preview {
    position: relative;
    display: grid;
    gap: 18px;
    min-height: 510px;
    padding: 42px;
    border: 1px solid #dfe3e8;
    background: #fff url('/assets/img/vhigo-pattern-light.png') top center / 100% auto repeat-y;
    box-shadow: 0 30px 80px rgba(19, 28, 40, 0.14);
}

.landing-certificate-preview::before {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.91);
    content: "";
}

.landing-certificate-preview > * {
    position: relative;
}

.landing-certificate-preview__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #dfe3e8;
    color: #0b63ce;
}

.landing-certificate-preview__header span {
    color: #676e78;
    font-size: 0.76rem;
    text-transform: uppercase;
}

.landing-certificate-preview__code {
    color: #11151b;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: clamp(1.35rem, 3vw, 2.4rem);
    letter-spacing: 0.05em;
    text-align: center;
}

.landing-certificate-preview__summary,
.landing-certificate-preview__body {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
}

.landing-certificate-preview__body {
    grid-template-columns: repeat(2, 1fr);
}

.landing-certificate-preview__summary span,
.landing-certificate-preview__body span,
.landing-certificate-preview__work {
    min-height: 76px;
    padding: 18px;
    border: 1px solid #e3e6ea;
    border-radius: 10px;
    color: #606771;
    font-size: 0.76rem;
}

.landing-certificate-preview__work {
    min-height: 120px;
}

.landing-pass {
    background: #05070a;
    color: #fff;
}

.landing-pass p {
    color: rgba(255, 255, 255, 0.7);
}

.landing-pass-stage {
    display: flex;
    min-height: 620px;
    align-items: center;
    justify-content: center;
    border: 1px solid #242a33;
    border-radius: 24px;
    background: radial-gradient(circle at center, rgba(11, 99, 255, 0.18), transparent 58%);
}

.landing-pass-product {
    display: block;
    width: 100%;
    max-width: min(330px, 78%);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.42));
}

.landing-final-cta {
    padding: clamp(90px, 10vw, 150px) 0;
    background: #08111f;
    color: #fff;
    text-align: center;
}

.landing-final-cta__inner {
    display: grid;
    justify-items: center;
    gap: 32px;
}

.landing-final-cta h2 {
    max-width: 900px;
}

.landing-final-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.landing-final-cta p a {
    color: #fff;
    font-weight: 700;
    text-underline-offset: 4px;
}

.landing-footer {
    padding: 70px 0 30px;
    border-top: 1px solid #202a38;
    background: #050a12;
    color: rgba(255, 255, 255, 0.68);
}

.landing-footer__grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.5fr) repeat(2, minmax(160px, 0.7fr));
    gap: 50px;
}

.landing-footer__brand img {
    width: 150px;
    height: auto;
    margin-bottom: 18px;
}

.landing-footer__brand p {
    max-width: 340px;
    line-height: 1.6;
}

.landing-footer nav {
    display: grid;
    align-content: start;
    gap: 13px;
}

.landing-footer a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.landing-footer a:hover,
.landing-footer a:focus-visible {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.landing-footer__bottom {
    display: flex;
    margin-top: 58px;
    padding-top: 24px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid #202a38;
}

.landing-footer .landing-footer__social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.landing-footer__social a {
    display: inline-flex;
    width: 48px;
    min-width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.78);
}

.landing-footer__social a:hover,
.landing-footer__social a:focus-visible {
    color: var(--landing-blue-bright);
    text-decoration: none;
}

.landing-footer__social a:focus-visible {
    outline: 2px solid var(--landing-blue-bright);
    outline-offset: 2px;
}

.landing-social-icon {
    width: 24px;
    height: 24px;
    background-color: currentColor;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
}

.landing-social-icon--instagram {
    mask-image: url('/assets/img/social/instagram.svg');
    -webkit-mask-image: url('/assets/img/social/instagram.svg');
}

.landing-social-icon--facebook {
    mask-image: url('/assets/img/social/facebook.svg');
    -webkit-mask-image: url('/assets/img/social/facebook.svg');
}

@media (max-width: 1050px) {
    .landing-container {
        width: min(1240px, calc(100% - 44px));
    }

    .landing-header__inner {
        gap: 16px;
    }

    .landing-nav {
        gap: 13px;
    }

    .landing-nav a {
        font-size: 0.78rem;
    }

    .landing-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 42px;
    }

    .landing-steps::before {
        display: none;
    }

    .landing-hero__media img {
        object-position: 61% center;
    }
}

@media (min-width: 781px) {
    .landing-hero__content {
        width: min(1240px, calc(100% - clamp(112px, 10vw, 160px)));
    }
}

@media (max-width: 780px) {
    html {
        scroll-padding-top: 68px;
    }

    .landing-container {
        width: min(100% - 32px, 680px);
    }

    .landing-header::after {
        right: 16px;
        left: 16px;
    }

    .landing-header__inner {
        min-height: 68px;
    }

    .landing-header__brand img {
        width: 150px;
    }

    .landing-menu-toggle {
        display: block;
    }

    .landing-nav {
        position: fixed;
        inset: 68px 0 0;
        z-index: 101;
        display: grid;
        height: calc(100vh - 68px);
        height: calc(100svh - 68px);
        padding: 34px 24px 48px;
        align-content: start;
        grid-auto-rows: min-content;
        justify-content: stretch;
        gap: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        background: rgba(3, 6, 10, 0.98);
        -webkit-overflow-scrolling: touch;
    }

    .landing-shell.landing-menu-ready .landing-nav {
        opacity: 0;
        pointer-events: none;
        transform: translateX(100%);
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .landing-shell.landing-menu-ready .landing-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(0);
    }

    .landing-nav a {
        min-height: 58px;
        border-bottom: 1px solid #242a33;
        font-size: 1.06rem;
    }

    .landing-nav a::after {
        top: 14px;
        right: auto;
        bottom: 14px;
        left: -12px;
        width: 2px;
        height: auto;
        transform: scaleY(0);
    }

    .landing-nav a.is-active::after,
    .landing-nav a:focus-visible::after {
        transform: scaleY(1);
    }

    .landing-nav .landing-nav__cta {
        width: 100%;
        margin-top: 24px;
        justify-content: center;
        border: 1px solid #fff;
    }

    .landing-hero {
        min-height: 100vh;
        min-height: 100svh;
        align-items: end;
    }

    .landing-hero__media img {
        object-position: 70% center;
    }

    .landing-hero__overlay {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.18) 32%, rgba(0, 0, 0, 0.84) 78%, rgba(0, 0, 0, 0.95) 100%);
    }

    .landing-hero__content {
        padding-top: 110px;
        padding-bottom: 105px;
    }

    .landing-hero h1 {
        max-width: 600px;
        font-size: clamp(2.65rem, 12vw, 4.7rem);
    }

    .landing-hero__discover {
        bottom: 18px;
    }

    .landing-section {
        padding: 86px 0;
    }

    .landing-section__heading {
        margin-bottom: 40px;
    }

    .landing-pillars,
    .landing-steps,
    .landing-split,
    .landing-footer__grid {
        grid-template-columns: 1fr;
    }

    .landing-pillar {
        min-height: 0;
    }

    .landing-steps {
        gap: 0;
    }

    .landing-steps li {
        min-height: 180px;
        padding: 0 0 34px 70px;
        border-left: 1px solid #cfd5dc;
    }

    .landing-steps li:last-child {
        min-height: 0;
        border-left-color: transparent;
    }

    .landing-step__number {
        position: absolute;
        top: 0;
        left: 20px;
    }

    .landing-steps .landing-icon {
        margin-top: 28px;
    }

    .landing-split,
    .landing-split--reverse {
        gap: 56px;
    }

    .landing-split--reverse > :first-child {
        order: 0;
    }

    .landing-product-frame {
        max-width: 620px;
    }

    .landing-pass-stage {
        min-height: 540px;
    }

    .landing-certificate-preview {
        min-height: 450px;
        padding: 28px;
    }

    .landing-footer__grid {
        gap: 38px;
    }

    .landing-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .landing-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
    }

    .landing-button {
        width: 100%;
    }

    .landing-hero__media img {
        object-position: 73% center;
    }

    .landing-hero h1 {
        font-size: clamp(2.45rem, 12vw, 3.5rem);
    }

    .landing-owner-preview,
    .landing-provider-preview {
        margin: 16px;
        padding: 20px;
    }

    .landing-provider-preview > div:last-child,
    .landing-certificate-preview__summary,
    .landing-certificate-preview__body {
        grid-template-columns: 1fr;
    }

    .landing-pass-stage {
        min-height: 500px;
    }

    .landing-pass-product {
        max-width: min(280px, 78%);
    }
}

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

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