html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background: #000;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.2rem;
    font-weight: 500;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo:hover {
    color: #4f9fff;
}

.logo-icon {
    width: 24px;
    height: 24px;
    position: relative;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover, 
.nav-links a.active {
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #4f9fff 0%, #3d8aff 100%);
    transition: width 0.2s ease;
}

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

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

.login {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.sign-up {
    background: linear-gradient(135deg, #4f9fff 0%, #3d8aff 100%);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(79, 159, 255, 0.3);
}

.sign-up:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(79, 159, 255, 0.4);
    background: linear-gradient(135deg, #3d8aff 0%, #2c79ff 100%);
}

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    overflow: visible;
    padding-top: 80px;
    z-index: 2;
}

.hero .hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero .text-content {
    flex: 1;
    text-align: center;
}

.hero .video-container {
    flex: 1;
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hero .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.get-started {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #000;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s;
}

.get-started:hover {
    transform: translateY(-2px);
}

.decoration {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    height: 40%;
    background: linear-gradient(45deg, #ff00ff, #00ffff);
    filter: blur(120px);
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen;
}

@keyframes float {
    0%, 100% {
        transform: translateY(-50%) rotate(0deg);
    }
    50% {
        transform: translateY(-50%) rotate(180deg);
    }
}

.floating-rings {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
    height: auto;
    pointer-events: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .login {
        display: none;
    }
    
    .sign-up {
        padding: 0.5rem 1rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .decoration {
        width: 100%;
        right: -50%;
    }
}

.ai-features {
    padding: 4rem 2rem;
    background: var(--background-dark);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.8rem;
    border-radius: 1rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-card h3 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

.ai-query {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
    overflow: visible;
    z-index: 2;
    margin-top: -2rem;
}

.ai-query::before,
.ai-query::after,
.ai-query .particle {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.ai-query::before {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    background: rgba(64, 169, 255, 0.2);
    animation: floatParticle1 15s infinite;
}

.ai-query::after {
    width: 250px;
    height: 250px;
    bottom: -100px;
    right: -100px;
    background: rgba(255, 82, 234, 0.2);
    animation: floatParticle2 20s infinite;
}

/* Yeni parçacıklar için stil */
.ai-query .particle-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 30%;
    background: rgba(123, 31, 162, 0.15);
    animation: floatParticle3 25s infinite;
}

.ai-query .particle-2 {
    width: 180px;
    height: 180px;
    bottom: 30%;
    right: 25%;
    background: rgba(32, 156, 238, 0.15);
    animation: floatParticle4 18s infinite;
}

@keyframes floatParticle1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(100px, 100px) scale(1.2); }
    50% { transform: translate(200px, 0) scale(1); }
    75% { transform: translate(100px, -100px) scale(0.8); }
}

@keyframes floatParticle2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-100px, -100px) scale(1.2); }
    50% { transform: translate(-200px, 0) scale(1); }
    75% { transform: translate(-100px, 100px) scale(0.8); }
}

@keyframes floatParticle3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(50px, -50px) rotate(120deg) scale(1.1); }
    66% { transform: translate(-50px, 50px) rotate(240deg) scale(0.9); }
}

@keyframes floatParticle4 {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    33% { transform: translate(-70px, 70px) rotate(-120deg) scale(1.2); }
    66% { transform: translate(70px, -70px) rotate(-240deg) scale(0.8); }
}

/* Parlaklık efekti için */
.ai-query .glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, 
        rgba(64, 169, 255, 0.1) 0%,
        rgba(32, 156, 238, 0.05) 30%,
        transparent 70%);
    animation: glowPulse 4s ease-in-out infinite;
}

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

.ai-query h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.ai-query p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.query-container {
    width: 100%;
    max-width: 800px;
    position: relative;
    margin-bottom: 2rem;
}

.agent-input {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    font-size: 1.1rem;
    animation: neonPulse 3s infinite;
}

.input-actions {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 1rem;
}

.quick-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.quick-actions button {
    padding: 0.75rem 1.5rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-actions button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.icon-button {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-button:hover {
    opacity: 0.8;
}

.logo span {
    font-family: 'Gugi', cursive;
}

.floating-rings-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: 1;
    pointer-events: none;
}

.floating-ring {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.ring1 {
    width: 300px;
    height: 300px;
    border-color: rgba(255, 255, 255, 0.2);
    animation-duration: 30s;
}

.ring2 {
    width: 400px;
    height: 400px;
    border-color: rgba(255, 255, 255, 0.15);
    animation-duration: 25s;
    animation-direction: reverse;
}

.ring3 {
    width: 500px;
    height: 500px;
    border-color: rgba(255, 255, 255, 0.1);
    animation-duration: 35s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes neonPulse {
    0% {
        box-shadow: 0 0 1px #4f9fff,
                    0 0 2px #4f9fff,
                    0 0 3px #4f9fff;
    }
    50% {
        box-shadow: 0 0 3px #4f9fff,
                    0 0 6px #4f9fff,
                    0 0 9px #4f9fff;
    }
    100% {
        box-shadow: 0 0 1px #4f9fff,
                    0 0 2px #4f9fff,
                    0 0 3px #4f9fff;
    }
}

.animated-bg {
    position: relative;
    overflow: hidden;
}

.animated-bg::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        rgba(65, 88, 208, 0.1) 0%,
        rgba(200, 80, 192, 0.1) 50%,
        rgba(255, 204, 112, 0.1) 100%
    );
    animation: rotate 20s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0) 0%,
        rgba(0,0,0,0.8) 50%,
        rgba(0,0,0,0) 100%
    );
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

/* Footer Styles */
footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #888;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

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

.social-links a {
    color: #888;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 6rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: #888;
    line-height: 1.6;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.pricing-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-subtitle {
    color: #999;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card.featured {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    position: relative;
}

.pricing-header {
    text-align: left;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price {
    margin: 1rem 0;
}

.price .amount {
    font-size: 2rem;
    font-weight: bold;
}

.price .period {
    color: #888;
    font-size: 1rem;
}

.plan-description {
    color: #888;
    font-size: 0.9rem;
}

.features-list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.feature {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    color: #888;
    font-size: 0.9rem;
}

.feature i {
    color: #4f9fff;
    margin-top: 0.2rem;
}

.try-now {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 500;
}

.try-now:hover {
    background: rgba(255, 255, 255, 0.2);
}

.pricing-note {
    color: #888;
    font-size: 0.9rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

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

.feature-header i {
    font-size: 1.8rem;
    min-width: 40px;
    color: #4f9fff;
}

.feature-header h3 {
    font-size: 1.2rem;
    margin: 0;
    color: #fff;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Add scroll padding to account for fixed navbar */
section {
    scroll-margin-top: 80px; /* Adjust based on your navbar height */
}