/* --- LANDING --- */

*,
.slide-content ul,
::after,
::before {
    padding: 0;
    margin: 0;
}
*,
.hero-text-fixed,
.hero__title,
.topbar-wrapper,
::after,
::before {
    box-sizing: border-box;
}
.pill,
body {
    font-family: Inter, sans-serif;
}
.pill:hover,
body {
    color: #e8edf5;
}
.card__amount--pulse,
.hero-carousel__slide.active .slide-content ul,
.slide-content--pulse {
    animation: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) pricePulse;
}
.features__icon,
.main-card__icon {
    filter: brightness(0) saturate(100%) invert(53%) sepia(23%) saturate(5416%) hue-rotate(179deg) brightness(104%)
        contrast(101%);
}
html::-webkit-scrollbar {
    display: none;
}
html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
:root {
    --site-max-width: 1200px;
    --site-padding: 1.5rem;
}
body {
    background: linear-gradient(145deg, #0b0e1a 0, #131a2b 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 var(--site-padding) 2rem;
    line-height: 1.4;
}
.topbar-content,
.topbar-right {
    display: flex;
    align-items: center;
}
.main {
    max-width: var(--site-max-width);
    width: 100%;
}
.topbar-wrapper {
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 10;
    padding-left: calc(max(var(--site-padding), (100% - var(--site-max-width))/ 2));
    padding-right: calc(max(var(--site-padding), (100% - var(--site-max-width))/ 2));
}
.topbar-content {
    width: 100%;
    justify-content: space-between;
}
.topbar-right {
    gap: 10px;
}
.topbar-logo img {
    height: 32px;
    width: auto;
    display: block;
}
.currency-text {
    color: #64748b;
    font-size: 14px;
    font-weight: 400;
}
.currency-toggle {
    display: inline-block;
    cursor: pointer;
}
.toggle-track {
    position: relative;
    width: 58px;
    height: 24px;
    background: #0d72b3;
    border-radius: 40px;
    display: flex;
    align-items: center;
    padding: 4px 2px 2px;
    transition: background 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}
.hero-carousel__slide,
.hero-text-fixed {
    padding-left: calc(max(var(--site-padding), (100% - var(--site-max-width))/ 2));
    padding-right: calc(max(var(--site-padding), (100% - var(--site-max-width))/ 2));
}
.currency-toggle--usd .toggle-track {
    background: #356f36;
}
.toggle-label {
    position: absolute;
    font-size: 12px;
    font-weight: 400;
    user-select: none;
    transition: opacity 0.3s;
    pointer-events: none;
    color: #fff;
    opacity: 0;
}
.toggle-label--ars {
    right: 8px;
    opacity: 1;
}
.toggle-label--usd {
    left: 6px;
    opacity: 0;
}
.currency-toggle--usd .toggle-label--ars {
    opacity: 0;
}
.currency-toggle--usd .toggle-label--usd {
    opacity: 1;
}
.toggle-thumb {
    position: absolute;
    top: 1px;
    left: 1px;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 1px solid #b7b7b7;
    border-radius: 50%;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    z-index: 3;
}
.currency-toggle--usd .toggle-thumb {
    transform: translateX(33px);
}
.hero {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: 4rem;
}
.hero-carousel {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
}
.hero-carousel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("assets/images/slide_00.webp") center/cover no-repeat;
    opacity: 0.15;
    mask-image: linear-gradient(to left, black 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 0%, transparent 100%);
    z-index: 0;
}
.hero-text-fixed {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 100%;
    z-index: 5;
    pointer-events: none;
}
.card,
.pill {
    position: relative;
}
.hero__subtitle,
.hero__title {
    max-width: calc(min(100%, var(--site-max-width)) / 2);
}
.hero-carousel__slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s;
}
.hero-carousel__slide {
    flex: 0 0 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: flex-end;
    z-index: 0;
}
.hero-carousel__slide.active {
    display: flex;
}
.slide-content {
    width: fit-content;
    max-width: 48%;
    align-items: flex-start;
    display: inline-block;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.slide-content ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.slide-content ul li {
    display: flex;
    align-items: flex-start;
}
.slide-content .features__icon {
    width: 22px;
    height: 22px;
    margin-right: 16px;
    filter: invert(100%) brightness(200%);
}
.hero__title {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1;
    background: linear-gradient(135deg, #fff 60%, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding-bottom: 8px;
}
.hero__title .highlight {
    background: linear-gradient(135deg, #054979, #18a8ff);
    background-position: -2px -2px;
    background-size: calc(100% + 4px) calc(100% + 4px);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow:
        0 5px 10px rgba(96, 165, 250, 0.4),
        0 10px 25px rgba(96, 165, 250, 0.3);
}
.pill:hover,
.pills {
    background: rgba(255, 255, 255, 0.04);
}
.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 400;
    color: #94a3b8;
}
@media (max-width: 768px) {
    .currency-toggle-wrapper {
        justify-content: center;
        margin-top: -0.5rem;
        margin-bottom: 0.5rem;
    }
    .toggle-track {
        width: 62px;
        height: 28px;
    }
    .toggle-thumb {
        width: 22px;
        height: 22px;
        top: 3px;
        left: 3px;
    }
    .currency-toggle--usd .toggle-thumb {
        transform: translateX(34px);
    }
    .hero {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    .hero-carousel {
        height: auto;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }
    .hero-text-fixed {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
        padding: 120px var(--site-padding) 0;
    }
    .hero__subtitle,
    .hero__title {
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .hero__title {
        font-size: 2.4rem !important;
    }
    .hero-carousel__slides {
        display: grid;
        grid-template-columns: 100%;
        height: auto;
        margin-top: 2rem;
        padding-bottom: 4rem;
        order: 2;
    }
    .hero-carousel__slide {
        grid-area: 1/1/2/2;
        display: flex !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        justify-content: center;
        align-items: center;
        padding: 0 var(--site-padding);
        transition:
            opacity 0.4s,
            visibility 0.4s;
    }
    .hero-carousel__slide.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .slide-content {
        width: 100%;
        max-width: 100%;
    }
    .slide-content ul {
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
        align-items: flex-start;
    }
}
.pill,
.pills {
    display: flex;
}
.period-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3.5rem;
}
.pills {
    gap: 0.6rem;
    padding: 0.5rem;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    flex-wrap: wrap;
    justify-content: center;
}
.pill {
    padding: 0.6rem 1.6rem;
    border: none;
    border-radius: 40px;
    background: 0 0;
    color: #94a3b8;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: center;
    gap: 0.5rem;
}
.pill--active,
.pill--active:hover {
    background: linear-gradient(135deg, #054979, #18a8ff);
}
.pill--active {
    color: #dbe2f9;
    font-weight: 600;
    box-shadow: 0 4px 20px -8px rgba(96, 165, 250, 0.4);
}
.pill--active:hover {
    color: #0b0e1a;
}
.pill__badge {
    font-size: 0.65rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.15rem 0.6rem;
    border-radius: 20px;
    letter-spacing: 0.02em;
    color: #64748b;
    transition: 0.3s;
}
.pill--active .pill__badge {
    background: rgba(11, 14, 26, 0.15);
    color: #c6cedb;
    text-transform: uppercase;
}
.period-selector__hint {
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
    margin-top: 1.2rem;
}
.card__amount {
    display: inline-block;
    transition:
        transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
        color 0.3s;
}
.card__amount--pulse {
    --pulse-color: #18a8ff;
}
.slide-content--pulse {
    --pulse-color: #ffffff;
}
@keyframes pricePulse {
    0% {
        transform: scale(1);
    }
    40% {
        transform: scale(1.15);
        color: var(--pulse-color);
    }
    70% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
        color: inherit;
    }
}
@media (min-width: 360px) and (max-width: 480px) {
    .currency-text {
        display: none;
    }
    .pills {
        padding: 0.4rem;
        gap: 0.4rem;
        border-radius: 40px;
    }
    .pill {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    .pill__badge {
        font-size: 0.55rem;
        padding: 0.1rem 0.4rem;
    }
}
.plans__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}
.card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    padding: 40px 30px 35px;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.25s,
        box-shadow 0.35s,
        border-color 0.3s;
    overflow: hidden;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.6);
}
.card--startup {
    background: rgba(96, 165, 250, 0.08);
    border-color: rgba(96, 165, 250, 0.25);
    box-shadow: 0 0 30px -8px rgba(96, 165, 250, 0.15);
}
.card--startup:hover,
.card:hover {
    border-color: #18a8ff;
    box-shadow: 0 20px 50px -12px rgba(96, 165, 250, 0.3);
}
.card__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.08);
    padding: 7px 14px 6px;
    border-radius: 100px;
    font-size: 11px;
    line-height: 11px;
    font-weight: 500;
    text-transform: uppercase;
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.card__badge--pro {
    background: linear-gradient(135deg, #054979, #18a8ff);
    background-position: -2px -2px;
    background-size: calc(100% + 4px) calc(100% + 4px);
    color: #cccdd1;
    border-color: transparent;
    font-weight: 700;
}
.main-card__icon {
    position: relative;
    top: 12px;
    margin-right: 8px;
    width: 48px;
    height: 48px;
    opacity: 0.25;
}
.card:first-child .main-card__icon {
    margin-right: 0;
}
.card__name {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1rem 0;
}
.card__price {
    container-type: inline-size;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}
.card__currency {
    font-size: 1.2rem;
    font-weight: 500;
    color: #94a3b8;
}
.card__amount {
    font-size: clamp(2rem, 14cqw, 4rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1;
    color: #18a8ff;
}
.card__period-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}
.card__price-detail,
.card__price-total {
    align-items: baseline;
    display: flex;
}
.card__badge-price {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #18a8ff;
    background: rgba(96, 165, 250, 0.12);
    padding: 7px 12px 6px;
    border-radius: 20px;
    margin-bottom: 0.1rem;
}
.card--startup .card__badge-price {
    color: #18a8ff;
    background: rgba(24, 168, 255, 0.12);
}
.card__period {
    font-size: 1rem;
    color: #94a3b8;
}
.card__price-detail {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.card__price-final-amount,
.card__price-total-amount {
    padding-left: 6px;
}
.card__price-total-amount {
    text-decoration: line-through;
    color: #64748b;
    font-weight: 500;
}
.card__price-final {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    font-weight: 600;
    color: #18a8ff;
}
.card__price-final-amount {
    font-weight: 700;
    color: #18a8ff;
}
.card--boost .card__price-final-amount,
.card--lite .card__price-final-amount {
    color: #18a8ff;
}
.card__features {
    list-style: none;
    margin: 1rem 0 3rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.card__features li {
    font-size: 0.95rem;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.features__icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-right: 0.5rem;
}
.card__cta {
    display: inline-block;
    text-align: center;
    padding: 0.9rem 1.5rem;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition:
        background 0.25s,
        transform 0.2s,
        box-shadow 0.3s;
    margin-top: auto;
}
.card__cta--lite {
    background: rgba(255, 255, 255, 0.06);
    color: #e8edf5;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.card__cta--lite:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.02);
}
.card__cta--startup {
    background: linear-gradient(135deg, #054979, #18a8ff);
    color: #0b0e1a;
    border: none;
    font-weight: 700;
}
.card__cta--startup:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px -8px rgba(96, 165, 250, 0.5);
}
.card__cta--boost {
    background: rgba(255, 255, 255, 0.08);
    color: #e8edf5;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.card__cta--boost:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}
.card--features-all {
    grid-column: 1/-1;
    width: 100%;
    justify-self: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid #64748b52;
}
.card--features-all h3.card__name {
    margin: 3rem auto;
    padding-bottom: 1rem;
    text-align: center;
}
.footer {
    margin-top: 3.5rem;
    text-align: center;
}
.footer__text {
    font-size: 14px;
    color: #94a3b885
}
.no-tax {
    color: #18a8ff;
}
@media (min-width: 1024px) {
    .card--features-all .card__features {
        display: grid;
        grid-template-columns: repeat(3, auto);
        gap: 2rem 3rem;
        justify-content: center;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .card,
    .main {
        max-width: 100%;
    }
    :root {
        --site-padding: 2rem;
    }
    .card--features-all .card__features,
    .card__features {
        display: grid;
        grid-template-columns: repeat(2, max-content);
        justify-content: space-around;
        gap: 1rem 2rem;
    }
}
@media (max-width: 1023px) {
    .main {
        width: 100%;
        margin: 0 auto;
    }
    .plans__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }
    .card {
        max-width: 480px;
        width: 100%;
        justify-self: center;
    }
    .card--features-all {
        grid-column: 1;
    }
}
@media (max-width: 767px) {
    .main {
        max-width: 480px;
    }
    .hero {
        width: 100vw;
        position: relative;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    .hero__title {
        font-size: 2rem;
    }
    .card {
        max-width: 100%;
    }
    .card--features-all {
        grid-column: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .card--features-all .card__features {
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
        width: fit-content;
        margin: 1rem auto 3rem;
    }
    .card--features-all .card__features li {
        justify-content: flex-start;
        text-align: left;
    }
}
@media (min-width: 768px) and (max-width: 1299px) {
    .hero-carousel {
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        box-sizing: border-box;
        padding: 140px var(--site-padding) 80px;
    }
    .hero-carousel::before {
        mask-image: none;
        -webkit-mask-image: none;
        background-size: cover;
    }
    .hero-text-fixed {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: auto;
        max-width: 45%;
        padding: 0;
        z-index: 5;
    }
    .hero__subtitle,
    .hero__title {
        max-width: 100%;
        text-align: left;
    }
    .hero-carousel__slides {
        width: auto;
        height: auto;
        max-width: 45%;
    }
    .hero-carousel__slide {
        padding: 0;
        justify-content: flex-start;
    }
    .slide-content {
        max-width: 100%;
        width: 100%;
    }
}
@media (max-width: 359px) {
    .currency-text {
        display: none;
    }
    .period-selector {
        width: 100%;
        max-width: 100%;
        font-size: calc((100vw / 420) * 16);
    }
    .period-selector .pills {
        display: flex;
        width: 100%;
        justify-content: space-between;
        gap: 0.4em;
        padding: 0.4em;
    }
    .period-selector .pill {
        flex: 1;
        width: auto;
        padding: 0.6em 0.5em;
        font-size: 0.9em;
        justify-content: center;
        white-space: nowrap;
    }
    .period-selector__hint {
        font-size: 0.85em;
    }
}

/* --- CHECKOUT --- */

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: #18a8ff;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 2rem;
    align-items: start;
}

.checkout-summary,
.checkout-form-card {
    overflow: visible;
}

.checkout-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.currency-tag {
    font-size: 0.85rem;
    color: #18a8ff;
    font-weight: 500;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.summary-label {
    color: #94a3b8;
}

.summary-value {
    font-weight: 600;
    color: #e8edf5;
    text-align: right;
}

.summary-total {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.total-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.total-amount-wrapper {
    text-align: right;
}

.total-amount {
    font-size: 1.6rem;
    font-weight: 800;
    color: #18a8ff;
}

.total-subtext {
    font-size: 0.75rem;
    color: #64748b;
    display: block;
    margin-top: 2px;
}

.checkout-form .form-group {
    margin-bottom: 1.25rem;
}

.checkout-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkout-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: #94a3b8;
    margin-bottom: 0.4rem;
}

.checkout-form label span {
    color: #18a8ff;
}

.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"] {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(11, 14, 26, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.25s, box-shadow 0.25s;
    box-sizing: border-box;
}

.checkout-form input:focus {
    outline: none;
    border-color: #18a8ff;
    box-shadow: 0 0 10px rgba(24, 168, 255, 0.25);
}

.payment-section {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.payment-section-title {
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.payment-option:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(24, 168, 255, 0.4);
}

.payment-option input[type="radio"] {
    margin-right: 0.75rem;
    accent-color: #18a8ff;
    width: 18px;
    height: 18px;
}

.payment-option__text {
    display: flex;
    flex-direction: column;
}

.payment-option__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
}

.payment-option__desc {
    font-size: 0.8rem;
    color: #94a3b8;
}

.btn-submit-order {
    width: 100%;
    margin-top: 1.5rem;
    cursor: pointer;
}

@media (max-width: 900px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
    .checkout-form .form-row {
        grid-template-columns: 1fr;
    }
}