/* ============================================
   MUNTWO.NET — PREMIUM DARK UI SYSTEM
   ============================================ */

:root {
    --bg-deep: #07070F;
    --bg-surface: #0E0E1C;
    --bg-card: #131326;
    --bg-hover: #1A1A30;

    --primary: #6366F1;
    --primary-glow: rgba(99, 102, 241, 0.2);
    --primary-dark: #4F46E5;
    --secondary: #A855F7;
    --accent: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --pink: #EC4899;

    --text-main: #F1F5F9;
    --text-muted: #64748B;
    --text-soft: #94A3B8;

    --border-light: rgba(255, 255, 255, 0.06);
    --border-medium: rgba(255, 255, 255, 0.1);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-strong: rgba(255, 255, 255, 0.06);

    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --shadow-sm: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .brand {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

/* ============ ANIMATED BACKGROUND ============ */
.bg-animation {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    animation: blobMove 25s infinite alternate ease-in-out;
}

.blob-1 {
    top: -15%;
    left: -10%;
    background: radial-gradient(circle, #6366F1 0%, transparent 70%);
}

.blob-2 {
    bottom: -15%;
    right: -10%;
    background: radial-gradient(circle, #A855F7 0%, transparent 70%);
    animation-delay: -8s;
    animation-duration: 30s;
}

.blob-3 {
    top: 35%;
    left: 35%;
    background: radial-gradient(circle, #EC4899 0%, transparent 70%);
    animation-delay: -16s;
    width: 500px;
    height: 500px;
}

@keyframes blobMove {
    0%   { transform: translate(0, 0) scale(1); }
    33%  { transform: translate(80px, -60px) scale(1.1); }
    66%  { transform: translate(-40px, 80px) scale(0.95); }
    100% { transform: translate(60px, 40px) scale(1.05); }
}

/* ============ SCROLL REVEAL ============ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 80ms; }
.stagger-2 { transition-delay: 160ms; }
.stagger-3 { transition-delay: 240ms; }

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 16px 60px;
    background: rgba(7, 7, 15, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 12px 60px;
    background: rgba(7, 7, 15, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.brand {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}

.brand i {
    color: var(--primary);
    filter: drop-shadow(0 0 12px var(--primary));
}

.nav-menu { display: flex; gap: 30px; }

/* ============ BUTTONS ============ */
.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    transition: all 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::after { opacity: 1; }

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 40px rgba(99, 102, 241, 0.5);
}

.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-glass {
    background: var(--glass-strong);
    border: 1px solid var(--border-medium);
    color: var(--text-soft);
    backdrop-filter: blur(8px);
}

.btn-glass:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--primary);
    color: var(--text-main);
    transform: translateY(-1px);
}

/* Shimmer animation for primary button */
@keyframes shimmer {
    0%   { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(200%) skewX(-15deg); }
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: translateX(-100%) skewX(-15deg);
}

.btn-primary:hover::before {
    animation: shimmer 0.8s ease forwards;
}

/* ============ HERO ============ */
.hero-section {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 120px 80px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content { display: flex; flex-direction: column; align-items: flex-start; }

.hero-visual {
    position: relative;
    width: 100%;
    height: 500px;
    background: var(--glass);
    border-radius: 40px;
    border: 1px solid var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255,255,255,0.05);
}

.hero-title {
    font-size: 5rem;
    line-height: 1.08;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 30%, #94A3B8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 540px;
    margin-bottom: 40px;
}

/* ============ SECTIONS ============ */
.section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 40%, #94A3B8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============ FEATURE CARDS ============ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    transition: all 0.4s var(--ease-out);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: var(--shadow-md), 0 0 40px rgba(99, 102, 241, 0.08);
    background: var(--glass-strong);
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.15));
    border: 1px solid rgba(99, 102, 241, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* ============ SPLIT SECTION ============ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin: 80px 0;
}

.split-content h3 {
    font-size: 2.2rem;
    margin-bottom: 18px;
    color: var(--text-main);
}

.split-image {
    background: var(--glass);
    border-radius: 30px;
    height: 440px;
    border: 1px solid var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

/* ============ STATS ============ */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--glass);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

/* ============ FOOTER ============ */
.footer-mega {
    background: var(--bg-surface);
    padding: 80px 20px 40px;
    border-top: 1px solid var(--border-light);
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--glass-strong);
    border: 1px solid var(--border-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ============ AUTH PAGES ============ */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    z-index: 10;
}

.auth-container {
    display: flex;
    width: 100%;
    max-width: 960px;
    background: var(--bg-card);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-medium);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--ease-out);
}

.auth-container.active {
    opacity: 1;
    transform: translateY(0);
}

.auth-visual {
    flex: 1;
    background: linear-gradient(145deg, var(--primary-dark) 0%, var(--secondary) 100%);
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.auth-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(255,255,255,0.15) 0%, transparent 60%);
}

.auth-visual::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.auth-visual h2 {
    font-size: 2.2rem;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.auth-visual p {
    font-size: 1rem;
    opacity: 0.85;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.auth-form-side {
    width: 440px;
    padding: 60px;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

@media (max-width: 900px) {
    .auth-visual { display: none; }
    .auth-container { max-width: 460px; }
    .auth-form-side { width: 100%; }
}

/* ============ FORMS ============ */
.form-control,
.form-input {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-surface);
    border: 1px solid var(--border-medium);
    border-radius: 12px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.form-control::placeholder,
.form-input::placeholder {
    color: var(--text-muted);
}

.form-control:focus,
.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--bg-card);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

/* ============ DASHBOARD SIDEBAR ============ */
.sidebar {
    background: var(--bg-surface);
    border-right: 1px solid var(--border-light);
    padding: 28px 18px;
    display: flex;
    flex-direction: column;
}

.sidebar .brand {
    font-size: 1.4rem;
    margin-bottom: 36px;
    padding: 0 8px;
}

.sidebar ul { list-style: none; }

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-radius: 12px;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.25s var(--ease-out);
    margin-bottom: 4px;
    position: relative;
}

.nav-link:hover {
    background: var(--glass-strong);
    color: var(--text-main);
    transform: translateX(3px);
}

.nav-link.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.1));
    color: var(--primary);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.nav-link.active i {
    color: var(--primary);
    filter: drop-shadow(0 0 6px var(--primary));
}

.nav-link i {
    width: 18px;
    text-align: center;
    font-size: 1rem;
}

/* ============ MAIN CONTENT ============ */
.main-content {
    padding: 40px;
    background: var(--bg-deep);
    min-height: 100vh;
}

/* ============ DASHBOARD LAYOUT ============ */
.dashboard-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    min-height: 100vh;
}

/* ============ PLATFORM CARDS (Connection page) ============ */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 36px;
}

.platform-card {
    padding: 28px 20px;
    border-radius: 16px;
    background: var(--glass);
    border: 1px solid var(--border-light);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-out);
    text-decoration: none;
    display: block;
    color: var(--text-main);
}

.platform-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-medium);
    box-shadow: var(--shadow-md);
    background: var(--glass-strong);
}

.platform-card.active {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
    box-shadow: 0 0 0 1px var(--primary), var(--shadow-glow);
}

/* ============ PLATFORM SELECTION (Upload page) ============ */
.platform-option {
    background: var(--glass);
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s var(--ease-out);
    color: var(--text-soft);
}

.platform-option:hover {
    border-color: var(--border-medium);
    background: var(--glass-strong);
    transform: translateY(-2px);
}

.platform-option.active {
    border-color: var(--primary) !important;
    background: rgba(99, 102, 241, 0.12) !important;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
    color: var(--primary);
}

.platform-option.active div {
    color: var(--primary) !important;
    font-weight: 700;
}

/* ============ MEDIA TYPE / TIMING BUTTONS ============ */
.media-type-btn {
    transition: all 0.25s var(--ease-out);
    color: var(--text-muted);
    cursor: pointer;
}

.media-type-btn:hover {
    border-color: var(--border-medium) !important;
    color: var(--text-soft);
}

.media-type-btn.active {
    border-color: var(--primary) !important;
    background: rgba(99, 102, 241, 0.15) !important;
    color: var(--primary) !important;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
}

/* ============ CONNECT BANNER ============ */
.connect-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(99, 102, 241, 0.06);
    padding: 18px 22px;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    animation: bannerSlideIn 0.4s var(--ease-out);
}

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

/* ============ MODAL SYSTEM ============ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex !important;
    opacity: 1;
}

.modal-overlay .modal {
    transform: translateY(20px) scale(0.98);
    transition: transform 0.4s var(--ease-out);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal::-webkit-scrollbar { width: 5px; }
.modal::-webkit-scrollbar-track { background: transparent; }
.modal::-webkit-scrollbar-thumb { background: var(--border-medium); border-radius: 10px; }

/* ============ MOBILE SIDEBAR ============ */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    z-index: 9998;
}

.sidebar-overlay.active { display: block; }

.mobile-header-btn {
    display: none;
    background: var(--glass-strong);
    border: 1px solid var(--border-medium);
    color: var(--text-main);
    padding: 10px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
}

/* ============ ACCOUNT ITEMS ============ */
.account-list { display: flex; flex-direction: column; gap: 12px; }

.account-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--glass);
    border-radius: 14px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.account-item:hover {
    border-color: rgba(99, 102, 241, 0.25);
    background: var(--glass-strong);
}

/* ============ ANIMATIONS ============ */
@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.2); }
    50%       { box-shadow: 0 0 40px rgba(99, 102, 241, 0.4); }
}

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

@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

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

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

/* Animated gradient text */
.gradient-text {
    background: linear-gradient(135deg, #6366F1, #A855F7, #EC4899, #6366F1);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

/* Glow pulse on active elements */
.pulse { animation: pulse-glow 2.5s ease-in-out infinite; }

/* ============ PROGRESS BAR ============ */
#progressBar {
    background: linear-gradient(90deg, var(--primary), var(--pink), var(--secondary));
    background-size: 200% 100%;
    animation: progressShimmer 1.5s linear infinite;
    border-radius: 6px;
    height: 100%;
    transition: width 0.3s ease;
}

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

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-surface); }
::-webkit-scrollbar-thumb { background: var(--border-medium); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* ============ STATUS BADGES ============ */
.badge-success {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(16, 185, 129, 0.12);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.badge-warning {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(245, 158, 11, 0.12);
    color: #F59E0B;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-danger {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(239, 68, 68, 0.12);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ============ LOGO / PARTNER STRIP ============ */
.logo-strip {
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-surface);
    overflow: hidden;
    white-space: nowrap;
}

.logo-track {
    display: inline-block;
    animation: scroll 20s linear infinite;
}

.partner-logo {
    display: inline-block;
    font-size: 1.4rem;
    color: var(--text-muted);
    margin: 0 40px;
    opacity: 0.4;
}

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

/* ============ PRICING ============ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--glass);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s var(--ease-out);
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-medium);
    box-shadow: var(--shadow-md);
}

.pricing-card.premium {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
    box-shadow: var(--shadow-glow);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin: 16px 0;
    display: block;
    color: var(--text-main);
}

.feature-list li {
    margin-bottom: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list i { color: var(--accent); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-section { grid-template-columns: 1fr; padding: 120px 40px 60px; }
    .hero-visual { display: none; }
    .split-section { grid-template-columns: 1fr; }
    .stats-container { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .navbar { padding: 14px 24px; }
    .hero-title { font-size: 2.8rem; }
    .nav-menu { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
    .dashboard-layout { grid-template-columns: 1fr; }

    .sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        bottom: 0;
        width: 260px;
        z-index: 9999;
        transition: left 0.3s var(--ease-out);
        box-shadow: 20px 0 60px rgba(0,0,0,0.8);
    }

    .sidebar.active { left: 0; }
    .mobile-header-btn { display: flex !important; }

    .main-content { padding: 24px 16px; }
}
