/* =========================================
   Rogers Journey - World-Class Premium UI
   ========================================= */

:root {
    /* Rogers Brand Colors */
    --rogers-red: #DA291C;
    --rogers-red-dark: #B71C1C;
    --rogers-red-light: #FF5252;
    --rogers-crimson: #E31837;

    /* Neutral Colors */
    --dark: #0a0a1a;
    --dark-secondary: #12122a;
    --dark-tertiary: #1a1a3a;
    --gray-900: #212529;
    --gray-800: #343a40;
    --gray-600: #6c757d;
    --gray-400: #ced4da;
    --gray-200: #e9ecef;
    --gray-100: #f8f9fa;
    --white: #ffffff;

    /* Accent Colors */
    --accent-gold: #FFD700;
    --accent-blue: #0D6EFD;
    --accent-cyan: #00D4FF;
    --accent-green: #00FF88;
    --accent-purple: #8B5CF6;
    --accent-pink: #EC4899;
    --accent-teal: #14B8A6;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--rogers-red) 0%, var(--rogers-crimson) 50%, var(--rogers-red-dark) 100%);
    --gradient-hero: linear-gradient(135deg, #DA291C 0%, #FF416C 50%, #FF4B2B 100%);
    --gradient-dark: linear-gradient(180deg, var(--dark) 0%, var(--dark-secondary) 50%, var(--dark-tertiary) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(218,41,28,0.3) 0%, rgba(255,65,108,0.1) 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(218,41,28,0.15) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, rgba(139,92,246,0.1) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, rgba(0,212,255,0.1) 0px, transparent 50%),
                     radial-gradient(at 80% 50%, rgba(236,72,153,0.1) 0px, transparent 50%),
                     radial-gradient(at 0% 100%, rgba(20,184,166,0.1) 0px, transparent 50%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.25);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.3);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 60px rgba(218, 41, 28, 0.4);
    --shadow-glow-intense: 0 0 100px rgba(218, 41, 28, 0.6);
    --shadow-neon: 0 0 20px rgba(0, 212, 255, 0.5), 0 0 40px rgba(0, 212, 255, 0.3);

    /* Transitions */
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* =========================================
   Base & Reset
   ========================================= */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--dark);
    color: var(--white);
    min-height: 100vh;
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    pointer-events: none;
    z-index: 0;
}

/* Particle Canvas Container */
#particles-js {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* =========================================
   Navigation - Premium Glass Effect
   ========================================= */

.navbar {
    background: rgba(10, 10, 26, 0.8);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
    z-index: 1000;
    transition: var(--transition-normal);
}

/* Full width containers globally */
.container {
    max-width: 100%;
    width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

.navbar.scrolled {
    background: rgba(10, 10, 26, 0.95);
    box-shadow: var(--shadow-lg);
}

.rogers-logo {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    position: relative;
    text-shadow: none;
}

.rogers-logo::after {
    content: 'ROGERS';
    position: absolute;
    left: 0;
    top: 0;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
}

.user-info {
    color: var(--gray-400);
}

.user-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow);
}

.user-name {
    font-weight: 600;
    background: linear-gradient(90deg, var(--white), var(--gray-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar Custom Styles */
.navbar-custom {
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar-nav {
    gap: 0.25rem;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1rem !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 6px;
    transition: all var(--transition-fast);
    position: relative;
    white-space: nowrap;
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
}

.navbar-nav .nav-link i {
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav .nav-link.active {
    color: var(--rogers-red) !important;
}

.navbar-nav .dropdown-toggle::after {
    border: none;
    content: '▼';
    font-size: 0.6rem;
    margin-left: 0.25rem;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.navbar-nav .nav-link:hover .dropdown-toggle::after {
    opacity: 1;
}

/* Dropdown Menu */
.dropdown-menu {
    background: rgba(18, 18, 42, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    backdrop-filter: blur(30px);
    border-radius: 12px !important;
    padding: 0.75rem 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin-top: 0.75rem !important;
    min-width: 220px;
    animation: slideDown 0.2s ease-out;
}

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

.dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.75rem 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-fast);
    font-size: 0.95rem;
}

.dropdown-item i {
    width: 18px;
    text-align: center;
    opacity: 0.7;
}

.dropdown-item:hover {
    background: rgba(218, 41, 28, 0.25) !important;
    color: var(--white) !important;
    padding-left: 2rem;
}

.dropdown-item:hover i {
    color: var(--rogers-red);
    opacity: 1;
}

.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 0.5rem 0;
}

/* Signup Button */
.btn-signup {
    background: var(--gradient-hero) !important;
    color: white !important;
    font-weight: 600;
    padding: 0.65rem 1.75rem !important;
    border-radius: 8px !important;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(218, 41, 28, 0.3);
    font-size: 0.95rem;
    border: none;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(218, 41, 28, 0.5);
    color: white !important;
}

/* User Dropdown Styles */
.user-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-avatar-small {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(218, 41, 28, 0.3);
    transition: all var(--transition-fast);
}

.user-dropdown:hover .user-avatar-small {
    box-shadow: 0 4px 15px rgba(218, 41, 28, 0.4);
    transform: scale(1.05);
}

/* Navbar Toggler */
.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(218, 41, 28, 0.25);
    border-color: var(--rogers-red);
}

.navbar-brand {
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    transition: all var(--transition-fast);
}

.navbar-brand:hover {
    transform: scale(1.02);
}

/* Responsive Menu */
@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem 1rem !important;
        font-size: 0.9rem;
    }

    .dropdown-menu {
        background: rgba(18, 18, 42, 0.95) !important;
        border: none !important;
        margin-left: 1rem;
        margin-top: 0 !important;
        box-shadow: none;
    }

    .navbar-collapse {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
        padding-top: 0.5rem;
    }

    .btn-signup {
        margin-top: 1rem;
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   Main Content
   ========================================= */

.main-content {
    padding-top: 80px;
    padding-bottom: 20px;
    min-height: 100vh;
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
}

/* =========================================
   Hero Section - Stunning Landing
   ========================================= */

.hero-section {
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-200) 50%, var(--gray-400) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    letter-spacing: -1px;
}

.hero-section h1::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--rogers-red) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(40px);
    opacity: 0.4;
    z-index: -1;
}

.hero-section .subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--gray-400);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-section .subtitle span {
    color: var(--rogers-red);
    font-weight: 600;
}

/* =========================================
   Premium Phone Mockup
   ========================================= */

.phone-mockup {
    width: 320px;
    background: linear-gradient(165deg, #3a3a5c 0%, #1e1e3a 50%, #0f0f24 100%);
    border-radius: 50px;
    padding: 14px;
    box-shadow:
        var(--shadow-xl),
        inset 0 1px 1px rgba(255,255,255,0.1),
        0 0 0 1px rgba(255,255,255,0.05);
    margin: 2rem auto;
    position: relative;
    transform-style: preserve-3d;
    transition: var(--transition-slow);
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    box-shadow:
        var(--shadow-xl),
        inset 0 1px 1px rgba(255,255,255,0.1),
        0 0 0 1px rgba(255,255,255,0.05),
        30px 30px 60px rgba(0,0,0,0.4);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: linear-gradient(180deg, #0a0a15 0%, #000 100%);
    border-radius: 20px;
    box-shadow: inset 0 -2px 5px rgba(255,255,255,0.05);
}

.phone-mockup::after {
    content: '';
    position: absolute;
    top: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #1a1a3a 30%, #0a0a15 100%);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,212,255,0.3);
}

.phone-screen {
    background: linear-gradient(180deg, #0f0f24 0%, #0a0a1a 100%);
    border-radius: 38px;
    padding: 60px 20px 30px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.phone-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at top, rgba(218,41,28,0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* =========================================
   Premium Notification Cards
   ========================================= */

.notification-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.05) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.notification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.notification-card:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(218, 41, 28, 0.5);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 30px rgba(218,41,28,0.2);
}

.notification-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.app-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-hero);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(218,41,28,0.4);
    position: relative;
}

.app-icon::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    background: var(--gradient-hero);
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
}

.app-name {
    font-weight: 600;
    flex: 1;
    font-size: 0.95rem;
}

.notification-time {
    font-size: 0.8rem;
    color: var(--gray-600);
}

.notification-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, var(--white), var(--gray-200));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.notification-content p {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin: 0;
    line-height: 1.5;
}

/* =========================================
   CTA Buttons - Premium Style
   ========================================= */

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.1rem 2.8rem;
    background: var(--gradient-hero);
    color: var(--white);
    border: none;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(218,41,28,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-slow);
}

.cta-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(218,41,28,0.5);
    color: var(--white);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:active {
    transform: translateY(-2px) scale(1);
}

/* Secondary Button */
.btn-secondary-custom {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-secondary-custom:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* =========================================
   Stage Pages - Premium Layout
   ========================================= */

.stage-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.stage-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.stage-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.8rem;
    background: var(--gradient-hero);
    border-radius: 60px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(218,41,28,0.4);
    position: relative;
}

.stage-badge::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 60px;
    background: var(--gradient-hero);
    z-index: -1;
    filter: blur(15px);
    opacity: 0.5;
}

.stage-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.stage-subtitle {
    font-size: 1.3rem;
    color: var(--gray-400);
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* =========================================
   Content Cards - Glassmorphism Premium
   ========================================= */

.content-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 2rem;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.content-card:hover {
    border-color: rgba(218, 41, 28, 0.3);
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    transform: translateY(-5px);
}

.content-card.highlight {
    border-color: rgba(218, 41, 28, 0.5);
    box-shadow: 0 0 60px rgba(218, 41, 28, 0.15);
}

.content-card.highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top left, rgba(218,41,28,0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* =========================================
   Feature Grid - Premium Cards
   ========================================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top, rgba(218,41,28,0.1) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--rogers-red);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3), 0 0 40px rgba(218,41,28,0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-hero);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 15px 35px rgba(218,41,28,0.4);
    position: relative;
    transition: var(--transition-normal);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 28px;
    background: var(--gradient-hero);
    z-index: -1;
    filter: blur(20px);
    opacity: 0.4;
    transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card:hover .feature-icon::after {
    opacity: 0.6;
    filter: blur(25px);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--gray-400);
    margin: 0;
    line-height: 1.6;
}

/* =========================================
   Voice Concierge - AI Interface
   ========================================= */

.voice-concierge {
    background: linear-gradient(145deg, rgba(13, 110, 253, 0.15) 0%, rgba(139, 92, 246, 0.08) 50%, rgba(20, 184, 166, 0.05) 100%);
    border: 1px solid rgba(13, 110, 253, 0.3);
    border-radius: 32px;
    padding: 2.5rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.voice-concierge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(13,110,253,0.1), transparent, rgba(139,92,246,0.1), transparent);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.voice-avatar {
    width: 100px;
    height: 100px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
    box-shadow: 0 0 60px rgba(218,41,28,0.5);
    position: relative;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 40px rgba(218,41,28,0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 80px rgba(218,41,28,0.6);
        transform: scale(1.05);
    }
}

.voice-avatar::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(218,41,28,0.3);
    animation: ripple 2s ease-out infinite;
}

.voice-avatar::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(218,41,28,0.2);
    animation: ripple 2s ease-out infinite 0.5s;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.voice-message {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.8;
    position: relative;
}

.voice-message::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--rogers-red);
    opacity: 0.3;
    font-family: Georgia, serif;
}

.voice-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.voice-suggestion {
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--white);
}

.voice-suggestion:hover {
    background: var(--rogers-red);
    border-color: var(--rogers-red);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(218,41,28,0.3);
}

/* =========================================
   Digital Card - Premium 3D
   ========================================= */

.card-preview {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.2) 100%);
    border-radius: 28px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.digital-card {
    background: var(--gradient-hero);
    border-radius: 20px;
    padding: 1.75rem;
    aspect-ratio: 1.586;
    max-width: 380px;
    margin: 0 auto;
    position: relative;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.4),
        0 0 40px rgba(218,41,28,0.3);
    transform-style: preserve-3d;
    transition: var(--transition-slow);
    cursor: pointer;
}

.digital-card:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateZ(20px);
    box-shadow:
        0 40px 80px rgba(0,0,0,0.5),
        0 0 60px rgba(218,41,28,0.4);
}

.digital-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    border-radius: 20px;
    pointer-events: none;
}

.digital-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: rotate(45deg);
    animation: card-shine 3s ease-in-out infinite;
}

@keyframes card-shine {
    0%, 100% { transform: rotate(45deg) translateX(-100%); }
    50% { transform: rotate(45deg) translateX(100%); }
}

.card-logo {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.card-chip {
    width: 50px;
    height: 38px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    border-radius: 8px;
    margin: 1.75rem 0;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.card-chip::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5px;
    right: 5px;
    height: 1px;
    background: rgba(0,0,0,0.2);
}

.card-chip::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 5px;
    bottom: 5px;
    width: 1px;
    background: rgba(0,0,0,0.2);
}

.card-number {
    font-size: 1.4rem;
    letter-spacing: 4px;
    font-family: 'SF Mono', 'Courier New', monospace;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.card-holder {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* =========================================
   Menu Items - Interactive
   ========================================= */

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.menu-item {
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1.25rem;
    cursor: pointer;
    transition: var(--transition-normal);
    text-align: center;
}

.menu-item:hover {
    border-color: var(--rogers-red);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.menu-item.selected {
    border-color: var(--accent-green);
    background: linear-gradient(145deg, rgba(0,255,136,0.15) 0%, rgba(0,255,136,0.05) 100%);
    box-shadow: 0 0 30px rgba(0,255,136,0.2);
}

.menu-item-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 5px 10px rgba(0,0,0,0.3));
}

.menu-item-name {
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.menu-item-price {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

/* =========================================
   Stats Display - Animated
   ========================================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition-normal);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-hero);
    opacity: 0;
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(218,41,28,0.3);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.stat-value.text-success {
    background: linear-gradient(135deg, #00FF88, #00D4FF);
    -webkit-background-clip: text;
}

.stat-value.text-warning {
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    -webkit-background-clip: text;
}

.stat-value.text-info {
    background: linear-gradient(135deg, #00D4FF, #8B5CF6);
    -webkit-background-clip: text;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* =========================================
   Navigation Buttons
   ========================================= */

.nav-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 4rem;
}

.btn-nav {
    padding: 1.1rem 2.5rem;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-back {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
    color: var(--white);
}

.btn-next {
    background: var(--gradient-hero);
    border: none;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(218,41,28,0.4);
}

.btn-next:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 40px rgba(218,41,28,0.5);
    color: var(--white);
}

/* =========================================
   Progress Footer - Premium
   ========================================= */

.journey-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
    z-index: 999;
}

.journey-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-indicator {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-normal);
    position: relative;
}

.progress-step.active .step-indicator {
    background: var(--gradient-hero);
    border-color: var(--rogers-red);
    box-shadow: 0 0 30px rgba(218,41,28,0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

.progress-step.completed .step-indicator {
    background: linear-gradient(135deg, #00FF88, #00D4FF);
    border-color: #00FF88;
    box-shadow: 0 0 20px rgba(0,255,136,0.4);
}

.step-label {
    font-size: 0.75rem;
    color: var(--gray-600);
    margin-top: 0.6rem;
    text-align: center;
    max-width: 80px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: var(--white);
}

.progress-line {
    width: 80px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 0.75rem;
    margin-bottom: 2rem;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-line.completed {
    background: linear-gradient(90deg, #00FF88, #00D4FF);
}

.progress-line.completed::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* =========================================
   Form Styles - Premium
   ========================================= */

.form-control {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: var(--white) !important;
    border-radius: 16px !important;
    padding: 1rem 1.25rem !important;
    font-size: 1rem;
    transition: var(--transition-normal);
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--rogers-red) !important;
    box-shadow: 0 0 0 4px rgba(218, 41, 28, 0.2) !important;
    color: var(--white) !important;
}

.form-control::placeholder {
    color: var(--gray-600) !important;
}

.form-floating > label {
    color: var(--gray-400);
    padding: 1rem 1.25rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--rogers-red);
}

/* =========================================
   Modal - Premium
   ========================================= */

.modal-content {
    background: linear-gradient(145deg, rgba(26,26,58,0.98) 0%, rgba(10,10,26,0.98) 100%);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top-color: rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
}

/* =========================================
   Animations - Premium
   ========================================= */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 30px rgba(218, 41, 28, 0.3); }
    50% { box-shadow: 0 0 60px rgba(218, 41, 28, 0.6); }
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

/* Animation Classes */
.animate-slide-in {
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.animate-slide-left {
    animation: slideInLeft 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.animate-slide-right {
    animation: slideInRight 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.animate-scale-in {
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

.animate-glow {
    animation: glow 2s ease-in-out infinite;
}

/* Stagger Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }
.stagger-7 { animation-delay: 0.7s; }
.stagger-8 { animation-delay: 0.8s; }

/* =========================================
   Utility Classes
   ========================================= */

.text-gradient {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-gold {
    background: linear-gradient(135deg, #FFD700, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #00D4FF, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-glass {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.02) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glow-red {
    box-shadow: 0 0 40px rgba(218, 41, 28, 0.4);
}

.glow-green {
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.4);
}

.glow-cyan {
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}

/* =========================================
   Scrollbar - Custom
   ========================================= */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--rogers-red), var(--rogers-red-dark));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--rogers-red-light), var(--rogers-red));
}

/* =========================================
   Responsive - Premium
   ========================================= */

@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 3rem;
    }

    .stage-header h1 {
        font-size: 2.5rem;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.25rem;
    }

    .hero-section .subtitle {
        font-size: 1rem;
    }

    .phone-mockup {
        width: 280px;
    }

    .phone-screen {
        min-height: 400px;
        padding: 50px 15px 20px;
    }

    .stage-header h1 {
        font-size: 2rem;
    }

    .progress-line {
        width: 40px;
    }

    .step-label {
        font-size: 0.65rem;
        max-width: 55px;
    }

    .step-indicator {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .nav-buttons {
        flex-direction: column;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .content-card {
        padding: 1.5rem;
        border-radius: 20px;
    }
}

@media (max-width: 576px) {
    .main-content {
        padding-top: 80px;
        padding-bottom: 120px;
    }

    .journey-progress {
        overflow-x: auto;
        padding: 0 0.5rem;
        justify-content: flex-start;
    }

    .stage-container {
        padding: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .stat-value {
        font-size: 2.25rem;
    }

    .voice-concierge {
        padding: 1.5rem;
    }

    .voice-avatar {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

/* =========================================
   Special Effects
   ========================================= */

/* Hover lift effect */
.hover-lift {
    transition: var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-8px);
}

/* Gradient border */
.gradient-border {
    position: relative;
    background: var(--dark);
    border-radius: 24px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: var(--gradient-hero);
    z-index: -1;
}

/* Glowing text */
.glow-text {
    text-shadow: 0 0 20px currentColor;
}

/* Card hover tilt */
.tilt-card {
    transition: var(--transition-normal);
    transform-style: preserve-3d;
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
}

/* Loading spinner custom */
.spinner-custom {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--rogers-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success checkmark animation */
.checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00FF88, #00D4FF);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkmark-circle i {
    font-size: 2.5rem;
    color: var(--dark);
    animation: checkmark 0.5s ease-in-out 0.3s forwards;
    opacity: 0;
}

@keyframes checkmark {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-45deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

/* =========================================
   NEW: Hero Section Enhanced
   ========================================= */

.hero-header {
    margin-bottom: 3rem;
}

.rogers-masthead {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.rogers-logo-large {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 10px;
    text-shadow: 0 0 60px rgba(218,41,28,0.5);
}

.rogers-tagline {
    font-size: 1rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 0.5rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-400);
    font-weight: 400;
}

/* =========================================
   NEW: Product Ecosystem Showcase
   ========================================= */

.ecosystem-showcase {
    margin: 3rem 0;
}

.product-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    transition: var(--transition-normal);
    cursor: pointer;
}

.product-pill:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-color, var(--rogers-red));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.product-pill i {
    font-size: 1.5rem;
    color: var(--accent-color, var(--rogers-red));
}

.product-pill span {
    font-weight: 600;
    font-size: 0.9rem;
}

/* =========================================
   NEW: Sports Empire Banner
   ========================================= */

.sports-empire-banner {
    background: linear-gradient(135deg, rgba(218,41,28,0.15) 0%, rgba(139,92,246,0.1) 50%, rgba(0,212,255,0.05) 100%);
    border: 1px solid rgba(218,41,28,0.3);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.sports-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.sports-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--rogers-red);
    font-weight: 700;
}

.sports-teams {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.team-badge {
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.08);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
}

.investment-tag {
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 600;
}

/* =========================================
   NEW: Persona Section
   ========================================= */

.persona-section {
    padding: 4rem 0;
}

.section-header {
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-hero);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.section-badge.sports {
    background: linear-gradient(135deg, #00D4FF, #8B5CF6);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--white), var(--gray-300));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
}

/* =========================================
   NEW: Persona Grid & Cards
   ========================================= */

.persona-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.persona-card {
    display: block;
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 1.5rem;
    text-decoration: none;
    color: var(--white);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.persona-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--persona-color, var(--rogers-red));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.persona-card:hover {
    transform: translateY(-8px);
    border-color: var(--persona-color, var(--rogers-red));
    box-shadow: 0 25px 50px rgba(0,0,0,0.3), 0 0 40px color-mix(in srgb, var(--persona-color, var(--rogers-red)) 30%, transparent);
    color: var(--white);
    text-decoration: none;
}

.persona-card:hover::before {
    transform: scaleX(1);
}

.persona-avatar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.avatar-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.avatar-initial {
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.persona-badge {
    padding: 0.4rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--persona-color, var(--gray-300));
}

.persona-info {
    margin-bottom: 1rem;
}

.persona-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.persona-desc {
    font-size: 0.9rem;
    color: var(--gray-400);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.persona-interests {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.interest-tag {
    padding: 0.3rem 0.75rem;
    background: rgba(255,255,255,0.08);
    border-radius: 15px;
    font-size: 0.75rem;
    color: var(--gray-300);
}

.persona-products {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.current-products, .target-products {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.products-label {
    font-size: 0.7rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-tag {
    padding: 0.25rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.product-tag.current {
    background: rgba(0,212,255,0.2);
    color: var(--accent-cyan);
}

.product-tag.target {
    background: rgba(0,255,136,0.2);
    color: var(--accent-green);
}

.persona-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.cta-text {
    font-weight: 600;
    color: var(--persona-color, var(--rogers-red));
}

.persona-cta i {
    font-size: 1.5rem;
    color: var(--persona-color, var(--rogers-red));
    transition: var(--transition-normal);
}

.persona-card:hover .persona-cta i {
    transform: translateX(5px);
}

/* =========================================
   NEW: Stats Section
   ========================================= */

.stats-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, transparent, rgba(218,41,28,0.05), transparent);
}

.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stats-section .stat-card {
    text-align: center;
    padding: 2rem;
}

.stats-section .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-hero);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(218,41,28,0.3);
}

.stats-section .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
}

.stats-section .stat-label {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* =========================================
   NEW: Products Showcase
   ========================================= */

.products-showcase {
    padding: 4rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-showcase-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 1.5rem;
    transition: var(--transition-normal);
}

.product-showcase-card:hover {
    transform: translateY(-5px);
    border-color: var(--product-color, var(--rogers-red));
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.product-header {
    margin-bottom: 1rem;
}

.product-header .product-icon {
    font-size: 2rem;
    color: var(--product-color, var(--rogers-red));
    margin-bottom: 0.5rem;
}

.product-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.product-highlight {
    font-size: 0.8rem;
    color: var(--product-color, var(--rogers-red));
    font-weight: 600;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features .price {
    color: var(--accent-gold);
    font-weight: 700;
}

/* =========================================
   NEW: Sports Section
   ========================================= */

.sports-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, transparent, rgba(139,92,246,0.05), transparent);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.sports-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 1.5rem;
    transition: var(--transition-normal);
}

.sports-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.sports-card.mlse {
    border-color: rgba(0,212,255,0.3);
}

.sports-card.bluejays {
    border-color: rgba(0,91,165,0.3);
}

.sports-card.sportsnet {
    border-color: rgba(218,41,28,0.3);
}

.sports-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.sports-card-header h3 {
    font-size: 1.1rem;
    font-weight: 700;
}

.ownership-badge {
    padding: 0.3rem 0.75rem;
    background: rgba(0,255,136,0.2);
    color: var(--accent-green);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 700;
}

.valuation {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.teams-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.team-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.team-icon {
    font-size: 1.5rem;
}

.team-info {
    display: flex;
    flex-direction: column;
}

.team-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.team-league {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.venue-info, .reach-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.venue-info i, .reach-stat i {
    color: var(--accent-cyan);
}

.partnerships {
    margin-bottom: 1rem;
}

.partnership-tags, .platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.partner-tag {
    padding: 0.3rem 0.75rem;
    background: rgba(218,41,28,0.2);
    color: var(--rogers-red-light);
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.platform-tag {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--gray-300);
}

.platform-tag i {
    color: var(--accent-green);
}

/* =========================================
   NEW: CTA Section
   ========================================= */

.cta-section {
    padding: 4rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-content p {
    color: var(--gray-400);
    margin-bottom: 2rem;
}

/* =========================================
   NEW: Journey Container
   ========================================= */

.journey-container {
    padding: 2rem 0;
}

.journey-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Stage Progress Action */
.stage-progress-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.next-stage-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: var(--gradient-hero);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(218, 41, 28, 0.3);
    text-decoration: none;
    white-space: nowrap;
}

.next-stage-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(218, 41, 28, 0.5);
    background: linear-gradient(135deg, #FF4B2B 0%, #FF416C 50%, #DA291C 100%);
}

.next-stage-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(218, 41, 28, 0.3);
}

.next-stage-btn i {
    font-size: 1.2rem;
}

/* Explainer Actions */
.explainer-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

/* Header Right Actions */
.header-right-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-left: auto;
}

.persona-indicator {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--persona-color, rgba(255,255,255,0.1));
    border-radius: 50px;
}

.persona-mini-avatar {
    width: 40px;
    height: 40px;
    background: var(--persona-color, var(--gradient-hero));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.persona-mini-info {
    display: flex;
    flex-direction: column;
}

.persona-mini-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.persona-mini-type {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* =========================================
   NEW: Journey Cards
   ========================================= */

.journey-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.journey-card.main-card {
    padding: 2rem;
}

/* Phone Mockup Container */
.phone-mockup-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.indicators {
    display: flex;
    gap: 0.5rem;
}

.pulse-animation {
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { border-color: rgba(255,255,255,0.15); }
    50% { border-color: var(--rogers-red); box-shadow: 0 0 20px rgba(218,41,28,0.3); }
}

.notification-card.secondary {
    opacity: 0.6;
}

.rogers-icon {
    background: var(--gradient-hero) !important;
}

.bank-icon {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal)) !important;
}

.notification-explanation {
    text-align: center;
    padding: 1.5rem;
}

.notification-explanation h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.notification-explanation p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.trigger-points {
    text-align: left;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1rem;
}

.trigger-points h5 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: var(--gray-300);
}

.trigger-points ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trigger-points li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--gray-300);
}

.trigger-points li i {
    color: var(--accent-green);
}

/* =========================================
   NEW: AI Chat Card
   ========================================= */

.ai-card {
    background: linear-gradient(145deg, rgba(13,110,253,0.1) 0%, rgba(139,92,246,0.05) 100%);
    border-color: rgba(13,110,253,0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ai-card:hover {
    border-color: rgba(13,110,253,0.4);
    background: linear-gradient(145deg, rgba(13,110,253,0.15) 0%, rgba(139,92,246,0.1) 100%);
    box-shadow: 0 0 30px rgba(13,110,253,0.2);
}

/* AI Card Header */
.ai-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(13,110,253,0.2);
}

.ai-header-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--accent-cyan);
    font-weight: 600;
}

.ai-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.ai-header-actions {
    display: flex;
    gap: 0.5rem;
}

.ai-action-icon {
    background: rgba(13,110,253,0.1);
    border: 1px solid rgba(13,110,253,0.2);
    color: var(--accent-cyan);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.ai-action-icon:hover {
    background: rgba(13,110,253,0.2);
    border-color: rgba(13,110,253,0.4);
    transform: scale(1.1);
    color: #00FFFF;
}

.ai-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.ai-header.compact {
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
}

.ai-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 30px rgba(218,41,28,0.4);
}

.ai-avatar.small {
    width: 36px;
    height: 36px;
    font-size: 1rem;
}

.ai-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.ai-status {
    font-size: 0.8rem;
    color: var(--accent-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.chat-container {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding-right: 0.5rem;
}

.chat-container.compact {
    max-height: 150px;
}

.chat-message {
    padding: 0.75rem 1rem;
    border-radius: 16px;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.ai-message {
    background: rgba(255,255,255,0.08);
    border-top-left-radius: 4px;
}

.user-message {
    background: var(--gradient-hero);
    margin-left: 20%;
    border-top-right-radius: 4px;
}

/* CTA Action Buttons - Sales Focused */
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.cta-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: var(--cta-color, var(--rogers-red));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-action-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    filter: brightness(1.15);
}

.cta-action-btn:active {
    transform: translateY(0) scale(0.98);
}

.cta-action-btn i {
    font-size: 1rem;
}

/* Interactive Chat Container */
.interactive-scroll {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 1rem;
    padding-right: 0.5rem;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(13,110,253,0.3) transparent;
}

.interactive-scroll::-webkit-scrollbar {
    width: 6px;
}

.interactive-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.interactive-scroll::-webkit-scrollbar-thumb {
    background: rgba(13,110,253,0.3);
    border-radius: 3px;
}

.interactive-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(13,110,253,0.5);
}

/* Interactive Input Container */
.interactive-input {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(13,110,253,0.08);
    border: 2px solid rgba(13,110,253,0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.interactive-input:focus-within {
    background: rgba(13,110,253,0.12);
    border-color: rgba(13,110,253,0.4);
    box-shadow: 0 0 20px rgba(13,110,253,0.2);
}

/* AI Input Focus */
.ai-input-focus {
    background: transparent !important;
    border: none !important;
    padding: 0.5rem !important;
    color: white !important;
    font-size: 0.95rem;
    flex: 1;
    transition: all 0.3s ease;
}

.ai-input-focus::placeholder {
    color: rgba(255,255,255,0.4);
}

.ai-input-focus:focus {
    outline: none;
    color: var(--accent-cyan) !important;
}

.ai-input-focus:focus::placeholder {
    color: rgba(0,212,255,0.3);
}

/* Input Actions */
.input-actions {
    display: flex;
    gap: 0.5rem;
}

/* Send Button Animation */
.send-animate {
    background: rgba(13,110,253,0.3) !important;
    border: 1px solid rgba(13,110,253,0.4) !important;
    transition: all 0.3s ease;
}

.send-animate:hover {
    background: var(--accent-blue) !important;
    box-shadow: 0 0 15px rgba(13,110,253,0.6);
    transform: scale(1.1);
}

.send-animate:active {
    transform: scale(0.95);
}

/* Voice Button Animation */
.voice-animate {
    background: rgba(102,16,242,0.3) !important;
    border: 1px solid rgba(102,16,242,0.4) !important;
    transition: all 0.3s ease;
}

.voice-animate:hover {
    background: #6610f2 !important;
    box-shadow: 0 0 15px rgba(102,16,242,0.6);
    transform: scale(1.1);
}

.voice-animate:active {
    transform: scale(0.95);
}

/* Interactive Buttons */
.interactive-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.quick-animate {
    transition: all 0.3s ease;
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.quick-animate:hover {
    transform: translateX(5px);
    box-shadow: 0 0 20px rgba(139,92,246,0.4);
}

.quick-animate:active {
    transform: scale(0.98);
}

.quick-animate i {
    font-size: 1.1rem;
}

/* Hologram Interactive Ring */
.hologram-interactive-ring {
    position: absolute;
    inset: -15px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 50%;
    animation: ring-scan 3s ease-in-out infinite;
}

@keyframes ring-scan {
    0% {
        opacity: 0.2;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0.1;
        transform: scale(1.2);
    }
}

/* Pulsing animation for urgency */
.cta-action-btn.animate__pulse {
    animation-duration: 1.5s !important;
}

/* Special CTA Colors */
.cta-action-btn[data-action="wallet"] {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}

.cta-action-btn[data-action="mobile"] {
    background: var(--gradient-hero);
}

.cta-action-btn[data-action="book"] {
    background: linear-gradient(135deg, #198754 0%, #28a745 100%);
}

.cta-action-btn[data-action="activate"] {
    background: linear-gradient(135deg, #ffc107 0%, #ffca2c 100%);
    color: #000;
}

.cta-action-btn[data-action="upgrade"] {
    background: linear-gradient(135deg, #0D6EFD 0%, #3d8bfd 100%);
}

.cta-action-btn[data-action="bundle"] {
    background: linear-gradient(135deg, #6610f2 0%, #8540f5 100%);
}

/* Toast notifications enhanced */
.toast-notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
}

.toast-notification.success {
    background: linear-gradient(135deg, #198754 0%, #28a745 100%);
}

.toast-notification.info {
    background: linear-gradient(135deg, #0D6EFD 0%, #3d8bfd 100%);
}

.toast-notification.warning {
    background: linear-gradient(135deg, #ffc107 0%, #ffca2c 100%);
    color: #000;
}

.toast-notification.error {
    background: linear-gradient(135deg, #dc3545 0%, #e35d6a 100%);
}

.chat-input-container {
    display: flex;
    gap: 0.75rem;
}

.chat-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-normal);
}

.chat-input:focus {
    border-color: var(--rogers-red);
    background: rgba(255,255,255,0.1);
}

.chat-input::placeholder {
    color: var(--gray-600);
}

.chat-send-btn {
    width: 44px;
    height: 44px;
    background: var(--gradient-hero);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(218,41,28,0.5);
}

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.quick-action-btn {
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    color: var(--white);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-action-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: var(--rogers-red);
}

.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 1rem;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 50%;
    animation: typing-bounce 1.4s infinite ease-in-out both;
}

.typing-indicator span:nth-child(1) { animation-delay: 0s; }
.typing-indicator span:nth-child(2) { animation-delay: 0.16s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.32s; }

@keyframes typing-bounce {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* =========================================
   NEW: Stage Actions
   ========================================= */

.stage-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
}

.stage-actions.centered {
    justify-content: center;
}

.stage-back-btn, .stage-continue-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
}

.stage-back-btn {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
}

.stage-back-btn:hover {
    background: rgba(255,255,255,0.15);
    transform: translateX(-5px);
    color: var(--white);
}

.stage-continue-btn {
    background: var(--gradient-hero);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(218,41,28,0.4);
}

.stage-continue-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 40px rgba(218,41,28,0.5);
    color: var(--white);
}

/* =========================================
   NEW: Voice Concierge Section
   ========================================= */

.voice-concierge-section {
    text-align: center;
    padding: 2rem;
}

.voice-avatar-large {
    margin-bottom: 2rem;
}

.voice-circle {
    width: 120px;
    height: 120px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1rem;
    position: relative;
}

.pulse-ring::before,
.pulse-ring::after {
    content: '';
    position: absolute;
    inset: -15px;
    border: 2px solid var(--rogers-red);
    border-radius: 50%;
    animation: ripple 2s ease-out infinite;
}

.pulse-ring::after {
    animation-delay: 0.5s;
}

.voice-status {
    color: var(--accent-green);
    font-size: 0.9rem;
    font-weight: 600;
}

.voice-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.voice-subtitle {
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.benefits-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.benefit-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-normal);
}

.benefit-card:hover {
    border-color: var(--rogers-red);
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 2rem;
    color: var(--rogers-red);
    margin-bottom: 0.75rem;
}

.benefit-card h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin: 0;
}

/* =========================================
   NEW: Recommendation Card
   ========================================= */

.recommendation-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.recommendation-card h3 i {
    color: var(--accent-gold);
}

.recommended-products {
    margin-bottom: 1.5rem;
}

.recommended-product-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    margin-bottom: 0.75rem;
    transition: var(--transition-normal);
}

.recommended-product-item:hover {
    background: rgba(255,255,255,0.1);
}

.recommended-product-item.added {
    border: 1px solid var(--accent-green);
    background: rgba(0,255,136,0.1);
}

.product-icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
}

.product-details {
    flex: 1;
}

.product-details .product-name {
    display: block;
    font-weight: 600;
}

.product-details .product-reason {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.add-product-btn {
    width: 36px;
    height: 36px;
    background: var(--gradient-hero);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-normal);
}

.add-product-btn:hover {
    transform: scale(1.1);
}

.savings-preview {
    background: linear-gradient(135deg, rgba(0,255,136,0.1), rgba(0,212,255,0.05));
    border: 1px solid rgba(0,255,136,0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.savings-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-green);
}

.savings-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.savings-detail {
    font-size: 0.85rem;
    color: var(--gray-400);
}

/* =========================================
   NEW: Card Activation
   ========================================= */

.card-activation-section {
    padding: 2rem;
    text-align: center;
}

.card-activation-section h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.activation-subtitle {
    color: var(--gray-400);
    margin-bottom: 2rem;
}

.credit-card-display {
    perspective: 1000px;
    margin: 2rem 0;
}

.credit-card {
    max-width: 380px;
    aspect-ratio: 1.586;
    background: var(--gradient-hero);
    border-radius: 20px;
    padding: 1.5rem;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(218,41,28,0.3);
    transform-style: preserve-3d;
    transition: var(--transition-slow);
}

.credit-card:hover {
    transform: rotateY(-10deg) rotateX(5deg);
}

.credit-card.activated-animation {
    animation: card-activated 1s ease-in-out;
}

@keyframes card-activated {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: 0 0 80px rgba(0,255,136,0.5); }
}

.card-logo {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.card-chip {
    width: 50px;
    height: 35px;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 8px;
    margin: 1.5rem 0;
}

.card-number {
    font-size: 1.3rem;
    letter-spacing: 3px;
    font-family: monospace;
    margin-bottom: 1rem;
}

.card-holder {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.card-type {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-cashback {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.3rem 0.75rem;
    background: rgba(0,0,0,0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.card-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    font-size: 0.9rem;
}

.benefit-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.activation-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.activate-btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.activate-btn.primary {
    background: var(--gradient-hero);
    border: none;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(218,41,28,0.4);
}

.activate-btn.primary:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(218,41,28,0.5);
}

.activate-btn.primary:disabled,
.activate-btn.primary.activated {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-teal));
    box-shadow: 0 10px 30px rgba(0,255,136,0.4);
}

.activate-btn.secondary {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
}

.activate-btn.secondary:hover {
    background: rgba(255,255,255,0.15);
}

.activate-btn.secondary.added {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

/* =========================================
   NEW: Credits Card
   ========================================= */

.credits-card, .credits-live-card {
    background: linear-gradient(145deg, rgba(255,215,0,0.1) 0%, rgba(255,140,0,0.05) 100%);
    border-color: rgba(255,215,0,0.2);
}

.credits-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.credits-header i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.credits-header h4 {
    font-size: 1rem;
    margin: 0;
}

.credits-header.live {
    justify-content: space-between;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--accent-green);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-green);
    border-radius: 50%;
    animation: pulse-glow 1s ease-in-out infinite;
}

.credits-amount, .credits-display {
    text-align: center;
    margin-bottom: 0.75rem;
}

.credits-value, .credits-remaining {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gold), #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.credits-label {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.credits-note {
    font-size: 0.8rem;
    color: var(--gray-400);
    text-align: center;
}

.credits-bar {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin: 1rem 0;
    overflow: hidden;
}

.credits-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-gold), #FF8C00);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.order-history {
    margin-top: 1rem;
}

.order-history h5 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.order-list {
    max-height: 150px;
    overflow-y: auto;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
}

.no-orders {
    text-align: center;
    color: var(--gray-600);
    font-size: 0.85rem;
    padding: 1rem;
}

/* =========================================
   NEW: Points Card
   ========================================= */

.points-card, .points-live-card {
    background: linear-gradient(145deg, rgba(139,92,246,0.1) 0%, rgba(236,72,153,0.05) 100%);
    border-color: rgba(139,92,246,0.2);
    text-align: center;
}

.points-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.points-header i {
    color: var(--accent-purple);
}

.points-value, .points-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.points-label, .points-text {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.points-tier {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.tier-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: linear-gradient(135deg, #C0C0C0, #A9A9A9);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.tier-next {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-400);
}

.points-earned-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.points-earned-display i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.multiplier-badge {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent-gold), #FF8C00);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* =========================================
   NEW: Game Day / Stadium
   ========================================= */

.gameday-experience {
    margin-top: 1rem;
}

.stadium-card {
    padding: 2rem;
}

.stadium-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.stadium-info h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.game-info {
    color: var(--gray-400);
    font-size: 0.9rem;
}

.vip-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, var(--accent-gold), #FF8C00);
    border-radius: 20px;
    font-weight: 700;
    color: var(--dark);
}

.stadium-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-tile {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 1.25rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.feature-tile:hover {
    border-color: var(--rogers-red);
    background: rgba(255,255,255,0.08);
}

.feature-tile.active {
    border-color: var(--accent-green);
    background: rgba(0,255,136,0.1);
}

.feature-tile i {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    display: block;
}

.feature-tile span {
    display: block;
}

.feature-tile .feature-status {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
}

.feature-tile.active .feature-status {
    color: var(--accent-green);
}

.voice-order-section {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 1.5rem;
}

.voice-order-section h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.voice-order-section > p {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.menu-item {
    background: rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
    transition: var(--transition-normal);
}

.menu-item:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-3px);
}

.item-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.item-name {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.item-price {
    display: block;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.order-btn {
    padding: 0.5rem 1.25rem;
    background: var(--gradient-hero);
    border: none;
    border-radius: 20px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.order-btn:hover {
    transform: scale(1.05);
}

/* =========================================
   NEW: Loyalty Stage
   ========================================= */

.loyalty-stage {
    padding-top: 1rem;
}

.celebration-section {
    text-align: center;
    padding: 2rem;
    margin-bottom: 2rem;
}

.celebration-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-gold), #FF8C00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 60px rgba(255,215,0,0.5);
}

.celebration-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.celebration-subtitle {
    font-size: 1.1rem;
    color: var(--gray-400);
}

.summary-card h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.summary-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.summary-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
}

.summary-stat .stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.summary-stat .stat-icon.savings {
    background: linear-gradient(135deg, var(--accent-green), var(--accent-teal));
}

.summary-stat .stat-icon.points {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
}

.summary-stat .stat-icon.products {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
}

.summary-stat .stat-icon.card {
    background: linear-gradient(135deg, var(--accent-gold), #FF8C00);
}

.stat-details .stat-value {
    font-size: 1.5rem;
    display: block;
}

.stat-details .stat-label {
    font-size: 0.8rem;
}

.annual-projection {
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.annual-projection h4 {
    margin-bottom: 1rem;
}

.projection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.projection-item {
    text-align: center;
}

.projection-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.projection-label {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.products-summary h4 {
    margin-bottom: 1rem;
}

.ecosystem-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ecosystem-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    font-size: 0.9rem;
}

.ecosystem-item.existing i {
    color: var(--accent-cyan);
}

.ecosystem-item.new i {
    color: var(--accent-green);
}

.new-badge {
    padding: 0.15rem 0.5rem;
    background: var(--accent-green);
    border-radius: 10px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--dark);
}

/* =========================================
   NEW: Upgrade Offers
   ========================================= */

.upgrades-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.upgrades-card h3 i {
    color: var(--accent-cyan);
}

.upgrade-offers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upgrade-offer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    transition: var(--transition-normal);
}

.upgrade-offer:hover {
    border-color: var(--rogers-red);
    background: rgba(255,255,255,0.08);
}

.offer-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-hero);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.offer-details {
    flex: 1;
}

.offer-details h5 {
    margin-bottom: 0.25rem;
}

.offer-details p {
    font-size: 0.85rem;
    color: var(--gray-400);
    margin: 0;
}

.offer-btn {
    padding: 0.5rem 1.25rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    color: var(--white);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.offer-btn:hover {
    background: var(--gradient-hero);
    border-color: var(--rogers-red);
}

.offer-btn.claimed {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: var(--dark);
}

/* =========================================
   NEW: Loyalty Status Card
   ========================================= */

.loyalty-status-card {
    background: linear-gradient(145deg, rgba(192,192,192,0.1) 0%, rgba(169,169,169,0.05) 100%);
    border-color: rgba(192,192,192,0.2);
}

.loyalty-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.loyalty-header i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

.tier-display {
    text-align: center;
    margin-bottom: 1.5rem;
}

.current-tier {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.tier-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.tier-icon {
    font-size: 1.5rem;
}

.tier-progress {
    padding: 0 1rem;
}

.tier-progress .progress-bar {
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    overflow: hidden;
}

.tier-progress .progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #C0C0C0, #FFD700);
    border-radius: 4px;
}

.tier-next {
    font-size: 0.85rem;
    color: var(--gray-400);
}

.tier-benefits h5 {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.tier-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-benefits li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.tier-benefits li i {
    color: var(--accent-green);
}

.tier-benefits li .bi-lock {
    color: var(--gray-600);
}

/* =========================================
   NEW: Actions Card
   ========================================= */

.actions-card h4 {
    margin-bottom: 1rem;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-normal);
    cursor: pointer;
}

.action-btn.primary {
    background: var(--gradient-hero);
    color: var(--white);
    border: none;
}

.action-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(218,41,28,0.4);
    color: var(--white);
}

.action-btn.secondary {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
}

.action-btn.secondary:hover {
    background: rgba(255,255,255,0.15);
}

.action-btn.outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--gray-300);
}

.action-btn.outline:hover {
    border-color: var(--rogers-red);
    color: var(--white);
}

/* =========================================
   NEW: Confetti Effect
   ========================================= */

.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.confetti-piece {
    position: absolute;
    width: 10px;
    height: 10px;
    top: -10px;
    animation: confetti-fall linear forwards;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* =========================================
   NEW: Toast Notifications
   ========================================= */

.toast-notification {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    padding: 1rem 2rem;
    background: var(--dark-secondary);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    font-weight: 600;
    z-index: 10000;
    opacity: 0;
    transition: var(--transition-normal);
}

.toast-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-notification.success {
    border-color: var(--accent-green);
    background: linear-gradient(135deg, rgba(0,255,136,0.2), rgba(0,212,255,0.1));
}

.toast-notification.warning {
    border-color: var(--accent-gold);
    background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(255,140,0,0.1));
}

.toast-notification.error {
    border-color: var(--rogers-red);
    background: linear-gradient(135deg, rgba(218,41,28,0.2), rgba(255,75,43,0.1));
}

/* =========================================
   NEW: Responsive Updates
   ========================================= */

@media (max-width: 992px) {
    .persona-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stadium-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .projection-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .rogers-logo-large {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    .persona-grid {
        grid-template-columns: 1fr;
    }

    .sports-teams {
        gap: 0.5rem;
    }

    .team-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }

    .journey-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .stadium-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-benefits {
        grid-template-columns: 1fr;
    }

    .projection-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .summary-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }

    .celebration-title {
        font-size: 1.75rem;
    }

    .stage-actions {
        flex-direction: column;
    }

    .stage-back-btn, .stage-continue-btn {
        width: 100%;
        justify-content: center;
    }

    .stadium-features {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   ADVANCED ANIMATIONS - WOW EXPERIENCE
   ========================================= */

/* Particle Background Effect */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--rogers-red);
    border-radius: 50%;
    opacity: 0.3;
    animation: particle-float 15s infinite ease-in-out;
}

@keyframes particle-float {
    0%, 100% { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
    10% { opacity: 0.5; transform: scale(1); }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) translateX(100px) scale(0.5); opacity: 0; }
}

/* Glow Effects */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-hero);
    border-radius: inherit;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.glow-effect:hover::before {
    opacity: 0.7;
}

/* Counter Animation */
.counter-animate {
    display: inline-block;
    transition: transform 0.3s ease;
}

.counter-animate.counting {
    animation: counter-pop 0.3s ease;
}

@keyframes counter-pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); color: var(--accent-gold); }
    100% { transform: scale(1); }
}

/* Number Scroll Animation */
.number-scroll {
    display: inline-flex;
    overflow: hidden;
    height: 1.2em;
}

.number-scroll .digit {
    animation: scroll-up 0.5s ease forwards;
}

@keyframes scroll-up {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Shimmer Loading Effect */
.shimmer {
    background: linear-gradient(90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Card Flip Animation */
.flip-card {
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: var(--gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Typing Effect for AI */
.ai-typing-text {
    overflow: hidden;
    white-space: nowrap;
    animation: typing 2s steps(40, end);
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

/* Pulse Glow Button */
.pulse-glow-btn {
    position: relative;
    overflow: visible;
}

.pulse-glow-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 15px var(--rogers-red);
    opacity: 0;
    animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.02); }
}

/* Notification Slide In */
.notification-slide {
    animation: slide-in-bounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slide-in-bounce {
    0% { transform: translateX(100%) scale(0.8); opacity: 0; }
    60% { transform: translateX(-10%) scale(1.02); }
    100% { transform: translateX(0) scale(1); opacity: 1; }
}

/* Phone Screen Glow */
.phone-glow {
    box-shadow:
        0 0 60px rgba(218, 41, 28, 0.3),
        0 0 100px rgba(218, 41, 28, 0.2),
        inset 0 0 60px rgba(255, 255, 255, 0.05);
}

/* AI Avatar Breathing - Subtle */
.ai-breathing {
    animation: breathing 4s ease-in-out infinite;
}

@keyframes breathing {
    0%, 100% { transform: scale(1); box-shadow: 0 0 10px rgba(218, 41, 28, 0.2); }
    50% { transform: scale(1.02); box-shadow: 0 0 20px rgba(218, 41, 28, 0.3); }
}

/* Voice Waveform */
.voice-waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    height: 40px;
}

.voice-waveform .bar {
    width: 4px;
    background: var(--rogers-red);
    border-radius: 2px;
    animation: waveform 0.8s ease-in-out infinite;
}

.voice-waveform .bar:nth-child(1) { animation-delay: 0s; height: 20px; }
.voice-waveform .bar:nth-child(2) { animation-delay: 0.1s; height: 35px; }
.voice-waveform .bar:nth-child(3) { animation-delay: 0.2s; height: 25px; }
.voice-waveform .bar:nth-child(4) { animation-delay: 0.3s; height: 40px; }
.voice-waveform .bar:nth-child(5) { animation-delay: 0.4s; height: 20px; }
.voice-waveform .bar:nth-child(6) { animation-delay: 0.5s; height: 30px; }
.voice-waveform .bar:nth-child(7) { animation-delay: 0.6s; height: 15px; }

@keyframes waveform {
    0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* Staggered Children Animation */
.stagger-children > * {
    opacity: 0;
    animation: stagger-fade-in 0.5s ease forwards;
}

.stagger-children > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-children > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-children > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-children > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-children > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-children > *:nth-child(6) { animation-delay: 0.6s; }

@keyframes stagger-fade-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Progress Ring */
.progress-ring {
    transform: rotate(-90deg);
}

.progress-ring circle {
    transition: stroke-dashoffset 1s ease;
}

/* Celebration Burst - Subtle glow only */
.celebration-burst {
    position: relative;
}

.celebration-burst::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(218,41,28,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

/* Floating Elements - Very subtle */
.float-element {
    animation: gentle-float 6s ease-in-out infinite;
}

@keyframes gentle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Success Checkmark Animation */
.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke: #20c997;
    fill: none;
    animation: checkmark-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke: #20c997;
    fill: none;
    animation: checkmark-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes checkmark-stroke {
    to { stroke-dashoffset: 0; }
}

/* Credit Card Shine */
.card-shine {
    position: relative;
    overflow: hidden;
}

.card-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.3) 50%,
        rgba(255,255,255,0) 100%
    );
    transform: rotate(30deg);
    animation: card-shine 3s infinite;
}

@keyframes card-shine {
    0% { transform: translateX(-100%) rotate(30deg); }
    100% { transform: translateX(100%) rotate(30deg); }
}

/* Points Pop Animation */
.points-pop {
    position: fixed;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    pointer-events: none;
    z-index: 9999;
    animation: points-fly 1.5s ease-out forwards;
}

@keyframes points-fly {
    0% { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(-100px) scale(1.5); opacity: 0; }
}

/* Urgency Badge Pulse */
.urgency-badge {
    background: var(--rogers-red);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    animation: urgency-pulse 1s infinite;
}

@keyframes urgency-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); background: var(--rogers-red-light); }
}

/* Stage Transition */
.stage-transition-overlay {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.stage-transition-overlay .loader {
    width: 80px;
    height: 80px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top-color: var(--rogers-red);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Interactive Card Hover */
.interactive-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.interactive-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(218,41,28,0.2);
}

/* Spotlight Effect */
.spotlight {
    position: relative;
    overflow: hidden;
}

.spotlight::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spotlight:hover::before {
    opacity: 1;
}

/* Magnetic Button */
.magnetic-btn {
    transition: transform 0.3s ease;
}

/* Order Item Slide */
.order-item-enter {
    animation: order-slide-in 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes order-slide-in {
    from { transform: translateX(100%) scale(0.8); opacity: 0; }
    to { transform: translateX(0) scale(1); opacity: 1; }
}

/* AI Suggestion Bubble */
.ai-suggestion-bubble {
    position: relative;
    background: rgba(218, 41, 28, 0.1);
    border: 1px solid rgba(218, 41, 28, 0.3);
    border-radius: 20px;
    padding: 0.75rem 1rem;
    margin: 0.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: suggestion-pop 0.5s ease;
}

.ai-suggestion-bubble:hover {
    background: rgba(218, 41, 28, 0.2);
    transform: translateX(5px);
}

.ai-suggestion-bubble::before {
    content: '💡';
    margin-right: 0.5rem;
}

@keyframes suggestion-pop {
    0% { transform: scale(0.8) translateX(-20px); opacity: 0; }
    100% { transform: scale(1) translateX(0); opacity: 1; }
}

/* Live Badge */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dc3545;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.live-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: live-pulse 1s infinite;
}

@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Achievement Unlock */
.achievement-unlock {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--dark-secondary);
    border: 2px solid var(--accent-gold);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    z-index: 10001;
    animation: achievement-enter 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes achievement-enter {
    0% { transform: translate(-50%, -50%) scale(0) rotate(-10deg); opacity: 0; }
    100% { transform: translate(-50%, -50%) scale(1) rotate(0); opacity: 1; }
}

.achievement-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-hero);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1rem;
    animation: achievement-bounce 0.5s ease 0.3s;
}

@keyframes achievement-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Ripple Click Effect */
.ripple {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to { transform: scale(4); opacity: 0; }
}

/* Gradient Text Animation */
.gradient-text-animate {
    background: linear-gradient(90deg, var(--rogers-red), var(--accent-gold), var(--rogers-red));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s linear infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* =========================================
   Journey Progress Bar - Left Sidebar
   ========================================= */
.journey-progress-bar {
    position: fixed;
    left: 0;
    top: 70px;
    width: 140px;
    height: calc(100vh - 70px);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255,255,255,0.1);
    padding: 20px 12px;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.progress-track {
    width: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    position: absolute;
    left: 15px;
    transform: translateX(-50%);
    top: 20px;
    bottom: 20px;
}

.progress-fill {
    width: 100%;
    background: linear-gradient(180deg, var(--rogers-red), #ff6b6b);
    border-radius: 2px;
    transition: height 0.5s ease;
}

.progress-stages {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    position: relative;
    z-index: 2;
}

.progress-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    padding-left: 15px;
}

.stage-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(20,20,30,0.9);
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    margin-left: 10px;
}

.progress-stage.active .stage-dot {
    background: var(--rogers-red);
    border-color: var(--rogers-red);
    color: white;
    box-shadow: 0 0 20px rgba(218, 41, 28, 0.6);
    transform: scale(1.1);
}

.progress-stage.completed .stage-dot {
    background: rgba(32, 201, 151, 0.3);
    border-color: #20c997;
    color: #20c997;
}

.stage-label {
    font-size: 0.55rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    white-space: nowrap;
    letter-spacing: 0.5px;
    margin-top: 8px;
}

.progress-stage.active .stage-label {
    color: white;
    font-weight: 600;
}

.progress-stage.completed .stage-label {
    color: #20c997;
}

/* Full width content with sidebar offset */
.journey-container {
    margin-left: 140px;
    width: calc(100% - 140px);
    max-width: none;
    padding: 0 15px;
}

.journey-container .container {
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
}

/* Responsive - hide sidebar on small screens */
@media (max-width: 768px) {
    .journey-progress-bar {
        position: relative;
        width: 100%;
        height: auto;
        top: 0;
        flex-direction: row;
        padding: 10px 15px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .progress-track {
        display: none;
    }
    .progress-stages {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
    .progress-stage {
        flex-direction: column;
        gap: 4px;
    }
    .stage-label {
        display: none;
    }
    .stage-dot {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
    }
    .journey-container {
        margin-left: 0;
        width: 100%;
    }
}

/* =========================================
   Assisted Mode Button (Global)
   ========================================= */
.assisted-mode-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    background: rgba(102, 16, 242, 0.9);
    border-radius: 30px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 99999;
    box-shadow: 0 4px 15px rgba(102, 16, 242, 0.4);
    transition: all 0.3s ease;
}

.assisted-mode-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 16, 242, 0.5);
}

.assisted-mode-btn.active {
    background: linear-gradient(135deg, #20c997, #17a2b8);
    box-shadow: 0 4px 20px rgba(32, 201, 151, 0.5);
    animation: assisted-pulse 2s infinite;
}

.assisted-mode-btn.active i {
    animation: mic-pulse 1s infinite;
}

@keyframes assisted-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(32, 201, 151, 0.5); }
    50% { box-shadow: 0 4px 30px rgba(32, 201, 151, 0.8); }
}

@keyframes mic-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}
