/* ===================================
   Dev100x - Premium Professional Styles
   Intelligent Motion Graphics & Animations
   Mobile-First, Performance Optimized
   =================================== */

/* CSS Variables */
:root {
    /* Colors - Premium Palette */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #8b5cf6;
    --accent: #ec4899;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --gold: #fbbf24;
    --gold-light: #fcd34d;
    
    /* Neutrals */
    --dark: #0a0e1a;
    --dark-light: #1a1f35;
    --dark-lighter: #2a2f45;
    --gray: #64748b;
    --gray-light: #94a3b8;
    --light: #f1f5f9;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #3b82f6 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #ec4899 100%);
    --gradient-dark: linear-gradient(180deg, #0a0e1a 0%, #1a1f35 100%);
    --gradient-glow: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    
    /* Spacing - Mobile Optimized */
    --spacing-xs: 0.375rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1.25rem;
    --spacing-lg: 1.75rem;
    --spacing-xl: 2.5rem;
    --spacing-2xl: 3.5rem;
    --spacing-3xl: 5rem;
    
    /* Typography - Mobile First */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', var(--font-primary);
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 0.9375rem;
    --font-size-lg: 1rem;
    --font-size-xl: 1.125rem;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.4);
    --shadow-glow-lg: 0 0 60px rgba(99, 102, 241, 0.6);
    --shadow-gold: 0 0 20px rgba(251, 191, 36, 0.4);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* ===================================
   PREMIUM HEADER & NAVIGATION
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.header.scrolled {
    background: rgba(10, 14, 26, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.header.scrolled::before {
    opacity: 1;
}

.header__glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 200px;
    background: var(--gradient-glow);
    filter: blur(60px);
    opacity: 0.3;
    pointer-events: none;
}

.nav {
    padding: 0;
}

.nav__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: relative;
}

@media (min-width: 768px) {
    .nav__wrapper {
        height: 70px;
    }
}

/* Premium Logo - Mobile Optimized */
.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1001;
}

.logo__icon {
    width: 32px;
    height: 32px;
    position: relative;
}

@media (min-width: 768px) {
    .logo__icon {
        width: 36px;
        height: 36px;
    }
}

.logo__svg {
    width: 100%;
    height: 100%;
}

.logo__circle {
    animation: logoRotate 20s linear infinite;
    transform-origin: center;
}

.logo__diamond {
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes logoPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(0.95); }
}

.logo__text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

@media (min-width: 768px) {
    .logo__text {
        font-size: 1.375rem;
    }
}

.logo__highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__logo:hover .logo__circle {
    animation: logoRotate 10s linear infinite;
}

.nav__logo:hover .logo__diamond {
    animation: logoPulse 1s ease-in-out infinite;
}

/* Navigation Menu */
.nav__menu {
    display: none;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav__list {
        gap: 2.5rem;
    }
}

.nav__link {
    position: relative;
    font-weight: 500;
    font-size: var(--font-size-sm);
    color: var(--gray-light);
    transition: color var(--transition-fast);
    padding: 0.5rem 0;
    display: block;
}

@media (min-width: 768px) {
    .nav__link {
        font-size: var(--font-size-base);
    }
}

.nav__link-text {
    position: relative;
    z-index: 1;
}

.nav__link-glow {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

.nav__link:hover,
.nav__link.active {
    color: var(--white);
}

.nav__link:hover .nav__link-glow,
.nav__link.active .nav__link-glow {
    width: 100%;
}

/* Premium Actions */
.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Super Advanced Credits Button */
.credits-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);
    border: 1.5px solid transparent;
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 600;
    font-size: var(--font-size-xs);
    overflow: hidden;
    transition: all var(--transition-base);
    cursor: pointer;
}

@media (min-width: 768px) {
    .credits-btn {
        padding: 0.625rem 1.125rem;
        gap: 0.5rem;
        font-size: var(--font-size-sm);
    }
}

/* Animated Border */
.credits-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    padding: 1.5px;
    background: var(--gradient-gold);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Pulsing Glow */
.credits-btn__glow {
    position: absolute;
    inset: -4px;
    background: var(--gradient-gold);
    opacity: 0;
    filter: blur(12px);
    transition: opacity var(--transition-base);
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.2; transform: scale(0.95); }
    50% { opacity: 0.4; transform: scale(1.05); }
}

.credits-btn:hover .credits-btn__glow {
    opacity: 0.6;
    animation: glowPulse 1s ease-in-out infinite;
}

/* Shimmer Effect */
.credits-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.credits-btn:hover::after {
    left: 100%;
}

.credits-btn__content {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .credits-btn__content {
        gap: 0.5rem;
    }
}

/* Animated Icon */
.credits-btn__icon {
    width: 16px;
    height: 16px;
    color: var(--gold);
    filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.6));
    animation: creditsFloat 3s ease-in-out infinite;
}

@media (min-width: 768px) {
    .credits-btn__icon {
        width: 18px;
        height: 18px;
    }
}

@keyframes creditsFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg) scale(1);
        filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.6));
    }
    25% { 
        transform: translateY(-3px) rotate(90deg) scale(1.1);
        filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.8));
    }
    50% { 
        transform: translateY(0) rotate(180deg) scale(1);
        filter: drop-shadow(0 0 4px rgba(251, 191, 36, 0.6));
    }
    75% { 
        transform: translateY(-3px) rotate(270deg) scale(1.1);
        filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.8));
    }
}

/* Dynamic Amount Display */
.credits-btn__amount {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.02em;
    animation: amountPulse 2s ease-in-out infinite;
}

@media (min-width: 768px) {
    .credits-btn__amount {
        font-size: 0.9375rem;
    }
}

@keyframes amountPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hover State */
.credits-btn:hover {
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25) 0%, rgba(245, 158, 11, 0.25) 100%);
    box-shadow: var(--shadow-gold);
}

.credits-btn:hover .credits-btn__icon {
    animation: creditsFloat 1.5s ease-in-out infinite;
}

.credits-btn:hover .credits-btn__amount {
    animation: amountPulse 1s ease-in-out infinite;
}

/* Active State */
.credits-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Particle Effect Container */
.credits-btn__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: var(--radius-full);
}

/* Floating Particles */
.credits-btn__particles::before,
.credits-btn__particles::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 3s ease-in-out infinite;
}

.credits-btn__particles::before {
    left: 20%;
    animation-delay: 0s;
}

.credits-btn__particles::after {
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes particleFloat {
    0% {
        bottom: 0;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
    50% {
        opacity: 1;
        transform: translateX(10px) scale(1);
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(0) scale(0);
    }
}

.credits-btn:hover .credits-btn__particles::before,
.credits-btn:hover .credits-btn__particles::after {
    animation: particleFloat 1.5s ease-in-out infinite;
}

/* Mobile Toggle - Futuristic */
.nav__toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.3125rem;
    width: 40px;
    height: 40px;
    padding: 0;
    z-index: 1001;
    position: relative;
}

@media (min-width: 768px) {
    .nav__toggle {
        width: 44px;
        height: 44px;
        gap: 0.375rem;
    }
}

.nav__toggle-bg {
    position: absolute;
    inset: 0;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.nav__toggle:hover .nav__toggle-bg {
    opacity: 1;
}

.nav__toggle-line {
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
}

@media (min-width: 768px) {
    .nav__toggle-line {
        width: 24px;
    }
}

.nav__toggle.active .nav__toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.nav__toggle.active .nav__toggle-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.nav__toggle.active .nav__toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .nav__menu {
        display: block;
    }
    
    .nav__toggle {
        display: none;
    }
}

/* Mobile Menu */
@media (max-width: 767px) {
    .nav__menu {
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        height: calc(100vh - 64px);
        background: rgba(10, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem 1.25rem;
        transform: translateX(-100%);
        transition: transform var(--transition-base);
        overflow-y: auto;
    }
    
    .nav__menu.active {
        display: block;
        transform: translateX(0);
    }
    
    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }
    
    .nav__link {
        font-size: var(--font-size-lg);
    }
    
    .nav__actions {
        margin-top: 1rem;
        display: flex;
        flex-wrap: nowrap;
        width: 100%;
        gap: 0.25rem;
    }
    
    .nav__actions .projects-btn,
    .nav__actions .credits-btn {
        flex: 1;
        min-width: 0;
        font-size: 0.75rem;
        padding: 0.4rem 0.5rem;
        white-space: nowrap;
    }
    
    .nav__actions .projects-btn__text,
    .nav__actions .credits-btn__amount {
        font-size: 0.75rem;
    }
    
    .nav__actions .projects-btn__badge {
        font-size: 0.65rem;
        padding: 0.1rem 0.3rem;
    }
    
    .nav__actions #loginBtn,
    .nav__actions #signupBtn {
        flex: 1;
        min-width: 0;
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    
    .nav__actions .projects-btn {
        display: none;
    }
    
    body.user-logged-in .nav__actions .projects-btn {
        display: flex;
    }
    
    body.user-logged-in .nav__actions #loginBtn,
    body.user-logged-in .nav__actions #signupBtn {
        display: none;
    }
}

/* ===================================
   PREMIUM BUTTONS
   =================================== */

.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    padding: 0.625rem 1.25rem;
    font-weight: 600;
    font-size: var(--font-size-sm);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    white-space: nowrap;
    overflow: hidden;
    min-height: 40px;
}

@media (min-width: 768px) {
    .btn {
        padding: 0.75rem 1.5rem;
        gap: 0.5rem;
        font-size: var(--font-size-base);
        min-height: 44px;
    }
}

.btn__text {
    position: relative;
    z-index: 1;
}

.btn__icon {
    width: 16px;
    height: 16px;
    position: relative;
    z-index: 1;
    transition: transform var(--transition-base);
}

@media (min-width: 768px) {
    .btn__icon {
        width: 18px;
        height: 18px;
    }
}

.btn:hover .btn__icon {
    transform: translateX(3px);
}

.btn__shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover .btn__shine {
    left: 100%;
}

.btn__glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    opacity: 0;
    filter: blur(10px);
    transition: opacity var(--transition-base);
    z-index: 0;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.5);
}

.btn--primary:hover .btn__glow {
    opacity: 0.5;
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--gray-light);
}

.btn--ghost:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.btn--large {
    padding: 0.875rem 1.75rem;
    font-size: var(--font-size-base);
    min-height: 48px;
}

@media (min-width: 768px) {
    .btn--large {
        padding: 1rem 2rem;
        font-size: var(--font-size-lg);
        min-height: 52px;
    }
}

.btn--magnetic {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===================================
   PREMIUM HERO SECTION
   =================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 64px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero {
        padding-top: 70px;
    }
}

/* Advanced Background */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero__gradient-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orbFloat 20s ease-in-out infinite;
}

.orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    top: -250px;
    left: -250px;
    animation-delay: 0s;
}

.orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    animation-delay: 5s;
}

.orb--3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #ec4899 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -100px) scale(1.1); }
    66% { transform: translate(-100px, 100px) scale(0.9); }
}

.hero__canvas {
    position: absolute;
    inset: 0;
}

.hero__mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(10, 14, 26, 0.8) 100%);
}

/* Hero Content */
.hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem 0;
}

@media (min-width: 768px) {
    .hero__content {
        padding: 2.5rem 0;
    }
}

/* Animated Badge */
.hero__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .hero__badge {
        gap: 0.625rem;
        padding: 0.625rem 1.25rem;
        font-size: var(--font-size-sm);
        margin-bottom: 2rem;
    }
}

.badge__pulse {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.2; transform: scale(1.05); }
}

.badge__icon {
    width: 16px;
    height: 16px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .badge__icon {
        width: 18px;
        height: 18px;
    }
}

.badge__svg {
    width: 100%;
    height: 100%;
    color: var(--primary-light);
    animation: badgeIconFloat 3s ease-in-out infinite;
}

@keyframes badgeIconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.badge__text {
    position: relative;
    z-index: 1;
}

.badge__shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Dynamic Title */
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero__title {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
}

.gradient-text {
    position: relative;
    display: inline-block;
}

.gradient-text__inner {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
}

.gradient-text__glow {
    position: absolute;
    inset: -10px;
    background: var(--gradient-primary);
    filter: blur(30px);
    opacity: 0.3;
    z-index: 0;
}

.hero__title-line2 {
    display: inline-block;
    animation: titleSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subtitle */
.hero__subtitle {
    font-size: clamp(0.9375rem, 2vw, 1.125rem);
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero__subtitle {
        font-size: clamp(1rem, 2vw, 1.25rem);
        line-height: 1.8;
        margin-bottom: 2.5rem;
        max-width: 700px;
    }
}

/* CTA Buttons */
.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    justify-content: center;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .hero__cta {
        gap: 1.125rem;
        margin-bottom: 3.5rem;
    }
}

/* Animated Stats */
.hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    max-width: 650px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero__stats {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
        max-width: 700px;
    }
}

.stat {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .stat {
        gap: 0.625rem;
        padding: 1.25rem;
        border-radius: var(--radius-xl);
    }
}

.stat:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(99, 102, 241, 0.05);
}

.stat__icon {
    width: 24px;
    height: 24px;
    color: var(--primary-light);
}

@media (min-width: 768px) {
    .stat__icon {
        width: 28px;
        height: 28px;
    }
}

.stat__icon svg {
    width: 100%;
    height: 100%;
}

.stat__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat__number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

@media (min-width: 768px) {
    .stat__number {
        font-size: 2.25rem;
    }
}

.stat__label {
    font-size: var(--font-size-xs);
    color: var(--gray-light);
    text-align: center;
}

@media (min-width: 768px) {
    .stat__label {
        font-size: var(--font-size-sm);
    }
}

.stat__glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    opacity: 0;
    filter: blur(15px);
    transition: opacity var(--transition-base);
    z-index: -1;
}

.stat:hover .stat__glow {
    opacity: 0.3;
}

/* Floating Elements */
.hero__floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.1;
}

.floating-element--1 {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.floating-element--2 {
    top: 60%;
    right: 15%;
    animation: float 8s ease-in-out infinite 1s;
}

.floating-element--3 {
    bottom: 20%;
    left: 20%;
    animation: float 7s ease-in-out infinite 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-indicator__line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--primary-light), transparent);
    position: relative;
}

.scroll-indicator__dot {
    width: 6px;
    height: 6px;
    background: var(--primary-light);
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { top: 0; opacity: 1; }
    50% { top: 100%; opacity: 0; }
}

.scroll-indicator__text {
    animation: scrollTextPulse 2s ease-in-out infinite;
}

@keyframes scrollTextPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* ===================================
   AOS ANIMATIONS (Scroll Reveal)
   =================================== */

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE UTILITIES
   =================================== */

@media (max-width: 767px) {
    .hero__cta {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero__stats {
        grid-template-columns: 1fr;
    }
    
    .hero__scroll-indicator {
        display: none;
    }
}

/* ===================================
   PERFORMANCE OPTIMIZATIONS
   =================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===================================
   SECTIONS BASE
   =================================== */

section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.section__header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section__tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services {
    background: var(--dark-light);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-card--featured {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
}

.service-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.service-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card__description {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card__features {
    margin-bottom: 1.5rem;
}

.service-card__features li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--gray-light);
    margin-bottom: 0.75rem;
}

.service-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

.service-card__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

/* ===================================
   PROCESS SECTION
   =================================== */

.process__timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.process__step {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.process__step:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
}

.step__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.step__description {
    color: var(--gray-light);
    line-height: 1.7;
}

/* ===================================
   TECH STACK SECTION
   =================================== */

.tech-stack {
    background: var(--dark-light);
}

.tech__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.tech__item {
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    text-align: center;
    font-weight: 600;
    transition: all var(--transition-base);
}

.tech__item:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
}

/* ===================================
   PRICING SECTION
   =================================== */

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    text-align: center;
}

.pricing-card__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pricing-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-card__description {
    color: var(--gray-light);
    line-height: 1.7;
}

/* ===================================
   REFERRAL SECTION
   =================================== */

.referral {
    background: var(--dark-light);
}

.referral__content {
    text-align: center;
}

.referral__badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
}

.referral__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.referral__subtitle {
    font-size: 1.125rem;
    color: var(--gray-light);
    margin-bottom: 3rem;
}

.referral__benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.3);
}

.benefit-card--highlight {
    border-color: var(--accent);
    background: rgba(236, 72, 153, 0.05);
}

.benefit-card__icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.benefit-card__description {
    color: var(--gray-light);
    line-height: 1.7;
}

.referral__cta {
    margin-bottom: 2rem;
}

.referral__note {
    color: var(--gray-light);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.referral__code-display {
    max-width: 400px;
    margin: 2rem auto 0;
}

.code-box {
    padding: 2rem;
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid var(--primary);
    border-radius: var(--radius-xl);
}

.code-box__title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.code-box__value {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.code-box__share {
    font-size: 0.875rem;
    color: var(--gray-light);
    margin-top: 1rem;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact__wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .contact__wrapper {
        grid-template-columns: 1fr 1fr;
    }
}

.contact__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact__description {
    color: var(--gray-light);
    margin-bottom: 2rem;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact__icon {
    font-size: 1.5rem;
}

.contact__item-content h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact__item-content p {
    color: var(--gray-light);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

/* ===================================
   CAREERS SECTION
   =================================== */

.careers {
    background: var(--dark-light);
}

.careers__cta {
    text-align: center;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    background: var(--dark-light);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer__content {
        grid-template-columns: 1.5fr 2fr;
        align-items: start;
    }
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer__tagline {
    color: var(--gray-light);
    max-width: 400px;
}

.footer__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer__links {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.footer__column-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer__link {
    display: block;
    color: var(--gray-light);
    margin-bottom: 0.75rem;
    transition: color var(--transition-fast);
}

.footer__link:hover {
    color: var(--primary-light);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--gray-light);
    font-size: 0.875rem;
}

.footer__legal-links {
    display: flex;
    gap: 1.5rem;
}

.footer__legal-links a {
    color: var(--gray-light);
    transition: color var(--transition-fast);
}

.footer__legal-links a:hover {
    color: var(--primary-light);
}

@media (max-width: 767px) {
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ===================================
   MODALS
   =================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal.active {
    display: flex;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.modal__content {
    position: relative;
    width: 100%;
    max-width: 450px;
    padding: 2.5rem;
    background: var(--dark-light);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    animation: slideUp 0.3s ease;
}

.modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gray-light);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.modal__close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.modal__title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-form__switch {
    text-align: center;
    color: var(--gray-light);
    font-size: 0.875rem;
    margin-top: 1rem;
}

.auth-form__switch a {
    color: var(--primary-light);
    font-weight: 600;
    transition: color var(--transition-fast);
}

.auth-form__switch a:hover {
    color: var(--primary);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   MOBILE RESPONSIVE
   =================================== */

@media (max-width: 767px) {
    .services__grid,
    .process__timeline,
    .pricing__grid,
    .referral__benefits {
        grid-template-columns: 1fr;
    }
}


/* ===================================
   PREMIUM SERVICES SECTION
   =================================== */

.services {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f35 100%);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-3xl) 0;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.services-wrapper {
    position: relative;
    z-index: 1;
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Premium Service Cards with Glassmorphism */
.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 
        0 4px 20px rgba(99, 102, 241, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.2);
    transform-style: preserve-3d;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.3);
    border-color: rgba(99, 102, 241, 0.4);
}

.service-card--featured {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
}

.service-card--featured:hover {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.5);
}

/* Animated Glow Effect */
.service-card__glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    opacity: 0;
    filter: blur(20px);
    transition: opacity var(--transition-base);
    z-index: -1;
}

.service-card:hover .service-card__glow {
    opacity: 0.3;
    animation: pulseGlow 2s ease-in-out infinite;
}

.service-card--featured .service-card__glow {
    opacity: 0.2;
}

.service-card--featured:hover .service-card__glow {
    opacity: 0.4;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
}

/* Badge */
.service-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Card Content */
.service-card__content {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .service-card__content {
        padding: 2.5rem;
    }
}

/* Header */
.service-card__header {
    margin-bottom: 1.5rem;
}

.service-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: #6366f1;
    filter: drop-shadow(0 2px 8px rgba(99, 102, 241, 0.4));
    transition: all var(--transition-base);
}

.service-card:hover .service-card__icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.6));
}

@media (min-width: 768px) {
    .service-card__icon {
        width: 56px;
        height: 56px;
    }
}

.service-card__title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: color var(--transition-base);
}

.service-card:hover .service-card__title {
    color: var(--primary-light);
}

@media (min-width: 768px) {
    .service-card__title {
        font-size: 1.5rem;
    }
}

.service-card__subtitle {
    font-size: 0.875rem;
    color: #818cf8;
    font-weight: 500;
    margin-bottom: 1rem;
    letter-spacing: 0.3px;
}

@media (min-width: 768px) {
    .service-card__subtitle {
        font-size: 0.9375rem;
    }
}

.service-card__description {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: auto;
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .service-card__description {
        font-size: 1rem;
    }
}

/* Learn More Button with Micro-Interactions */
.service-card__learn-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.875rem 1.25rem;
    margin-top: 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: #818cf8;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .service-card__learn-more {
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* Shimmer Effect */
.service-card__learn-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-card__learn-more:hover::before {
    left: 100%;
}

.service-card__learn-more:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    color: var(--white);
}

.learn-more-icon {
    width: 18px;
    height: 18px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card__learn-more:hover .learn-more-icon {
    transform: translate(4px, -4px) rotate(45deg);
}

/* Card Float Animation */
.service-card:hover {
    animation: cardFloat 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cardFloat {
    0% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-12px) scale(1.03); }
    100% { transform: translateY(-8px) scale(1.02); }
}

/* ===================================
   SERVICE MODAL
   =================================== */

.service-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.service-modal.active {
    display: flex;
}

.service-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 26, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.service-modal__container {
    position: relative;
    width: 100%;
    max-width: 700px;
    max-height: 85vh;
    background: rgba(26, 31, 53, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.4);
}

.service-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--gray-light);
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 1;
}

.service-modal__close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    transform: scale(1.1) rotate(90deg);
}

.service-modal__close svg {
    width: 20px;
    height: 20px;
}

.service-modal__content {
    padding: 2.5rem;
    overflow-y: auto;
    max-height: 85vh;
}

@media (min-width: 768px) {
    .service-modal__content {
        padding: 3rem;
    }
}

/* Custom Scrollbar */
.service-modal__content::-webkit-scrollbar {
    width: 8px;
}

.service-modal__content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.service-modal__content::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.5);
    border-radius: 4px;
}

.service-modal__content::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.7);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ===================================
   SERVICE DETAIL MODAL CONTENT
   =================================== */

.service-detail {
    color: var(--white);
}

.service-detail__header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.service-detail__title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .service-detail__title {
        font-size: 2.25rem;
    }
}

.service-detail__subtitle {
    font-size: 1rem;
    color: #818cf8;
    font-weight: 500;
    letter-spacing: 0.3px;
}

@media (min-width: 768px) {
    .service-detail__subtitle {
        font-size: 1.125rem;
    }
}

.service-detail__description {
    margin-bottom: 2.5rem;
}

.service-detail__description p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-light);
}

@media (min-width: 768px) {
    .service-detail__description p {
        font-size: 1.125rem;
    }
}

.features-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .features-title {
        font-size: 1.375rem;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    transition: all var(--transition-base);
}

.feature-item:hover {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.feature-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 10px;
    transition: transform var(--transition-base);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
    .feature-title {
        font-size: 1rem;
    }
}

.feature-desc {
    font-size: 0.875rem;
    color: var(--gray-light);
    line-height: 1.6;
}

@media (min-width: 768px) {
    .feature-desc {
        font-size: 0.9375rem;
    }
}

.service-detail__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

@media (min-width: 768px) {
    .service-detail__footer {
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
    }
}

.service-detail__pricing {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 768px) {
    .service-detail__pricing {
        font-size: 1.75rem;
    }
}

.service-detail__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Manrope', var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

@media (min-width: 768px) {
    .service-detail__cta {
        font-size: 0.9375rem;
        padding: 1.125rem 2.25rem;
        min-width: 220px;
    }
}

.service-detail__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.service-detail__cta:hover::before {
    left: 100%;
}

.service-detail__cta:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 24px rgba(99, 102, 241, 0.4),
        0 0 20px rgba(99, 102, 241, 0.3);
}

.service-detail__cta:active {
    transform: translateY(0);
}


/* ===================================
   GOOGLE SIGN-IN BUTTON
   =================================== */

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: white;
    border: 1px solid #dadce0;
    border-radius: 12px;
    color: #3c4043;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .btn-google {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
}

.btn-google::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.05), rgba(234, 67, 53, 0.05));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-google:hover {
    background: #f8f9fa;
    border-color: #c6c9cc;
    transform: translateY(-2px);
    box-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.08),
        0 2px 4px rgba(0, 0, 0, 0.04);
}

.btn-google:hover::before {
    opacity: 1;
}

.btn-google:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.06),
        0 1px 2px rgba(0, 0, 0, 0.03);
}

.btn-google__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .btn-google__icon {
        width: 22px;
        height: 22px;
    }
}

.btn-google__text {
    position: relative;
    z-index: 1;
    letter-spacing: 0.25px;
}

/* Shimmer effect on hover */
.btn-google::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.btn-google:hover::after {
    left: 100%;
}

/* ===================================
   AUTH DIVIDER
   =================================== */

.auth-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
    width: 100%;
}

.auth-divider__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.auth-divider__text {
    font-size: 0.8125rem;
    color: var(--gray-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .auth-divider__text {
        font-size: 0.875rem;
    }
}

/* Dark theme adjustments for modal */
.modal__content .btn-google {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
}

.modal__content .btn-google:hover {
    background: white;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Loading state for Google button */
.btn-google.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-google.loading .btn-google__icon {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success state animation */
.btn-google.success {
    background: linear-gradient(135deg, #34A853, #4CAF50);
    border-color: #34A853;
    color: white;
}

.btn-google.success .btn-google__icon path {
    fill: white !important;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .btn-google {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .btn-google__icon {
        width: 18px;
        height: 18px;
    }
    
    .auth-divider {
        gap: 0.75rem;
        margin: 1.25rem 0;
    }
    
    .auth-divider__text {
        font-size: 0.75rem;
    }
}


/* ===================================
   PREMIUM PROCESS SECTION
   =================================== */

.process {
    background: var(--dark);
    position: relative;
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.2), transparent);
    display: none;
}

@media (min-width: 768px) {
    .process::before {
        display: block;
    }
}

.process__timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

@media (min-width: 768px) {
    .process__timeline {
        gap: 3rem;
    }
}

/* Process Step */
.process__step {
    position: relative;
    display: flex;
    justify-content: center;
}

/* Connector Line */
.step__connector {
    display: none;
}

@media (min-width: 768px) {
    .step__connector {
        display: block;
        position: absolute;
        left: 50%;
        top: 100%;
        transform: translateX(-50%);
        width: 2px;
        height: 3rem;
        background: linear-gradient(180deg, rgba(99, 102, 241, 0.5), rgba(99, 102, 241, 0.1));
    }
    
    .process__step:last-child .step__connector {
        display: none;
    }
}

/* Step Card */
.step__card {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

@media (min-width: 768px) {
    .step__card {
        padding: 2.5rem;
    }
}

.step__card:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 
        0 20px 40px rgba(99, 102, 241, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Glow Effect */
.step__glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    opacity: 0;
    filter: blur(20px);
    transition: opacity var(--transition-base);
    z-index: -1;
}

.step__card:hover .step__glow {
    opacity: 0.2;
}

/* Number Wrapper */
.step__number-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Step Number */
.step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
    transition: all var(--transition-base);
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .step__number {
        width: 64px;
        height: 64px;
        font-size: 1.75rem;
    }
}

.step__card:hover .step__number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.6);
}

/* Step Icon */
.step__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    color: #818cf8;
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .step__icon {
        width: 56px;
        height: 56px;
    }
}

.step__icon svg {
    width: 24px;
    height: 24px;
}

@media (min-width: 768px) {
    .step__icon svg {
        width: 28px;
        height: 28px;
    }
}

.step__card:hover .step__icon {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.4);
    transform: scale(1.05);
}

/* Step Content */
.step__content {
    flex: 1;
}

.step__title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    transition: color var(--transition-base);
}

@media (min-width: 768px) {
    .step__title {
        font-size: 1.5rem;
    }
}

.step__card:hover .step__title {
    color: var(--primary-light);
}

.step__description {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .step__description {
        font-size: 1rem;
    }
}

/* Step Features */
.step__features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.step__features li {
    display: inline-flex;
    align-items: center;
    padding: 0.375rem 0.875rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    font-size: 0.8125rem;
    color: #818cf8;
    font-weight: 500;
    transition: all var(--transition-base);
}

@media (min-width: 768px) {
    .step__features li {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
}

.step__features li::before {
    content: '✓';
    margin-right: 0.5rem;
    color: var(--success);
    font-weight: 700;
}

.step__card:hover .step__features li {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

/* Alternating Layout for Desktop */
@media (min-width: 1024px) {
    .process__step:nth-child(even) .step__card {
        margin-left: auto;
    }
    
    .process__step:nth-child(odd) .step__card {
        margin-right: auto;
    }
}

/* Progress Animation */
@keyframes progressPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.step__number {
    animation: progressPulse 2s ease-in-out infinite;
}

.step__card:hover .step__number {
    animation: none;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .process {
        padding: var(--spacing-2xl) 0;
    }
    
    .process__timeline {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .step__card {
        padding: 1.5rem;
    }
    
    .step__number-wrapper {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .step__number {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .step__icon {
        width: 40px;
        height: 40px;
    }
    
    .step__icon svg {
        width: 20px;
        height: 20px;
    }
    
    .step__title {
        font-size: 1.125rem;
    }
    
    .step__description {
        font-size: 0.875rem;
    }
    
    .step__features {
        gap: 0.5rem;
    }
    
    .step__features li {
        font-size: 0.75rem;
        padding: 0.25rem 0.625rem;
    }
}

/* Tablet Optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
    .step__card {
        max-width: 700px;
    }
}


/* Ripple Effect for Step Cards */
.step__ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(2);
        opacity: 0;
    }
}


/* ===================================
   PREMIUM PRICING SECTION
   =================================== */

.pricing {
    background: linear-gradient(135deg, #0f1419 0%, #1a1f35 100%);
    position: relative;
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.pricing__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .pricing__grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* Pricing Card */
.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 
        0 24px 48px rgba(99, 102, 241, 0.2),
        0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Featured Card */
.pricing-card--featured {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
}

@media (min-width: 1024px) {
    .pricing-card--featured {
        transform: scale(1.05);
    }
    
    .pricing-card--featured:hover {
        transform: scale(1.08) translateY(-12px);
    }
}

/* Badge */
.pricing-card__badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

/* Glow Effect */
.pricing-card__glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    opacity: 0;
    filter: blur(20px);
    transition: opacity var(--transition-base);
    z-index: -1;
}

.pricing-card:hover .pricing-card__glow {
    opacity: 0.3;
}

.pricing-card--featured .pricing-card__glow {
    opacity: 0.2;
}

.pricing-card--featured:hover .pricing-card__glow {
    opacity: 0.4;
}

/* Card Header */
.pricing-card__header {
    padding: 2rem 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Icon */
.pricing-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: #818cf8;
    transition: all var(--transition-base);
}

.pricing-card__icon svg {
    width: 28px;
    height: 28px;
}

.pricing-card:hover .pricing-card__icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.5);
}

/* Title */
.pricing-card__title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

/* Price */
.pricing-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price__currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-light);
}

.price__amount {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price__period {
    font-size: 0.875rem;
    color: var(--gray-light);
    font-weight: 500;
}

/* Card Content */
.pricing-card__content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card__description {
    color: var(--gray-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Features List */
.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex: 1;
}

.pricing-card__features li {
    position: relative;
    padding: 0.75rem 0 0.75rem 2rem;
    color: var(--gray-light);
    font-size: 0.9375rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.pricing-card__features li:last-child {
    border-bottom: none;
}

.pricing-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.75rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    color: var(--success);
    font-weight: 700;
    font-size: 0.75rem;
}

.pricing-card:hover .pricing-card__features li {
    padding-left: 2.25rem;
    color: var(--white);
}

/* CTA Button */
.pricing-card__cta {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: #818cf8;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.pricing-card__cta:hover::before {
    left: 100%;
}

.pricing-card__cta:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.pricing-card--featured .pricing-card__cta {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: transparent;
    color: white;
}

.pricing-card--featured .pricing-card__cta:hover {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.4);
}

/* Pricing Note */
.pricing__note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
}

.pricing__note-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #818cf8;
}

.pricing__note p {
    color: var(--gray-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .pricing {
        padding: var(--spacing-2xl) 0;
    }
    
    .pricing__grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .pricing-card__header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .pricing-card__content {
        padding: 1.5rem;
    }
    
    .pricing-card__icon {
        width: 48px;
        height: 48px;
    }
    
    .pricing-card__icon svg {
        width: 24px;
        height: 24px;
    }
    
    .pricing-card__title {
        font-size: 1.25rem;
    }
    
    .price__amount {
        font-size: 2rem;
    }
    
    .pricing-card__features li {
        font-size: 0.875rem;
        padding: 0.625rem 0 0.625rem 1.75rem;
    }
    
    .pricing-card__cta {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .pricing__note {
        margin-top: 2rem;
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .pricing__note-icon {
        width: 20px;
        height: 20px;
    }
    
    .pricing__note p {
        font-size: 0.875rem;
    }
}

/* Tablet Optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
    .pricing__grid {
        gap: 1.5rem;
    }
}


/* Smooth transitions for pricing features */
.pricing-card__features li {
    transform: translateX(0);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* ===================================
   INFO MODAL (About, How It Works, Contact)
   =================================== */

.info-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.info-modal.active {
    display: flex;
}

.info-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.info-modal__container {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 85vh;
    background: rgba(26, 31, 53, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.info-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--gray-light);
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 1;
}

.info-modal__close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    transform: scale(1.1) rotate(90deg);
}

.info-modal__close svg {
    width: 20px;
    height: 20px;
}

.info-modal__content {
    padding: 3rem;
    overflow-y: auto;
    max-height: 85vh;
    color: var(--white);
}

@media (max-width: 767px) {
    .info-modal__content {
        padding: 2rem 1.5rem;
    }
}

.info-content__title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-content__section {
    margin-bottom: 2rem;
}

.info-content__section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 0.75rem;
}

.info-content__section p {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.info-content__list {
    list-style: none;
    padding: 0;
}

.info-content__list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: var(--gray-light);
}

.info-content__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: 700;
}

/* ===================================
   INQUIRY MODAL
   =================================== */

.inquiry-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.inquiry-modal.active {
    display: flex;
}

.inquiry-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.inquiry-modal__container {
    position: relative;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    background: rgba(26, 31, 53, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.inquiry-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--gray-light);
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 1;
}

.inquiry-modal__close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    transform: scale(1.1) rotate(90deg);
}

.inquiry-modal__close svg {
    width: 20px;
    height: 20px;
}

.inquiry-modal__content {
    padding: 3rem;
    overflow-y: auto;
    max-height: 90vh;
}

@media (max-width: 767px) {
    .inquiry-modal__content {
        padding: 2rem 1.5rem;
    }
}

.inquiry-modal__progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.inquiry-modal__progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    transition: width 0.3s ease;
}

.inquiry-modal__header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.inquiry-modal__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    color: #818cf8;
    animation: iconFloat 3s ease-in-out infinite;
}

.inquiry-modal__icon svg {
    width: 32px;
    height: 32px;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.inquiry-modal__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.inquiry-modal__subtitle {
    color: var(--gray-light);
    font-size: 1rem;
}

/* Inquiry Form */
.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.3px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    transition: all var(--transition-base);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: #1a1a2e;
    color: #fff;
    padding: 0.5rem;
}

.form-select option:disabled {
    color: rgba(255, 255, 255, 0.4);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.form-checkboxes {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .form-checkboxes {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.form-checkbox:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox span {
    color: var(--gray-light);
    font-size: 0.875rem;
}

.inquiry-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 12px;
    color: white;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.inquiry-form__submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.inquiry-form__submit:hover::before {
    left: 100%;
}

.inquiry-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.4);
}

.inquiry-form__submit svg {
    width: 20px;
    height: 20px;
}

/* Success Message */
.inquiry-success {
    text-align: center;
    padding: 3rem 2rem;
}

.inquiry-success__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    color: var(--success);
    font-size: 2.5rem;
}

.inquiry-success__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.inquiry-success__message {
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.inquiry-success__button {
    padding: 0.875rem 2rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    color: #818cf8;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.inquiry-success__button:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
}


/* ===================================
   PREMIUM TECH STACK SECTION
   =================================== */

.tech-stack {
    background: var(--dark);
    position: relative;
    padding: var(--spacing-3xl) 0;
    overflow: hidden;
}

.tech-stack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.3), transparent);
}

.tech__categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .tech__categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .tech__categories {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

/* Tech Category */
.tech__category {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.tech__category::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    opacity: 0;
    filter: blur(20px);
    transition: opacity var(--transition-base);
    z-index: -1;
}

.tech__category:hover {
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.tech__category:hover::before {
    opacity: 0.2;
}

/* Category Header */
.tech__category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tech__category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    color: #818cf8;
    transition: all var(--transition-base);
}

.tech__category-icon svg {
    width: 24px;
    height: 24px;
}

.tech__category:hover .tech__category-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.5);
}

.tech__category-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
}

/* Tech Items */
.tech__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.tech__item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.tech__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.tech__item:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.tech__item:hover::before {
    opacity: 1;
}

.tech__item-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: all var(--transition-base);
    position: relative;
    z-index: 1;
}

.tech__item:hover .tech__item-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.4));
}

.tech__item-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-light);
    text-align: center;
    transition: color var(--transition-base);
    position: relative;
    z-index: 1;
}

.tech__item:hover .tech__item-name {
    color: var(--white);
}

/* Floating Animation */
@keyframes techFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.tech__item {
    animation: techFloat 3s ease-in-out infinite;
}

.tech__item:nth-child(1) { animation-delay: 0s; }
.tech__item:nth-child(2) { animation-delay: 0.2s; }
.tech__item:nth-child(3) { animation-delay: 0.4s; }
.tech__item:nth-child(4) { animation-delay: 0.6s; }

.tech__item:hover {
    animation: none;
}

/* Pulse Animation for Icons */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.tech__category:hover .tech__item-icon {
    animation: iconPulse 1s ease-in-out infinite;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .tech-stack {
        padding: var(--spacing-2xl) 0;
    }
    
    .tech__categories {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .tech__category {
        padding: 1.5rem;
    }
    
    .tech__category-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .tech__category-icon {
        width: 40px;
        height: 40px;
    }
    
    .tech__category-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .tech__category-title {
        font-size: 1.125rem;
    }
    
    .tech__items {
        gap: 0.5rem;
    }
    
    .tech__item {
        padding: 0.75rem 0.5rem;
    }
    
    .tech__item-icon {
        font-size: 1.5rem;
    }
    
    .tech__item-name {
        font-size: 0.75rem;
    }
}

/* Tablet Optimizations */
@media (min-width: 768px) and (max-width: 1023px) {
    .tech__categories {
        gap: 1.5rem;
    }
    
    .tech__category {
        padding: 1.75rem;
    }
}


/* Tech Item Ripple Effect */
.tech__ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.4);
    transform: scale(0);
    animation: techRipple 0.6s ease-out;
    pointer-events: none;
}

@keyframes techRipple {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Tech Notification */
.tech-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.tech-notification__content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(26, 31, 53, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.tech-notification__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    color: var(--success);
    font-weight: 700;
}

.tech-notification__text {
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
}

@media (max-width: 767px) {
    .tech-notification {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
    }
    
    .tech-notification__content {
        padding: 0.875rem 1.25rem;
    }
    
    .tech-notification__text {
        font-size: 0.875rem;
    }
}


/* Enhanced Form Input Animations */
.form-group {
    position: relative;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    transform: translateY(-2px);
}

.form-input:focus + .form-label,
.form-select:focus + .form-label,
.form-textarea:focus + .form-label {
    color: var(--primary-light);
}

/* Input Success State */
.form-input:valid:not(:placeholder-shown),
.form-select:valid:not([value=""]),
.form-textarea:valid:not(:placeholder-shown) {
    border-color: rgba(16, 185, 129, 0.3);
}

.form-input:valid:not(:placeholder-shown)::after,
.form-select:valid:not([value=""])::after,
.form-textarea:valid:not(:placeholder-shown)::after {
    content: '✓';
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--success);
    font-weight: 700;
}

/* Floating Label Effect */
.form-label {
    transition: all var(--transition-base);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label,
.form-select:focus ~ .form-label,
.form-select:not([value=""]) ~ .form-label,
.form-textarea:focus ~ .form-label,
.form-textarea:not(:placeholder-shown) ~ .form-label {
    transform: translateY(-0.25rem);
    font-size: 0.75rem;
    color: var(--primary-light);
}

/* Submit Button Loading State */
.inquiry-form__submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

.inquiry-form__submit.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form Field Animation on Focus */
@keyframes fieldFocus {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    animation: fieldFocus 0.3s ease;
}


/* Form Helper Tip */
.form-tip {
    position: absolute;
    padding: 0.75rem 1rem;
    background: rgba(99, 102, 241, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 8px;
    color: white;
    font-size: 0.875rem;
    line-height: 1.4;
    max-width: 300px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.form-tip.show {
    opacity: 1;
    transform: translateY(0);
}

.form-tip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: rgba(99, 102, 241, 0.95);
    border-left: 1px solid rgba(99, 102, 241, 0.3);
    border-top: 1px solid rgba(99, 102, 241, 0.3);
    transform: rotate(45deg);
}


/* ===================================
   SERVICES EXPLORER MODAL
   =================================== */

.services-explorer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.services-explorer.active {
    display: flex;
}

.services-explorer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.services-explorer__container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    background: rgba(26, 31, 53, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
    display: flex;
    flex-direction: column;
}

.services-explorer__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--gray-light);
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
}

.services-explorer__close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    transform: scale(1.1) rotate(90deg);
}

.services-explorer__close svg {
    width: 20px;
    height: 20px;
}

.services-explorer__header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
    .services-explorer__header {
        padding: 1.5rem 1.5rem 1rem;
    }
}

.services-explorer__title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-align: center;
}

@media (max-width: 767px) {
    .services-explorer__title {
        font-size: 1.5rem;
    }
}

.services-explorer__subtitle {
    text-align: center;
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

/* Search Bar */
.services-explorer__search {
    position: relative;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--gray-light);
    pointer-events: none;
}

.services-explorer__search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.services-explorer__search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-results-count {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 20px;
    color: #818cf8;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Filters */
.services-explorer__filters {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: var(--gray-light);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    color: var(--white);
}

.filter-btn.active {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-color: transparent;
    color: white;
}

/* Content Area */
.services-explorer__content {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

@media (max-width: 767px) {
    .services-explorer__content {
        padding: 1.5rem;
    }
}

.services-explorer__content::-webkit-scrollbar {
    width: 8px;
}

.services-explorer__content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.services-explorer__content::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.5);
    border-radius: 4px;
}

.services-explorer__content::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.7);
}

/* Service Grid */
.services-grid-explorer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .services-grid-explorer {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .services-grid-explorer {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Service Item */
.service-item {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    opacity: 0;
    filter: blur(20px);
    transition: opacity var(--transition-base);
    z-index: -1;
}

.service-item:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.service-item:hover::before {
    opacity: 0.2;
}

.service-item__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.service-item__icon {
    font-size: 1.75rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.service-item__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    flex: 1;
}

.service-item__badge {
    padding: 0.25rem 0.5rem;
    background: rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    font-size: 0.75rem;
    color: #818cf8;
    font-weight: 600;
}

.service-item__description {
    color: var(--gray-light);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.service-item__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8125rem;
    color: var(--gray-light);
}

.service-item__price {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-light);
    font-weight: 600;
}

.service-item__duration {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 2rem;
}

.no-results__icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.no-results__message {
    color: var(--gray-light);
}


/* ===================================
   SERVICES EXPLORER MODAL
   =================================== */

.services-explorer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.services-explorer.active {
    display: flex;
}

.services-explorer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.services-explorer__container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    background: rgba(26, 31, 53, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
    display: flex;
    flex-direction: column;
}

.services-explorer__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--gray-light);
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10;
}

.services-explorer__close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    transform: scale(1.1) rotate(90deg);
}

.services-explorer__close svg {
    width: 20px;
    height: 20px;
}

.services-explorer__header {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-explorer__title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.services-explorer__subtitle {
    color: var(--gray-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.services-explorer__filters {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.services-explorer__filters::-webkit-scrollbar {
    height: 4px;
}

.services-explorer__filters::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.services-explorer__filters::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.5);
    border-radius: 2px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--gray-light);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.filter-btn:hover::before {
    opacity: 1;
}

.filter-btn.active {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border-color: rgba(99, 102, 241, 0.5);
    color: var(--white);
}

.filter-btn.active::before {
    opacity: 1;
}

.filter-btn__icon {
    font-size: 1.125rem;
    position: relative;
    z-index: 1;
}

.filter-btn__text {
    position: relative;
    z-index: 1;
}

.services-explorer__search {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 1rem;
    width: 20px;
    height: 20px;
    color: var(--gray-light);
    pointer-events: none;
}

.services-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.services-search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.search-results-count {
    position: absolute;
    right: 1rem;
    font-size: 0.875rem;
    color: var(--gray-light);
    font-weight: 500;
}

.services-explorer__content {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
}

/* Service Categories */
.service-category {
    margin-bottom: 2rem;
}

.service-category__title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-category__icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.15);
    border-radius: 8px;
    font-size: 1.25rem;
}

.service-category__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .service-category__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .service-category__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Service Item */
.service-item {
    position: relative;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    opacity: 0;
    filter: blur(10px);
    transition: opacity var(--transition-base);
    z-index: -1;
}

.service-item:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
}

.service-item:hover::before {
    opacity: 0.2;
}

.service-item__header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.service-item__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-item__content {
    flex: 1;
}

.service-item__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.service-item__description {
    font-size: 0.875rem;
    color: var(--gray-light);
    line-height: 1.5;
}

.service-item__badge {
    display: inline-block;
    padding: 0.25rem 0.625rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    font-size: 0.75rem;
    color: #818cf8;
    font-weight: 500;
    margin-top: 0.5rem;
}

.service-item.hidden {
    display: none;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--gray-light);
}

.no-results__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.no-results__text {
    font-size: 1.125rem;
    font-weight: 500;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .services-explorer__container {
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .services-explorer__header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .services-explorer__title {
        font-size: 1.5rem;
    }
    
    .services-explorer__subtitle {
        font-size: 0.875rem;
    }
    
    .services-explorer__content {
        padding: 1.5rem;
    }
    
    .service-category__title {
        font-size: 1.125rem;
    }
    
    .service-item {
        padding: 1rem;
    }
}


/* ===================================
   CAREERS MODAL
   =================================== */

.careers-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.careers-modal.active {
    display: flex;
}

.careers-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 26, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.careers-modal__container {
    position: relative;
    width: 100%;
    max-width: 900px;
    max-height: 85vh;
    background: rgba(26, 31, 53, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.careers-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--gray-light);
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 1;
}

.careers-modal__close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    transform: scale(1.1) rotate(90deg);
}

.careers-modal__close svg {
    width: 20px;
    height: 20px;
}

.careers-modal__content {
    padding: 3rem;
    overflow-y: auto;
    max-height: 85vh;
}

@media (max-width: 767px) {
    .careers-modal__content {
        padding: 2rem 1.5rem;
    }
}

/* ===================================
   APPLICATION MODAL
   =================================== */

.application-modal {
    position: fixed;
    inset: 0;
    z-index: 2001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.application-modal.active {
    display: flex;
}

.application-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.application-modal__container {
    position: relative;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    background: rgba(26, 31, 53, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.application-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--gray-light);
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 1;
}

.application-modal__close:hover {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    transform: scale(1.1) rotate(90deg);
}

.application-modal__close svg {
    width: 20px;
    height: 20px;
}

.application-modal__content {
    padding: 3rem;
    overflow-y: auto;
    max-height: 90vh;
}

@media (max-width: 767px) {
    .application-modal__content {
        padding: 2rem 1.5rem;
    }
}

.application-modal__header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.application-modal__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    color: #818cf8;
    animation: iconFloat 3s ease-in-out infinite;
}

.application-modal__icon svg {
    width: 32px;
    height: 32px;
}

.application-modal__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.application-modal__subtitle {
    color: var(--gray-light);
    font-size: 1rem;
}

/* Application Form */
.application-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-section {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.form-section__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-section__title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.form-hint {
    font-size: 0.75rem;
    color: var(--gray-light);
    font-weight: 400;
}

/* Skill Rating */
.skill-rating {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .skill-rating {
        grid-template-columns: repeat(2, 1fr);
    }
}

.skill-rating__option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.skill-rating__option:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
}

.skill-rating__option input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.skill-rating__option input[type="radio"]:checked ~ span {
    color: var(--white);
    font-weight: 600;
}

.skill-rating__option span {
    color: var(--gray-light);
    font-size: 0.9375rem;
    transition: all var(--transition-base);
}

.application-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1.125rem 2rem;
    margin-top: 1rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 12px;
    color: white;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.application-form__submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.application-form__submit:hover::before {
    left: 100%;
}

.application-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.4);
}

.application-form__submit svg {
    width: 20px;
    height: 20px;
}

/* Mobile Optimizations */
@media (max-width: 767px) {
    .application-modal__container {
        max-height: 95vh;
    }
    
    .application-modal__content {
        padding: 2rem 1.5rem;
    }
    
    .application-modal__title {
        font-size: 1.5rem;
    }
    
    .form-section {
        padding: 1.25rem;
    }
    
    .form-section__title {
        font-size: 1rem;
    }
    
    .application-form__submit {
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
    }
}


/* Careers Content Styling */
.careers-content__title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.careers-content__subtitle {
    font-size: 1.125rem;
    color: #818cf8;
    margin-bottom: 1.5rem;
}

.careers-content__intro {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.careers-section {
    margin-bottom: 2.5rem;
}

.careers-section__title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.careers-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .careers-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all var(--transition-base);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.benefit-item__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-item__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.benefit-item__description {
    font-size: 0.875rem;
    color: var(--gray-light);
    line-height: 1.5;
}

.positions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .positions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.position-card {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all var(--transition-base);
}

.position-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.position-card__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.position-card__level {
    font-size: 0.875rem;
    color: #818cf8;
    margin-bottom: 1rem;
}

.position-card__skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    padding: 0.375rem 0.75rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    font-size: 0.75rem;
    color: #818cf8;
    font-weight: 500;
}

.careers-cta {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 16px;
    text-align: center;
}

.careers-cta__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.careers-cta__text {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.careers-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.careers-cta__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.careers-cta__button:hover::before {
    left: 100%;
}

.careers-cta__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.4);
}

.careers-cta__button svg {
    width: 20px;
    height: 20px;
}

/* Application Success */
.application-success {
    text-align: center;
    padding: 3rem 2rem;
}

.application-success__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%;
    color: var(--success);
    font-size: 2.5rem;
    font-weight: 700;
}

.application-success__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.application-success__message {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.application-success__note {
    color: #818cf8;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

.application-success__button {
    padding: 0.875rem 2rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 10px;
    color: #818cf8;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.application-success__button:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
}


/* ===================================
   CREDITS CENTER MODAL
   =================================== */

.credits-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.credits-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.credits-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.credits-modal__container {
    position: relative;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.95) 0%, rgba(20, 20, 35, 0.98) 100%);
    border-radius: 24px;
    border: 1px solid rgba(125, 154, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(125, 154, 255, 0.1);
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.credits-modal.active .credits-modal__container {
    transform: scale(1);
}

.credits-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.credits-modal__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.credits-modal__close svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.credits-modal__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
}

.credits-modal__content {
    position: relative;
    padding: 40px;
    max-height: 90vh;
    overflow-y: auto;
}

.credits-modal__content::-webkit-scrollbar {
    width: 8px;
}

.credits-modal__content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.credits-modal__content::-webkit-scrollbar-thumb {
    background: rgba(125, 154, 255, 0.3);
    border-radius: 4px;
}

.credits-modal__content::-webkit-scrollbar-thumb:hover {
    background: rgba(125, 154, 255, 0.5);
}

/* Credit Overview Section */
.credits-overview {
    margin-bottom: 2rem;
}

.credits-overview__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.credits-overview__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, #7D9AFF 0%, #2FD8FE 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.credits-overview__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #FFD700;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.credits-overview__balance {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.balance-card {
    position: relative;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.balance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(125, 154, 255, 0.2);
}

.balance-card--primary {
    border-color: rgba(125, 154, 255, 0.3);
}

.balance-card--secondary {
    border-color: rgba(255, 165, 0, 0.3);
}

.balance-card__icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px currentColor);
}

.balance-card__content {
    flex: 1;
}

.balance-card__label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-light);
    margin-bottom: 0.5rem;
}

.balance-card__amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.balance-card__glow {
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(125, 154, 255, 0.3) 0%, transparent 70%);
    transform: translateY(-50%);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.credits-overview__message {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 215, 0, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.credits-overview__message .gradient-text {
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shimmer {
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* Referral Info Section */
.referral-info {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(125, 154, 255, 0.2);
    margin-bottom: 2rem;
}

.referral-info__header {
    margin-bottom: 1rem;
}

.referral-info__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.referral-info__description {
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Referral Flow Diagram */
.referral-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    overflow-x: auto;
}

.referral-flow__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 80px;
}

.referral-flow__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.referral-flow__step--highlight .referral-flow__icon {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
    animation: bounce 2s ease-in-out infinite;
}

.referral-flow__step--success .referral-flow__icon {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.referral-flow__label {
    font-size: 0.75rem;
    color: var(--gray-light);
    text-align: center;
}

.referral-flow__label small {
    display: block;
    color: #FFD700;
    font-weight: 600;
    margin-top: 0.25rem;
}

.referral-flow__arrow {
    font-size: 1.5rem;
    color: rgba(125, 154, 255, 0.5);
    margin: 0 0.5rem;
}

/* Referral CTA Button */
.referral-cta {
    position: relative;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a1a2e;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.referral-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
}

.referral-cta__shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    50%, 100% { left: 200%; }
}

.referral-cta__icon {
    width: 24px;
    height: 24px;
    animation: icon-pulse 2s ease-in-out infinite;
}

@keyframes icon-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Referral Code Container */
.referral-code-container {
    margin-top: 1.5rem;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.referral-code-box {
    position: relative;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    text-align: center;
    overflow: hidden;
}

.referral-code-box__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: code-glow 3s ease-in-out infinite;
}

@keyframes code-glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.referral-code-box__label {
    position: relative;
    font-size: 0.875rem;
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.referral-code-box__code {
    position: relative;
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    color: #FFD700;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    animation: typewriter 1s steps(14) forwards;
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid #FFD700;
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; border-right: none; }
}

/* Share Buttons */
.referral-share {
    position: relative;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.share-btn svg {
    width: 18px;
    height: 18px;
}

.share-btn--copy {
    background: rgba(125, 154, 255, 0.2);
    border-color: rgba(125, 154, 255, 0.4);
}

.share-btn--copy:hover {
    background: rgba(125, 154, 255, 0.3);
}

.share-btn--copy.copied {
    background: rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.5);
    animation: success-pulse 0.5s ease;
}

@keyframes success-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.share-btn--whatsapp {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.4);
}

.share-btn--whatsapp:hover {
    background: rgba(37, 211, 102, 0.3);
}

.share-btn--email {
    background: rgba(234, 88, 12, 0.2);
    border-color: rgba(234, 88, 12, 0.4);
}

.share-btn--email:hover {
    background: rgba(234, 88, 12, 0.3);
}

.share-btn--share {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.4);
}

.share-btn--share:hover {
    background: rgba(168, 85, 247, 0.3);
}

.referral-code-box__message {
    position: relative;
    font-size: 0.875rem;
    color: var(--gray-light);
}


/* Credits Tabs */
.credits-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.credits-tab {
    position: relative;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-light);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.credits-tab:hover {
    color: var(--white);
}

.credits-tab--active {
    color: #7D9AFF;
}

.credits-tab--active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #7D9AFF, #2FD8FE);
}

.credits-tab__badge {
    padding: 0.25rem 0.5rem;
    background: rgba(255, 59, 48, 0.2);
    border-radius: 10px;
    font-size: 0.75rem;
    color: #FF3B30;
    font-weight: 700;
}

/* Tab Panels */
.credits-tab-content {
    min-height: 300px;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-panel--active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Notifications Feed */
.notifications-feed {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.notification-card {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
    animation: slideIn 0.5s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.notification-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(4px);
}

.notification-card--unread {
    border-color: rgba(125, 154, 255, 0.3);
    background: rgba(125, 154, 255, 0.05);
}

.notification-card__icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.notification-card__content {
    flex: 1;
}

.notification-card__message {
    color: var(--white);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.notification-card__time {
    font-size: 0.8125rem;
    color: var(--gray-light);
}

.notification-card__dismiss {
    padding: 0.5rem;
    background: transparent;
    border: none;
    color: var(--gray-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.notification-card__dismiss:hover {
    color: #FF3B30;
}

/* Transactions List */
.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.transaction-card {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.transaction-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

.transaction-card__left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.transaction-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.25rem;
}

.transaction-card__icon--credit {
    background: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.transaction-card__icon--debit {
    background: rgba(239, 68, 68, 0.2);
    color: #EF4444;
}

.transaction-card__info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.transaction-card__type {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
}

.transaction-card__date {
    font-size: 0.8125rem;
    color: var(--gray-light);
}

.transaction-card__amount {
    font-size: 1.125rem;
    font-weight: 700;
}

.transaction-card__amount--credit {
    color: #10B981;
}

.transaction-card__amount--debit {
    color: #EF4444;
}

/* Pending List */
.pending-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.pending-card {
    padding: 1.25rem;
    background: rgba(255, 165, 0, 0.05);
    border: 1px solid rgba(255, 165, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pending-card:hover {
    background: rgba(255, 165, 0, 0.08);
}

.pending-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.pending-card__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.pending-card__amount {
    font-size: 1.125rem;
    font-weight: 700;
    color: #FFA500;
}

.pending-card__status {
    font-size: 0.8125rem;
    color: var(--gray-light);
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
}

.empty-state__icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.empty-state__text {
    font-size: 1rem;
    color: var(--gray-light);
}

/* Credits Footer */
.credits-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.credits-footer__icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.icon-scroll {
    font-size: 1.5rem;
    animation: scroll-icons 3s linear infinite;
}

.icon-scroll:nth-child(2) {
    animation-delay: 1s;
}

.icon-scroll:nth-child(3) {
    animation-delay: 2s;
}

@keyframes scroll-icons {
    0%, 100% { transform: translateX(0); opacity: 1; }
    50% { transform: translateX(10px); opacity: 0.5; }
}

.credits-footer__text {
    font-size: 0.9375rem;
    color: var(--gray-light);
}

/* Confetti Canvas */
.confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .credits-modal__container {
        width: 95%;
        max-height: 95vh;
    }

    .credits-modal__content {
        padding: 20px;
    }

    .credits-overview__title {
        font-size: 1.5rem;
    }

    .credits-overview__balance {
        grid-template-columns: 1fr;
    }

    .referral-flow {
        flex-direction: column;
        gap: 1rem;
    }

    .referral-flow__arrow {
        transform: rotate(90deg);
    }

    .referral-share {
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
    }

    .credits-tabs {
        overflow-x: auto;
    }

    .credits-tab {
        white-space: nowrap;
    }

    .referral-code-box__code {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .credits-overview__title {
        font-size: 1.25rem;
    }

    .balance-card__amount {
        font-size: 1.5rem;
    }

    .referral-info {
        padding: 1.5rem;
    }

    .referral-code-box__code {
        font-size: 1.25rem;
    }
}


/* ===================================
   USER MENU
   =================================== */

.user-menu {
    position: fixed;
    top: 80px;
    right: 20px;
    width: 280px;
    background: rgba(30, 30, 50, 0.98);
    border: 1px solid rgba(125, 154, 255, 0.3);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    animation: slideDown 0.3s ease;
    overflow: hidden;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.user-menu__header {
    padding: 1.5rem;
    background: rgba(125, 154, 255, 0.1);
    border-bottom: 1px solid rgba(125, 154, 255, 0.2);
}

.user-menu__greeting {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.user-menu__name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.user-menu__email {
    font-size: 0.875rem;
    color: var(--gray-light);
}

.user-menu__items {
    padding: 0.5rem;
}

.user-menu__items button {
    width: 100%;
    padding: 0.875rem 1rem;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.user-menu__items button:hover {
    background: rgba(125, 154, 255, 0.1);
}

/* Notification Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}


/* ===================================
   PROJECTS BUTTON (Similar to Credits)
   =================================== */

.projects-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border: 1.5px solid transparent;
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 600;
    font-size: var(--font-size-xs);
    overflow: hidden;
    transition: all var(--transition-base);
    cursor: pointer;
}

@media (min-width: 768px) {
    .projects-btn {
        padding: 0.625rem 1.125rem;
        gap: 0.5rem;
        font-size: var(--font-size-sm);
    }
}

/* Animated Border */
.projects-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-full);
    padding: 1.5px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: borderRotate 3s linear infinite;
}

/* Pulsing Glow */
.projects-btn__glow {
    position: absolute;
    inset: -4px;
    background: var(--gradient-primary);
    opacity: 0;
    filter: blur(12px);
    transition: opacity var(--transition-base);
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite;
}

.projects-btn:hover .projects-btn__glow {
    opacity: 0.6;
    animation: glowPulse 1s ease-in-out infinite;
}

/* Shimmer Effect */
.projects-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.projects-btn:hover::after {
    left: 100%;
}

.projects-btn__content {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .projects-btn__content {
        gap: 0.5rem;
    }
}

/* Animated Icon */
.projects-btn__icon {
    width: 16px;
    height: 16px;
    color: #818cf8;
    animation: iconFloat 2s ease-in-out infinite;
}

@media (min-width: 768px) {
    .projects-btn__icon {
        width: 18px;
        height: 18px;
    }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.projects-btn__text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
}

/* Badge */
.projects-btn__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 0.375rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Particles Effect */
.projects-btn__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: var(--radius-full);
}

/* Hover State */
.projects-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25) 0%, rgba(139, 92, 246, 0.25) 100%);
}

.projects-btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .projects-btn__text {
        display: none;
    }
    
    .projects-btn {
        padding: 0.5rem;
    }
}
