.promo-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 12px;
    margin: 0 auto clamp(18px, 4vw, 28px);
    background: linear-gradient(120deg, rgba(6, 7, 16, 0.92), rgba(12, 9, 17, 0.95));
    border: 1px solid rgba(216, 184, 124, 0.32);
    box-shadow: 0 6px 20px -14px rgba(0, 0, 0, 0.6);
    max-width: 740px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.promo-text {
    color: rgba(247, 233, 198, 0.92);
    font-weight: 600;
    font-size: clamp(0.78rem, 1.6vw, 0.92rem);
    letter-spacing: 0.03em;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
    width: 100%;
}

.promo-text strong {
    color: var(--chi-gold, #d8b87c);
}

.countdown-time {
    font-weight: 700;
    color: #ffe8a4;
}

@media (max-width: 520px) {
    .promo-banner {
        flex-direction: column;
        gap: 4px;
    }
}

.info-shell {
    width: min(1100px, 92vw);
    margin: 0 auto 70px;
}

.info-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 0 auto clamp(20px, 4vw, 32px);
}

.info-tabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(216, 184, 124, 0.24);
    background: rgba(16, 17, 33, 0.75);
    color: rgba(244, 245, 255, 0.8);
    text-decoration: none;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.info-tabs a:hover {
    transform: translateY(-1px);
    background: rgba(216, 184, 124, 0.12);
    color: #fff;
    border-color: rgba(216, 184, 124, 0.38);
}

.info-tabs a.is-active {
    background: rgba(216, 184, 124, 0.22);
    color: #fff8ea;
    border-color: rgba(216, 184, 124, 0.42);
    cursor: default;
}

.section-heading {
    margin: clamp(44px, 7vw, 68px) 0 clamp(22px, 5vw, 34px);
    text-align: center;
}

.section-heading span {
    display: inline-block;
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(244, 245, 255, 0.55);
    margin-bottom: 10px;
}

.section-heading h2 {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-size: clamp(1.9rem, 3vw, 2.4rem);
    color: var(--chi-cream);
}

.process,
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.process {
    position: relative;
    align-items: stretch;
}

.process::before {
    content: "";
    position: absolute;
    top: 46px;
    left: 7%;
    right: 7%;
    height: 2px;
    background: linear-gradient(90deg, rgba(110, 130, 255, 0.28), rgba(255, 190, 255, 0.26));
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.process-step {
    position: relative;
    padding: 24px 26px 30px;
    border-radius: 36px;
    background:
        radial-gradient(circle at 20% 20%, rgba(98, 74, 255, 0.22), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(255, 149, 236, 0.2), transparent 60%),
        linear-gradient(180deg, rgba(9, 11, 22, 0.95), rgba(4, 6, 14, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 60px -40px rgba(0, 0, 0, 0.85);
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transform: translateY(18px);
    animation: processFade 0.7s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.12s; }
.process-step:nth-child(2) { animation-delay: 0.24s; }
.process-step:nth-child(3) { animation-delay: 0.36s; }
.process-step:nth-child(4) { animation-delay: 0.48s; }

.process-step::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    pointer-events: none;
    z-index: 0;
}

.process-step::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(104, 118, 255, 0.32), transparent 60%);
    top: -70px;
    right: -40px;
    filter: blur(5px);
    z-index: 0;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow:
        0 50px 80px -55px rgba(10, 10, 30, 0.95),
        0 0 18px rgba(140, 140, 255, 0.25);
}

.process-step__header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.process-step__heading {
    flex: 1;
}

.process-step__icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 32px -18px rgba(0, 0, 0, 0.8);
    color: #fff;
    position: relative;
    backdrop-filter: blur(8px);
}

.process-step__icon svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    z-index: 1;
}

.process-step__eyebrow {
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.7rem;
    color: rgba(244, 245, 255, 0.6);
    margin: 0 0 6px;
}

.process-step h3 {
    margin: 0;
    color: var(--chi-cream);
    font-size: 1.25rem;
}

.process-step h3 span {
    color: #76ffe5;
}

.process-step__divider {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 1px;
    margin: 12px 0 16px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
}

.process-step__text {
    position: relative;
    z-index: 1;
    margin: 0;
    color: rgba(244, 245, 255, 0.84);
    line-height: 1.65;
}

.process-step__accent {
    color: #7be0ff;
    font-weight: 600;
}

.benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-top: 20px;
}

.benefit-card {
    position: relative;
    padding: 28px 26px 32px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 20% 20%, rgba(150, 110, 255, 0.18), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(255, 170, 240, 0.18), transparent 60%),
        linear-gradient(180deg, rgba(13, 15, 28, 0.92), rgba(6, 7, 16, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 22px 60px -35px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    color: rgba(244, 245, 255, 0.88);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    opacity: 0;
    transform: translateY(16px);
    animation: fadeBenefit 0.7s ease forwards;
}

.benefit-card:nth-child(1) { animation-delay: 0.12s; }
.benefit-card:nth-child(2) { animation-delay: 0.22s; }
.benefit-card:nth-child(3) { animation-delay: 0.32s; }
.benefit-card:nth-child(4) { animation-delay: 0.42s; }
.benefit-card:nth-child(5) { animation-delay: 0.52s; }
.benefit-card:nth-child(6) { animation-delay: 0.62s; }

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 35px 70px -40px rgba(20, 20, 40, 0.95), 0 0 14px rgba(140, 160, 255, 0.25);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(180deg, #ff9cf5, #9ea3ff);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 1.4rem;
    box-shadow: 0 12px 25px -10px rgba(150, 150, 255, 0.8);
    margin-bottom: 18px;
}

.benefit-card strong {
    display: block;
    font-size: 1.18rem;
    color: var(--chi-cream);
    margin-bottom: 10px;
}

.benefit-card p {
    line-height: 1.6;
    font-size: 0.98rem;
    color: rgba(240, 240, 255, 0.78);
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    position: relative;
    max-width: 1080px;
    margin: 0 auto 64px;
    padding: 0 12px;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
    padding: 6px 0 40px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s ease;
    will-change: transform;
}

.testimonial-slide {
    flex: 0 0 100%;
}

.testimonial {
    position: relative;
    padding: 24px 24px 18px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(17, 19, 36, 0.78), rgba(9, 10, 22, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02), 0 20px 45px -32px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    height: 100%;
    width: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
}

.testimonial__stars {
    color: #f4d3a0;
    letter-spacing: 2px;
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 10px;
}

.testimonial__meta {
    display: flex;
    align-items: center;
    margin-top: 18px;
    gap: 12px;
}

.testimonial__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 14px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    flex-shrink: 0;
}

.testimonial__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial__name {
    font-weight: 600;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 1px;
}

.testimonial__subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.02em;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: rgba(216, 184, 124, 0.7);
    cursor: pointer;
    z-index: 2;
    padding: 6px 10px;
    border-radius: 10px;
    border: none;
    background: rgba(11, 13, 24, 0.5);
    backdrop-filter: blur(8px);
    transition: 0.25s ease;
}

.testimonial-nav:hover {
    color: rgba(216, 184, 124, 1);
    background: rgba(216, 184, 124, 0.16);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

.elite-faq {
    display: grid;
    gap: 16px;
}

.elite-faq details {
    background:
        radial-gradient(circle at 90% 0%, rgba(130, 100, 255, 0.18), transparent 60%),
        linear-gradient(180deg, rgba(18, 20, 36, 0.92), rgba(9, 10, 22, 0.96));
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 20px 24px;
    color: rgba(245, 245, 255, 0.92);
    position: relative;
    overflow: hidden;
    box-shadow: 0 22px 50px -35px rgba(0, 0, 0, 0.9), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.elite-faq details:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px -45px rgba(0, 0, 0, 0.95), 0 0 14px rgba(140, 160, 255, 0.25);
}

.elite-faq summary {
    cursor: pointer;
    font-weight: 600;
    font-size: 1.08rem;
    list-style: none;
    position: relative;
    padding-right: 30px;
    color: var(--chi-cream);
}

.elite-faq summary::-webkit-details-marker {
    display: none;
}

.elite-faq summary::after {
    content: "⌄";
    position: absolute;
    right: 4px;
    top: 0;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
}

.elite-faq details[open] summary::after {
    transform: rotate(-180deg);
    color: #76ffe5;
}

.elite-faq p {
    margin: 14px 0 0;
    color: rgba(235, 235, 250, 0.8);
    line-height: 1.65;
}

.elite-faq details[open] p {
    animation: fadeDown 0.35s ease;
}

.cta-final {
    margin: clamp(60px, 9vw, 90px) auto 0;
    text-align: center;
    max-width: 700px;
    background:
        radial-gradient(circle at 20% 0%, rgba(255, 240, 200, 0.22), transparent 55%),
        radial-gradient(circle at 80% 100%, rgba(150, 130, 255, 0.18), transparent 60%),
        linear-gradient(135deg, rgba(20, 18, 32, 0.9), rgba(9, 9, 18, 0.95));
    border-radius: 36px;
    padding: clamp(40px, 6vw, 60px);
    border: 1px solid rgba(215, 190, 140, 0.22);
    box-shadow: 0 30px 85px -40px rgba(0, 0, 0, 0.75), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
    position: relative;
    overflow: hidden;
}

.cta-final::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    top: -120px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 210, 160, 0.28), transparent 70%);
    filter: blur(12px);
    pointer-events: none;
}

.cta-final::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("/assets/images/sparkles-min.png");
    opacity: 0.12;
    mix-blend-mode: screen;
    animation: floatSparkles 20s linear infinite;
    pointer-events: none;
}

.cta-final h3 {
    margin: 0 0 14px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--chi-cream);
    font-family: "Playfair Display", serif;
}

.btn-primary.btn-cta-final {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 20px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #ff5c8a, #ff82a8);
    box-shadow: 0 22px 55px -28px rgba(255, 92, 138, 0.55), 0 0 32px rgba(255, 92, 138, 0.25);
    transition: 0.25s ease;
    position: relative;
    z-index: 1;
    text-decoration: none;
    border: 0;
}

.btn-primary.btn-cta-final:hover {
    transform: translateY(-3px);
    box-shadow: 0 28px 70px -32px rgba(255, 92, 138, 0.63), 0 0 38px rgba(255, 92, 138, 0.32);
    background: linear-gradient(135deg, #ff739f, #ff94ba);
}

@keyframes processFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeBenefit {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatSparkles {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-40px);
    }
}

@media (max-width: 900px) {
    .info-shell {
        width: min(1120px, 94vw);
    }
}

@media (max-width: 768px) {
    .process::before {
        display: none;
    }

    .testimonials-wrapper {
        padding: 0 0 10px;
    }

    .testimonial {
        min-height: 220px;
        margin: 0 auto;
    }

    .testimonial-nav {
        font-size: 1.4rem;
        width: 36px;
        height: 36px;
        display: grid;
        place-items: center;
    }

    .testimonial-prev {
        left: -20px;
    }

    .testimonial-next {
        right: -20px;
    }
}

@media (min-width: 769px) {
    .testimonial-prev {
        left: -30px;
    }

    .testimonial-next {
        right: -30px;
    }
}

@media (max-width: 640px) {
    .info-tabs {
        gap: 8px;
        justify-content: flex-start;
    }

    .info-tabs a {
        font-size: 0.78rem;
        letter-spacing: 0.06em;
        padding: 9px 13px;
    }
}
