/* ========================================
   The King of Marketing Agency
   Technological Color Palette Design
   ======================================== */

:root {
    /* Technological Color Palette */
    --electric-blue: #00f0ff;
    --cyber-purple: #9d4edd;
    --deep-purple: #7209b7;
    --neon-pink: #ff006e;
    --neon-green: #06ffa5;
    --dark-bg: #0a0a0f;
    --darker-bg: #050508;
    --card-bg: rgba(15, 15, 25, 0.9);
    --text-white: #ffffff;
    --text-gray: #b8b8c8;
    
    /* Fonts */
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ========================================
   Global Styles
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 240, 255, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--electric-blue);
}

.logo i {
    font-size: 1.5rem;
    color: var(--neon-pink);
    filter: drop-shadow(0 0 10px var(--neon-pink));
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--electric-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--electric-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.lang-toggle {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--electric-blue);
    color: var(--electric-blue);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: rgba(0, 240, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.btn-signin {
    background: transparent;
    border: 1px solid var(--cyber-purple);
    color: var(--cyber-purple);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-signin:hover {
    background: var(--cyber-purple);
    color: var(--text-white);
    box-shadow: 0 0 20px rgba(157, 78, 237, 0.5);
}

.btn-signup {
    background: linear-gradient(135deg, var(--cyber-purple), var(--deep-purple));
    border: none;
    color: var(--text-white);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(157, 78, 237, 0.3);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(157, 78, 237, 0.5);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 240, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--electric-blue);
}

.user-profile i {
    font-size: 1.5rem;
    color: var(--electric-blue);
}

.btn-signout {
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid var(--neon-pink);
    color: var(--neon-pink);
    padding: 0.3rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-signout:hover {
    background: var(--neon-pink);
    color: var(--text-white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--electric-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(157, 78, 237, 0.1) 0%, var(--dark-bg) 70%);
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--electric-blue);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--cyber-purple);
    bottom: -10%;
    right: -10%;
    animation-delay: 2s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--neon-pink);
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, 30px);
    }
}

.hero-container {
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.crown-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 0, 110, 0.1);
    border: 1px solid var(--neon-pink);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.crown-badge i {
    color: var(--neon-pink);
    font-size: 1.2rem;
    filter: drop-shadow(0 0 10px var(--neon-pink));
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 0, 110, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 0, 110, 0.6);
    }
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-purple));
    border: none;
    color: var(--text-white);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 30px rgba(0, 240, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--electric-blue);
    color: var(--electric-blue);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.3);
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(6, 255, 165, 0.1);
    border: 1px solid var(--neon-green);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    color: var(--neon-green);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulseDot 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-green);
}

@keyframes pulseDot {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

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

/* ========================================
   Bots Section
   ======================================== */

.bots-section {
    padding: 100px 20px;
    background: var(--darker-bg);
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.bots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.bot-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.bot-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(157, 78, 237, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bot-card:hover::before {
    opacity: 1;
}

.bot-card:hover {
    transform: translateY(-10px);
    border-color: var(--electric-blue);
    box-shadow: 0 15px 50px rgba(0, 240, 255, 0.3);
}

.bot-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-purple));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--text-white);
    box-shadow: 0 8px 30px rgba(0, 240, 255, 0.4);
}

.tech-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(6, 255, 165, 0.1);
    border: 1px solid var(--neon-green);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neon-green);
    animation: pulse 2s ease-in-out infinite;
}

.bot-card h3 {
    margin-bottom: 1rem;
    color: var(--electric-blue);
}

.bot-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.bot-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bot-features span {
    background: rgba(157, 78, 237, 0.2);
    border: 1px solid var(--cyber-purple);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--cyber-purple);
    font-weight: 500;
}

/* ========================================
   Benefits Section
   ======================================== */

.benefits-section {
    padding: 100px 20px;
    background: var(--dark-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.benefit-item {
    text-align: center;
}

.benefit-item i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h3 {
    color: var(--electric-blue);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-gray);
}

/* ========================================
   How It Works Section
   ======================================== */

.how-it-works {
    padding: 100px 20px;
    background: var(--darker-bg);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.step-item {
    position: relative;
    padding: 2rem;
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.step-item:hover {
    border-color: var(--electric-blue);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
    transform: translateY(-5px);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.step-item h3 {
    color: var(--electric-blue);
    margin-bottom: 1rem;
}

.step-item p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(157, 78, 237, 0.1));
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.cta-note {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

/* ========================================
   Contact Section
   ======================================== */

.contact-section {
    padding: 100px 20px;
    background: var(--dark-bg);
}

.contact-form {
    max-width: 600px;
    margin: 4rem auto 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(15, 15, 25, 0.8);
    border: 1px solid rgba(0, 240, 255, 0.3);
    border-radius: 12px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
}

.contact-form button {
    width: 100%;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--darker-bg);
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--electric-blue);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--electric-blue);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--electric-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--electric-blue);
    color: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 240, 255, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 240, 255, 0.1);
    color: var(--text-gray);
}

/* ========================================
   Auth Modal
   ======================================== */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--card-bg);
    border: 1px solid var(--electric-blue);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--neon-pink);
}

.auth-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-toggle {
    text-align: center;
    color: var(--text-gray);
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.auth-toggle span {
    color: var(--electric-blue);
    cursor: pointer;
    font-weight: 600;
    text-decoration: underline;
}

.auth-toggle span:hover {
    color: var(--cyber-purple);
}

/* ========================================
   Bot Modal (SEO Bot Iframe)
   ======================================== */

.bot-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.bot-modal.active {
    display: flex !important;
}

.bot-modal-content {
    background: var(--card-bg);
    border: 2px solid var(--electric-blue);
    border-radius: 20px;
    width: 95%;
    height: 90vh;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: slideIn 0.3s ease-out;
    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.5);
}

.bot-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.3);
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(157, 78, 237, 0.1));
}

.bot-modal-header h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.bot-modal-header i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bot-modal-header .close {
    position: static;
    font-size: 2.5rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 0.5rem;
}

.bot-modal-header .close:hover {
    color: var(--neon-pink);
    transform: rotate(90deg);
}

.bot-modal-body {
    flex: 1;
    padding: 1.5rem;
    overflow: auto;
    border-radius: 0 0 20px 20px;
    background: var(--darker-bg);
}

.bot-modal-body iframe {
    width: 100%;
    height: 700px;
    min-height: 700px;
    border: none;
    border-radius: 12px;
    display: block;
}

.bot-try-btn {
    margin-top: 1.5rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-purple));
    border: none;
    border-radius: 12px;
    color: var(--text-white) !important;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 240, 255, 0.3);
    text-decoration: none !important;
    display: block;
    text-align: center;
    position: relative;
    z-index: 10;
}

.bot-try-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 240, 255, 0.5);
    color: var(--text-white) !important;
}

.bot-try-btn:active {
    transform: translateY(0);
}

.bot-try-btn span {
    color: inherit;
}

/* ========================================
   RTL Support for Arabic
   ======================================== */

[dir="rtl"] {
    direction: rtl;
}

[dir="rtl"] .nav-links {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-actions {
    flex-direction: row-reverse;
}

[dir="rtl"] .hero-actions {
    flex-direction: row-reverse;
}

[dir="rtl"] .logo {
    flex-direction: row-reverse;
}

[dir="rtl"] .crown-badge {
    flex-direction: row-reverse;
}

[dir="rtl"] .status-badge {
    flex-direction: row-reverse;
}

[dir="rtl"] .lang-toggle {
    flex-direction: row-reverse;
}

[dir="rtl"] .user-profile {
    flex-direction: row-reverse;
}

/* ========================================
   About Page Styles
   ======================================== */

.about-hero {
    min-height: 60vh;
}

.about-section {
    padding: 100px 20px;
    background: var(--dark-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--electric-blue);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-gray);
    font-size: 1rem;
}

.mission-section {
    padding: 100px 20px;
    background: var(--darker-bg);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.mission-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    border-color: var(--electric-blue);
    box-shadow: 0 15px 50px rgba(0, 240, 255, 0.3);
    transform: translateY(-10px);
}

.mission-card i {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    display: block;
}

.mission-card h3 {
    color: var(--electric-blue);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.mission-card p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.values-section {
    padding: 100px 20px;
    background: var(--dark-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.value-card {
    background: var(--card-bg);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--electric-blue);
    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.2);
    transform: translateY(-5px);
}

.value-card i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    color: var(--electric-blue);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

.technology-section {
    padding: 100px 20px;
    background: var(--darker-bg);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.tech-item {
    text-align: center;
}

.tech-item i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyber-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.tech-item h4 {
    color: var(--electric-blue);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.tech-item p {
    color: var(--text-gray);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 3rem 2rem;
        gap: 2rem;
        transition: left 0.4s ease;
        border-right: 1px solid rgba(0, 240, 255, 0.2);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links a {
        font-size: 1.3rem;
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
    
    .bots-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .nav-actions {
        gap: 0.5rem;
    }
    
    .btn-signin,
    .btn-signup {
        padding: 0.4rem 1rem;
        font-size: 0.9rem;
    }
    
    .lang-toggle {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
    
    .bot-modal-content {
        width: 98%;
        height: 95vh;
        border-radius: 15px;
    }
    
    .bot-modal-header {
        padding: 1rem 1.5rem;
    }
    
    .bot-modal-header h2 {
        font-size: 1.3rem;
    }
    
    .bot-modal-header i {
        font-size: 1.5rem;
    }
    
    .bot-modal-body {
        padding: 1rem;
    }
    
    .bot-modal-body iframe {
        height: 500px;
        min-height: 500px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    .btn-signin,
    .btn-signup {
        display: none;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
}