/* ==========================================
   MODERN HOTSPOT WEBSITE STYLES
   ========================================== */

:root {
    /* HotSpot Brand Colors – aligned with app (Live, Discover, Scan, Venue) */
    --color-primary: #6A3EFE;
    --color-secondary: #8B5CF6;
    --color-happy-hour: #F97316;
    --color-special: #A855F7;
    --color-event: #14B8A6;
    --color-alert: #EF4444;
    --color-hot-drop: #FF3B30;
    --color-background: #F8FAFF;
    --color-surface: #FFFFFF;
    --color-surface-muted: #F4F6FF;
    --color-border: #E5E7EB;
    --color-text-primary: #111827;
    --color-text-secondary: #6B7280;
    --color-text-muted: #9CA3AF;
    /* Dark theme (app-style) */
    --color-dark-bg: #0F0F23;
    --color-dark-surface: #1C1C1E;
    --color-dark-card: #2C2C2E;
    --color-dark-border: rgba(255, 255, 255, 0.1);
    --color-dark-text: #FFFFFF;
    --color-dark-text-muted: rgba(255, 255, 255, 0.7);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6A3EFE 0%, #8B5CF6 100%);
    --gradient-warm: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
    --gradient-cool: linear-gradient(135deg, #14B8A6 0%, #2DD4BF 100%);
    --gradient-logo: linear-gradient(135deg, #FF6B45 0%, #F73F17 50%, #FFA500 100%);
    /* Official HotSpot wordmark gradient (matches the in-app venue list brand row) */
    --gradient-brand: linear-gradient(90deg, #8B5CF6 0%, #FF6B1A 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* The HTML hidden attribute must win over component display rules
   (e.g. .btn sets display:inline-flex, which otherwise overrides it). */
[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: var(--color-text-primary);
    background-color: var(--color-background);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.transparent {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Landing page nav: app-style dark header */
.landing-page .navbar.transparent .nav-link {
    color: rgba(255, 255, 255, 0.85);
}
.landing-page .navbar.transparent .nav-link:hover {
    color: #fff;
}
.landing-page .navbar.transparent .nav-link::after {
    background: var(--gradient-primary);
}
.landing-page .logo-text {
    color: #fff;
    background: none;
    -webkit-text-fill-color: #fff;
}
/* Keep the brand gradient wordmark vivid on the dark landing hero */
.landing-page .brand-wordmark {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
/* The landing navbar is always dark (transparent over the dark hero at top,
   and a dark fill once scrolled), so the hamburger bars must be light to stay
   visible. Other pages keep the default dark bars over their light navbar. */
.landing-page .mobile-menu-btn span {
    background: #fff;
}

/* ==========================================
   APP PREVIEW (screenshots – contemporary editorial)
   ========================================== */
.app-preview-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: linear-gradient(180deg, var(--color-dark-bg) 0%, rgba(28, 28, 46, 0.97) 100%);
    position: relative;
    z-index: 5;
    overflow: hidden;
}

.app-preview-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    min-height: 420px;
}

/* Editorial layout: center hero + staggered side phones */
.screenshot-showcase {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    padding: var(--spacing-xl) 0;
}

.phone-mockup {
    position: absolute;
    border-radius: 2.5rem;
    overflow: hidden;
    background: rgba(22, 22, 28, 0.6);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.04);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
    will-change: transform;
}

.phone-mockup img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom;
}

.phone-mockup:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
}

/* Center hero phone – largest */
.phone-mockup--center {
    width: clamp(200px, 26vw, 280px);
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 3;
}
.phone-mockup--center:hover {
    transform: translateX(-50%) translateY(-6px) scale(1.02);
}

/* Left stack – smaller, subtle overlap */
.phone-mockup--left {
    width: clamp(140px, 18vw, 200px);
    left: 8%;
    bottom: 2%;
    z-index: 2;
    opacity: 0.92;
}
.phone-mockup--left:hover { opacity: 1; }

.phone-mockup--right {
    width: clamp(140px, 18vw, 200px);
    right: 8%;
    bottom: 2%;
    z-index: 2;
    opacity: 0.92;
}
.phone-mockup--right:hover { opacity: 1; }

.phone-mockup--far-right {
    width: clamp(120px, 14vw, 165px);
    right: 0;
    bottom: 8%;
    z-index: 1;
    opacity: 0.85;
}
.phone-mockup--far-right:hover { opacity: 1; }

/* Smooth entrance – staggered fade */
.app-preview-section .phone-mockup {
    opacity: 0;
    animation: appPreviewIn 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.app-preview-section .phone-mockup--center { animation-delay: 0.1s; }
.app-preview-section .phone-mockup--left { animation-delay: 0.25s; }
.app-preview-section .phone-mockup--right { animation-delay: 0.25s; }
.app-preview-section .phone-mockup--far-right { animation-delay: 0.4s; }

@keyframes appPreviewIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.app-preview-section .phone-mockup--center {
    animation-name: appPreviewInCenter;
}
@keyframes appPreviewInCenter {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@media (max-width: 900px) {
    .screenshot-showcase {
        flex-wrap: wrap;
        position: relative;
        min-height: auto;
        justify-content: center;
        gap: var(--spacing-lg);
        padding: var(--spacing-2xl) 0;
    }
    .phone-mockup {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        opacity: 1;
        width: clamp(140px, 28vw, 180px) !important;
        animation: none;
    }
    .phone-mockup--center {
        order: 1;
        width: clamp(180px, 40vw, 220px) !important;
    }
    .phone-mockup:hover {
        transform: translateY(-4px) scale(1.01) !important;
    }
    .phone-mockup--center:hover {
        transform: translateY(-4px) scale(1.01) !important;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) var(--spacing-lg);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.logo:hover {
    opacity: 0.92;
}

/* App flame mark (transparent background – just the flame) */
.logo-flame {
    height: 40px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}
.navbar .logo-flame { height: 44px; }
.logo-footer .logo-flame { height: 34px; }

/* "HotSpot" wordmark – official in-app brand gradient (purple -> orange) */
.brand-wordmark {
    font-weight: 800;
    font-style: italic;
    letter-spacing: 0.5px;
    font-size: 1.6rem;
    line-height: 1;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.navbar .brand-wordmark { font-size: 1.7rem; }
.logo-footer .brand-wordmark { font-size: 1.35rem; }

/* Legacy aliases kept so any not-yet-updated markup still renders */
.logo-icon { width: 28px; height: 28px; object-fit: contain; flex-shrink: 0; margin-right: 8px; }
.logo-text-image { height: 44px; width: auto; object-fit: contain; object-position: left center; flex-shrink: 0; display: block; }
.logo-text {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link.active {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

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

.cta-button {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.cta-button::after {
    display: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: var(--transition-base);
    border-radius: 2px;
}

/* ==========================================
   LANDING PAGE
   ========================================== */
.landing-page {
    background: var(--color-dark-bg);
    min-height: 100vh;
}

.landing-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: calc(80px + var(--spacing-xl)) 0 var(--spacing-2xl);
}

/* Center the hero content once within the viewport (nav offset handled by padding) */
.landing-hero > .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.landing-content {
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(106, 62, 254, 0.12);
    border: 1px solid rgba(106, 62, 254, 0.2);
    color: rgba(196, 181, 253, 0.95);
    padding: 0.5rem 1.125rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.6s ease-out;
}

.pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
}
.pill-badge.purple { background: rgba(106, 62, 254, 0.15); color: rgba(196, 181, 253, 0.95); border: 1px solid rgba(106, 62, 254, 0.2); }
.pill-badge.orange { background: rgba(249, 115, 22, 0.15); color: rgba(253, 186, 116, 0.95); }
.pill-badge.teal { background: rgba(20, 184, 166, 0.12); color: rgba(94, 234, 212, 0.95); }

.landing-title {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: white;
    animation: fadeInUp 0.8s ease-out;
}

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

.landing-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out;
}

/* Soft filter pills on landing */
.landing-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: var(--spacing-2xl);
    animation: fadeInUp 1.05s ease-out;
}
.landing-pill {
    padding: 0.5rem 1.125rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.landing-pill.orange { background: rgba(249, 115, 22, 0.2); border-color: rgba(249, 115, 22, 0.25); }
.landing-pill.purple { background: rgba(106, 62, 254, 0.2); border-color: rgba(106, 62, 254, 0.25); }
.landing-pill.teal { background: rgba(20, 184, 166, 0.2); border-color: rgba(20, 184, 166, 0.25); }
.landing-pill.blue { background: rgba(59, 130, 246, 0.2); border-color: rgba(59, 130, 246, 0.25); }
.landing-pill:hover { transform: translateY(-1px); background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.12); }

.choice-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    max-width: 900px;
    margin: 0 auto var(--spacing-3xl);
    animation: fadeInUp 1.2s ease-out;
}

.choice-card {
    background: rgba(28, 28, 46, 0.85);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1.5rem;
    padding: var(--spacing-2xl);
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.3s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: visible;
}

/* Subtle left accent */
.choice-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 3px 0 0 3px;
    transition: width 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}
.user-card::before { background: var(--gradient-primary); }
.venue-card::before { background: var(--gradient-warm); }

.choice-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}
.choice-card:hover::before { width: 4px; opacity: 1; }

.choice-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 8px 20px rgba(106, 62, 254, 0.35);
}
.venue-card .choice-icon { background: var(--gradient-warm); }

.choice-icon svg {
    color: white;
}

.choice-card h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.choice-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.choice-arrow {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
}
.user-card .choice-arrow { color: #8B8BFF; }
.venue-card .choice-arrow { color: #FB923C; }

.landing-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease-out;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Animated Background */
.bg-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(106, 62, 254, 0.5) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation: float 20s ease-in-out infinite;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.5) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation: float 25s ease-in-out infinite reverse;
}

.circle-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.35) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: float 30s ease-in-out infinite;
}

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

/* ==========================================
   HERO SECTIONS
   ========================================== */
.hero {
    padding: calc(80px + var(--spacing-3xl)) 0 var(--spacing-3xl);
    background: linear-gradient(135deg, #F8FAFF 0%, #E5E7FF 100%);
    position: relative;
    overflow: hidden;
}

.users-hero {
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
}

.venues-hero {
    background: linear-gradient(135deg, #FFF7ED 0%, #FFEDD5 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge.venue-badge {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    color: #F97316;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

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

.btn-secondary {
    background: white;
    color: var(--color-primary);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-proof {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    padding-top: var(--spacing-md);
}

.app-rating {
    display: flex;
    flex-direction: column;
}

.stars {
    color: #FFC107;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.app-rating span,
.download-count {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.download-count strong {
    color: var(--color-text-primary);
    font-weight: 700;
}

.venue-stats-hero {
    display: flex;
    gap: var(--spacing-2xl);
    padding-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.stat-item-hero {
    text-align: left;
}

.stat-number-hero {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label-hero {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out;
}

.phone-showcase {
    position: relative;
    width: 320px;
    height: 580px;
}

.phone-frame {
    width: 100%;
    height: 100%;
    background: #0d0d12;
    border-radius: 2.25rem;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    overflow: hidden;
}

.app-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 1.75rem;
}

.floating-element {
    position: absolute;
    background: white;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--color-text-primary);
    animation: floatSlow 6s ease-in-out infinite;
}

.floating-element svg {
    color: var(--color-primary);
}

.float-1 {
    top: 50px;
    right: -50px;
    animation-delay: 0s;
}

.float-2 {
    bottom: 100px;
    left: -50px;
    animation-delay: 3s;
}

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

/* ==========================================
   VALUE PROPOSITION
   ========================================== */
.value-prop-section {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.value-prop-card {
    text-align: center;
    padding: var(--spacing-xl);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    box-shadow: var(--shadow-lg);
}

.value-icon svg {
    color: white;
}

.value-prop-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

.value-prop-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
    padding: var(--spacing-3xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================
   MODERN FEATURE CARDS
   ========================================== */
.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card-modern {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 2px solid var(--color-border);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

/* App-style left accent bar on feature cards */
.feature-card-modern::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: opacity var(--transition-base);
}
.feature-card-modern:hover::before,
.feature-card-modern.featured::before { opacity: 1; }

.feature-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.feature-card-modern.featured {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(91, 92, 230, 0.05) 0%, white 100%);
}

.featured-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-icon-modern {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-lg);
    box-shadow: var(--shadow-md);
}

.feature-icon-modern svg {
    color: white;
}

/* User Feature Icon Colors - Match App */
.feature-icon-modern.icon-hotfeed {
    background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
}

.feature-icon-modern.icon-discovery {
    background: linear-gradient(135deg, #5B5CE6 0%, #8B5BE6 100%);
}

.feature-icon-modern.icon-hotsync {
    background: linear-gradient(135deg, #EC4899 0%, #F472B6 100%);
}

.feature-icon-modern.icon-qr-checkin {
    background: linear-gradient(135deg, #14B8A6 0%, #2DD4BF 100%);
}

.feature-icon-modern.icon-hot-alerts {
    background: linear-gradient(135deg, #EF4444 0%, #F87171 100%);
}

.feature-icon-modern.icon-events {
    background: linear-gradient(135deg, #A855F7 0%, #C084FC 100%);
}

/* Venue Feature Icon Colors - Match App */
.feature-icon-modern.icon-analytics {
    background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
}

.feature-icon-modern.icon-flash-deals {
    background: linear-gradient(135deg, #EF4444 0%, #F87171 100%);
}

.feature-icon-modern.icon-promotions {
    background: linear-gradient(135deg, #F97316 0%, #FB923C 100%);
}

.feature-icon-modern.icon-insights {
    background: linear-gradient(135deg, #8B5BE6 0%, #A78BFA 100%);
}

.feature-icon-modern.icon-qr-system {
    background: linear-gradient(135deg, #14B8A6 0%, #2DD4BF 100%);
}

.feature-icon-modern.icon-live-stats {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}

.feature-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
}

.feature-description-modern {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

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

.feature-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.feature-benefits li svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #F8FAFF 0%, white 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 2px solid var(--color-border);
    transition: all var(--transition-base);
}

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

.testimonial-rating {
    color: #FFC107;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
}

.testimonial-text {
    color: var(--color-text-primary);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--color-text-primary);
    font-weight: 700;
}

.testimonial-author span {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* ==========================================
   DOWNLOAD SECTION
   ========================================== */
.download-section-modern {
    padding: var(--spacing-3xl) 0;
    background: white;
}

.download-content-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-3xl);
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
}

.download-visual {
    display: flex;
    justify-content: center;
}

.download-phones {
    position: relative;
}

.phone-img {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.download-buttons-large {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.store-button-large {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: var(--color-text-primary);
    color: white;
    padding: 16px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.store-button-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--color-primary);
}

.store-icon-large {
    width: 36px;
    height: 36px;
}

.store-icon-large svg {
    width: 100%;
    height: 100%;
}

.store-text-large {
    text-align: left;
}

.store-subtitle-large {
    font-size: 0.75rem;
    opacity: 0.9;
}

.store-title-large {
    font-size: 1.25rem;
    font-weight: 700;
}

.download-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.download-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-text-secondary);
}

.download-feature-item svg {
    color: var(--color-primary);
}

/* ==========================================
   CTA SECTIONS
   ========================================== */
.cta-section-venue {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.cta-section-venue .section-title,
.cta-section-venue .section-subtitle {
    color: white;
}

.cta-content-venue {
    text-align: center;
}

.cta-buttons-venue {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin: var(--spacing-xl) 0;
    flex-wrap: wrap;
}

.cta-features-venue {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-feature-item svg {
    color: #8B8BFF;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--color-dark-bg);
    color: white;
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--color-dark-border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 3.6fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand .logo {
    color: white;
    margin-bottom: var(--spacing-md);
}

.footer-brand .logo-text {
    background: linear-gradient(135deg, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
}

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

@media (max-width: 900px) {
    .footer-links { grid-template-columns: repeat(2, 1fr); gap: var(--spacing-xl) var(--spacing-lg); }
}

.footer-column h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: white;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: var(--spacing-xs);
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: white;
    padding-left: var(--spacing-xs);
}

/* ==========================================
   SCHEDULE (Calendly) PAGE
   ========================================== */
.schedule-section {
    background: var(--color-dark-bg);
    /* Top padding clears the fixed ~80px navbar (same offset the hero uses) so the heading isn't
       tucked under it. No min-height: the section sizes to its content (header + 700px Calendly
       widget) instead of being forced to 80vh, which left a dark gap below the widget on tall screens. */
    padding: calc(80px + var(--spacing-3xl)) 0 var(--spacing-3xl);
}

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

.schedule-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
}

.schedule-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    max-width: 480px;
    margin: 0 auto;
}

.calendly-inline-widget {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.minimal-footer {
    padding: var(--spacing-xl) 0;
}

.footer-minimal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.footer-links-minimal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-links-minimal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-links-minimal a:hover {
    color: white;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .hero-container,
    .download-content-modern {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-buttons,
    .social-proof,
    .venue-stats-hero {
        justify-content: center;
    }
    
    .stat-item-hero {
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .landing-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .choice-cards {
        grid-template-columns: 1fr;
    }
    
    .features-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .value-props {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-minimal {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .phone-showcase {
        width: 280px;
        height: 500px;
    }
    
    .floating-element {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .download-buttons-large {
        flex-direction: column;
    }
    
    .store-button-large {
        width: 100%;
    }
}

/* ==========================================
   FAQ SECTION
   ========================================== */

.faq-section {
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-surface) 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}

.faq-item {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--color-primary);
    transition: transform var(--transition-base);
}

.faq-item:hover .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

/* ==========================================
   EMAIL CAPTURE / WAITLIST
   ========================================== */

.email-signup-inline {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(91, 92, 230, 0.05) 0%, rgba(139, 91, 230, 0.05) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(91, 92, 230, 0.1);
}

.venue-email-signup {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(251, 146, 60, 0.05) 100%);
    border-color: rgba(249, 115, 22, 0.1);
}

.email-signup-label {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.email-form {
    display: flex;
    gap: var(--spacing-sm);
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 0.875rem var(--spacing-md);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-base);
    background: var(--color-surface);
}

.email-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(91, 92, 230, 0.1);
}

.email-submit-btn {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 0.875rem var(--spacing-lg);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.email-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.email-submit-btn svg {
    transition: transform var(--transition-base);
}

.email-submit-btn:hover svg {
    transform: translateX(4px);
}

.email-submit-btn--link {
    text-decoration: none;
    color: white;
}

/* ==========================================
   COLORADO COVERAGE SECTION
   ========================================== */

.coverage-section {
    background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-background) 100%);
    overflow: hidden;
    position: relative;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.coverage-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.coverage-cities {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    margin: var(--spacing-xl) 0;
}

.city-tag {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    font-weight: 500;
    color: var(--color-text-primary);
    transition: all var(--transition-base);
}

.city-tag:hover {
    border-color: var(--color-primary);
    background: rgba(91, 92, 230, 0.05);
    transform: translateY(-2px);
}

.city-tag svg {
    color: var(--color-primary);
}

.coverage-expansion {
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(91, 92, 230, 0.1) 0%, rgba(139, 91, 230, 0.1) 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
}

.coverage-expansion p {
    margin: 0;
    color: var(--color-text-primary);
}

.coverage-visual {
    position: relative;
}

.colorado-map {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    filter: drop-shadow(0 10px 30px rgba(91, 92, 230, 0.2));
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.coverage-stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
}

.coverage-stat-icon {
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
}

.coverage-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.coverage-stat-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* ==========================================
   SOCIAL MEDIA LINKS
   ========================================== */

.social-links {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(91, 92, 230, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* ==========================================
   FOOTER ENHANCEMENTS
   ========================================== */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
    margin-top: var(--spacing-xl);
}

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-lg);
}

.footer-bottom-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* ==========================================
   LOADING STATES & ANIMATIONS
   ========================================== */

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

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

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

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ==========================================
   TRUST & SECURITY BADGES
   ========================================== */

.trust-section {
    padding: var(--spacing-2xl) 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--color-background);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border);
}

.trust-badge-icon {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
}

.trust-badge-title {
    font-weight: 600;
    color: var(--color-text-primary);
    font-size: 0.875rem;
}

.trust-badge-subtitle {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

/* ==========================================
   LEGAL PAGES STYLING
   ========================================== */

.legal-section {
    padding: var(--spacing-3xl) 0;
    background: var(--color-surface);
}

.legal-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 2px solid var(--color-border);
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.legal-updated {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-md);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
}

.legal-content h2:first-child {
    border-top: none;
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
}

.legal-content p {
    margin-bottom: var(--spacing-md);
}

.legal-content ul, .legal-content ol {
    margin-bottom: var(--spacing-md);
    padding-left: var(--spacing-xl);
}

.legal-content li {
    margin-bottom: var(--spacing-xs);
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: color var(--transition-fast);
}

.legal-content a:hover {
    color: var(--color-secondary);
}

.legal-content strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.legal-footer-note {
    margin-top: var(--spacing-3xl);
    padding: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(91, 92, 230, 0.05) 0%, rgba(139, 91, 230, 0.05) 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
}

.legal-footer-note p {
    margin: 0;
    color: var(--color-text-primary);
    font-size: 1.05rem;
}

/* ==========================================
   404 PAGE STYLING
   ========================================== */

.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-surface) 100%);
}

.error-content {
    text-align: center;
    max-width: 600px;
    padding: var(--spacing-2xl);
}

.error-code {
    font-size: 8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--spacing-md);
}

.error-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
}

.error-description {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.error-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   BLOG STYLING
   ========================================== */

.blog-hero {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-surface) 100%);
    text-align: center;
}

.blog-title-main {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
}

.blog-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.blog-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary);
}

.blog-card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--gradient-primary);
}

.blog-card-content {
    padding: var(--spacing-lg);
}

.blog-card-category {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(91, 92, 230, 0.1);
    color: var(--color-primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.blog-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-border);
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.blog-card-readtime {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.blog-categories {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.category-filter {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-base);
}

.category-filter:hover,
.category-filter.active {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--color-primary);
}

.blog-empty-state {
    text-align: center;
    padding: var(--spacing-3xl);
    color: var(--color-text-secondary);
}

.blog-empty-state svg {
    width: 120px;
    height: 120px;
    margin-bottom: var(--spacing-lg);
    opacity: 0.5;
}

/* Blog post (single article) pages */
a.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.blog-post-hero {
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-surface) 100%);
    text-align: center;
}

.blog-post-back {
    display: inline-block;
    margin-bottom: var(--spacing-lg);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.blog-post-back:hover {
    text-decoration: underline;
}

.blog-post-hero .blog-card-category {
    margin-bottom: var(--spacing-md);
}

.blog-post-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.blog-post-meta {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.blog-post-content {
    max-width: 720px;
    margin: 0 auto var(--spacing-3xl);
    padding: var(--spacing-xl) 0;
}

.blog-post-content .lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-2xl);
}

.blog-post-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-md);
}

.blog-post-content p {
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.blog-post-content a {
    color: var(--color-primary);
    text-decoration: none;
}

.blog-post-content a:hover {
    text-decoration: underline;
}

.blog-post-cta {
    display: inline-block;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--gradient-primary);
    color: white !important;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.blog-post-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    text-decoration: none;
}

/* ==========================================
   RESPONSIVE UPDATES
   ========================================== */

@media (max-width: 1024px) {
    .coverage-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .email-form {
        flex-direction: column;
    }
    
    .email-submit-btn {
        justify-content: center;
    }
    
    .coverage-cities {
        justify-content: center;
    }
    
    .coverage-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .city-tag {
        font-size: 0.875rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
}

/* ==========================================
   CHUGACHEW × HOTSPOT — Get Featured / Suggest a Spot / Admin
   ========================================== */

.container-narrow { max-width: 760px; }

/* Eyebrow pill + hero helpers */
.eyebrow-pill {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(106, 62, 254, 0.12);
    color: var(--color-primary);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-md);
}
.eyebrow-pill .pill-x { color: var(--color-happy-hour); }
.hero-microcopy { margin-top: var(--spacing-md); color: var(--color-text-secondary); }
.hero-microcopy strong { color: var(--color-text-primary); }
.hero-centered { text-align: center; margin: 0 auto; }
.featured-hero, .suggest-hero { min-height: auto; padding: 8rem 0 4rem; }

/* How it works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-2xl);
}
.step-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-sm);
}
.step-number {
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: #fff; font-weight: 800; font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}
.step-card h3 { margin-bottom: var(--spacing-xs); }
.step-card p { color: var(--color-text-secondary); }

/* Example video gallery (facade) */
.examples-section { background: var(--color-surface-muted); }
.video-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}
.video-facade {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    background: linear-gradient(160deg, #2b1b54 0%, #8B5CF6 60%, #FF6B1A 100%);
    box-shadow: var(--shadow-lg);
    border: none;
    display: flex; align-items: flex-end;
    transition: transform var(--transition-base);
}
.video-facade:hover { transform: translateY(-4px); }
.video-facade .video-thumb {
    position: absolute; inset: 0;
    width: 100%; height: 100%; object-fit: cover;
}
.video-facade .video-platform {
    position: absolute; top: 12px; left: 12px;
    background: rgba(0,0,0,0.6); color: #fff;
    padding: 0.25rem 0.6rem; border-radius: var(--radius-full);
    font-size: 0.75rem; font-weight: 700; z-index: 2;
}
.video-facade .video-play {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(255,255,255,0.92); color: var(--color-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; z-index: 2;
    box-shadow: var(--shadow-lg);
}
.video-facade .video-title {
    position: relative; z-index: 2;
    color: #fff; font-weight: 700; padding: var(--spacing-md);
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    background: linear-gradient(transparent, rgba(0,0,0,0.55));
    width: 100%;
}
.video-facade.is-loaded { cursor: default; aspect-ratio: 9 / 16; background: #000; }
.video-facade.is-loaded iframe,
.video-facade.is-loaded blockquote { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; margin: 0; }
.examples-note { text-align: center; color: var(--color-text-muted); margin-top: var(--spacing-lg); font-size: 0.9rem; }
.examples-empty { text-align: center; color: var(--color-text-secondary); padding: var(--spacing-2xl) 0; }

/* Value band */
.value-band-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}
.check-list { list-style: none; margin-top: var(--spacing-md); }
.check-list li { position: relative; padding-left: 1.8rem; margin-bottom: 0.7rem; color: var(--color-text-secondary); }
.check-list li::before {
    content: "✓"; position: absolute; left: 0; top: 0;
    color: var(--color-event); font-weight: 800;
}
.value-stat-stack { display: grid; gap: var(--spacing-md); }
.value-stat {
    background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--radius-lg); padding: var(--spacing-lg); text-align: center;
    box-shadow: var(--shadow-sm);
}
.value-stat-num {
    display: block; font-size: 2.4rem; font-weight: 800;
    background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.value-stat-label { color: var(--color-text-secondary); font-size: 0.9rem; }

/* ----- Forms / wizard ----- */
.apply-section { background: var(--color-background); }
/* Compact the application section so the heading + form step + Next/Submit
   fit on screen without extra scrolling after the "Apply" CTA jump. */
#apply { scroll-margin-top: 84px; }
.apply-section.section { padding: var(--spacing-md) 0 var(--spacing-xl); }
.apply-section .cc-section-title { font-size: clamp(1.4rem, 2.6vw, 1.85rem); }
.apply-section .cc-kicker { margin-bottom: 0.3rem; }
.apply-section .cc-section-sub { font-size: 0.95rem; margin-top: 0.35rem; }
.apply-section .cc-apply-trust { margin-top: 0.6rem; }
.apply-section .wizard { margin-top: var(--spacing-sm); padding: var(--spacing-md) var(--spacing-lg); }
.apply-section .wizard-progress { margin-bottom: var(--spacing-sm); }
.apply-section .wizard-step legend { font-size: 1.1rem; margin-bottom: var(--spacing-sm); }
.apply-section .form-field { margin-bottom: var(--spacing-sm); }
.apply-section .step-help { margin-bottom: var(--spacing-sm); }
.apply-section .wizard-controls { margin-top: var(--spacing-md); }
.wizard {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--spacing-2xl);
    box-shadow: var(--shadow-lg);
    margin-top: var(--spacing-xl);
}
.wizard-progress { display: flex; gap: 0.5rem; justify-content: center; margin-bottom: var(--spacing-xl); flex-wrap: wrap; }
.wizard-dot {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--color-surface-muted); color: var(--color-text-muted);
    font-weight: 700; font-size: 0.85rem; border: 2px solid var(--color-border);
    transition: all var(--transition-base);
}
.wizard-dot.active { background: var(--gradient-primary); color: #fff; border-color: transparent; }
.wizard-dot.done { background: var(--color-event); color: #fff; border-color: transparent; }

.wizard-step { border: none; margin: 0; padding: 0; }
.wizard-step legend { font-size: 1.4rem; font-weight: 800; margin-bottom: var(--spacing-lg); color: var(--color-text-primary); }

/* Fixed-height step region: keeps the Back/Next controls in the exact same spot on
   every step and stops the card from growing/shrinking as steps change. Only this
   region scrolls (rarely) if a step is taller than the available space. */
.wizard-viewport {
    /* Adapts to the space left under the heading/progress so the whole card fits a
       laptop viewport; clamps keep it usable on very short and very tall screens. */
    height: clamp(12rem, calc(100vh - 21rem), 26rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0.25rem 0.4rem 0 0;
    margin-right: -0.4rem;
}

.form-field { display: block; margin-bottom: var(--spacing-md); }
.form-field > span { display: block; font-weight: 600; margin-bottom: 0.4rem; color: var(--color-text-primary); }
.form-field.required > span::after { content: " *"; color: var(--color-alert); }
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%; padding: 0.8rem 1rem;
    border: 1px solid var(--color-border); border-radius: var(--radius-md);
    font-size: 1rem; font-family: inherit; background: var(--color-surface);
    color: var(--color-text-primary); transition: border-color var(--transition-fast);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(106,62,254,0.12); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-md); }
.form-row { margin-bottom: 0; }
.form-hint { display: block; font-size: 0.85rem; font-weight: 400; color: var(--color-text-secondary); margin-top: 0.35rem; }

/* Google Places autocomplete dropdown (Get Featured business-name field) */
.places-ac { position: relative; }
.places-ac-results {
    position: absolute; top: calc(100% + 4px); left: 0; right: 0;
    margin: 0; padding: 0.3rem; list-style: none;
    background: var(--color-surface);
    border: 1px solid var(--color-border); border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-height: 280px; overflow-y: auto; z-index: 50;
}
.places-ac-item {
    display: flex; flex-direction: column; gap: 1px;
    padding: 0.55rem 0.7rem; border-radius: var(--radius-sm);
    cursor: pointer; transition: background var(--transition-fast);
}
.places-ac-item:hover,
.places-ac-item[aria-selected="true"] { background: var(--color-surface-muted); }
.places-ac-primary { font-weight: 600; color: var(--color-text-primary); }
.places-ac-secondary { font-size: 0.82rem; color: var(--color-text-secondary); }

/* Honeypot — visually hidden but present for bots */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.info-callout {
    background: rgba(106, 62, 254, 0.07);
    border-left: 4px solid var(--color-primary);
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-md);
    color: var(--color-text-secondary);
}
.info-callout strong { color: var(--color-text-primary); }
.info-callout.callout-amber { background: rgba(249, 115, 22, 0.09); border-left-color: var(--color-happy-hour); }
.info-callout p { margin: 0.5rem 0 0; }
.info-callout p:first-child { margin-top: 0; }
.info-callout ul { margin: 0.5rem 0 0; padding-left: 1.15rem; }
.info-callout li { margin-bottom: 0.3rem; }
.info-callout li:last-child { margin-bottom: 0; }
.info-callout a { color: var(--color-primary); font-weight: 600; }
.info-callout .callout-title { display: block; font-size: 1.05rem; color: var(--color-text-primary); margin-bottom: 0.35rem; }
.info-callout .callout-price { display: block; margin-top: 0.6rem; font-weight: 600; color: var(--color-text-primary); }

/* Collapsible call-outs (keep the permissions step compact / scroll-free) */
.info-callout-toggle { margin-bottom: var(--spacing-md); }
.info-callout-toggle > summary.callout-title {
    cursor: pointer; list-style: none; display: flex; align-items: center; gap: 0.5rem;
    font-weight: 700; margin-bottom: 0;
}
.info-callout-toggle > summary.callout-title::-webkit-details-marker { display: none; }
.info-callout-toggle > summary.callout-title::after {
    content: "+"; margin-left: auto; font-weight: 700;
    color: var(--color-primary); font-size: 1.25rem; line-height: 1;
}
.info-callout-toggle[open] > summary.callout-title { margin-bottom: 0.5rem; }
.info-callout-toggle[open] > summary.callout-title::after { content: "\2212"; }
.step-help { color: var(--color-text-secondary); margin-bottom: var(--spacing-lg); }

/* Checkbox group (e.g. dietary options) */
.checkbox-group { border: none; padding: 0; margin: 0 0 var(--spacing-lg); }
.checkbox-group > legend {
    font-weight: 600; color: var(--color-text-primary);
    padding: 0; margin-bottom: 0.6rem; font-size: 0.95rem;
}
.checkbox-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-sm); }
.check-chip {
    display: flex; align-items: center; gap: 0.5rem;
    border: 1px solid var(--color-border); border-radius: var(--radius-md);
    padding: 0.6rem 0.8rem; cursor: pointer; transition: all var(--transition-fast);
    color: var(--color-text-secondary); user-select: none;
}
.check-chip:hover { border-color: var(--color-primary); }
.check-chip input { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--color-primary); }
.check-chip:has(input:checked) {
    border-color: var(--color-primary); background: rgba(106, 62, 254, 0.07);
    color: var(--color-text-primary); font-weight: 600;
}

/* Add-ons */
.addon-list { display: grid; gap: var(--spacing-sm); }
.addon-option {
    display: flex; gap: var(--spacing-sm); align-items: flex-start;
    border: 1px solid var(--color-border); border-radius: var(--radius-md);
    padding: var(--spacing-md); cursor: pointer; transition: all var(--transition-fast);
}
.addon-option:hover { border-color: var(--color-primary); }
.addon-checkbox { margin-top: 0.25rem; width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--color-primary); }
.addon-body { display: flex; flex-direction: column; flex: 1 1 auto; min-width: 0; }
.addon-title { font-weight: 700; display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.addon-price { color: var(--color-primary); flex-shrink: 0; white-space: nowrap; }
.addon-desc { color: var(--color-text-secondary); font-size: 0.9rem; }
.addon-total-row {
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 800; font-size: 1.2rem; margin: var(--spacing-lg) 0;
    padding-top: var(--spacing-md); border-top: 1px solid var(--color-border);
}

.payment-block { margin-top: var(--spacing-md); }
.stripe-card-element {
    padding: 0.9rem 1rem; border: 1px solid var(--color-border);
    border-radius: var(--radius-md); background: var(--color-surface);
}
.payment-secure-note { font-size: 0.8rem; color: var(--color-text-muted); margin-top: 0.5rem; }
.field-error { color: var(--color-alert); font-size: 0.85rem; min-height: 1rem; }

.calendly-wrap { margin-bottom: var(--spacing-lg); }
.review-summary {
    background: var(--color-surface-muted); border-radius: var(--radius-md);
    padding: var(--spacing-md); margin-bottom: var(--spacing-lg);
}
.review-row { display: flex; justify-content: space-between; gap: 1rem; padding: 0.4rem 0; border-bottom: 1px dashed var(--color-border); }
.review-row:last-child { border-bottom: none; }
.review-row span { color: var(--color-text-secondary); }
.review-row strong { text-align: right; }
.consent-row { display: flex; gap: 0.6rem; align-items: flex-start; color: var(--color-text-secondary); }
.consent-row input { margin-top: 0.25rem; width: 18px; height: 18px; accent-color: var(--color-primary); }

.wizard-controls { display: flex; gap: var(--spacing-sm); justify-content: space-between; margin-top: var(--spacing-xl); }
.wizard-controls .btn-primary { margin-left: auto; }
.btn-ghost { background: transparent; color: var(--color-text-secondary); border: 1px solid var(--color-border); }
.btn-ghost:hover { background: var(--color-surface-muted); }
.btn-sm { padding: 0.5rem 0.9rem; font-size: 0.85rem; }

.form-status { margin-top: var(--spacing-md); text-align: center; color: var(--color-text-secondary); min-height: 1.2rem; }
.form-status-error { color: var(--color-alert); }

.wizard-success { text-align: center; padding: var(--spacing-xl) 0; }
.success-check {
    width: 72px; height: 72px; border-radius: 50%; margin: 0 auto var(--spacing-md);
    background: var(--color-event); color: #fff; font-size: 2.4rem;
    display: flex; align-items: center; justify-content: center;
}
.wizard-success h3 { font-size: 1.6rem; margin-bottom: var(--spacing-sm); }
.wizard-success p { color: var(--color-text-secondary); max-width: 520px; margin: 0 auto var(--spacing-lg); }
.success-actions { display: flex; gap: var(--spacing-sm); justify-content: center; flex-wrap: wrap; }

/* ----- Admin console ----- */
.admin-body { background: var(--color-background); }
.admin-header {
    display: flex; align-items: center; gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--color-surface); border-bottom: 1px solid var(--color-border);
    position: sticky; top: 0; z-index: 100;
}
.admin-tag { font-weight: 700; color: var(--color-text-secondary); }
.admin-logout { margin-left: auto; }
.admin-main { max-width: 980px; margin: 0 auto; padding: var(--spacing-xl) var(--spacing-lg); }

.admin-login-card {
    max-width: 420px; margin: var(--spacing-2xl) auto;
    background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--radius-xl); padding: var(--spacing-2xl); box-shadow: var(--shadow-lg);
}
.admin-login-card h1 { margin-bottom: 0.3rem; }
.admin-login-sub { color: var(--color-text-secondary); margin-bottom: var(--spacing-lg); }
.admin-login-card .btn { width: 100%; }

.admin-tabs { display: flex; gap: 0.5rem; margin-bottom: var(--spacing-lg); }
.admin-tab {
    padding: 0.6rem 1.2rem; border: 1px solid var(--color-border); background: var(--color-surface);
    border-radius: var(--radius-full); cursor: pointer; font-weight: 700; color: var(--color-text-secondary);
}
.admin-tab.active { background: var(--gradient-primary); color: #fff; border-color: transparent; }
.admin-toolbar { display: flex; gap: var(--spacing-md); align-items: center; margin-bottom: var(--spacing-lg); flex-wrap: wrap; }
.admin-toolbar select { padding: 0.5rem; border-radius: var(--radius-sm); border: 1px solid var(--color-border); }

.admin-list { display: grid; gap: var(--spacing-md); }
.admin-loading, .admin-empty { color: var(--color-text-muted); text-align: center; padding: var(--spacing-xl); }
.admin-card {
    background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--radius-lg); padding: var(--spacing-lg); box-shadow: var(--shadow-sm);
}
.admin-card-head { display: flex; justify-content: space-between; gap: 1rem; margin-bottom: var(--spacing-md); }
.admin-card-head h3 { margin: 0; }
.admin-meta { color: var(--color-text-muted); font-size: 0.85rem; }
.admin-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-sm) var(--spacing-lg); margin-bottom: var(--spacing-md); }
.kv span { display: block; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--color-text-muted); }
.kv p { margin: 0; color: var(--color-text-primary); }
.admin-addons { font-size: 0.9rem; color: var(--color-text-secondary); margin-bottom: var(--spacing-sm); }
.admin-pay { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; padding: var(--spacing-sm) 0; font-weight: 600; }
.admin-pay.muted { color: var(--color-text-muted); font-weight: 400; }
.admin-actions { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; margin-top: var(--spacing-md); padding-top: var(--spacing-md); border-top: 1px solid var(--color-border); }
.admin-actions select { padding: 0.5rem; border-radius: var(--radius-sm); border: 1px solid var(--color-border); }
.admin-actions .app-notes, .admin-actions .sug-notes { flex: 1; min-width: 160px; padding: 0.5rem; border-radius: var(--radius-sm); border: 1px solid var(--color-border); }
.admin-row-status { font-size: 0.85rem; color: var(--color-text-secondary); }
.admin-pager { display: flex; gap: var(--spacing-md); align-items: center; justify-content: center; margin-top: var(--spacing-lg); color: var(--color-text-secondary); }

.badge { display: inline-block; padding: 0.2rem 0.6rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; }
.badge-status { background: var(--color-surface-muted); color: var(--color-text-secondary); border: 1px solid var(--color-border); }
.badge-none { background: var(--color-surface-muted); color: var(--color-text-muted); }
.badge-card_saved { background: rgba(106,62,254,0.12); color: var(--color-primary); }
.badge-charged { background: rgba(20,184,166,0.15); color: var(--color-event); }
.badge-charge_failed { background: rgba(239,68,68,0.12); color: var(--color-alert); }

/* About page text */
.about-lead { font-size: 1.35rem; font-weight: 600; color: var(--color-text-primary); margin-bottom: var(--spacing-md); }
.about-body { color: var(--color-text-secondary); font-size: 1.1rem; }

/* Pricing cards */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-lg); align-items: stretch; }
.pricing-grid-single { grid-template-columns: minmax(0, 460px); justify-content: center; }
.pricing-grid-two { grid-template-columns: repeat(auto-fit, minmax(290px, 400px)); justify-content: center; }
.price-intro { display: inline-block; font-weight: 700; font-size: 0.9rem; color: var(--color-primary);
    background: rgba(106, 62, 254, 0.1); padding: 0.3rem 0.8rem; border-radius: var(--radius-full); margin-bottom: var(--spacing-sm); }
.price-annual { font-size: 0.85rem; color: var(--color-text-secondary); margin-bottom: var(--spacing-md); }
.price-annual strong { color: var(--color-text-primary); font-weight: 700; }
.price-card {
    position: relative; background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--radius-xl); padding: var(--spacing-2xl) var(--spacing-xl);
    display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.price-card.featured { border: 2px solid var(--color-primary); box-shadow: var(--shadow-xl); }
.price-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gradient-primary); color: #fff; font-weight: 700; font-size: 0.8rem;
    padding: 0.35rem 1rem; border-radius: var(--radius-full); white-space: nowrap;
}
.price-name { font-size: 1.3rem; font-weight: 800; margin-bottom: var(--spacing-sm); }
.price-tag { margin-bottom: var(--spacing-sm); }
.price-amount {
    font-size: 2.6rem; font-weight: 800;
    background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.price-period { color: var(--color-text-secondary); font-weight: 600; }
.price-desc { color: var(--color-text-secondary); margin-bottom: var(--spacing-md); }
.price-card .check-list { margin-bottom: var(--spacing-lg); flex-grow: 1; }
.price-card .btn { width: 100%; text-align: center; justify-content: center; }
.pricing-note { text-align: center; color: var(--color-text-secondary); margin-top: var(--spacing-xl); }

/* Trust bar (venues) */
.trust-bar { background: var(--color-surface); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); padding: var(--spacing-lg) 0; }
.trust-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--spacing-lg); text-align: center; }
.trust-num {
    display: block; font-size: 1.8rem; font-weight: 800;
    background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text;
    -webkit-text-fill-color: transparent; color: transparent;
}
.trust-label { color: var(--color-text-secondary); font-size: 0.9rem; }

/* Venue app showcase */
.showcase-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--spacing-2xl); align-items: center; margin-bottom: var(--spacing-3xl); }
.showcase-row:last-child { margin-bottom: 0; }
.showcase-row.reverse .showcase-text { order: 2; }
.showcase-text h3 { font-size: 1.8rem; margin: var(--spacing-sm) 0; }
.showcase-text p { color: var(--color-text-secondary); margin-bottom: var(--spacing-md); }
.showcase-phone { display: flex; justify-content: center; }
.showcase-phone img {
    width: 280px; max-width: 100%; height: auto; aspect-ratio: 1320 / 2868; border-radius: 34px;
    box-shadow: var(--shadow-2xl); border: 6px solid #111;
}

/* Comparison table */
.compare-table { border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; background: var(--color-surface); }
.compare-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; align-items: center; padding: 0.9rem var(--spacing-md); border-bottom: 1px solid var(--color-border); }
.compare-row:last-child { border-bottom: none; }
.compare-row span:not(:first-child) { text-align: center; font-weight: 700; }
.compare-head { background: var(--color-surface-muted); font-weight: 800; }
.compare-head span:nth-child(2) { color: var(--color-primary); }
.compare-row .yes { color: var(--color-event); }
.compare-row .no { color: var(--color-text-muted); }
.compare-row .meh { color: var(--color-happy-hour); }

/* Testimonials extras (card base already defined above) */
.stars { color: #FFC107; font-size: 1.2rem; margin-bottom: var(--spacing-sm); }
.testimonial-card blockquote { margin: 0 0 var(--spacing-md); font-style: italic; font-size: 1.1rem; line-height: 1.6; color: var(--color-text-primary); }
.testimonial-card figcaption { color: var(--color-text-secondary); font-weight: 600; }
.testimonial-disclaimer { text-align: center; color: var(--color-text-muted); font-size: 0.8rem; margin-top: var(--spacing-lg); }

@media (max-width: 860px) {
    .trust-stats { grid-template-columns: 1fr 1fr; gap: var(--spacing-md); }
    .showcase-row { grid-template-columns: 1fr; gap: var(--spacing-lg); }
    .showcase-row.reverse .showcase-text { order: 0; }
    .compare-row { grid-template-columns: 1.6fr 1fr 1fr 1fr; font-size: 0.85rem; padding: 0.7rem; }
}

/* Homepage Chugachew band (sits on the dark landing page) */
.chugachew-band {
    background: var(--color-surface);
    color: var(--color-text-primary);
}
.chugachew-band p { color: var(--color-text-secondary); }

/* Passport locked-deal teaser */
.locked-deals { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--spacing-md); margin-top: var(--spacing-xl); }
.locked-deal {
    background: var(--color-surface); border: 1px solid var(--color-border);
    border-radius: var(--radius-lg); padding: var(--spacing-lg); text-align: center; box-shadow: var(--shadow-sm);
}
.locked-deal-venue { display: block; font-weight: 800; margin-bottom: 0.6rem; }
.locked-blur {
    display: block; filter: blur(5px); user-select: none; color: var(--color-text-secondary);
    font-size: 1.1rem; margin-bottom: 0.8rem;
}
.lock-badge { font-size: 0.8rem; font-weight: 700; color: var(--color-primary); }

@media (max-width: 860px) {
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .video-gallery { grid-template-columns: 1fr 1fr; }
    .value-band-grid { grid-template-columns: 1fr; gap: var(--spacing-xl); }
    .locked-deals { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
    .checkbox-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .steps-grid, .video-gallery, .form-grid-2, .admin-card-grid { grid-template-columns: 1fr; }
    .checkbox-grid { grid-template-columns: 1fr 1fr; }
    .wizard { padding: var(--spacing-lg); }
    .featured-hero, .suggest-hero { padding: 6.5rem 0 3rem; }
}

/* ============================================================
   CHUGACHEW × HOTSPOT — MODERN CONVERSION LAYER
   Self-contained, namespaced (.cc-*) so it never collides with
   the legacy styles above. Dark, premium, nightlife-meets-food.
   ============================================================ */
.cc-scope { background: #0B0B16; color: #fff; }
.cc-scope ::selection { background: rgba(139,92,246,0.45); color: #fff; }

/* Always-visible solid nav on cc pages (no transparent/invisible state) */
.cc-scope .navbar,
.navbar.cc-nav {
    background: rgba(11, 11, 22, 0.72);
    backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.navbar.cc-nav .nav-link { color: rgba(255,255,255,0.82); font-weight: 500; }
.navbar.cc-nav .nav-link:hover { color: #fff; }
.navbar.cc-nav .nav-link.active { color: #fff; }
.navbar.cc-nav .nav-link.cta-button {
    background: var(--gradient-brand); color: #fff;
    padding: 0.55rem 1.15rem; border-radius: var(--radius-full); font-weight: 700;
    box-shadow: 0 6px 18px rgba(255,107,26,0.28);
}
.navbar.cc-nav .nav-link.cta-button::after { display: none; }
.navbar.cc-nav .nav-link.cta-button:hover { transform: translateY(-1px); }

/* ---- Reusable section rhythm ---- */
.cc-section { padding: clamp(3.5rem, 7vw, 6.5rem) 0; position: relative; }
.cc-dark { background: #0B0B16; color: #fff; }
.cc-darker { background: #07070F; color: #fff; }
.cc-light { background: var(--color-background); color: var(--color-text-primary); }
.cc-kicker {
    display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em;
    text-transform: uppercase; color: #FF8A3D; margin-bottom: 0.9rem;
}
.cc-dark .cc-kicker, .cc-darker .cc-kicker { color: #FFB07A; }
.cc-section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.cc-section-sub { font-size: clamp(1.02rem, 1.4vw, 1.18rem); line-height: 1.6; color: var(--color-text-secondary); max-width: 60ch; margin-top: 1rem; }
.cc-dark .cc-section-sub, .cc-darker .cc-section-sub { color: rgba(255,255,255,0.66); }
.cc-dark .section-title, .cc-darker .section-title { color: #fff; }
.cc-dark .section-subtitle, .cc-darker .section-subtitle { color: rgba(255,255,255,0.7); }
.cc-center { text-align: center; }
.cc-center .cc-section-sub { margin-left: auto; margin-right: auto; }
.cc-grad { background: var(--gradient-brand); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }

/* ---- Buttons (modern) ---- */
.btn-xl { padding: 1.05rem 2.1rem; font-size: 1.08rem; border-radius: var(--radius-full); }
.btn-glow { background: var(--gradient-brand); color: #fff; border: none; box-shadow: 0 10px 30px rgba(255,107,26,0.32); }
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255,107,26,0.42); }
.btn-on-dark {
    background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(8px);
}
.btn-on-dark:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }

/* ---- HERO ---- */
.cc-hero { position: relative; background: #0B0B16; color: #fff; overflow: hidden;
    padding: clamp(7.5rem, 13vw, 11rem) 0 clamp(4rem, 8vw, 7rem); }
.cc-hero::before, .cc-hero::after { content: ""; position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.55; z-index: 0; }
.cc-hero::before { width: 540px; height: 540px; top: -160px; left: -120px; background: radial-gradient(circle, #6A3EFE 0%, transparent 70%); }
.cc-hero::after { width: 620px; height: 620px; bottom: -240px; right: -160px; background: radial-gradient(circle, #FF6B1A 0%, transparent 70%); }
.cc-hero > .container { position: relative; z-index: 2; }
.cc-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.cc-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.45rem 1rem;
    border-radius: var(--radius-full); background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.16);
    font-size: 0.85rem; font-weight: 600; color: #fff; backdrop-filter: blur(8px); }
.cc-eyebrow .cc-dot { width: 8px; height: 8px; border-radius: 50%; background: #34D399; box-shadow: 0 0 0 0 rgba(52,211,153,0.6); animation: ccPulse 2s infinite; }
@keyframes ccPulse { 0% { box-shadow: 0 0 0 0 rgba(52,211,153,0.6); } 70% { box-shadow: 0 0 0 8px rgba(52,211,153,0); } 100% { box-shadow: 0 0 0 0 rgba(52,211,153,0); } }
.cc-h1 { font-size: clamp(2.6rem, 5.4vw, 4.3rem); font-weight: 800; line-height: 1.04; letter-spacing: -0.025em; margin: 1.3rem 0 1.1rem; }
.cc-hero-lead { font-size: clamp(1.05rem, 1.5vw, 1.28rem); line-height: 1.6; color: rgba(255,255,255,0.74); max-width: 36ch; }
.cc-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2.1rem; }
.cc-trust-row { display: flex; gap: 1.6rem; align-items: center; flex-wrap: wrap; margin-top: 1.9rem; color: rgba(255,255,255,0.68); font-size: 0.92rem; }
.cc-trust-row .cc-stars { color: #FFB020; letter-spacing: 1px; }
.cc-trust-row strong { color: #fff; }
.cc-trust-divider { width: 1px; height: 26px; background: rgba(255,255,255,0.16); }

/* Hero visual: glassy review/video card with floating stat chips */
.cc-hero-visual { position: relative; display: flex; justify-content: center; }
.cc-video-card { position: relative; width: 100%; max-width: 380px; aspect-ratio: 4 / 5;
    border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.14);
    background: linear-gradient(160deg, #2A1A4A 0%, #3A1530 55%, #4A2410 100%);
    box-shadow: 0 40px 80px rgba(0,0,0,0.55); display: flex; align-items: center; justify-content: center; }
.cc-video-card::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(circle at 50% 40%, rgba(255,255,255,0.12), transparent 60%); }
.cc-video-play { position: relative; z-index: 2; width: 76px; height: 76px; border-radius: 50%;
    background: rgba(255,255,255,0.16); border: 1px solid rgba(255,255,255,0.4); backdrop-filter: blur(6px);
    display: grid; place-items: center; color: #fff; font-size: 1.5rem; }
.cc-card-platform { position: absolute; top: 1rem; left: 1rem; z-index: 3; font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.04em; padding: 0.35rem 0.7rem; border-radius: var(--radius-full);
    background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.2); }
.cc-chip { position: absolute; z-index: 4; display: flex; align-items: center; gap: 0.55rem;
    background: rgba(20,20,34,0.82); border: 1px solid rgba(255,255,255,0.14); backdrop-filter: blur(10px);
    padding: 0.6rem 0.85rem; border-radius: var(--radius-md); box-shadow: 0 12px 30px rgba(0,0,0,0.4);
    font-size: 0.82rem; color: #fff; }
.cc-chip .cc-chip-num { font-weight: 800; font-size: 1rem; }
.cc-chip-views { top: 22%; right: -6%; }
.cc-chip-rating { bottom: 16%; left: -8%; }
.cc-chip-emoji { font-size: 1.3rem; }

/* ---- Hero phone (app-screenshot pages) ---- */
.cc-hero-phone { position: relative; width: clamp(220px, 27vw, 310px); height: auto; aspect-ratio: 1320 / 2868; border-radius: 40px;
    border: 11px solid #15151f; background: #000; display: block;
    box-shadow: 0 40px 90px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06); }
.cc-hero-phone-wrap { position: relative; display: inline-flex; }
.cc-hero-phone-wrap::before { content: ""; position: absolute; inset: -14% -10% -10% -10%; z-index: -1;
    background: radial-gradient(circle at 50% 40%, rgba(106,62,254,0.45), transparent 62%); filter: blur(8px); }
.cc-hero-phone-wrap .cc-chip { z-index: 4; }

/* ---- Platform strip ---- */
.cc-logos { display: flex; gap: clamp(1.5rem, 4vw, 3rem); justify-content: center; align-items: center; flex-wrap: wrap; }
.cc-logos span { font-weight: 700; font-size: 1.05rem; color: rgba(255,255,255,0.55); letter-spacing: 0.02em; }
.cc-logos-label { display: block; text-align: center; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 1.25rem; }

/* ---- Benefit grid ---- */
.cc-benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.cc-benefit { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-md);
    padding: 1.75rem; transition: transform var(--transition-base), border-color var(--transition-base), background var(--transition-base); }
.cc-light .cc-benefit { background: #fff; border-color: var(--color-border); box-shadow: var(--shadow-sm); }
.cc-benefit:hover { transform: translateY(-4px); border-color: rgba(255,107,26,0.5); background: rgba(255,255,255,0.06); }
.cc-light .cc-benefit:hover { background: #fff; box-shadow: var(--shadow-lg); }
.cc-benefit-icon { width: 50px; height: 50px; border-radius: var(--radius-md); display: grid; place-items: center;
    background: var(--gradient-brand); color: #fff; margin-bottom: 1rem; font-size: 1.4rem; }
.cc-benefit h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.cc-benefit p { color: rgba(255,255,255,0.62); font-size: 0.95rem; line-height: 1.55; }
.cc-light .cc-benefit p { color: var(--color-text-secondary); }

/* ---- Steps timeline ---- */
.cc-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 3rem; counter-reset: ccstep; }
.cc-step { position: relative; padding: 1.6rem 1.4rem; border-radius: var(--radius-md);
    background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); }
.cc-light .cc-step { background: #fff; border-color: var(--color-border); box-shadow: var(--shadow-sm); }
.cc-step-num { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
    font-weight: 800; color: #fff; background: var(--gradient-brand); margin-bottom: 0.9rem; }
.cc-step h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 0.4rem; }
.cc-step p { color: rgba(255,255,255,0.62); font-size: 0.93rem; line-height: 1.5; }
.cc-light .cc-step p { color: var(--color-text-secondary); }

/* ---- Stats band ---- */
.cc-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.cc-stat-num { font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1; }
.cc-stat-label { color: rgba(255,255,255,0.6); margin-top: 0.5rem; font-size: 0.92rem; }

/* ---- Testimonials ---- */
.cc-quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
.cc-quote { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); border-radius: var(--radius-md); padding: 1.75rem; }
.cc-light .cc-quote { background: #fff; border-color: var(--color-border); box-shadow: var(--shadow-sm); }
.cc-quote-stars { color: #FFB020; margin-bottom: 0.8rem; letter-spacing: 1px; }
.cc-quote p { font-size: 1.02rem; line-height: 1.6; margin-bottom: 1.1rem; }
.cc-dark .cc-quote p { color: rgba(255,255,255,0.85); }
.cc-quote-author { display: flex; align-items: center; gap: 0.75rem; }
.cc-quote-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gradient-brand); display: grid; place-items: center; font-weight: 800; color: #fff; }
.cc-quote-name { font-weight: 700; font-size: 0.95rem; }
.cc-quote-role { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.cc-light .cc-quote-role { color: var(--color-text-muted); }

/* ---- Risk reversal / why free ---- */
.cc-assure-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.cc-assure { display: flex; gap: 0.9rem; align-items: flex-start; padding: 1.4rem;
    border-radius: var(--radius-md); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.09); }
.cc-assure-check { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: rgba(52,211,153,0.18);
    color: #34D399; display: grid; place-items: center; font-weight: 800; }
.cc-assure h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.cc-assure p { font-size: 0.9rem; color: rgba(255,255,255,0.62); line-height: 1.5; }

/* ---- Apply trust row ---- */
.cc-apply-trust { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 1.25rem; color: #16A34A; font-weight: 600; font-size: 0.9rem; }

/* ---- Sticky mobile apply bar ---- */
.cc-sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 900; display: none;
    align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 1rem;
    background: rgba(11,11,22,0.92); backdrop-filter: blur(14px); border-top: 1px solid rgba(255,255,255,0.1); }
.cc-sticky-text { color: #fff; font-size: 0.9rem; font-weight: 600; }
.cc-sticky-text small { display: block; color: rgba(255,255,255,0.6); font-weight: 400; font-size: 0.78rem; }
.cc-sticky .btn { padding: 0.7rem 1.3rem; white-space: nowrap; }
.cc-sticky-close {
    flex-shrink: 0; width: 30px; height: 30px; padding: 0;
    display: grid; place-items: center; cursor: pointer;
    background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.14); border-radius: 50%;
    font-size: 1.25rem; line-height: 1; transition: background var(--transition-fast), color var(--transition-fast);
}
.cc-sticky-close:hover { background: rgba(255,255,255,0.16); color: #fff; }
/* Hidden when dismissed by the user or when the application form is already on screen */
.cc-sticky.is-hidden { display: none !important; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .cc-hero-grid { grid-template-columns: 1fr; text-align: center; }
    .cc-hero-lead { max-width: none; }
    .cc-cta-row, .cc-trust-row, .cc-logos { justify-content: center; }
    .cc-hero-visual { margin-top: 2.5rem; order: 2; }
    .cc-steps { grid-template-columns: 1fr 1fr; }
    .cc-stats { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
}
@media (max-width: 600px) {
    .cc-steps, .cc-stats { grid-template-columns: 1fr; }
    .cc-sticky { display: flex; }
    .cc-chip-views { right: 2%; }
    .cc-chip-rating { left: 2%; }
}

/* ============================================================
   GROUPED NAV DROPDOWNS
   ============================================================ */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; }
.nav-dropdown-toggle {
    background: none; border: none; cursor: pointer; font: inherit;
    display: inline-flex; align-items: center; gap: 0.35rem;
}
.nav-dropdown-toggle::after { display: none; }
.nav-caret { transition: transform var(--transition-fast); flex-shrink: 0; opacity: 0.8; }
.nav-dropdown.open > .nav-dropdown-toggle .nav-caret { transform: rotate(180deg); }

.nav-dropdown-menu {
    position: absolute; top: calc(100% + 16px); left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 268px; background: #fff;
    border: 1px solid var(--color-border); border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl); padding: 0.4rem;
    display: flex; flex-direction: column; gap: 0.1rem;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: 1001;
}
/* invisible hover bridge so the menu doesn't close in the gap below the toggle */
.nav-dropdown::before { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 18px; }
.nav-dd-link { display: flex; flex-direction: column; gap: 2px; padding: 0.6rem 0.75rem;
    border-radius: var(--radius-sm); text-decoration: none; transition: background var(--transition-fast); }
.nav-dd-link:hover { background: var(--color-surface-muted); }
.nav-dd-title { font-weight: 600; font-size: 0.95rem; color: var(--color-text-primary); }
.nav-dd-desc { font-size: 0.78rem; line-height: 1.3; color: var(--color-text-secondary); }
.nav-dd-link:hover .nav-dd-title,
.nav-dd-link.active .nav-dd-title { color: var(--color-primary); }

@media (hover: hover) and (min-width: 769px) {
    .nav-dropdown:hover > .nav-dropdown-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
    .nav-dropdown:hover > .nav-dropdown-toggle .nav-caret { transform: rotate(180deg); }
}
.nav-dropdown:focus-within > .nav-dropdown-menu,
.nav-dropdown.open > .nav-dropdown-menu {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}

/* Dark navbars (landing/cc) get a dark dropdown */
.landing-page .nav-dropdown-menu,
.navbar.cc-nav .nav-dropdown-menu { background: #16161F; border-color: rgba(255,255,255,0.1); }
.landing-page .nav-dd-title,
.navbar.cc-nav .nav-dd-title { color: #fff; }
.landing-page .nav-dd-desc,
.navbar.cc-nav .nav-dd-desc { color: rgba(255,255,255,0.6); }
.landing-page .nav-dd-link:hover,
.navbar.cc-nav .nav-dd-link:hover { background: rgba(255,255,255,0.08); }
.landing-page .nav-dd-link:hover .nav-dd-title,
.landing-page .nav-dd-link.active .nav-dd-title,
.navbar.cc-nav .nav-dd-link:hover .nav-dd-title { color: #fff; }

/* Mobile: dropdowns collapse into inline accordions inside the mobile panel */
@media (max-width: 768px) {
    .nav-dropdown { display: block; width: 100%; }
    .nav-dropdown-toggle { width: 100%; justify-content: space-between; padding: 0.25rem 0; }
    .nav-dropdown::before { display: none; }
    .nav-dropdown-menu {
        position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
        min-width: 0; box-shadow: none; border: none; background: transparent;
        padding: 0 0 0.25rem 0.85rem; max-height: 0; overflow: hidden;
        transition: max-height var(--transition-base);
    }
    .nav-dropdown.open > .nav-dropdown-menu,
    .nav-dropdown:focus-within > .nav-dropdown-menu { transform: none; }
    .nav-dropdown.open > .nav-dropdown-menu { max-height: 360px; }
    .nav-dd-link { padding: 0.5rem 0; }
    .nav-links.active { gap: 1rem; align-items: stretch; }
    body.landing-page .nav-links.active { background: #16161F; border-top-color: rgba(255,255,255,0.1); }
}

