/* ============================================
   SCYDE BOT - COMPLETE UNIFIED CSS
   All Pages - Zoomed & Optimized
   ============================================ */

/* === RESET === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === GLOBAL ZOOM === */
html {
    scroll-behavior: smooth;
    font-size: 20px !important; /* Base zoom - 25% larger */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
}

/* === CONTAINER === */
.container {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245, 158, 11, 0.15);
    padding: 12px 0;
    z-index: 1000;
}

.nav-container {
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
}

.nav-brand span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fbbf24;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 15px;
    color: #94a3b8;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-link i {
    font-size: 0.75rem;
}

.nav-link:hover,
.nav-link.active {
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.1);
}

.mobile-toggle {
    display: none;
    font-size: 1.2rem;
    color: #fbbf24;
    cursor: pointer;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    outline: none;
}

.btn i {
    font-size: 0.8rem;
}

.btn-primary {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: buttonShine 3s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
}

/* === HERO SECTION === */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px 60px;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: heroZoomIn 1s ease-out;
}

.hero-content {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 50px;
    font-size: 0.55rem;
    font-weight: 600;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    animation: badgeBounce 2s ease-in-out infinite;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24, #f59e0b, #fbbf24);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s ease-in-out infinite;
}

.hero-description {
    font-size: 0.9rem;
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.65rem;
    color: #94a3b8;
}

.hero-stars {
    display: flex;
    gap: 3px;
    color: #fbbf24;
}

/* === STATS GRID === */
.stats-wrapper {
    width: 100%;
    padding: 45px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.stat-card:hover {
    background: rgba(22, 22, 22, 0.9);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.25);
}

.stat-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(245, 158, 11, 0.13);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fbbf24;
    animation: iconPulse 2s ease-in-out infinite;
}

.stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.55rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* === SECTIONS === */
section {
    width: 100%;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 50px;
    font-size: 0.5rem;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    animation: badgeBounce 2s ease-in-out infinite;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* === FEATURES GRID === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 14px;
    padding: 36px 26px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    background: rgba(22, 22, 22, 0.9);
    border-color: rgba(245, 158, 11, 0.3);
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.25);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(245, 158, 11, 0.13);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fbbf24;
    animation: iconPulse 2s ease-in-out infinite;
}

.feature-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.feature-description {
    font-size: 0.7rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 14px;
}

.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fbbf24;
    font-size: 0.65rem;
    font-weight: 600;
}

/* === PRICING === */
.pricing-section {
    padding: 80px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 16px;
    padding: 32px 26px;
    transition: all 0.3s;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(245, 158, 11, 0.15);
}

.pricing-card.featured {
    border: 2px solid rgba(245, 158, 11, 0.45);
    background: rgba(22, 18, 10, 0.85);
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.2);
    animation: featuredGlow 2s ease-in-out infinite;
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 14px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 50px;
}

.plan-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.plan-description {
    font-size: 0.65rem;
    color: #94a3b8;
}

.plan-price {
    text-align: center;
    margin: 24px 0;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fbbf24;
}

.period {
    font-size: 0.65rem;
    color: #94a3b8;
}

.plan-features {
    margin: 24px 0;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.65rem;
    color: #cbd5e1;
}

.plan-features li i {
    color: #10b981;
    font-size: 0.7rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    margin-top: 20px;
}

/* === CTA SECTION === */
.cta-section {
    width: 100%;
    max-width: 950px;
    margin: 70px auto;
    padding: 55px 40px;
    text-align: center;
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 18px;
}

.cta-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #000;
}

.cta-section h2 {
    font-size: 1.7rem;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 28px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

/* === FOOTER === */
.footer {
    width: 100%;
    background: #0a0a0a;
    border-top: 1px solid rgba(245, 158, 11, 0.12);
    padding: 50px 0 24px;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 36px;
}

.footer-brand h3 {
    font-size: 0.85rem;
    color: #fbbf24;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.65rem;
    color: #94a3b8;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 38px;
    height: 38px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.18);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    border-color: transparent;
}

.footer-links h4 {
    font-size: 0.65rem;
    font-weight: 600;
    margin-bottom: 14px;
}

.footer-links a {
    font-size: 0.6rem;
    color: #94a3b8;
    display: block;
    margin-bottom: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(245, 158, 11, 0.12);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.6rem;
    color: #64748b;
}

/* === ANIMATIONS === */
@keyframes buttonShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes heroZoomIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes featuredGlow {
    0%, 100% { box-shadow: 0 10px 40px rgba(245, 158, 11, 0.3); }
    50% { box-shadow: 0 10px 60px rgba(245, 158, 11, 0.5); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* === BACKGROUND LAYERS === */
#gradient-canvas,
.floating-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* === SCROLL REVEAL === */
.reveal-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 10px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    html { font-size: 18px !important; }
    
    .stats-grid { grid-template-columns: repeat(2, 1fr); max-width: 650px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    html { font-size: 16px !important; }
    
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 1.6rem; }
    .nav-menu { display: none; }
    .mobile-toggle { display: block; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
    .stats-grid, .features-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        transition: left 0.4s ease;
    }
    
    .nav-menu.active { left: 0; }
    .nav-link { width: 100%; padding: 15px 20px; margin-bottom: 10px; font-size: 0.9rem; }
    .nav-menu .btn { width: 100%; margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   MEE6-STYLE MODERN COMPONENTS
   ============================================ */

/* === MODERN HERO === */
.hero-section-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-left {
    max-width: 600px;
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 24px;
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text-modern {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description-modern {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-stats-inline {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
}

.stat-inline {
    text-align: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 4px;
}

.stat-text {
    font-size: 0.75rem;
    color: #64748b;
}

.hero-buttons-modern {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
}

.btn-primary-modern {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 18px 36px;
    font-size: 0.9rem;
}

.hero-trust {
    font-size: 0.75rem;
    color: #64748b;
}

.hero-trust i {
    color: #10b981;
    margin-right: 4px;
}

/* === HERO VISUAL === */
.hero-right {
    position: relative;
    height: 500px;
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(18, 18, 18, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    padding: 18px 22px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.card-1 {
    top: 10%;
    left: 10%;
    animation: floatCard 3s ease-in-out infinite;
}

.card-2 {
    top: 45%;
    right: 10%;
    animation: floatCard 3.5s ease-in-out infinite 0.5s;
}

.card-3 {
    bottom: 15%;
    left: 20%;
    animation: floatCard 3.2s ease-in-out infinite 1s;
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.card-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 12px;
}

.card-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.card-desc {
    font-size: 0.7rem;
    color: #94a3b8;
}

.hero-glow-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

/* === TRUSTED BY === */
.trusted-section {
    padding: 40px 0;
    border-top: 1px solid rgba(245, 158, 11, 0.1);
    border-bottom: 1px solid rgba(245, 158, 11, 0.1);
}

.trusted-text {
    text-align: center;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    padding: 12px 24px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
}

/* === MODERN FEATURES === */
.features-modern-section {
    padding: 100px 0;
}

.section-header-modern {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge-modern {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title-modern {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle-modern {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
}

.features-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feature-modern-card {
    position: relative;
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 16px;
    padding: 36px 28px;
    transition: all 0.3s;
}

.feature-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.2);
    border-color: rgba(245, 158, 11, 0.3);
}

.featured-card {
    border: 2px solid rgba(245, 158, 11, 0.4);
    background: rgba(22, 18, 10, 0.8);
}

.feature-badge-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 14px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #000;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 50px;
}

.feature-modern-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 14px;
    font-size: 1.6rem;
    color: #fbbf24;
    margin-bottom: 20px;
}

.feature-modern-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-modern-desc {
    font-size: 0.8rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-list-modern {
    list-style: none;
    margin-bottom: 20px;
}

.feature-list-modern li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.75rem;
    color: #cbd5e1;
}

.feature-list-modern i {
    color: #10b981;
    font-size: 0.7rem;
}

.feature-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fbbf24;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s;
}

.feature-link-modern:hover {
    gap: 12px;
}

/* === WHY SECTION === */
.why-section {
    padding: 100px 0;
    background: rgba(245, 158, 11, 0.03);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-description {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 40px;
}

.why-features {
    margin-bottom: 40px;
}

.why-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.why-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.12);
    border-radius: 12px;
    font-size: 1.3rem;
    color: #fbbf24;
    flex-shrink: 0;
}

.why-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.why-content p {
    font-size: 0.8rem;
    color: #94a3b8;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-showcase-item {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
}

.stat-showcase-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 8px;
}

.stat-showcase-label {
    font-size: 0.75rem;
    color: #64748b;
}

/* === USE CASES === */
.use-cases-section {
    padding: 100px 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.use-case-card {
    background: rgba(18, 18, 18, 0.7);
    border: 1px solid rgba(245, 158, 11, 0.12);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.use-case-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 158, 11, 0.3);
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.use-case-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.use-case-card p {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* === MODERN CTA === */
.cta-modern-section {
    padding: 100px 0;
}

.cta-modern-box {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.05) 100%);
    border: 2px solid rgba(245, 158, 11, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
}

.cta-modern-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-modern-text {
    font-size: 1rem;
    color: #94a3b8;
    margin-bottom: 32px;
}

.cta-modern-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-right {
        height: 400px;
    }
    
    .features-modern-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.2rem;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .hero-stats-inline {
        flex-wrap: wrap;
        gap: 24px;
    }
    
    .hero-buttons-modern,
    .cta-modern-buttons {
        flex-direction: column;
    }
    
    .btn-modern {
        width: 100%;
    }
    
    .features-modern-grid,
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
    }
}

/* === USER DROPDOWN === */
.nav-user-dropdown {
    position: relative;
}

.nav-user-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
}

.nav-user-button:hover {
    background: rgba(245, 158, 11, 0.15);
    border-color: rgba(245, 158, 11, 0.3);
}

.nav-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(245, 158, 11, 0.3);
}

.nav-user-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 200px;
    background: rgba(18, 18, 18, 0.98);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 12px;
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.nav-user-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    color: #cbd5e1;
    font-size: 0.75rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.user-menu-item:hover {
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
}

.user-menu-divider {
    height: 1px;
    background: rgba(245, 158, 11, 0.1);
    margin: 8px 0;
}

.no-servers {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

