* {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.animated-custom-btn {
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.animated-custom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(199, 0, 57, 0.4);
}

.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition:
        grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.35s ease;
    opacity: 0;
}
.faq-content > * {
    min-height: 0;
    overflow: hidden;
}
.faq-content.active {
    grid-template-rows: 1fr;
    opacity: 1;
}
.faq-icon {
    transition: transform 0.3s ease;
}
.faq-icon.active {
    transform: rotate(180deg);
}

/* ── Outline step numbers ──────────────────────────────── */
.step-number {
    -webkit-text-stroke: 1.5px #c70039;
    color: transparent;
}

/* ── Hover badge scale ─────────────────────────────────── */
.badge-pill {
    transition: transform 0.2s;
}
.badge-pill:hover {
    transform: scale(1.05);
}

/* ── Nav border link hover ─────────────────────────────── */
.borderXwidth a::after {
    content: "";
    display: block;
    height: 2px;
    background: #c70039;
    transform: scaleX(0);
    transition: transform 0.25s;
}
.borderXwidth a:hover::after {
    transform: scaleX(1);
}

/* ── Live ticker pulse ─────────────────────────────────── */
@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}
.pulse-dot {
    animation: pulse-dot 1.5s ease-in-out infinite;
}

/* ── Lenis smooth scroll base ─────────────────────────── */
html.lenis {
    height: auto;
}
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

/* ── Promo modal ───────────────────────────────────────── */
#promo-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
#promo-modal.open {
    display: flex;
}
#promo-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.25s ease;
}
#promo-modal-box {
    position: relative;
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.promo-input {
    width: 100%;
    border: 1.5px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}
.promo-input:focus {
    border-color: #c81313eb;
}

/* ── Counter animation ─────────────────────────────────── */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.counter-animate {
    animation: countUp 0.8s ease forwards;
}
