/* TableFlow V2 - Innovative Landing Page Styles */
/* Luxury Hospitality Design inspired by The Drake, Eloura Journeys */

:root {
    /* Premium Color Palette - High Contrast for Accessibility */
    --royal-gold: #B8960F; /* Darker gold for better contrast */
    --deep-navy: #000814; /* Darker navy for maximum contrast */
    --midnight-blue: #001D3D; /* Darker blue for text readability */
    --champagne: #FFF8F0;
    --emerald: #1B5E20; /* Darker green for better contrast */
    --burgundy: #5A1A1F; /* Darker burgundy */
    --pearl: #FFFFFF; /* Pure white for maximum contrast */
    --charcoal: #000000; /* Pure black for maximum contrast */

    /* Brand Colors */
    --electric-blue: #2563EB;
    --bright-yellow: #FFEB3B;
    --purple-accent: #7C3AED;
    --pink-accent: #EC4899;

    /* Gradients */
    --luxury-gradient: linear-gradient(135deg, var(--deep-navy) 0%, var(--midnight-blue) 50%, var(--royal-gold) 100%);
    --gold-gradient: linear-gradient(90deg, var(--royal-gold), #E6C757, var(--royal-gold));
    --dark-gradient: linear-gradient(180deg, rgba(10, 22, 40, 0.95) 0%, rgba(30, 58, 95, 0.85) 100%);

    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 3rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Shadows */
    --shadow-luxury: 0 20px 40px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.2);
    --shadow-hover: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: #FFFFFF; /* Pure white background */
    color: #000000; /* Pure black text */
    line-height: 1.7; /* Better line spacing for readability */
    font-size: 16px; /* Base font size */
    font-weight: 400; /* Regular weight */
    overflow-x: hidden;
}

/* Skip Link - Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--electric-blue);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Luxury Navigation - High Contrast */
.luxury-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000000; /* Solid black for maximum contrast */
    border-bottom: 2px solid #FFD700; /* Strong gold border */
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-mark {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    font-size: 1.5rem;
    color: var(--royal-gold);
    animation: pulse-gold 2s infinite;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--royal-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #FFFFFF; /* Pure white for maximum contrast on black */
    text-decoration: none;
    font-weight: 600; /* Bolder for readability */
    font-size: 1rem; /* Slightly larger */
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px; /* Thicker underline */
    background: #FFD700; /* Gold accent */
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #FFD700; /* Gold on hover */
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
}

/* Luxury Buttons - High Contrast */
.btn-luxury-ghost {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF; /* Thicker border */
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-luxury-ghost:hover {
    background: #FFFFFF;
    border-color: #FFFFFF;
    color: #000000; /* Black text on white background */
}

.btn-luxury-primary {
    background: #FFD700; /* Solid gold */
    color: #000000; /* Black text on gold */
    border: 2px solid #FFD700;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 700; /* Bolder */
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-luxury-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

/* Mobile Actions - Hidden on Desktop */
.mobile-actions {
    display: none;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-btn {
    width: 100%;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

/* Desktop Only - Hidden on Mobile */
.desktop-only {
    display: flex;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Video Hero Section */
.video-hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
}

.video-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(10, 22, 40, 0.7) 0%,
        rgba(10, 22, 40, 0.85) 50%,
        rgba(10, 22, 40, 0.95) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: fade-in-up 0.8s ease;
}

.badge-icon {
    font-size: 1.2rem;
    animation: sparkle 2s infinite;
}

.hero-headline {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
    animation: fade-in-up 1s ease;
}

.headline-small {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--royal-gold);
}

.headline-main {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
}

.headline-gradient {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.25rem;
    line-height: 1.6;
    color: #FFFFFF; /* Pure white for contrast on dark background */
    font-weight: 500; /* Medium weight for readability */
    animation: fade-in-up 1.2s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Shadow for extra readability */
}

.hero-description-mobile {
    display: none;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fade-in-up 1.4s ease;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gold-gradient);
    color: var(--deep-navy);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
    text-decoration: none;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1.25rem 2.5rem;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--royal-gold);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.3rem;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    animation: fade-in-up 1.6s ease;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--royal-gold);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(212, 175, 55, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--royal-gold);
    border-bottom: 2px solid var(--royal-gold);
    transform: rotate(45deg);
    animation: scroll-arrow 1.5s infinite;
}

/* AI Demo Section */
.ai-demo-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--pearl) 0%, white 100%);
    overflow: hidden; /* Prevent horizontal scroll from absolute elements */
}

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

.section-intro {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-label {
    display: inline-block;
    font-size: 1rem; /* Larger for readability */
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000000; /* Black text */
    background: #FFD700; /* Gold background */
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: #000000; /* Pure black for maximum contrast */
    margin-bottom: 1rem;
    line-height: 1.1;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.25rem;
    color: #000000; /* Pure black */
    font-weight: 500; /* Medium weight for readability */
}

.demo-showcase {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: var(--space-xl);
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
    width: 100%;
}

@media (min-width: 1025px) and (max-width: 1165px) {
    .demo-showcase {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .step-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 350px;
        margin: 0 auto;
    }

    .demo-visual {
        flex-direction: column;
        width: 100%;
    }

    .phone-mockup {
        margin-bottom: 2rem;
    }

    .feature-highlights {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .highlight-item {
        justify-content: flex-start;
    }
}

@media (min-width: 1166px) {
    .demo-showcase {
        display: grid;
        grid-template-columns: 350px 1fr;
        gap: 4rem;
        align-items: center;
    }
}

.demo-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 350px;
    align-items: stretch;
}

@media (min-width: 1025px) and (max-width: 1165px) {
    .demo-steps {
        max-width: 700px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.step-card[data-step="1"] {
    animation: step-cycle-1 9s infinite;
}

.step-card[data-step="1"]::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--royal-gold);
    border-radius: 2px;
    animation: step-bar-1 9s infinite;
}

.step-card[data-step="2"] {
    animation: step-cycle-2 9s infinite;
}

.step-card[data-step="2"]::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--royal-gold);
    border-radius: 2px;
    animation: step-bar-2 9s infinite;
}

.step-card[data-step="3"] {
    animation: step-cycle-3 9s infinite;
}

.step-card[data-step="3"]::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: var(--royal-gold);
    border-radius: 2px;
    animation: step-bar-3 9s infinite;
}

@keyframes step-bar-1 {
    0%, 90%, 100% {
        height: 60%;
    }
    30%, 60% {
        height: 0;
    }
}

@keyframes step-bar-2 {
    0%, 20%, 60%, 100% {
        height: 0;
    }
    30%, 50% {
        height: 60%;
    }
}

@keyframes step-bar-3 {
    0%, 50%, 90%, 100% {
        height: 0;
    }
    60%, 80% {
        height: 60%;
    }
}

@keyframes step-cycle-1 {
    0%, 90%, 100% {
        border-color: var(--royal-gold);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        transform: scale(1.02);
    }
    30%, 60% {
        border-color: transparent;
        box-shadow: none;
        transform: scale(1);
    }
}

@keyframes step-cycle-2 {
    0%, 20%, 60%, 100% {
        border-color: transparent;
        box-shadow: none;
        transform: scale(1);
    }
    30%, 50% {
        border-color: var(--royal-gold);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        transform: scale(1.02);
    }
}

@keyframes step-cycle-3 {
    0%, 50%, 90%, 100% {
        border-color: transparent;
        box-shadow: none;
        transform: scale(1);
    }
    60%, 80% {
        border-color: var(--royal-gold);
        box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
        transform: scale(1.02);
    }
}

.step-card.active {
    border-color: var(--royal-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    animation: step-highlight 0.5s ease;
}

/* Step Cards Animation */
@keyframes step-highlight {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes step-cycle {
    0%, 100% {
        border-color: transparent;
    }
    5%, 28% {
        border-color: var(--royal-gold);
    }
    33% {
        border-color: transparent;
    }
}

.step-card.active::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--royal-gold);
    border-radius: 2px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 900;
    color: var(--royal-gold);
    margin-bottom: 0.5rem;
}

.step-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.25rem;
}

.step-card p {
    color: var(--midnight-blue);
    opacity: 0.7;
}

.demo-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    min-height: 650px;
}

@media (min-width: 1166px) {
    .demo-visual {
        display: flex;
        justify-content: flex-start;
        gap: 3rem;
    }
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--charcoal);
    border-radius: 40px;
    padding: 20px;
    box-shadow: var(--shadow-luxury);
    position: relative;
    flex-shrink: 0;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.ai-animation {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.ai-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    animation: scan 2s infinite;
}

.menu-preview {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-item {
    background: var(--pearl);
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    color: var(--deep-navy);
    opacity: 0;
    animation: fade-in 0.5s ease forwards;
}

.menu-item:nth-child(1) { animation-delay: 0.2s; }
.menu-item:nth-child(2) { animation-delay: 0.4s; }
.menu-item:nth-child(3) { animation-delay: 0.6s; }
.menu-item:nth-child(4) { animation-delay: 0.8s; }

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-shrink: 0;
}


.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: slide-in-right 0.8s ease;
}

.highlight-item span:not(.highlight-icon) {
    color: #000000;
    font-weight: 500;
    font-size: 1rem;
}

.highlight-icon {
    color: var(--emerald);
    font-size: 1.2rem;
}

.demo-cta {
    text-align: center;
}

.btn-luxury-large {
    background: var(--luxury-gradient);
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    border-radius: 60px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-luxury);
}

.btn-luxury-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Comprehensive Accessibility Section */
.accessibility-section {
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--deep-navy) 0%, var(--midnight-blue) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.accessibility-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,...') repeat;
    opacity: 0.05;
}

.accessibility-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.accessibility-header .section-title {
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
}

.accessibility-header .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Accessibility Grid */
.accessibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: var(--space-xl);
}

.access-category {
    background: #FFFFFF;
    border: 2px solid #B8960F;
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.access-category:hover {
    background: #FFFDF7;
    border-color: #000000;
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #000000;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 2px solid #B8960F;
    padding-bottom: 0.75rem;
    flex-wrap: wrap;
}

.coming-soon-badge {
    display: inline-block;
    background: linear-gradient(135deg, #7C3AED 0%, #5B21B6 100%);
    color: #FFFFFF;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: auto;
    box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

.access-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.access-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.access-item .check {
    color: #1B5E20;
    font-size: 1.3rem;
    flex-shrink: 0;
    font-weight: bold;
}

.access-item strong {
    display: block;
    color: #000000;
    margin-bottom: 0.25rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.access-item p {
    color: #333333;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 400;
}

/* Certification Program */
.certification-program {
    background: #FFFDF7;
    border: 3px solid #B8960F;
    border-radius: 30px;
    padding: 3rem;
    margin: var(--space-xl) 0;
    text-align: center;
    box-shadow: 0 6px 20px rgba(184, 150, 15, 0.15);
}

.program-title {
    font-size: 2rem;
    color: var(--royal-gold);
    margin-bottom: 1rem;
}

.program-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cert-levels {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cert-level {
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 20px;
    padding: 2rem;
    min-width: 150px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.cert-level:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #B8960F;
}

.cert-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.cert-level h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #000000;
    font-weight: 700;
}

.cert-level p {
    color: #666666;
    font-size: 0.95rem;
    font-weight: 400;
}

.certification-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

.badge-item {
    background: white;
    color: var(--deep-navy);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.badge-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Smart Restaurant Discovery & Reservation Section */
.reservation-discovery {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, white 0%, var(--pearl) 100%);
}

.discovery-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

/* Smart Search Bar */
.smart-search {
    max-width: 900px;
    margin: 0 auto var(--space-2xl);
}

.search-container {
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: var(--shadow-luxury);
}

.search-input-group {
    display: flex;
    align-items: center;
    background: var(--pearl);
    border-radius: 60px;
    padding: 1rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.search-input-group:focus-within {
    border-color: var(--royal-gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.search-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.search-input {
    flex: 1;
    background: none;
    border: none;
    font-size: 1.1rem;
    color: var(--deep-navy);
    outline: none;
}

.search-input::placeholder {
    color: var(--midnight-blue);
    opacity: 0.5;
}

.voice-search {
    background: var(--gold-gradient);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.voice-search:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.voice-icon {
    font-size: 1.3rem;
}

.search-filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-pill {
    background: white;
    color: var(--midnight-blue);
    border: 2px solid var(--midnight-blue);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-pill:hover,
.filter-pill.active {
    background: var(--midnight-blue);
    color: white;
}

/* Venues Showcase */
.venues-showcase {
    margin-bottom: var(--space-2xl);
}

.showcase-title {
    font-size: 2rem;
    color: var(--deep-navy);
    margin-bottom: 2rem;
    text-align: center;
}

.venue-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2rem;
}

.venue-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 3px solid transparent;
}

.venue-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--royal-gold);
}

.rank-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--royal-gold);
    color: var(--deep-navy);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.venue-image {
    height: 200px;
    background: linear-gradient(135deg, var(--midnight-blue), var(--emerald));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    color: var(--deep-navy);
}

.venue-badges {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.badge-accessibility,
.badge-award {
    background: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.promotion-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--burgundy);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.live-badge {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: var(--electric-blue);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.venue-info {
    padding: 1.5rem;
}

.venue-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.venue-cuisine {
    color: var(--midnight-blue);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.venue-metrics {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.metric {
    text-align: center;
    flex: 1;
}

.metric-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--emerald);
    margin-bottom: 0.25rem;
}

.metric-label {
    display: block;
    font-size: 0.75rem;
    color: var(--midnight-blue);
    opacity: 0.7;
    text-transform: uppercase;
}

.availability-slots {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.time-slot {
    background: var(--pearl);
    color: var(--deep-navy);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background: var(--midnight-blue);
    color: white;
}

.time-slot.promo {
    background: var(--burgundy);
    color: white;
}

.time-slot.more {
    background: transparent;
    border: 2px solid var(--midnight-blue);
}

.time-slot.waitlist {
    background: var(--electric-blue);
    color: white;
}

.venue-features {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.venue-features .feature {
    font-size: 0.85rem;
    color: var(--emerald);
    font-weight: 600;
}

/* Booking Features Grid */
.booking-features {
    margin-bottom: var(--space-2xl);
}

.features-title {
    font-size: 1.75rem;
    color: var(--deep-navy);
    text-align: center;
    margin-bottom: 2rem;
}

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

.booking-feature {
    text-align: center;
    padding: 2rem;
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.booking-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: #B8960F;
}

.booking-feature .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #B8960F;
}

.booking-feature h4 {
    font-size: 1.25rem;
    color: #000000;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.booking-feature p {
    color: #333333;
    line-height: 1.6;
    font-weight: 400;
}

/* Pre-Order Demo */
.preorder-demo {
    background: var(--luxury-gradient);
    border-radius: 30px;
    padding: 3rem;
    color: white;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.demo-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.demo-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.demo-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.demo-benefits li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
}

.btn-try-preorder {
    background: white;
    color: var(--deep-navy);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-try-preorder:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.phone-frame {
    width: 280px;
    height: 560px;
    background: var(--charcoal);
    border-radius: 30px;
    padding: 15px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.preorder-screen {
    background: white;
    height: 100%;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-item {
    background: var(--pearl);
    padding: 1rem;
    border-radius: 15px;
    color: var(--deep-navy);
}

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

.item-customize {
    display: block;
    font-size: 0.85rem;
    color: var(--emerald);
}

.order-summary {
    background: var(--gold-gradient);
    color: var(--deep-navy);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 700;
    margin-top: auto;
}

/* Events Marketplace Section */
.events-marketplace {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--pearl) 0%, white 100%);
}

.events-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.events-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: var(--space-xl);
}

.event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--royal-gold);
}

.event-card.featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}

.event-image {
    background: linear-gradient(135deg, var(--midnight-blue), var(--royal-gold));
    padding: 2rem;
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-image-small {
    background: linear-gradient(135deg, var(--emerald), var(--midnight-blue));
    padding: 1.5rem;
    position: relative;
    min-height: 120px;
}

.event-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--royal-gold);
    color: var(--deep-navy);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-badge.live {
    background: var(--burgundy);
    color: white;
    animation: pulse 2s infinite;
}

.event-badge.special {
    background: var(--electric-blue);
    color: white;
}

.event-badge.trivia {
    background: var(--purple-accent);
    color: white;
}

.event-badge.wine {
    background: var(--burgundy);
    color: white;
}

.event-badge.karaoke {
    background: var(--pink-accent);
    color: white;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 15px;
    padding: 1rem;
    width: 80px;
    height: 80px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 900;
    color: var(--deep-navy);
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--midnight-blue);
    text-transform: uppercase;
}

.event-content {
    padding: 2rem;
}

.venue-name {
    font-size: 0.9rem;
    color: var(--royal-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.event-description {
    color: var(--midnight-blue);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-time {
    color: var(--midnight-blue);
    margin-bottom: 1rem;
    font-weight: 500;
}

.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--midnight-blue);
}

.detail-item .icon {
    font-size: 1.2rem;
}

.event-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.btn-book-event {
    background: var(--gold-gradient);
    color: var(--deep-navy);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-book-event:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.btn-event-small {
    background: var(--midnight-blue);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-event-small:hover {
    background: var(--deep-navy);
    transform: translateY(-2px);
}

.spots-left {
    color: var(--burgundy);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Event Categories */
.event-categories {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.categories-title {
    font-size: 1.5rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.category-pill {
    background: white;
    color: var(--midnight-blue);
    border: 2px solid var(--midnight-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-pill:hover,
.category-pill.active {
    background: var(--midnight-blue);
    color: white;
}

/* Venue Promotion CTA */
.venue-promotion-cta {
    background: var(--luxury-gradient);
    border-radius: 30px;
    padding: 3rem;
    color: white;
    text-align: center;
}

.promo-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.promo-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.promo-benefits {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

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

.btn-venue-signup {
    background: white;
    color: var(--deep-navy);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-venue-signup:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Platform Features - High Contrast */
.platform-features {
    padding: var(--space-3xl) 0;
    background: #FFFFFF; /* Solid white background */
}

.features-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.features-header .section-title {
    color: #000000; /* Pure black for maximum contrast */
}

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

.feature-card.premium {
    background: #FFFFFF;
    border: 3px solid #000000; /* Strong black border */
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.feature-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
}

.feature-card.premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: #B8960F;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #B8960F; /* Gold color for icons */
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFFDF7 100%);
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(184, 150, 15, 0.2);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 900; /* Extra bold weight */
    color: #000000; /* Pure black for maximum contrast */
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.feature-card p {
    color: #1A1A1A; /* Very dark gray for better readability */
    line-height: 1.8;
    margin-bottom: 1rem;
    font-weight: 500; /* Medium weight for readability */
    font-size: 1.05rem; /* Slightly larger for readability */
}

.card-stats {
    padding-top: 1rem;
    border-top: 2px solid #000000; /* Stronger border */
}

.card-stats .stat {
    color: #000000; /* Black text instead of green */
    font-weight: 800;
    font-size: 1rem; /* Slightly larger */
    background: linear-gradient(90deg, #FFD700, #FFC700); /* Gold gradient background */
    padding: 0.35rem 1rem;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Pricing Section */
.pricing-section {
    padding: 3rem 0; /* Reduced from 8rem to 3rem */
    background: var(--deep-navy);
    color: white;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.pricing-header .section-title {
    color: white;
}

.pricing-header .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-showcase {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.price-card,
.price-card-premium {
    background: white;
    color: var(--charcoal);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
    display: flex;
    flex-direction: column;
}

.price-card-premium {
    border: 3px solid var(--royal-gold);
    transform: scale(1.05);
}

.price-header {
    background: var(--luxury-gradient);
    color: white;
    padding: 3rem;
    text-align: center;
    position: relative;
}

.price-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: var(--royal-gold);
    color: var(--deep-navy);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
}

.period {
    font-size: 1.2rem;
    opacity: 0.8;
}

.price-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.price-features-wrapper {
    position: relative;
}

.scroll-indicator {
    position: absolute;
    bottom: 10px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.65rem;
    color: var(--royal-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: bounce 2s infinite;
}

.scroll-indicator.right {
    right: 1.5rem;
}

.scroll-indicator.left {
    left: 1.5rem;
}

.scroll-indicator i {
    font-size: 0.7rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

.price-features {
    padding: 2rem 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-height: 380px;
    overflow-y: auto;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: var(--royal-gold) rgba(0, 0, 0, 0.08);
}

.price-features::-webkit-scrollbar {
    width: 8px;
}

.price-features::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

.price-features::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--royal-gold) 0%, #B8960F 100%);
    border-radius: 4px;
}

.price-features::-webkit-scrollbar-thumb:hover {
    background: var(--royal-gold);
}

.feature-group h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.feature-group ul {
    list-style: none;
}

.feature-group li {
    padding: 0.5rem 0;
    color: var(--midnight-blue);
}

.price-cta {
    padding: 2rem 3rem 3rem;
    text-align: center;
}

.btn-price-primary {
    background: var(--gold-gradient);
    color: var(--deep-navy);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
    width: auto;
    max-width: 300px;
}

.btn-price-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.price-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--midnight-blue);
    opacity: 0.7;
}

/* New Pricing Elements */
.price-comparison {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.competitor-price {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
}

.savings-badge {
    display: inline-block;
    background: var(--emerald);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--midnight-blue);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list strong {
    color: var(--deep-navy);
}

.everything-in {
    padding: 1rem 0;
    border-bottom: 2px solid var(--royal-gold);
    margin-bottom: 1rem;
}

.include-text {
    font-weight: 700;
    color: var(--deep-navy);
}

/* Launch Special Banner */
.launch-special {
    background: var(--gold-gradient);
    border-radius: 30px;
    padding: 3rem;
    margin-bottom: 5rem; /* Increased margin for more space before pricing cards */
    text-align: center;
}

.special-content h3 {
    font-size: 2rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.special-content p {
    font-size: 1.25rem;
    color: var(--deep-navy);
    margin-bottom: 2rem;
}

.special-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.special-features span {
    color: var(--deep-navy);
    font-weight: 600;
}

.btn-special {
    background: var(--deep-navy);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-special:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Comparison Table */
.comparison-section {
    margin-top: 3rem;
}

.comparison-title {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 2rem;
    color: white;
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-luxury);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: var(--deep-navy);
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: 700;
}

.comparison-table th.highlight {
    background: var(--royal-gold);
    color: var(--deep-navy);
}

.comparison-table td {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--midnight-blue);
}

.comparison-table td.highlight {
    background: rgba(212, 175, 55, 0.1);
    color: var(--deep-navy);
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.enterprise-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
}

.enterprise-option h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--royal-gold);
}

.enterprise-option p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.btn-enterprise {
    background: transparent;
    color: var(--royal-gold);
    border: 2px solid var(--royal-gold);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enterprise:hover {
    background: var(--royal-gold);
    color: var(--deep-navy);
}

/* Success Stories */
.success-stories {
    padding: var(--space-3xl) 0;
    background: var(--pearl);
}

.stories-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

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

.story-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury);
}

.story-quote {
    font-family: var(--font-display);
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--deep-navy);
    margin-bottom: 2rem;
    position: relative;
    padding-left: 2rem;
}

.story-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--royal-gold);
    opacity: 0.5;
}

.story-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.author-info h4 {
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--midnight-blue);
    opacity: 0.7;
    font-size: 0.9rem;
    margin-right: 1rem;
}

.story-metric {
    text-align: right;
    flex-shrink: 0;
    min-width: 100px;
}

.metric-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--emerald);
}

.metric-label {
    font-size: 0.8rem;
    color: var(--midnight-blue);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Final CTA */
.final-cta {
    padding: var(--space-3xl) 0;
    background: var(--luxury-gradient);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--deep-navy);
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1.25rem 2.5rem;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.cta-guarantee {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.check-icon {
    color: var(--royal-gold);
    font-size: 1.2rem;
}

/* Luxury Footer */
.luxury-footer {
    background: var(--charcoal);
    color: white;
    padding-top: var(--space-2xl);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--space-xl);
}

.footer-brand {
    margin-bottom: 2rem;
}

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

.logo-icon {
    font-size: 2rem;
    color: var(--royal-gold);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
}

.footer-tagline {
    color: var(--royal-gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.link-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--royal-gold);
}

.link-column ul {
    list-style: none;
}

.link-column li {
    margin-bottom: 0.75rem;
}

.link-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.link-column a:hover {
    color: white;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
}

.compliance-badges {
    display: flex;
    gap: 1rem;
}

.compliance-badges .badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--royal-gold);
}

/* Animations */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse-gold {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll-arrow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

@keyframes scan {
    0% {
        top: 0;
    }
    100% {
        top: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Hide desktop navigation and show mobile menu */
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #000000;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 2px solid #FFD700;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        display: flex;
    }

    /* Show burger menu on mobile */
    .burger-menu {
        display: flex;
    }

    /* Hide desktop buttons, show mobile actions */
    .desktop-only {
        display: none !important;
    }

    .mobile-actions {
        display: flex;
    }

    .hero-headline {
        font-size: clamp(2rem, 6vw, 4rem);
    }

    .demo-showcase {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .demo-steps {
        flex: 1;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        align-items: center;
    }

    .step-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .demo-visual {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        width: 100%;
    }

    .phone-mockup {
        margin: 0 auto 2rem auto;
    }

    .feature-highlights {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .highlight-item {
        width: 100%;
        max-width: 400px;
        justify-content: flex-start;
    }

    .feature-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

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

    .footer-container {
        grid-template-columns: 1fr;
    }

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

    /* Single column pricing for tablets */
    .pricing-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        flex-direction: row !important;
        gap: 0.5rem !important;
        justify-content: space-between !important;
        margin-bottom: 0 !important;
        padding: 0 1rem 6rem 1rem;
    }

    .stat-item {
        flex: 1;
        text-align: center;
        align-items: center !important;
    }

    .stat-number {
        font-size: 1.5rem !important;
    }

    .stat-label {
        font-size: 0.55rem !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .stat-divider {
        display: none !important;
    }

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    /* Fix horizontal scroll: hide step-card progress bars on mobile */
    .step-card[data-step="1"]::before,
    .step-card[data-step="2"]::before,
    .step-card[data-step="3"]::before {
        display: none;
    }

    /* Fix horizontal scroll: pricing cards minimum width too large */
    .pricing-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .price-card-premium {
        transform: scale(1);
        border-width: 2px;
    }

    .price-header {
        padding: 2rem 1rem;
    }

    .price-features {
        padding: 1.5rem 1rem;
    }

    .scroll-indicator {
        display: none !important;
    }

    .scroll-text {
        font-size: 0.65rem;
    }

    /* Show mobile hero description, hide desktop */
    .hero-description-desktop {
        display: none !important;
    }

    .hero-description-mobile {
        display: block !important;
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --royal-gold: #FFD700;
        --deep-navy: #000033;
        --pearl: #FFFFFF;
        --charcoal: #000000;
    }

    .btn-luxury-primary,
    .btn-hero-primary {
        border: 2px solid currentColor;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    body {
        background: var(--charcoal);
        color: white;
    }

    .feature-card.premium {
        background: #FFFFFF !important;
        color: #000000 !important;
        border: 3px solid #000000 !important;
    }

    .feature-card.premium h3 {
        color: #000000 !important;
    }

    .feature-card.premium p {
        color: #1A1A1A !important;
    }

    .story-card {
        background: #FFFFFF;
        color: #000000;
        border: 2px solid #000000;
    }
}

/* ===================================
   VENUE SELECTOR MODAL
   Multi-location checkout for Enterprise
   =================================== */

.venue-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: venueModalFadeIn 0.2s ease-out;
    padding: 1.25rem;
    box-sizing: border-box;
}

.venue-modal {
    background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
    border-radius: 1.25rem;
    padding: 2.5rem;
    max-width: 37.5rem;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 1.5rem 5rem rgba(0, 0, 0, 0.5);
    animation: venueModalSlideIn 0.3s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.venue-modal__header {
    text-align: center;
    margin-bottom: 2rem;
}

.venue-modal__icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    border-radius: 1rem;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F9FAFB;
}

.venue-modal__title {
    margin: 0 0 0.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: #F9FAFB;
    font-family: var(--font-display);
}

.venue-modal__subtitle {
    margin: 0;
    color: #9CA3AF;
    font-size: 1rem;
}

.venue-modal__options {
    margin-bottom: 1.5rem;
}

/* Venue Option Buttons */
.venue-option {
    width: 100%;
    padding: 1.25rem;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    position: relative;
    font-family: var(--font-body);
}

.venue-option:hover,
.venue-option:focus {
    transform: translateY(-2px);
    border-color: #8B5CF6;
    box-shadow: 0 0.5rem 1.5rem rgba(139, 92, 246, 0.3);
    outline: none;
}

.venue-option:focus-visible {
    outline: 3px solid #8B5CF6;
    outline-offset: 2px;
}

.venue-option--popular {
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    border-color: #8B5CF6;
}

.venue-option__badge {
    position: absolute;
    top: -0.625rem;
    right: 1.25rem;
    background: #F59E0B;
    color: #000;
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 1.25rem;
}

.venue-option__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.venue-option__info {
    flex: 1;
}

.venue-option__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #F9FAFB;
    margin-bottom: 0.25rem;
}

.venue-option__subtitle {
    font-size: 0.875rem;
    color: #9CA3AF;
}

.venue-option__savings {
    color: #10B981;
    margin-left: 0.5rem;
}

.venue-option__price {
    text-align: right;
}

.venue-option__price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #F9FAFB;
}

.venue-option__price-period {
    font-size: 0.75rem;
    color: #9CA3AF;
}

/* Contact Button */
.venue-modal__contact {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    cursor: pointer;
    color: #9CA3AF;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.venue-modal__contact:hover,
.venue-modal__contact:focus {
    border-color: rgba(255, 255, 255, 0.4);
    color: #F9FAFB;
    outline: none;
}

.venue-modal__contact i {
    margin-right: 0.5rem;
}

/* Actions */
.venue-modal__actions {
    display: flex;
    gap: 0.75rem;
}

.venue-modal__cancel {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 0.625rem;
    color: #D1D5DB;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-body);
}

.venue-modal__cancel:hover,
.venue-modal__cancel:focus {
    background: rgba(255, 255, 255, 0.15);
    outline: none;
}

/* Secure Notice */
.venue-modal__secure {
    text-align: center;
    margin-top: 1.25rem;
    color: #6B7280;
    font-size: 0.8125rem;
}

.venue-modal__secure i {
    margin-right: 0.375rem;
}

/* Animations */
@keyframes venueModalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes venueModalSlideIn {
    from {
        transform: translateY(-1.25rem);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 480px) {
    .venue-modal {
        padding: 1.5rem;
        border-radius: 1rem;
    }

    .venue-modal__title {
        font-size: 1.5rem;
    }

    .venue-option {
        padding: 1rem;
    }

    .venue-option__title {
        font-size: 1rem;
    }

    .venue-option__price-amount {
        font-size: 1.25rem;
    }
}