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

:root {
    /* HotSpot Brand Colors – aligned with app (Live, HotFeed, 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%);
    
    /* 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;
}

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;
}

/* ==========================================
   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: 0;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.logo:hover {
    opacity: 0.9;
}

.logo-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
    margin-right: 8px;
}
.logo-footer .logo-icon { width: 32px; height: 32px; }

.logo-text-image {
    height: 38px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    flex-shrink: 0;
    display: block;
}
/* Banner (nav) logo – prominent */
.navbar .logo-text-image { height: 56px; }
.logo-footer .logo-text-image { height: 30px; }

/* Legacy: icon + text (when no text logo image) */
.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: contrast(1.2) saturate(1.1);
}
.landing-page .logo-image,
.footer .logo-image {
    mix-blend-mode: normal;
    filter: none;
}
.logo-text {
    background: var(--gradient-primary);
    -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: flex-start;
    position: relative;
    overflow: hidden;
    padding: var(--spacing-3xl) 0;
}

/* Hero content fills viewport so app-preview stays below the fold */
.landing-hero > .container {
    flex: 1;
    min-height: 100vh;
    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: 2fr 3fr;
    gap: var(--spacing-3xl);
    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(3, 1fr);
    gap: 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);
    min-height: 80vh;
    padding: var(--spacing-3xl) 0;
}

.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;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .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);
    }
}

