/* ============================================
   NOCHE CLUB ADMIN - LANDING PAGE STYLES
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --gold: #D4A843;
    --gold-light: #F4C025;
    --gold-dark: #B8912F;
    --black: #0A0A0A;
    --surface: #1A1A1A;
    --surface-light: #2A2A2A;
    --surface-lighter: #3A3A3A;
    --text: #FFFFFF;
    --text-muted: #9CA3AF;
    --text-subtle: #6B7280;
    --success: #10B981;
    --warning: #F59E0B;
    --error: #EF4444;

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

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --spacing-4xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 0 30px rgba(212, 168, 67, 0.3);
    --glow-gold: 0 0 40px rgba(212, 168, 67, 0.4), 0 0 80px rgba(212, 168, 67, 0.2);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;
    --transition-smooth: 400ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--black);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
}

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

/* Gold Glow Effect */
.glow-gold {
    text-shadow: 0 0 20px rgba(212, 168, 67, 0.5);
}

/* Staggered Animation Delays */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }

/* Fade In Up Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

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

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

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

.section-badge {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: var(--radius-full);
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-lg);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 168, 67, 0.2),
        transparent
    );
    animation: shimmer 3s infinite;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: var(--spacing-md);
}

/* Animated underline for section titles */
.section-title .text-gradient {
    position: relative;
}

.section-title .text-gradient::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.6s ease;
}

.section-header:hover .section-title .text-gradient::after {
    width: 100%;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-gold);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--surface-lighter);
    color: var(--text);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
}

.btn-ghost:hover {
    color: var(--gold);
}

.btn-lg {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

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

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

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

.logo-img {
    height: 40px;
    width: auto;
}

.logo-badge {
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--gold);
    color: var(--black);
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}

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

.nav-links a {
    color: var(--text-muted);
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--text);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: var(--spacing-sm);
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: all var(--transition-fast);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    z-index: 999;
    padding: var(--spacing-xl);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.mobile-menu-content a {
    font-size: 1.25rem;
    color: var(--text);
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--surface);
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(80px + var(--spacing-4xl)) 0 var(--spacing-4xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 168, 67, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 168, 67, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Animated gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        125deg,
        rgba(212, 168, 67, 0.03) 0%,
        transparent 30%,
        transparent 70%,
        rgba(212, 168, 67, 0.03) 100%
    );
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
    pointer-events: none;
}

/* Floating particles effect */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    animation: fadeInUp 0.6s ease-out;
}

.hero-title {
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-cta {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-stats {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: var(--radius-full);
    color: var(--gold);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xl);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    margin-bottom: var(--spacing-lg);
    line-height: 1.1;
}

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

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212, 168, 67, 0.3);
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--surface-lighter);
}

/* Hero Mockup */
.hero-image {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 700px;
    z-index: 0;
    opacity: 0.9;
}

.hero-mockup {
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--surface-lighter);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--surface-light);
    border-bottom: 1px solid var(--surface-lighter);
}

.mockup-dots {
    display: flex;
    gap: 6px;
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--surface-lighter);
}

.mockup-dots span:first-child { background: #EF4444; }
.mockup-dots span:nth-child(2) { background: #F59E0B; }
.mockup-dots span:last-child { background: #10B981; }

.mockup-title {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.mockup-content {
    display: flex;
    min-height: 350px;
}

.mockup-sidebar {
    width: 180px;
    background: var(--black);
    padding: var(--spacing-lg);
    border-right: 1px solid var(--surface-lighter);
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 0.8125rem;
    margin-bottom: var(--spacing-xs);
    transition: all var(--transition-fast);
}

.sidebar-item:hover, .sidebar-item.active {
    background: var(--surface);
    color: var(--text);
}

.sidebar-item.active {
    color: var(--gold);
}

.sidebar-icon {
    width: 16px;
    height: 16px;
    background: currentColor;
    border-radius: var(--radius-sm);
    opacity: 0.5;
}

.mockup-main {
    flex: 1;
    padding: var(--spacing-lg);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.mockup-card {
    background: var(--surface-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--surface-lighter);
}

.card-header {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.card-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.card-trend {
    font-size: 0.6875rem;
    margin-top: var(--spacing-xs);
}

.card-trend.positive {
    color: var(--success);
}

.mockup-chart {
    grid-column: span 2;
    background: var(--surface-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--surface-lighter);
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: var(--spacing-md);
    height: 100px;
}

.bar {
    flex: 1;
    background: var(--surface-lighter);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: all var(--transition-base);
}

.bar.active {
    background: var(--gold);
}

/* ============================================
   SOCIAL PROOF
   ============================================ */
.social-proof {
    padding: var(--spacing-3xl) 0;
    border-top: 1px solid var(--surface);
    border-bottom: 1px solid var(--surface);
    background: var(--surface);
}

.social-proof-label {
    text-align: center;
    color: var(--text-subtle);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-xl);
}

.logos-slider {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.logos-track {
    display: flex;
    gap: var(--spacing-4xl);
    animation: scroll 20s linear infinite;
}

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

.logo-item {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--text-subtle);
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.logo-item:hover {
    opacity: 1;
}

/* ============================================
   PROBLEM/SOLUTION
   ============================================ */
.problem-solution {
    padding: var(--spacing-4xl) 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.comparison-card {
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--surface-lighter);
}

.comparison-card.problem {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

.comparison-card.solution {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-lg);
}

.problem .card-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.solution .card-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.comparison-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
}

.comparison-card ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.comparison-card li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.comparison-card li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.problem li::before {
    background: var(--error);
}

.solution li::before {
    background: var(--success);
}

/* ============================================
   FEATURES
   ============================================ */
.features {
    padding: var(--spacing-4xl) 0;
    background: var(--surface);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.feature-card {
    padding: var(--spacing-2xl);
    background: var(--black);
    border-radius: var(--radius-xl);
    border: 1px solid var(--surface-lighter);
    transition: all var(--transition-smooth);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card:hover {
    border-color: var(--gold);
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 168, 67, 0.1);
}

.feature-card .feature-icon {
    transition: all var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.feature-card.featured {
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.1) 0%, transparent 50%);
    border-color: rgba(212, 168, 67, 0.3);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border-radius: var(--radius-lg);
    color: var(--gold);
    margin-bottom: var(--spacing-lg);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.feature-list {
    margin-top: var(--spacing-lg);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--surface-lighter);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--spacing-sm);
}

.feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

/* ============================================
   SCREENSHOT SECTION
   ============================================ */
.screenshot-section {
    padding: var(--spacing-4xl) 0;
}

.screenshot-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-2xl);
}

.tab-btn {
    padding: var(--spacing-md) var(--spacing-xl);
    background: transparent;
    border: 1px solid var(--surface-lighter);
    border-radius: var(--radius-full);
    color: var(--text-muted);
    font-size: 0.9375rem;
    transition: all var(--transition-fast);
}

.tab-btn:hover {
    border-color: var(--gold);
    color: var(--text);
}

.tab-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.screenshot-display {
    max-width: 1000px;
    margin: 0 auto;
}

.screenshot-frame {
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--surface-lighter);
    overflow: hidden;
    min-height: 400px;
}

.screenshot-content {
    display: none;
    padding: var(--spacing-2xl);
    opacity: 0;
    transform: scale(0.98);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.screenshot-content.active {
    display: block;
    animation: scaleIn 0.4s ease-out forwards;
}

.screenshot-img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.screenshot-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(212, 168, 67, 0.15);
}

/* Dashboard Preview */
.dashboard-preview {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.preview-header h4 {
    font-size: 1.25rem;
}

.preview-date {
    color: var(--text-muted);
    font-size: 0.875rem;
}

.preview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.preview-stat {
    background: var(--surface-light);
    padding: var(--spacing-lg);
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat-text {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.preview-chart-area {
    height: 150px;
    background: var(--surface-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-lg);
    display: flex;
    align-items: flex-end;
}

.mini-chart {
    width: 100%;
    height: 100%;
    position: relative;
}

.chart-line {
    position: absolute;
    bottom: 20%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 1px;
}

.chart-line::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(90deg,
        rgba(212, 168, 67, 0) 0%,
        rgba(212, 168, 67, 0.1) 20%,
        rgba(212, 168, 67, 0.2) 40%,
        rgba(212, 168, 67, 0.1) 60%,
        rgba(212, 168, 67, 0.3) 80%,
        rgba(212, 168, 67, 0.1) 100%
    );
    clip-path: polygon(0 100%, 5% 80%, 15% 90%, 30% 60%, 45% 70%, 60% 30%, 75% 50%, 90% 20%, 100% 40%, 100% 100%);
}

/* Reservations Preview */
.reservations-preview {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.reservation-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--surface-light);
    border-radius: var(--radius-md);
}

.res-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-lighter);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--gold);
}

.res-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.res-name {
    font-weight: 500;
}

.res-details {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.res-status {
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

.res-status.confirmed {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.res-status.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

/* Tables Preview */
.tables-preview {
    height: 350px;
}

.floor-plan {
    position: relative;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at center, var(--surface-light) 0%, var(--surface) 100%);
    border-radius: var(--radius-md);
}

.table-marker {
    position: absolute;
    width: 60px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.table-marker.vip {
    background: rgba(212, 168, 67, 0.2);
    border: 2px solid var(--gold);
    color: var(--gold);
}

.table-marker.premium {
    background: rgba(99, 102, 241, 0.2);
    border: 2px solid #6366F1;
    color: #6366F1;
}

.table-marker.standard {
    background: rgba(156, 163, 175, 0.2);
    border: 2px solid var(--text-muted);
    color: var(--text-muted);
}

.table-marker.reserved {
    opacity: 0.5;
}

.table-marker.available:hover {
    transform: scale(1.1);
}

.dj-booth {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--surface-lighter);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.bar-area {
    position: absolute;
    top: 10%;
    right: 5%;
    padding: var(--spacing-md) var(--spacing-xl);
    background: var(--surface-lighter);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    color: var(--text-muted);
    writing-mode: vertical-rl;
}

/* Partnerships Preview */
.partnerships-preview {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.partnership-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--surface-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--surface-lighter);
}

.partnership-item.approved {
    border-color: rgba(16, 185, 129, 0.3);
}

.partner-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.partner-name {
    font-weight: 500;
}

.partner-event {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.partner-terms {
    display: flex;
    gap: var(--spacing-md);
}

.partner-terms span {
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--surface-lighter);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.partner-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.btn-approve {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--success);
    color: var(--black);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 500;
}

.btn-negotiate {
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--surface-lighter);
    color: var(--text);
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 500;
}

.partner-badge {
    padding: var(--spacing-sm) var(--spacing-md);
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: var(--spacing-4xl) 0;
    background: var(--surface);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: var(--spacing-xl);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-smooth);
}

.step-card:hover .step-number {
    opacity: 0.6;
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(212, 168, 67, 0.4);
}

.step-content h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: var(--spacing-md);
}

.step-duration {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: rgba(212, 168, 67, 0.1);
    border-radius: var(--radius-full);
    color: var(--gold);
    font-size: 0.75rem;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-top: 3.5rem;
}

/* ============================================
   ECOSYSTEM
   ============================================ */
.ecosystem {
    padding: var(--spacing-4xl) 0;
}

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

.ecosystem-card {
    padding: var(--spacing-xl);
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--surface-lighter);
    text-align: center;
    transition: all var(--transition-base);
}

.ecosystem-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
}

.ecosystem-card.main {
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.1) 0%, transparent 50%);
    border-color: var(--gold);
}

.app-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    border-radius: var(--radius-lg);
}

.app-icon.manager {
    background: rgba(212, 168, 67, 0.1);
    color: var(--gold);
}

.app-icon.bouncer {
    background: rgba(99, 102, 241, 0.1);
    color: #6366F1;
}

.app-icon.bartender {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.app-icon.user {
    background: rgba(236, 72, 153, 0.1);
    color: #EC4899;
}

.ecosystem-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.ecosystem-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.app-badge {
    display: inline-block;
    margin-top: var(--spacing-md);
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
}

.app-badge.current {
    background: var(--gold);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
    padding: var(--spacing-4xl) 0;
    background: var(--surface);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.testimonial-card {
    padding: var(--spacing-2xl);
    background: var(--black);
    border-radius: var(--radius-xl);
    border: 1px solid var(--surface-lighter);
    position: relative;
    transition: all var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 168, 67, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.05) 0%, transparent 50%);
    border-color: rgba(212, 168, 67, 0.3);
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--spacing-md);
    transition: all var(--transition-smooth);
}

.testimonial-card:hover .quote-mark {
    opacity: 0.5;
    transform: scale(1.1);
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--gold);
}

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

.author-name {
    font-weight: 500;
}

.author-role {
    font-size: 0.8125rem;
    color: var(--text-subtle);
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
    padding: var(--spacing-4xl) 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    align-items: start;
}

.pricing-card {
    padding: var(--spacing-2xl);
    background: var(--surface);
    border-radius: var(--radius-xl);
    border: 1px solid var(--surface-lighter);
    position: relative;
    transition: all var(--transition-smooth);
}

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

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.1) 0%, var(--surface) 50%);
    border-color: var(--gold);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--gold);
    color: var(--black);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-header {
    margin-bottom: var(--spacing-xl);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-xs);
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.pricing-value {
    margin-bottom: var(--spacing-xl);
}

.price {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 30px rgba(212, 168, 67, 0.2);
}

.price-note {
    display: block;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.pricing-features {
    margin-bottom: var(--spacing-xl);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.pricing-features svg {
    color: var(--success);
    flex-shrink: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
    padding: var(--spacing-4xl) 0;
    background: var(--surface);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--surface-lighter);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xl) 0;
    text-align: left;
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--text);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    color: var(--gold);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: var(--spacing-xl);
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: var(--spacing-4xl) 0;
    background:
        radial-gradient(ellipse at center top, rgba(212, 168, 67, 0.15) 0%, transparent 50%);
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: var(--spacing-md);
}

.cta-content > p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-2xl);
}

.cta-form {
    background: var(--surface);
    padding: var(--spacing-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--surface-lighter);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-group {
    text-align: left;
}

.form-group.full {
    grid-column: span 2;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: var(--spacing-md);
    background: var(--black);
    border: 1px solid var(--surface-lighter);
    border-radius: var(--radius-md);
    color: var(--text);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input::placeholder {
    color: var(--text-subtle);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--spacing-md) center;
    padding-right: var(--spacing-2xl);
}

.form-note {
    margin-top: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--text-subtle);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: var(--spacing-4xl) 0 var(--spacing-2xl);
    background: var(--surface);
    border-top: 1px solid var(--surface-lighter);
}

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

.footer-brand .logo-img {
    height: 80px;
    width: auto;
}

.footer-brand p {
    color: var(--text-muted);
    margin: var(--spacing-md) 0;
    max-width: 280px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-light);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-lg);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

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

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

.footer-bottom {
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--surface-lighter);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-subtle);
    font-size: 0.875rem;
}

.heart {
    color: var(--error);
}

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeIn 1s ease-out 1s both;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.scroll-indicator:hover {
    color: var(--gold);
}

.scroll-indicator-icon {
    width: 24px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
}

.scroll-indicator-icon::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.5;
    }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-smooth);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-gold);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all var(--transition-smooth);
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn svg {
    width: 28px;
    height: 28px;
}

/* ============================================
   LOADING STATES & LAZY LOADING
   ============================================ */
.lazy-image {
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.lazy-image.loaded {
    opacity: 1;
}

/* ============================================
   FOCUS STATES FOR ACCESSIBILITY
   ============================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.4);
}

/* Skip to content link for accessibility */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--black);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-md);
    z-index: 10000;
    transition: top var(--transition-fast);
}

.skip-to-content:focus {
    top: var(--spacing-md);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .hero-image {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .scroll-indicator {
        display: none;
    }

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

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

    .feature-card.featured {
        grid-row: auto;
    }

    .steps-grid {
        flex-wrap: wrap;
    }

    .step-connector {
        display: none;
    }

    .step-card {
        flex-basis: 50%;
    }

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

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

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: none;
    }

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

/* Mobile */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding-top: calc(60px + var(--spacing-2xl));
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .hero-cta .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-cta .btn-outline {
        border-color: var(--surface-lighter);
        background: rgba(255, 255, 255, 0.05);
        padding: var(--spacing-md) var(--spacing-lg);
    }

    .hero-cta .btn-lg {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 1rem;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

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

    .screenshot-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1 1 45%;
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.8125rem;
    }

    .preview-stats {
        grid-template-columns: 1fr;
    }

    .reservation-item {
        flex-wrap: wrap;
    }

    .res-status {
        margin-left: auto;
    }

    .partnership-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .partner-actions {
        width: 100%;
    }

    .partner-actions button {
        flex: 1;
    }

    .step-card {
        flex-basis: 100%;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

    .btn-lg {
        padding: var(--spacing-md) var(--spacing-lg);
        font-size: 1rem;
    }
}
