/* ==========================================================================
   ECLIPSE STUDIOS - PREMIUM DIGITAL AGENCY STYLESHEET
   Colors: #7C3AED (Primary), #06B6D4 (Secondary), #0B0F19 (Bg), #F8FAFC (Text)
   ========================================================================== */

@font-face {
    font-family: 'Merriweather';
    src: url('/fonts/Merriweather-VariableFont_opsz,wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-stretch: 75% 125%;
    font-style: normal;
}
@font-face {
    font-family: 'Merriweather';
    src: url('/fonts/Merriweather-Italic-VariableFont_opsz,wdth,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-stretch: 75% 125%;
    font-style: italic;
}

:root {
    --primary: #7C3AED;
    --primary-glow: rgba(124, 66, 237, 0.25);
    --secondary: #06B6D4;
    --accent: #7C3AED;
    --bg-dark: #0B0F19;
    --bg-card: rgba(255, 255, 255, 0.04);
    --text-main: #F1F5F9;
    --text-muted: #94A3B8;
    --glass-border: rgba(124, 66, 237, 0.15);
}

/* Base Styles & Typography */
* { margin: 0; padding: 0; box-sizing: border-box; }
@media (hover: hover) { * { cursor: none; } }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; height: 100%; }
body { background-color: var(--bg-dark); color: var(--text-main); font-family: 'Merriweather', serif; font-size: 0.9rem; overflow-x: hidden; width: 100%; min-height: 100vh; display: flex; flex-direction: column; position: relative; }
main { flex: 1 0 auto; }
.mega-footer { flex-shrink: 0; }
img, video, canvas, svg { max-width: 100%; height: auto; }
.container { max-width: 100%; padding-left: 15px; padding-right: 15px; }
.row { margin-left: 0; margin-right: 0; }

h1, h2, h3, h4, h5, h6 { font-family: 'Merriweather', serif; font-weight: 700; }

.section-padding { padding: 120px 0; }
@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
}
.section-title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; position: relative; display: inline-block; }
.section-subtitle { color: var(--secondary); font-family: 'Merriweather', serif; text-transform: uppercase; letter-spacing: 3px; font-size: 14px; font-weight: 700; margin-bottom: 15px; display: block; }
.section-desc { color: var(--text-muted); font-size: 1.125rem; max-width: 600px; margin: 0 auto 60px auto; }

/* Custom Cursor */
.cursor { width: 8px; height: 8px; background: var(--secondary); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: width 0.2s, height 0.2s; }
.cursor-follower { width: 40px; height: 40px; border: 1px solid rgba(6, 182, 212, 0.5); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); transition: 0.1s; }
a:hover ~ .cursor, button:hover ~ .cursor { width: 20px; height: 20px; background: var(--primary); }

/* Utilities */
.brand-gradient { background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.bg-gradient-custom { background: linear-gradient(135deg, var(--primary), var(--accent)); }
.text-muted { color: var(--text-muted) !important; }
.glass-panel { background: rgba(255,255,255,0.03); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 24px; }

/* Buttons */
.btn-glow {
    background: var(--primary); color: #fff; padding: 12px 28px; border-radius: 999px; font-weight: 600;     font-family: 'Merriweather', serif;
    border: none; position: relative; transition: 0.3s; box-shadow: 0 0 20px var(--primary-glow); z-index: 1; overflow: hidden; display: inline-block;
}
.btn-glow::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: 0.5s; z-index: -1; }
.btn-glow:hover { transform: translateY(-3px); box-shadow: 0 10px 30px var(--primary-glow); color: #fff; }
.btn-glow:hover::before { left: 100%; }

.btn-outline-glass {
    background: transparent; border: 1px solid var(--glass-border); color: var(--text-main); padding: 12px 28px; border-radius: 999px; font-weight: 600; transition: 0.3s; display: inline-block;
}
.btn-outline-glass:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Floating Capsule Navbar */
.floating-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1100px;
    height: 65px;
    background: rgba(11,15,25,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(124,66,237,0.15);
    border-radius: 100px;
    padding: 0 24px 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    z-index: 99999;
    transition: all 0.4s ease;
}
.floating-navbar.scrolled {
    box-shadow: 0 12px 40px rgba(124,66,237,0.12);
    background: rgba(11,15,25,0.92);
    transform: translateX(-50%) translateY(-2px);
}
.floating-navbar:hover {
    box-shadow: 0 14px 40px rgba(124,66,237,0.1);
    transform: translateX(-50%) translateY(-2px);
}
.floating-navbar.scrolled:hover {
    box-shadow: 0 16px 48px rgba(124,66,237,0.15);
}

/* Nav Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-icon {
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
}
.nav-logo:hover .logo-icon { transform: rotate(360deg) scale(1.1); }
.logo-text {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--text-main);
    letter-spacing: 1px;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 50px;
    position: relative;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
    font-family: 'Merriweather', serif;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(124,66,237,0.15);
    border-radius: 50px;
    transform: scale(0.8);
    opacity: 0;
    z-index: -1;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    transform: scale(1);
    opacity: 1;
}
.nav-links a:hover {
    color: var(--primary);
    transform: translateY(-2px);
}
.nav-links a:active { transform: translateY(1px); }
.nav-links a.active {
    color: var(--primary);
    font-weight: 600;
}

/* CTA Button in Nav */
.floating-navbar .cta-button {
    text-decoration: none;
    background: var(--primary);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Merriweather', serif;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px var(--primary-glow);
    white-space: nowrap;
}
.floating-navbar .cta-button:hover {
    background: var(--secondary);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 8px 24px rgba(8,145,178,0.3);
}
.floating-navbar .cta-button:active {
    transform: scale(0.98) translateY(1px);
}

/* Nav Hamburger (mobile) */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}
.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-main);
    border-radius: 4px;
    transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.nav-mobile-overlay.open { display: block; opacity: 1; }

/* 1. HERO SECTION - Futuristic Robot Theme */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-video-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 130%; z-index: -3; overflow: hidden; transform-origin: top; }
.hero-video { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }

.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(11,15,25,0.1) 0%, var(--hero-bg-color, rgba(11,15,25,0.92)) 100%); }

.hero-image-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.6; }
.marquee-container { width: 100%; overflow: hidden; white-space: nowrap; position: relative; mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent); }
.marquee-content { display: inline-block; animation: marqueeScroll 20s linear infinite; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.hero-title { font-size: clamp(3rem, 8vw, 5rem); line-height: 1.1; letter-spacing: -2px; margin-bottom: 24px; color: var(--text-main); }
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 40px auto; }

/* 2. SERVICES */
.service-card { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 24px; padding: 40px 30px; transition: 0.4s; position: relative; overflow: hidden; z-index: 1; height: 100%; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.1), transparent 70%); z-index: -1; opacity: 0; transition: 0.4s; }
.service-card:hover { transform: translateY(-10px); border-color: rgba(124, 58, 237, 0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 60px; height: 60px; border-radius: 16px; background: rgba(124, 58, 237, 0.1); color: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 25px; transition: 0.4s; }
.service-card:hover .service-icon { background: var(--primary); color: #fff; transform: scale(1.1) rotate(5deg); }

/* 3. ABOUT / STATS */
.stat-card { text-align: center; padding: 30px; background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 20px; }
.stat-number { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; font-family: 'Merriweather', serif; background: linear-gradient(to right, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; display: inline-block; }

/* 4. PORTFOLIO GRID */
.portfolio-item { position: relative; border-radius: 20px; overflow: hidden; margin-bottom: 24px; }
.portfolio-img { width: 100%; height: 280px; object-fit: cover; transition: 0.7s ease; filter: brightness(0.8); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(11, 15, 25, 0.9) 0%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; opacity: 0; transform: translateY(20px); transition: 0.4s ease; }
.portfolio-item:hover .portfolio-img { transform: scale(1.05); filter: brightness(1); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; transform: translateY(0); }
.portfolio-cat { color: var(--secondary); font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px; }

/* 6. PRICING */
.pricing-card { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 20px; padding: 32px 28px; position: relative; transition: 0.4s; height: 100%; display: flex; flex-direction: column; }
.pricing-card.popular { border-color: var(--primary); background: linear-gradient(180deg, rgba(124, 58, 237, 0.05) 0%, rgba(255,255,255,0.02) 100%); transform: scale(1.02); z-index: 2; }
.popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--primary); padding: 4px 18px; border-radius: 20px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.price-value { font-size: 3rem; font-weight: 800; font-family: 'Merriweather', serif; line-height: 1; margin: 14px 0; }
.feature-list { list-style: none; padding: 0; margin: 20px 0; flex-grow: 1; }
.feature-list li { margin-bottom: 8px; display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 14px; }
.feature-list li i { color: var(--secondary); font-size: 12px; }

/* 8. CONTACT FORM */
.contact-input { background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); border-radius: 12px; padding: 15px 20px; color: var(--text-main); transition: 0.3s; }
.contact-input::placeholder { color: var(--text-muted); }
.contact-input:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(124,66,237,0.12); color: var(--text-main); outline: none; }

/* Orbital Footer - Minimal Social Ring */
.orbital-footer {
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 40px;
    overflow: hidden;
    background: linear-gradient(to top, rgba(124,66,237,0.06), transparent);
}
.orbital-glow {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124,66,237,0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbitalPulse 4s ease-in-out infinite;
}
.orbital-ring {
    position: relative;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.orbital-core {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 0 40px rgba(124,58,237,0.3), 0 0 80px rgba(6,182,212,0.1);
    animation: coreSpin 10s linear infinite;
    z-index: 2;
    position: relative;
}
.orbital-link {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: orbitSpin 12s linear infinite;
    z-index: 3;
}
.orbital-link:nth-child(1) { animation-delay: 0s; }
.orbital-link:nth-child(2) { animation-delay: -4s; }
.orbital-link:nth-child(3) { animation-delay: -8s; }
.orbital-link i { font-size: 18px; position: relative; z-index: 1; }
.orbital-link:hover {
    transform: scale(1.3);
    border-color: var(--primary);
    color: #fff;
    background: var(--primary);
    box-shadow: 0 0 30px rgba(124,58,237,0.4);
}
@keyframes orbitSpin {
    0% { transform: rotate(0deg) translateX(90px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(90px) rotate(-360deg); }
}
@keyframes coreSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes orbitalPulse {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.6; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 1; }
}

/* Floating Elements */
.floating-wa { position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px; background: #25D366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 30px; z-index: 999; box-shadow: 0 10px 30px rgba(37,211,102,0.4); transition: 0.3s; text-decoration: none; }
.floating-wa:hover { transform: scale(1.1); color: #fff; }

/* 7. TESTIMONIALS */
.testimonial-card { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 24px; padding: 40px 30px; margin: 20px 10px; transition: 0.4s; }
.testimonial-card:hover { border-color: rgba(124,58,237,0.3); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.testimonial-avatar img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 2px solid var(--glass-border); }
.testimonial-text { font-style: italic; color: var(--text-muted); font-size: 1rem; line-height: 1.7; }
.swiper-pagination-bullet { background: var(--primary) !important; opacity: 0.3; }
.swiper-pagination-bullet-active { opacity: 1 !important; width: 30px !important; border-radius: 4px !important; }

/* 8. TEAM */
.team-card { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 24px; padding: 40px 20px 30px; transition: 0.4s; height: 100%; }
.team-card:hover { transform: translateY(-8px); border-color: rgba(6,182,212,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.team-photo-wrapper { position: relative; display: inline-block; }
.team-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid var(--glass-border); transition: 0.4s; }
.team-card:hover .team-photo { border-color: var(--secondary); transform: scale(1.05); }
.team-social { position: absolute; bottom: 0; right: 0; }
.team-social a { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: 0.3s; font-size: 14px; }
.team-social a:hover { background: var(--secondary); transform: scale(1.1); }

/* 9. BLOG CARDS */
.blog-card { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 24px; overflow: hidden; transition: 0.4s; height: 100%; }
.blog-card:hover { transform: translateY(-8px); border-color: rgba(124,58,237,0.3); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.blog-card-img-wrapper { overflow: hidden; height: 200px; }
.blog-card-img { width: 100%; height: 100%; object-fit: cover; transition: 0.7s ease; }
.blog-card:hover .blog-card-img { transform: scale(1.08); }
.blog-card-body { padding: 24px; }
.blog-card-body h5 { margin-bottom: 12px; transition: 0.3s; }
.blog-card:hover .blog-card-body h5 { color: var(--secondary); }

/* Blog read more link */
.blog-read-more { color: var(--primary); font-weight: 600; transition: 0.3s; }
.blog-read-more:hover { color: var(--secondary); gap: 8px; }
.blog-read-more i { transition: transform 0.3s; }
.blog-read-more:hover i { transform: translateX(4px); }

/* 10. FAQ ACCORDION */
.faq-item { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: 16px !important; margin-bottom: 12px; overflow: hidden; }
.faq-item .accordion-button { background: transparent; color: var(--text-main); font-weight: 600; padding: 20px 24px; box-shadow: none; border-radius: 16px !important;     font-family: 'Merriweather', serif; }
.faq-item .accordion-button:not(.collapsed) { background: rgba(124,58,237,0.05); color: var(--secondary); }
.faq-item .accordion-button::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2394A3B8'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); }
.faq-item .accordion-button:not(.collapsed)::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2306B6D4'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E"); }
.faq-item .accordion-body { padding: 0 24px 20px; color: var(--text-muted); line-height: 1.7; }

/* 11. CONTACT ICONS */
.contact-icon-box { width: 50px; height: 50px; border-radius: 16px; background: rgba(124,58,237,0.1); color: var(--secondary); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }

/* 12. BADGE VARIANTS */
.bg-primary-subtle { background: rgba(124,58,237,0.15) !important; }
.text-primary { color: var(--secondary) !important; }
.btn-sm { padding: 8px 20px; font-size: 14px; }

/* Premium Animations Helper Classes */
.reveal-text { overflow: hidden; position: relative; }
.reveal-text span { display: inline-block; }

.magnetic-btn { display: inline-block; transition: transform 0.1s linear; }

/* Smooth Scroll Support */
[data-scroll-container] { perspective: 1px; }

/* Dynamic Reference Marquee Fix */
.partner-logo { filter: grayscale(1) brightness(0.7); opacity: 0.6; transition: 0.3s; width: auto; height: 32px; object-fit: contain; }
.partner-logo:hover { filter: grayscale(0) brightness(1); opacity: 1; transform: scale(1.1); }

/* Section Renk Geçişleri - Alternating gradient backgrounds */
#services { background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(124,66,237,0.04) 50%, var(--bg-dark) 100%); }
#portfolio { background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(6,182,212,0.04) 50%, var(--bg-dark) 100%); }
#team { background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(124,66,237,0.03) 50%, var(--bg-dark) 100%); }
#faq { background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(6,182,212,0.03) 50%, var(--bg-dark) 100%); }
#blog { background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(124,66,237,0.04) 50%, var(--bg-dark) 100%); }
#contact { background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(6,182,212,0.04) 50%, var(--bg-dark) 100%); }

/* Responsive adjustments */
@media (max-width: 768px) {
    html, body { overflow-x: hidden; width: 100%; }
    .cursor, .cursor-follower { display: none; }
    .pricing-card.popular { transform: none; margin: 30px 0; }
    .hero-video-wrapper { height: 100%; }
    .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
    .hero-subtitle { font-size: 1rem; }
    .hero { padding-top: 0 !important; }
    .section-padding { padding: 50px 0; }
    .marquee-container { mask-image: none; -webkit-mask-image: none; }
    .container { padding-left: 16px; padding-right: 16px; }
    .row { margin-left: 0; margin-right: 0; }
    .col-*, .col-lg-*, .col-md-*, .col-xl-* { padding-left: 8px; padding-right: 8px; }
    .navbar-brand img { max-height: 28px; }

    /* Mobile Capsule Navbar */
    .floating-navbar { height: 58px; padding: 0 16px 0 14px; top: 14px; }
    .floating-navbar .cta-button { display: none; }
    .nav-links { display: none; }
    .nav-hamburger { display: none; }

    /* Orbital footer mobile */
    .orbital-ring { width: 140px; height: 140px; }
    .orbital-link { width: 36px; height: 36px; }
    .orbital-link i { font-size: 14px; }
    .orbital-core { width: 44px; height: 44px; font-size: 16px; }
    @keyframes orbitSpin {
        0% { transform: rotate(0deg) translateX(70px) rotate(0deg); }
        100% { transform: rotate(360deg) translateX(70px) rotate(-360deg); }
    }

    .floating-wa { bottom: 16px; right: 16px; width: 48px; height: 48px; font-size: 22px; }

    /* Mobile overlay nav */
    .nav-overlay .nav-link { font-size: 1.6rem; }
    .eclipse-moon { width: 16px; height: 16px; }
    .eclipse-ring { width: 18px; height: 18px; box-shadow: 0 0 6px 1px rgba(124,58,237,0.8), 0 0 12px 2px rgba(124,58,237,0.3); }
    .menu-trigger { width: 38px; height: 38px; font-size: 1.2rem; }
}

/* RGB Text Animation */
.rgb-text { animation: rainbow-text 3s linear infinite; }
@keyframes rainbow-text { 0% { color: #ff0000; } 50% { color: #00ff00; } 100% { color: #0000ff; } }

/* Eclipse Header Logo (moon+ring next to logo text - no rotation) */
.eclipse-container {
    display: inline-flex; align-items: center; justify-content: center;
    pointer-events: none; margin-right: 14px; vertical-align: middle;
    position: relative;
}
.nav-logo:hover .eclipse-container { transform: none !important; }
.eclipse-moon {
    background-color: var(--bg-dark); border-radius: 50%;
    position: relative; z-index: 2; box-shadow: inset -2px -2px 4px rgba(255,255,255,0.05);
}
.eclipse-ring {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    border-radius: 50%; background: transparent; z-index: 1;
    animation: eclipse-pulse 4s infinite ease-in-out;
}
@media (min-width: 769px) {
    .eclipse-moon { width: 20px; height: 20px; }
    .eclipse-ring { width: 22px; height: 22px; box-shadow: 0 0 8px 1px rgba(124,58,237,0.7), 0 0 15px 2px rgba(124,58,237,0.3); }
}
@keyframes eclipse-pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

/* Menu Trigger (✧) - shown on mobile only */
.menu-trigger {
    font-size: 1.5rem; cursor: pointer; transition: transform 0.3s;
    width: 45px; height: 45px; display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05); border-radius: 50%;
    backdrop-filter: blur(5px); border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted); text-decoration: none;
}
.menu-trigger:hover { transform: rotate(180deg) scale(1.1); border-color: var(--primary); color: var(--primary); }
.menu-trigger.active { transform: rotate(45deg); color: var(--primary); border-color: var(--primary); }
@media (min-width: 769px) { .menu-trigger { display: none !important; } }

/* Full-Screen Nav Overlay */
.nav-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(11,15,25,0.98); z-index: 99999;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: 0.4s ease-in-out;
    backdrop-filter: blur(10px); gap: 1.5rem;
}
.nav-overlay.open { opacity: 1; visibility: visible; }
.nav-overlay .nav-link {
    font-size: 2rem; font-weight: 700; color: var(--text-muted); text-decoration: none;
    transition: 0.3s; position: relative; transform: translateY(30px); opacity: 0;
    display: block; text-align: center; width: 100%; max-width: 300px;
}
.nav-overlay.open .nav-link { transform: translateY(0); opacity: 1; }
.nav-overlay .nav-link:hover { color: var(--primary); letter-spacing: 1px; text-shadow: 0 0 20px rgba(124,58,237,0.5); }
.nav-overlay.open .nav-link:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.open .nav-link:nth-child(2) { transition-delay: 0.15s; }
.nav-overlay.open .nav-link:nth-child(3) { transition-delay: 0.2s; }
.nav-overlay.open .nav-link:nth-child(4) { transition-delay: 0.25s; }
.nav-overlay.open .nav-link:nth-child(5) { transition-delay: 0.3s; }


