/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #a059dd; /* Neon purple */
    --primary-glow: #b983ff;  /* Soft purple glow */
    --secondary-color: #6d28d9; /* Deep purple */
    --accent-color: #ec4899; /* Pink accent */
    --dark-bg: #0c0512; /* Updated background */
    --darker-bg: #1a003a; /* Slightly lighter dark */
    --card-bg: #1a003a; /* Card background */
    --text-primary: #fff;
    --text-secondary: #bdb4e6;
    --border-color: #2d014d;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --font-heading: 'Manrope', sans-serif;
    --font-body: 'Nunito Sans', sans-serif;
    --font-light: 'Nunito Sans', sans-serif;
    --font-medium: 'Manrope', sans-serif;
    --font-bold: 'Manrope', sans-serif;
}

body {
    font-family: var(--font-body);
    background: #0c0512;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

html, body {
  overflow-x: hidden;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
    box-shadow: 0 0 20px var(--primary-glow);
}

.custom-cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
    opacity: 0.5;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-bold);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-family: var(--font-bold);
    font-weight: 700;
}

h2 {
    font-family: var(--font-bold);
    font-weight: 700;
}

h3 {
    font-family: var(--font-bold);
    font-weight: 700;
}

/* Container */
.container {
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #7f2db3;
    backdrop-filter: blur(10px);
    /* border-bottom: 1px solid var(--border-color); */
    z-index: 1000;
    transition: all 0.3s ease;
    background: #fff;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1410px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-logo img{width: auto;}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #000000;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 700 !important;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

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

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-particles::before,
.hero-particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-particles::after {
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

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

/* HERO BANNER MODERN TASARIM */
.hero-es-banner {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}
.hero-es-banner .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1410px;
    margin: 0 auto;
    padding: 60px 20px 40px 20px;
}
.hero-left {
    flex: 1;
    min-width: 320px;
}
.hero-badge {
    display: inline-block;
    background: rgba(157, 89, 192, 0.1);
    color: #7f3aa8;
    font-family: var(--font-medium);
    font-weight: 500;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(157, 89, 192, 0.2);
}
.hero-title {
    font-family: var(--font-bold);
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.1;
}
.gradient-text {
    background: linear-gradient(90deg, #7f3aa8, #9d59c0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-description {
    font-family: var(--font-light);
    font-weight: 300;
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.6;
}
.hero-buttons {
    display: flex;
    gap: 18px;
}
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-video video {
    display: block;
    width: 100%;
    height: auto;
}
.es-logo-svg-container {
    width: 200px;
    height: 120px;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1);
    will-change: transform;
}
.es-logo-svg-parallax {
    width: 220px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 800px;
    margin: 0 auto;
    transition: box-shadow 0.3s;
}
.es-logo-svg-parallax svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s cubic-bezier(.4,2,.6,1), filter 0.3s;
    will-change: transform;
    filter: drop-shadow(0 8px 32px #b18aff88);
}
@media (max-width: 900px) {
    .hero-content { 
        flex-direction: column; 
        text-align: center; 
        gap: 40px;
        padding: 60px 20px;
    }
    .hero-right { 
        margin-top: 0; 
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-family: var(--font-medium);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: #fff;
    box-shadow: 0 2px 16px 0 rgba(168,85,247,0.18);
}

.btn-primary:hover {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    color: #fff;
}

.btn-secondary {
    background: var(--darker-bg);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

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

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

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-dashboard {
    width: 400px;
    height: 300px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.dashboard-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.chart-container {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 60px;
}

.chart-line {
    height: 2px;
    background: var(--primary-color);
    margin-bottom: 10px;
    border-radius: 1px;
    animation: chartAnimation 3s ease-in-out infinite;
}

.chart-line:nth-child(1) {
    width: 60%;
    animation-delay: 0s;
}

.chart-line:nth-child(2) {
    width: 80%;
    animation-delay: 0.5s;
}

.chart-line:nth-child(3) {
    width: 40%;
    animation-delay: 1s;
}

@keyframes chartAnimation {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.data-points {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
}

.data-point {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.data-point:nth-child(1) { animation-delay: 0s; }
.data-point:nth-child(2) { animation-delay: 0.5s; }
.data-point:nth-child(3) { animation-delay: 1s; }
.data-point:nth-child(4) { animation-delay: 1.5s; }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.5); opacity: 1; }
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    background: var(--darker-bg);
}

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

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-glow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

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

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pricing-features i {
    color: var(--success-color);
}

/* Testimonials Section */
.testimonials {
    background: var(--darker-bg);
}

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

.testimonial-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(157, 89, 192, 0.1), transparent);
    transition: left 0.5s;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #9d59c0;
    box-shadow: 0 8px 30px rgba(157, 89, 192, 0.15);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-name {
    font-weight: 600;
    color: #9d59c0;
    font-size: 0.9rem;
    text-align: right;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-family: var(--font-light);
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-glow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h4 {
    color: var(--text-primary);
    margin-bottom: 5px;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #7f2db3;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
    justify-content: space-around;
    justify-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.footer-logo img {
    width:185px
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.footer-links {
    display: flex;
    gap: 20px;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--card-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .ai-dashboard {
        width: 300px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .ai-dashboard {
        width: 250px;
        height: 150px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Animation Fix */
@media (max-width: 768px) {
    .fade-in {
        opacity: 1;
        transform: translateY(0);
        transition: none;
    }
    
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* SVG Logo Animasyonları - AI Analytics Tema Uyumlu */
.hero-logo {
    animation: logoFloat 3s ease-in-out infinite;
    transition: all 0.5s ease;
    cursor: pointer;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
}

.hero-logo:hover {
    animation: logoBounce 0.8s ease-in-out;
    transform: scale(1.15) rotate(3deg);
    filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.8));
}

/* SVG path'leri için AI Analytics tema renkleri */
.hero-logo path,
.hero-logo .logo-path {
    transition: all 0.4s ease;
    fill: var(--text-primary);
}

.hero-logo:hover path,
.hero-logo:hover .logo-path {
    fill: var(--primary-color);
    animation: logoPathGlow 0.8s ease-in-out;
}

/* Sürekli yüzen animasyon - AI Analytics temasına uygun */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.3));
    }
    25% {
        transform: translateY(-12px) rotate(1deg);
        filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.4));
    }
    50% {
        transform: translateY(-18px) rotate(0deg);
        filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
    }
    75% {
        transform: translateY(-12px) rotate(-1deg);
        filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.4));
    }
}

/* Hover bounce animasyonu - AI Analytics temasına uygun */
@keyframes logoBounce {
    0% {
        transform: scale(1.15) rotate(3deg) translateY(0);
        filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.8));
    }
    25% {
        transform: scale(1.2) rotate(5deg) translateY(-25px);
        filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.9));
    }
    50% {
        transform: scale(1.25) rotate(3deg) translateY(-35px);
        filter: drop-shadow(0 0 35px rgba(139, 92, 246, 1));
    }
    75% {
        transform: scale(1.2) rotate(1deg) translateY(-25px);
        filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.9));
    }
    100% {
        transform: scale(1.15) rotate(3deg) translateY(0);
        filter: drop-shadow(0 0 25px rgba(139, 92, 246, 0.8));
    }
}

/* Path glow animasyonu - AI Analytics temasına uygun */
@keyframes logoPathGlow {
    0% {
        fill: var(--text-primary);
        opacity: 1;
    }
    50% {
        fill: var(--primary-color);
        opacity: 0.8;
        filter: drop-shadow(0 0 5px var(--primary-glow));
    }
    100% {
        fill: var(--primary-color);
        opacity: 1;
        filter: drop-shadow(0 0 8px var(--primary-glow));
    }
}

/* Hero right container için AI Analytics temasına uygun animasyon */
.hero-right {
    transition: all 0.4s ease;
}

.hero-right:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
}

/* Responsive logo animasyonları */
@media (max-width: 768px) {
    .hero-logo {
        max-width: 350px;
        animation: logoFloat 4s ease-in-out infinite;
    }
    
    .hero-logo:hover {
        transform: scale(1.1) rotate(2deg);
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 250px;
        animation: logoFloat 5s ease-in-out infinite;
    }
    
    .hero-logo:hover {
        transform: scale(1.08) rotate(1deg);
    }
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hero-slider:active {
    cursor: grabbing;
}

.hero-slider.dragging {
    cursor: grabbing;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide.dragging {
    transition: none;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 250px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 100;
}

.nav-btn {
    background: rgba(139, 92, 246, 0.2);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.slider-dots {
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: var(--primary-color);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-color);
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* Marketing Visual Styles */
.marketing-visual {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 20px;
    font-size: 2rem;
    color: var(--primary-color);
}

.social-icons i {
    transition: all 0.3s ease;
    animation: socialFloat 3s ease-in-out infinite;
}

.social-icons i:nth-child(1) { animation-delay: 0s; }
.social-icons i:nth-child(2) { animation-delay: 0.5s; }
.social-icons i:nth-child(3) { animation-delay: 1s; }
.social-icons i:nth-child(4) { animation-delay: 1.5s; }

.social-icons i:hover {
    color: var(--primary-glow);
    transform: scale(1.2) rotate(10deg);
}

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

.analytics-chart {
    display: flex;
    gap: 10px;
    align-items: end;
    height: 100px;
}

.chart-bar {
    width: 20px;
    background: linear-gradient(to top, var(--primary-color), var(--primary-glow));
    border-radius: 5px 5px 0 0;
    animation: chartBarGrow 2s ease-in-out infinite;
}

.chart-bar:nth-child(1) { height: 60px; animation-delay: 0s; }
.chart-bar:nth-child(2) { height: 80px; animation-delay: 0.2s; }
.chart-bar:nth-child(3) { height: 40px; animation-delay: 0.4s; }
.chart-bar:nth-child(4) { height: 90px; animation-delay: 0.6s; }

@keyframes chartBarGrow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.2); }
}

/* Code Visual Styles */
.code-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.code-window {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 20px;
    min-width: 300px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.code-header {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.code-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--error-color);
}

.code-dot:nth-child(2) { background: var(--warning-color); }
.code-dot:nth-child(3) { background: var(--success-color); }

.code-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.code-line {
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    animation: codeTyping 2s ease-in-out infinite;
}

.code-line:nth-child(1) { width: 80%; animation-delay: 0s; }
.code-line:nth-child(2) { width: 60%; animation-delay: 0.3s; }
.code-line:nth-child(3) { width: 90%; animation-delay: 0.6s; }
.code-line:nth-child(4) { width: 70%; animation-delay: 0.9s; }

@keyframes codeTyping {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Responsive Slider */
@media (max-width: 768px) {
    .slider-nav {
        bottom: 30px;
        gap: 20px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .social-icons {
        font-size: 1.5rem;
        gap: 15px;
    }
    
    .code-window {
        min-width: 250px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .slider-nav {
        bottom: 20px;
        gap: 15px;
    }
    
    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .social-icons {
        font-size: 1.2rem;
        gap: 10px;
    }
    
    .code-window {
        min-width: 200px;
        padding: 10px;
    }
} 

/* Hizmetler (Services) Bölümü - DARK MODERN */
.services-section {
    /* background: linear-gradient(135deg, #18122b 0%, #231b2e 100%); */
    padding: 80px 0 0px 0;
    position: relative;
    z-index: 1;
}

.services-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.services-section .section-title {
    font-size: 2.5rem;
    /* font-family: 'Orbitron', monospace; */
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.services-section .section-subtitle {
    color: #9f65c3;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: rgba(36, 26, 60, 0.95);
    border: 2px solid #a059dd;
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(168, 85, 247, 0.10), 0 0 0 0 #a059dd;
    padding: 36px 28px 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    box-sizing: border-box;
}

.service-card:hover {
    box-shadow: 0 8px 40px 0 #a059dd, 0 0 32px 0 #a059dd;
    transform: translateY(-8px) scale(1.04);
    border-color: #c084fc;
}

.service-icon {
    font-size: 2.5rem;
    color: #a059dd;
    margin-bottom: 18px;
    display: flex;
    gap: 8px;
    filter: drop-shadow(0 0 8px #a059dd);
}
.service-icon img{width:90px}

.service-card h3 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.2px;
}

.service-card p {
    color: #b8b8d1;
    font-size: 1rem;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .service-card {
        padding: 22px 12px 18px 12px;
    }
    .services-section {
        padding: 40px 0 30px 0;
    }
    .services-section .section-title {
        font-size: 1.5rem;
    }
} 

/* Analiz Paneli ve Özellikler Bölümü */
.panel-section {
    background: linear-gradient(135deg, #18122b 0%, #231b2e 100%);
    padding: 70px 0 60px 0;
    position: relative;
    z-index: 1;
}

.panel-header {
    text-align: center;
    margin-bottom: 36px;
}

.panel-title {
    color: #fff;
    font-size: 2rem;
    font-family: 'Orbitron', monospace;
    font-weight: 600;
    margin-bottom: 0;
    letter-spacing: 0.2px;
}

.panel-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 38px;
}

.panel-img {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 40px 0 #a059dd, 0 0 32px 0 #a059dd;
    background: #231b2e;
}

.panel-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.panel-feature-card {
    background: rgba(36, 26, 60, 0.95);
    border: 2px solid #a059dd;
    border-radius: 16px;
    box-shadow: 0 4px 32px 0 rgba(168, 85, 247, 0.10), 0 0 0 0 #a059dd;
    padding: 28px 22px 22px 22px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.3s, transform 0.3s, border 0.3s;
    position: relative;
    overflow: hidden;
    min-height: 120px;
    box-sizing: border-box;
}

.panel-feature-card:hover {
    box-shadow: 0 8px 40px 0 #a059dd, 0 0 32px 0 #a059dd;
    transform: translateY(-6px) scale(1.03);
    border-color: #c084fc;
}

.panel-feature-card h3 {
    color: #fff;
    font-size: 1.1rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.2px;
}

.panel-feature-card p {
    color: #b8b8d1;
    font-size: 1rem;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .panel-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}

@media (max-width: 600px) {
    .panel-features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .panel-section {
        padding: 40px 0 30px 0;
    }
    .panel-title {
        font-size: 1.2rem;
    }
    .panel-feature-card {
        padding: 16px 8px 12px 8px;
    }
} 

/* Hakkımızda Bölümü */
.about-section {
    /* background: linear-gradient(135deg, #18122b 0%, #231b2e 100%); */
    padding: 80px 0 60px 0;
    color: #fff;
}
.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.about-title {
    font-size: 2.3rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 0.5px;
}
.about-subtitle {
    color: #a059dd;
    font-size: 1.2rem;
    margin-bottom: 24px;
    font-weight: 600;
}
.about-text p {
    color: #b8b8d1;
    font-size: 1.08rem;
    margin-bottom: 18px;
    line-height: 1.7;
}
@media (max-width: 600px) {
    .about-title { font-size: 1.4rem; }
    .about-section { padding: 40px 0 30px 0; }
} 

/* Referanslar Bölümü */
.references-section {
    /* background: linear-gradient(135deg, #231b2e 0%, #18122b 100%); */
    padding: 60px 0 50px 0;
    color: #fff;
    text-align: center;
}
.references-title {
    font-size: 2rem;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 0.5px;
}
.references-subtitle {
    color: #a059dd;
    font-size: 1.1rem;
    margin-bottom: 32px;
    font-weight: 600;
}
.references-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 36px;
    align-items: center;
}
.reference-logo {
    background: rgba(36, 26, 60, 0.95);
    border-radius: 12px;
    padding: 18px 32px;
    box-shadow: 0 2px 16px 0 rgba(168, 85, 247, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    min-height: 60px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.reference-logo img {
    max-height: 40px;
    max-width: 120px;
    filter: grayscale(1) brightness(1.2);
    opacity: 0.85;
    transition: filter 0.3s, opacity 0.3s, transform 0.3s;
    width: 100%;
}
.reference-logo:hover {
    box-shadow: 0 4px 32px 0 #a059dd;
    transform: scale(1.07);
}
.reference-logo:hover img {
    filter: grayscale(0) brightness(1.1) drop-shadow(0 0 8px #a059dd);
    opacity: 1;
    transform: scale(1.08);
}
@media (max-width: 600px) {
    .references-logos {
        gap: 18px;
    }
    .reference-logo {
        padding: 10px 12px;
        min-width: 80px;
        min-height: 40px;
    }
    .reference-logo img {
        max-height: 28px;
        max-width: 80px;
    }
} 

/* Kullanıcı Yorumları Bölümü (Animasyonlu Sonsuz Yukarı - 3 Bağımsız Sütun) */
.testimonials-col-up {
    overflow: hidden;
}
.testimonials-col-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    animation: scroll-up-loop 10s linear infinite;
}
.testimonials-col-inner-left {
    animation: scroll-up-loop-left 50s linear infinite;
}
.testimonials-col-inner-center {
    animation: scroll-down-loop-center 45s linear infinite;
}
.testimonials-col-inner-right {
    animation: scroll-up-loop-right 50s linear infinite;
}
@keyframes scroll-up-loop {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
@keyframes scroll-up-loop-left {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
@keyframes scroll-down-loop-center {
    0% { transform: translateY(-50%); }
    100% { transform: translateY(0); }
}
@keyframes scroll-up-loop-right {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}
@media (max-width: 900px) {
    .testimonials-animated-grid {
        flex-direction: column;
        gap: 0;
        min-height: unset;
    }
    .testimonials-col-inner {
        animation: none !important;
        gap: 18px;
    }
}

.testimonial-user{
    margin-top: 25px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.testimonial-user img{width: 60px;margin-right: 20px;}

/* Sıkça Sorulan Sorular (FAQ) Bölümü - Efektli Açılış/Kapanış */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: none;
    color: #b8b8d1;
    font-size: 1rem;
    padding: 0 24px;
    opacity: 0;
    transform: scaleY(0.95) translateY(-10px);
    transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1),
                padding 0.3s,
                opacity 0.4s,
                transform 0.4s;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 18px 24px;
    opacity: 1;
    transform: scaleY(1) translateY(0);
}

/* Sıkça Sorulan Sorular (FAQ) Bölümü */
.faq-section {
    /* background: linear-gradient(135deg, #18122b 0%, #231b2e 100%); */
    padding: 80px 0 60px 0;
    color: #fff;
    text-align: center;
    background: #fff;
}
.faq-title {
    font-family: var(--font-bold);
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
    color: #fff;
    letter-spacing: 0.5px;
}
.faq-subtitle {
    font-family: var(--font-light);
    font-weight: 300;
    color: #7f2db3;
    font-size: 1.1rem;
    margin-bottom: 36px;
}
.faq-list {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}
.faq-item {
    background: #7f2db3;
    border: 1.5px solid #a059dd;
    border-radius: 16px;
    margin-bottom: 18px;
    overflow: hidden;
    transition: border 0.3s, box-shadow 0.3s;
}
.faq-item.active {
    border-color: #fff;
    box-shadow: 0 0 0 2px #a059dd;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    font-family: var(--font-medium);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 22px 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
    transition: background 0.2s;
}
.faq-item.active .faq-question {
    color: #ffffff;
}
.faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-left: 12px;
    color: #a059dd;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: none;
    color: #ffffff;
    font-family: var(--font-light);
    font-weight: 300;
    font-size: 1rem;
    padding: 0 24px;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 18px 24px;
}
@media (max-width: 600px) {
    .faq-title {font-size: 1.5rem;}
    .faq-section { padding: 40px 0 30px 0; }
    .faq-list { max-width: 100%; }
    .faq-question { font-size: 1rem; padding: 16px 12px; }
    .faq-answer { font-size: 0.95rem; padding: 0 12px; }
}

/* Decorative Blob Styles */
.decorative-blob {
    position: absolute;
    z-index: 0;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle at 30% 30%, #7f2db3 0%, transparent 50%), radial-gradient(circle at 70% 70%, var(--primary-glow) 0%, transparent 50%), radial-gradient(circle at 50% 50%, var(--primary-color) 0%, transparent 70%);
    opacity: 0.12;
    filter: blur(32px) saturate(1.4) brightness(1.2);
    border-radius: 43% 57% 70% 30% / 45% 45% 55% 55%;
    pointer-events: none;
    animation: blobMorph 20s ease-in-out infinite;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.decorative-blob::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: 
        radial-gradient(circle at 40% 60%, var(--secondary-color) 0%, transparent 40%),
        radial-gradient(circle at 60% 40%, var(--accent-color) 0%, transparent 40%);
    opacity: 0.08;
    filter: blur(40px);
    border-radius: 50% 60% 70% 50% / 60% 50% 70% 60%;
    animation: blobMorph 25s ease-in-out infinite reverse;
}

@keyframes blobMorph {
    0%   { 
        transform: scale(1) translateY(0) rotate(0deg);
        border-radius: 43% 57% 70% 30% / 45% 45% 55% 55%;
    }
    25%  { 
        transform: scale(1.1, 0.9) translateY(-25px) rotate(12deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50%  { 
        transform: scale(0.9, 1.1) translateY(20px) rotate(-8deg);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 80%;
    }
    75%  { 
        transform: scale(1.05, 0.95) translateY(-15px) rotate(6deg);
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
    100% { 
        transform: scale(1) translateY(0) rotate(0deg);
        border-radius: 43% 57% 70% 30% / 45% 45% 55% 55%;
    }
}

@media (max-width: 900px) {
    .decorative-blob {
        width: 320px;
        height: 320px;
        filter: blur(24px) saturate(1.3) brightness(1.1);
    }
    .decorative-blob::before {
        filter: blur(28px);
    }
}

@media (max-width: 600px) {
    .decorative-blob {
        width: 200px;
        height: 200px;
        filter: blur(16px) saturate(1.2) brightness(1.05);
    }
    .decorative-blob::before {
        filter: blur(20px);
    }
}

/* Decorative Blob: References Section */
.decorative-blob--references {
    top: -90px;
    right: -120px;
    left: auto;
    bottom: auto;
    z-index: 0;
    opacity: 0.16;
}
@media (max-width: 900px) {
    .decorative-blob--references {
        top: -60px;
        right: -60px;
    }
}
@media (max-width: 600px) {
    .decorative-blob--references {
        top: -30px;
        right: -20px;
    }
}

/* Decorative Blob: Hero Slider */
.decorative-blob--hero-1 {
    top: 10%;
    left: -8%;
    z-index: 0;
    opacity: 0.14;
    animation-delay: 0s;
}

.decorative-blob--hero-2 {
    top: 60%;
    right: -12%;
    z-index: 0;
    opacity: 0.12;
    animation-delay: 3s;
}

.decorative-blob--hero-3 {
    bottom: 15%;
    left: 20%;
    z-index: 0;
    opacity: 0.10;
    animation-delay: 6s;
}

@media (max-width: 900px) {
    .decorative-blob--hero-1 {
        top: 5%;
        left: -5%;
    }
    .decorative-blob--hero-2 {
        top: 50%;
        right: -8%;
    }
    .decorative-blob--hero-3 {
        bottom: 10%;
        left: 15%;
    }
}

@media (max-width: 600px) {
    .decorative-blob--hero-1 {
        top: 2%;
        left: -3%;
    }
    .decorative-blob--hero-2 {
        top: 40%;
        right: -5%;
    }
    .decorative-blob--hero-3 {
        bottom: 5%;
        left: 10%;
    }
}

/* Slider Decorative Circles - Right Side & Animations */
.slider-circles-bg--right {
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 320px;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}
.slider-circles-bg--right .slider-circle {
    position: absolute;
    left: auto;
    right: -80px;
}
.slider-circles-bg--right .slider-circle1 {
    animation: circleFloat1 7s ease-in-out infinite alternate;
}
.slider-circles-bg--right .slider-circle2 {
    animation: circleFloat2 9s ease-in-out infinite alternate;
}
.slider-circles-bg--right .slider-circle3 {
    animation: circleFloat3 11s ease-in-out infinite alternate;
}
@keyframes circleFloat1 {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-18px) scale(1.04); }
    100% { transform: translateY(0) scale(1); }
}
@keyframes circleFloat2 {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(14px) scale(0.98); }
    100% { transform: translateY(0) scale(1); }
}
@keyframes circleFloat3 {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
    100% { transform: translateY(0) scale(1); }
}
@media (max-width: 900px) {
    .slider-circles-bg--right .slider-circle {
        right: -40px;
    }
}
@media (max-width: 600px) {
    .slider-circles-bg--right .slider-circle {
        right: -20px;
    }
}

/* Global Right-Side Decorative Circles */
.site-circles-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
}
.site-circle {
    position: absolute;
    right: -80px;
    border-radius: 50%;
    opacity: 0.85;
}
.site-circle1 {
    top: 80px;
    width: 260px;
    height: 260px;
    background: #8b00ff;
    opacity: 0.85;
    animation: siteCircleFloat1 8s ease-in-out infinite alternate;
}
.site-circle2 {
    top: 260px;
    width: 220px;
    height: 220px;
    background: #a678f7;
    opacity: 0.7;
    animation: siteCircleFloat2 10s ease-in-out infinite alternate;
}
.site-circle3 {
    top: 420px;
    width: 180px;
    height: 180px;
    background: #cbb2fa;
    opacity: 0.55;
    animation: siteCircleFloat3 12s ease-in-out infinite alternate;
}
@keyframes siteCircleFloat1 {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-18px) scale(1.04); }
    100% { transform: translateY(0) scale(1); }
}
@keyframes siteCircleFloat2 {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(14px) scale(0.98); }
    100% { transform: translateY(0) scale(1); }
}
@keyframes siteCircleFloat3 {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
    100% { transform: translateY(0) scale(1); }
}
@media (max-width: 900px) {
    .site-circles-bg {
        width: 140px;
    }
    .site-circle1 {
        width: 110px; height: 110px; right: -30px; top: 40px; }
    .site-circle2 {
        width: 90px; height: 90px; right: -20px; top: 110px; }
    .site-circle3 {
        width: 70px; height: 70px; right: -10px; top: 170px; }
}
@media (max-width: 600px) {
    .site-circles-bg {
        width: 70px;
    }
    .site-circle1 {
        width: 50px; height: 50px; right: -10px; top: 20px; }
    .site-circle2 {
        width: 40px; height: 40px; right: -5px; top: 50px; }
    .site-circle3 {
        width: 30px; height: 30px; right: 0; top: 80px; }
}

/* Proxima-Style Hero Background */
.hero-es-banner {
    position: relative;
    /* background: linear-gradient(180deg, #0c0512 0%, #7f2db3 35%, #0c0512 70%, #2d014d 100%); */
    overflow: hidden;
}
.hero-es-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    /* background-image:
        linear-gradient(180deg, rgba(80,0,180,0.10) 0%, rgba(120,0,255,0.13) 100%),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 40px); */
    z-index: 1;
    pointer-events: none;
}

/* Purple Glow Behind Dashboard */
.hero-es-banner .dashboard-glow {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 900px;
    height: 180px;
    background: radial-gradient(ellipse at center, rgba(168,85,247,0.45) 0%, rgba(139,92,246,0.18) 60%, transparent 100%);
    filter: blur(32px);
    z-index: 2;
    pointer-events: none;
}
@media (max-width: 900px) {
    .hero-es-banner .dashboard-glow {
        width: 500px;
        height: 90px;
        filter: blur(18px);
    }
}
@media (max-width: 600px) {
    .hero-es-banner .dashboard-glow {
        width: 260px;
        height: 50px;
        filter: blur(10px);
    }
}