:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #0f0f14;
    --bg-card: #13131a;
    --bg-elevated: #1a1a23;
    --purple-400: #a78bfa;
    --purple-500: #8b5cf6;
    --purple-600: #7c3aed;
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    --coral-400: #fb7185;
    --coral-500: #f43f5e;
    --gold-400: #fbbf24;
    --gold-500: #f59e0b;
    --gold-600: #d97706;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border-subtle: rgba(139, 92, 246, 0.1);
    --border-default: rgba(139, 92, 246, 0.2);
    --border-hover: rgba(139, 92, 246, 0.3);
    --play-state: running;
}

/* Global Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3), 0 0 40px rgba(139, 92, 246, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.5), 0 0 80px rgba(139, 92, 246, 0.3);
    }
}

@keyframes border-glow {
    0%, 100% {
        border-color: rgba(139, 92, 246, 0.3);
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.1);
    }
    50% {
        border-color: rgba(139, 92, 246, 0.6);
        box-shadow: 0 0 40px rgba(139, 92, 246, 0.3);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(2deg);
    }
    50% {
        transform: translateY(-25px) rotate(0deg);
    }
    75% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

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

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

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

/* Utility Animation Classes */
.animate-fadeInUp {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-fadeInScale {
    animation: fadeInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slideInLeft {
    animation: slideInLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-slideInRight {
    animation: slideInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-glow {
    animation: glow-pulse 2s ease-in-out infinite;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
}

/* Stagger Animation Delays */
.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }
.delay-600 { animation-delay: 600ms; }
.delay-700 { animation-delay: 700ms; }
.delay-800 { animation-delay: 800ms; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--purple-600);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 8px 0;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Improved focus styles */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--cyan-400);
    outline-offset: 2px;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    will-change: transform;
    contain: layout style;
}

.nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.3) 20%, 
        rgba(245, 158, 11, 0.3) 50%, 
        rgba(34, 211, 238, 0.3) 80%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav.scrolled::after {
    opacity: 1;
}

.nav.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-default);
    padding: 12px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
}

.logo-text {
    background: linear-gradient(135deg, var(--purple-400), var(--gold-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--purple-600), var(--gold-500));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5), 0 0 30px rgba(245, 158, 11, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .logo-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.8), 0 0 50px rgba(245, 158, 11, 0.5);
}

.logo:hover .logo-text {
    filter: brightness(1.3);
}

.logo-img {
    height: 96px;
    width: auto;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .logo-img {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.8), 0 0 80px rgba(245, 158, 11, 0.6);
}

.logo-full {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #e9d5ff 0%, #fcd34d 50%, #e9d5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.2s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--cyan-400);
    transition: width 0.3s ease;
}

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

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

.nav-links a.active {
    color: var(--text-primary);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-primary);
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

.nav-cta {
    background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.5), 0 4px 20px rgba(124, 58, 237, 0.4);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.7), 0 6px 30px rgba(124, 58, 237, 0.5);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 140px 0 100px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-primary);
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Enhanced Hero Background - Animated Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orb-float 20s ease-in-out infinite;
    mix-blend-mode: screen;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, rgba(245, 158, 11, 0.1) 50%, transparent 70%);
    top: 50%;
    right: -150px;
    animation-delay: -5s;
    animation-duration: 15s;
}

.hero-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.35) 0%, rgba(6, 182, 212, 0.1) 50%, transparent 70%);
    bottom: -100px;
    left: 30%;
    animation-delay: -10s;
    animation-duration: 18s;
}

.hero-orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
    top: 20%;
    left: 20%;
    animation-delay: -3s;
}

.hero-orb-5 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, rgba(245, 158, 11, 0.1) 50%, transparent 70%);
    bottom: 30%;
    right: 25%;
    animation-delay: -8s;
    animation-duration: 22s;
}

@keyframes orb-float {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg); 
        opacity: 0.5;
    }
    25% { 
        transform: translate(50px, 30px) scale(1.1) rotate(5deg); 
        opacity: 0.7;
    }
    50% { 
        transform: translate(100px, 60px) scale(1.15) rotate(0deg); 
        opacity: 0.5;
    }
    75% { 
        transform: translate(50px, 90px) scale(1.08) rotate(-5deg); 
        opacity: 0.6;
    }
}

/* Hero Glows - Enhanced */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: glow-pulse-slow 6s ease-in-out infinite;
    mix-blend-mode: screen;
}

.hero-glow-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 60%);
    top: 10%;
    left: 0;
    right: 0;
    margin: auto;
    animation-delay: 0s;
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.25) 0%, transparent 60%);
    top: 60%;
    right: 10%;
    animation-delay: -2s;
}

.hero-glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, transparent 60%);
    top: 30%;
    left: 60%;
    animation-delay: -4s;
}

@keyframes glow-pulse-slow {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.4;
    }
    50% { 
        transform: scale(1.3); 
        opacity: 0.8;
    }
}

/* Hero Animated Lines - Enhanced */
.hero-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.4), rgba(245, 158, 11, 0.3), transparent);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    animation: line-scan 8s ease-in-out infinite;
}

.line-1 {
    width: 300px;
    top: 30%;
    left: -100px;
    animation-delay: 0s;
}

.line-2 {
    width: 400px;
    top: 50%;
    left: -100px;
    animation-delay: -3s;
}

.line-3 {
    width: 250px;
    top: 70%;
    left: -100px;
    animation-delay: -6s;
}

@keyframes line-scan {
    0% { 
        transform: translateX(0); 
        opacity: 0;
    }
    20% { 
        opacity: 1;
    }
    80% { 
        opacity: 1;
    }
    100% { 
        transform: translateX(calc(100vw + 200px)); 
        opacity: 0;
    }
}

/* Grid Background - Enhanced */
.grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
    opacity: 0.5;
    animation: grid-pulse 10s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--purple-600) 0%, transparent 70%);
    top: -200px;
    left: -100px;
    animation: float-1 8s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--cyan-600) 0%, transparent 70%);
    top: 20%;
    right: -100px;
    animation: float-2 10s ease-in-out infinite;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--gold-600) 0%, transparent 70%);
    bottom: -100px;
    left: 30%;
    animation: float-3 7s ease-in-out infinite;
}

.orb-4 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--purple-500) 0%, transparent 70%);
    top: 40%;
    left: 10%;
    animation: float-4 9s ease-in-out infinite;
}

.orb-5 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--gold-500) 0%, transparent 70%);
    bottom: 20%;
    right: 25%;
    animation: float-5 11s ease-in-out infinite;
    opacity: 0.4;
}

@keyframes float-1 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(60px, 30px) scale(1.1) rotate(5deg); }
    50% { transform: translate(120px, 60px) scale(1.15) rotate(0deg); }
    75% { transform: translate(60px, 90px) scale(1.08) rotate(-5deg); }
}

@keyframes float-2 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(-50px, 60px) scale(0.95) rotate(-8deg); }
    50% { transform: translate(-100px, 120px) scale(0.9) rotate(0deg); }
    75% { transform: translate(-50px, 60px) scale(0.95) rotate(8deg); }
}

@keyframes float-3 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(30px, -50px) scale(1.05) rotate(10deg); }
    50% { transform: translate(60px, -100px) scale(1.1) rotate(0deg); }
    75% { transform: translate(30px, -50px) scale(1.05) rotate(-10deg); }
}

@keyframes float-4 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(75px, -30px) scale(0.98) rotate(-7deg); }
    50% { transform: translate(150px, -60px) scale(0.95) rotate(0deg); }
    75% { transform: translate(75px, -30px) scale(0.98) rotate(7deg); }
}

@keyframes float-5 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(-40px, 50px) scale(1.1) rotate(6deg); }
    50% { transform: translate(-80px, 100px) scale(1.2) rotate(0deg); }
    75% { transform: translate(-40px, 50px) scale(1.1) rotate(-6deg); }
}

/* Particle Effects */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold-400);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-400), 0 0 20px rgba(251, 191, 36, 0.5);
    animation: float-particle 15s ease-in-out infinite;
}

.p1 { top: 20%; left: 10%; animation-delay: 0s; }
.p2 { top: 40%; left: 20%; animation-delay: 2s; background: var(--purple-400); box-shadow: 0 0 10px var(--purple-400), 0 0 20px rgba(139, 92, 246, 0.5); }
.p3 { top: 60%; left: 15%; animation-delay: 4s; background: var(--cyan-400); box-shadow: 0 0 10px var(--cyan-400), 0 0 20px rgba(34, 211, 238, 0.5); }
.p4 { top: 30%; left: 80%; animation-delay: 1s; }
.p5 { top: 70%; left: 85%; animation-delay: 3s; background: var(--purple-400); box-shadow: 0 0 10px var(--purple-400), 0 0 20px rgba(139, 92, 246, 0.5); }
.p6 { top: 50%; left: 90%; animation-delay: 5s; background: var(--cyan-400); box-shadow: 0 0 10px var(--cyan-400), 0 0 20px rgba(34, 211, 238, 0.5); }
.p7 { top: 15%; left: 50%; animation-delay: 2.5s; }
.p8 { top: 85%; left: 60%; animation-delay: 6s; background: var(--purple-400); box-shadow: 0 0 10px var(--purple-400), 0 0 20px rgba(139, 92, 246, 0.5); }

@keyframes float-particle {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(30px, -30px) scale(1.2); opacity: 1; }
    50% { transform: translate(60px, 0) scale(1); opacity: 0.8; }
    75% { transform: translate(30px, 30px) scale(1.1); opacity: 1; }
}

/* Enhanced Mouse Follower Orb */
.mouse-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, rgba(245, 158, 11, 0.3) 50%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4), 0 0 40px rgba(245, 158, 11, 0.2);
    mix-blend-mode: screen;
    animation: orb-pulse 2s ease-in-out infinite;
}

.mouse-follower::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(139, 92, 246, 0.5);
    animation: orb-ring 2s ease-in-out infinite;
}

@keyframes orb-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes orb-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.mouse-follower.hovered {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.7) 0%, rgba(139, 92, 246, 0.4) 50%, transparent 70%);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.6), 0 0 60px rgba(139, 92, 246, 0.4);
}

/* Floating Chat Bubble */
.floating-chat {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--purple-600), var(--gold-500));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.5), 0 0 60px rgba(245, 158, 11, 0.3);
    z-index: 999;
    animation: float-chat 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-chat:hover {
    transform: scale(1.08) translateY(-5px);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.7), 0 0 80px rgba(245, 158, 11, 0.5);
}

.chat-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot-chat 1.5s ease-in-out infinite;
}

@keyframes float-chat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes pulse-dot-chat {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.8; }
}

@media (max-width: 768px) {
    .floating-chat {
        bottom: 90px;
        left: 20px;
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* Glow Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: glow-pulse 8s ease-in-out infinite;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--purple-600) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--gold-600) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 4s;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.particle-field {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(139, 92, 246, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.1;
    animation: particles 60s linear infinite;
}

.floating-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    opacity: 0.08;
    animation: float-shape 20s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    border: 2px solid var(--gold-400);
    box-shadow: 0 0 20px var(--gold-400), inset 0 0 20px rgba(251, 191, 36, 0.2);
    top: 20%;
    left: 10%;
    animation: rotate-slow 20s linear infinite, morph-shape 8s ease-in-out infinite;
    transform: rotate(45deg);
}

.shape-2 {
    width: 50px;
    height: 50px;
    background: var(--cyan-400);
    box-shadow: 0 0 30px var(--cyan-400), 0 0 60px rgba(34, 211, 238, 0.3);
    border-radius: 50%;
    top: 60%;
    right: 15%;
    animation: float-shape-2 15s ease-in-out infinite;
}

.shape-3 {
    width: 70px;
    height: 70px;
    border: 3px solid var(--purple-400);
    box-shadow: 0 0 25px var(--purple-400), inset 0 0 25px rgba(167, 139, 250, 0.3);
    top: 40%;
    right: 30%;
    animation: float-shape 18s ease-in-out infinite, rotate-slow 25s linear infinite reverse;
    border-radius: 12px;
}

.shape-4 {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-500), var(--coral-400));
    box-shadow: 0 0 30px var(--gold-500), 0 0 50px rgba(245, 158, 11, 0.4);
    bottom: 30%;
    left: 20%;
    animation: float-shape-2 12s ease-in-out infinite;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

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

@keyframes float-shape {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-20px) rotate(7deg) scale(1.05); }
    50% { transform: translateY(-40px) rotate(15deg) scale(1); }
    75% { transform: translateY(-20px) rotate(8deg) scale(0.95); }
}

@keyframes float-shape-2 {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    33% { transform: translateY(-50px) rotate(-20deg) scale(1.1); }
    66% { transform: translateY(-25px) rotate(10deg) scale(0.95); }
}

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

@keyframes morph-shape {
    0%, 100% { border-radius: 12px; }
    50% { border-radius: 50%; }
}

/* Additional floating elements */
.floating-lines,
.floating-dots {
    display: none;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .orb,
    .shape,
    .particle-field,
    .marquee,
    .tools-track {
        animation: none !important;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-title .gradient {
    background: linear-gradient(135deg, var(--gold-400), var(--purple-400), var(--cyan-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(245, 158, 11, 0.1));
    border: 1px solid var(--border-default);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    background: linear-gradient(135deg, var(--purple-500), var(--gold-500), var(--cyan-500));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: border-rotate 3s linear infinite;
}

@keyframes border-rotate {
    0% { background: linear-gradient(135deg, var(--purple-500), var(--gold-500), var(--cyan-500)); }
    33% { background: linear-gradient(135deg, var(--gold-500), var(--cyan-500), var(--purple-500)); }
    66% { background: linear-gradient(135deg, var(--cyan-500), var(--purple-500), var(--gold-500)); }
    100% { background: linear-gradient(135deg, var(--purple-500), var(--gold-500), var(--cyan-500)); }
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--gold-400);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--gold-400), 0 0 30px rgba(251, 191, 36, 0.4);
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 24px;
    line-height: 1.1;
}

.gradient {
    background: linear-gradient(135deg, var(--gold-400), var(--purple-400), var(--cyan-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.3));
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-600), var(--gold-500));
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4), 0 4px 20px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow:
        0 0 60px rgba(245, 158, 11, 0.8),
        0 0 100px rgba(245, 158, 11, 0.4),
        0 15px 35px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.5px;
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.04);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--text-secondary);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid var(--border-default);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.btn-secondary::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;
}

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

.btn-secondary:hover {
    border-color: var(--purple-500);
    color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat {
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 12px;
}

.stat:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-5px);
}

.stat:hover .stat-num {
    color: var(--gold-400);
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
    transform: scale(1.1);
}

.stat-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.stat-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--border-default), transparent);
    animation: pulse-line 2s ease-in-out infinite;
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Trust Indicators Section */
.trust-indicators {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.trust-indicators::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.trust-card {
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trust-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.trust-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.trust-card:hover .trust-icon {
    background: rgba(139, 92, 246, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.trust-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

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

@media (max-width: 640px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-card {
        padding: 24px 20px;
    }
}

/* Trusted Section */
.trusted-section {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}

.trusted-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 32px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.trusted-label::before,
.trusted-label::after {
    content: '';
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--purple-500), transparent);
    animation: line-glow 3s ease-in-out infinite;
}

@keyframes line-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; box-shadow: 0 0 10px var(--purple-500); }
}

.marquee-wrapper {
    margin-bottom: 16px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-wrapper {
    margin-bottom: 16px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee-wrapper:last-child {
    margin-bottom: 0;
}

.marquee-wrapper.reverse .marquee {
    animation-direction: reverse;
}

.marquee {
    display: flex;
    animation: marquee 40s linear infinite;
    animation-play-state: var(--play-state);
}

.marquee-content {
    display: flex;
    gap: 16px;
    padding-right: 16px;
    flex-shrink: 0;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
    transition: all 0.2s;
}

.marquee-content span:hover {
    border-color: var(--purple-500);
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section Styles */
section[id] {
    scroll-margin-top: 80px;
}

.section-header {
    max-width: 640px;
    margin-bottom: 64px;
}

.section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid var(--purple-500);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-400);
    margin-bottom: 16px;
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.2);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Services Section */
.services {
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(139, 92, 246, 0.15), transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(139, 92, 246, 0.15);
}

.service-card:hover::after {
    opacity: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px currentColor;
}

.service-icon {
    transition: all 0.3s ease;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-cyan {
    background: rgba(6, 182, 212, 0.1);
    color: var(--cyan-400);
}

.icon-purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple-400);
}

.icon-coral {
    background: rgba(251, 113, 133, 0.1);
    color: var(--coral-400);
}

.popular-tag {
    position: absolute;
    top: 32px;
    right: 32px;
    padding: 4px 12px;
    background: rgba(6, 182, 212, 0.1);
    color: var(--cyan-400);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--purple-500);
    border-radius: 50%;
}

/* Integrations Section - New Creative Grid */
.integrations-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.integrations-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.int-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: int-orb-float 15s ease-in-out infinite;
}

.int-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    top: -200px;
    left: -100px;
}

.int-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.int-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes int-orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    margin-top: 50px;
}

.integration-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2);
}

.integration-card:hover::before {
    opacity: 1;
}

.integration-card span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.integration-card:hover span {
    color: var(--text-primary);
}

.int-logo {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.int-logo svg {
    width: 28px;
    height: 28px;
}

.integration-card:hover .int-logo {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.integration-card:focus {
    outline: 2px solid #8b5cf6;
    outline-offset: 2px;
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(139, 92, 246, 0.5);
}

.int-logo.more {
    font-size: 24px;
    font-weight: 700;
}

.more-tools {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
}

.more-tools:hover {
    background: rgba(139, 92, 246, 0.2);
}

@media (max-width: 1200px) {
    .integrations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .integrations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .integration-card {
        padding: 20px 15px;
    }
    
    .int-logo {
        width: 48px;
        height: 48px;
    }
    
    .int-logo svg {
        width: 24px;
        height: 24px;
    }
}

/* Tools Section (old marquee - keep for reference) */
.tools-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.tools-marquee {
    margin-top: 48px;
    overflow: hidden;
    position: relative;
}

.tools-marquee.reverse {
    margin-top: 24px;
}

.tools-marquee.reverse .tools-track {
    animation-direction: reverse;
}

.tools-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: tools-scroll 30s linear infinite;
    will-change: transform;
}

.tools-marquee {
    margin-top: 48px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    transition: all 0.2s;
}

.tool-item:hover {
    border-color: var(--gold-500);
    transform: translateY(-2px);
    background: var(--bg-elevated);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.15);
}

.tool-logo-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.tool-logo-svg {
    width: 22px;
    height: 22px;
}

.tool-item:hover .tool-logo-box {
    transform: scale(1.2) rotate(8deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.tool-initials {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: white;
    letter-spacing: 0.5px;
}

.tool-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    white-space: nowrap;
}

.tool-item:hover span {
    color: var(--text-primary);
}

@keyframes tools-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Problem Section */
.problem {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.problem-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: all 0.3s;
}

.problem-card:hover {
    border-color: var(--coral-500);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 0 30px rgba(244, 63, 94, 0.25),
        0 0 60px rgba(244, 63, 94, 0.1),
        0 15px 35px rgba(0, 0, 0, 0.4);
}

.problem-card:hover .problem-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 0 25px rgba(244, 63, 94, 0.4);
}

.problem-icon {
    transition: all 0.3s ease;
}

.problem-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: rgba(244, 63, 94, 0.1);
    color: var(--coral-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.problem-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Approach Section */
.approach {
    padding: 120px 0;
    background: var(--bg-primary);
}

/* Process Timeline */
.process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    padding-top: 20px;
}

.timeline-line {
    position: absolute;
    top: 50px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--purple-600), var(--gold-500), var(--cyan-500));
    box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

.timeline-step {
    position: relative;
    text-align: center;
}

.step-node {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.step-glow {
    position: absolute;
    inset: -5px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

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

.step-icon {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.step-content {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: left;
    transition: all 0.3s;
}

.step-content:hover {
    border-color: var(--gold-500);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 0 30px rgba(245, 158, 11, 0.2),
        0 0 60px rgba(245, 158, 11, 0.1),
        0 15px 35px rgba(0, 0, 0, 0.4);
}

.timeline-step:hover .step-icon {
    transform: scale(1.15);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.6);
}

.step-icon {
    transition: all 0.3s ease;
}

.step-week {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.1));
    color: var(--gold-400);
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.step-deliverables {
    list-style: none;
}

.step-deliverables li {
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 3px 0;
    padding-left: 16px;
    position: relative;
}

.step-deliverables li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold-500);
    border-radius: 50%;
}

/* Why Diagram */
.why-diagram {
    margin-bottom: 80px;
}

.diagram-header {
    text-align: center;
    margin-bottom: 48px;
}

.diagram-header h3 {
    font-size: 1.75rem;
}

.diagram-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.diagram-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: all 0.3s;
}

.diagram-item:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
}

.diagram-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.diagram-item h5 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.diagram-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Value Transformation */
.value-transformation {
    margin: 80px 0;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.value-transformation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.03) 0%, transparent 70%);
    animation: rotate-slow 30s linear infinite;
}

.transformation-container {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    position: relative;
    z-index: 1;
}

.transform-stage {
    flex: 1;
    max-width: 320px;
    padding: 40px 32px;
    background: var(--bg-card);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.before-stage {
    border: 2px solid rgba(244, 63, 94, 0.3);
    border-right: none;
    border-radius: 20px 0 0 20px;
    box-shadow: -10px 0 40px rgba(244, 63, 94, 0.1);
}

.after-stage {
    border: 2px solid rgba(245, 158, 11, 0.3);
    border-left: none;
    border-radius: 0 20px 20px 0;
    box-shadow: 10px 0 40px rgba(245, 158, 11, 0.1);
}

.transform-stage:hover {
    transform: translateY(-5px);
}

.before-stage:hover {
    box-shadow: -15px 5px 50px rgba(244, 63, 94, 0.2);
}

.after-stage:hover {
    box-shadow: 15px 5px 50px rgba(245, 158, 11, 0.2);
}

.stage-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.stage-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 63, 94, 0.1);
    color: var(--coral-400);
    box-shadow: 0 0 20px rgba(244, 63, 94, 0.2);
    animation: pulse-icon 3s ease-in-out infinite;
}

.stage-icon.success {
    background: rgba(245, 158, 11, 0.1);
    color: var(--gold-400);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.2);
}

@keyframes pulse-icon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.stage-header h4 {
    font-size: 1.4rem;
    font-weight: 600;
}

.pain-points, .gain-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pain-point, .gain-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--bg-elevated);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pain-point:hover, .gain-point:hover {
    transform: translateX(5px);
    background: rgba(139, 92, 246, 0.1);
}

.pain-dot {
    width: 10px;
    height: 10px;
    background: var(--coral-500);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.5);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.gain-check {
    width: 24px;
    height: 24px;
    background: var(--gold-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}

/* Transformation Bridge */
.transformation-bridge {
    width: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(180deg, rgba(244, 63, 94, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    border-left: 2px dashed rgba(139, 92, 246, 0.3);
    border-right: 2px dashed rgba(139, 92, 246, 0.3);
}

.bridge-line {
    position: absolute;
    top: 20%;
    bottom: 20%;
    width: 4px;
    background: linear-gradient(180deg, var(--coral-500) 0%, var(--gold-500) 100%);
    border-radius: 2px;
    overflow: hidden;
}

.bridge-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: flow-up 2s linear infinite;
}

@keyframes flow-up {
    0% { transform: translateY(100%); }
    100% { transform: translateY(-300%); }
}

.bridge-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.b-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 0 10px white;
    animation: particle-rise 3s linear infinite;
    opacity: 0;
}

.b-particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.b-particle:nth-child(2) { left: 40%; animation-delay: 0.6s; }
.b-particle:nth-child(3) { left: 60%; animation-delay: 1.2s; }
.b-particle:nth-child(4) { left: 80%; animation-delay: 1.8s; }
.b-particle:nth-child(5) { left: 50%; animation-delay: 2.4s; }

@keyframes particle-rise {
    0% { bottom: 0; opacity: 0; transform: scale(0.5); }
    10% { opacity: 1; transform: scale(1); }
    90% { opacity: 1; transform: scale(1); }
    100% { bottom: 100%; opacity: 0; transform: scale(0.5); }
}

.bridge-label {
    position: absolute;
    z-index: 10;
    background: var(--bg-card);
    padding: 8px 16px;
    border-radius: 100px;
    border: 2px solid var(--gold-500);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}

.label-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* How We Work Diagram */
.how-we-work {
    margin-top: 80px;
}

.work-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 40px 32px;
}

.work-step {
    text-align: center;
    flex: 1;
    padding: 20px 16px;
    background: var(--bg-elevated);
    border-radius: 12px;
}

.work-arrow {
    color: var(--purple-400);
    font-size: 1.5rem;
    font-weight: 700;
}

.work-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: white;
}

.work-step h5 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.work-step p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Why Choose Us Diagram */
.why-choose {
    margin-top: 80px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 28px 20px;
    text-align: center;
    transition: all 0.3s;
}

.why-card:hover {
    border-color: var(--purple-500);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 0 35px rgba(139, 92, 246, 0.3),
        0 0 70px rgba(139, 92, 246, 0.15),
        0 20px 40px rgba(0, 0, 0, 0.5);
}

.why-card:hover .why-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 0 25px currentColor;
}

.why-icon {
    transition: all 0.3s ease;
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.25rem;
}

.why-icon.purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--purple-400);
}

.why-icon.cyan {
    background: rgba(6, 182, 212, 0.1);
    color: var(--cyan-400);
}

.why-icon.coral {
    background: rgba(244, 63, 94, 0.1);
    color: var(--coral-400);
}

.why-card h5 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.why-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Comparison Section */
.comparison {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.comp-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.comp-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.comp-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 0 40px rgba(139, 92, 246, 0.2),
        0 0 80px rgba(139, 92, 246, 0.1),
        0 25px 50px rgba(0, 0, 0, 0.5);
}

.azimuth-card {
    border-color: var(--gold-500);
    box-shadow: 0 0 30px rgba(245, 158, 11, 0.15), 0 8px 30px rgba(0, 0, 0, 0.3);
}

.azimuth-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 0 50px rgba(245, 158, 11, 0.35),
        0 0 100px rgba(245, 158, 11, 0.2),
        0 25px 50px rgba(0, 0, 0, 0.5);
}

.comp-header {
    text-align: center;
    margin-bottom: 24px;
}

.comp-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: white;
}

.azimuth-icon {
    background: transparent;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.6), 0 0 60px rgba(245, 158, 11, 0.3);
    transition: all 0.3s ease;
}

.azimuth-icon:hover {
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.8), 0 0 100px rgba(245, 158, 11, 0.5);
    transform: scale(1.1);
}

.agency-icon {
    background: linear-gradient(135deg, var(--coral-500), var(--coral-400));
}

.diy-icon {
    background: linear-gradient(135deg, #6b7280, #4b5563);
}

.comp-header h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.comp-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: white;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.comp-features {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
}

.comp-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.comp-features li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--gold-400);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

.cross-icon {
    color: var(--coral-400);
    font-weight: 700;
}

.dash-icon {
    color: var(--text-muted);
    font-weight: 700;
}

.comp-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.comp-price {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.comp-cta {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
    transition: all 0.2s;
}

.comp-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.5);
}

/* Testimonials */
.testimonial {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.testimonials-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(19, 19, 26, 0.9), rgba(26, 26, 35, 0.9));
    border: 1px solid var(--border-default);
    border-radius: 24px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, var(--purple-500), var(--gold-500), var(--cyan-500));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.testimonial-card:hover::before,
.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 0 100px rgba(139, 92, 246, 0.4),
        0 0 200px rgba(245, 158, 11, 0.2),
        0 30px 80px rgba(0, 0, 0, 0.6);
    border-color: transparent;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.4) rotate(-10deg);
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.8);
    background: linear-gradient(135deg, var(--purple-500), var(--gold-500));
}

.testimonial-card:hover .quote-mark {
    animation: float-quote 1.5s ease-in-out infinite, scale-quote 2s ease-in-out infinite;
}

@keyframes float-quote {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

@keyframes scale-quote {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.15); }
}

.quote-mark {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
    font-size: 120px;
    color: var(--gold-500);
    opacity: 0.1;
    line-height: 1;
    text-shadow: 0 0 40px rgba(245, 158, 11, 0.4);
    transition: all 0.4s ease;
    pointer-events: none;
}

.quote {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.quote::before {
    content: '•';
    color: var(--purple-500);
    font-size: 1.5rem;
    margin-right: 8px;
    opacity: 0.3;
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-default);
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-500), var(--gold-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.author-info {
    text-align: left;
    flex: 1;
}

.name {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.testimonial-card:hover .name {
    color: var(--purple-400);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.role {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
}

.testimonial-card:hover .role {
    color: var(--gold-400);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 64px 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    position: relative;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow:
        0 0 80px rgba(139, 92, 246, 0.5),
        0 0 150px rgba(245, 158, 11, 0.3),
        0 25px 60px rgba(0, 0, 0, 0.5);
    border-color: var(--purple-500);
}

/* Floating animation for testimonial cards */
@keyframes float-card {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.testimonials-grid {
    animation: floatCards 6s ease-in-out infinite;
}

.testimonials-grid .testimonial-card:nth-child(1) {
    animation: float-card 6s ease-in-out infinite;
    animation-delay: 0s;
}

.testimonials-grid .testimonial-card:nth-child(2) {
    animation: float-card 6s ease-in-out infinite;
    animation-delay: 1s;
}

.testimonials-grid .testimonial-card:nth-child(3) {
    animation: float-card 6s ease-in-out infinite;
    animation-delay: 2s;
}

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

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    animation: testimonial-gradient 15s linear infinite;
}

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

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.3) rotate(-5deg);
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.8);
    background: linear-gradient(135deg, var(--purple-500), var(--gold-500));
}

.testimonial-card:hover .quote-mark {
    animation: float-quote 2s ease-in-out infinite, scale-quote 3s ease-in-out infinite;
}

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

@keyframes scale-quote {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

.author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border-default);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--purple-500), var(--gold-500));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.author-info {
    text-align: left;
}

.name {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2px;
    transition: color 0.3s ease;
}

.testimonial-card:hover .name {
    color: var(--purple-400);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.role {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
}

.testimonial-card:hover .role {
    color: var(--gold-400);
}

.quote-mark {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
    font-size: 140px;
    color: var(--gold-500);
    opacity: 0.15;
    line-height: 1;
    text-shadow: 0 0 40px rgba(245, 158, 11, 0.4);
    transition: all 0.4s ease;
    pointer-events: none;
}

.quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover .quote {
    color: var(--text-primary);
    transform: scale(1.02);
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
}

.author-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.author-info .name {
    font-weight: 600;
    color: var(--text-primary);
}

.author-info .role {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Subtle parallax effect for FAQ */
@keyframes floatFaq {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.faq {
    animation: floatFaq 8s ease-in-out infinite;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Floating particles for testimonial section */
.testimonials-grid {
    position: relative;
}

.testimonials-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(245, 158, 11, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-500), var(--gold-500), var(--cyan-400));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.faq-item:hover {
    border-color: var(--purple-500);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.15);
    transform: translateY(-2px);
}

.faq-item:hover::before {
    transform: scaleX(1);
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    cursor: pointer;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.toggle {
    width: 32px;
    height: 32px;
    background: var(--bg-elevated);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--cyan-400);
    transition: all 0.2s;
}

.faq-item[open] .toggle {
    background: var(--cyan-500);
    color: var(--bg-primary);
}

.answer {
    padding: 0 24px 24px;
    border-top: 1px solid var(--border-subtle);
}

.answer p {
    padding-top: 16px;
    color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #0f0f14 50%, #0a0a0f 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease-in-out infinite alternate;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.03) 0%, rgba(139, 92, 246, 0.03) 50%, rgba(245, 158, 11, 0.03) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Subtle gradient animation for contact section */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.contact-section .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.contact-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--purple-500);
    opacity: 0.3;
    animation: floatParticle 8s ease-in-out infinite;
    box-shadow: 0 0 10px var(--purple-500);
}

.contact-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.contact-particle:nth-child(2) {
    left: 30%;
    width: 6px;
    height: 6px;
    background: var(--gold-500);
    animation-delay: 2s;
    box-shadow: 0 0 15px var(--gold-500);
}

.contact-particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    box-shadow: 0 0 12px var(--purple-500);
}

.contact-particle:nth-child(4) {
    left: 70%;
    width: 5px;
    height: 5px;
    background: var(--cyan-500);
    animation-delay: 1s;
    box-shadow: 0 0 10px var(--cyan-500);
}

.contact-particle:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
    box-shadow: 0 0 15px var(--gold-500);
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-40px) translateX(-10px);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-20px) translateX(5px);
        opacity: 0.4;
    }
}

/* Dynamic cursor light effect */
.contact-section .cursor-light {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(6, 182, 212, 0.1) 40%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    mix-blend-mode: screen;
}

.contact-section .cursor-light.hovering {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, rgba(245, 158, 11, 0.1) 40%, transparent 70%);
}

/* Floating particles for contact section */
.contact-section .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.contact-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--purple-500);
    opacity: 0.3;
    animation: floatParticle 8s ease-in-out infinite;
}

.contact-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.contact-particle:nth-child(2) {
    left: 30%;
    width: 6px;
    height: 6px;
    background: var(--gold-500);
    animation-delay: 2s;
}

.contact-particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
}

.contact-particle:nth-child(4) {
    left: 70%;
    width: 5px;
    height: 5px;
    background: var(--cyan-500);
    animation-delay: 1s;
}

.contact-particle:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-40px) translateX(-10px);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-20px) translateX(5px);
        opacity: 0.4;
    }
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--purple-500), var(--gold-500));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--purple-500);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 60px rgba(139, 92, 246, 0.2);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card .contact-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(245, 158, 11, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--purple-400);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(245, 158, 11, 0.2));
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    color: var(--gold-400);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.contact-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--cyan-400);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.contact-link::after {
    content: '';
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan-400), var(--gold-400));
    margin-left: 8px;
    transition: width 0.3s ease;
}

.contact-card:hover .contact-link {
    color: var(--gold-400);
    transform: translateX(8px);
}

.contact-card:hover .contact-link::after {
    width: 0;
}

/* Magnetic button effect */
.contact-card {
    position: relative;
    overflow: hidden;
}

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

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

.contact-card .contact-icon {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contact-card:hover .contact-icon {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4), 0 0 60px rgba(245, 158, 11, 0.2);
}

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

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: var(--bg-primary);
}

.cta-box {
    text-align: center;
    padding: 80px 48px;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
    border: 1px solid var(--border-default);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(139, 92, 246, 0.1), inset 0 0 60px rgba(139, 92, 246, 0.05);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-500), var(--purple-500), var(--cyan-400), transparent);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-box > p {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
    color: var(--bg-primary);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.4), 0 4px 20px rgba(245, 158, 11, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.btn-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 0 50px rgba(245, 158, 11, 0.8), 0 10px 40px rgba(245, 158, 11, 0.5);
}

.btn-cta:active {
    transform: translateY(-2px) scale(1.02);
}

.cta-note {
    display: block;
    margin-top: 24px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

.footer-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid,
    .problem-grid,
    .diagram-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .transformation-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .transform-stage {
        max-width: 100%;
        border-radius: 20px !important;
        border: 2px solid var(--border-subtle) !important;
    }
    
    .transformation-bridge {
        width: 100%;
        height: 80px;
        flex-direction: row;
        border-left: none;
        border-right: none;
        border-top: 2px dashed rgba(139, 92, 246, 0.3);
        border-bottom: 2px dashed rgba(139, 92, 246, 0.3);
    }
    
    .bridge-line {
        width: 100%;
        height: 4px;
        top: auto;
        bottom: auto;
        left: 10%;
        right: 10%;
        background: linear-gradient(90deg, var(--coral-500) 0%, var(--gold-500) 100%);
    }
    
    .bridge-glow {
        width: 30px;
        height: 100%;
        animation: flow-across 2s linear infinite;
    }
    
    @keyframes flow-across {
        0% { transform: translateX(-100%); }
        100% { transform: translateX(300%); }
    }
    
    .bridge-particles {
        display: none;
    }
    
    .process-diagram {
        flex-direction: column;
    }
    
    .process-step {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
    }
    
    .process-step:last-child {
        border-bottom: none;
    }
    
    .step-arrow {
        display: none !important;
    }
    
    .comparison-cards {
        grid-template-columns: 1fr;
    }
    
    .azimuth-card {
        order: -1;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-line {
        display: none;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .flow-container {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .work-flow {
        flex-direction: column;
        gap: 32px;
    }
    
    .work-arrow {
        transform: rotate(90deg);
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 20px 24px;
        flex-direction: column;
        gap: 16px;
        border-bottom: 1px solid var(--border-default);
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid var(--border-subtle);
        transition: all 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a:focus {
        padding-left: 10px;
        color: var(--purple-400);
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .mobile-menu-btn span {
        transition: all 0.3s ease;
    }

    .mobile-menu-btn.active span:first-child {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:last-child {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-cta {
        display: none;
    }

    .nav-links.active + .nav-cta,
    .nav-container:has(.nav-links.active) .nav-cta {
        display: inline-flex;
        margin-top: 16px;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-cta {
        display: none;
    }

    .nav-links.active + .nav-cta,
    .nav-container:has(.nav-links.active) .nav-cta {
        display: inline-flex;
        margin-top: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-line {
        display: none;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .services-grid,
    .problem-grid,
    .diagram-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-flow {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        padding: 32px 24px;
    }
    
    .work-arrow {
        display: none;
    }

    .cta-box {
        padding: 48px 24px;
    }
    
    .cta-box h2 {
        font-size: 1.75rem;
    }
    
    .value-flow {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .quote {
        font-size: 1.125rem;
    }
    
    .testimonial-card {
        padding: 48px 24px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline,
    .why-grid,
    .work-flow {
        grid-template-columns: 1fr;
    }
    
    .flow-container {
        flex-direction: column;
    }
    
    .value-flow {
        padding: 24px 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-500));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6);
}

.back-to-top:active {
    transform: translateY(-1px) scale(1.05);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* New Movement Animations */
@keyframes wave {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes sway {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

@keyframes pulse-soft {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shimmer-slide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.hero-cta {
    animation: wave 2s ease-in-out infinite;
}

.service-card:hover {
    animation: pulse-soft 0.5s ease-in-out;
}

.gradient-text {
    background: linear-gradient(90deg, #e9d5ff 0%, #fcd34d 50%, #e9d5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.shimmer-effect {
    position: relative;
    overflow: hidden;
}

.shimmer-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmer-slide 2s infinite;
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

.sway-element {
    animation: sway 4s ease-in-out infinite;
}

.testimonial-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
}

.contact-card {
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px) scale(1.03);
}

.process-step {
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: scale(1.02);
    background: rgba(139, 92, 246, 0.1);
}

.tool-item {
    transition: all 0.3s ease;
}

.tool-item:hover {
    transform: scale(1.1) rotate(5deg);
}

.badge-pulse {
    animation: border-rotate 3s linear infinite;
}

/* Scroll-triggered animations */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

/* Parallax effect for hero background */
.hero {
    position: relative;
    overflow: hidden;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    transform: translateZ(0);
    will-change: transform;
}

.hero-bg-grid.particles {
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(139, 92, 246, 0.3), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(245, 158, 11, 0.3), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(6, 182, 212, 0.3), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(251, 191, 36, 0.2), transparent);
}

/* Floating orbs for depth */
.hero-orbs {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

.orb-1 {
    top: -200px;
    right: -100px;
    background: var(--purple-500);
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    bottom: -300px;
    left: -200px;
    background: var(--cyan-500);
    animation: float 10s ease-in-out infinite reverse;
}

.orb-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: var(--gold-500);
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    33% {
        transform: translateY(-20px) scale(1.05);
    }
    66% {
        transform: translateY(10px) scale(0.95);
    }
}

/* Holographic Card Effect */
.holo-card {
    position: relative;
    overflow: hidden;
}

.holo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 20%, rgba(139, 92, 246, 0.3) 40%, rgba(245, 158, 11, 0.3) 60%, transparent 80%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

.holo-card:hover::before {
    transform: translateX(100%);
}

.holo-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.holo-card:hover::after {
    opacity: 1;
}

/* Glass morphism cards */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.15);
}

/* Animated gradient border */
.gradient-border {
    position: relative;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, #8b5cf6, #f59e0b, #06b6d4, #8b5cf6);
    background-size: 300% 100%;
    border-radius: inherit;
    z-index: -1;
    animation: gradient-flow 3s linear infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* Tilt card effect */
.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.tilt-card:hover {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg);
}

/* Parallax background sections */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -50px;
    background-size: cover;
    background-position: center;
    transform: translateZ(-1px) scale(2);
    opacity: 0.3;
    filter: blur(30px);
}

/* Interactive hover glow */
.glow-hover {
    position: relative;
}

.glow-hover::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.6), transparent 70%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(10px);
}

.glow-hover:hover::after {
    opacity: 1;
}

/* Animated checklist */
.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: check-pop 0.5s ease-out;
}

@keyframes check-pop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Text reveal animation */
.text-reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.text-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0f0f1a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #8b5cf6, #f59e0b);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #a78bfa, #fbbf24);
}

/* Noise texture overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 9998;
}

/* Parallax sections */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: -50px;
    background-size: cover;
    background-position: center;
    transform: translateZ(-1px) scale(2);
    opacity: 0.15;
    filter: blur(40px);
    pointer-events: none;
    will-change: transform;
}

/* Subtle parallax on scroll for sections */
section {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Animated background mesh */
.mesh-bg {
    position: fixed;
    inset: 0;
    background: 
        radial-gradient(at 40% 20%, rgba(139, 92, 246, 0.15) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(245, 158, 11, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(6, 182, 212, 0.1) 0px, transparent 50%),
        radial-gradient(at 80% 50%, rgba(139, 92, 246, 0.1) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(245, 158, 11, 0.1) 0px, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: mesh-move 20s ease-in-out infinite;
}

@keyframes mesh-move {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(2deg); }
}

/* Mouse Follower Orb Effect */
.mouse-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, rgba(245, 158, 11, 0.3) 50%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4), 0 0 40px rgba(245, 158, 11, 0.2);
    mix-blend-mode: screen;
    animation: orb-pulse 2s ease-in-out infinite;
}

.mouse-follower::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(139, 92, 246, 0.5);
    animation: orb-ring 2s ease-in-out infinite;
}

@keyframes orb-pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes orb-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.mouse-follower.hovered {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.7) 0%, rgba(139, 92, 246, 0.4) 50%, transparent 70%);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.6), 0 0 60px rgba(139, 92, 246, 0.4);
}