/* ////////////////////////////////////////////////////INDEX.PHP////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
:root {
    --bg: #08090d;
    --card: rgba(255, 255, 255, .08);
    --card2: rgba(255, 255, 255, .13);
    --line: rgba(255, 255, 255, .14);
    --text: #ffffff;
    --muted: #b8bdc9;
    --orange: #ff7a1a;
    --yellow: #ffd166;
    --green: #32d583;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

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

.container {
    width: min(1180px, 92%);
    margin: auto
}

body:before {
    content: "";
    position: fixed;
    inset: -20%;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 122, 26, .35), transparent 25%),
        radial-gradient(circle at 85% 10%, rgba(50, 213, 131, .22), transparent 25%),
        radial-gradient(circle at 70% 80%, rgba(255, 209, 102, .18), transparent 28%);
    filter: blur(45px);
    z-index: -2;
    animation: moveBg 10s ease-in-out infinite alternate;
}

body:after {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: linear-gradient(to bottom, #000, transparent 75%);
    z-index: -1;
}

@keyframes moveBg {
    from {
        transform: translate3d(0, 0, 0) scale(1)
    }

    to {
        transform: translate3d(-3%, 2%, 0) scale(1.08)
    }
}

.navbar {
    position: fixed;
    top: 18px;
    left: 0;
    width: 100%;
    z-index: 99;
}

.nav-inner {
    height: 72px;
    padding: 0 20px;
    border: 1px solid var(--line);
    background: rgba(8, 9, 13, .72);
    backdrop-filter: blur(22px);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .35);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    letter-spacing: -.5px;
}

.brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    filter: drop-shadow(0 0 18px rgba(255, 122, 26, .45));
}

.menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    font-size: 14px;
    color: #e8e8e8;
}

.menu a {
    opacity: .85;
    transition: .2s;
}

.menu a:hover {
    opacity: 1;
    color: var(--yellow);
}

.menu .nav-cta {
    background: #fff;
    color: #111;
    padding: 12px 17px;
    border-radius: 999px;
    font-weight: 900;
    opacity: 1;
}

.hero {
    min-height: 100vh;
    padding: 150px 0 80px;
    display: flex;
    align-items: center;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .09);
    border: 1px solid var(--line);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 26px;
}

.pill span {
    width: 9px;
    height: 9px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 18px var(--green);
}

.hero h1 {
    font-size: clamp(48px, 7vw, 92px);
    line-height: .9;
    letter-spacing: -5px;
    margin-bottom: 30px;
}

.hero h1 strong {
    color: var(--orange);
    text-shadow: 0 0 35px rgba(255, 122, 26, .45);
}

.hero p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 660px;
    margin-bottom: 34px;
}

.actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 22px;
    border-radius: 16px;
    font-weight: 900;
    transition: .2s;
}

.btn-main {
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: #111;
    box-shadow: 0 20px 60px rgba(255, 122, 26, .35);
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 70px rgba(255, 122, 26, .48);
}

.btn-ghost {
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--line);
    color: #fff;
}

.trust {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    color: #d9dce5;
    font-size: 14px;
}

.trust div {
    padding: 10px 13px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .06);
    border-radius: 999px;
}

.phone-wrap {
    position: relative;
    min-height: 610px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit {
    position: absolute;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    animation: spin 18s linear infinite;
}

.orbit:before,
.orbit:after {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 30px var(--yellow);
}

.orbit:before {
    top: 55px;
    left: 75px
}

.orbit:after {
    right: 60px;
    bottom: 85px;
    background: var(--green);
    box-shadow: 0 0 30px var(--green)
}

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

.phone {
    position: relative;
    width: 350px;
    border-radius: 44px;
    padding: 16px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .28), rgba(255, 255, 255, .06));
    border: 1px solid rgba(255, 255, 255, .28);
    box-shadow: 0 40px 120px rgba(0, 0, 0, .55);
    backdrop-filter: blur(20px);
    z-index: 2;
}

.screen {
    border-radius: 34px;
    overflow: hidden;
    background: #101217;
    border: 1px solid rgba(255, 255, 255, .12);
}

.app-top {
    padding: 22px;
    background: linear-gradient(135deg, rgba(255, 122, 26, .95), rgba(255, 209, 102, .9));
    color: #111;
}

.app-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 950;
    font-size: 20px;
}

.app-logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
    background: #fff;
    border-radius: 18px;
    padding: 6px;
}

.search {
    margin-top: 18px;
    background: rgba(255, 255, 255, .75);
    border-radius: 14px;
    padding: 13px 14px;
    font-weight: 800;
    color: #333;
    font-size: 14px;
}

.products {
    padding: 18px;
    display: grid;
    gap: 13px;
}

.product {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 12px;
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .1);
    padding: 12px;
    border-radius: 18px;
}

.product img {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255, 255, 255, .08);
}

.product strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.product small {
    color: #aeb4c2;
}

.price {
    color: var(--yellow);
    font-weight: 950;
}

.float-card {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, .11);
    border: 1px solid var(--line);
    backdrop-filter: blur(18px);
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .35);
}

.float-card.one {
    top: 72px;
    left: 0;
}

.float-card.two {
    bottom: 105px;
    right: 0;
}

.float-card strong {
    display: block;
    font-size: 22px;
    color: #fff;
}

.float-card span {
    color: var(--muted);
    font-size: 13px;
}

.marquee {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, .06);
    padding: 18px 0;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 34px;
    animation: marquee 22s linear infinite;
    font-size: 19px;
    font-weight: 900;
    color: #fff;
}

.marquee-track span {
    color: var(--orange);
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.section {
    padding: 110px 0;
}

.section-head {
    max-width: 820px;
    margin-bottom: 50px;
}

.section-head .eyebrow {
    color: var(--orange);
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
    font-size: 13px;
}

.section-head h2 {
    font-size: clamp(38px, 5vw, 68px);
    line-height: .95;
    letter-spacing: -3px;
    margin-bottom: 22px;
}

.section-head p {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
}

.about-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.about-img {
    min-height: 520px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 30px 100px rgba(0, 0, 0, .35);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-copy {
    display: grid;
    gap: 24px;
}

.glass {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: 34px;
    backdrop-filter: blur(20px);
}

.glass h3 {
    font-size: 31px;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.glass p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mini {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 26px;
}

.mini strong {
    display: block;
    font-size: 34px;
    color: var(--yellow);
    margin-bottom: 8px;
}

.mini span {
    color: var(--muted);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.step {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .05));
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: 28px;
    transition: .25s;
}

.step:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 122, 26, .55);
}

.step:before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 122, 26, .25);
    filter: blur(25px);
    right: -60px;
    top: -50px;
}

.step .num {
    font-size: 48px;
    font-weight: 950;
    color: rgba(255, 255, 255, .18);
    margin-bottom: 34px;
}

.step img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-bottom: 26px;
    filter: brightness(0) invert(1);
}

.step h3 {
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 14px;
}

.step p {
    color: var(--muted);
    line-height: 1.65;
}

.quote-box {
    background: linear-gradient(135deg, rgba(255, 122, 26, .95), rgba(255, 209, 102, .92));
    color: #111;
    border-radius: 42px;
    padding: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 35px 120px rgba(255, 122, 26, .25);
}

.quote-box:after {
    content: "Pido acá";
    position: absolute;
    right: -20px;
    bottom: -25px;
    font-size: 120px;
    font-weight: 950;
    opacity: .10;
    letter-spacing: -6px;
}

.quote-box blockquote {
    position: relative;
    z-index: 2;
    font-size: clamp(30px, 5vw, 58px);
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 950;
    max-width: 900px;
}

.quote-box cite {
    position: relative;
    z-index: 2;
    display: block;
    margin-top: 22px;
    font-style: normal;
    font-weight: 900;
}

.contact-wrap {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
}

.contact-card {
    background: rgba(255, 255, 255, .09);
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: 34px;
    backdrop-filter: blur(20px);
}

.contact-card h2 {
    font-size: clamp(38px, 5vw, 66px);
    line-height: .95;
    letter-spacing: -3px;
    margin-bottom: 18px;
}

.contact-card p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.contact-list {
    display: grid;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--line);
}

.contact-item span {
    color: var(--muted);
}

.contact-item strong,
.contact-item a {
    font-size: 20px;
    font-weight: 950;
    text-align: right;
}

.contact-item a {
    color: var(--yellow);
}

.shop {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 34px;
    border-radius: 34px;
    background: #fff;
    color: #111;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .28);
}

.shop strong {
    font-size: 26px;
    letter-spacing: -1px;
}

.shop span {
    display: block;
    margin-top: 8px;
    color: #666;
}

.shop a {
    background: #111;
    color: #fff;
    padding: 15px 20px;
    border-radius: 16px;
    font-weight: 950;
}

.footer {
    padding: 45px 0;
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, .35);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer img {
    width: 150px;
}

.footer p {
    color: var(--muted);
    margin-bottom: 8px;
}

.footer a {
    color: var(--yellow);
    font-weight: 900;
}

@media(max-width:950px) {
    .navbar {
        top: 10px
    }

    .menu {
        display: none
    }

    .hero {
        padding-top: 125px
    }

    .hero-grid,
    .about-panel,
    .contact-wrap {
        grid-template-columns: 1fr;
    }

    .phone-wrap {
        min-height: 520px
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr
    }

    .hero h1 {
        letter-spacing: -3px
    }
}

@media(max-width:620px) {
    .nav-inner {
        border-radius: 24px
    }

    .hero h1 {
        font-size: 48px
    }

    .phone {
        width: 310px
    }

    .orbit {
        width: 390px;
        height: 390px
    }

    .float-card {
        display: none
    }

    .steps-grid,
    .mini-grid {
        grid-template-columns: 1fr;
    }

    .quote-box {
        padding: 36px
    }

    .contact-item,
    .shop,
    .footer-inner {
        display: block;
    }

    .contact-item strong,
    .contact-item a {
        display: block;
        text-align: left;
        margin-top: 8px;
    }

    .shop a {
        display: inline-block;
        margin-top: 22px;
    }

    .footer {
        text-align: center
    }

    .footer img {
        margin-bottom: 20px
    }
}
/* ////////////////////////////////////////////////////SOLICITUD.PHP////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
.solicitud-page {
    min-height: 100vh;
}

.solicitud-main {
    padding-top: 130px;
}

.solicitud-hero {
    padding: 60px 0 100px;
}

.solicitud-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
    align-items: start;
}

.solicitud-info {
    position: sticky;
    top: 130px;
}

.solicitud-info h1 {
    font-size: clamp(42px, 5vw, 72px);
    line-height: .92;
    letter-spacing: -4px;
    margin-bottom: 26px;
}

.solicitud-info h1 strong {
    color: var(--orange);
    text-shadow: 0 0 35px rgba(255, 122, 26, .45);
}

.solicitud-info p {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.75;
    max-width: 560px;
    margin-bottom: 32px;
}

.solicitud-points {
    display: grid;
    gap: 14px;
}

.solicitud-points div {
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 14px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.solicitud-points strong {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: #111;
    font-weight: 950;
}

.solicitud-points span {
    color: #e5e7eb;
    font-weight: 800;
}

.solicitud-card {
    background: rgba(255, 255, 255, .09);
    border: 1px solid var(--line);
    border-radius: 38px;
    padding: 34px;
    backdrop-filter: blur(24px);
    box-shadow: 0 35px 110px rgba(0, 0, 0, .38);
}

.form-head {
    margin-bottom: 30px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}

.form-head h2 {
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 12px;
}

.form-head p {
    color: var(--muted);
    font-size: 16px;
}

.form-section {
    margin-bottom: 30px;
}

.form-section h3 {
    color: var(--yellow);
    font-size: 18px;
    margin-bottom: 18px;
    letter-spacing: -.3px;
}

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

.field {
    display: grid;
    gap: 8px;
}

.field label {
    color: #eef0f5;
    font-size: 14px;
    font-weight: 850;
}

.field input {
    width: 100%;
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    padding: 0 15px;
    outline: none;
    font-size: 15px;
    transition: .2s;
}

.field input:focus {
    border-color: rgba(255, 209, 102, .8);
    box-shadow: 0 0 0 4px rgba(255, 209, 102, .12);
    background: rgba(255, 255, 255, .11);
}

.field input[type="file"] {
    padding: 14px;
    cursor: pointer;
}

.field input[type="file"]::file-selector-button {
    border: 0;
    border-radius: 12px;
    padding: 10px 13px;
    margin-right: 12px;
    background: #fff;
    color: #111;
    font-weight: 900;
    cursor: pointer;
}

.field-images input[type="file"] {
    margin-top: 10px;
}

.btn-add-image {
    min-height: 52px;
    border: 1px dashed rgba(255, 209, 102, .55);
    border-radius: 16px;
    background: rgba(255, 209, 102, .09);
    color: var(--yellow);
    font-weight: 950;
    cursor: pointer;
    transition: .2s;
}

.btn-add-image:hover {
    background: rgba(255, 209, 102, .16);
    transform: translateY(-2px);
}

.submit-store {
    width: 100%;
    min-height: 58px;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--orange), var(--yellow));
    color: #111;
    font-size: 16px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 22px 60px rgba(255, 122, 26, .34);
    transition: .2s;
}

.submit-store:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 75px rgba(255, 122, 26, .48);
}

@media(max-width:950px) {
    .solicitud-grid {
        grid-template-columns: 1fr;
    }

    .solicitud-info {
        position: static;
    }

    .solicitud-main {
        padding-top: 115px;
    }
}

@media(max-width:620px) {
    .solicitud-card {
        padding: 24px;
        border-radius: 28px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .solicitud-info h1 {
        letter-spacing: -2px;
    }
}
/* ////////////////////////////////////////////////////AYUDA.PHP////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */

.help-page {
    padding-top: 140px;
}

.help-hero {
    padding: 60px 0 40px;
}

.help-header {
    max-width: 920px;
}

.help-header span {
    display: inline-block;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 950;
    font-size: 13px;
    margin-bottom: 18px;
}

.help-header h1 {
    font-size: clamp(44px, 7vw, 86px);
    line-height: .9;
    letter-spacing: -4px;
    margin-bottom: 26px;
}

.help-header p {
    color: var(--muted);
    font-size: 20px;
    line-height: 1.75;
    max-width: 760px;
}

.help-content {
    padding: 40px 0 100px;
}

.help-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 34px;
    align-items: start;
}

.help-nav {
    position: sticky;
    top: 125px;
    display: grid;
    gap: 10px;
    padding: 16px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .075);
    border: 1px solid var(--line);
    backdrop-filter: blur(20px);
}

.help-nav a {
    padding: 14px 15px;
    border-radius: 16px;
    color: #e6e9f2;
    font-weight: 850;
    transition: .2s;
}

.help-nav a:hover {
    background: rgba(255, 255, 255, .1);
    color: var(--yellow);
}

.help-steps {
    display: grid;
    gap: 26px;
}

.help-step {
    position: relative;
    display: grid;
    grid-template-columns: 72px 1fr .95fr;
    gap: 26px;
    padding: 26px;
    border-radius: 36px;
    background: rgba(255, 255, 255, .075);
    border: 1px solid var(--line);
    backdrop-filter: blur(22px);
    box-shadow: 0 25px 90px rgba(0, 0, 0, .25);
    overflow: hidden;
}

.help-step:before {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(255, 122, 26, .16);
    filter: blur(28px);
}

.help-number {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: #fff;
    color: #111;
    font-weight: 950;
    position: relative;
    z-index: 2;
}

.help-text {
    position: relative;
    z-index: 2;
}

.help-text h2 {
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.help-text p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 14px;
}

.help-image {
    position: relative;
    z-index: 2;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .13);
    min-height: 270px;
    background: rgba(0, 0, 0, .25);
}
.help-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .35s;
}

.help-step:hover .help-image img {
    transform: scale(1.04);
}

.help-final {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 36px;
    border-radius: 36px;
    background: linear-gradient(135deg, rgba(255, 122, 26, .95), rgba(255, 209, 102, .92));
    color: #111;
    box-shadow: 0 30px 100px rgba(255, 122, 26, .24);
}

.help-final span {
    display: block;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    margin-bottom: 14px;
}

.help-final h2 {
    font-size: clamp(30px, 4vw, 54px);
    line-height: .95;
    letter-spacing: -2px;
}

.help-final a {
    flex: 0 0 auto;
    background: #111;
    color: #fff;
    padding: 16px 22px;
    border-radius: 18px;
    font-weight: 950;
}

@media(max-width:1050px) {
    .help-layout {
        grid-template-columns: 1fr;
    }

    .help-nav {
        position: relative;
        top: auto;
        grid-template-columns: repeat(2, 1fr);
    }

    .help-step {
        grid-template-columns: 60px 1fr;
    }

    .help-image {
        grid-column: 2;
    }
}

@media(max-width:680px) {
    .help-page {
        padding-top: 125px;
    }

    .help-header h1 {
        letter-spacing: -2px;
    }

    .help-nav {
        grid-template-columns: 1fr;
    }

    .help-step {
        grid-template-columns: 1fr;
    }

    .help-image {
        grid-column: auto;
    }

    .help-final {
        display: block;
    }

    .help-final a {
        display: inline-block;
        margin-top: 22px;
    }
}