/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== COLORS ===== */
:root {
    --primary-cyan: #00c3ff;
    --primary-cyan-dark: #0099cc;
    --dark-bg: #0a0a0a;
    --dark-light: #1a1a1a;
    --dark-lighter: #2a2a2a;
    --dark-border: #333333;
    --text-muted: #888888;
    --white: #ffffff;
    --green: #22c55e;
    --yellow: #eab308;
    --red: #ef4444;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem auto;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--primary-cyan);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-cyan-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--text-muted);
}

.btn-outline:hover {
    border-color: var(--primary-cyan);
    background-color: rgba(0, 195, 255, 0.1);
}

.btn-outline-small {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid var(--text-muted);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.btn-outline-small:hover {
    border-color: var(--primary-cyan);
    color: var(--white);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-starter {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: var(--white);
}

.btn-starter:hover {
    background: linear-gradient(135deg, #1d4ed8, #1e40af);
}

.btn-pro {
    background: linear-gradient(135deg, var(--primary-cyan), var(--primary-cyan-dark));
    color: var(--white);
}

.btn-pro:hover {
    background: linear-gradient(135deg, var(--primary-cyan-dark), var(--primary-cyan));
}

.btn-ultimate {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: var(--white);
}

.btn-ultimate:hover {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* ===== HEADER ===== */
.header {
    background-color: var(--dark-light);
    border-bottom: 1px solid var(--dark-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--white);
}

.logo-img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-cyan);
}

.desktop-nav,
.desktop-only {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
}

.hamburger {
    width: 1.5rem;
    height: 2px;
    background-color: var(--white);
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 1.5rem;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -6px;
}

.hamburger::after {
    bottom: -6px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--dark-border);
    background-color: var(--dark-light);
}

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

.mobile-nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: var(--primary-cyan);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-light) 50%, var(--dark-bg) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.particle {
    position: absolute;
    background-color: var(--primary-cyan);
    border-radius: 50%;
    filter: blur(1px);
    animation: pulse-slow 3s infinite;
}

.particle-1 {
    top: 20%;
    left: 10%;
    width: 8rem;
    height: 8rem;
    animation-delay: 0s;
}

.particle-2 {
    bottom: 20%;
    right: 10%;
    width: 12rem;
    height: 12rem;
    animation-delay: 1s;
}

.particle-3 {
    top: 50%;
    left: 33%;
    width: 6rem;
    height: 6rem;
    animation-delay: 2s;
}

@keyframes pulse-slow {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    animation: fadeInUp 1s ease-out;
}

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

.hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-title-main {
    display: block;
    background: linear-gradient(135deg, #ffffff, #e5e7eb, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-accent {
    display: block;
    color: var(--primary-cyan);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight {
    color: var(--primary-cyan);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 32rem;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-cyan);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 5rem 0;
    background-color: var(--dark-light);
}

.section-header {
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background-color: var(--dark-lighter);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--dark-border);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.feature-card:hover {
    border-color: rgba(0, 195, 255, 0.3);
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 2rem rgba(0, 195, 255, 0.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(0, 195, 255, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--primary-cyan);
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== PRICING SECTION ===== */
.pricing {
    padding: 5rem 0;
    background-color: var(--dark-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background-color: var(--dark-lighter);
    border-radius: 1rem;
    border: 1px solid var(--dark-border);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

.pricing-card:hover {
    transform: translateY(-1rem);
    box-shadow: 0 2rem 4rem rgba(0, 195, 255, 0.2);
}

.pricing-card-popular {
    border: 2px solid var(--primary-cyan);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-cyan);
    color: var(--white);
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0 1rem 0 0.75rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-cyan);
}

.price-period {
    color: var(--text-muted);
    margin-left: 0.5rem;
    font-size: 1.25rem;
}

.plan-description {
    color: var(--text-muted);
}

.pricing-features {
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.feature-check {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--green);
    flex-shrink: 0;
}

.pricing-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-footer {
    text-align: center;
    color: var(--text-muted);
}

.pricing-footer p {
    margin-bottom: 1rem;
}

.discord-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-cyan);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.discord-link:hover {
    color: var(--primary-cyan-dark);
}

.discord-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* ===== SUPPORT SECTION ===== */
.support {
    padding: 5rem 0;
    background-color: var(--dark-light);
}

.support-card {
    background: linear-gradient(135deg, rgba(0, 195, 255, 0.1), rgba(0, 153, 204, 0.1));
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(0, 195, 255, 0.2);
}

.support-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.support-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.support-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.discord-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-light);
    border-top: 1px solid var(--dark-border);
    padding: 3rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-company {
    grid-column: 1 / -1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-muted);
    margin-bottom: 1rem;
    max-width: 28rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary-cyan);
}

.social-link svg {
    width: 1.5rem;
    height: 1.5rem;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.5rem;
}

.footer-list a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-border);
}

.footer-bottom p {
    color: var(--text-muted);
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-cyan);
}

/* ===== CHATBOT ===== */
.chatbot {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
}

.chatbot-toggle {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--primary-cyan);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.chatbot-toggle:hover {
    background-color: var(--primary-cyan-dark);
    transform: scale(1.1);
}

.chatbot-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

.chatbot-window {
    position: absolute;
    bottom: 4rem;
    right: 0;
    width: 20rem;
    background-color: var(--dark-lighter);
    border: 1px solid var(--dark-border);
    border-radius: 0.75rem;
    display: none;
    flex-direction: column;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.5);
    animation: scaleIn 0.3s ease-out;
}

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

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    background-color: var(--primary-cyan);
    color: var(--white);
    padding: 1rem;
    border-radius: 0.75rem 0.75rem 0 0;
}

.chatbot-header h3 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.chatbot-header p {
    font-size: 0.875rem;
    opacity: 0.9;
    margin: 0;
}

.chatbot-messages {
    height: 16rem;
    overflow-y: auto;
    padding: 1rem;
    background-color: var(--dark-bg);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}

.user-message {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background-color: var(--primary-cyan);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.message-content {
    max-width: 75%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background-color: var(--dark-lighter);
    color: var(--text-muted);
}

.user-message .message-content {
    background-color: var(--primary-cyan);
    color: var(--white);
}

.message-content p {
    margin: 0;
    font-size: 0.875rem;
}

.chatbot-input {
    display: flex;
    padding: 1rem;
    border-top: 1px solid var(--dark-border);
    gap: 0.5rem;
}

.chatbot-input input {
    flex: 1;
    border: none;
    padding: 0.5rem;
    background-color: var(--dark-light);
    color: var(--white);
    border-radius: 0.375rem;
    font-size: 0.875rem;
}

.chatbot-input input::placeholder {
    color: var(--text-muted);
}

.send-btn {
    background-color: var(--primary-cyan);
    border: none;
    color: var(--white);
    padding: 0.5rem;
    border-radius: 0.375rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.send-btn:hover {
    background-color: var(--primary-cyan-dark);
}

.send-btn svg {
    width: 1rem;
    height: 1rem;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(10, 10, 10, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 1rem;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background-color: var(--dark-lighter);
    border: 1px solid var(--primary-cyan);
    border-radius: 0.75rem;
    max-width: 28rem;
    width: 100%;
    box-shadow: 0 0 1rem rgba(0, 195, 255, 0.3);
    animation: scaleIn 0.3s ease-out;
}

.modal-header {
    text-align: center;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--white);
}

.modal-close svg {
    width: 1rem;
    height: 1rem;
}

.modal-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(234, 179, 8, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.modal-icon svg {
    width: 2rem;
    height: 2rem;
    color: var(--yellow);
}

.modal-header h2 {
    font-size: 1.5rem;
    margin: 0;
}

.modal-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.modal-card {
    background-color: var(--dark-bg);
    border: 1px solid var(--dark-border);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.modal-card h3 {
    color: var(--primary-cyan);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.modal-card ul {
    color: var(--text-muted);
    font-size: 0.875rem;
    list-style: none;
    padding: 0;
}

.modal-card li {
    margin-bottom: 0.5rem;
}

.modal-card-highlight {
    background-color: rgba(0, 195, 255, 0.1);
    border-color: rgba(0, 195, 255, 0.3);
}

.modal-card-highlight p {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.modal-buttons {
    display: flex;
    gap: 0.75rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (min-width: 640px) {
    .container {
        padding: 0 2rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .support-buttons {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .desktop-nav,
    .desktop-only {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-title {
        font-size: 5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1200px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 6rem;
    }
}

/* ===== UTILITIES ===== */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-light);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-border);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-cyan);
}