/* =============================================
   FILE: assets/css/style.css
   ============================================= */

/* ===== CSS Variables ===== */
:root {
    --primary: #6C63FF;
    --primary-dark: #5A52D5;
    --primary-light: #8B83FF;
    --secondary: #00D4FF;
    --secondary-dark: #00B8D4;
    --accent: #FF6B6B;
    --dark: #0a0e1a;
    --dark-light: #141828;
    --dark-card: #1a1f2e;
    --text-light: #e8e8e8;
    --text-muted: #a0a0b8;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --radius: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text-light);
    overflow-x: hidden;
    padding-top: 76px;
    min-height: 100vh;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--primary);
    border-right-color: var(--secondary);
    animation: spin 1s linear infinite;
}
.loader-text {
    position: absolute;
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Navbar ===== */
.navbar-glass {
    background: rgba(10, 14, 26, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
    transition: var(--transition);
}
.navbar-glass.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff !important;
    text-decoration: none;
}
.brand-icon {
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.brand-text {
    color: #fff;
}
.brand-highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-link {
    color: var(--text-muted) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}
.nav-link:hover {
    color: #fff !important;
    background: rgba(108, 99, 255, 0.1);
}
.nav-link.active {
    color: #fff !important;
    background: rgba(108, 99, 255, 0.15);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}
.nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark)) !important;
    border: none !important;
    padding: 8px 20px !important;
    border-radius: 50px !important;
    font-weight: 600;
    transition: var(--transition) !important;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
    background: linear-gradient(135deg, var(--primary-light), var(--primary)) !important;
}
.navbar-toggler {
    border: 1px solid var(--glass-border);
    color: #fff;
}
.navbar-toggler:focus {
    box-shadow: none;
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 50%, rgba(108, 99, 255, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 60%),
                var(--dark);
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(108, 99, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(0, 212, 255, 0.05) 0%, transparent 50%);
    animation: heroFloat 20s ease-in-out infinite;
}
@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -20px) rotate(2deg); }
    66% { transform: translate(-20px, 30px) rotate(-1deg); }
}
.hero-content {
    position: relative;
    z-index: 1;
}
.hero-badge {
    display: inline-block;
    background: rgba(108, 99, 255, 0.15);
    border: 1px solid rgba(108, 99, 255, 0.2);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}
.hero-badge i {
    margin-right: 6px;
}
.hero h1 {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}
.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(108, 99, 255, 0.4);
}
.hero-buttons .btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}
.hero-buttons .btn-outline:hover {
    border-color: var(--primary);
    background: rgba(108, 99, 255, 0.1);
    transform: translateY(-3px);
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease 0.8s both;
}
.hero-stats .stat-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}
.hero-stats .stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}
.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease 0.6s both;
}
.hero-visual .floating-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 30px;
    max-width: 420px;
    margin: 0 auto;
}
.hero-visual .floating-card .card-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}
.hero-visual .floating-card h4 {
    font-weight: 700;
    margin-bottom: 8px;
}
.hero-visual .floating-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}
.floating-badge {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 8px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    animation: float 4s ease-in-out infinite;
}
.floating-badge:nth-child(2) {
    top: 10%;
    right: -10%;
    animation-delay: 0.5s;
}
.floating-badge:nth-child(3) {
    bottom: 20%;
    left: -15%;
    animation-delay: 1s;
}
.floating-badge i {
    color: var(--secondary);
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

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

/* ===== Section Styles ===== */
.section {
    padding: 80px 0;
}
.section-alt {
    background: var(--dark-light);
}
.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 12px;
}
.section-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
}

/* ===== Plan Cards ===== */
.plan-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    height: 100%;
}
.plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(108, 99, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.plan-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(108, 99, 255, 0.15);
}
.plan-card.popular .plan-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}
.plan-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}
.plan-card h3 {
    font-weight: 700;
    font-size: 1.5rem;
}
.plan-card .plan-price {
    font-size: 2.8rem;
    font-weight: 900;
    margin: 12px 0 4px;
}
.plan-card .plan-price .currency {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-muted);
}
.plan-card .plan-price .period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}
.plan-card .plan-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
}
.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}
.plan-features li:last-child {
    border-bottom: none;
}
.plan-features li i {
    color: var(--secondary);
    font-size: 0.8rem;
    width: 20px;
}
.plan-features li .fa-times {
    color: #ff6b6b;
}
.plan-card .btn-plan {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    background: rgba(108, 99, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(108, 99, 255, 0.2);
}
.plan-card .btn-plan:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.3);
}
.plan-card.popular .btn-plan {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
}
.plan-card.popular .btn-plan:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(108, 99, 255, 0.4);
}

/* ===== Feature Cards ===== */
.feature-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(108, 99, 255, 0.3);
}
.feature-card .feature-icon {
    font-size: 2.8rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}
.feature-card h5 {
    font-weight: 700;
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== Testimonial ===== */
.testimonial-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
}
.testimonial-card:hover {
    border-color: rgba(108, 99, 255, 0.2);
}
.testimonial-card .stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 12px;
}
.testimonial-card blockquote {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}
.testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 16px;
}
.testimonial-card .testimonial-author .avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}
.testimonial-card .testimonial-author .info h6 {
    font-weight: 600;
    margin: 0;
    font-size: 0.95rem;
}
.testimonial-card .testimonial-author .info p {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-light);
    padding: 60px 0 20px;
    border-top: 1px solid var(--glass-border);
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 16px;
}
.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    max-width: 320px;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
    text-decoration: none;
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
}
.footer h5 {
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 1.05rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: #fff;
    padding-left: 6px;
}
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-contact li i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 2px;
    width: 20px;
}
.footer-divider {
    border-color: var(--glass-border);
    margin: 30px 0 20px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}
.footer-bottom-links {
    display: flex;
    gap: 20px;
}
.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-bottom-links a:hover {
    color: #fff;
}

/* ===== Scroll Top Button ===== */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.3);
    z-index: 999;
}
.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
}
.scroll-top-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(108, 99, 255, 0.4);
}

/* ===== Auth Pages ===== */
.auth-section {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    padding: 60px 0;
    background: radial-gradient(ellipse at 30% 40%, rgba(108, 99, 255, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 70% 60%, rgba(0, 212, 255, 0.05) 0%, transparent 60%),
                var(--dark);
}
.auth-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 48px 40px;
    max-width: 480px;
    margin: 0 auto;
    backdrop-filter: blur(20px);
}
.auth-card .auth-logo {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.auth-card .auth-logo .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.auth-card .auth-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
}
.auth-card .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    transition: var(--transition);
}
.auth-card .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.15);
    color: #fff;
}
.auth-card .form-control::placeholder {
    color: var(--text-muted);
}
.auth-card .form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-light);
}
.auth-card .btn-auth {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    transition: var(--transition);
}
.auth-card .btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.3);
}
.auth-card .auth-link {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}
.auth-card .auth-link:hover {
    color: #fff;
}
.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--glass-border);
}

/* ===== Dashboard ===== */
.dashboard-wrapper {
    background: var(--dark-light);
    min-height: calc(100vh - 76px);
    padding: 30px 0;
}
.dashboard-card {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
    height: 100%;
}
.dashboard-card:hover {
    border-color: rgba(108, 99, 255, 0.2);
}
.dashboard-card .card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.dashboard-card .card-icon.primary {
    background: rgba(108, 99, 255, 0.15);
    color: var(--primary);
}
.dashboard-card .card-icon.success {
    background: rgba(0, 200, 150, 0.15);
    color: #00c896;
}
.dashboard-card .card-icon.warning {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}
.dashboard-card .card-icon.danger {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}
.dashboard-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
}
.dashboard-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}
.dashboard-table {
    background: var(--dark-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
}
.dashboard-table .table {
    margin: 0;
    color: var(--text-light);
}
.dashboard-table .table thead {
    background: rgba(255, 255, 255, 0.03);
}
.dashboard-table .table th {
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 16px;
}
.dashboard-table .table td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--glass-border);
    vertical-align: middle;
}
.dashboard-table .table tr:hover {
    background: rgba(255, 255, 255, 0.02);
}
.dashboard-table .table .badge {
    font-weight: 500;
    padding: 4px 12px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    .hero-stats {
        gap: 24px;
    }
    .hero-stats .stat-item h3 {
        font-size: 1.8rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 68px;
    }
    .hero {
        min-height: auto;
        padding: 40px 0 60px;
        text-align: center;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-visual .floating-card {
        max-width: 100%;
        margin-top: 30px;
    }
    .floating-badge {
        display: none;
    }
    .auth-card {
        padding: 32px 20px;
    }
    .section {
        padding: 50px 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .plan-card {
        padding: 30px 20px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero-stats .stat-item h3 {
        font-size: 1.4rem;
    }
    .hero-stats {
        gap: 16px;
        flex-wrap: wrap;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .plan-card .plan-price {
        font-size: 2.2rem;
    }
    .dashboard-card h3 {
        font-size: 1.4rem;
    }
}
/* ===== HERO BANNER ===== */
.hero-banner {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0;
    background: var(--dark);
}

.hero-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(108, 99, 255, 0.15) 0%, transparent 60%),
        linear-gradient(225deg, rgba(0, 212, 255, 0.1) 0%, transparent 60%),
        url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    z-index: 0;
}

.hero-banner-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 26, 0.7);
    z-index: 1;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
}

.hero-banner-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-banner-title .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-banner-desc {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-banner-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-banner-buttons .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}
.hero-banner-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(108, 99, 255, 0.4);
}

.hero-banner-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}
.hero-banner-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}

.hero-banner-stats {
    display: flex;
    gap: 40px;
}
.hero-banner-stats .stat-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}
.hero-banner-stats .stat-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.hero-banner-floating-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 40px 32px;
    text-align: center;
}
.hero-banner-floating-card .floating-card-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}
.hero-banner-floating-card h4 {
    font-weight: 700;
    margin-bottom: 8px;
}
.hero-banner-floating-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-banner-title {
        font-size: 3rem;
    }
    .hero-banner-stats {
        gap: 24px;
    }
    .hero-banner-stats .stat-item h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: auto;
        padding: 40px 0;
        text-align: center;
    }
    .hero-banner-title {
        font-size: 2.2rem;
    }
    .hero-banner-desc {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-banner-buttons {
        justify-content: center;
    }
    .hero-banner-stats {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-banner-title {
        font-size: 1.8rem;
    }
    .hero-banner-stats .stat-item h3 {
        font-size: 1.4rem;
    }
    .hero-banner-buttons .btn-primary,
    .hero-banner-buttons .btn-outline-light {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
/* ===== FIX HORIZONTAL SCROLL ===== */
html, body {
    overflow-x: hidden;
    width: 100%;
}
* {
    max-width: 100%;
    box-sizing: border-box;
}
.container, .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}
.row {
    margin-left: 0;
    margin-right: 0;
}