/* ========================================
   GlobalTech Website - Complete Styles
   ======================================== */

/* ========================================
   1. CSS Variables & Design Tokens
   ======================================== */
:root {
    /* Colors */
    --color-background: #0f131a;
    --color-background-alt: #131720;
    --color-card: #171c26;
    --color-card-hover: #1f242e;
    --color-border: #2a3140;

    /* Text Colors */
    --color-text-primary: #f8fafc;
    --color-text-secondary: #94a3b8;
    --color-text-muted: #64748b;

    /* Accent Colors */
    --color-accent-blue: #3b82f6;
    --color-accent-cyan: #06b6d4;
    --color-accent-purple: #a855f7;
    --color-accent-green: #22c55e;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6, #06b6d4);
    --gradient-glow: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(6, 182, 212, 0.3));
    --gradient-card: linear-gradient(135deg, #131720, #0f131a);

    /* Typography */
    --font-sans: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'IBM Plex Mono', monospace;

    /* Spacing */
    --section-padding: 6rem;
    --container-max: 1280px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3), 0 0 40px rgba(59, 130, 246, 0.2);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ========================================
   2. Base Reset & Typography
   ======================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-background);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 90% 70%, rgba(168, 85, 247, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: backgroundDrift 30s ease-in-out infinite alternate;
}

body::after {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.12), transparent 45%),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 40px),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 40px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    animation: gridShift 60s linear infinite;
    mix-blend-mode: screen;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent-cyan);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

/* ========================================
   3. Layout & Container
   ======================================== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header .subtitle {
    display: inline-block;
    color: var(--color-accent-cyan);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(6, 182, 212, 0.1);
    border-radius: var(--radius-full);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.section-header h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   4. Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4), 0 0 60px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-card);
    border-color: var(--color-accent-blue);
    color: var(--color-accent-cyan);
}

/* ========================================
   5. Header & Navigation
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(15, 19, 26, 0.8);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(42, 49, 64, 0.5);
    transition: all var(--transition-normal);
}

.header.scrolled {
    padding: 0.75rem 0;
    background: rgba(15, 19, 26, 0.95);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--color-text-secondary);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: all var(--transition-normal);
}

/* ========================================
   6. Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 10rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--color-accent-cyan);
    margin-bottom: 1.5rem;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--color-accent-cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

/* Hero Bottom Stats */
.hero-bottom-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-num {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-txt {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-visual-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Code Snippet Box */
.code-snippet-box {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 50px rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 30px rgba(59, 130, 246, 0.2);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.code-dots {
    display: flex;
    gap: 0.5rem;
}

.code-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dots .dot.red {
    background: #ef4444;
}

.code-dots .dot.yellow {
    background: #eab308;
}

.code-dots .dot.green {
    background: #22c55e;
}

.code-filename {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-family: var(--font-mono);
}

.code-content {
    padding: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.8;
    direction: ltr;
    text-align: left;
}

.code-line {
    white-space: pre;
}

.code-purple {
    color: #a855f7;
}

.code-blue {
    color: #3b82f6;
}

.code-cyan {
    color: #06b6d4;
}

.code-green {
    color: #22c55e;
}

.code-orange {
    color: #f97316;
}

/* Hero Stats Cards */
.hero-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hero-stat-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    text-align: center;
    transition: transform var(--transition-normal);
}

.hero-stat-card:hover {
    transform: translateY(-5px);
}

.hero-stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.hero-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent-cyan);
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 10;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-top-right {
    top: auto;
    bottom: -30px;
    right: -30px;
    left: auto;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9), rgba(6, 182, 212, 0.9));
    animation: float 6s ease-in-out infinite;
}

.floating-badge-icon {
    top: -30px;
    left: -30px;
    right: auto;
    bottom: auto;
    background: var(--gradient-primary);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
    animation: float 5s ease-in-out infinite reverse;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Floating Animation (Updated to match request) */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.floating-top-right,
.floating-badge-icon {
    animation-duration: 4s;
    /* Updated from 6s/5s */
}

/* Scroll Animations */
.fade-in-right,
.fade-in-left,
.fade-in-up {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-right {
    transform: translateX(60px);
}

.fade-in-left {
    transform: translateX(-60px);
}

.fade-in-up {
    transform: translateY(40px);
}

/* Trigger State */
.visible.fade-in-right,
.visible.fade-in-left,
.visible.fade-in-up {
    opacity: 1;
    transform: translate(0, 0);
}

/* Glow Effect */
.glow-effect {
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.4), 0 0 60px rgba(6, 182, 212, 0.3);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInUp 1s ease 1.5s forwards;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(59, 130, 246, 0.5);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent-cyan);
    border-radius: 50%;
    animation: scrollBounce 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px var(--color-accent-cyan);
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(12px);
        opacity: 0.5;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ========================================
   7. Stats Section
   ======================================== */
/* ========================================
   7. Section Headers & Utilities
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-header .subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent-cyan);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    border-radius: var(--radius-full);
}

.section-header h2 {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========================================
   8. About Section
   ======================================== */
.about {
    background: var(--color-background);
    padding: 8rem 0;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
    z-index: 1;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-accent-blue);
    border-radius: var(--radius-xl);
    opacity: 0.3;
    z-index: -1;
    transition: transform var(--transition-normal);
}

.about-image:hover::before {
    transform: translate(1rem, -1rem);
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.about-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-blue);
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.about-feature:hover .about-feature-icon {
    background: var(--gradient-primary);
    color: white;
    transform: rotate(10deg);
}

.about-feature h4 {
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.about-feature p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ========================================
   9. Services Section
   ======================================== */
.services {
    background: var(--color-background-alt);
    padding: 8rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--color-card);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-accent-blue);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-blue);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent-cyan);
}

.about-feature h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.about-feature p {
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* ========================================
   9. Services Section
   ======================================== */
.services {
    background: var(--color-background-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--gradient-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    background: rgba(59, 130, 246, 0.2);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-accent-cyan);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ========================================
   10. Portfolio Section
   ======================================== */
.portfolio {
    background: var(--color-background);
    padding: 8rem 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    background: var(--color-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: all var(--transition-normal);
    position: relative;
}

.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--color-accent-blue);
}

.portfolio-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 1;
    transition: opacity var(--transition-normal);
}

/* Tag style */
.portfolio-tag {
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.9);
    backdrop-filter: blur(4px);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transform: translateY(0);
    transition: transform var(--transition-normal);
}

.portfolio-card:hover .portfolio-tag {
    transform: translateY(-5px);
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: white;
    transition: color var(--transition-normal);
}

.portfolio-card:hover .portfolio-content h3 {
    color: var(--color-accent-cyan);
}

.portfolio-content p {
    margin-bottom: 0;
    line-height: 1.6;
    color: var(--color-text-secondary);
}

/* ========================================
   11. Process Section
   ======================================== */
.process {
    background: var(--color-background-alt);
    padding: 8rem 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 2rem;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: linear-gradient(to left, var(--color-accent-blue), var(--color-accent-cyan));
    opacity: 0.3;
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--color-card);
    border: 2px solid var(--color-accent-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all var(--transition-normal);
    box-shadow: 0 0 0 8px var(--color-background-alt);
}

.process-step:hover .step-number {
    background: var(--gradient-primary);
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.process-step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: white;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ========================================
   12. Testimonials Section
   ======================================== */
.testimonials {
    background: var(--color-background);
    padding: 8rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: all var(--transition-normal);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 2rem;
    font-size: 8rem;
    color: var(--color-accent-blue);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--color-accent-cyan);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent-cyan);
}

.testimonial-info h4 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    color: white;
}

.testimonial-info span {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    color: #fbbf24;
    fill: currentColor;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* ========================================
   13. Team Section
   ======================================== */
.team {
    background: var(--color-background-alt);
    padding: 8rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-align: center;
    transition: all var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent-blue);
}

.team-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--color-card), transparent 60%);
}

.team-content {
    padding: 2rem;
    position: relative;
    margin-top: -3rem;
    z-index: 1;
}

.team-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.team-role {
    color: var(--color-accent-cyan);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    color: var(--color-text-muted);
}

.team-social a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
}

.team-social svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   14. Pricing Section
   ======================================== */
.pricing {
    background: var(--color-background);
    padding: 8rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    position: relative;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.pricing-card.featured {
    border: 2px solid var(--color-accent-blue);
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.1) 0%, var(--color-card) 100%);
    transform: scale(1.05);
    z-index: 1;
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
    content: 'الأكثر طلباً';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.4);
}

.pricing-card:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-5px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.pricing-header .price {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-header .period {
    color: var(--color-text-muted);
    font-size: 0.875rem;
}

.pricing-features {
    margin-bottom: 3rem;
    flex-grow: 1;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--color-text-secondary);
}

.pricing-feature svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent-green);
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
}


/* ========================================
   15. Partners Section
   ======================================== */
.partners {
    background: var(--color-background-alt);
    padding: 4rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 3rem;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all var(--transition-normal);
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-logo img {
    max-height: 48px;
    width: auto;
}

/* ========================================
   16. Contact Section
   ======================================== */
.contact {
    background: var(--color-background);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1.5rem;
}

.contact-items {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-accent-cyan);
}

.contact-item h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-item p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.contact-form {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.contact-form .btn {
    width: 100%;
}

/* ========================================
   17. Footer
   ======================================== */
.footer {
    background: var(--color-background-alt);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    margin-top: 1rem;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-accent-blue);
    border-color: var(--color-accent-blue);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    color: var(--color-text-secondary);
}

.footer-social a:hover svg {
    color: white;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-accent-cyan);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ========================================
   18. Animations & Effects
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: inherit;
    opacity: 0;
    z-index: -1;
    filter: blur(8px);
    transition: opacity var(--transition-normal);
}

.glow-effect:hover::before {
    opacity: 0.5;
}

/* Cursor glow effect */
/* Cursor Lens Effect */
#cursor-glow {
    position: fixed;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: brightness(1.2) contrast(1.1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.3);
    transition: transform 0.08s linear;
}

.section-glow-divider {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-accent-blue), transparent);
    opacity: 0.5;
    box-shadow: 0 0 20px var(--color-accent-blue);
}

body:hover #cursor-glow {
    opacity: 1;
}

/* ========================================
   19. Responsive Design
   ======================================== */
/* ========================================
   19. Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 4rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-steps {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .process-steps::before {
        display: none;
    }

    .process-step {
        flex: 0 0 calc(33.333% - 1.5rem);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: none;
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-bottom-stats {
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .hero-visual {
        display: none;
        /* Hide visual on smaller tablets/mobiles if crowding */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-description {
        margin: 0 auto 2rem;
    }

    .hero-bottom-stats {
        justify-content: center;
        width: 100%;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-background);
        border-bottom: 1px solid var(--color-border);
        padding: 1rem;
    }

    .hero-bottom-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }

    .hero-stat-item {
        align-items: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex: 0 0 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .partner-logo img {
        max-height: 32px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .stat-num {
        font-size: 1.75rem;
    }
}

/* ========================================
   PREMIUM DYNAMIC BACKGROUND
   ======================================== */

/* Animated Particle Canvas */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Neural Grid Background */
.neural-grid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(60px, 60px);
    }
}

/* Floating Orbs in Background */
.floating-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
    bottom: 20%;
    left: -5%;
    animation-delay: -5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -30px) scale(1.05);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(-30px, -20px) scale(1.02);
    }
}

/* ========================================
   PREMIUM ABOUT SECTION
   ======================================== */

.about-premium {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
    background: var(--color-background);
}

/* Section Neural Background */
.about-premium .section-neural-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* 3D Card Container */
.about-3d-container {
    perspective: 1500px;
    margin-bottom: 5rem;
}

.about-3d-card {
    background: linear-gradient(145deg, rgba(23, 28, 38, 0.9), rgba(15, 19, 26, 0.95));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 32px;
    padding: 4rem;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(59, 130, 246, 0.1);
    overflow: hidden;
}

.about-3d-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.1) 0%,
            transparent 30%,
            transparent 70%,
            rgba(6, 182, 212, 0.1) 100%);
    border-radius: 32px;
    pointer-events: none;
}

/* Holographic Shine Effect */
.about-3d-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 70%);
    transform: rotate(45deg);
    animation: holographicShine 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes holographicShine {

    0%,
    100% {
        transform: rotate(45deg) translateX(-100%);
    }

    50% {
        transform: rotate(45deg) translateX(100%);
    }
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.about-header .glitch-text {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #06b6d4, #a855f7);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    position: relative;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Hologram Stats Ring */
.hologram-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.stat-ring {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-ring-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.stat-ring-bg {
    fill: none;
    stroke: rgba(59, 130, 246, 0.1);
    stroke-width: 8;
}

.stat-ring-progress {
    fill: none;
    stroke: url(#statGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    transition: stroke-dashoffset 2s ease-out;
}

.stat-ring.visible .stat-ring-progress {
    stroke-dashoffset: var(--progress, 0);
}

.stat-ring-content {
    text-align: center;
    z-index: 2;
}

.stat-ring-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-ring-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-top: 0.5rem;
}

/* Hologram Glow */
.stat-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            rgba(59, 130, 246, 0.3),
            rgba(6, 182, 212, 0.3),
            rgba(168, 85, 247, 0.3),
            rgba(59, 130, 246, 0.3));
    filter: blur(12px);
    opacity: 0.5;
    animation: rotateGlow 4s linear infinite;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Tech Features Grid */
.tech-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.tech-feature-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.tech-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.tech-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.tech-feature-card:hover::before {
    transform: scaleX(1);
}

.tech-feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
}

.tech-feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-accent-cyan);
    transition: all 0.4s ease;
}

.tech-feature-card:hover .tech-feature-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.tech-feature-card:hover .tech-feature-icon svg {
    color: white;
    transform: scale(1.1);
}

.tech-feature-title {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-primary);
}

.tech-feature-desc {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin: 0;
}

/* ========================================
   PREMIUM SERVICES SECTION - FUTURISTIC
   ======================================== */

.services-futuristic {
    position: relative;
    padding: 10rem 0;
    overflow: hidden;
    background: var(--color-background-alt);
}

/* Animated Tech Grid Background */
.tech-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: techGridPulse 4s ease-in-out infinite;
}

@keyframes techGridPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

/* Central Orbit Container */
.services-orbit-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 700px;
    margin: 4rem 0;
}

/* Central Hub */
.central-hub {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(145deg, rgba(59, 130, 246, 0.2), rgba(6, 182, 212, 0.2));
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow:
        0 0 60px rgba(59, 130, 246, 0.3),
        inset 0 0 30px rgba(59, 130, 246, 0.1);
    animation: hubPulse 3s ease-in-out infinite;
}

@keyframes hubPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 60px rgba(59, 130, 246, 0.3), inset 0 0 30px rgba(59, 130, 246, 0.1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 80px rgba(59, 130, 246, 0.5), inset 0 0 40px rgba(59, 130, 246, 0.2);
    }
}

.central-hub-content {
    text-align: center;
}

.central-hub-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.central-hub-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-accent-cyan);
}

/* Orbit Rings */
.orbit-ring {
    position: absolute;
    border: 1px dashed rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    animation: orbitRotate 30s linear infinite;
}

.orbit-ring-1 {
    width: 400px;
    height: 400px;
    animation-duration: 25s;
}

.orbit-ring-2 {
    width: 550px;
    height: 550px;
    animation-duration: 35s;
    animation-direction: reverse;
}

@keyframes orbitRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hexagonal Service Cards */
.hex-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 5;
}

.service-hex-card {
    position: relative;
    background: linear-gradient(145deg, rgba(23, 28, 38, 0.95), rgba(15, 19, 26, 0.98));
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

/* Animated Border */
.service-hex-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 26px;
    background: conic-gradient(from var(--angle, 0deg),
            transparent 0%,
            rgba(59, 130, 246, 0.5) 10%,
            rgba(6, 182, 212, 0.5) 20%,
            transparent 30%);
    z-index: -1;
    animation: borderRotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-hex-card:hover::before {
    opacity: 1;
}

@keyframes borderRotate {
    from {
        --angle: 0deg;
    }

    to {
        --angle: 360deg;
    }
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

/* Glassmorphism Inner */
.service-hex-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.05) 0%,
            transparent 50%,
            rgba(59, 130, 246, 0.05) 100%);
    border-radius: 24px;
    pointer-events: none;
}

.service-hex-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(59, 130, 246, 0.2);
}

/* Orbit Icon Container */
.service-hex-icon {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
}

.icon-orbit-ring {
    position: absolute;
    inset: -10px;
    border: 2px dashed rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    animation: iconOrbit 8s linear infinite;
}

@keyframes iconOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.icon-core {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.15));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.icon-core svg {
    width: 36px;
    height: 36px;
    color: var(--color-accent-cyan);
    transition: all 0.4s ease;
}

.service-hex-card:hover .icon-core {
    background: var(--gradient-primary);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.service-hex-card:hover .icon-core svg {
    color: white;
    transform: scale(1.2);
}

/* Floating Particles on Card */
.card-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 24px;
    pointer-events: none;
}

.card-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.5);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-hex-card:hover .card-particle {
    opacity: 1;
    animation: floatParticle 3s ease-in-out infinite;
}

.card-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-particle:nth-child(2) {
    top: 40%;
    right: 15%;
    animation-delay: 0.5s;
}

.card-particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 1s;
}

.card-particle:nth-child(4) {
    top: 60%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes floatParticle {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-20px) scale(1.5);
        opacity: 1;
    }
}

.service-hex-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
    position: relative;
    z-index: 2;
}

.service-hex-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Tech Tag */
.service-tech-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 999px;
    font-size: 0.75rem;
    color: var(--color-accent-cyan);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-hex-card:hover .service-tech-tag {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.4);
}

/* Responsive Premium Sections */
@media (max-width: 1200px) {
    .tech-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hex-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-3d-card {
        padding: 2.5rem 1.5rem;
    }

    .hologram-stats {
        gap: 1.5rem;
    }

    .stat-ring {
        width: 130px;
        height: 130px;
    }

    .stat-ring-value {
        font-size: 2rem;
    }

    .tech-features-grid {
        grid-template-columns: 1fr;
    }

    .hex-services-grid {
        grid-template-columns: 1fr;
    }

    .services-orbit-container {
        min-height: auto;
    }

    .orbit-ring,
    .central-hub {
        display: none;
    }

    .about-header .glitch-text {
        font-size: 2rem;
    }
}

/* ========================================
   SKYWAY TECHNOLOGY - PREMIUM ENHANCEMENTS
   ======================================== */

/* Logo Accent Styling */
.logo-accent {
    color: var(--color-accent-cyan);
    font-weight: 800;
}

.logo-text {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo-icon {
    position: relative;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.logo:hover .logo-icon {
    animation: logoGlow 0.5s ease forwards;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 0 rgba(59, 130, 246, 0));
    }

    100% {
        filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.6));
    }
}

/* Footer Logo Special Styling */
.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
}

/* ========================================
   PREMIUM FOOTER REDESIGN
   ======================================== */
.footer {
    background: linear-gradient(180deg, var(--color-background) 0%, #070a10 100%);
    padding: 0;
    border-top: none;
    position: relative;
    overflow: hidden;
}

/* Wave Divider */
.footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%230f131a' fill-opacity='1' d='M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,149.3C672,149,768,171,864,165.3C960,160,1056,128,1152,117.3C1248,107,1344,117,1392,122.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E") no-repeat center top;
    background-size: cover;
    z-index: 1;
}

/* Tech Circuit Background */
.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(6, 182, 212, 0.06) 0%, transparent 30%);
    pointer-events: none;
}

.footer .container {
    position: relative;
    z-index: 2;
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    padding-top: 2rem;
}

/* Newsletter Section */
.footer-newsletter {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.footer-newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-newsletter h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-newsletter p {
    color: var(--color-text-secondary);
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-accent-cyan);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.newsletter-form input::placeholder {
    color: var(--color-text-muted);
}

/* Enhanced Social Icons */
.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.footer-social a {
    width: 48px;
    height: 48px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.footer-social a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    border-color: transparent;
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-social svg {
    width: 22px;
    height: 22px;
    color: var(--color-text-secondary);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.footer-social a:hover svg {
    color: white;
    transform: scale(1.1);
}

/* Footer Links Enhanced */
.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--color-accent-cyan);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-accent-cyan);
    transform: translateX(-5px);
}

.footer-links a:hover::before {
    width: 15px;
}

/* Footer Bottom Enhanced */
.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* ========================================
   PREMIUM PARTNERS SECTION - INFINITE SCROLL
   ======================================== */
.partners {
    background: linear-gradient(180deg, var(--color-background) 0%, var(--color-background-alt) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.partners::before,
.partners::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 10;
    pointer-events: none;
}

.partners::before {
    right: 0;
    background: linear-gradient(to left, var(--color-background-alt), transparent);
}

.partners::after {
    left: 0;
    background: linear-gradient(to right, var(--color-background-alt), transparent);
}

.partners-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partners-marquee {
    display: flex;
    gap: 4rem;
    animation: marqueeScroll 30s linear infinite;
}

@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.partners-marquee:hover {
    animation-play-state: paused;
}

.partners-grid {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-lg);
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    min-width: 180px;
}

.partner-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.15);
}

.partner-logo img {
    max-height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

/* Partners Counter */
.partners-counter {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.partners-counter span {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partners-counter p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-top: 0.5rem;
}

/* ========================================
   PREMIUM PRICING SECTION
   ======================================== */
.pricing {
    background: var(--color-background);
    padding: 8rem 0;
    position: relative;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.pricing-toggle span {
    font-size: 1rem;
    color: var(--color-text-secondary);
    transition: color 0.3s ease;
}

.pricing-toggle span.active {
    color: var(--color-text-primary);
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-switch::before {
    content: '';
    position: absolute;
    top: 3px;
    right: 3px;
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
}

.toggle-switch.yearly::before {
    right: calc(100% - 27px);
}

/* Pricing Cards Enhanced */
.pricing-card {
    background: linear-gradient(145deg, rgba(23, 28, 38, 0.95), rgba(15, 19, 26, 0.98));
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 28px;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(59, 130, 246, 0.15);
}

/* Featured Card */
.pricing-card.featured {
    border: 2px solid rgba(59, 130, 246, 0.5);
    background: linear-gradient(180deg,
            rgba(59, 130, 246, 0.15) 0%,
            rgba(23, 28, 38, 0.98) 30%);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.featured::before {
    transform: scaleX(1);
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(from 0deg,
            rgba(59, 130, 246, 0.3),
            rgba(6, 182, 212, 0.3),
            rgba(168, 85, 247, 0.3),
            rgba(59, 130, 246, 0.3));
    border-radius: 30px;
    z-index: -1;
    animation: rotateBorder 4s linear infinite;
    filter: blur(10px);
}

@keyframes rotateBorder {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

/* Popular Badge Animation */
.pricing-card.featured .pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 5px 20px rgba(59, 130, 246, 0.4);
    }

    50% {
        box-shadow: 0 5px 30px rgba(59, 130, 246, 0.6);
    }
}

/* Price Animation on Hover */
.pricing-header .price {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-header .price {
    transform: scale(1.05);
}

/* Feature checkmarks */
.pricing-feature svg {
    color: var(--color-accent-green);
    filter: drop-shadow(0 0 3px rgba(34, 197, 94, 0.5));
}

/* ========================================
   HERO SECTION - ULTIMATE ENHANCEMENT
   ======================================== */

/* Particle Canvas */
#hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Tech Circuit Lines */
.hero-circuit-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    height: 1px;
    animation: circuitPulse 3s ease-in-out infinite;
}

.circuit-line:nth-child(1) {
    top: 20%;
    width: 40%;
    left: -10%;
    animation-delay: 0s;
}

.circuit-line:nth-child(2) {
    top: 40%;
    width: 60%;
    right: -10%;
    left: auto;
    animation-delay: 0.5s;
}

.circuit-line:nth-child(3) {
    top: 60%;
    width: 35%;
    left: 0;
    animation-delay: 1s;
}

.circuit-line:nth-child(4) {
    top: 80%;
    width: 50%;
    right: -5%;
    left: auto;
    animation-delay: 1.5s;
}

.circuit-line-v {
    position: absolute;
    background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.2), transparent);
    width: 1px;
    animation: circuitPulseV 4s ease-in-out infinite;
}

.circuit-line-v:nth-child(5) {
    left: 15%;
    height: 50%;
    top: 10%;
    animation-delay: 0.3s;
}

.circuit-line-v:nth-child(6) {
    left: 85%;
    height: 40%;
    top: 30%;
    animation-delay: 0.8s;
}

@keyframes circuitPulse {

    0%,
    100% {
        opacity: 0.1;
        transform: translateX(-10%);
    }

    50% {
        opacity: 0.5;
        transform: translateX(10%);
    }
}

@keyframes circuitPulseV {

    0%,
    100% {
        opacity: 0.1;
        transform: translateY(-10%);
    }

    50% {
        opacity: 0.4;
        transform: translateY(10%);
    }
}

/* Floating Geometric Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border: 1px solid rgba(59, 130, 246, 0.2);
    animation: shapeFloat 8s ease-in-out infinite;
}

.hero-shape.shape-1 {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    top: 15%;
    right: 10%;
    animation-delay: 0s;
    background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.1), transparent);
}

.hero-shape.shape-2 {
    width: 40px;
    height: 40px;
    top: 30%;
    left: 8%;
    transform: rotate(45deg);
    animation-delay: 1s;
    background: rgba(6, 182, 212, 0.05);
}

.hero-shape.shape-3 {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    bottom: 25%;
    right: 15%;
    transform: rotate(15deg);
    animation-delay: 2s;
    background: rgba(168, 85, 247, 0.05);
}

.hero-shape.shape-4 {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    bottom: 35%;
    left: 20%;
    animation-delay: 0.5s;
    background: rgba(59, 130, 246, 0.1);
}

@keyframes shapeFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }

    25% {
        transform: translateY(-15px) rotate(5deg);
        opacity: 0.8;
    }

    50% {
        transform: translateY(-25px) rotate(-5deg);
        opacity: 0.6;
    }

    75% {
        transform: translateY(-15px) rotate(3deg);
        opacity: 0.7;
    }
}

/* Glowing Orbs with Pulse */
.hero-glow-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    animation: glowPulse 5s ease-in-out infinite;
}

.glow-orb.orb-hero-1 {
    width: 400px;
    height: 400px;
    background: rgba(59, 130, 246, 0.15);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.glow-orb.orb-hero-2 {
    width: 300px;
    height: 300px;
    background: rgba(6, 182, 212, 0.12);
    bottom: 10%;
    left: -10%;
    animation-delay: 1.5s;
}

.glow-orb.orb-hero-3 {
    width: 200px;
    height: 200px;
    background: rgba(168, 85, 247, 0.1);
    top: 40%;
    left: 30%;
    animation-delay: 3s;
}

@keyframes glowPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Enhanced Hero Content */
.hero-badge {
    animation: badgeSlideIn 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@keyframes badgeSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    animation: heroTitleIn 1s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

@keyframes heroTitleIn {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-description {
    animation: heroDescIn 1s ease forwards;
    animation-delay: 0.7s;
    opacity: 0;
}

@keyframes heroDescIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    animation: heroButtonsIn 1s ease forwards;
    animation-delay: 0.9s;
    opacity: 0;
}

@keyframes heroButtonsIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typing Cursor Effect */
.typing-cursor {
    display: inline-block;
    width: 3px;
    height: 1em;
    background: var(--color-accent-cyan);
    margin-left: 5px;
    animation: cursorBlink 1s infinite;
    vertical-align: text-bottom;
}

@keyframes cursorBlink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    padding: 0.4rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-full);
}

.lang-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    background: transparent;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.lang-btn:hover:not(.active) {
    color: var(--color-text-primary);
}

/* LTR Mode Styles */
html[dir="ltr"] body {
    font-family: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

html[dir="ltr"] .nav-link::after {
    right: auto;
    left: 0;
}

html[dir="ltr"] .footer-links h4::after {
    right: auto;
    left: 0;
}

html[dir="ltr"] .footer-links a:hover {
    transform: translateX(5px);
}

/* ========================================
   GLOBAL ENHANCED DYNAMIC BACKGROUND
   ======================================== */

/* More Vibrant Floating Orbs */
.orb-1 {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    animation-duration: 20s;
}

.orb-2 {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.35) 0%, transparent 70%);
    animation-duration: 25s;
}

.orb-3 {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    animation-duration: 18s;
}

/* Gradient Mesh Background Enhancement */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 80%, rgba(6, 182, 212, 0.04) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: meshShift 15s ease-in-out infinite alternate;
}

@keyframes meshShift {
    0% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }

    100% {
        background-position: 10% 10%, 90% 90%, 60% 40%;
    }
}

/* Section Transitions */
section {
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    opacity: 0.5;
}

/* ========================================
   PREMIUM VISUAL EFFECTS - PHASE 2
   ======================================== */

/* Moving Mesh Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.15) 0px, transparent 50%),
        radial-gradient(at 50% 0%, rgba(6, 182, 212, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(168, 85, 247, 0.15) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(30, 64, 175, 0.1) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(15, 23, 42, 0.2) 0px, transparent 50%);
    z-index: -2;
    filter: blur(80px);
    animation: meshFlow 20s ease-in-out infinite alternate;
}

@keyframes meshFlow {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(2%, 2%);
    }

    100% {
        transform: scale(1) translate(-2%, -2%);
    }
}

/* Glassmorphism Global Helper */
.glass-card {
    background: rgba(23, 28, 38, 0.6) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3) !important;
}

/* ========================================
   ROTATING PARTNERS ORBITAL SECTION
   ======================================== */
.partners-orbit {
    padding: 10rem 0;
    overflow: hidden;
    background: radial-gradient(circle at 50% 20%, rgba(59, 130, 246, 0.12), transparent 55%);
    position: relative;
}

.partners-orbit::before,
.partners-orbit::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.partners-orbit::before {
    background: radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.12), transparent 50%);
    opacity: 0.7;
}

.partners-orbit::after {
    background: radial-gradient(circle at 70% 70%, rgba(168, 85, 247, 0.12), transparent 55%);
    opacity: 0.5;
}

.partners-orbit-container {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 4rem auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: rgba(15, 19, 26, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.35),
        inset 0 0 60px rgba(59, 130, 246, 0.08);
}

.partners-orbit-container::before,
.partners-orbit-container::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.partners-orbit-container::before {
    inset: 40px;
    border: 1px solid rgba(6, 182, 212, 0.2);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.15);
}

.partners-orbit-container::after {
    inset: 110px;
    border: 1px dashed rgba(59, 130, 246, 0.25);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.12);
}

.partners-center-hub {
    position: absolute;
    width: 180px;
    height: 180px;
    background: var(--gradient-primary);
    border-radius: 50%;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow:
        0 0 50px rgba(59, 130, 246, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: hubPulse 3s ease-in-out infinite;
}

.partners-center-hub::before {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
    animation: hubRing 4s ease-in-out infinite;
}

.hub-content {
    text-align: center;
    color: white;
}

.hub-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.hub-text {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Orbit Rings */
.orbit-ring {
    position: absolute;
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    transform-style: preserve-3d;
    box-shadow: inset 0 0 30px rgba(59, 130, 246, 0.08);
}

.orbit-ring-1 {
    width: 100%;
    height: 100%;
    animation: orbitRotation 40s linear infinite;
    --orbit-radius: 300px;
}

.orbit-ring-2 {
    width: 70%;
    height: 70%;
    animation: orbitRotationReverse 55s linear infinite;
    border: 1px dashed rgba(6, 182, 212, 0.25);
}

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    margin: -50px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    animation: orbitFloat 6s ease-in-out infinite;

    /* Position based on angle provided in style attribute */
    transform:
        rotate(var(--angle)) translate(var(--orbit-radius)) rotate(calc(-1 * var(--angle)));
}

.orbit-ring-1 .orbit-item:nth-child(1) {
    animation-delay: 0s;
}

.orbit-ring-1 .orbit-item:nth-child(2) {
    animation-delay: 0.6s;
}

.orbit-ring-1 .orbit-item:nth-child(3) {
    animation-delay: 1.2s;
}

.orbit-ring-1 .orbit-item:nth-child(4) {
    animation-delay: 1.8s;
}

.orbit-ring-1 .orbit-item:nth-child(5) {
    animation-delay: 2.4s;
}

.orbit-ring-1 .orbit-item:nth-child(6) {
    animation-delay: 3s;
}

.orbit-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    margin: -7px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.9), rgba(6, 182, 212, 0.5));
    box-shadow: 0 0 12px rgba(6, 182, 212, 0.5);
    transform: rotate(var(--angle)) translate(210px) rotate(calc(-1 * var(--angle)));
    opacity: 0.8;
}

/* Individual rotation fix - ensures logos remain upright while the ring rotates */
.orbit-item img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(100%) brightness(1.5);
    transition: all 0.4s ease;
    /* Static counter-rotation of the ring */
    animation: counterRotate 40s linear infinite;
}

.orbit-item:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--color-accent-cyan);
    transform:
        rotate(var(--angle)) translate(calc(var(--orbit-radius) + 20px)) rotate(calc(-1 * var(--angle))) scale(1.1);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
    animation-play-state: paused;
}

.orbit-item:hover img {
    filter: grayscale(0%) brightness(1);
}

@keyframes orbitRotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitRotationReverse {
    from {
        transform: rotate(360deg);
    }
    to {
        transform: rotate(0deg);
    }
}

@keyframes counterRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

@keyframes orbitFloat {
    0% {
        transform: rotate(var(--angle)) translate(var(--orbit-radius)) rotate(calc(-1 * var(--angle))) translateY(0);
    }
    100% {
        transform: rotate(var(--angle)) translate(var(--orbit-radius)) rotate(calc(-1 * var(--angle))) translateY(-6px);
    }
}

@keyframes hubRing {
    0% {
        transform: scale(0.96);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.08);
        opacity: 0.2;
    }
}

/* ========================================
   ENHANCED PRICING SECTION - GLASS & GLOW
   ======================================== */
.pricing-card {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(16px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 32px !important;
}

.pricing-card.featured {
    background: linear-gradient(180deg,
            rgba(59, 130, 246, 0.1) 0%,
            rgba(23, 28, 38, 0.6) 100%) !important;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(59, 130, 246, 0.2) !important;
    overflow: visible !important;
}

.pricing-card.featured::after {
    display: none;
    /* remove old glow */
}

/* Price Counter Aesthetic */
.price {
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: -2px;
}

/* ========================================
   LOGO STYLING ENHANCEMENT
   ======================================== */
.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon svg {
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.4));
}

.logo-icon:hover svg {
    filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.6));
    animation: rocketLaunch 0.8s ease forwards;
}

@keyframes rocketLaunch {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(2px);
    }

    100% {
        transform: translateY(-3px);
    }
}

/* Responsive Fix for Orbit */
@media (max-width: 768px) {
    .partners-orbit-container {
        width: 300px;
        height: 300px;
    }

    .partners-center-hub {
        width: 120px;
        height: 120px;
    }

    .orbit-item {
        width: 60px;
        height: 60px;
        margin: -30px;
        transform:
            rotate(var(--angle)) translate(var(--orbit-radius)) rotate(calc(-1 * var(--angle)));
    }

    .orbit-item:hover {
        transform:
            rotate(var(--angle)) translate(calc(var(--orbit-radius) + 10px)) rotate(calc(-1 * var(--angle))) scale(1.1);
    }

    .orbit-ring-1 {
        --orbit-radius: 150px;
    }

    .orbit-node {
        transform: rotate(var(--angle)) translate(110px) rotate(calc(-1 * var(--angle)));
    }
}

/* English Typography Improvements */
html[lang="en"] .glitch-text {
    font-weight: 800;
    letter-spacing: -1px;
}

html[lang="en"] .subtitle {
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ========================================
   BILINGUAL SWITCHER ENHANCEMENT
   ======================================== */
.lang-switcher {
    padding: 2px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
}

.lang-btn {
    padding: 0.5rem 1rem !important;
    border-radius: var(--radius-full) !important;
}

.lang-btn.active {
    background: white !important;
    color: var(--color-background) !important;
}

/* ========================================
   COORDINATED BACKGROUND EFFECTS
   ======================================== */
.bg-aura {
    position: fixed;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.8;
    mix-blend-mode: screen;
}

.aura-1 {
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
}

.aura-2 {
    bottom: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
}

@keyframes auraFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(5%, 2%) scale(1.1);
    }
}

/* Connecting lines to center */
.orbit-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-accent-cyan), transparent);
    transform-origin: left center;
    transform: rotate(180deg);
    z-index: -1;
    opacity: 0.1;
    pointer-events: none;
}


.bg-aura {
    animation: auraFloat 30s ease-in-out infinite alternate;
}

/* ========================================
   ADVANCED PRICING REFINEMENT (NEON GLASS)
   ======================================== */
.pricing-card {
    position: relative;
    overflow: visible !important;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent, rgba(59, 130, 246, 0.2));
    border-radius: 32px;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.pricing-card.featured::before {
    background: linear-gradient(135deg, var(--color-accent-cyan), var(--color-primary), var(--color-accent-purple));
    opacity: 0.3;
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card .btn {
    margin-top: auto;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.pricing-card .btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.pricing-card:hover .btn::after {
    left: 100%;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 1001;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

@keyframes backgroundDrift {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-2%, 1%) scale(1.03);
    }
    100% {
        transform: translate(2%, -1%) scale(1.05);
    }
}

@keyframes gridShift {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }
    100% {
        transform: rotate(360deg) translate(40px, -40px);
    }
}
