/* ------------------------------ HERO INTRO ------------------------------ */

.plans-hero {
    min-height: 100vh;
    padding: 10rem 5% 6rem;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 28%, rgba(0, 102, 255, 0.12) 0%, transparent 30%),
        radial-gradient(circle at 86% 20%, rgba(153, 102, 221, 0.25) 0%, transparent 32%),
        radial-gradient(circle at 54% 92%, rgba(104, 93, 249, 0.2) 0%, transparent 36%);
}

.plans-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(4rem);
    pointer-events: none;
    z-index: 0;
}

.plans-hero__glow--left {
    width: 20rem;
    height: 20rem;
    left: -8rem;
    top: 20%;
    background: rgba(0, 102, 255, 0.12);
}

.plans-hero__glow--right {
    width: 28rem;
    height: 28rem;
    right: -10rem;
    top: 8%;
    background: rgba(153, 102, 221, 0.24);
}

.plans-hero__container {
    max-width: 81.25rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.plans-hero__title {
    font-size: clamp(2.2rem, 4.2vw, 4rem);
    line-height: 1.1;
    max-width: 48rem;
    margin-bottom: 1.25rem;
}

.plans-hero__description {
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.65;
    max-width: 43rem;
    margin-bottom: 1.8rem;
}

.plans-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.2rem;
}

.plans-hero__chip {
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 999px;
    padding: 0.6rem 1rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}


/* ------------------------------ BRANDS BANNER ------------------------------ */

.brands-banner {
    width: 100vw;
    background-color: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 2rem 0;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.brands-track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
}

.brand-item {
    width: min(20vw, 240px);
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1.5rem;
}

.brand-item img {
    max-width: 160px;
    max-height: 60px;
    object-fit: contain;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.brand-item img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ------------------------------ SHARED SMALL COMPONENTS ------------------------------ */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1.125rem;
    background: rgba(153, 102, 221, 0.1);
    border: 0.0625rem solid rgba(153, 102, 221, 0.2);
    border-radius: 6.25rem;
    margin-bottom: 1.2rem;
    color: #c084fc;
}

.badge__text {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.0625rem;
}

.badge--compact {
    margin-bottom: 1rem;
}

.badge__text--compact {
    font-size: 0.7rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.5rem;
    border-radius: 3.125rem;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
    cursor: pointer;
    border: 0.125rem solid transparent;
}

.btn--primary {
    background: var(--primary-color);
    color: var(--text-white);
    box-shadow: 0 0.625rem 1.25rem rgba(153, 102, 221, 0.3);
}

.btn--primary:hover {
    background: transparent;
    border-color: var(--primary-color);
    box-shadow: 0 0.9375rem 1.875rem rgba(142, 78, 155, 0.5);
    transform: scale(1.05);
}

.btn--secondary {
    background-color: var(--text-white);
    color: var(--bg-dark);
}

.btn--secondary:hover {
    transform: scale(1.06);
}

.btn__icon {
    height: 1.25rem;
    width: 1.25rem;
    object-fit: contain;
}

.btn__icon--rotate {
    transform: rotate(90deg);
}

.btn__icon--invert {
    filter: invert(1);
}

/* ------------------------------ PLANS (IDENTICAL BASE) ------------------------------ */

.plans {
    position: relative;
    padding: 6rem 5%;
    background-image: radial-gradient(circle at 50% 100%, rgba(153, 102, 221, 0.05) 0%, transparent 50%);
    overflow: hidden;
}

.plans__container {
    max-width: 81.25rem;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.plans__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4rem;
}

.plans__controls {
    margin-top: 1.6rem;
    width: min(100%, 58rem);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 0.9rem;
    align-items: stretch;
}

.plans__main-title {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    line-height: 1.1;
    font-weight: 800;
    margin-top: 1rem;
}

.currency-switcher {
    display: inline-flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(153, 102, 221, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(153, 102, 221, 0.08));
    backdrop-filter: blur(10px);
    text-align: center;
}

.payment-mode-switcher {
    padding: 0.9rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(153, 102, 221, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(153, 102, 221, 0.08));
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.65rem;
}

.payment-mode-switcher__label,
.payment-mode-switcher__hint {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.4;
}

.payment-mode-switcher__label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    font-weight: 600;
}

.payment-mode-switcher__hint {
    font-size: 0.82rem;
}

.payment-mode-switcher__buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.45rem;
}

.payment-mode-switcher__btn {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(10, 15, 27, 0.8);
    color: var(--text-muted);
    border-radius: 999px;
    padding: 0.55rem 0.72rem;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.payment-mode-switcher__btn:hover {
    transform: translateY(-0.08rem);
    border-color: rgba(153, 102, 221, 0.38);
    color: var(--text-white);
}

.payment-mode-switcher__btn:focus-visible {
    outline: 2px solid rgba(153, 102, 221, 0.55);
    outline-offset: 2px;
}

.payment-mode-switcher__btn.is-active {
    color: var(--text-white);
    border-color: rgba(153, 102, 221, 0.55);
    background: linear-gradient(135deg, rgba(153, 102, 221, 0.35), rgba(76, 123, 255, 0.3));
    box-shadow: 0 0.5rem 1rem rgba(4, 9, 18, 0.28);
}

.currency-switcher__rate {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.4;
}

.currency-switcher__control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    width: 100%;
}

.currency-switcher__code {
    min-width: 4.2rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04rem;
    text-transform: uppercase;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: opacity 0.25s ease, color 0.25s ease;
    opacity: 0.5;
}

.currency-switcher__icon {
    width: 1.45rem;
    height: 1.45rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    font-weight: 800;
    transition: transform 0.25s ease, filter 0.25s ease, opacity 0.25s ease;
}

.currency-switcher__icon--usd {
    background: rgba(54, 179, 126, 0.22);
    color: #8ef5bf;
}

.currency-switcher__icon--ves {
    background: rgba(0, 119, 255, 0.18);
    color: #9cc4ff;
}

.currency-switcher.is-usd .currency-switcher__code--usd,
.currency-switcher.is-ves .currency-switcher__code--ves {
    opacity: 1;
    color: var(--text-white);
}

.currency-switcher.is-usd .currency-switcher__code--ves,
.currency-switcher.is-ves .currency-switcher__code--usd {
    opacity: 0.45;
}

.currency-switcher.is-usd .currency-switcher__code--usd .currency-switcher__icon,
.currency-switcher.is-ves .currency-switcher__code--ves .currency-switcher__icon {
    transform: scale(1.06);
    filter: saturate(1.2);
}

.currency-switcher.is-usd .currency-switcher__code--ves .currency-switcher__icon,
.currency-switcher.is-ves .currency-switcher__code--usd .currency-switcher__icon {
    opacity: 0.55;
}

.currency-switcher__hint {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.35;
}

.currency-switch {
    position: relative;
    display: inline-flex;
    width: 3.6rem;
    height: 2rem;
    cursor: pointer;
}

.currency-switch__input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    cursor: pointer;
}

.currency-switch__slider {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    border: 1px solid rgba(153, 102, 221, 0.45);
    background: linear-gradient(135deg, rgba(153, 102, 221, 0.35), rgba(76, 123, 255, 0.3));
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    cursor: pointer;
}

.currency-switch__slider::before {
    content: '';
    position: absolute;
    top: 0.18rem;
    left: 0.2rem;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0.22rem 0.5rem rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease;
}

.currency-switch__input:checked + .currency-switch__slider::before {
    transform: translateX(1.6rem);
}

.currency-switch__input:focus-visible + .currency-switch__slider {
    box-shadow: 0 0 0 2px rgba(153, 102, 221, 0.55);
}

.currency-switch__input:disabled {
    cursor: not-allowed;
}

.currency-switch__input:disabled + .currency-switch__slider {
    opacity: 0.72;
}

.currency-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0.52rem 0.95rem;
    background: rgba(10, 15, 27, 0.8);
    color: var(--text-white);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.currency-toggle:hover:not(:disabled) {
    transform: translateY(-0.08rem);
    box-shadow: 0 0.6rem 1.1rem rgba(0, 0, 0, 0.2);
    border-color: rgba(153, 102, 221, 0.45);
}

.currency-toggle:disabled {
    cursor: not-allowed;
    opacity: 0.72;
}

.currency-toggle:focus-visible {
    outline: 2px solid rgba(153, 102, 221, 0.55);
    outline-offset: 2px;
}

.currency-toggle__logo {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.74rem;
    font-weight: 700;
}

.currency-toggle__logo--usd {
    background: rgba(54, 179, 126, 0.22);
    color: #8ef5bf;
}

.currency-toggle__logo--ves {
    background: rgba(0, 119, 255, 0.18);
    color: #9cc4ff;
}

.currency-toggle__label {
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.01rem;
}

.plans__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: center;
}

.plan-card {
    background: rgba(255, 255, 255, 0.02);
    border: 0.0625rem solid var(--glass-border);
    border-radius: 2rem;
    padding: 2.5rem;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-0.5rem);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(153, 102, 221, 0.3);
    box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.2), 0 0 1.5rem rgba(153, 102, 221, 0.05);
}

.plan-card--popular {
    background: rgba(153, 102, 221, 0.04);
    border-color: rgba(153, 102, 221, 0.4);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 0 3rem rgba(153, 102, 221, 0.1);
}

.plan-card--popular:hover {
    transform: scale(1.05) translateY(-0.5rem);
    border-color: rgba(0, 119, 255, 0.4);
}

.plan-card__badge-popular {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-text);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    padding: 0.4rem 1.2rem;
    border-radius: 2rem;
    box-shadow: 0 0.5rem 1rem rgba(153, 102, 221, 0.3);
}

.plan-card__header {
    margin-bottom: 2rem;
    border-bottom: 0.0625rem solid var(--glass-border);
    padding-bottom: 2rem;
}

.plan-card__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.plan-card__description {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    min-height: 44px;
}

.plan-card__price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.price-prefix {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-right: 0.2rem;
}

.price-currency {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--text-white);
}

.price-value {
    font-size: clamp(2.2rem, 4vw, 2.9rem);
    line-height: 1;
    font-weight: 800;
    color: var(--text-white);
}

.price-period {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-left: 0.2rem;
}

.plan-card__body {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.plan-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.plan-card__feature {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.plan-card__check {
    width: 1.2rem;
    height: 1.2rem;
    color: var(--color-success);
    flex-shrink: 0;
    margin-left: 1rem;
}

.plan-card__footer {
    width: 100%;
}

.plan-card__payment-note {
    margin-bottom: 1.1rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(153, 102, 221, 0.28);
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.045), rgba(153, 102, 221, 0.09));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0.55rem 1.2rem rgba(0, 0, 0, 0.14);
}

.plan-card__payment-note-title {
    margin: 0 0 0.32rem;
    font-size: 0.82rem;
    letter-spacing: 0.03rem;
    text-transform: uppercase;
    color: #dbc4ff;
    font-weight: 700;
}

.plan-card__payment-note-text {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.5;
    font-size: 0.86rem;
}

.plan-card__payment-note-price {
    margin: 0.65rem 0 0;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.24rem;
    color: var(--text-white);
}

.plan-card__payment-note-currency {
    font-size: 1rem;
    font-weight: 700;
}

.plan-card__payment-note-value {
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 800;
}

.plan-card__payment-note-period {
    color: var(--text-muted);
    font-size: 0.82rem;
    margin-left: 0.2rem;
}

.plan-card__btn {
    width: 100%;
    justify-content: center;
}

.plan-card--horizontal {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(153, 102, 221, 0.05) 100%);
}

.plan-card-horiz__info {
    flex: 1;
    max-width: 300px;
}

.plan-card-horiz__info .plan-card__header {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.plan-card-horiz__features-wrapper {
    flex: 2;
}

.plan-card__features--two-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 3rem;
}

.plan-card-horiz__cta {
    flex-shrink: 0;
    min-width: 200px;
}



/* ------------------------------ PAYMENTS SECTION ------------------------------ */

.payments {
    padding: 6rem 5%;
    background-color: var(--bg-darker);
}

.payments__container {
    max-width: 81.25rem;
    margin: 0 auto;
}

.payments__header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.payments__title {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.payments__methods {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
}

.payments__method {
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 1rem;
    padding: 1.3rem;
    text-align: center;
}

.payments__method svg,
.payments__method img {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.7rem;
    color: var(--primary-color);
}

.payments__method h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.payments__method p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ------------------------------ FAQ (IDENTICAL WITHOUT PLANETS) ------------------------------ */

.faq-section {
    position: relative;
    padding: 6rem 5%;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.faq__container {
    max-width: 50rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 3.5rem;
}

.faq__title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin: 1rem 0;
}

.faq__subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 35rem;
}

.faq__accordion {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq__item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 1.2rem;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.faq__item summary::-webkit-details-marker {
    display: none;
}

.faq__question {
    padding: 1.5rem 1.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    user-select: none;
}

.faq__icon {
    width: 1.4rem;
    height: 1.4rem;
    color: var(--primary-color);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0;
}

.faq__item[open] {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(153, 102, 221, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq__item[open] .faq__icon {
    transform: rotate(180deg);
    color: var(--color-success);
}

.faq__item[open] .faq__question {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq__answer {
    padding: 1.5rem 1.8rem;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    animation: fadeInAccordion 0.4s ease-out;
}

@keyframes fadeInAccordion {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ------------------------------ RESPONSIVE ------------------------------ */

@media (max-width: 964px) {
    .plans-hero {
        min-height: auto;
        padding-top: 8.5rem;
    }

    .plans-hero__container {
        grid-template-columns: 1fr;
    }

    .plans-hero__content {
        text-align: center;
    }

    .plans-hero__chips {
        justify-content: center;
    }

    .plans-hero__description,
    .plans-hero__title {
        margin-left: auto;
        margin-right: auto;
    }

    .plans__grid {
        grid-template-columns: 1fr;
    }

    .currency-switcher {
        width: 100%;
        max-width: 28rem;
    }

    .plans__controls {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 32rem;
    }

    .payment-mode-switcher {
        width: 100%;
    }

    .currency-switcher__control {
        justify-content: center;
    }

    .brand-item {
        width: 33.333vw;
        padding: 0 0.5rem;
    }

    .brand-item img {
        max-width: 100px;
    }

    .plan-card--popular {
        transform: none;
    }

    .plan-card--popular:hover {
        transform: translateY(-0.5rem);
    }

    .plan-card--horizontal {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 2rem;
        padding: 2.5rem 2rem;
        margin: 3rem auto 0 auto;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(153, 102, 221, 0.12) 100%);
        border: 1px solid rgba(153, 102, 221, 0.4);
        border-radius: 1.5rem;
        position: relative;
        overflow: hidden;
    }

    .plan-card--horizontal::before {
        content: '';
        position: absolute;
        top: -10%;
        right: -10%;
        width: 12rem;
        height: 12rem;
        background: radial-gradient(circle, rgba(153, 102, 221, 0.25) 0%, transparent 70%);
        filter: blur(2rem);
        z-index: 0;
        pointer-events: none;
    }

    .plan-card-horiz__info,
    .plan-card-horiz__features-wrapper,
    .plan-card-horiz__cta {
        position: relative;
        z-index: 1;
        width: 100%;
    }

    .plan-card-horiz__info {
        max-width: 100%;
    }

    .plan-card__features--two-cols {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .plan-card--horizontal .plan-card__feature {
        justify-content: flex-start;
        gap: 1rem;
    }

    .plan-card--horizontal .plan-card__check {
        margin-left: 0;
        order: -1;
    }

    .plan-card-horiz__cta {
        min-width: auto;
    }

    .payments__methods {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .faq-section {
        padding: 4rem 5%;
    }

    .faq__question {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .faq__answer {
        padding: 0 1.2rem 1.2rem 1.2rem;
    }
}

@media (max-width: 346px) {
    .plans-hero {
        padding: 7.6rem 4% 4rem;
    }

    .plans-hero__title {
        font-size: clamp(1.8rem, 8vw, 2.3rem);
    }

    .plans {
        padding: 4rem 4%;
    }

    .currency-switcher {
        padding: 0.8rem;
        border-radius: 0.9rem;
    }

    .payment-mode-switcher {
        padding: 0.8rem;
    }

    .payment-mode-switcher__buttons {
        grid-template-columns: 1fr;
    }

    .payment-mode-switcher__btn {
        width: 100%;
    }

    .currency-switcher__code {
        min-width: 3.5rem;
        font-size: 0.7rem;
    }

    .currency-switcher__icon {
        width: 1.3rem;
        height: 1.3rem;
        font-size: 0.62rem;
    }

    .currency-switch {
        width: 3.3rem;
        height: 1.8rem;
    }

    .currency-switch__slider::before {
        width: 1.22rem;
        height: 1.22rem;
    }

    .currency-switch__input:checked + .currency-switch__slider::before {
        transform: translateX(1.45rem);
    }

    .currency-switcher__hint {
        font-size: 0.74rem;
    }

    .brand-item {
        width: 50vw;
    }

    .brand-item img {
        max-width: 88px;
    }

    .plan-card {
        padding: 1.4rem;
        border-radius: 1.25rem;
    }

    .plan-card__title {
        font-size: 1.45rem;
    }

    .price-value {
        font-size: 2.4rem;
    }

    .plan-card__description {
        min-height: auto;
    }

    .plan-card__payment-note {
        margin-bottom: 0.95rem;
        padding: 0.85rem;
    }

    .plan-card__payment-note-title {
        font-size: 0.76rem;
    }

    .plan-card__payment-note-text {
        font-size: 0.8rem;
    }

    .plan-card__payment-note-value {
        font-size: 1.26rem;
    }

    .plan-card__payment-note-period {
        font-size: 0.74rem;
    }

    .plan-card__feature {
        align-items: flex-start;
        gap: 0.75rem;
    }

    .plan-card__check {
        margin-left: 0;
        margin-top: 0.15rem;
    }

    .plan-card--horizontal {
        padding: 1.5rem 1.2rem;
        margin-top: 2rem;
        gap: 1.25rem;
    }

    .payments {
        padding: 3.4rem 4%;
    }

    .payments__methods {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 3.2rem 4%;
    }

    .faq__title {
        font-size: clamp(1.8rem, 9vw, 2.2rem);
    }

    .faq__question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq__answer {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.95rem;
    }
}


/* ------------------------------ HERO VISUAL DECORATION ------------------------------ */
.plans-hero__visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plans-hero__orbit {
    position: absolute;
    width: 22rem;
    height: 22rem;
    border: 1px dashed rgba(255, 255, 255, 0.555);
    border-radius: 50%;
    animation: rotateOrbit 25s linear infinite;
    pointer-events: none;
}

.plans-hero__orbit::before {
    content: '';
    position: absolute;
    top: -0.4rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.8rem;
    height: 0.8rem;
    background: #9966dd;
    border-radius: 50%;
    box-shadow: 0 0 12px #9966dd, 0 0 24px rgba(153, 102, 221, 0.5);
}

.plans-hero__glass-card {
    position: relative;
    z-index: 2;
    width: 16rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.2);
    animation: floatingCard 6s ease-in-out infinite;
}

.plans-hero__card-header {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.plans-hero__card-dot {
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
}

.plans-hero__card-dot--red { background-color: #ff5f56; }
.plans-hero__card-dot--yellow { background-color: #ffbd2e; }
.plans-hero__card-dot--green { background-color: #27c93f; }

.plans-hero__card-line {
    height: 0.4rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    margin-bottom: 0.8rem;
    width: 100%;
}

.plans-hero__card-line--short { 
    width: 65%; 
}

.plans-hero__card-tag {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.35rem 0.8rem;
    background: rgba(153, 102, 221, 0.1);
    color: #c084fc;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(153, 102, 221, 0.2);
}

.plans-hero__floating-badge {
    position: absolute;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(153, 102, 221, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
    animation: floatingCard 5s ease-in-out infinite reverse;
}

/* Cada micro tarjeta ocupa una esquina de la "ventana" central del hero */
.plans-hero__floating-badge--design {
    top: calc(50% - 9rem);
    left: calc(50% - 13.5rem);
}

.plans-hero__floating-badge--seo {
    top: calc(50% - 9rem);
    right: calc(50% - 13.5rem);
}

.plans-hero__floating-badge--security {
    bottom: calc(50% - 9rem);
    left: calc(50% - 13.5rem);
}

.plans-hero__floating-badge--performance {
    bottom: calc(50% - 9rem);
    right: calc(50% - 13.5rem);
}

.plans-hero__floating-badge svg {
    width: 1.2rem;
    height: 1.2rem;
    color: #cbb8e2;
}

/* Animaciones */
@keyframes rotateOrbit {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes floatingCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* Ajuste Responsivo para móviles */
@media (max-width: 964px) {
    .plans-hero__visual {
        min-height: 260px;
        margin-top: 2rem;
        transform: scale(0.9);
    }

    .plans-hero__floating-badge {
        padding: 0.45rem 0.8rem;
        font-size: 0.75rem;
    }

    .plans-hero__floating-badge svg {
        width: 1rem;
        height: 1rem;
    }

    .plans-hero__floating-badge--design {
        top: calc(50% - 7.7rem);
        left: calc(50% - 11.6rem);
    }

    .plans-hero__floating-badge--seo {
        top: calc(50% - 7.7rem);
        right: calc(50% - 11.6rem);
    }

    .plans-hero__floating-badge--security {
        bottom: calc(50% - 7.7rem);
        left: calc(50% - 11.6rem);
    }

    .plans-hero__floating-badge--performance {
        bottom: calc(50% - 7.7rem);
        right: calc(50% - 11.6rem);
    }
}


/* ------------------------------ SECCIÓN VENTAJAS (DISEÑO HORIZONTAL) ------------------------------ */

.advantages {
    padding: 5rem 5%;
    background: 
        radial-gradient(circle at 10% 10%, rgba(153, 102, 221, 0.05), transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(0, 102, 255, 0.05), transparent 30%);
}

.advantages__container {
    max-width: 1200px;
    margin: 0 auto;
}

.advantages__header {
    text-align: center;
    margin-bottom: 4rem;
}

.advantages__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-top: 1rem;
    font-weight: 800;
}

/* Grilla de 3 columnas que pasa a 2 y luego a 1 según el tamaño de pantalla */
.advantages__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Tarjeta Estilo Horizontal Pequeña */
.advantage-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.25rem;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start; /* Alinea icono arriba con el título */
    gap: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.advantage-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(153, 102, 221, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Tarjeta destacada (Garantía) */
.advantage-item--accent {
    border-color: rgba(153, 102, 221, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(153, 102, 221, 0.05) 100%);
}

/* Contenedor del Icono (Más pequeño y compacto) */
.advantage-item__icon {
    flex-shrink: 0; /* Evita que el icono se encoja */
    width: 2.8rem;
    height: 2.8rem;
    background: rgba(153, 102, 221, 0.1);
    border-radius: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.advantage-item__icon svg {
    width: 1.4rem;
    height: 1.4rem;
    color: #c084fc; /* Color morado de tu marca */
}

.advantage-item:hover .advantage-item__icon {
    background: #c084fc;
}

.advantage-item:hover .advantage-item__icon svg {
    color: #ffffff;
}

/* Contenido de la tarjeta */
.advantage-item__content {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.advantage-item__title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.advantage-item__text {
    font-size: 0.85rem;
    color: #a1a1aa; /* Color gris suave (muted) */
    line-height: 1.5;
}

/* ------------------------------ RESPONSIVE ------------------------------ */

/* Tablets - 2 columnas */
@media (max-width: 1024px) {
    .advantages__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Móviles grandes - 1 columna */
@media (max-width: 768px) {
    .advantages {
        padding: 4rem 5%;
    }
    
    .advantages__grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .advantages__title {
        font-size: 1.8rem;
    }
}

/* Móviles pequeños - Ajuste de padding */
@media (max-width: 480px) {
    .advantage-item {
        padding: 1.2rem;
        gap: 1rem;
    }
    
    .advantage-item__icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .advantage-item__title {
        font-size: 1rem;
    }
}

/* ==========================================================================
   ANIMACIONES DE ENTRADA AL HACER SCROLL
   ========================================================================== */

/* Estado base para todos los elementos animados */
.scroll-anim {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1),
                transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

/* Definición de movimientos.
  Usamos :not(.is-animated) para que el transform solo se aplique ANTES de entrar en pantalla.
  Cuando se añade .is-animated, esta regla se apaga y el elemento recupera tus estilos originales (evitando conflictos con los :hover).
*/

.anim-fade-up:not(.is-animated) {
    transform: translateY(40px);
}

.anim-fade-in:not(.is-animated) {
    transform: translateY(0);
}

.anim-scale-up:not(.is-animated) {
    transform: scale(0.92) translateY(20px);
}

.anim-fade-right:not(.is-animated) {
    transform: translateX(-30px);
}

/* Excepción crucial: Mantenemos el scale nativo de tu plan popular cuando está oculto para que no dé un salto al aparecer */
.plan-card--popular.anim-fade-up:not(.is-animated) {
    transform: scale(1.05) translateY(40px);
}

/* Estado final cuando el elemento ya entró en pantalla */
.scroll-anim.is-animated {
    opacity: 1;
    /* No declaramos 'transform' aquí para que herede tus estilos de planes.css */
}

/* Ajustes para móviles: reducimos la distancia de movimiento para evitar scroll horizontal accidental */
@media (max-width: 768px) {
    .anim-fade-right:not(.is-animated) {
        transform: translateX(-15px);
    }
    .anim-fade-up:not(.is-animated),
    .plan-card--popular.anim-fade-up:not(.is-animated) {
        transform: translateY(20px);
    }
}