@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700;900&family=JetBrains+Mono:wght@400;500&display=swap');

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

:root {
    --gray-950: #030712;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --purple-400: #a78bfa;
    --purple-500: #8b5cf6;
    --purple-600: #7c3aed;
    --pink-400: #f472b6;
    --green-400: #4ade80;
    --green-500: #22c55e;
    --teal-400: #2dd4bf;
    --teal-600: #0d9488;
    --orange-500: #f97316;
    --red-600: #dc2626;
    --yellow-400: #facc15;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
}

body {
    font-family: var(--font-sans);
    background-color: var(--gray-950);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 400;
    letter-spacing: -0.011em;
}

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

/* Notification Bar */
.notification-bar {
    background: linear-gradient(90deg, var(--blue-600), var(--purple-600));
    padding: 0.75rem 1rem;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.notification-bar::before {
    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 3s infinite;
}

@keyframes shimmer {
    to { left: 100%; }
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.notification-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.notification-cta {
    background: white;
    color: var(--blue-600);
    padding: 0.25rem 1rem;
    border: none;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.notification-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.notification-cta i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.notification-cta:hover i {
    transform: translateX(2px);
}

/* Navigation - adjusted for notification bar */
nav {
    position: fixed;
    width: 100%;
    z-index: 50;
    backdrop-filter: blur(12px);
    background-color: rgba(17, 24, 39, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

nav.scrolled {
    top: 0;
    background-color: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    cursor: pointer;
    border: none;
    background: none;
    font-size: inherit;
    position: relative;
}

.logo-mark {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark svg {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.logo:hover .logo-mark svg {
    transform: rotate(180deg) scale(1.1);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

.logo-text-main {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    position: relative;
    overflow: hidden;
}

.logo-text-main::after {
    content: 'AEJ';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, var(--blue-400), var(--purple-400), var(--pink-400));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.logo:hover .logo-text-main::after {
    transform: translateY(0);
}

.logo-text-sub {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-400);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.nav-link {
    position: relative;
    color: white;
    text-decoration: none;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--blue-400);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--blue-500), var(--purple-600));
    transition: width 0.3s;
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--blue-500), var(--purple-600));
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.nav-cta i {
    font-size: 0.75rem;
}

.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 0.75rem 0;
    color: white;
    background: none;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.mobile-menu button::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--blue-400), var(--purple-400));
    transition: width 0.3s ease;
}

.mobile-menu button:hover {
    color: var(--blue-400);
    transform: translateX(5px);
}

.mobile-menu button:hover::after {
    width: 100%;
}

.mobile-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, var(--blue-500), var(--purple-600));
    color: white;
    text-decoration: none;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    justify-content: center;
}

.mobile-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
    .menu-toggle {
        display: none;
    }
}

/* Background Animation */
.animated-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(147, 51, 234, 0.2), rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: screen;
    animation: pulse 4s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(100, 130, 246, 0.1), transparent);
    left: 20%;
    top: -10%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(150, 160, 246, 0.1), transparent);
    left: 50%;
    top: 10%;
    animation-delay: 1s;
}

.orb-3 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(200, 190, 246, 0.1), transparent);
    left: 80%;
    top: 30%;
    animation-delay: 2s;
}

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

/* Floating Elements */
.floating-element {
    position: absolute;
    font-size: 1.5rem;
    color: var(--blue-400);
    opacity: 0.1;
    animation: floatElement 20s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.element-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 10s;
}

.element-4 {
    top: 40%;
    right: 25%;
    animation-delay: 15s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(0) rotate(180deg) scale(1);
    }
    75% {
        transform: translateY(30px) rotate(270deg) scale(0.9);
    }
}

/* Morphing Blob Animation */
.morphing-blob {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, var(--blue-500), var(--purple-500));
    opacity: 0.1;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite;
}

.blob-1 {
    top: -200px;
    right: -200px;
}

.blob-2 {
    bottom: -200px;
    left: -200px;
    animation-delay: 4s;
}

@keyframes morph {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg);
    }
    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
        transform: rotate(120deg);
    }
    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
        transform: rotate(240deg);
    }
}

/* Animated Grid Background */
.animated-grid {
    position: absolute;
    inset: 0;
    opacity: 0.03;
}

.grid-line {
    position: absolute;
    background: linear-gradient(to right, transparent, var(--blue-400), transparent);
    overflow: hidden;
}

.grid-line:nth-child(1),
.grid-line:nth-child(2) {
    width: 1px;
    height: 100%;
    top: 0;
}

.grid-line:nth-child(1) {
    left: 25%;
    animation: gridPulse 4s ease-in-out infinite;
}

.grid-line:nth-child(2) {
    left: 75%;
    animation: gridPulse 4s ease-in-out infinite 2s;
}

.grid-line:nth-child(3),
.grid-line:nth-child(4) {
    width: 100%;
    height: 1px;
    left: 0;
}

.grid-line:nth-child(3) {
    top: 33%;
    animation: gridPulseH 4s ease-in-out infinite 1s;
}

.grid-line:nth-child(4) {
    top: 66%;
    animation: gridPulseH 4s ease-in-out infinite 3s;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 2rem;
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(to bottom right, var(--gray-900), var(--gray-800));
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Hero image mobile optimization */
@media (max-width: 768px) {
    .hero-bg img {
        object-position: center center;
    }

    /* Slightly darker overlay on mobile for better text readability */
    .hero-bg div:first-of-type {
        background: linear-gradient(to bottom, rgba(3, 7, 18, 0.6) 0%, rgba(3, 7, 18, 0.85) 50%, rgba(3, 7, 18, 0.98) 100%) !important;
    }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Text shadow for better readability on any background */
.hero-content h1,
.hero-content p,
.hero-content .badge {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 4px 8px rgba(0, 0, 0, 0.3), 0 8px 16px rgba(0, 0, 0, 0.2);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    animation: slideInDown 1s ease-out;
}

.badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--blue-400), var(--purple-400), var(--pink-400), var(--blue-400));
    border-radius: 9999px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    background-size: 300% 300%;
    animation: gradientRotate 4s ease infinite;
}

.badge:hover::before {
    opacity: 0.5;
}

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

/* Page Loader */
.loader {
    position: fixed;
    inset: 0;
    background: var(--gray-950);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: 60px;
    height: 60px;
    animation: loaderRotate 2s linear infinite;
}

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

.loader-text {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-400);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

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

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

.badge i {
    color: var(--yellow-400);
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        filter: brightness(1.3);
    }
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.gradient-text {
    background: linear-gradient(to right, var(--blue-400), var(--purple-400), var(--pink-400));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

/* Animated gradient text */
.gradient-text-animated {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

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

.tagline {
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 300;
}

.tagline-animated {
    display: inline-block;
    opacity: 0;
    animation: fadeInOut 2s ease-in-out infinite;
}

/* Reveal animation for scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animations */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

.hero-title {
    animation: fadeInScale 1s ease-out;
}

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

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
        filter: blur(5px);
    }
    10%, 90% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

/* Text Glitch Effect */
.glitch {
    position: relative;
    color: white;
    animation: glitch 2s ease-in-out infinite alternate-reverse;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    animation: glitch-1 0.5s ease-in-out infinite alternate-reverse;
    color: var(--blue-400);
    z-index: -1;
}

.glitch::after {
    animation: glitch-2 0.5s ease-in-out infinite alternate-reverse;
    color: var(--purple-400);
    z-index: -1;
}

@keyframes glitch {
    0% { text-shadow: 0.05em 0 0 var(--blue-400), -0.05em -0.025em 0 var(--purple-400), 0.025em 0.05em 0 var(--pink-400); }
    14% { text-shadow: 0.05em 0 0 var(--blue-400), -0.05em -0.025em 0 var(--purple-400), 0.025em 0.05em 0 var(--pink-400); }
    15% { text-shadow: -0.05em -0.025em 0 var(--blue-400), 0.025em 0.025em 0 var(--purple-400), -0.05em -0.05em 0 var(--pink-400); }
    49% { text-shadow: -0.05em -0.025em 0 var(--blue-400), 0.025em 0.025em 0 var(--purple-400), -0.05em -0.05em 0 var(--pink-400); }
    50% { text-shadow: 0.025em 0.05em 0 var(--blue-400), 0.05em 0 0 var(--purple-400), 0 -0.05em 0 var(--pink-400); }
    99% { text-shadow: 0.025em 0.05em 0 var(--blue-400), 0.05em 0 0 var(--purple-400), 0 -0.05em 0 var(--pink-400); }
    100% { text-shadow: -0.025em 0 0 var(--blue-400), -0.025em -0.025em 0 var(--purple-400), -0.025em -0.05em 0 var(--pink-400); }
}

@keyframes glitch-1 {
    0% { clip: rect(44px, 9999px, 56px, 0); transform: translate(0); }
    20% { clip: rect(24px, 9999px, 90px, 0); transform: translate(-2px, -2px); }
    40% { clip: rect(4px, 9999px, 43px, 0); transform: translate(2px, 2px); }
    60% { clip: rect(85px, 9999px, 22px, 0); transform: translate(-1px, 1px); }
    80% { clip: rect(12px, 9999px, 78px, 0); transform: translate(0px, -1px); }
    100% { clip: rect(32px, 9999px, 56px, 0); transform: translate(0); }
}

@keyframes glitch-2 {
    0% { clip: rect(65px, 9999px, 99px, 0); transform: translate(0); }
    20% { clip: rect(79px, 9999px, 86px, 0); transform: translate(2px, 2px); }
    40% { clip: rect(25px, 9999px, 78px, 0); transform: translate(-2px, -2px); }
    60% { clip: rect(67px, 9999px, 61px, 0); transform: translate(1px, -1px); }
    80% { clip: rect(31px, 9999px, 95px, 0); transform: translate(-1px, 0px); }
    100% { clip: rect(11px, 9999px, 45px, 0); transform: translate(0); }
}

.hero-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--gray-300);
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeInUp 1s ease-out 0.2s both;
}

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

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

/* Magnetic Button Effect */
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue-500), var(--purple-600));
    color: white;
    position: relative;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--purple-600), var(--pink-600));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

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

.btn-primary:hover i {
    transform: translateX(4px);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.btn-primary:active::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    to {
        transform: translate(-50%, -50%) scale(40);
        opacity: 0;
    }
}

/* Service Cards - Dynamic Mouse Position Effect */
.service-card::after {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(45deg, var(--blue-400), transparent, var(--purple-400));
    border-radius: 9999px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-secondary:hover::after {
    opacity: 0.5;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--blue-400), var(--purple-400));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.25rem;
}

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--gray-600), transparent);
}

@media (max-width: 640px) {
    .hero-stats {
        gap: 1.5rem;
    }
    .stat-number {
        font-size: 1.5rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInBounce 1s ease-out 0.6s both, bounce 2s ease-in-out 1.6s infinite;
}

@keyframes fadeInBounce {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-indicator-inner {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.75rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    animation: scroll 1.5s ease-in-out infinite alternate;
}

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

@keyframes scroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(5px); }
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

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

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--blue-400), var(--purple-400));
    border-radius: 9999px;
    animation: lineGrow 1s ease-out forwards;
    opacity: 0;
}

.section-header.active::after {
    opacity: 1;
}

@keyframes lineGrow {
    from { width: 0; }
    to { width: 60px; }
}

/* Text Reveal Animation */
.text-reveal {
    overflow: hidden;
    position: relative;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    animation: revealText 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes revealText {
    to { transform: translateY(0); }
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    font-family: var(--font-serif);
}

h3 {
    font-weight: 600;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.section-description {
    font-size: 1.25rem;
    color: var(--gray-400);
    max-width: 42rem;
    margin: 0 auto;
}

/* Service Cards */
.services-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05));
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(59, 130, 246, 0.05) 60deg, transparent 120deg);
    animation: overviewRotate 30s linear infinite;
}

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

.overview-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.overview-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    border-radius: 1rem;
    font-size: 1.5rem;
    color: var(--blue-400);
    transition: all 0.3s ease;
}

.overview-item:hover .overview-icon {
    transform: translateY(-5px) scale(1.1);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
}

.overview-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.overview-item p {
    font-size: 0.875rem;
    color: var(--gray-400);
}

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

.service-card {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(4px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, rgba(147, 51, 234, 0.4) 30%, rgba(244, 114, 182, 0.2) 60%, transparent 80%);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, transparent 40%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.1) 55%, transparent 60%, transparent 100%);
    transform: translateX(0);
    transition: transform 0.8s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.service-card:hover::after {
    transform: translateX(50%);
}

.service-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    background-color: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow:
            0 20px 40px rgba(59, 130, 246, 0.2),
            0 0 0 1px rgba(59, 130, 246, 0.1) inset;
}

.service-icon {
    display: inline-flex;
    padding: 0.75rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.icon-blue { background: linear-gradient(135deg, var(--blue-500), var(--purple-600)); }
.icon-green { background: linear-gradient(135deg, var(--green-500), var(--teal-600)); }
.icon-orange { background: linear-gradient(135deg, var(--orange-500), var(--red-600)); }
.icon-purple { background: linear-gradient(135deg, var(--purple-500), var(--pink-400)); }
.icon-teal { background: linear-gradient(135deg, var(--teal-400), var(--blue-400)); }
.icon-pink { background: linear-gradient(135deg, var(--pink-400), var(--purple-400)); }

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.service-description {
    color: var(--gray-400);
    margin-bottom: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
}

.feature-tag {
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.service-card:hover .feature-tag {
    border-color: rgba(255, 255, 255, 0.2);
}

.service-card:hover .feature-tag:hover::after {
    width: 100px;
    height: 100px;
}

/* Tech Stack */
.tech-showcase {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.tech-showcase::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: conic-gradient(from 180deg at 50% 50%, transparent 0deg, rgba(59, 130, 246, 0.1) 90deg, transparent 180deg);
    animation: techRotate 20s linear infinite;
}

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

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.tech-category h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    position: relative;
    cursor: default;
}

.tech-item::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(to right, var(--blue-400), var(--purple-400));
    transition: width 0.3s ease;
}

.tech-item:hover {
    color: white;
    transform: translateX(5px);
}

.tech-item:hover::after {
    width: 100%;
}

.tech-logo {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.tech-logo svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 4px rgba(96, 165, 250, 0.3));
}

.tech-item:hover .tech-logo {
    transform: scale(1.3) rotate(360deg);
}

/* Remove synchronized animation - only individual hovers now */

.specialization-box {
    margin-top: 2rem;
    padding: 1rem;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.specialization-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--blue-500), var(--purple-500), var(--pink-400), var(--blue-500));
    border-radius: 0.5rem;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
    background-size: 300% 300%;
    animation: gradientRotate 3s ease infinite;
}

.specialization-box:hover::before {
    opacity: 0.3;
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-line {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 80px);
    background: linear-gradient(to bottom, var(--blue-400), var(--purple-400));
    opacity: 0.3;
}

.process-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--blue-400), transparent);
    animation: flowDown 3s linear infinite;
}

@keyframes flowDown {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

.process-step {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-step:nth-child(even) .process-content {
    text-align: right;
}

.process-number {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    border: 2px solid var(--blue-400);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-400);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--blue-500), var(--purple-600));
    color: white;
    border-color: transparent;
}

.process-content {
    flex: 1;
}

.process-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.process-content p {
    color: var(--gray-400);
}

@media (max-width: 768px) {
    .process-line {
        left: 40px;
    }

    .process-step,
    .process-step:nth-child(even) {
        flex-direction: row;
    }

    .process-step:nth-child(even) .process-content {
        text-align: left;
    }
}

/* Case Studies */
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.case-study-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    height: 20rem;
    group: true;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.case-study-card:hover {
    transform: translateY(-10px) scale(1.02) rotateX(5deg);
    box-shadow:
            0 20px 40px rgba(0, 0, 0, 0.3),
            0 0 20px rgba(59, 130, 246, 0.2);
}

.case-study-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--gray-800), var(--gray-900));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: transform 0.4s ease;
}

.case-study-card:hover .case-study-image {
    transform: scale(1.1);
}

.case-study-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    background: linear-gradient(to top, var(--gray-900), rgba(17, 24, 39, 0.8), transparent);
    transition: all 0.3s ease;
}

.case-study-card:hover .case-study-content {
    background: linear-gradient(to top, var(--gray-900), rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.3));
}

.case-study-category {
    font-size: 0.875rem;
    color: var(--blue-400);
    margin-bottom: 0.5rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.case-study-card:hover .case-study-category {
    opacity: 1;
    transform: translateY(-2px);
}

.case-study-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    transition: all 0.3s ease;
}

.case-study-card:hover .case-study-title {
    transform: translateY(-2px);
}

.case-study-impact {
    font-size: 0.875rem;
    color: var(--gray-300);
    margin-bottom: 1rem;
    font-weight: 500;
}

.case-study-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-400);
    transition: all 0.3s ease;
    position: relative;
}

.case-study-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--blue-400);
    transition: width 0.3s ease;
}

.case-study-card:hover .case-study-link {
    color: var(--blue-400);
    transform: translateX(5px);
}

.case-study-card:hover .case-study-link::after {
    width: 100%;
}

.case-study-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-study-card:hover .case-study-overlay {
    opacity: 1;
}

/* Client Cards */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.client-card {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

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

.client-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.client-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.client-icon {
    font-size: 2rem;
    color: var(--blue-400);
    transition: all 0.3s ease;
}

.client-card:hover .client-icon {
    transform: scale(1.1) rotate(5deg);
}

.client-arrow {
    color: var(--gray-500);
    transition: all 0.3s ease;
}

.client-card:hover .client-arrow {
    color: var(--blue-400);
    transform: translateX(8px);
}

.client-card h3 {
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.client-card:hover h3 {
    color: var(--blue-400);
}

/* About Section */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
}

.feature-icon-wrapper {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-feature p {
    color: var(--gray-400);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
}

.cta-container {
    position: relative;
    padding: 3rem;
    border-radius: 1.5rem;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(59, 130, 246, 0.2), rgba(147, 51, 234, 0.2));
    backdrop-filter: blur(12px);
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, rgba(59, 130, 246, 0.1), transparent, rgba(147, 51, 234, 0.1));
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    margin-top: 2rem;
    color: var(--gray-400);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--blue-400);
}

.contact-item p {
    margin: 0;
    font-size: 0.875rem;
}

/* Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--blue-400);
    border-radius: 50%;
    opacity: 0.5;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation: particleFloat 15s linear infinite;
}

.particle-2 {
    top: 60%;
    right: 20%;
    animation: particleFloat 20s linear infinite reverse;
}

.particle-3 {
    bottom: 20%;
    left: 30%;
    animation: particleFloat 18s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translate(0, 0);
    }
    33% {
        transform: translate(100px, -100px);
    }
    66% {
        transform: translate(-100px, 100px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Service Type Animation */
.service-type {
    display: inline-block;
    transition: opacity 0.3s ease;
    min-width: 150px;
    text-align: center;
}

/* Testimonial Background Pattern */
.testimonial-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
    animation: patternShift 20s ease-in-out infinite;
}

@keyframes patternShift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, 10px) scale(1.1); }
    66% { transform: translate(20px, -10px) scale(0.9); }
}

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

.testimonial-card {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.06));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 6rem;
    font-family: var(--font-serif);
    color: var(--blue-400);
    opacity: 0.1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
    color: var(--yellow-400);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.author-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray-400);
}

/* Footer */
footer {
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(to bottom, transparent, rgba(3, 7, 18, 0.5));
}

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

.footer-text {
    color: var(--gray-400);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* Custom selection color */
::selection {
    background: rgba(59, 130, 246, 0.3);
    color: white;
}

/* Utility Classes */
.text-blue-400 { color: var(--blue-400); }
.text-purple-400 { color: var(--purple-400); }
.text-pink-400 { color: var(--pink-400); }
.text-green-400 { color: var(--green-400); }
.text-teal-400 { color: var(--teal-400); }
.text-orange-400 { color: var(--orange-400); }
.text-red-400 { color: var(--red-400); }

.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }

.mx-auto { margin-left: auto; margin-right: auto; }
.container { max-width: 1200px; }