/* DJ Drops Platform - MicheByte Technologies */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&family=Rajdhani:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a28;
    --bg-card-hover: #222236;
    --neon-cyan: #00f0ff;
    --neon-magenta: #ff00aa;
    --neon-purple: #8b5cf6;
    --neon-green: #00ff88;
    --neon-orange: #ff6a00;
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted: #6a6a80;
    --border-color: #2a2a3e;
    --danger: #ff3b5c;
    --success: #00d68f;
    --warning: #ffaa00;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow-glow: 0 0 30px rgba(0, 240, 255, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

a { color: var(--neon-cyan); text-decoration: none; transition: var(--transition); }
a:hover { color: #fff; text-shadow: 0 0 10px var(--neon-cyan); }

h1, h2, h3, h4, h5 { font-family: 'Orbitron', sans-serif; font-weight: 700; letter-spacing: 0.5px; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 0 2rem;
    height: 70px;
    display: flex; align-items: center; justify-content: space-between;
}
.navbar .logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem; font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.navbar .logo span { -webkit-text-fill-color: var(--neon-cyan); }
.nav-links { display: flex; gap: 1.8rem; align-items: center; list-style: none; }
.nav-links a {
    color: var(--text-secondary); font-weight: 500; font-size: 0.95rem;
    text-transform: uppercase; letter-spacing: 1px; padding: 0.3rem 0;
    border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active { color: var(--neon-cyan); border-bottom-color: var(--neon-cyan); text-shadow: none; }
.nav-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.7rem 1.8rem; border-radius: var(--radius-sm);
    font-family: 'Rajdhani', sans-serif; font-weight: 600; font-size: 0.95rem;
    text-transform: uppercase; letter-spacing: 1px;
    border: none; cursor: pointer; transition: var(--transition);
}
.btn-primary {
    background: linear-gradient(135deg, var(--neon-cyan), #0088aa);
    color: #000; box-shadow: 0 0 20px rgba(0, 240, 255, 0.25);
}
.btn-primary:hover { box-shadow: 0 0 35px rgba(0, 240, 255, 0.45); transform: translateY(-2px); color: #000; text-shadow: none; }
.btn-secondary {
    background: transparent; border: 2px solid var(--neon-magenta);
    color: var(--neon-magenta);
}
.btn-secondary:hover { background: var(--neon-magenta); color: #fff; }
.btn-success { background: var(--success); color: #000; }
.btn-danger { background: var(--danger); color: #fff; }
.btn-warning { background: var(--warning); color: #000; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== HERO ===== */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(180deg, rgba(10,10,15,0.3) 0%, var(--bg-primary) 100%),
                url('https://images.unsplash.com/photo-1571266028243-e4733b0f0bb0?w=1920&q=80') center/cover;
    overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0,240,255,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 50%, rgba(255,0,170,0.06) 0%, transparent 60%);
}
.hero-content { position: relative; text-align: center; max-width: 800px; }
.hero-badge {
    display: inline-block; padding: 0.4rem 1.2rem;
    background: rgba(0,240,255,0.1); border: 1px solid rgba(0,240,255,0.3);
    border-radius: 50px; font-size: 0.85rem; color: var(--neon-cyan);
    margin-bottom: 1.5rem; letter-spacing: 2px; text-transform: uppercase;
    font-family: 'Space Mono', monospace;
}
.hero h1 {
    font-size: clamp(2.2rem, 6vw, 4.5rem); line-height: 1.1;
    margin-bottom: 1.2rem;
}
.hero h1 .glow {
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero p { font-size: 1.15rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 2rem; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 2rem; }
.section-dark { background: var(--bg-secondary); }
.container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 0.8rem; }
.section-header .accent { color: var(--neon-cyan); }
.section-header p { color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* ===== CARDS GRID ===== */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius); padding: 1.8rem;
    transition: var(--transition); position: relative; overflow: hidden;
}
.card:hover { border-color: rgba(0,240,255,0.3); transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.card-icon {
    width: 50px; height: 50px; border-radius: 12px;
    background: linear-gradient(135deg, rgba(0,240,255,0.15), rgba(139,92,246,0.15));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; margin-bottom: 1rem;
}
.card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.card p { color: var(--text-secondary); font-size: 0.95rem; }

/* ===== VOICE CARDS ===== */
.voice-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius); overflow: hidden; transition: var(--transition);
}
.voice-card:hover { border-color: var(--neon-cyan); box-shadow: var(--shadow-glow); }
.voice-card-header {
    padding: 1.5rem; border-bottom: 1px solid var(--border-color);
    display: flex; align-items: center; gap: 1rem;
}
.voice-avatar {
    width: 55px; height: 55px; border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple));
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}
.voice-card-body { padding: 1.5rem; }
.voice-card-body p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 1rem; }

/* ===== AUDIO PLAYER ===== */
.audio-player {
    display: flex; align-items: center; gap: 0.8rem;
    background: rgba(0,0,0,0.3); padding: 0.6rem 1rem;
    border-radius: 50px; margin-bottom: 1rem;
}
.play-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--neon-cyan); border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    color: #000; font-size: 0.9rem; flex-shrink: 0;
    transition: var(--transition);
}
.play-btn:hover { transform: scale(1.1); box-shadow: 0 0 15px rgba(0,240,255,0.4); }
.audio-progress {
    flex: 1; height: 4px; background: var(--border-color);
    border-radius: 2px; overflow: hidden; cursor: pointer;
}
.audio-progress-fill { height: 100%; background: var(--neon-cyan); width: 0%; border-radius: 2px; transition: width 0.1s; }
.audio-time { font-family: 'Space Mono', monospace; font-size: 0.75rem; color: var(--text-muted); min-width: 40px; }

/* ===== PRICING ===== */
.pricing-card {
    background: var(--bg-card); border: 2px solid var(--neon-cyan);
    border-radius: var(--radius); padding: 2.5rem; text-align: center;
    max-width: 420px; margin: 0 auto; position: relative;
    box-shadow: 0 0 40px rgba(0,240,255,0.1);
}
.pricing-card .price {
    font-family: 'Orbitron', sans-serif; font-size: 2.8rem; font-weight: 900;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-green));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    margin: 1rem 0;
}
.pricing-card .period { font-size: 1rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 2rem; }
.pricing-features li {
    padding: 0.5rem 0; color: var(--text-secondary); font-size: 0.95rem;
    display: flex; align-items: center; gap: 0.6rem;
}
.pricing-features li::before { content: '✓'; color: var(--neon-green); font-weight: 700; }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius); padding: 2rem;
}
.testimonial-card .stars { color: var(--warning); margin-bottom: 0.8rem; font-size: 1.1rem; }
.testimonial-card .quote { color: var(--text-secondary); font-style: italic; margin-bottom: 1.2rem; line-height: 1.7; }
.testimonial-card .author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-card .author-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-magenta), var(--neon-purple));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem;
}
.testimonial-card .author-info strong { display: block; font-size: 0.95rem; }
.testimonial-card .author-info span { color: var(--text-muted); font-size: 0.85rem; }

/* ===== FAQ ===== */
.faq-item {
    border: 1px solid var(--border-color); border-radius: var(--radius-sm);
    margin-bottom: 0.8rem; overflow: hidden;
}
.faq-question {
    padding: 1.2rem 1.5rem; cursor: pointer; display: flex;
    justify-content: space-between; align-items: center;
    font-weight: 600; font-size: 1rem;
    transition: var(--transition);
}
.faq-question:hover { background: var(--bg-card-hover); }
.faq-question .icon { color: var(--neon-cyan); transition: transform 0.3s; font-size: 1.2rem; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
    padding: 0 1.5rem;
}
.faq-item.active .faq-answer { max-height: 300px; padding-bottom: 1.2rem; }
.faq-answer p { color: var(--text-secondary); font-size: 0.95rem; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
    display: block; margin-bottom: 0.4rem; font-weight: 600;
    font-size: 0.9rem; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px;
}
.form-control {
    width: 100%; padding: 0.8rem 1rem;
    background: rgba(0,0,0,0.3); border: 1px solid var(--border-color);
    border-radius: var(--radius-sm); color: var(--text-primary);
    font-family: 'Rajdhani', sans-serif; font-size: 1rem;
    transition: var(--transition);
}
.form-control:focus { outline: none; border-color: var(--neon-cyan); box-shadow: 0 0 10px rgba(0,240,255,0.15); }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2300f0ff' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }
textarea.form-control { min-height: 100px; resize: vertical; }

/* ===== AUTH PAGES ===== */
.auth-page {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-primary), var(--bg-secondary));
}
.auth-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius); padding: 2.5rem; width: 100%; max-width: 440px;
}
.auth-card h2 { text-align: center; margin-bottom: 0.5rem; font-size: 1.6rem; }
.auth-card .subtitle { text-align: center; color: var(--text-muted); margin-bottom: 2rem; }
.auth-links { text-align: center; margin-top: 1.5rem; color: var(--text-muted); font-size: 0.9rem; }

/* ===== DASHBOARD ===== */
.dashboard-wrap { display: flex; min-height: 100vh; padding-top: 70px; }

.sidebar {
    width: 260px; background: var(--bg-secondary); border-right: 1px solid var(--border-color);
    padding: 1.5rem 0; position: fixed; top: 70px; bottom: 0; overflow-y: auto;
    z-index: 100;
}
.sidebar-nav { list-style: none; }
.sidebar-nav a {
    display: flex; align-items: center; gap: 0.8rem;
    padding: 0.8rem 1.5rem; color: var(--text-secondary);
    font-weight: 500; font-size: 0.95rem; border-left: 3px solid transparent;
    transition: var(--transition);
}
.sidebar-nav a:hover, .sidebar-nav a.active {
    color: var(--neon-cyan); background: rgba(0,240,255,0.05);
    border-left-color: var(--neon-cyan); text-shadow: none;
}
.sidebar-section { padding: 0.8rem 1.5rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--text-muted); margin-top: 1rem; }

.main-content { flex: 1; margin-left: 260px; padding: 2rem; }

.page-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}
.page-header h1 { font-size: 1.6rem; }

/* ===== STAT CARDS ===== */
.stat-card {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius); padding: 1.5rem;
    display: flex; align-items: center; gap: 1rem;
}
.stat-icon {
    width: 50px; height: 50px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; flex-shrink: 0;
}
.stat-icon.cyan { background: rgba(0,240,255,0.12); color: var(--neon-cyan); }
.stat-icon.magenta { background: rgba(255,0,170,0.12); color: var(--neon-magenta); }
.stat-icon.green { background: rgba(0,255,136,0.12); color: var(--neon-green); }
.stat-icon.orange { background: rgba(255,106,0,0.12); color: var(--neon-orange); }
.stat-icon.purple { background: rgba(139,92,246,0.12); color: var(--neon-purple); }
.stat-info h3 { font-family: 'Rajdhani', sans-serif; font-size: 0.85rem; color: var(--text-muted); font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.stat-info .value { font-family: 'Orbitron', sans-serif; font-size: 1.6rem; font-weight: 700; }

/* ===== TABLE ===== */
.table-wrap {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius); overflow-x: auto;
}
.table-wrap table { width: 100%; border-collapse: collapse; }
.table-wrap th {
    text-align: left; padding: 1rem 1.2rem;
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px;
    color: var(--text-muted); border-bottom: 1px solid var(--border-color);
    font-family: 'Space Mono', monospace;
}
.table-wrap td {
    padding: 0.9rem 1.2rem; border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}
.table-wrap tr:last-child td { border-bottom: none; }
.table-wrap tr:hover td { background: rgba(0,240,255,0.02); }

/* ===== BADGES ===== */
.badge {
    display: inline-block; padding: 0.25rem 0.7rem;
    border-radius: 50px; font-size: 0.78rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px;
}
.badge-success { background: rgba(0,214,143,0.15); color: var(--success); }
.badge-warning { background: rgba(255,170,0,0.15); color: var(--warning); }
.badge-danger { background: rgba(255,59,92,0.15); color: var(--danger); }
.badge-info { background: rgba(0,240,255,0.15); color: var(--neon-cyan); }
.badge-purple { background: rgba(139,92,246,0.15); color: var(--neon-purple); }

/* ===== ALERTS ===== */
.alert {
    padding: 1rem 1.2rem; border-radius: var(--radius-sm);
    margin-bottom: 1.2rem; font-size: 0.95rem;
}
.alert-success { background: rgba(0,214,143,0.1); border: 1px solid rgba(0,214,143,0.3); color: var(--success); }
.alert-danger { background: rgba(255,59,92,0.1); border: 1px solid rgba(255,59,92,0.3); color: var(--danger); }
.alert-warning { background: rgba(255,170,0,0.1); border: 1px solid rgba(255,170,0,0.3); color: var(--warning); }
.alert-info { background: rgba(0,240,255,0.1); border: 1px solid rgba(0,240,255,0.3); color: var(--neon-cyan); }

/* ===== SUBSCRIPTION STATUS ===== */
.sub-status {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius); padding: 1.5rem; margin-bottom: 2rem;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.sub-status.active { border-color: rgba(0,214,143,0.4); }
.sub-status.expired { border-color: rgba(255,59,92,0.4); }

/* ===== MODAL ===== */
.modal-overlay {
    display: none; position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(5px);
    align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.active { display: flex; }
.modal {
    background: var(--bg-card); border: 1px solid var(--border-color);
    border-radius: var(--radius); width: 100%; max-width: 500px;
    max-height: 90vh; overflow-y: auto;
}
.modal-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 1.5rem; border-bottom: 1px solid var(--border-color);
}
.modal-header h3 { font-size: 1.1rem; }
.modal-close { background: none; border: none; color: var(--text-muted); font-size: 1.4rem; cursor: pointer; }
.modal-body { padding: 1.5rem; }
.modal-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--border-color); display: flex; gap: 0.8rem; justify-content: flex-end; }

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary); border-top: 1px solid var(--border-color);
    padding: 3rem 2rem 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer h4 { font-size: 0.95rem; margin-bottom: 1rem; color: var(--neon-cyan); }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a { color: var(--text-muted); font-size: 0.9rem; }
.footer ul a:hover { color: var(--neon-cyan); }
.footer-bottom { text-align: center; padding-top: 1.5rem; border-top: 1px solid var(--border-color); color: var(--text-muted); font-size: 0.85rem; }
.social-links { display: flex; gap: 1rem; }
.social-links a {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.05); display: flex;
    align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 1rem;
    transition: var(--transition);
}
.social-links a:hover { background: var(--neon-cyan); color: #000; }

/* ===== LOADING ===== */
.spinner {
    width: 36px; height: 36px; border: 3px solid var(--border-color);
    border-top-color: var(--neon-cyan); border-radius: 50%;
    animation: spin 0.8s linear infinite; margin: 2rem auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ===== SEARCH BAR ===== */
.search-bar {
    display: flex; gap: 0.8rem; margin-bottom: 1.5rem; flex-wrap: wrap;
}
.search-bar input, .search-bar select {
    padding: 0.7rem 1rem; background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-color); border-radius: var(--radius-sm);
    color: var(--text-primary); font-family: 'Rajdhani', sans-serif; font-size: 0.95rem;
}
.search-bar input { flex: 1; min-width: 200px; }
.search-bar input:focus, .search-bar select:focus { outline: none; border-color: var(--neon-cyan); }

/* ===== EMPTY STATE ===== */
.empty-state {
    text-align: center; padding: 3rem 1rem; color: var(--text-muted);
}
.empty-state .icon { font-size: 3rem; margin-bottom: 1rem; opacity: 0.4; }
.empty-state h3 { color: var(--text-secondary); margin-bottom: 0.5rem; }

/* ===== FILE INPUT ===== */
.file-input-wrap {
    border: 2px dashed var(--border-color); border-radius: var(--radius-sm);
    padding: 2rem; text-align: center; cursor: pointer;
    transition: var(--transition);
}
.file-input-wrap:hover { border-color: var(--neon-cyan); background: rgba(0,240,255,0.03); }
.file-input-wrap input { display: none; }
.file-input-wrap .label { color: var(--text-muted); font-size: 0.9rem; }
.file-input-wrap .selected { color: var(--neon-green); font-size: 0.9rem; margin-top: 0.5rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .navbar { padding: 0 1rem; }
    .nav-links {
        display: none; position: fixed; top: 70px; left: 0; right: 0;
        background: var(--bg-secondary); flex-direction: column;
        padding: 1.5rem; gap: 0; border-bottom: 1px solid var(--border-color);
    }
    .nav-links.active { display: flex; }
    .nav-links a { padding: 0.8rem 0; }
    .nav-toggle { display: block; }
    .sidebar { display: none; position: fixed; top: 70px; left: 0; bottom: 0; width: 260px; z-index: 500; }
    .sidebar.active { display: block; }
    .main-content { margin-left: 0; padding: 1.2rem; }
    .hero { padding: 5rem 1.2rem 3rem; }
    .section { padding: 3rem 1.2rem; }
    .page-header { flex-direction: column; align-items: flex-start; }
    .sub-status { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
    .auth-card { padding: 1.5rem; }
    .pricing-card { padding: 1.5rem; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; }
}
