/* ============================================
   VIRALIO — Global Styles
   ============================================ */

body {
    background-color: #FAFAFA;
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.text-gradient {
    background: linear-gradient(135deg, #4f46e5 0%, #ec4899 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.bg-gradient-viralio { background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%); }
.bg-gradient-dark { background: linear-gradient(to bottom, #09090b 0%, #18181b 100%); }

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* IN-APP BROWSER MODAL */
        #inapp-modal { display:none; position:fixed; inset:0; background:rgba(15,23,42,.75); backdrop-filter:blur(12px); z-index:999999; align-items:center; justify-content:center; opacity:0; transition:.3s cubic-bezier(0.16, 1, 0.3, 1); }
        #inapp-modal.show { display:flex; opacity:1; }
        #inapp-modal .modal-content { max-width:340px; padding: 32px 24px; }

/* ============================================
   NAV — LIQUID PILL INDICATOR
   ============================================ */

.nav-link-pill {
    position: relative;
    padding: 6px 12px;
    border-radius: 999px;
    transition: color 0.25s ease;
}
.nav-link-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: rgba(99,102,241,0.08);
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-link-pill:hover::before {
    opacity: 1;
    transform: scale(1);
}
.nav-link-pill:hover { color: #4f46e5 !important; }
.nav-link-pill.active-nav::before {
    opacity: 1;
    transform: scale(1);
    background: rgba(99,102,241,0.1);
}
.nav-link-pill.active-nav { color: #4f46e5 !important; }


/* ============================================
   LOGO — BOLT PULSE + WORDMARK SHIMMER
   ============================================ */

@keyframes boltPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0); }
    50%       { box-shadow: 0 0 0 6px rgba(99,102,241,0.15); }
}
.logo-icon { animation: boltPulse 3s ease-in-out infinite; }

@keyframes wordmarkShimmer {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}
.logo-wordmark {
    background: linear-gradient(90deg, #0f172a 30%, #6366f1 45%, #ec4899 55%, #0f172a 70%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wordmarkShimmer 5s linear infinite;
}


/* ============================================
   CTA BUTTON — SHINE SWEEP
   ============================================ */

@keyframes shineSweep {
    0%   { transform: translateX(-120%) skewX(-15deg); opacity: 0; }
    15%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { transform: translateX(220%) skewX(-15deg); opacity: 0; }
}
.btn-shine::after {
    content: '';
    position: absolute;
    top: -10%;
    left: 0;
    width: 35%;
    height: 120%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    animation: shineSweep 3s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}


/* ============================================
   NAV — STICKY SHRINK ON SCROLL
   ============================================ */

.nav-wrapper { transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.nav-wrapper.scrolled { padding-top: 0.5rem !important; }
.nav-wrapper.scrolled nav {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.92) !important;
}


/* ============================================
   MOBILE DROPDOWN — SPRING POP
   ============================================ */

#mobile-dropdown {
    transform-origin: top left;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#mobile-dropdown.menu-visible {
    opacity: 1 !important;
    transform: scale(1) !important;
    pointer-events: auto !important;
}
#mobile-dropdown.opacity-0   { opacity: 0; }
#mobile-dropdown.opacity-100 { opacity: 1; }


/* ============================================
   STICKY CTA — FLOATING PILL
   ============================================ */

#sticky-cta {
    position: fixed;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    z-index: 9999;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    opacity: 0;
    pointer-events: none;
    width: max-content;
    max-width: calc(100vw - 32px);
}
#sticky-cta.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cta-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 9999px;
    padding: 6px 8px 6px 16px;
    box-shadow:
        0 0 0 1px rgba(99,102,241,0.15),
        0 20px 60px -10px rgba(0,0,0,0.5),
        0 0 40px rgba(99,102,241,0.12),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

@keyframes ctaOrb {
    0%, 100% { transform: scale(1);    opacity: 0.7; }
    50%       { transform: scale(1.15); opacity: 1;   }
}
.cta-pill-orb {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80, 0 0 16px rgba(74,222,128,0.4);
    animation: ctaOrb 2s ease-in-out infinite;
    flex-shrink: 0;
}

.cta-pill-text {
    color: rgba(255,255,255,0.85);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    white-space: nowrap;
}
.cta-pill-text strong {
    color: #fff;
    font-weight: 800;
}

.cta-pill-badge {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    background: rgba(245,158,11,0.12);
    border: 1px solid rgba(245,158,11,0.25);
    padding: 5px 10px;
    border-radius: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    flex-shrink: 0;
}
.cta-badge-row {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.58rem;
    font-weight: 800;
    color: #fbbf24;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.5;
}
.cta-badge-row--voice { color: rgba(167, 139, 250, 0.9); }
.cta-badge-row--voice i { color: rgba(167, 139, 250, 0.9); }
.cta-badge-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.08);
    margin: 2px 0;
}

@keyframes ctaBtnShine {
    0%   { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(300%)  skewX(-15deg); }
}
.cta-pill-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #4f46e5 0%, #ec4899 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 10px 18px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 0 20px rgba(99,102,241,0.4), 0 4px 15px rgba(236,72,153,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}
.cta-pill-btn::after {
    content: '';
    position: absolute;
    top: -20%;
    left: 0;
    width: 30%;
    height: 140%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: ctaBtnShine 3s ease-in-out infinite;
}
.cta-pill-btn:hover {
    transform: scale(1.04);
    box-shadow: 0 0 30px rgba(99,102,241,0.6), 0 4px 20px rgba(236,72,153,0.4);
}

.cta-pill-close {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4);
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.cta-pill-close:hover {
    background: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
}

@media (max-width: 640px) {
    .cta-pill           { padding: 5px 6px 5px 12px; gap: 8px; }
    .cta-pill-badge     { display: none !important; }
    .cta-pill-text      { font-size: 0.72rem; }
    .cta-pill-btn       { padding: 9px 14px; font-size: 0.72rem; }
}


/* ============================================
   HERO — ANIMATED MESH BACKGROUND
   ============================================ */

.hero-mesh {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: meshFloat 8s ease-in-out infinite;
}
.mesh-orb-1 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99,102,241,0.18) 0%, transparent 70%);
    top: -10%; left: 10%;
    animation-delay: 0s;
}
.mesh-orb-2 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(236,72,153,0.15) 0%, transparent 70%);
    top: 0%; right: 5%;
    animation-delay: -3s;
}
.mesh-orb-3 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245,158,11,0.1) 0%, transparent 70%);
    bottom: 10%; left: 40%;
    animation-delay: -5s;
}
@keyframes meshFloat {
    0%, 100% { transform: translate(0, 0)       scale(1); }
    33%       { transform: translate(30px, -20px) scale(1.05); }
    66%       { transform: translate(-20px, 15px) scale(0.97); }
}


/* ============================================
   MOCKUP — 3D TILT ON HOVER
   ============================================ */

.mockup-3d-wrapper {
    perspective: 1200px;
    cursor: pointer;
}
.mockup-3d {
    transition: transform 0.15s ease-out;
    transform-style: preserve-3d;
    will-change: transform;
}


/* ============================================
   NOISE TEXTURE (dark sections)
   ============================================ */

.noise-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 1;
}


/* ============================================
   MARQUEE
   ============================================ */

.rfm-marquee-container {
    overflow-x: hidden;
    display: flex;
    flex-direction: row;
    position: relative;
    width: 100%;
    padding: 2rem 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.rfm-marquee-container:hover .rfm-marquee { animation-play-state: paused; }
.rfm-marquee {
    flex: 0 0 max-content;
    min-width: max-content;
    z-index: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    animation: scroll 30s linear infinite;
}
@keyframes scroll {
    0%   { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}
.rfm-initial-child-container {
    flex: 0 0 auto;
    display: flex;
    min-width: auto;
    flex-direction: row;
    align-items: center;
}


/* ============================================
   MISC ANIMATIONS
   ============================================ */

@keyframes slideGlow {
    0%   { transform: translateX(-100%); }
    60%  { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}
@keyframes bounceZoom {
    0%   { transform: scale(0.8); opacity: 0; }
    60%  { transform: scale(1.05); opacity: 1; }
    80%  { transform: scale(0.98); }
    100% { transform: scale(1); }
}


/* ============================================
   WORKFLOW / FEATURES SECTION
   ============================================ */

.progress-fill {
    height: 100%;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.1s linear;
}
.animate-progress {
    animation: fillProgress var(--animation-duration) linear forwards;
}
@keyframes fillProgress {
    0%   { transform: scaleY(0); }
    100% { transform: scaleY(1); }
}
.workflow-item {
    opacity: 0.4;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid transparent;
}
.workflow-item.active {
    opacity: 1;
    background-color: #ffffff;
    border-color: #e2e8f0;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.05);
    transform: scale(1.03);
}
.video-fade { transition: opacity 0.5s ease; }


/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar       { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }


/* ============================================
   MODALS
   ============================================ */

#login-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(9, 9, 11, 0.75);
    backdrop-filter: blur(12px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
#login-modal.show { display: flex; opacity: 1; }
.modal-content {
    background: #ffffff;
    border-radius: 2rem;
    padding: 40px 24px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: translateY(30px) scale(0.95);
    transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
}
#login-modal.show .modal-content { transform: translateY(0) scale(1); }
#waitlist-modal.show { display: flex !important; opacity: 1 !important; }
#waitlist-modal.show > div { transform: scale(1) !important; }


/* ============================================
   FAQ
   ============================================ */

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-content.open { max-height: 500px; }
.faq-icon { transition: transform 0.4s ease; }
.faq-btn.open .faq-icon { transform: rotate(180deg); color: #4f46e5; }


/* ============================================
   AUDIO EQUALIZER BARS
   ============================================ */

@keyframes eqBite {
    0%, 100% { transform: scaleY(0.25); }
    50%       { transform: scaleY(1); }
}
.eq-bar {
    height: 100%;
    animation: eqBite 1s ease-in-out infinite;
    transform-origin: bottom;
}


/* ============================================
   PRICING — BADGE PULSE
   ============================================ */

@keyframes badgePop {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50%       { transform: translateX(-50%) scale(1.06); }
}
.badge-pop { animation: badgePop 2.5s ease-in-out infinite; }


/* ============================================
   FLOATING WIDGETS (Discord / Telegram)
   ============================================ */

@keyframes premiumShine {
    0%   { transform: translateX(-150%) skewX(-20deg); opacity: 0; }
    20%  { opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translateX(250%) skewX(-20deg); opacity: 0; }
}
.animate-shine-fast { animation: premiumShine 2.5s infinite cubic-bezier(0.4, 0, 0.2, 1); }
.glass-premium-fin {
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.15),
                inset 0 0 0 1px rgba(255,255,255,0.8);
}

.floating-widget { transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }
.floating-widget:hover .widget-label { max-width: 120px; opacity: 1; }
.widget-label {
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
/* ═══ CANCEL MODAL v2 — DARK GLASS PREMIUM ═══ */
.cancel-overlay {
    position: fixed; inset: 0; z-index: 100000;
    background: rgba(2,6,23,0.85);
    backdrop-filter: blur(20px) saturate(1.2);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.16,1,0.3,1);
    padding: 16px;
}
.cancel-overlay.cancel-visible {
    opacity: 1; pointer-events: auto;
}
.cancel-glass {
    width: 100%; max-width: 440px;
    background: linear-gradient(165deg, rgba(15,23,42,0.97) 0%, rgba(30,27,75,0.95) 50%, rgba(15,23,42,0.97) 100%);
    border: 1px solid rgba(99,102,241,0.15);
    border-radius: 28px;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.03), 0 25px 80px rgba(0,0,0,0.6), 0 0 120px rgba(99,102,241,0.08);
    position: relative;
    overflow: hidden;
    max-height: 90vh;
    overflow-y: auto;
}
.cancel-glass::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.4), rgba(168,85,247,0.4), transparent);
}
.cancel-glass::-webkit-scrollbar { width: 0; }

.cancel-close-btn {
    position: absolute; top: 16px; right: 16px; z-index: 20;
    width: 32px; height: 32px; border-radius: 10px;
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.4); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
    font-size: 0.8rem;
}
.cancel-close-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Steps */
.cancel-step {
    padding: 36px 32px 32px;
    display: none;
    animation: cancelFadeIn 0.35s cubic-bezier(0.16,1,0.3,1) forwards;
}
.cancel-step--active { display: block; }
.cancel-step--exit {
    display: block;
    animation: cancelFadeOut 0.25s cubic-bezier(0.4,0,1,1) forwards;
}
@keyframes cancelFadeIn {
    from { opacity: 0; transform: translateY(16px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes cancelFadeOut {
    from { opacity: 1; transform: translateY(0) scale(1); }
    to   { opacity: 0; transform: translateY(-12px) scale(0.97); }
}

/* Hero icons */
.cancel-hero-icon {
    width: 64px; height: 64px; border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; color: #fff;
    position: relative;
}
.cancel-hero-icon::after {
    content: ''; position: absolute; inset: -4px;
    border-radius: 24px; opacity: 0.3; filter: blur(16px);
    z-index: -1;
}
.cancel-hero-icon--purple {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    box-shadow: 0 8px 30px rgba(99,102,241,0.35);
}
.cancel-hero-icon--purple::after { background: linear-gradient(135deg, #6366f1, #a855f7); }
.cancel-hero-icon--gold {
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    box-shadow: 0 8px 30px rgba(245,158,11,0.35);
}
.cancel-hero-icon--gold::after { background: linear-gradient(135deg, #f59e0b, #ef4444); }
.cancel-hero-icon--red {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    box-shadow: 0 8px 30px rgba(239,68,68,0.35);
}
.cancel-hero-icon--red::after { background: linear-gradient(135deg, #ef4444, #dc2626); }
.cancel-hero-icon--slate {
    background: linear-gradient(135deg, #475569, #334155);
    box-shadow: 0 8px 30px rgba(71,85,105,0.35);
}
.cancel-hero-icon--green {
    background: linear-gradient(135deg, #22c55e, #10b981);
    box-shadow: 0 8px 30px rgba(34,197,94,0.35);
}
.cancel-hero-icon--green::after { background: linear-gradient(135deg, #22c55e, #10b981); }

.cancel-title {
    text-align: center; font-size: 1.25rem; font-weight: 900;
    color: #f1f5f9; margin-bottom: 6px; letter-spacing: -0.02em;
}
.cancel-sub {
    text-align: center; font-size: 0.8rem; font-weight: 500;
    color: rgba(148,163,184,0.8); margin-bottom: 24px;
}

/* Reason buttons */
.cancel-reasons { display: flex; flex-direction: column; gap: 8px; }
.cancel-reason {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 18px; border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    color: #e2e8f0; font-size: 0.875rem; font-weight: 600;
    cursor: pointer; transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
    text-align: left;
}
.cancel-reason:hover {
    background: rgba(99,102,241,0.1);
    border-color: rgba(99,102,241,0.3);
    transform: translateX(6px);
    box-shadow: 0 4px 20px rgba(99,102,241,0.1);
}
.cancel-reason-emoji { font-size: 1.3rem; width: 28px; text-align: center; }
.cancel-reason-label { flex: 1; }

/* Offer card — the star of the show */
.cancel-offer {
    position: relative; border-radius: 20px; padding: 28px 24px;
    background: linear-gradient(145deg, rgba(99,102,241,0.12) 0%, rgba(168,85,247,0.08) 50%, rgba(99,102,241,0.05) 100%);
    border: 1.5px solid rgba(99,102,241,0.25);
    margin-bottom: 16px;
    overflow: hidden;
}
.cancel-offer::before {
    content: ''; position: absolute; top: -60px; right: -60px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(99,102,241,0.15), transparent 70%);
    pointer-events: none;
}
.cancel-offer::after {
    content: ''; position: absolute; bottom: -40px; left: -40px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(168,85,247,0.1), transparent 70%);
    pointer-events: none;
}
.cancel-offer-tag {
    display: inline-block; font-size: 0.55rem; font-weight: 900;
    letter-spacing: 0.15em; padding: 4px 10px; border-radius: 8px;
    color: #fff; margin-bottom: 14px;
}
.cancel-offer-emoji {
    font-size: 2.2rem; margin-bottom: 12px;
}
.cancel-offer-title {
    font-size: 1.15rem; font-weight: 800; color: #f1f5f9;
    margin-bottom: 8px; letter-spacing: -0.01em;
    position: relative; z-index: 1;
}
.cancel-offer-desc {
    font-size: 0.8rem; color: rgba(148,163,184,0.9); line-height: 1.6;
    margin-bottom: 20px; position: relative; z-index: 1;
}
.cancel-offer-desc strong { color: #c4b5fd; font-weight: 700; }
.cancel-offer-cta {
    width: 100%; padding: 14px; border-radius: 14px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    background-size: 200% 200%;
    animation: cancelShimmer 3s ease infinite;
    color: #fff; font-size: 0.875rem; font-weight: 800;
    border: none; cursor: pointer;
    box-shadow: 0 6px 25px rgba(99,102,241,0.35);
    transition: all 0.25s;
    position: relative; z-index: 1;
}
.cancel-offer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(99,102,241,0.45);
}
.cancel-offer-cta:disabled {
    opacity: 0.7; cursor: wait; transform: none;
}
@keyframes cancelShimmer {
    0%,100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Skip / secondary button */
.cancel-skip-btn {
    width: 100%; padding: 12px; border-radius: 12px;
    background: transparent; border: 1px solid rgba(255,255,255,0.06);
    color: rgba(148,163,184,0.6); font-size: 0.75rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s;
}
.cancel-skip-btn:hover {
    background: rgba(255,255,255,0.03);
    color: rgba(148,163,184,0.9);
}

/* What you lose grid */
.cancel-lose-grid {
    display: flex; flex-direction: column; gap: 10px;
    padding: 20px; border-radius: 18px;
    background: rgba(239,68,68,0.06);
    border: 1px solid rgba(239,68,68,0.12);
    margin-bottom: 24px;
}
.cancel-lose-item {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.82rem; font-weight: 600; color: rgba(248,113,113,0.9);
}
.cancel-lose-icon {
    width: 32px; height: 32px; border-radius: 10px;
    background: rgba(239,68,68,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(248,113,113,0.7); font-size: 0.7rem;
    flex-shrink: 0;
}

/* Action buttons */
.cancel-actions { display: flex; flex-direction: column; gap: 10px; }
.cancel-btn-primary {
    width: 100%; padding: 14px; border-radius: 14px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff; font-size: 0.85rem; font-weight: 800;
    border: none; cursor: pointer;
    box-shadow: 0 6px 25px rgba(99,102,241,0.3);
    transition: all 0.25s;
    display: flex; align-items: center; justify-content: center; gap: 8px;
}
.cancel-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(99,102,241,0.4);
}
.cancel-btn-danger {
    width: 100%; padding: 12px; border-radius: 12px;
    background: rgba(239,68,68,0.06);
    border: 1px solid rgba(239,68,68,0.15);
    color: rgba(248,113,113,0.7); font-size: 0.75rem; font-weight: 600;
    cursor: pointer; transition: all 0.2s;
}
.cancel-btn-danger:hover {
    background: rgba(239,68,68,0.12);
    color: rgba(248,113,113,1);
}
.cancel-btn-danger:disabled {
    opacity: 0.6; cursor: wait;
}

@media (max-width: 480px) {
    .cancel-step { padding: 28px 20px 24px; }
    .cancel-offer { padding: 22px 18px; }
}