/* ============================================
   360video.bayern - Main Stylesheet
   Dark Theme with Cyan/Violet Accents
   ============================================ */

/* CSS Variables / Design Tokens */
:root {
    /* Colors */
    --color-bg-primary: #0a0a0f;
    --color-bg-secondary: #12121a;
    --color-bg-tertiary: #1a1a25;
    --color-bg-card: rgba(26, 26, 37, 0.7);
    --color-bg-glass: rgba(255, 255, 255, 0.05);

    --color-text-primary: #ffffff;
    --color-text-secondary: #a0a0b0;
    --color-text-muted: #6b6b7b;

    --color-accent-primary: #00d9ff;
    --color-accent-secondary: #8b5cf6;
    --color-accent-gradient: linear-gradient(135deg, #00d9ff 0%, #8b5cf6 100%);
    --color-accent-glow: rgba(0, 217, 255, 0.3);

    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;

    /* Borders */
    --border-glass: 1px solid rgba(255, 255, 255, 0.1);
    --border-accent: 1px solid var(--color-accent-primary);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--color-accent-glow);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 50%;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Container */
    --container-max: 1280px;
    --container-padding: var(--space-6);
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 217, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-accent-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent-secondary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text-primary);
}

h1 {
    font-size: var(--text-5xl);
}

h2 {
    font-size: var(--text-4xl);
}

h3 {
    font-size: var(--text-3xl);
}

h4 {
    font-size: var(--text-2xl);
}

h5 {
    font-size: var(--text-xl);
}

h6 {
    font-size: var(--text-lg);
}

p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
}

ul,
ol {
    list-style: none;
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: var(--space-20) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-header h2 {
    margin-bottom: var(--space-4);
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: var(--text-lg);
}

.grid {
    display: grid;
    gap: var(--space-6);
}

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

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

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

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

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

@media (max-width: 768px) {

    .grid-4,
    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: var(--text-4xl);
    }

    h2 {
        font-size: var(--text-3xl);
    }

    h3 {
        font-size: var(--text-2xl);
    }
}

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-4) 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: var(--border-glass);
    transition: all var(--transition-base);
}

.header.scrolled {
    padding: var(--space-3) 0;
    background: rgba(10, 10, 15, 0.95);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--color-accent-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-lg);
    box-shadow: var(--shadow-glow);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-list {
    display: flex;
    gap: var(--space-6);
}

.nav-link {
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    font-weight: 500;
    padding: var(--space-2) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-gradient);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text-primary);
}

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

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 220px;
    background: var(--color-bg-secondary);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-lg);
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: var(--space-3) var(--space-4);
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-dropdown a:hover {
    background: var(--color-bg-glass);
    color: var(--color-accent-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-fast);
}

@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--color-bg-secondary);
        flex-direction: column;
        align-items: flex-start;
        padding: var(--space-20) var(--space-6);
        transition: right var(--transition-base);
        border-left: var(--border-glass);
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
    }

    .nav-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        border: none;
        padding-left: var(--space-4);
    }

    .nav-item.open .nav-dropdown {
        display: block;
    }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-primary {
    background: var(--color-accent-gradient);
    color: var(--color-bg-primary);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px var(--color-accent-glow);
    color: var(--color-bg-primary);
}

.btn-secondary {
    background: var(--color-bg-glass);
    color: var(--color-text-primary);
    border: var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent-primary);
    color: var(--color-accent-primary);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--space-24);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-sphere {
    position: absolute;
    width: 700px;
    height: 700px;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: var(--radius-full);
    perspective: 1200px;
    transform-style: preserve-3d;
}

/* Main 360° Globe Structure */
.hero-sphere::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    border: 2px solid rgba(0, 217, 255, 0.3);
    box-shadow:
        inset 0 0 80px rgba(0, 217, 255, 0.1),
        0 0 80px rgba(0, 217, 255, 0.2),
        inset 0 0 30px rgba(139, 92, 246, 0.1);
    animation: sphere-pulse 4s ease-in-out infinite;
}

/* Rotating Latitude Lines */
.hero-sphere::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) rotateX(60deg);
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 217, 255, 0.4);
    animation: sphere-rotate-x 15s linear infinite;
}

@keyframes sphere-rotate-x {
    from {
        transform: translate(-50%, -50%) rotateX(60deg) rotateY(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotateX(60deg) rotateY(360deg);
    }
}

@keyframes sphere-pulse {

    0%,
    100% {
        box-shadow:
            inset 0 0 80px rgba(0, 217, 255, 0.1),
            0 0 80px rgba(0, 217, 255, 0.2),
            inset 0 0 30px rgba(139, 92, 246, 0.1);
    }

    50% {
        box-shadow:
            inset 0 0 120px rgba(0, 217, 255, 0.2),
            0 0 120px rgba(0, 217, 255, 0.3),
            inset 0 0 50px rgba(139, 92, 246, 0.2);
    }
}

/* ============================================
   3D Rotating Rings - Award-Winning Effects
   ============================================ */
.sphere-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid;
    transform-style: preserve-3d;
}

.sphere-ring-1 {
    border-color: rgba(0, 217, 255, 0.5);
    transform: translate(-50%, -50%) rotateX(70deg);
    animation: ring-rotate-1 20s linear infinite;
}

.sphere-ring-2 {
    width: 85%;
    height: 85%;
    border-color: rgba(139, 92, 246, 0.4);
    transform: translate(-50%, -50%) rotateX(70deg) rotateY(60deg);
    animation: ring-rotate-2 25s linear infinite reverse;
}

.sphere-ring-3 {
    width: 70%;
    height: 70%;
    border-color: rgba(0, 217, 255, 0.3);
    transform: translate(-50%, -50%) rotateX(-70deg) rotateZ(45deg);
    animation: ring-rotate-3 18s linear infinite;
}

.sphere-ring-4 {
    width: 55%;
    height: 55%;
    border-color: rgba(139, 92, 246, 0.5);
    transform: translate(-50%, -50%) rotateY(70deg);
    animation: ring-rotate-4 15s linear infinite reverse;
}

.sphere-core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
            rgba(0, 217, 255, 0.6) 0%,
            rgba(139, 92, 246, 0.4) 40%,
            transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    animation: core-pulse 3s ease-in-out infinite;
}

@keyframes ring-rotate-1 {
    from {
        transform: translate(-50%, -50%) rotateX(70deg) rotateZ(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotateX(70deg) rotateZ(360deg);
    }
}

@keyframes ring-rotate-2 {
    from {
        transform: translate(-50%, -50%) rotateX(70deg) rotateY(60deg) rotateZ(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotateX(70deg) rotateY(60deg) rotateZ(360deg);
    }
}

@keyframes ring-rotate-3 {
    from {
        transform: translate(-50%, -50%) rotateX(-70deg) rotateZ(45deg) rotateY(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotateX(-70deg) rotateZ(45deg) rotateY(360deg);
    }
}

@keyframes ring-rotate-4 {
    from {
        transform: translate(-50%, -50%) rotateY(70deg) rotateX(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotateY(70deg) rotateX(360deg);
    }
}

@keyframes core-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}

/* ============================================
   Mouse Glow Effect
   ============================================ */
.mouse-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
            rgba(0, 217, 255, 0.15) 0%,
            rgba(139, 92, 246, 0.1) 30%,
            transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mouse-glow.active {
    opacity: 1;
}

/* ============================================
   Kinetic Typography - Animated Text Reveal
   ============================================ */
.hero h1 {
    font-size: var(--text-6xl);
    margin-bottom: var(--space-6);
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-shimmer 3s ease-in-out infinite;
    background-size: 200% 100%;
}

@keyframes text-shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Animated Border Gradient for Cards */
.card {
    position: relative;
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    backdrop-filter: blur(20px);
    transition: all var(--transition-base);
    border: 1px solid transparent;
    background-clip: padding-box;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg,
            rgba(0, 217, 255, 0.3),
            rgba(139, 92, 246, 0.3),
            rgba(0, 217, 255, 0.3));
    background-size: 200% 200%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.card:hover::before {
    opacity: 1;
    animation: border-rotate 4s linear infinite;
}

@keyframes border-rotate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px var(--color-accent-glow);
}

/* ============================================
   Scroll Reveal Animations
   ============================================ */
.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* Staggered Delays */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(0, 217, 255, 0.1);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--color-accent-primary);
    margin-bottom: var(--space-6);
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: var(--text-6xl);
    margin-bottom: var(--space-6);
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-10);
    margin-top: var(--space-12);
    padding-top: var(--space-8);
    border-top: var(--border-glass);
}

.hero-stat {
    text-align: left;
}

.hero-stat-value {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--color-accent-primary);
}

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

@media (max-width: 768px) {
    .hero h1 {
        font-size: var(--text-4xl);
    }

    .hero-sphere {
        width: 400px;
        height: 400px;
        right: -150px;
        opacity: 0.4;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-4);
    }
}

/* ============================================
   Cards
   ============================================ */
.card {
    background: var(--color-bg-card);
    border: var(--border-glass);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    backdrop-filter: blur(20px);
    transition: all var(--transition-base);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: var(--shadow-glow);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: var(--color-accent-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    margin-bottom: var(--space-4);
}

.card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.card p {
    font-size: var(--text-sm);
    margin-bottom: 0;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-4);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-accent-primary);
}

.card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.card:hover .card-link svg {
    transform: translateX(4px);
}

/* Feature Card */
.feature-card {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-5);
}

.feature-card .card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    margin-bottom: 0;
}

/* Pricing Card */
.pricing-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--color-accent-primary);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
    content: 'Beliebt';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--color-accent-gradient);
    color: var(--color-bg-primary);
    padding: var(--space-1) var(--space-8);
    font-size: var(--text-xs);
    font-weight: 700;
    transform: rotate(45deg);
}

.pricing-card h3 {
    font-size: var(--text-2xl);
    margin-bottom: var(--space-2);
}

.pricing-card .price {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--color-accent-primary);
    margin: var(--space-4) 0;
}

.pricing-card .price span {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    font-weight: 400;
}

.pricing-features {
    text-align: left;
    margin: var(--space-6) 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
}

.pricing-features li svg {
    width: 18px;
    height: 18px;
    color: var(--color-success);
    flex-shrink: 0;
}

/* ============================================
   Award Section
   ============================================ */
.award-section {
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.award-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 0% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.award-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    position: relative;
    z-index: 1;
}

.award-badge-large {
    width: 120px;
    height: 120px;
    background: var(--color-accent-gradient);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin-bottom: var(--space-6);
    box-shadow: var(--shadow-glow);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 30px var(--color-accent-glow);
    }

    50% {
        box-shadow: 0 0 60px var(--color-accent-glow);
    }
}

.award-text h2 {
    margin-bottom: var(--space-4);
}

.award-text h3 {
    color: var(--color-accent-primary);
    font-size: var(--text-xl);
    margin-bottom: var(--space-4);
}

.award-details {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.award-detail {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--color-bg-glass);
    border: var(--border-glass);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.award-visual {
    position: relative;
}

.award-visual img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 968px) {
    .award-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .award-badge-large {
        margin: 0 auto var(--space-6);
    }

    .award-details {
        justify-content: center;
    }
}

/* ============================================
   Equipment Section
   ============================================ */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
}

.equipment-card {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    padding: var(--space-6);
}

.equipment-image {
    width: 120px;
    height: 120px;
    background: var(--color-bg-glass);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    flex-shrink: 0;
}

.equipment-info h4 {
    margin-bottom: var(--space-2);
}

.equipment-specs {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-top: var(--space-3);
}

.equipment-spec {
    padding: var(--space-1) var(--space-3);
    background: rgba(0, 217, 255, 0.1);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    color: var(--color-accent-primary);
}

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

    .equipment-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   Industries Section
   ============================================ */
.industry-card {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-bg-tertiary);
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.9) 0%, transparent 60%);
    z-index: 1;
}

.industry-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-6);
    z-index: 2;
}

.industry-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
}

.industry-card p {
    font-size: var(--text-sm);
    margin-bottom: 0;
}

.industry-icon {
    font-size: 48px;
    margin-bottom: var(--space-3);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: var(--color-accent-gradient);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

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

.cta-content h2 {
    color: var(--color-bg-primary);
    margin-bottom: var(--space-4);
}

.cta-content p {
    color: rgba(10, 10, 15, 0.8);
    font-size: var(--text-lg);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn {
    background: var(--color-bg-primary);
    color: var(--color-accent-primary);
}

.cta-content .btn:hover {
    background: var(--color-bg-secondary);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--color-bg-secondary);
    padding: var(--space-16) 0 var(--space-8);
    border-top: var(--border-glass);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-10);
    margin-bottom: var(--space-12);
}

.footer-brand p {
    margin-top: var(--space-4);
    font-size: var(--text-sm);
    max-width: 280px;
}

.footer h4 {
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
    color: var(--color-text-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-links a {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-8);
    border-top: var(--border-glass);
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
}

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

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

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-4);
        text-align: center;
    }
}

/* ============================================
   Forms
   ============================================ */
.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-4);
    font-family: var(--font-body);
    font-size: var(--text-base);
    color: var(--color-text-primary);
    background: var(--color-bg-tertiary);
    border: var(--border-glass);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-accent-primary);
    box-shadow: 0 0 0 3px rgba(0, 217, 255, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-text-muted);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a0a0b0' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
}

.form-checkbox input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--color-accent-primary);
}

.form-checkbox span {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.form-error {
    color: var(--color-error);
    font-size: var(--text-sm);
    margin-top: var(--space-2);
}

.form-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--color-success);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    color: var(--color-success);
    text-align: center;
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    padding: var(--space-24) 0 var(--space-16);
    background: var(--color-bg-secondary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
}

.breadcrumb a {
    color: var(--color-text-muted);
}

.breadcrumb span {
    color: var(--color-text-muted);
}

.breadcrumb .current {
    color: var(--color-accent-primary);
}

.page-header h1 {
    margin-bottom: var(--space-4);
}

.page-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: var(--text-lg);
}

/* ============================================
   Content Sections
   ============================================ */
.content-section {
    padding: var(--space-16) 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse>* {
    direction: ltr;
}

.content-text h2 {
    margin-bottom: var(--space-4);
}

.content-text h3 {
    color: var(--color-accent-primary);
    font-size: var(--text-lg);
    margin-bottom: var(--space-4);
}

.content-text ul {
    margin: var(--space-4) 0;
}

.content-text ul li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    color: var(--color-text-secondary);
}

.content-text ul li svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.content-image {
    position: relative;
}

.content-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.content-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-accent-primary);
    border-radius: var(--radius-xl);
    opacity: 0.3;
    z-index: -1;
}

@media (max-width: 968px) {

    .content-grid,
    .content-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
}

/* ============================================
   FAQs
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: var(--border-glass);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-5) 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text-primary);
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-accent-primary);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent-primary);
    transition: transform var(--transition-base);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding-bottom: var(--space-5);
}

/* ============================================
   Utilities
   ============================================ */
.text-center {
    text-align: center;
}

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

.text-right {
    text-align: right;
}

.text-gradient {
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-6 {
    margin-top: var(--space-6);
}

.mt-8 {
    margin-top: var(--space-8);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-6 {
    margin-bottom: var(--space-6);
}

.mb-8 {
    margin-bottom: var(--space-8);
}

.hidden {
    display: none;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Scroll animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
}

/* Delay utilities for staggered animations */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* ============================================
   Portfolio / Embed Section
   ============================================ */
.embed-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    background: var(--color-bg-tertiary);
}

.embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.portfolio-item {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-bg-tertiary);
    cursor: pointer;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.portfolio-overlay span {
    padding: var(--space-3) var(--space-6);
    background: var(--color-accent-gradient);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-bg-primary);
}

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

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

/* ============================================
   Loading Animation
   ============================================ */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-bg-primary);
    border-radius: var(--radius-full);
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

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

/* ============================================
   AWARD-WINNING 2025 IMMERSIVE EFFECTS
   Cutting-Edge CSS for 360° Experience
   ============================================ */

/* Three.js Container Styles */
.three-sphere-container {
    position: absolute;
    width: 800px;
    height: 800px;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: grab;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.three-sphere-container.loaded {
    opacity: 1;
}

.three-sphere-container canvas {
    width: 100% !important;
    height: 100% !important;
}

/* Loading Shimmer Animation */
.three-sphere-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-ring {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--color-accent-primary);
    border-right-color: var(--color-accent-secondary);
    animation: loader-spin 1.5s linear infinite, loader-pulse 2s ease-in-out infinite;
}

@keyframes loader-spin {
    to { transform: rotate(360deg); }
}

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

.three-sphere-container.loaded .three-sphere-loader {
    display: none;
}

/* Hide CSS fallback when Three.js is loaded */
.three-sphere-container.loaded ~ .hero-sphere {
    display: none;
}

@media (max-width: 1024px) {
    .three-sphere-container {
        width: 500px;
        height: 500px;
        right: -100px;
        opacity: 0.7;
    }
}

@media (max-width: 768px) {
    .three-sphere-container {
        width: 350px;
        height: 350px;
        right: -100px;
        opacity: 0.5;
    }
}

/* ============================================
   CSS Custom Properties for Animations
   ============================================ */
@property --gradient-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@property --liquid-x {
    syntax: '<percentage>';
    initial-value: 50%;
    inherits: false;
}

@property --liquid-y {
    syntax: '<percentage>';
    initial-value: 50%;
    inherits: false;
}

/* ============================================
   Liquid Gradient Background - Morphing Blobs
   ============================================ */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 60% 50% at var(--liquid-x) var(--liquid-y), 
            rgba(0, 217, 255, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse 50% 60% at calc(100% - var(--liquid-x)) calc(100% - var(--liquid-y)), 
            rgba(139, 92, 246, 0.12) 0%, transparent 50%);
    animation: liquid-morph 20s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: -1;
}

@keyframes liquid-morph {
    0% {
        --liquid-x: 30%;
        --liquid-y: 30%;
    }
    25% {
        --liquid-x: 70%;
        --liquid-y: 40%;
    }
    50% {
        --liquid-x: 60%;
        --liquid-y: 70%;
    }
    75% {
        --liquid-x: 40%;
        --liquid-y: 60%;
    }
    100% {
        --liquid-x: 30%;
        --liquid-y: 30%;
    }
}

/* ============================================
   Scroll-Driven Animations (2025 CSS)
   ============================================ */
@supports (animation-timeline: view()) {
    .card,
    .industry-card,
    .equipment-card {
        animation: scroll-reveal linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 30%;
    }
    
    @keyframes scroll-reveal {
        from {
            opacity: 0;
            transform: translateY(60px) scale(0.95);
            filter: blur(5px);
        }
        to {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }
    }
    
    .section-header {
        animation: scroll-header linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 25%;
    }
    
    @keyframes scroll-header {
        from {
            opacity: 0;
            transform: translateY(40px);
            letter-spacing: 0.2em;
        }
        to {
            opacity: 1;
            transform: translateY(0);
            letter-spacing: normal;
        }
    }
}

/* ============================================
   Advanced Glassmorphism with Noise
   ============================================ */
.card,
.industry-card,
.equipment-card,
.pricing-card {
    background: 
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.05) 0%, 
            rgba(255, 255, 255, 0.02) 100%),
        var(--color-bg-card);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

/* Animated Gradient Border */
.card::before,
.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(
        from var(--gradient-angle),
        transparent 0%,
        var(--color-accent-primary) 10%,
        var(--color-accent-secondary) 20%,
        transparent 30%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: border-rotate 4s linear infinite;
}

@keyframes gradient-rotate {
    to {
        --gradient-angle: 360deg;
    }
}

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

/* ============================================
   3D Card Tilt Effect with Light Reflection
   ============================================ */
.card,
.industry-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.industry-card:hover {
    transform: translateY(-10px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px var(--color-accent-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Light Reflection Overlay */
.card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 255, 255, 0.15) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

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

/* ============================================
   Kinetic Typography - Hero Headline
   ============================================ */
.hero h1 {
    position: relative;
    background: linear-gradient(
        90deg,
        var(--color-accent-primary) 0%,
        var(--color-accent-secondary) 25%,
        var(--color-accent-primary) 50%,
        var(--color-accent-secondary) 75%,
        var(--color-accent-primary) 100%
    );
    background-size: 400% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: kinetic-gradient 8s ease-in-out infinite;
    text-shadow: none;
}

@keyframes kinetic-gradient {
    0%, 100% {
        background-position: 0% 50%;
        filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.3));
    }
    50% {
        background-position: 100% 50%;
        filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.4));
    }
}

/* Breathing Glow Effect */
.hero h1::before {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    background: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    animation: breathing-glow 4s ease-in-out infinite;
}

@keyframes breathing-glow {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.02);
    }
}

/* ============================================
   Enhanced Mouse Glow with Trail
   ============================================ */
.mouse-glow {
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(0, 217, 255, 0.2) 0%,
        rgba(139, 92, 246, 0.15) 30%,
        rgba(0, 217, 255, 0.05) 50%,
        transparent 70%
    );
    filter: blur(10px);
    mix-blend-mode: screen;
}

.mouse-glow::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    animation: glow-pulse 2s ease-in-out infinite;
}

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

/* ============================================
   Magnetic Button Effect
   ============================================ */
.btn-primary,
.btn-secondary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 10px 30px rgba(0, 217, 255, 0.4),
        0 0 50px rgba(0, 217, 255, 0.2);
}

/* Ripple Effect on Click */
.btn-primary:active,
.btn-secondary:active {
    transform: scale(0.98);
}

/* ============================================
   Immersive Stats Counter Animation
   ============================================ */
.hero-stat-value {
    position: relative;
    display: inline-block;
}

.hero-stat-value::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    animation: stat-underline 2s ease-out 0.5s forwards;
}

@keyframes stat-underline {
    to {
        transform: scaleX(1);
    }
}

/* ============================================
   Award Badge Particle Burst
   ============================================ */
.award-badge-large {
    position: relative;
}

.award-badge-large::before,
.award-badge-large::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 2px solid var(--color-accent-primary);
    opacity: 0;
    animation: badge-ripple 3s ease-out infinite;
}

.award-badge-large::after {
    animation-delay: 1.5s;
}

@keyframes badge-ripple {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* ============================================
   Industry Card Hover - Depth Reveal
   ============================================ */
.industry-card {
    overflow: hidden;
}

.industry-card-content {
    position: relative;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.industry-card:hover .industry-card-content {
    transform: translateZ(30px);
}

.industry-card:hover .industry-icon {
    animation: icon-bounce 0.6s ease;
}

@keyframes icon-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    25% { transform: translateY(-10px) scale(1.1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

/* ============================================
   CTA Section - Animated Background
   ============================================ */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(
        from 0deg at 50% 50%,
        rgba(0, 217, 255, 0.1) 0deg,
        transparent 60deg,
        rgba(139, 92, 246, 0.1) 120deg,
        transparent 180deg,
        rgba(0, 217, 255, 0.1) 240deg,
        transparent 300deg,
        rgba(139, 92, 246, 0.1) 360deg
    );
    animation: cta-rotate 30s linear infinite;
}

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

/* ============================================
   Text Gradient Animation for .text-gradient
   ============================================ */
.text-gradient {
    background: linear-gradient(
        90deg,
        var(--color-accent-primary),
        var(--color-accent-secondary),
        var(--color-accent-primary)
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: text-gradient-flow 5s linear infinite;
}

@keyframes text-gradient-flow {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

/* ============================================
   Focus States - Accessibility
   ============================================ */
.btn:focus-visible,
.card:focus-visible,
a:focus-visible {
    outline: 2px solid var(--color-accent-primary);
    outline-offset: 4px;
}

/* ============================================
   Reduced Motion Preference
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .three-sphere-container {
        display: none;
    }
    
    .hero-sphere {
        display: block !important;
    }
}

