/* ===== DESIGN TOKENS ===== */
:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #111118;
    --bg-tertiary: #1a1a24;
    --bg-card: rgba(20, 20, 30, 0.8);
    --bg-card-hover: rgba(30, 30, 45, 0.9);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --text-primary: #f0f0f5;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b80;
    --accent-1: #6366f1;
    --accent-2: #8b5cf6;
    --accent-3: #06b6d4;
    --accent-4: #10b981;
    --gradient-primary: linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4);
    --gradient-accent: linear-gradient(135deg, #6366f1, #a78bfa);
    --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(6, 182, 212, 0.15));
    --border-color: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(99, 102, 241, 0.3);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --section-padding: 120px 0;
    --container-max: 1200px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.gradient-text { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== PRELOADER ===== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.preloader-inner { text-align: center; }
.preloader-logo {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    justify-content: center;
}
.preloader-letter {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: letterBounce 1.4s ease-in-out infinite;
    animation-delay: calc(var(--i) * 0.1s);
}
@keyframes letterBounce {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-15px); }
    50% { transform: translateY(0); }
}
.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}
.preloader-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: preloaderFill 1.5s ease-in-out forwards;
}
@keyframes preloaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--accent-1);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
    mix-blend-mode: difference;
}
.cursor-outline {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-dot.hover {
    width: 50px;
    height: 50px;
    background: rgba(99, 102, 241, 0.15);
}
.cursor-outline.hover {
    width: 60px;
    height: 60px;
    border-color: rgba(99, 102, 241, 0.6);
}
@media (max-width: 768px) {
    .cursor-dot, .cursor-outline { display: none; }
}

/* ===== PARTICLES ===== */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-smooth);
}
.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}
.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 100;
}
.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: #fff;
}
.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 2px;
}
.nav-links { display: flex; gap: 32px; }
.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Nav CTA Upwork */
.nav-cta-upwork {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #14a800, #1dbf13);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(20, 168, 0, 0.3);
    animation: upworkGlow 3s ease-in-out infinite;
}
.nav-cta-upwork:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 168, 0, 0.5);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 100;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: var(--transition-smooth);
    border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0 60px;
}
.hero-bg-effects {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}
.hero-orb-1 { width: 500px; height: 500px; background: rgba(99,102,241,0.15); top: -10%; right: -5%; }
.hero-orb-2 { width: 400px; height: 400px; background: rgba(6,182,212,0.1); bottom: -10%; left: -5%; animation-delay: -7s; }
.hero-orb-3 { width: 300px; height: 300px; background: rgba(139,92,246,0.12); top: 40%; left: 30%; animation-delay: -14s; }
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}
.hero-grid-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}
.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-content { max-width: 600px; }

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
}
.upwork-hero-badge {
    background: rgba(20, 168, 0, 0.08);
    border: 1px solid rgba(20, 168, 0, 0.35);
    box-shadow: 0 0 20px rgba(20, 168, 0, 0.1);
}
.upwork-hero-badge .badge-text { color: #14a800; font-size: 13px; font-weight: 600; }
.badge-pulse {
    width: 8px; height: 8px;
    background: #14a800;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}
.upwork-badge-icon { flex-shrink: 0; }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}
.title-line { display: block; }
/* Split text animation character style */
.title-line .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px) rotateX(-40deg);
    animation: charReveal 0.6s ease forwards;
    animation-delay: calc(var(--char-index) * 0.03s + 0.5s);
}
@keyframes charReveal {
    to { opacity: 1; transform: translateY(0) rotateX(0deg); }
}
.hero-subtitle { font-size: 18px; font-weight: 600; color: var(--text-secondary); margin-bottom: 16px; }
.separator { color: var(--accent-1); margin: 0 8px; }
.hero-description { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }

/* Stats */
.hero-stats { display: flex; gap: 24px; margin-bottom: 36px; }
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-suffix { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--accent-3); }
.stat-label { display: block; font-size: 12px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; background: var(--border-color); }

/* Hero Actions */
.hero-actions { display: flex; gap: 16px; margin-bottom: 36px; flex-wrap: wrap; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4); }
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-accent);
}
.btn-outline:hover { background: rgba(99, 102, 241, 0.1); border-color: var(--accent-1); transform: translateY(-3px); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* Upwork Button */
.btn-upwork {
    background: linear-gradient(135deg, #14a800, #1dbf13, #0e8c00);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(20, 168, 0, 0.3);
    animation: upworkGlow 3s ease-in-out infinite;
}
.btn-upwork::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: 0.6s;
}
.btn-upwork:hover::before { left: 100%; }
.btn-upwork:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(20, 168, 0, 0.5); }
@keyframes upworkGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(20, 168, 0, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(20, 168, 0, 0.5); }
}

/* Upwork Platform Card */
.platform-card-upwork {
    display: flex;
    align-items: center;
    position: relative;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(20, 168, 0, 0.3);
    background: rgba(20, 168, 0, 0.05);
    transition: var(--transition-smooth);
    overflow: hidden;
}
.platform-card-upwork:hover {
    border-color: rgba(20, 168, 0, 0.6);
    background: rgba(20, 168, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(20, 168, 0, 0.2);
}
.platform-card-glow {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(20, 168, 0, 0.06) 0%, transparent 60%);
    animation: glowPulse 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}
.platform-card-inner { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.platform-card-text { display: flex; flex-direction: column; }
.platform-card-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #14a800; }
.platform-card-meta { font-size: 12px; color: var(--text-muted); font-weight: 500; }
.platform-card-arrow { font-size: 20px; color: #14a800; margin-left: 8px; transition: var(--transition-smooth); }
.platform-card-upwork:hover .platform-card-arrow { transform: translateX(4px); }

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}
.platform-badge.fiverr { color: #1dbf73; border-color: rgba(29, 191, 115, 0.3); }
.platform-badge.fiverr:hover { background: rgba(29, 191, 115, 0.1); transform: translateY(-2px); }

/* Hero Image */
.hero-image-wrapper { display: flex; justify-content: center; align-items: center; }
.hero-image-container { position: relative; width: 380px; height: 380px; }
.hero-image {
    width: 320px; height: 320px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    border: 3px solid rgba(99, 102, 241, 0.3);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.image-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.ring-outer { width: 380px; height: 380px; border-color: rgba(99,102,241,0.15); animation: ringRotate 30s linear infinite; }
.ring-outer::before {
    content: '';
    position: absolute;
    top: -4px; left: 50%;
    width: 8px; height: 8px;
    background: var(--accent-1);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent-1);
}
.ring-inner { width: 350px; height: 350px; border-color: rgba(6,182,212,0.1); animation: ringRotate 20s linear infinite reverse; }
.ring-inner::before {
    content: '';
    position: absolute;
    bottom: -4px; right: 20%;
    width: 6px; height: 6px;
    background: var(--accent-3);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-3);
}
@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: rgba(20, 20, 35, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    z-index: 3;
    box-shadow: var(--shadow-md);
    animation: floatCard 6s ease-in-out infinite;
}
.card-1 { top: 15%; right: -10%; }
.card-2 { bottom: 20%; left: -15%; animation-delay: -2s; }
.card-3 { bottom: 5%; right: -5%; animation-delay: -4s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.card-icon { font-size: 24px; }
.card-value { display: block; font-family: var(--font-display); font-weight: 700; font-size: 16px; }
.card-desc { display: block; font-size: 11px; color: var(--text-muted); }

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}
.mouse {
    width: 24px; height: 38px;
    border: 2px solid var(--border-accent);
    border-radius: 12px;
    position: relative;
}
.mouse-wheel {
    width: 3px; height: 8px;
    background: var(--accent-1);
    border-radius: 3px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}
.scroll-indicator span { font-size: 11px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }

/* ===== MARQUEE ===== */
.marquee-section {
    padding: 20px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.marquee-track { display: flex; overflow: hidden; }
.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    padding-right: 40px;
}
.marquee-content span { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text-muted); letter-spacing: 3px; }
.marquee-dot { color: var(--accent-1) !important; font-size: 10px !important; }
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ===== UPWORK BANNER ===== */
.upwork-section { padding: 60px 0; position: relative; z-index: 1; }
.upwork-banner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(20, 168, 0, 0.25);
}
.upwork-banner-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(20,168,0,0.06), rgba(20,168,0,0.02), rgba(10,10,15,0.9));
}
.upwork-banner-bg::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(20,168,0,0.08) 0%, transparent 70%);
    animation: orbFloat 15s ease-in-out infinite;
}
.upwork-banner-content {
    position: relative;
    z-index: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}
.upwork-banner-left { display: flex; align-items: center; gap: 20px; }
.upwork-logo-large {
    width: 72px; height: 72px;
    background: rgba(20,168,0,0.1);
    border: 2px solid rgba(20,168,0,0.3);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: upworkLogoPulse 4s ease-in-out infinite;
}
@keyframes upworkLogoPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(20,168,0,0.1); }
    50% { box-shadow: 0 0 40px rgba(20,168,0,0.25); }
}
.upwork-banner-info h3 { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: #14a800; margin-bottom: 4px; }
.upwork-banner-info p { font-size: 15px; color: var(--text-secondary); }
.upwork-stats-row { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.upwork-stat { text-align: center; }
.upwork-stat-value { display: block; font-family: var(--font-display); font-size: 28px; font-weight: 800; color: #14a800; line-height: 1.2; }
.upwork-stat-label { display: block; font-size: 12px; color: var(--text-muted); font-weight: 500; margin-top: 4px; }
.upwork-stat-divider { width: 1px; height: 40px; background: rgba(20,168,0,0.2); }

/* ===== SECTIONS ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99,102,241,0.1);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-1);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.section-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-desc { font-size: 16px; color: var(--text-secondary); max-width: 600px; margin: 0 auto; }

/* About */
.about-section { padding: var(--section-padding); position: relative; z-index: 1; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-content p { color: var(--text-secondary); margin-bottom: 18px; font-size: 15px; }
.about-intro { font-size: 17px !important; color: var(--text-primary) !important; line-height: 1.8; }
.about-content strong { color: var(--text-primary); }
.about-highlights { display: flex; gap: 20px; margin-top: 28px; }
.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    flex: 1;
    transition: var(--transition-smooth);
}
.highlight-item:hover { border-color: var(--border-accent); transform: translateY(-2px); }
.highlight-icon { font-size: 28px; }
.highlight-item h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.highlight-item p { font-size: 12px !important; color: var(--text-muted) !important; margin-bottom: 0 !important; }
.about-skills h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 20px; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.skill-tag {
    padding: 6px 14px;
    background: var(--bg-glass);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
    cursor: default;
}
.skill-tag:hover { background: rgba(99,102,241,0.1); border-color: var(--border-accent); color: var(--accent-1); transform: translateY(-2px); }
.experience-bars { display: flex; flex-direction: column; gap: 20px; }
.exp-bar-header { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 14px; font-weight: 500; }
.exp-bar-header span:last-child { color: var(--accent-1); font-weight: 700; }
.exp-bar-track { height: 6px; background: var(--bg-tertiary); border-radius: 3px; overflow: hidden; }
.exp-bar-fill { height: 100%; width: 0; background: var(--gradient-primary); border-radius: 3px; transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1); }
.exp-bar-fill.animated { width: var(--fill); }

/* Services */
.services-section { padding: var(--section-padding); background: var(--bg-secondary); position: relative; z-index: 1; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.service-glow {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(99,102,241,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}
.service-card:hover .service-glow { opacity: 1; }
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-smooth);
}
.service-card:hover { border-color: var(--border-accent); transform: translateY(-8px); box-shadow: var(--shadow-glow); }
.service-card:hover::before { opacity: 1; }
.service-icon-wrapper { margin-bottom: 20px; }
.service-icon {
    width: 56px; height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99,102,241,0.1);
    border-radius: var(--radius-md);
    color: var(--accent-1);
    transition: var(--transition-smooth);
}
.service-card:hover .service-icon { background: var(--gradient-primary); color: #fff; transform: scale(1.1) rotate(5deg); }
.service-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.service-meta span { font-size: 12px; font-weight: 600; color: var(--accent-3); padding: 4px 10px; background: rgba(6,182,212,0.1); border-radius: var(--radius-full); }

/* Portfolio */
.portfolio-section { padding: var(--section-padding); position: relative; z-index: 1; }
.portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.portfolio-card { border-radius: var(--radius-lg); overflow: hidden; cursor: pointer; }
.portfolio-card.large { grid-column: 1 / -1; }
.portfolio-image { position: relative; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--border-color); }
.portfolio-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1); }
.portfolio-card.large .portfolio-image img { max-height: 500px; }
.portfolio-card:not(.large) .portfolio-image img { height: 300px; }
.portfolio-card:hover .portfolio-image img { transform: scale(1.08); }
.portfolio-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 32px;
    background: linear-gradient(to top, rgba(10,10,15,0.95), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
}
.portfolio-card:hover .portfolio-overlay { transform: translateY(0); opacity: 1; }
.overlay-content h3 { font-family: var(--font-display); font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.overlay-content p { font-size: 14px; color: var(--text-secondary); margin-bottom: 12px; }
.overlay-tags { display: flex; gap: 8px; }
.overlay-tags span { padding: 4px 10px; background: rgba(99,102,241,0.2); border-radius: var(--radius-full); font-size: 11px; font-weight: 600; color: var(--accent-1); }

/* Results */
.results-section { padding: var(--section-padding); background: var(--bg-secondary); position: relative; z-index: 1; }
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.result-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.result-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--gradient-glow);
    opacity: 0;
    transition: var(--transition-smooth);
}
.result-card:hover { border-color: var(--border-accent); transform: translateY(-5px); }
.result-card:hover::after { opacity: 1; }
.result-card > * { position: relative; z-index: 1; }
.result-icon { font-size: 36px; margin-bottom: 16px; }
.result-number {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}
.result-suffix { font-size: 14px; font-weight: 600; color: var(--accent-3); margin-bottom: 8px; display: block; }
.result-label { font-size: 14px; color: var(--text-muted); font-weight: 500; }

/* Process */
.process-section { padding: var(--section-padding); position: relative; z-index: 1; }
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px; left: 10%; right: 10%;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.3;
}
.process-step { text-align: center; position: relative; }
.step-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: 16px;
    transition: var(--transition-smooth);
}
.process-step:hover .step-number { opacity: 1; transform: scale(1.1); }
.step-content h3 { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-content p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* Testimonials */
.testimonials-section { padding: var(--section-padding); background: var(--bg-secondary); position: relative; z-index: 1; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}
.testimonial-card:hover { border-color: var(--border-accent); transform: translateY(-5px); }
.testimonial-card.featured { border-color: rgba(99,102,241,0.3); background: linear-gradient(135deg, rgba(99,102,241,0.05), rgba(6,182,212,0.05)); }
.testimonial-stars { color: #fbbf24; font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial-text { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    flex-shrink: 0;
}
.author-info h4 { font-size: 14px; font-weight: 700; }
.author-info p { font-size: 12px; color: var(--text-muted); }

/* CTA */
.cta-section { padding: 100px 0; position: relative; z-index: 1; overflow: hidden; }
.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(6,182,212,0.08));
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    position: relative;
}
.cta-content h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 40px); font-weight: 800; margin-bottom: 16px; }
.cta-content p { font-size: 15px; color: var(--text-secondary); margin-bottom: 28px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Contact */
.contact-section { padding: var(--section-padding); background: var(--bg-secondary); position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}
.contact-card:hover { border-color: var(--border-accent); transform: translateX(5px); }
.contact-icon { font-size: 24px; }
.contact-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.contact-card a { font-size: 13px; color: var(--accent-1); }
.contact-card a:hover { color: var(--accent-3); }
.contact-card p { font-size: 13px; color: var(--text-muted); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 14px;
    transition: var(--transition-smooth);
    outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--accent-1);
    box-shadow: 0 0 0 3px rgba(99,102,241,0.1);
}
.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b80' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* Form Alerts */
.form-alert {
    padding: 14px 18px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 500;
}
.form-alert-success { background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.3); color: var(--accent-4); }
.form-alert-error { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.3); color: #ef4444; }

/* Footer */
.footer { padding: 60px 0 30px; border-top: 1px solid var(--border-color); position: relative; z-index: 1; }
.footer-content { display: grid; grid-template-columns: 1fr 2fr; gap: 60px; margin-bottom: 40px; }
.footer-brand p { font-size: 14px; color: var(--text-muted); margin-top: 16px; line-height: 1.6; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; margin-bottom: 16px; letter-spacing: 1px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.footer-col a:hover { color: var(--accent-1); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--border-color); text-align: center; }
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

/* ===== GSAP ANIMATION STATES ===== */
[data-animate] { opacity: 0; }
[data-animate="fadeUp"] { transform: translateY(50px); }
[data-animate="fadeRight"] { transform: translateX(-50px); }
[data-animate="fadeLeft"] { transform: translateX(50px); }
[data-animate="scale"] { transform: scale(0.9); }
[data-animate="reveal"] { clip-path: inset(100% 0 0 0); }
.is-animated { opacity: 1 !important; transform: none !important; clip-path: inset(0 0 0 0) !important; }

/* Magnetic button effect */
.magnetic-btn { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-stats, .hero-actions, .hero-platforms { justify-content: center; }
    .hero-image-container { width: 300px; height: 300px; }
    .hero-image { width: 250px; height: 250px; }
    .ring-outer { width: 300px; height: 300px; }
    .ring-inner { width: 280px; height: 280px; }
    .floating-card { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .results-grid { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
    .process-timeline::before { display: none; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    :root { --section-padding: 80px 0; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        width: 80%; height: 100vh;
        background: rgba(10,10,15,0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 28px;
        transition: var(--transition-smooth);
        z-index: 99;
    }
    .nav-links.active { right: 0; }
    .nav-link { font-size: 18px; }
    .nav-cta-upwork { display: none; }
    .nav-toggle { display: block; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .hero-stats { gap: 16px; flex-wrap: wrap; }
    .stat-number { font-size: 22px; }
    .stat-divider { display: none; }
    .hero-actions { flex-direction: column; align-items: center; }
    .services-grid { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-card.large .portfolio-image img { max-height: 300px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
    .about-highlights { flex-direction: column; }
    .scroll-indicator { display: none; }
    .process-timeline { grid-template-columns: 1fr 1fr; }
    .upwork-banner-content { padding: 32px 20px; }
    .upwork-banner-left { flex-direction: column; text-align: center; }
    .upwork-banner-info h3 { font-size: 20px; }
    .upwork-stats-row { gap: 20px; }
    .upwork-stat-value { font-size: 22px; }
    .upwork-stat-divider { display: none; }
    .hero-platforms { flex-direction: column; align-items: stretch; }
}
@media (max-width: 480px) {
    .results-grid { grid-template-columns: 1fr; }
    .process-timeline { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; }
    .hero-title { font-size: 34px; }
}
