:root {
    --primary-violet: #8b5cf6;
    --primary-purple: #a855f7;
    --accent-cyan: #06b6d4;
    --accent-cyan-light: #67e8f9;
    --bg-dark: #0f0f23;
    --bg-card: #1a1a2e;
    --bg-card-hover: #16213e;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;
    --border: #334155;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
    font-feature-settings: 'kern' 1, 'liga' 1;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-violet) 0%, var(--primary-purple) 50%, var(--accent-cyan) 100%);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-violet), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.section {
    padding: 4rem 0;
}

.card {
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    contain: layout style;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.card:hover {
    background: rgba(26, 26, 46, 0.8);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 
        0 20px 40px rgba(139, 92, 246, 0.15),
        0 0 0 1px rgba(139, 92, 246, 0.1);
}

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

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.025em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-violet), var(--accent-cyan));
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
}

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

.btn-primary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.4);
    transform: translateY(-3px) scale(1.02);
}

/* Accessible focus states */
*:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
}

/* Link focus states */
a:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 2px;
    border-radius: 4px;
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

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

.hero p {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Abstract Background Shapes */
.bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.08;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: linear-gradient(45deg, var(--primary-violet), var(--accent-cyan));
    transition: transform 0.3s ease-out;
    transform: translateZ(0);
    contain: layout style paint;
}

/* Data Point Effects */
.sparkle {
    position: fixed;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transform: translateZ(0);
    contain: layout style paint;
}

.sparkle::before {
    content: '⬢';
    color: var(--accent-cyan);
    font-size: 10px;
    text-shadow: 0 0 8px currentColor;
    animation: data-pulse 2s ease-in-out infinite;
}

.sparkle::after {
    content: '⬡';
    position: absolute;
    top: -4px;
    left: 6px;
    color: #ff6b35;
    font-size: 6px;
    text-shadow: 0 0 6px currentColor;
    animation: data-pulse 2s ease-in-out infinite 0.5s;
}

/* Particle Network for Page Load */
.network-particle {
    position: fixed;
    pointer-events: none;
    z-index: 5;
    will-change: transform, opacity;
}

.particle-connection {
    position: fixed;
    pointer-events: none;
    z-index: 4;
    will-change: transform, opacity;
}

.enhanced-sparkle {
    z-index: 10;
}

.enhanced-sparkle::before {
    content: '⬢';
    color: var(--accent-cyan);
    font-size: 14px;
    text-shadow: 0 0 12px currentColor;
    animation: none;
    will-change: transform, opacity;
}

.enhanced-sparkle::after {
    content: '⬡';
    position: absolute;
    top: -6px;
    left: 10px;
    color: var(--primary-violet);
    font-size: 10px;
    text-shadow: 
        0 0 10px currentColor,
        0 0 20px currentColor,
        0 0 30px rgba(139, 92, 246, 0.6);
    animation: none;
}

/* Connection Lines */
.connection-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), transparent);
    opacity: 0;
    animation: data-flow 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.connection-line:nth-child(1) {
    top: 25%;
    left: 20%;
    width: 300px;
    transform: rotate(15deg);
    animation-delay: 0s;
}

.connection-line:nth-child(2) {
    top: 45%;
    right: 15%;
    width: 250px;
    transform: rotate(-25deg);
    animation-delay: 1.5s;
}

.connection-line:nth-child(3) {
    bottom: 30%;
    left: 30%;
    width: 200px;
    transform: rotate(45deg);
    animation-delay: 3s;
}

/* Cleaned Technical Background */
.nebula {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 55%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(168, 85, 247, 0.04) 0%, transparent 45%);
    animation: stable-analysis 45s ease-in-out infinite;
    filter: blur(1.5px);
    transition: opacity 0.3s ease;
}

.nebula:hover {
    opacity: 1.1;
}

/* Subtle Hero Grid - No Edge Artifacts */
.hero::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.04) 0%, transparent 40%);
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
    animation: gentle-pulse 20s ease-in-out infinite;
    border-radius: 20px;
}

@keyframes stable-analysis {
    0%, 100% { 
        background: 
            radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 55%),
            radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 40% 40%, rgba(168, 85, 247, 0.04) 0%, transparent 45%);
    }
    50% {
        background: 
            radial-gradient(circle at 25% 75%, rgba(139, 92, 246, 0.05) 0%, transparent 55%),
            radial-gradient(circle at 75% 25%, rgba(6, 182, 212, 0.07) 0%, transparent 50%),
            radial-gradient(circle at 45% 45%, rgba(168, 85, 247, 0.05) 0%, transparent 45%);
    }
}

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

/* Futuristic Abstract Shapes */
.shape-1 {
    top: 12%;
    left: 6%;
    width: 280px;
    height: 280px;
    background: 
        conic-gradient(from 45deg, var(--accent-cyan), #ff6b35, var(--accent-cyan), #ff6b35),
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.2) 0%, transparent 40%);
    clip-path: polygon(50% 0%, 85% 15%, 100% 50%, 85% 85%, 50% 100%, 15% 85%, 0% 50%, 15% 15%);
    animation: smooth-rotate 45s linear infinite;
    filter: blur(0.8px) drop-shadow(0 0 25px rgba(6, 182, 212, 0.4));
    opacity: 0.15;
    position: relative;
    will-change: transform, opacity;
}

.shape-1:hover {
    filter: blur(0.4px) drop-shadow(0 0 30px rgba(6, 182, 212, 0.6));
    opacity: 0.25;
    transform: scale(1.02);
}

.shape-1::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 60%;
    background: 
        radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 30% 70%, rgba(255, 107, 53, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: smooth-float 35s ease-in-out infinite;
    will-change: transform, opacity;
}

.shape-2 {
    top: 60%;
    right: 12%;
    width: 160px;
    height: 160px;
    background: 
        radial-gradient(ellipse at center, var(--accent-cyan) 0%, transparent 70%),
        linear-gradient(45deg, #ff6b35, var(--accent-cyan-light)),
        repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(6, 182, 212, 0.1) 45deg, transparent 90deg);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 95% 40%, 100% 60%, 80% 100%, 20% 100%, 0% 80%, 5% 60%, 0% 40%);
    animation: smooth-float 40s ease-in-out infinite;
    opacity: 0.12;
    position: relative;
    will-change: transform, opacity;
}

.shape-2::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 107, 53, 0.15) 10px,
        rgba(255, 107, 53, 0.15) 12px
    );
    animation: smooth-drift 50s ease-in-out infinite;
}

.shape-3 {
    bottom: 25%;
    left: 15%;
    width: 140px;
    height: 140px;
    background: conic-gradient(from 180deg, #ff6b35, var(--accent-cyan), #ff6b35, var(--accent-cyan));
    clip-path: polygon(50% 0%, 75% 25%, 100% 50%, 75% 75%, 50% 100%, 25% 75%, 0% 50%, 25% 25%);
    animation: smooth-drift 35s ease-in-out infinite;
    filter: blur(0.5px);
    opacity: 0.15;
    will-change: transform, opacity;
}

.shape-4 {
    top: 35%;
    left: 75%;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent-cyan) 0%, transparent 50%, #ff6b35 100%);
    clip-path: polygon(30% 0%, 70% 0%, 90% 30%, 100% 60%, 70% 100%, 30% 100%, 10% 70%, 0% 40%);
    animation: smooth-float 28s ease-in-out infinite;
    opacity: 0.18;
    will-change: transform, opacity;
}

.shape-5 {
    top: 85%;
    right: 25%;
    width: 180px;
    height: 120px;
    background: 
        radial-gradient(ellipse at 30% 30%, var(--accent-cyan-light) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 70%, #ff6b35 0%, transparent 60%),
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    clip-path: ellipse(50% 40% at 50% 50%);
    animation: smooth-drift 55s ease-in-out infinite;
    filter: blur(2px) brightness(1.2);
    opacity: 0.12;
    position: relative;
    will-change: transform, opacity;
}

.shape-5::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(6, 182, 212, 0.15) 40%, transparent 60%);
}

.shape-6 {
    top: 8%;
    right: 35%;
    width: 100px;
    height: 100px;
    background: conic-gradient(from 90deg, #ff6b35, var(--accent-cyan), #ff6b35, var(--accent-cyan));
    clip-path: polygon(50% 0%, 90% 10%, 100% 50%, 90% 90%, 50% 100%, 10% 90%, 0% 50%, 10% 10%);
    animation: smooth-rotate 60s linear infinite;
    opacity: 0.14;
    will-change: transform, opacity;
}

.shape-7 {
    top: 25%;
    left: 45%;
    width: 70px;
    height: 200px;
    background: linear-gradient(0deg, transparent, var(--accent-cyan-light), #ff6b35, transparent);
    clip-path: polygon(40% 0%, 60% 0%, 80% 20%, 70% 50%, 80% 80%, 60% 100%, 40% 100%, 20% 80%, 30% 50%, 20% 20%);
    animation: smooth-float 42s ease-in-out infinite;
    filter: blur(1px);
    opacity: 0.08;
    will-change: transform, opacity;
}

.shape-8 {
    bottom: 35%;
    right: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, #ff6b35 0%, transparent 40%),
                radial-gradient(circle at 70% 70%, var(--accent-cyan) 0%, transparent 40%),
                linear-gradient(45deg, #ff6b35, var(--accent-cyan-light));
    clip-path: polygon(25% 0%, 75% 0%, 95% 25%, 100% 50%, 95% 75%, 75% 100%, 25% 100%, 5% 75%, 0% 50%, 5% 25%);
    animation: smooth-drift 48s ease-in-out infinite;
    opacity: 0.14;
    will-change: transform, opacity;
    opacity: 0.14;
}

.shape-9 {
    top: 72%;
    left: 2%;
    width: 80px;
    height: 80px;
    background: conic-gradient(from 0deg, var(--accent-cyan), #ff6b35, var(--accent-cyan));
    clip-path: polygon(50% 0%, 100% 25%, 82% 100%, 18% 100%, 0% 25%);
    animation: smooth-float 32s ease-in-out infinite;
    opacity: 0.18;
    will-change: transform, opacity;
}

.shape-10 {
    top: 45%;
    left: 25%;
    width: 60px;
    height: 300px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    clip-path: polygon(30% 0%, 70% 0%, 60% 100%, 40% 100%);
    animation: smooth-drift 38s ease-in-out infinite;
    filter: blur(3px);
    opacity: 0.06;
    will-change: transform, opacity;
}

.shape-11 {
    bottom: 15%;
    right: 45%;
    width: 120px;
    height: 120px;
    background: radial-gradient(ellipse at center, var(--accent-cyan-light) 0%, #ff6b35 50%, transparent 70%);
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    animation: smooth-rotate 52s linear infinite;
    opacity: 0.15;
    will-change: transform, opacity;
}

.shape-12 {
    top: 55%;
    right: 65%;
    width: 40px;
    height: 40px;
    background: var(--accent-cyan);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation: smooth-float 26s ease-in-out infinite;
    opacity: 0.25;
    filter: drop-shadow(0 0 10px var(--accent-cyan));
    will-change: transform, opacity;
}

/* Refined Energy Shapes */
.shape-13 {
    top: 30%;
    left: 60%;
    width: 250px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 107, 53, 0.4) 20%, 
        rgba(6, 182, 212, 0.6) 50%, 
        rgba(255, 107, 53, 0.4) 80%, 
        transparent 100%);
    animation: smooth-drift 44s ease-in-out infinite;
    filter: blur(1px) drop-shadow(0 0 10px rgba(6, 182, 212, 0.3));
    transform: rotate(-15deg);
    opacity: 0.25;
    will-change: transform, opacity;
}

.shape-14 {
    bottom: 20%;
    right: 20%;
    width: 120px;
    height: 120px;
    background: 
        conic-gradient(from 0deg, transparent 0deg, rgba(255, 107, 53, 0.3) 90deg, transparent 180deg, rgba(6, 182, 212, 0.3) 270deg, transparent 360deg),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: smooth-rotate 65s linear infinite;
    filter: blur(1px) drop-shadow(0 0 15px rgba(6, 182, 212, 0.2));
    opacity: 0.12;
    will-change: transform, opacity;
}

.shape-15 {
    top: 70%;
    left: 30%;
    width: 160px;
    height: 160px;
    background: 
        repeating-conic-gradient(from 45deg at 50% 50%, 
            transparent 0deg, 
            rgba(6, 182, 212, 0.2) 30deg, 
            transparent 60deg,
            rgba(255, 107, 53, 0.2) 90deg,
            transparent 120deg);
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    animation: smooth-drift 36s ease-in-out infinite;
    filter: blur(1px) drop-shadow(0 0 12px rgba(6, 182, 212, 0.3));
    opacity: 0.08;
    will-change: transform, opacity;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    50% { 
        transform: translateY(-30px) scale(1.05); 
    }
}

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

@keyframes spin {
    from { transform: rotate(0deg) scale(1); }
    to { transform: rotate(-360deg) scale(1.1); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.12; transform: scale(1); }
    50% { opacity: 0.25; transform: scale(1.15); }
}

@keyframes morph {
    0%, 100% { 
        clip-path: polygon(30% 0%, 70% 0%, 90% 30%, 100% 60%, 70% 100%, 30% 100%, 10% 70%, 0% 40%);
    }
    50% { 
        clip-path: polygon(20% 10%, 80% 5%, 95% 25%, 90% 75%, 75% 95%, 25% 90%, 5% 75%, 10% 25%);
    }
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.15; }
    50% { transform: scale(1.2); opacity: 0.25; }
}

@keyframes sway {
    0%, 100% { transform: skewX(0deg) translateX(0px); }
    50% { transform: skewX(5deg) translateX(10px); }
}

@keyframes expand {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.3) rotate(45deg); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.22; transform: scale(1); }
    25% { opacity: 0.4; transform: scale(1.2); }
    75% { opacity: 0.1; transform: scale(0.8); }
}

@keyframes wave {
    0%, 100% { transform: skewY(0deg) scaleY(1); }
    50% { transform: skewY(3deg) scaleY(1.1); }
}

@keyframes glow {
    0%, 100% { 
        filter: brightness(1) blur(0px);
        box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
    }
    50% { 
        filter: brightness(1.3) blur(1px);
        box-shadow: 0 0 40px rgba(6, 182, 212, 0.5);
    }
}

@keyframes flicker {
    0%, 100% { opacity: 0.3; }
    10% { opacity: 0.8; }
    20% { opacity: 0.2; }
    30% { opacity: 0.9; }
    40% { opacity: 0.1; }
    50% { opacity: 0.7; }
    60% { opacity: 0.4; }
    70% { opacity: 0.6; }
    80% { opacity: 0.2; }
    90% { opacity: 0.5; }
}

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

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

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

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

@keyframes pulse-glow {
    0%, 100% { 
        filter: blur(1px) drop-shadow(0 0 20px rgba(139, 92, 246, 0.3));
    }
    50% { 
        filter: blur(1px) drop-shadow(0 0 40px rgba(139, 92, 246, 0.6));
    }
}

@keyframes inner-spin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

@keyframes scan-lines {
    0%, 100% { opacity: 0.2; transform: translateY(0px); }
    50% { opacity: 0.5; transform: translateY(-5px); }
}

@keyframes energy-flow {
    0%, 100% { 
        background-position: 0% 50%;
        transform: scaleX(1);
    }
    50% { 
        background-position: 100% 50%;
        transform: scaleX(1.1);
    }
}

@keyframes plasma-ring {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.2;
    }
    50% { 
        transform: scale(1.2) rotate(180deg);
        opacity: 0.4;
    }
}

@keyframes refined-pulse {
    0%, 100% { 
        transform: scale(1);
        filter: blur(1px) drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
    }
    50% { 
        transform: scale(1.05);
        filter: blur(1px) drop-shadow(0 0 25px rgba(139, 92, 246, 0.5));
    }
}

@keyframes subtle-core {
    0%, 100% { 
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

@keyframes subtle-beam {
    0%, 100% { 
        opacity: 0.3;
        transform: scaleX(1) rotate(-15deg);
    }
    50% { 
        opacity: 0.5;
        transform: scaleX(1.1) rotate(-15deg);
    }
}

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

@keyframes refined-portal {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.15;
    }
    50% { 
        transform: scale(1.05);
        opacity: 0.2;
    }
}

@keyframes matrix-scan {
    0% { 
        transform: rotate(0deg);
        background-position: 0% 50%;
    }
    100% { 
        transform: rotate(360deg);
        background-position: 100% 50%;
    }
}

@keyframes refined-breathe {
    0%, 100% { 
        opacity: 0.1;
        filter: blur(1px) drop-shadow(0 0 12px rgba(6, 182, 212, 0.3));
    }
    50% { 
        opacity: 0.15;
        filter: blur(1px) drop-shadow(0 0 15px rgba(6, 182, 212, 0.4));
    }
}

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

@keyframes smooth-float {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.15;
    }
    50% { 
        transform: translateY(-20px) scale(1.02);
        opacity: 0.25;
    }
}

@keyframes smooth-rotate {
    0%, 100% { 
        transform: rotate(0deg) scale(1);
        opacity: 0.12;
    }
    50% { 
        transform: rotate(180deg) scale(1.01);
        opacity: 0.2;
    }
}

@keyframes smooth-drift {
    0%, 100% { 
        transform: translateX(0px) translateY(0px) scale(1);
        opacity: 0.1;
    }
    33% { 
        transform: translateX(10px) translateY(-5px) scale(1.01);
        opacity: 0.15;
    }
    67% { 
        transform: translateX(-5px) translateY(5px) scale(0.99);
        opacity: 0.12;
    }
}

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

@keyframes data-flow {
    0% {
        opacity: 0;
        transform: scaleX(0) translateX(-100%);
    }
    15% {
        opacity: 0.3;
        transform: scaleX(0.5) translateX(-50%);
    }
    40% {
        opacity: 0.5;
        transform: scaleX(1) translateX(0%);
    }
    75% {
        opacity: 0.5;
        transform: scaleX(1) translateX(0%);
    }
    90% {
        opacity: 0.2;
        transform: scaleX(0.8) translateX(20%);
    }
    100% {
        opacity: 0;
        transform: scaleX(0) translateX(100%);
    }
}


/* Additional Hero Technical Shapes */
.hero-shape-1 {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 200px;
    height: 200px;
    background: 
        repeating-conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg, 
            rgba(139, 92, 246, 0.15) 15deg, 
            transparent 30deg,
            rgba(6, 182, 212, 0.12) 45deg,
            transparent 60deg
        ),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: float 12s ease-in-out infinite, tech-rotate 20s linear infinite;
    filter: blur(0.5px) drop-shadow(0 0 15px rgba(6, 182, 212, 0.4));
    opacity: 0.2;
    z-index: 2;
}

.hero-shape-2 {
    position: absolute;
    top: 60%;
    left: 20%;
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.6) 20%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(6, 182, 212, 0.6) 80%, 
        transparent 100%);
    animation: laser-sweep 8s ease-in-out infinite, float 10s ease-in-out infinite;
    filter: blur(0.5px) drop-shadow(0 0 10px rgba(139, 92, 246, 0.6));
    transform: rotate(-25deg);
    opacity: 0.25;
    z-index: 2;
}

.hero-shape-3 {
    position: absolute;
    top: 35%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: 
        conic-gradient(from 90deg, transparent 0deg, rgba(6, 182, 212, 0.4) 90deg, transparent 180deg, rgba(139, 92, 246, 0.4) 270deg, transparent 360deg),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite, orbit-pulse 4s ease-in-out infinite;
    filter: blur(0.3px) drop-shadow(0 0 12px rgba(6, 182, 212, 0.5));
    opacity: 0.3;
    z-index: 2;
}

.hero-shape-4 {
    position: absolute;
    bottom: 25%;
    right: 25%;
    width: 120px;
    height: 120px;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 8px,
            rgba(139, 92, 246, 0.2) 10px,
            rgba(139, 92, 246, 0.2) 12px
        ),
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 8px,
            rgba(6, 182, 212, 0.2) 10px,
            rgba(6, 182, 212, 0.2) 12px
        ),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    animation: float 14s ease-in-out infinite reverse, matrix-grid 6s ease-in-out infinite;
    filter: blur(0.5px);
    opacity: 0.18;
    z-index: 2;
}

.hero-shape-5 {
    position: absolute;
    top: 45%;
    right: 8%;
    width: 60px;
    height: 180px;
    background: linear-gradient(0deg, 
        transparent 0%, 
        rgba(6, 182, 212, 0.3) 25%, 
        rgba(139, 92, 246, 0.4) 50%, 
        rgba(6, 182, 212, 0.3) 75%, 
        transparent 100%);
    clip-path: polygon(40% 0%, 60% 0%, 80% 20%, 70% 50%, 80% 80%, 60% 100%, 40% 100%, 20% 80%, 30% 50%, 20% 20%);
    animation: float 9s ease-in-out infinite, energy-beam 5s ease-in-out infinite;
    filter: blur(0.8px) drop-shadow(0 0 8px rgba(6, 182, 212, 0.4));
    opacity: 0.22;
    z-index: 2;
}

/* Additional Prominent Hero Shapes */
.hero-shape-6 {
    position: absolute;
    top: 25%;
    left: 15%;
    width: 100px;
    height: 100px;
    background: 
        conic-gradient(from 0deg, rgba(139, 92, 246, 0.3) 0deg, transparent 60deg, rgba(6, 182, 212, 0.3) 120deg, transparent 180deg, rgba(139, 92, 246, 0.3) 240deg, transparent 300deg),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    animation: float 7s ease-in-out infinite, spin-glow 12s linear infinite;
    filter: blur(0.4px) drop-shadow(0 0 15px rgba(139, 92, 246, 0.6));
    opacity: 0.3;
    z-index: 2;
}

.hero-shape-7 {
    position: absolute;
    top: 15%;
    left: 40%;
    width: 120px;
    height: 6px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(6, 182, 212, 0.8) 25%, 
        rgba(255, 255, 255, 0.9) 50%, 
        rgba(139, 92, 246, 0.8) 75%, 
        transparent 100%);
    animation: laser-sweep 6s ease-in-out infinite, float 8s ease-in-out infinite;
    filter: blur(0.3px) drop-shadow(0 0 12px rgba(6, 182, 212, 0.7));
    transform: rotate(15deg);
    opacity: 0.35;
    z-index: 2;
}

.hero-shape-8 {
    position: absolute;
    bottom: 30%;
    left: 10%;
    width: 90px;
    height: 90px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.4) 0%, transparent 50%);
    border-radius: 50%;
    animation: float 9s ease-in-out infinite reverse, pulse-ring 5s ease-in-out infinite;
    filter: blur(0.6px) drop-shadow(0 0 18px rgba(6, 182, 212, 0.5));
    opacity: 0.25;
    z-index: 2;
}

.hero-shape-9 {
    position: absolute;
    top: 50%;
    right: 30%;
    width: 140px;
    height: 140px;
    background: 
        repeating-conic-gradient(from 45deg at 50% 50%, 
            transparent 0deg, 
            rgba(139, 92, 246, 0.2) 20deg, 
            transparent 40deg,
            rgba(6, 182, 212, 0.2) 60deg,
            transparent 80deg);
    clip-path: polygon(25% 0%, 75% 0%, 100% 25%, 100% 75%, 75% 100%, 25% 100%, 0% 75%, 0% 25%);
    animation: float 11s ease-in-out infinite, tech-rotate 15s linear infinite;
    filter: blur(0.5px) drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
    opacity: 0.22;
    z-index: 2;
}

.hero-shape-10 {
    position: absolute;
    top: 65%;
    right: 15%;
    width: 80px;
    height: 200px;
    background: linear-gradient(0deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.4) 30%, 
        rgba(6, 182, 212, 0.5) 50%, 
        rgba(139, 92, 246, 0.4) 70%, 
        transparent 100%);
    clip-path: polygon(30% 0%, 70% 0%, 90% 20%, 80% 50%, 90% 80%, 70% 100%, 30% 100%, 10% 80%, 20% 50%, 10% 20%);
    animation: float 8s ease-in-out infinite, energy-beam 4s ease-in-out infinite;
    filter: blur(0.7px) drop-shadow(0 0 15px rgba(6, 182, 212, 0.6));
    opacity: 0.28;
    z-index: 2;
}

.hero-shape-11 {
    position: absolute;
    top: 40%;
    left: 25%;
    width: 60px;
    height: 60px;
    background: 
        conic-gradient(from 90deg, rgba(6, 182, 212, 0.5) 0deg, transparent 90deg, rgba(139, 92, 246, 0.5) 180deg, transparent 270deg),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 5s ease-in-out infinite, orbit-pulse 3s ease-in-out infinite;
    filter: blur(0.2px) drop-shadow(0 0 10px rgba(6, 182, 212, 0.8));
    opacity: 0.4;
    z-index: 2;
}

.hero-shape-12 {
    position: absolute;
    bottom: 20%;
    right: 40%;
    width: 110px;
    height: 8px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.7) 30%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(6, 182, 212, 0.7) 70%, 
        transparent 100%);
    animation: laser-sweep 7s ease-in-out infinite, float 12s ease-in-out infinite;
    filter: blur(0.4px) drop-shadow(0 0 14px rgba(139, 92, 246, 0.7));
    transform: rotate(-45deg);
    opacity: 0.32;
    z-index: 2;
}

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

@keyframes laser-sweep {
    0%, 100% { 
        opacity: 0.25;
        transform: rotate(-25deg) scaleX(1);
    }
    50% { 
        opacity: 0.45;
        transform: rotate(-25deg) scaleX(1.2);
    }
}

@keyframes orbit-pulse {
    0%, 100% { 
        transform: scale(1);
        filter: blur(0.3px) drop-shadow(0 0 12px rgba(6, 182, 212, 0.5));
    }
    50% { 
        transform: scale(1.15);
        filter: blur(0.2px) drop-shadow(0 0 18px rgba(6, 182, 212, 0.7));
    }
}

@keyframes matrix-grid {
    0%, 100% { 
        opacity: 0.18;
        transform: scale(1);
    }
    50% { 
        opacity: 0.28;
        transform: scale(1.05);
    }
}

@keyframes energy-beam {
    0%, 100% { 
        opacity: 0.22;
        filter: blur(0.8px) drop-shadow(0 0 8px rgba(6, 182, 212, 0.4));
    }
    50% { 
        opacity: 0.35;
        filter: blur(0.5px) drop-shadow(0 0 12px rgba(6, 182, 212, 0.6));
    }
}

@keyframes spin-glow {
    0%, 100% { 
        transform: rotate(0deg);
        filter: blur(0.4px) drop-shadow(0 0 15px rgba(139, 92, 246, 0.6));
    }
    50% { 
        transform: rotate(180deg);
        filter: blur(0.3px) drop-shadow(0 0 20px rgba(6, 182, 212, 0.7));
    }
    100% { 
        transform: rotate(360deg);
        filter: blur(0.4px) drop-shadow(0 0 15px rgba(139, 92, 246, 0.6));
    }
}

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

/* Service Pages */
.service-hero {
    min-height: 70vh;
    position: relative;
}

/* Construction Warning */
.construction-warning {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(220, 53, 69, 0.1) 100%);
    border-bottom: 1px solid rgba(255, 193, 7, 0.3);
    padding: 2rem 0;
}

.warning-card {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.warning-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.warning-content h3 {
    color: #ffc107;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
}

.warning-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.95rem;
}

/* Expertise Section */
.expertise-section {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.expertise-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.expertise-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.expertise-content p:last-child {
    margin-bottom: 0;
}

.service-grid-section {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: start;
}

.service-detail-card {
    background: rgba(26, 26, 46, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(6, 182, 212, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-detail-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 
        0 25px 50px rgba(139, 92, 246, 0.2),
        0 0 0 1px rgba(139, 92, 246, 0.1);
}

.service-detail-card:hover::before {
    opacity: 1;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.service-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.pricing {
    text-align: right;
    flex-shrink: 0;
}

.price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-violet), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-note {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.features-list h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.features-list li {
    position: relative;
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.features-list li::before {
    content: '⬢';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-size: 0.8rem;
}

.service-cta {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.btn-secondary {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary-violet);
    border: 1px solid var(--primary-violet);
}

.btn-secondary:hover {
    background: var(--primary-violet);
    color: white;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    background: rgba(139, 92, 246, 0.1);
    color: var(--text-primary);
    border-color: var(--primary-violet);
}

.service-contact {
    background: linear-gradient(135deg, rgba(15, 15, 35, 0.9) 0%, rgba(26, 26, 46, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-intro {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    min-width: 150px;
}

/* Service Background Shapes */
.service-shape-1 {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 150px;
    height: 150px;
    background: 
        conic-gradient(from 45deg, var(--primary-violet), var(--accent-cyan), transparent, var(--primary-violet)),
        radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
    animation: float 10s ease-in-out infinite, tech-rotate 18s linear infinite;
    filter: blur(0.5px) drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
    opacity: 0.15;
    z-index: 1;
}

.service-shape-2 {
    position: absolute;
    top: 60%;
    left: 15%;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(6, 182, 212, 0.7) 30%, 
        rgba(255, 255, 255, 0.8) 50%, 
        rgba(139, 92, 246, 0.7) 70%, 
        transparent 100%);
    animation: laser-sweep 8s ease-in-out infinite, float 12s ease-in-out infinite;
    filter: blur(0.3px) drop-shadow(0 0 8px rgba(6, 182, 212, 0.6));
    transform: rotate(-30deg);
    opacity: 0.3;
    z-index: 1;
}

.service-shape-3 {
    position: absolute;
    bottom: 30%;
    right: 25%;
    width: 80px;
    height: 80px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
    border-radius: 50%;
    animation: float 7s ease-in-out infinite reverse, orbit-pulse 4s ease-in-out infinite;
    filter: blur(0.4px) drop-shadow(0 0 15px rgba(6, 182, 212, 0.5));
    opacity: 0.2;
    z-index: 1;
}

.service-shape-4 {
    position: absolute;
    top: 35%;
    left: 25%;
    width: 60px;
    height: 150px;
    background: linear-gradient(0deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.3) 30%, 
        rgba(6, 182, 212, 0.4) 50%, 
        rgba(139, 92, 246, 0.3) 70%, 
        transparent 100%);
    clip-path: polygon(40% 0%, 60% 0%, 80% 20%, 70% 50%, 80% 80%, 60% 100%, 40% 100%, 20% 80%, 30% 50%, 20% 20%);
    animation: float 9s ease-in-out infinite, energy-beam 6s ease-in-out infinite;
    filter: blur(0.6px) drop-shadow(0 0 10px rgba(6, 182, 212, 0.4));
    opacity: 0.18;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-detail-card {
        padding: 2rem;
    }
    
    .service-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .pricing {
        text-align: left;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
}

/* Story Section */
.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* Team Section */
.team-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.team-link:hover {
    transform: translateY(-2px);
}

/* Team Member Pages */
.executive-details {
    margin-bottom: 2rem;
}

.detail-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 16px;
    padding: 2rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    backdrop-filter: blur(10px);
}

.detail-card h3 {
    color: var(--primary-violet);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: 0.05em;
}

.detail-card p {
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: 2rem auto;
    max-width: 300px;
}

.executive-content {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 2rem;
}

.executive-content h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.executive-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.executive-content p:last-child {
    margin-bottom: 0;
}

/* Service Links */
.service-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.service-link:hover {
    transform: translateY(-4px);
}

.service-arrow {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.2rem;
    color: var(--accent-cyan);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.service-link:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

.service-link:hover .service-card {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 
        0 20px 40px rgba(6, 182, 212, 0.15),
        0 0 0 1px rgba(6, 182, 212, 0.1);
}

.team-member {
    text-align: center;
}

.avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.team-member .role {
    color: var(--accent-cyan);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member .expertise {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Services */
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-cyan);
}

.service-card p {
    color: var(--text-secondary);
}

/* Contact Section */
.contact-section {
    background: rgba(26, 26, 46, 0.8);
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-violet), transparent);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-content .intro {
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.contact-content .intro a {
    color: var(--accent-cyan);
    text-decoration: none;
}

/* Form Styles */
.contact-form {
    text-align: left;
    background: rgba(26, 26, 46, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: 0.05em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    background: rgba(15, 15, 35, 0.8);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group select {
    padding-right: 3rem;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2306b6d4' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.25rem;
}

.form-group select:focus,
.form-group select:active,
.form-group select[aria-expanded="true"] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%2306b6d4' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
    background: rgba(15, 15, 35, 1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Success Animation */
.form-success {
    position: relative;
    text-align: center;
    padding: 3rem;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.3);
    overflow: hidden;
}

.form-success::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    animation: success-glow 2s ease-in-out infinite alternate;
}

.success-icon {
    font-size: 4rem;
    color: var(--accent-cyan);
    margin-bottom: 1rem;
    animation: success-bounce 0.6s ease-out;
}

.success-message {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.success-sub {
    color: var(--text-secondary);
    font-size: 1rem;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-cyan);
    border-radius: 50%;
    pointer-events: none;
    animation: sparkle 1.5s linear infinite;
}

.sparkle:nth-child(odd) {
    background: var(--primary-violet);
    animation-delay: 0.5s;
}

.sparkle:nth-child(3n) {
    animation-delay: 1s;
}

@keyframes success-glow {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

@keyframes success-bounce {
    0% { transform: scale(0) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); }
}

@keyframes sparkle {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.form-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 1.25rem 2rem;
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer p {
    color: var(--text-muted);
}

/* Section Backgrounds */
.section-alt {
    background: rgba(26, 26, 46, 0.3);
    position: relative;
}

.section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.section-alt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.3), transparent);
}

/* Section Headers */
.section h2 {
    position: relative;
    margin-bottom: 4rem;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.01em;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-violet), var(--accent-cyan));
    border-radius: 1px;
    animation: slideInUp 0.6s ease-out 0.3s both;
}

/* Section animations */
.section:nth-child(odd) .container {
    animation: slideInLeft 0.8s ease-out;
}

.section:nth-child(even) .container {
    animation: slideInRight 0.8s ease-out;
}

/* Improved spacing */
.section {
    padding: 5rem 0;
}

.section:first-child {
    padding-top: 0;
}

.section:last-child {
    padding-bottom: 3rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 4rem 0;
    }
}