/* Global Styles */
:root {
    --primary-color: #8a2be2;
    --secondary-color: #4b0082;
    --accent-color: #9370db;
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-muted: #bbbbbb;
    --bg-dark: #0a0a0a;
    --bg-medium: #151515;
    --bg-light: #252525;
    --shadow: 0 5px 15px rgba(0,0,0,0.3);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

section {
    padding: 5rem 0;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

h1 {
    font-size: 2.8rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.button {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.primary-button {
    background: var(--gradient);
    color: var(--text-light);
    box-shadow: 0 4px 10px rgba(138, 43, 226, 0.4);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(138, 43, 226, 0.5);
}

/* Header Styles */
header {
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-svg {
    width: 240px;
    height: auto;
}

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

nav a {
    position: relative;
    font-weight: 500;
    padding: 0.5rem 0;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-dark);
    padding-top: 5rem;
}

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

.hero-text {
    width: 50%;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.hero-visual {
    width: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-svg {
    width: 100%;
    max-width: 500px;
    filter: drop-shadow(0 10px 30px rgba(138, 43, 226, 0.4));
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Gallery Section */
.gallery {
    background-color: var(--bg-medium);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1), transparent 70%);
    pointer-events: none;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: rgba(25, 25, 25, 0.6);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    padding-bottom: 1rem;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.gallery-svg {
    width: 100%;
    height: auto;
    border-radius: 10px 10px 0 0;
}

.gallery-item h3 {
    padding: 1rem 1rem 0.5rem;
}

.gallery-item p {
    padding: 0 1rem;
    font-size: 0.95rem;
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Tech Section */
.tech {
    background-color: var(--bg-dark);
    overflow: hidden;
}

.tech-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.tech-content {
    width: 50%;
}

.tech-visual {
    width: 50%;
}

.tech-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.tech-icon {
    flex: 0 0 50px;
    margin-right: 1.5rem;
}

.tech-icon svg {
    width: 50px;
    height: 50px;
}

.tech-text h3 {
    margin-bottom: 0.5rem;
}

.tech-text p {
    margin-bottom: 0;
}

/* FAQs Section */
.faqs {
    background-color: var(--bg-medium);
    position: relative;
}

.faqs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, rgba(138, 43, 226, 0.05), transparent 70%);
    pointer-events: none;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: rgba(25, 25, 25, 0.6);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
    border-left: 3px solid var(--primary-color);
}

.faq-item h3 {
    margin-bottom: 1rem;
}

.faq-item p {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 5rem 0;
    background: var(--gradient);
}

.cta-section h2 {
    color: var(--text-light);
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.cta-section .button {
    background: var(--text-light);
    color: var(--primary-color);
    border: 2px solid var(--text-light);
}

.cta-section .button:hover {
    background: transparent;
    color: var(--text-light);
}

/* Footer */
footer {
    background-color: var(--bg-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo p {
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-links {
    flex: 1;
    min-width: 250px;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.footer-disclaimer {
    width: 100%;
    margin-top: 2rem;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-disclaimer p {
    font-size: 0.8rem;
    margin: 0;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    html {
        font-size: 14px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-text, .hero-visual {
        width: 100%;
    }
    
    .hero-text {
        margin-bottom: 2rem;
    }
    
    .tech-wrapper {
        flex-direction: column;
    }
    
    .tech-content, .tech-visual {
        width: 100%;
    }
    
    .tech-visual {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    nav ul {
        position: fixed;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        top: 80px;
        left: 0;
        width: 100%;
        padding: 2rem 0;
        gap: 1rem;
        text-align: center;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        z-index: 999;
    }
    
    nav ul.active {
        transform: translateY(0);
    }
    
    .menu-toggle {
        display: flex;
    }
}

@media screen and (max-width: 576px) {
    html {
        font-size: 13px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo, .footer-links {
        width: 100%;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .footer-links ul {
        justify-content: center;
    }
}
