:root {
    --primary-dark: #1a1a1a;
    --primary-medium: #2a2a2a;
    --primary-light: #3a3a3a;
    --accent-white: #ffffff;
    --accent-light-gray: #f5f5f5;
    --accent-gray: #e0e0e0;
    --text-dark: #2a2a2a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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: var(--primary-dark);
    color: var(--text-medium);
    min-height: 100vh;
    overflow-x: hidden;
    font-family: var(--font-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

.logo:hover {
    color: var(--accent-white);
}

.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: var(--accent-white);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    font-family: var(--font-primary);
    font-weight: 500;
}

.nav-links a:hover, 
.nav-links a.active {
    opacity: 1;
    color: var(--accent-white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--accent-white) 0%, var(--accent-light-gray) 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(0, 0, 0, 0.1);
    color: #333333;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.login:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 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;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

#vanta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

#vanta-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 4rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #ffffff;
    padding-top: 80px; /* Account for navbar height */
}

.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    position: relative;
}

.hero-content h1 .brand-name {
    display: block;
    font-size: 7rem;
    background: linear-gradient(120deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 8s linear infinite, floatText 4s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    position: relative;
}

.hero-content h1 .brand-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: lineShine 3s ease-in-out infinite;
}

.hero-content h1 .brand-subtitle {
    display: block;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
    letter-spacing: 0;
}

.hero-content h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: lineShine 3s ease-in-out infinite;
}

.hero-content p {
    font-family: 'Outfit', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
    max-width: 700px;
    position: relative;
    padding-left: 2rem;
}

.hero-content p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: linePulse 2s ease-in-out infinite;
}

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

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

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

@keyframes lineShine {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1);
    }
    100% {
        opacity: 0;
        transform: scaleX(0);
    }
}

@keyframes linePulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

.hero-content .get-started {
    font-family: 'Space Grotesk', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.hero-content .get-started:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-content .get-started svg {
    transition: transform 0.3s ease;
}

.hero-content .get-started:hover svg {
    transform: translateX(5px);
}

.hyperjump-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    pointer-events: none;
}

.text-content {
    max-width: 800px;
    text-align: center;
    pointer-events: auto;
}

.text-content h1 {
    color: var(--accent-white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.text-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hyperjump-animation {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.stars, .stars2, .stars3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    opacity: 0;
    animation: zoom 8s linear infinite, twinkle 2s ease-in-out infinite;
}

.stars {
    background-image: radial-gradient(3px 3px at 20px 30px, rgba(255, 255, 255, 1), rgba(0,0,0,0)),
                      radial-gradient(3px 3px at 40px 70px, rgba(255, 255, 255, 0.9), rgba(0,0,0,0)),
                      radial-gradient(4px 4px at 50px 160px, rgba(255, 255, 255, 0.8), rgba(0,0,0,0)),
                      radial-gradient(3px 3px at 90px 40px, rgba(255, 255, 255, 0.9), rgba(0,0,0,0)),
                      radial-gradient(4px 4px at 130px 80px, rgba(255, 255, 255, 1), rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation-duration: 6s;
}

.stars2 {
    background-image: radial-gradient(3px 3px at 25px 35px, rgba(255, 255, 255, 1), rgba(0,0,0,0)),
                      radial-gradient(4px 4px at 45px 75px, rgba(255, 255, 255, 0.9), rgba(0,0,0,0)),
                      radial-gradient(3px 3px at 55px 165px, rgba(255, 255, 255, 0.8), rgba(0,0,0,0)),
                      radial-gradient(4px 4px at 95px 45px, rgba(255, 255, 255, 0.9), rgba(0,0,0,0)),
                      radial-gradient(3px 3px at 135px 85px, rgba(255, 255, 255, 1), rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation-duration: 8s;
    animation-delay: 0.5s;
}

.stars3 {
    background-image: radial-gradient(4px 4px at 30px 35px, rgba(255, 255, 255, 1), rgba(0,0,0,0)),
                      radial-gradient(3px 3px at 50px 75px, rgba(255, 255, 255, 0.9), rgba(0,0,0,0)),
                      radial-gradient(4px 4px at 60px 170px, rgba(255, 255, 255, 0.8), rgba(0,0,0,0)),
                      radial-gradient(3px 3px at 100px 45px, rgba(255, 255, 255, 0.9), rgba(0,0,0,0)),
                      radial-gradient(4px 4px at 140px 90px, rgba(255, 255, 255, 1), rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation-duration: 10s;
    animation-delay: 1s;
}

.hyperjump-content .get-started {
    animation: neonPulse 2s infinite;
}

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

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(3);
    }
}

.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-content {
        padding: 0 2rem;
    }

    .hero-content h1 .brand-name {
        font-size: 4rem;
    }
    
    .hero-content h1 .brand-subtitle {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .hero-content p {
        font-size: 1.3rem;
        padding-left: 1.5rem;
    }

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

.ai-features {
    position: relative;
    background: var(--accent-white);
    padding: 4rem 2rem;
    margin-top: -2px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.category-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: none;
    color: #666;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
    font-family: var(--font-primary);
    font-weight: 500;
}

.category-btn:hover {
    color: var(--text-dark);
    background: #f0f0f0;
}

.category-btn.active {
    color: var(--text-dark);
    background: #f0f0f0;
    font-weight: 500;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 16px;
    z-index: 0;
}
.addtest{
    background-color: #000;
}

.feature-icon {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    padding: 16px;
    color: var(--text-bright);
    transition: all 0.3s ease;
}

.feature-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-content h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-dark);
    color: var(--accent-white);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    margin: 0 2rem 2rem;
    position: relative;
    z-index: 10;
}

.feature-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background: var(--primary-medium);
}

.feature-preview {
    position: relative;
    overflow: hidden;
    height: 200px;
    margin-top: auto;
}

.feature-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card:hover .feature-content h3 {
    color: var(--accent-primary);
}

.feature-card:hover .feature-preview img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .feature-card {
        max-width: 100%;
    }

    .feature-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

.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-dark);
}

.ai-query p {
    font-size: 1.2rem;
    color: var(--primary-medium);
    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: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.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);
    }
}

.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;
}

.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: var(--primary-dark);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-family: var(--font-primary);
}

.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: var(--accent-white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: var(--accent-white);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

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

.footer-section a:hover {
    color: var(--accent-white);
}

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

.social-links a {
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-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: var(--text-light);
    font-size: 0.9rem;
}

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

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

.footer-bottom-links a:hover {
    color: var(--accent-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(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.pricing-card {
    background: var(--accent-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-card.featured {
    border: 1px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pricing-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.beta-tag {
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    font-weight: normal;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.subscribe-btn {
    display: inline-block;
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-dark);
    color: var(--accent-white);
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.subscribe-btn:hover {
    background: var(--primary-medium);
    transform: translateY(-1px);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-family: var(--font-heading);
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
}

.features-list i {
    color: var(--primary-medium);
    font-size: 1rem;
    margin-top: 0.2rem;
}

.features-list strong {
    color: var(--text-dark);
    font-weight: 600;
}

.learn-more {
    color: var(--text-medium);
    text-decoration: none;
    margin-left: 0.3rem;
    font-size: 0.9rem;
}

.learn-more:hover {
    text-decoration: underline;
}

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

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

.feature-header i {
    font-size: 1.5rem;
    color: var(--primary-medium);
}

.feature-header h3 {
    color: #333333;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

@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 */
}

.ocean-section {
    position: relative;
    background: #f8f8f8;
    padding: 6rem 0;
    overflow: hidden;
}

.ocean {
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #ddabab;
}

.wave {
    background: rgba(211, 211, 211, 0.9);
    border-radius: 50%;
    position: absolute;
    width: 200%;
    height: 200%;
    animation: wave 10s infinite linear;
    transform-origin: 50% 48%;
    left: -50%;
    top: 0;
}

.wave:nth-of-type(1) {
    animation: wave 8s infinite linear;
    opacity: 0.8;
    background: rgba(242, 242, 242, 0.9);
}

.wave:nth-of-type(2) {
    animation: wave 10s infinite linear;
    opacity: 0.6;
    background: rgba(240, 240, 240, 0.8);
}

.wave:nth-of-type(3) {
    animation: wave 12s infinite linear;
    opacity: 0.4;
    background: rgba(238, 238, 238, 0.8);
}

.wave:nth-of-type(4) {
    animation: wave 14s infinite linear;
    opacity: 0.2;
    background: rgba(235, 235, 235, 0.8);
}

.ocean-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ocean-content h2 {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: none;
}

.ocean-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ocean-section .feature-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 200, 200, 0.2);
    padding: 2rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.ocean-section .feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(200, 200, 200, 0.3);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

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

.ocean-section .feature-header i {
    font-size: 1.5rem;
    color: var(--text-medium);
}

.ocean-section .feature-header h3 {
    color: var(--text-dark);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.ocean-section .feature-header h3 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ocean-section .feature-header h3 a:hover {
    color: var(--primary-medium);
}

.ocean-section .feature-card p {
    color: var(--text-medium);
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    line-height: 1.6;
}

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

/* Planets Styles */
.planets {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.planet {
    position: absolute;
    border-radius: 50%;
    opacity: 0.9;
    animation: planetRotate 20s linear infinite;
    box-shadow: inset -25px -25px 40px rgba(0,0,0,.5);
    background-size: 100% 100%;
    background-position: center center;
    transform-origin: center;
    filter: brightness(1.2) contrast(1.2);
}

.planet1 {
    width: 80px;
    height: 80px;
    top: 15%;
    right: 10%;
    background: radial-gradient(circle at 30% 30%, 
        #ff8080 0%, 
        #ff6666 20%, 
        #ff4d4d 40%,
        #ff3333 60%,
        #ff1a1a 80%,
        #ff0000 100%
    );
    box-shadow: 
        inset -25px -25px 40px rgba(0,0,0,.5),
        0 0 30px rgba(255,0,0,.3),
        0 0 60px rgba(255,0,0,.2);
    animation: planetRotate 20s linear infinite;
}

.planet2 {
    width: 120px;
    height: 120px;
    top: 60%;
    left: 15%;
    background: radial-gradient(circle at 30% 30%, 
        #66ffff 0%, 
        #33ffff 20%, 
        #00ffff 40%,
        #00ccff 60%,
        #0099ff 80%,
        #0066ff 100%
    );
    box-shadow: 
        inset -25px -25px 40px rgba(0,0,0,.6),
        0 0 30px rgba(0,255,255,.3),
        0 0 60px rgba(0,255,255,.2);
    animation: planetRotate 25s linear infinite reverse;
}

.planet3 {
    width: 150px;
    height: 150px;
    top: 35%;
    left: 25%;
    background: radial-gradient(circle at 30% 30%, 
        #ffd480 0%, 
        #ffcc66 20%, 
        #ffc44d 40%,
        #ffbb33 60%,
        #ffb31a 80%,
        #ffaa00 100%
    );
    box-shadow: 
        inset -30px -30px 50px rgba(0,0,0,.5),
        0 0 35px rgba(255,165,0,.3),
        0 0 70px rgba(255,165,0,.2);
    animation: planetRotate 30s linear infinite;
}

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

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

@keyframes zoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(3);
    }
}

.offices-section {
    padding: 6rem 0;
    background: var(--accent-white);
}

.offices-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.offices-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.offices-section .section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.offices-section .section-header p {
    color: var(--text-medium);
    font-size: 1.1rem;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.office-card {
    background: var(--accent-white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.office-icon {
    font-size: 2rem;
    color: var(--primary-medium);
    margin-bottom: 1.5rem;
}

.office-card h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.office-card .address {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.office-card .phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--text-medium);
}

.office-card .phone i {
    color: var(--primary-medium);
}

.office-card .phone a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.office-card .phone a:hover {
    color: var(--primary-medium);
}

.holding-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.holding-logo {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.holding-info p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

.holding-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.holding-link:hover {
    color: var(--primary-color-dark);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.references-section {
    background: var(--primary-dark);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.references-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
}

.references-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent
    );
}

.references-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.references-section .section-header h2 {
    color: var(--accent-white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.references-section .section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.references-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.reference-track {
    display: flex;
    gap: 2rem;
    animation: scroll 30s linear infinite;
    padding: 2rem 0;
}

.reference-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 200px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.reference-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.reference-item img {
    width: 150px;
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.8);
    transition: all 0.3s ease;
}

.reference-item:hover img {
    filter: grayscale(0%) brightness(1);
}

.reference-item span {
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
    transition: color 0.3s ease;
}

.reference-item:hover span {
    color: var(--accent-white);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-200px * 10));
    }
}

.reference-track:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .references-section {
        padding: 4rem 1rem;
    }
    
    .reference-item {
        min-width: 160px;
        padding: 1rem;
    }
    
    .reference-item img {
        width: 120px;
        height: 60px;
    }
}

.waves-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background-color: #000;
    z-index: 1;
}

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

.waves-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: white;
    z-index: 2;
}

.waves-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.waves-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: white;
}

.waves-cta-button {
    padding: 12px 24px;
    font-size: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
}

.waves-cta-button:hover {
    background-color: var(--primary-color-dark);
}
