/* Bellavik — mobile first (carrusel) → tablet/desktop (rejilla tipo 1ª imagen) */

:root {
    --gradient-cta: linear-gradient(to right, #f2b08a, #d689ac);
    --pink-soft: #f8e8ee;
    --pink-mid: #e8b8cc;
    --pink-bullet: #d689ac;
    --text-dark: #1a1a1a;
    --white: #fff;
    --hero-overlay: rgba(0, 0, 0, 0.25);
    --font-sans: "Manrope", system-ui, sans-serif;
    --font-serif: "Cormorant Garamond", Georgia, serif;
    --radius-btn: 12px;
    --radius-card: 16px;
    --breakpoint-desktop: 900px;
    /* Sustituye por tus propias rutas locales si trabajas sin internet */
    --hero-image: url("images/header.png");
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

body.modal-open {
    overflow: hidden;
}

.whatsapp-float {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.42);
}

.payment-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: grid;
    place-items: center;
    padding: 1rem;
}

.payment-modal[hidden] {
    display: none;
}

.payment-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.58);
    backdrop-filter: blur(4px);
}

.payment-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    padding: 1.4rem 1.2rem 1.25rem;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.payment-modal__close {
    position: absolute;
    top: 0.7rem;
    right: 0.8rem;
    border: none;
    background: transparent;
    font-size: 1.8rem;
    line-height: 1;
    color: #5d5d5d;
    cursor: pointer;
}

.payment-modal__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: #f4dbe6;
    color: #9f4f74;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.payment-modal__badge--success {
    background: rgba(37, 211, 102, 0.14);
    color: #178846;
}

.payment-modal__badge--pending {
    background: rgba(249, 168, 37, 0.16);
    color: #a35d00;
}

.payment-modal__badge--error {
    background: rgba(233, 93, 93, 0.14);
    color: #b13a3a;
}

.payment-modal__title {
    margin: 0.9rem 0 0.55rem;
    font-size: clamp(1.35rem, 4vw, 1.7rem);
    line-height: 1.2;
    color: var(--text-dark);
}

.payment-modal__message {
    margin: 0 0 1.1rem;
    color: #5a5a5a;
    line-height: 1.5;
}

.payment-modal__details {
    display: grid;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
}

.payment-modal__detail {
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: #f8f4f6;
}

.payment-modal__label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #8b7480;
}

.payment-modal__detail strong {
    font-size: 1rem;
    color: var(--text-dark);
}

.payment-modal__action {
    width: 100%;
    min-height: 48px;
    border: none;
    border-radius: 14px;
    background: var(--gradient-cta);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(214, 137, 172, 0.3);
}

.checkout-modal .checkout-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    margin: 0;
}

.checkout-modal .checkout-modal__dialog {
    width: min(100%, 440px);
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    padding: 1.55rem 1.35rem 1.4rem;
    border: 1px solid rgba(214, 137, 172, 0.22);
    border-radius: 28px;
    background: linear-gradient(180deg, #ffffff 0%, #fff9fb 100%);
    box-shadow: 0 28px 70px rgba(84, 38, 58, 0.22);
    animation: checkoutModalIn 0.28s ease;
}

@keyframes checkoutModalIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.checkout-modal .checkout-modal__close {
    color: #9f7f8d;
    transition: color 0.2s ease, transform 0.2s ease;
}

.checkout-modal .checkout-modal__close:hover {
    color: #d689ac;
    transform: scale(1.05);
}

.checkout-modal .checkout-modal__badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(214, 137, 172, 0.14);
    color: #9f4f74;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.checkout-modal .checkout-modal__title {
    margin: 0.9rem 0 0.5rem;
    font-family: var(--font-serif);
    font-size: clamp(1.65rem, 5vw, 2rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-dark);
}

.checkout-modal .checkout-modal__subtitle {
    margin: 0 0 1.1rem;
    color: #6f6368;
    font-size: 0.94rem;
    line-height: 1.55;
}

.checkout-modal .checkout-modal__product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(248, 232, 238, 0.98), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(214, 137, 172, 0.2);
}

.checkout-modal .checkout-modal__product-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.checkout-modal .checkout-modal__product-name {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}

.checkout-modal .checkout-modal__product-brand {
    font-family: var(--font-serif);
    font-size: 1.08rem;
    font-style: italic;
    color: #9f4f74;
}

.checkout-modal .checkout-modal__product-price {
    flex-shrink: 0;
    padding: 0.45rem 0.7rem;
    border-radius: 12px;
    background: rgba(214, 137, 172, 0.12);
    font-size: 1.02rem;
    font-weight: 800;
    color: #9f4f74;
    white-space: nowrap;
}

.checkout-modal .checkout-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
}

.checkout-modal .checkout-form__label {
    display: block;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #8b7480;
}

.checkout-modal .checkout-form__input-wrap {
    position: relative;
    display: block;
    width: 100%;
}

.checkout-modal .checkout-form__icon {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    font-size: 1.2rem;
    line-height: 1;
    color: #c995ad;
    pointer-events: none;
}

.checkout-modal .checkout-form__field input {
    display: block;
    width: 100%;
    min-height: 52px;
    padding: 0.75rem 1rem 0.75rem 2.85rem;
    border: 1.5px solid #e7d5dd;
    border-radius: 16px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-dark);
    background: #fff;
    box-shadow: inset 0 1px 2px rgba(84, 38, 58, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.checkout-modal .checkout-form__field input::placeholder {
    color: #b7a7af;
}

.checkout-modal .checkout-form__field input:hover {
    border-color: #ddb8c8;
}

.checkout-modal .checkout-form__field input:focus {
    outline: none;
    border-color: #d689ac;
    background: #fffcfd;
    box-shadow: 0 0 0 4px rgba(214, 137, 172, 0.16);
}

.checkout-modal .checkout-form__submit {
    appearance: none;
    -webkit-appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    min-height: 54px;
    margin-top: 0.25rem;
    padding: 0 1rem;
    border: none;
    border-radius: 16px;
    background: var(--gradient-cta);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(214, 137, 172, 0.38);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.checkout-modal .checkout-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(214, 137, 172, 0.45);
    filter: brightness(1.02);
}

.checkout-modal .checkout-form__submit:active {
    transform: translateY(0);
}

.checkout-modal .checkout-form__submit .mdi {
    font-size: 1.12rem;
}

.checkout-modal .checkout-modal__secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    margin: 1rem 0 0;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(214, 137, 172, 0.14);
    color: #7d8a74;
    font-size: 0.84rem;
    font-weight: 600;
}

.checkout-modal .checkout-modal__secure .mdi {
    font-size: 1.05rem;
    color: #6f9b5c;
}



/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 1rem 1.25rem 2rem;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, var(--hero-overlay), transparent 45%, rgba(0, 0, 0, 0.35)),
        var(--hero-image) center / cover no-repeat;
    z-index: 0;
}

.hero__nav {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.25rem;
}

.hero__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: -0.02em;
    
}

.hero__logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero__logo-mark {
    line-height: 1;
}

.hero__slogan {
    margin: 0;
    margin-left: auto;
    max-width: none;
    font-size: clamp(0.72rem, 2.5vw, 1rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    text-align: right;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
    opacity: 0.95;
    white-space: nowrap;
}

@media (min-width: 480px) {
    .hero__slogan {
        font-size: clamp(1.05rem, 2vw, 1.5rem);
    }
}

.hero__inner {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding-top: 0.9rem;
}

.hero__product-wrap {
    display: flex;
    justify-content: center;
    flex: 0 0 auto;
    align-self: center;
    margin-right: 0;
}

.hero__product-img {
    width: min(220px, 56vw);
    max-height: 330px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.28));
}

.hero__panel {
    flex: 0 1 auto;
    width: min(100%, 360px);
    min-width: 0;
    max-width: 360px;
    
    /*background: rgba(232, 184, 204, 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-card);
    padding: 1.5rem 1.35rem 1.65rem;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);*/
}

.hero__title {
    margin: 0 0 0.35rem;
    color: var(--white);
    font-weight: 600;
    line-height: 1.15;
}

.hero__title-serif {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 20vw, 6rem);
    font-weight: 600;
    display: block;
}

.hero__title-sub {
    font-family: var(--font-sans);
    font-size: clamp(1.1rem, 5.5vw, 1.45rem);
    font-weight: 500;
    display: block;
    margin-top: 0.15rem;
}

.hero__brand {
    margin: 0 0 1.25rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0.95;
}

.hero__pricing {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin: 0 0 1.15rem;
    color: var(--white);
}

.hero__pricing-top {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.hero__price-old {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: rgba(255, 255, 255, 0.95);
}

.hero__discount-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: #e95d5d;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;
    box-shadow: 0 6px 18px rgba(233, 93, 93, 0.28);
}

.hero__price-current {
    font-size: clamp(1.8rem, 8vw, 2.6rem);
    font-weight: 800;
    line-height: 1;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

/* CTA */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: var(--radius-btn);
    background: var(--gradient-cta);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(214, 137, 172, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(214, 137, 172, 0.55);
}

.btn-cta--large {
    max-width: 420px;
    margin-inline: auto;
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

@media (max-width: 360px) {
    .hero__inner {
        flex-direction: column;
        justify-content: flex-end;
        gap: 0.35rem;
    }

    .hero__product-img {
        width: min(190px, 58vw);
    }

    .hero__panel {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0.9rem 1rem 1.4rem;
    }

    .hero__nav {
        align-items: center;
    }

    .hero__panel {
        align-self: flex-start;
        margin-left: 0.1rem;
    }

    .hero__brand {
        margin-bottom: 0.95rem;
    }

    .btn-cta {
        min-height: 46px;
        font-size: 1.05rem;
    }

    .whatsapp-float {
        right: 0.8rem;
        bottom: 0.8rem;
        width: 62px;
        height: 62px;
    }

    .whatsapp-float svg {
        width: 34px;
        height: 34px;
    }
}

/* Hero desktop / laptop: layout horizontal como 1ª imagen */
@media (min-width: 900px) {
    .hero {
        min-height: min(100vh, 920px);
        padding: 2rem 4vw 3rem;
    }

    .hero__logo {
        width: 58px;
        height: 58px;
        font-size: 1rem;
    }

    .hero__slogan {
        font-size: clamp(1.15rem, 1.8vw, 1.65rem);
        text-align: right;
    }

    .hero__inner {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: clamp(0.4rem, 1.4vw, 1.1rem);
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero__product-wrap {
        flex: 0 0 auto;
        justify-content: flex-start;
        margin-right: -0.45rem;
    }

    .hero__product-img {
        width: min(295px, 31vw);
        max-height: 440px;
    }

    .hero__panel {
        flex: 0 1 420px;
        align-self: center;
        padding: 2rem 2.25rem 2.25rem;
    }

    .btn-cta {
        width: auto;
        min-width: 220px;
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* ---------- Videos / testimonios ---------- */
.section-videos {
    padding: 2.5rem 1rem 3rem;
}

.section-videos__title {
    margin: 0 auto 1.75rem;
    max-width: 520px;
    font-size: clamp(1.1rem, 4vw, 1.45rem);
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    line-height: 1.35;
}

/* Móvil: carrusel con flechas (2ª imagen) */
.videos-shell {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0.25rem;
}

.videos-track {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex: 1;
    padding: 0.5rem 0.25rem 1rem;
    margin: 0 -0.25rem;
}

.videos-track::-webkit-scrollbar {
    display: none;
}

.video-card {
    flex: 0 0 72%;
    max-width: 280px;
    scroll-snap-align: center;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.28),
        0 6px 18px rgba(0, 0, 0, 0.16);
}

.video-card__media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #ddd var(--thumb) center / cover no-repeat;
}

.video-card__media video,
.video-card__media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-card__play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.92);
    clip-path: polygon(35% 28%, 35% 72%, 75% 50%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.video-card__name {
    margin: 0;
    padding: 0.65rem 0.75rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
}

.video-card {
    position: relative;
}

.carousel-btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: var(--gradient-cta);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(214, 137, 172, 0.45);
    transition: transform 0.15s ease, opacity 0.15s ease;
    z-index: 2;
}

.carousel-btn:active {
    transform: scale(0.96);
}

@media (max-width: 899px) {
    .carousel-btn {
        display: none;
    }

    .videos-shell {
        overflow: hidden;
    }

    .videos-track {
        gap: 0.75rem;
        padding: 0.75rem 0.25rem 1rem;
    }

    .video-card {
        flex: 0 0 76%;
        max-width: 280px;
    }
}

/* Desktop: tres columnas, sin carrusel aparente (1ª imagen) */
@media (min-width: 900px) {
    .section-videos {
        padding: 3rem 4vw 4rem;
    }

    .videos-shell {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .carousel-btn {
        display: none;
    }

    .videos-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
        overflow: visible;
        scroll-snap-type: none;
        padding: 0;
        margin: 0;
    }

    .video-card {
        flex: none;
        max-width: none;
        width: 100%;
    }
}

/* ---------- Beneficios ---------- */
.section-benefits {
    padding: 2.5rem 1.25rem 3.5rem;
    background: linear-gradient(180deg, var(--pink-soft) 0%, var(--white) 38%, var(--white) 100%);
}

.benefits {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(120px, 160px) 1fr;
    grid-template-areas:
        "visual content";
    align-items: center;
    justify-content: center;
    gap: 1rem 1.1rem;
}

.benefits__visual {
    grid-area: visual;
    position: relative;
    z-index: 2;
    margin-left: 0;
    justify-self: center;
}

.benefits__content {
    grid-area: content;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 680px;
    gap: 30px;
}

.benefits__visual img {
    width: min(100%, 125px);
    margin: 0 auto;
    object-fit: contain;
    filter: drop-shadow(0 12px 28px rgba(214, 137, 172, 0.25));
    transform: none;
}

.benefits__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem !important;
    width: 100%;
}

.benefits__list li {
    position: relative;
    padding-left: 1.45rem;
    font-size: clamp(0.95rem, 3.2vw, 1.12rem);
    line-height: 1.35;
}

.benefits__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.35em;
    width: 10px;
    height: 10px;
    background: var(--pink-bullet);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.benefits__highlight {
    display: inline;
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.benefits__cta {
    text-align: left;
    padding-top: 1.35rem;
    width: 100%;
}

.section-benefits .btn-cta--large {
    width: 100%;
    max-width: 360px;
    padding: 0.95rem 1.4rem;
    font-size: clamp(1.05rem, 4vw, 1.28rem);
}

@media (min-width: 900px) {
    .section-benefits {
        padding: 4rem 4vw 5rem;
    }

    .benefits {
        display: grid;
        grid-template-columns: minmax(170px, 210px) minmax(520px, 680px);
        grid-template-areas: "visual content";
        gap: 1.1rem 2rem;
        align-items: center;
        justify-content: center;
    }

    .benefits__visual {
        grid-area: visual;
        align-self: center;
        margin-left: 0;
        justify-self: center;
    }

    .benefits__content {
        grid-area: content;
    }

    .benefits__visual img {
        width: 100%;
        max-width: 170px;
        margin: 0;
        transform: none;
    }

    .benefits__list {
        gap: 0.6rem;
    }

    .benefits__list li {
        font-size: clamp(1.02rem, 1.2vw, 1.2rem);
        line-height: 1.32;
    }

    .benefits__cta {
        padding-top: 1.25rem;
        text-align: left;
    }

    .section-benefits .btn-cta--large {
        margin-inline: 0;
    }
}
