/* Base Styles & Variables */
:root {
    --primary-color: #8e44ad;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --accent-color-light: #74b9ff;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --background-color: #0a0a0e;
    --text-color: #f5f5f5;
    --gray-color: #95a5a6;
    --card-bg: rgba(22, 22, 30, 0.8);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    --transition: all 0.3s ease-in-out;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    --radius: 8px;
}

/* Reset & Basic Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

.highlight {
    color: var(--accent-color);
    font-weight: bold;
}

section {
    padding: 80px 0;
    position: relative;
}

/* Buttons */
.primary-btn, .secondary-btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: var(--shadow);
    text-align: center;
}

.primary-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.secondary-btn {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.secondary-btn:hover {
    background: var(--accent-color);
    color: white;
}

.large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(142, 68, 173, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(142, 68, 173, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(142, 68, 173, 0);
    }
}

/* Header & Navigation */
header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background-color: rgba(10, 10, 14, 0.95);
    backdrop-filter: blur(5px);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}

.logo-container {
    width: 150px;
}

.logo {
    width: 100%;
    height: auto;
}

.logo-bg {
    fill: var(--dark-color);
}

.logo-text {
    fill: var(--light-color);
    font-size: 28px;
    font-weight: bold;
}

.logo-icon-bg {
    fill: var(--primary-color);
}

.logo-icon {
    stroke: white;
    stroke-width: 2;
    fill: none;
}
/* Main Navigation */
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--light-color);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--accent-color);
}

.main-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(--light-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(to bottom, var(--background-color), #141420);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    margin-right: auto;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
}

.ai-frame {
    fill: rgba(46, 49, 65, 0.8);
    stroke: var(--primary-color);
    stroke-width: 2;
}

.ai-core {
    fill: rgba(142, 68, 173, 0.2);
    stroke: var(--primary-color);
    stroke-width: 2;
}

.ai-processor {
    fill: var(--primary-color);
}

.ai-connection {
    stroke: var(--accent-color);
    stroke-width: 2;
    stroke-dasharray: 10;
    stroke-dashoffset: 100;
    animation: dash 15s linear infinite;
}

.node {
    fill: var(--accent-color);
}

.connection {
    stroke: var(--accent-color-light);
    stroke-width: 1.5;
    stroke-dasharray: 5;
    animation: dash 10s linear infinite;
}

@keyframes dash {
    to {
        stroke-dashoffset: 0;
    }
}

/* Technology Section */
.technology {
    background-color: #0d0d14;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.tech-card {
    background-color: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.tech-icon-bg {
    fill: rgba(142, 68, 173, 0.2);
    stroke: var(--primary-color);
    stroke-width: 2;
}

.tech-icon-path {
    stroke: var(--accent-color);
    stroke-width: 2;
    fill: none;
}

.tech-card h3 {
    margin-bottom: 15px;
}

.tech-card p {
    color: var(--gray-color);
}

.tech-cta {
    text-align: center;
    margin-top: 40px;
}

/* Benefits Section */
.benefits {
    background: linear-gradient(135deg, #0f0f18, #14121d);
}

.benefits-container {
    margin-top: 40px;
}

.benefit-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: var(--radius);
    background-color: var(--card-bg);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.7;
}

.benefit-content h3 {
    margin-bottom: 10px;
}

.benefit-content p {
    color: var(--gray-color);
}

/* Gallery Section */
.gallery {
    background-color: #0a0a12;
}
.gallery-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: var(--gray-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
}

.gallery-rect {
    fill: var(--dark-color);
}

.gallery-text {
    fill: var(--light-color);
    font-size: 18px;
    text-anchor: middle;
    dominant-baseline: middle;
}

.gallery-cta {
    text-align: center;
    margin-top: 30px;
}

/* Process Section */
.process {
    background-color: #0d0d14;
}

.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.step {
    text-align: center;
    max-width: 250px;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow);
}

.step-icon span {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.step h3 {
    margin-bottom: 15px;
}

.step p {
    color: var(--gray-color);
}

.step-connector {
    flex-grow: 1;
    height: 3px;
    background: var(--primary-color);
    margin: 0 20px;
    position: relative;
    top: -30px;
}

/* FAQ Section */
.faq {
    background-color: #0a0a12;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--radius);
    background-color: var(--card-bg);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: rgba(46, 49, 65, 0.8);
}

.faq-question h3 {
    margin-bottom: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    display: block;
}

/* Reviews Section */
.reviews {
    background: linear-gradient(135deg, #14121d, #0f0f18);
    padding-bottom: 120px;
}

.reviews-slider {
    margin-top: 50px;
    display: flex;
    gap: 30px;
    overflow-x: hidden;
}

.review {
    min-width: 350px;
    background-color: var(--card-bg);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.review-content {
    margin-bottom: 20px;
}

.quote-icon {
    width: 50px;
    height: 30px;
    margin-bottom: 10px;
}

.quote-mark {
    stroke: var(--accent-color);
    stroke-width: 2;
    fill: none;
}

.review-author {
    color: var(--gray-color);
    font-style: italic;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    text-align: center;
    padding: 100px 0;
}

.cta-section h2, .cta-section p {
    color: white;
}

.cta-section .primary-btn {
    background: white;
    color: var(--primary-color);
    margin-top: 20px;
}

.cta-section .primary-btn:hover {
    background: var(--light-color);
}

/* Footer */
footer {
    background-color: #070709;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-branding p {
    color: var(--gray-color);
    margin-top: 20px;
}

.footer-logo {
    width: 180px;
    height: auto;
}

.footer-nav h4, .footer-legal h4 {
    color: var(--light-color);
    margin-bottom: 20px;
}

.footer-nav ul, .footer-legal ul {
    list-style: none;
}

.footer-nav li, .footer-legal li {
    margin-bottom: 10px;
}

.footer-nav a, .footer-legal a {
    color: var(--gray-color);
    transition: var(--transition);
}

.footer-nav a:hover, .footer-legal a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: var(--background-color);
    z-index: 2000;
    transition: var(--transition);
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
}

.mobile-menu-close path {
    stroke: var(--light-color);
    stroke-width: 2;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-links a {
    color: var(--light-color);
    font-size: 1.2rem;
}

.mobile-cta {
    margin-top: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px;
    border-radius: var(--radius);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .step-connector {
        width: 3px;
        height: 40px;
        margin: 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .tech-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 60px 0;
    }
    
    .benefit-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .benefit-number {
        text-align: center;
    }
}
