/* ==========================================================================
   QuickCreate Welcome Page - Professional Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables & Design Tokens
   -------------------------------------------------------------------------- */
:root {
    /* Brand Colors */
    --gold: #C9A35B;
    --gold-light: #D4B678;
    --gold-dark: #B8923F;
    --charcoal: #3C3C3C;
    --charcoal-dark: #2A2A2A;

    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-400: #BDBDBD;
    --gray-500: #9E9E9E;
    --gray-600: #757575;
    --gray-700: #616161;
    --gray-800: #424242;
    --gray-900: #212121;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    --gradient-charcoal: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-dark) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-gold: 0 8px 24px rgba(201, 163, 91, 0.25);

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --------------------------------------------------------------------------
   Base Reset & Typography
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--white);
    color: var(--gray-900);
    line-height: 1.6;
    overflow-x: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --------------------------------------------------------------------------
   Header Navigation - Modern Redesign
   -------------------------------------------------------------------------- */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.875rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Logo Section */
.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-wrapper {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    transition: var(--transition-spring);
    box-shadow: 0 4px 12px rgba(201, 163, 91, 0.25);
}

.logo-section:hover .logo-wrapper {
    transform: rotate(-5deg) scale(1.05);
}

.logo {
    height: 100%;
    width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.logo-text {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--charcoal);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Center Navigation Pill */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--gray-100);
    padding: 0.375rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-200);
}

.nav-link {
    position: relative;
    padding: 0.625rem 1.125rem;
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--charcoal);
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.nav-link.active {
    color: var(--charcoal);
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.nav-link-text {
    position: relative;
    z-index: 1;
}

/* Right Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-base);
}

.lang-selector:hover {
    background: var(--white);
    border-color: var(--gold);
}

.lang-icon {
    font-size: 0.875rem;
}

.lang-text {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-700);
}

.admin-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--charcoal);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition-spring);
    overflow: hidden;
    position: relative;
}

.admin-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: var(--transition-base);
}

.admin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(60, 60, 60, 0.25);
}

.admin-btn:hover::before {
    opacity: 1;
}

.admin-btn-text {
    position: relative;
    z-index: 1;
}

.admin-btn-arrow {
    position: relative;
    z-index: 1;
    transition: var(--transition-base);
    opacity: 0.7;
}

.admin-btn:hover .admin-btn-arrow {
    transform: translateX(3px);
    opacity: 1;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    cursor: pointer;
    padding: 0;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    transition: var(--transition-base);
}

.mobile-menu-btn:hover {
    background: var(--white);
    border-color: var(--gold);
}

.mobile-menu-btn.active {
    background: var(--charcoal);
    border-color: var(--charcoal);
}

.hamburger-line {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition-base);
    margin: 2px 0;
}

.mobile-menu-btn.active .hamburger-line {
    background: var(--white);
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: block;
    padding: 1rem 1.25rem;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.mobile-nav-link:hover {
    background: var(--gray-50);
    color: var(--charcoal);
}

.mobile-admin-btn {
    display: block;
    padding: 1rem 1.25rem;
    margin-top: 0.5rem;
    background: var(--gradient-gold);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-base);
}

/* --------------------------------------------------------------------------
   Hero Section
   -------------------------------------------------------------------------- */
.hero {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 5rem 2rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(201, 163, 91, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 40%;
    height: 80%;
    background: radial-gradient(circle, rgba(201, 163, 91, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    color: var(--gray-700);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(201, 163, 91, 0.5);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.95);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--charcoal);
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--gray-600);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* Download Buttons */
.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 2rem;
    background: var(--charcoal);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-base);
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.store-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: var(--transition-slow);
}

.store-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.store-button:hover::before {
    left: 100%;
}

.store-button.secondary {
    background: var(--white);
    color: var(--charcoal);
    border: 2px solid var(--gray-200);
}

.store-button.secondary:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.store-button svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.store-button-text {
    text-align: left;
}

.store-button-small {
    font-size: 0.75rem;
    opacity: 0.8;
    display: block;
    font-weight: 400;
}

.store-button-large {
    font-size: 1.125rem;
    font-weight: 700;
    display: block;
}

/* --------------------------------------------------------------------------
   Graphics Showcase - Infinite Marquee Design
   -------------------------------------------------------------------------- */
.graphics-showcase {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%);
    padding: 4rem 0;
    overflow: hidden;
    position: relative;
}

.showcase-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 2rem;
}

.showcase-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(201, 163, 91, 0.12);
    color: var(--gold-dark);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.showcase-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--charcoal);
    letter-spacing: -0.02em;
}

/* Marquee Container */
.showcase-marquee {
    width: 100%;
    overflow: hidden;
    padding: 0.75rem 0;
    position: relative;
}

.showcase-marquee::before,
.showcase-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.showcase-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--gray-50), transparent);
}

.showcase-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--gray-50), transparent);
}

/* Marquee Track */
.marquee-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
}

.marquee-left {
    animation: marqueeLeft 40s linear infinite;
}

.marquee-right {
    animation: marqueeRight 40s linear infinite;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.marquee-track:hover {
    animation-play-state: paused;
}

/* Showcase Cards */
.showcase-card {
    position: relative;
    width: 280px;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-spring);
    flex-shrink: 0;
}

.showcase-card:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
    z-index: 10;
}

.showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.showcase-card:hover img {
    transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   Stats Section - Modern Card Design
   -------------------------------------------------------------------------- */
.stats-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(201, 163, 91, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 50%, rgba(201, 163, 91, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.stats-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: var(--transition-spring);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(201, 163, 91, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon-box {
    width: 56px;
    height: 56px;
    background: var(--gradient-gold);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(201, 163, 91, 0.3);
    transition: var(--transition-base);
}

.stat-card:hover .stat-icon-box {
    transform: scale(1.1) rotate(-5deg);
}

.stat-icon-box svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   Section Styles
   -------------------------------------------------------------------------- */
.section {
    padding: 5rem 2rem;
    background: var(--white);
    position: relative;
}

.section.gray {
    background: var(--gray-50);
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(201, 163, 91, 0.1);
    color: var(--gold-dark);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 680px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Business Types Grid - Colored Avatar Style
   -------------------------------------------------------------------------- */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
}

.business-card {
    background: var(--white);
    padding: 1.5rem 1.25rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-spring);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.business-card:hover {
    border-color: var(--card-color, var(--gold));
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.business-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--card-color, var(--gold)), var(--card-color-light, var(--gold-light)));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition-spring);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.business-card:hover .business-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.business-name {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.9375rem;
    line-height: 1.4;
}

.business-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--card-color, var(--gold)), var(--card-color-light, var(--gold-light)));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

.business-card:hover .business-accent {
    transform: scaleX(1);
}

/* --------------------------------------------------------------------------
   Categories Grid - Tag/Pill Style
   -------------------------------------------------------------------------- */
.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    justify-content: center;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    transition: var(--transition-spring);
    cursor: pointer;
    white-space: nowrap;
}

.category-tag:hover {
    border-color: var(--tag-color, var(--gold));
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.category-dot {
    width: 10px;
    height: 10px;
    background: var(--tag-color, var(--gold));
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.category-tag:hover .category-dot {
    transform: scale(1.3);
    box-shadow: 0 0 8px var(--tag-color, var(--gold));
}

.category-name {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.875rem;
}

.category-tag:hover .category-name {
    color: var(--charcoal);
}

/* --------------------------------------------------------------------------
   Events Grid - Calendar Date Style
   -------------------------------------------------------------------------- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.25rem;
}

.event-card {
    background: var(--white);
    padding: 1.25rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-spring);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.event-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--event-color, var(--gold));
    transition: var(--transition-base);
}

.event-card:hover {
    border-color: var(--event-color, var(--gold));
    transform: translateY(-5px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.event-card:hover::before {
    height: 6px;
}

.event-date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border: 2px solid var(--event-color, var(--gold));
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.event-card:hover .event-date-badge {
    background: var(--event-color, var(--gold));
    transform: scale(1.08);
}

.event-month {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--event-color, var(--gold));
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1;
    transition: var(--transition-base);
}

.event-card:hover .event-month {
    color: var(--white);
}

.event-day {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--charcoal);
    line-height: 1.1;
    transition: var(--transition-base);
}

.event-card:hover .event-day {
    color: var(--white);
}

.event-name {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.875rem;
    line-height: 1.4;
}

/* --------------------------------------------------------------------------
   Features Grid
   -------------------------------------------------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-spring);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-gold);
    transition: var(--transition-base);
}

.feature-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(201, 163, 91, 0.12) 0%, rgba(201, 163, 91, 0.06) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.625rem;
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-gold);
    transform: scale(1.05);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.625rem;
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* --------------------------------------------------------------------------
   CTA Section - Modern Animated Design
   -------------------------------------------------------------------------- */
.cta-section {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-gold);
    opacity: 0.08;
    filter: blur(60px);
    animation: floatCTA 20s ease-in-out infinite;
}

.cta-shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: -80px;
    animation-delay: -7s;
}

.cta-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes floatCTA {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.cta-highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-store-btn {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1rem 1.75rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-spring);
    border: 2px solid transparent;
}

.cta-store-btn.primary {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(201, 163, 91, 0.35);
}

.cta-store-btn.primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(201, 163, 91, 0.45);
}

.cta-store-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.cta-store-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-4px);
}

.cta-btn-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-btn-icon svg {
    width: 100%;
    height: 100%;
}

.cta-btn-text {
    text-align: left;
}

.cta-btn-small {
    font-size: 0.6875rem;
    opacity: 0.8;
    display: block;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-btn-large {
    font-size: 1.125rem;
    font-weight: 700;
    display: block;
}

/* Trust Indicators */
.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.cta-trust-avatars {
    display: flex;
}

.cta-avatar {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-left: -8px;
}

.cta-avatar:first-child {
    margin-left: 0;
}

.cta-trust-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.cta-trust-text strong {
    color: var(--gold);
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   Footer - Professional Redesign
   -------------------------------------------------------------------------- */
.footer {
    background: var(--charcoal);
    color: var(--white);
}

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-newsletter-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.newsletter-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.375rem;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.newsletter-input {
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 0.9375rem;
    width: 280px;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.25);
}

.newsletter-btn {
    padding: 0.875rem 2rem;
    background: var(--charcoal);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-base);
}

.newsletter-btn:hover {
    background: var(--charcoal-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Footer Main */
.footer-main {
    padding: 4rem 2rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
}

/* Brand Column */
.footer-brand {
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.footer-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand-name {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--white);
    display: block;
    line-height: 1.1;
}

.footer-brand-tagline {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-description {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition-base);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Links Grid */
.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column-title {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

/* App Buttons */
.footer-app-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-app-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-base);
}

.footer-app-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.footer-app-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
}

.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-copyright p {
    color: var(--gray-500);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.8125rem;
    transition: var(--transition-base);
}

.footer-legal a:hover {
    color: var(--gold);
}

.footer-divider {
    color: var(--gray-600);
    font-size: 0.75rem;
}

.footer-locale {
    display: flex;
    align-items: center;
}

.footer-lang {
    color: var(--gray-500);
    font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   Responsive Design
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .nav-pill {
        gap: 0.125rem;
    }

    .nav-link {
        padding: 0.5rem 0.875rem;
        font-size: 0.8125rem;
    }

    .lang-selector {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 960px) {
    .nav-center {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0.75rem 1.5rem;
    }

    .logo-wrapper {
        width: 40px;
        height: 40px;
    }

    .logo-text {
        font-size: 1.25rem;
    }

    .logo-tagline {
        display: none;
    }

    .nav-container {
        padding: 1rem 1.5rem;
    }

    .hero {
        padding: 4rem 1.5rem 3rem;
    }

    /* Graphics Showcase - Mobile Responsive */
    .graphics-showcase {
        padding: 2.5rem 0;
    }

    .showcase-header {
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .showcase-title {
        font-size: 1.5rem;
    }

    .showcase-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }

    .showcase-marquee::before,
    .showcase-marquee::after {
        width: 40px;
    }

    .showcase-card {
        width: 160px;
        height: 160px;
        border-radius: 12px;
    }

    .marquee-track {
        gap: 0.75rem;
    }

    .marquee-left {
        animation-duration: 25s;
    }

    .marquee-right {
        animation-duration: 25s;
    }

    /* Stats Section - Horizontal Scroll on Mobile */
    .stats-section {
        padding: 3rem 0;
    }

    .stats-wrapper {
        padding: 0;
    }

    .stats-grid {
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 1rem 1.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .stats-grid::-webkit-scrollbar {
        display: none;
    }

    .stat-card {
        flex: 0 0 260px;
        scroll-snap-align: start;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .business-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .categories-grid {
        gap: 0.625rem;
    }

    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 4rem 1.5rem;
    }

    /* Footer Responsive */
    .footer-newsletter-content {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        width: 100%;
        max-width: 400px;
    }

    .newsletter-input {
        flex: 1;
        width: auto;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.875rem 1rem;
    }

    .logo {
        height: 36px;
    }

    .logo-text {
        font-size: 1.375rem;
    }

    .hero {
        padding: 3rem 1rem 2rem;
    }

    .hero-badge {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }

    .graphics-showcase {
        padding: 1.5rem 0 2rem;
    }

    .showcase-grid {
        padding: 0 0.75rem;
        gap: 0.625rem;
        transform: rotateY(-3deg) rotateX(-5deg);
    }

    @keyframes floatShowcase {

        0%,
        100% {
            transform: rotateY(-3deg) rotateX(-5deg) translateY(0);
        }

        50% {
            transform: rotateY(-3deg) rotateX(-5deg) translateY(-8px);
        }
    }

    .stats-bar {
        padding: 2.5rem 1rem;
    }

    .section {
        padding: 3rem 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .download-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .store-button {
        width: 100%;
        justify-content: center;
    }

    .business-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 0.875rem;
    }

    .business-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .categories-grid {
        gap: 0.5rem;
    }

    .category-tag {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }

    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 0.875rem;
    }

    .event-date-badge {
        width: 48px;
        height: 48px;
    }

    .event-day {
        font-size: 1.125rem;
    }

    .business-card {
        padding: 1.25rem 1rem;
    }

    .business-icon,
    .category-icon,
    .event-icon {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 1.75rem;
    }

    .cta {
        padding: 3rem 1rem;
    }

    .footer {
        padding: 2.5rem 1rem 1.5rem;
    }
}

/* --------------------------------------------------------------------------
   Accessibility & Motion Preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus States for Accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Selection Styling */
::selection {
    background: rgba(201, 163, 91, 0.3);
    color: var(--charcoal);
}

::-moz-selection {
    background: rgba(201, 163, 91, 0.3);
    color: var(--charcoal);
}