/* =============================================
 * Coded By - DARK LMNx9 (Limon Hossain)
 * GitHub - https://github.com/LMNx9-JOHNY
 * TG Group - https://t.me/+6hZVa9jGrIY4ZDRl
 * WhatsApp - https://wa.me/19707808868
 * Telegram - https://t.me/x_LMNx9
 * Website - https://lmnx9.shop
============================================= */

:root {
    --cp-green: #47cf73;
    --cp-blue: #0ebeff;
    --cp-purple: #ae63e4;
    --cp-pink: #f0506e;
    --cp-orange: #ff7e40;
    --cp-yellow: #ffdd40;
    --cp-teal: #0ebeff;
    --cp-red: #f0506e;
    --bg-primary: #131417;
    --bg-secondary: #1e1f26;
    --bg-tertiary: #252830;
    --bg-card: #1e1f26;
    --bg-glass: rgba(30, 31, 38, 0.92);
    --bg-input: #252830;
    --glass-bg: rgba(30, 31, 38, 0.9);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-blur: blur(12px);
    --glass-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --text-primary: #e8eaed;
    --text-secondary: #9aa0a6;
    --text-muted: #6b7280;
    --text-white: #ffffff;
    --gradient-1: linear-gradient(135deg, #47cf73 30%, #0ebeff 100%);
    --gradient-2: linear-gradient(135deg, #ae63e4 0%, #f0506e 100%);
    --gradient-3: linear-gradient(135deg, #ff7e40 0%, #ffdd40 100%);
    --gradient-4: linear-gradient(135deg, #0ebeff 0%, #ae63e4 100%);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-glow-green: 0 0 20px rgba(71, 207, 115, 0.3);
    --shadow-glow-blue: 0 0 20px rgba(14, 190, 255, 0.3);
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 0.875rem;
    --space-lg: 1.25rem;
    --space-xl: 1.75rem;
    --space-2xl: 2.5rem;
    --space-3xl: 4rem;
    --font-mono: 'SF Mono', 'Fira Code', 'Source Code Pro', 'Consolas', monospace;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --text-xs: 0.7rem;
    --text-sm: 0.8rem;
    --text-base: 0.9rem;
    --text-lg: 1rem;
    --text-xl: 1.15rem;
    --text-2xl: 1.35rem;
    --text-3xl: 1.75rem;
    --text-4xl: 2.2rem;
    --text-5xl: 3rem;
    --radius-sm: 3px;
    --radius-md: 6px;
    --radius-lg: 10px;
    --radius-xl: 14px;
    --radius-2xl: 20px;
    --radius-full: 9999px;
    --transition-fast: 0.12s ease;
    --transition-base: 0.25s ease;
    --transition-slow: 0.4s ease;
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
    --z-loader: 9999;
    --container-max: 1200px;
    --container-padding: 1.25rem;
    --header-height: 56px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); font-size: 16px; -webkit-text-size-adjust: 100%; -webkit-overflow-scrolling: touch; overflow-x: hidden; }
body { font-family: "Mina", sans-serif; background: var(--bg-primary); color: var(--text-primary); line-height: 1.5; overflow-x: hidden; -webkit-font-smoothing: antialiased; min-height: 100vh; position: relative; -webkit-overflow-scrolling: touch; }
main { display: block; width: 100%; max-width: 100%; padding: 0; margin: 0; }

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-color: var(--bg-primary);
}

@keyframes gridShift {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 50px 50px, 50px 50px; }
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: 
        radial-gradient(circle at 15% 20%, rgba(71, 207, 115, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(14, 190, 255, 0.05) 0%, transparent 35%),
        radial-gradient(circle at 50% 60%, rgba(174, 99, 228, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 25% 80%, rgba(240, 80, 110, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(255, 126, 64, 0.03) 0%, transparent 35%),
        radial-gradient(circle at 60% 15%, rgba(255, 221, 64, 0.03) 0%, transparent 40%);
    animation: orbFloat 12s ease-in-out infinite alternate;
}

@keyframes orbFloat {
    0% {
        background-position: 15% 20%, 85% 30%, 50% 60%, 25% 80%, 75% 75%, 60% 15%;
    }
    50% {
        background-position: 20% 25%, 80% 35%, 55% 55%, 30% 75%, 70% 80%, 65% 10%;
    }
    100% {
        background-position: 10% 15%, 90% 25%, 45% 65%, 20% 85%, 80% 70%, 55% 20%;
    }
}

.squares-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.square{
    position:absolute;
    border-radius:4px;
    opacity:0;
    animation:squareFloat var(--duration) linear infinite;
    animation-delay:var(--delay);
}

@keyframes squareFloat {
    0% {
        transform: translateY(0) rotate(0deg) scale(0);
        opacity: 0;
    }
    10% { opacity: 0.5; }
    50% { opacity: 0.6; }
    100% {
        transform: translateY(-200px) rotate(var(--rotate)) scale(1);
        opacity: 0;
    }
}

.running-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    z-index: 9999;
    pointer-events: none;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--cp-green) 20%, 
        var(--cp-blue) 40%, 
        var(--cp-purple) 60%, 
        var(--cp-pink) 80%, 
        transparent 100%
    );
    background-size: 200% 100%;
    animation: runningLine 3s linear infinite;
}

@keyframes runningLine {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-padding); width: 100%; position: relative; z-index: 1; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); line-height: 1.25; font-weight: 700; color: var(--text-white); }
p { margin-bottom: var(--space-md); }
a { color: var(--cp-blue); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--cp-green); }
.gradient-text { background: var(--gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.glass-card { background: var(--bg-card); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); transition: all var(--transition-base); position: relative; z-index: 1; }
.glass-card:hover { border-color: rgba(255,255,255,0.12); box-shadow: var(--shadow-md); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 10px 20px; border-radius: var(--radius-md); font-weight: 600; font-size: var(--text-sm); cursor: pointer; transition: all var(--transition-fast); text-decoration: none; border: none; font-family: var(--font-sans); line-height: 1; white-space: nowrap; }
.btn-primary { background: var(--gradient-1); color: #fff; }
.btn-primary:hover { box-shadow: var(--shadow-glow-green); transform: translateY(-1px); color: #fff; }
.btn-outline { background: transparent; border: 1.5px solid var(--glass-border); color: var(--text-primary); }
.btn-outline:hover { border-color: var(--cp-green); color: var(--cp-green); background: rgba(71,207,115,0.05); }
.btn-sm { padding: 6px 14px; font-size: var(--text-xs); }
.btn-lg { padding: 14px 28px; font-size: var(--text-base); }
.btn-block { width: 100%; }
.btn-icon { width: 32px; height: 32px; padding: 0; border-radius: var(--radius-md); border: 1px solid var(--glass-border); background: var(--bg-tertiary); color: var(--text-secondary); display: inline-flex; align-items: center; justify-content: center; cursor: pointer; transition: all var(--transition-fast); font-size: var(--text-sm); }
.btn-icon:hover { background: rgba(71,207,115,0.1); color: var(--cp-green); border-color: var(--cp-green); }

.header { position: fixed; top: 0; left: 0; width: 100%; max-width: 100%; z-index: var(--z-sticky); background: rgba(19,20,23,0.9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.06); height: var(--header-height); overflow: visible; box-sizing: border-box; }
.header.sticky { box-shadow: 0 1px 8px rgba(0,0,0,0.3); }
.navbar { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: var(--space-md); padding: 0 var(--container-padding); max-width: var(--container-max); margin: 0 auto; width: 100%; box-sizing: border-box; }
.nav-brand { flex-shrink: 0; display: flex; align-items: center; }
.logo-link { text-decoration: none; display: flex; align-items: center; }
.logo-svg { display: block; height: 34px; width: auto; max-width: 160px; }
.logo-link:hover .logo-svg { filter: drop-shadow(0 0 8px rgba(71,207,115,0.4)); }
.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-link { color: var(--text-secondary); text-decoration: none; padding: 6px 14px; border-radius: var(--radius-md); font-size: var(--text-sm); font-weight: 500; transition: all var(--transition-fast); white-space: nowrap; }
.nav-link:hover, .nav-link.active { color: var(--text-white); background: rgba(255,255,255,0.06); }
.mobile-menu-btn { display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 20; width: 40px; height: 40px; border-radius: var(--radius-md); }
.mobile-menu-btn:hover { background: rgba(255,255,255,0.06); }
.mobile-menu-btn span { display: block; width: 22px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s ease; }
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--cp-green); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--cp-green); }

@media (max-width: 768px) {
    .mobile-menu-btn { display: flex; }
    
    .nav-overlay {
        position: fixed; inset: 0; background: rgba(0,0,0,0.5);
        z-index: 14; opacity: 0; visibility: hidden; transition: all 0.3s ease;
    }
    .nav-overlay.active { opacity: 1; visibility: visible; }
    
    .nav-menu {
        position: fixed !important; top: 0 !important; right: 0 !important;
        width: 30% !important; max-width: 300px !important; height: 100vh !important;
        background: var(--bg-primary) !important;
        flex-direction: column !important;
        padding: 70px 10px 10px !important;
        gap: 0px !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s ease !important;
        z-index: 15 !important; overflow-y: auto !important;
        box-shadow: -5px 0 30px rgba(0,0,0,0.4) !important;
        display: flex !important;
        left: auto !important;
        bottom: auto !important;
        align-items: stretch !important;
    }
    
.nav-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-color: var(--bg-primary);
    background-image: 
        linear-gradient(rgba(71, 207, 115, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(71, 207, 115, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}
    
    .nav-menu.active { transform: translateX(0) !important; }
    
    .nav-link {
        font-size: 14px; padding: 14px 16px; width: 100%;
        border-radius: 10px; font-weight: 500;
        color: var(--text-secondary); white-space: normal;
        display: flex; align-items: center; gap: 12px;
        position: relative; z-index: 1;
    }
    .nav-link:hover, .nav-link.active { 
        background: rgba(71,207,115,0.08); 
        color: var(--cp-green); 
    }
    
    .nav-link::before {
        font-family: 'Font Awesome 6 Free'; font-weight: 900;
        width: 15px; text-align: center; font-size: 14px; flex-shrink: 0;
        -webkit-font-smoothing: antialiased;
    }
    .nav-link[href="/"]::before { content: '\f015'; }
    .nav-link[href*="browse"]::before { content: '\f121'; }
    .nav-link[href*="github-tools"]::before { content: '\f09b'; font-family: 'Font Awesome 6 Brands'; font-weight: 400; }
    .nav-link[href*="docs"]::before { content: '\f02d'; }
    .nav-link[href*="#pricing"]::before { content: '\f155'; }
    .nav-link[href*="#contact"]::before { content: '\f0e0'; }
}

.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: calc(var(--header-height) + 40px) 0 60px; width: 100%; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-content { text-align: center; position: relative; z-index: 1; max-width: 750px; margin: 0 auto; width: 100%; padding: 0 var(--container-padding); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 5px 16px; background: rgba(71,207,115,0.08); border: 1px solid rgba(71,207,115,0.2); border-radius: var(--radius-full); color: var(--cp-green); font-size: var(--text-xs); font-weight: 600; margin-bottom: var(--space-xl); }
.badge-pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--cp-green); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(71,207,115,0.4); } 50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(71,207,115,0); } }
.hero-title { font-size: clamp(2.2rem, 4.5vw, 3.8rem); color: var(--text-white); margin-bottom: var(--space-md); font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; width: 100%; }
.hero-description { font-size: var(--text-lg); color: var(--text-secondary); margin-bottom: var(--space-xl); max-width: 550px; margin-left: auto; margin-right: auto; line-height: 1.6; width: 100%; }
.hero-actions { display: flex; gap: var(--space-sm); justify-content: center; align-items: center; flex-wrap: wrap; margin-bottom: 40px; width: 100%; }
.hero-stats { display: flex; flex-direction: row; justify-content: center; align-items: center; gap: 40px; width: 100%; max-width: 500px; margin: 0 auto; flex-wrap: nowrap; }
.stat-item { text-align: center; flex: 0 1 auto; min-width: 90px; }
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: var(--cp-green); font-family: var(--font-mono); letter-spacing: -1px; line-height: 1; }
.stat-label { display: block; color: var(--text-muted); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; white-space: nowrap; }
.hero-scroll { margin-top: 50px; color: var(--text-muted); font-size: var(--text-xs); display: flex; flex-direction: column; align-items: center; gap: 4px; text-transform: uppercase; letter-spacing: 1.5px; width: 100%; }
.scroll-icon { font-size: var(--text-base); animation: bounce 2s ease infinite; }
@keyframes bounce { 0%,20%,50%,80%,100% { transform: translateY(0); } 40% { transform: translateY(-8px); } 60% { transform: translateY(-3px); } }
.floating-elements { position: absolute; inset: 0; z-index: 0; }
.float-element { position: absolute; left: var(--x); top: var(--y); font-size: 1.8rem; color: rgba(255,255,255,0.03); animation: floatElement var(--duration) ease-in-out infinite; }
@keyframes floatElement { 0%,100% { transform: translate(0,0) rotate(0deg); } 33% { transform: translate(15px,-15px) rotate(5deg); } 66% { transform: translate(-10px,-25px) rotate(-3deg); } }
.grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; z-index: 0; }

.section { padding: var(--space-3xl) 0; position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: var(--space-2xl); }
.section-badge { display: inline-block; padding: 4px 14px; background: rgba(71,207,115,0.06); color: var(--cp-green); border-radius: var(--radius-full); font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: var(--space-md); border: 1px solid rgba(71,207,115,0.1); }
.section-title { font-size: var(--text-3xl); color: var(--text-white); margin-bottom: var(--space-sm); font-weight: 800; letter-spacing: -0.3px; }
.section-description { color: var(--text-secondary); font-size: var(--text-sm); max-width: 500px; margin: 0 auto; }

.features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: var(--space-lg); 
}

.feature-card { 
    padding: var(--space-xl); 
    border-radius: var(--radius-xl); 
    display: flex; 
    align-items: flex-start; 
    gap: var(--space-md);
    text-align: left;
    opacity: 0;
    transform: translateX(-50px) translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:nth-child(even) {
    transform: translateX(50px) translateY(30px);
}

.feature-card.aos-animate {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }
.feature-card:nth-child(4) { transition-delay: 0.4s; }
.feature-card:nth-child(5) { transition-delay: 0.5s; }
.feature-card:nth-child(6) { transition-delay: 0.6s; }

.feature-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 0;
    border-radius: 0 3px 3px 0;
    transition: height 0.4s ease;
}
.feature-card:nth-child(1)::before { background: var(--cp-green); }
.feature-card:nth-child(2)::before { background: var(--cp-blue); }
.feature-card:nth-child(3)::before { background: var(--cp-purple); }
.feature-card:nth-child(4)::before { background: var(--cp-pink); }
.feature-card:nth-child(5)::before { background: var(--cp-orange); }
.feature-card:nth-child(6)::before { background: var(--cp-yellow); }
.feature-card:hover::before { height: 100%; }

.feature-card:nth-child(1):hover { box-shadow: 0 0 20px rgba(71,207,115,0.2); border-color: rgba(71,207,115,0.3); }
.feature-card:nth-child(2):hover { box-shadow: 0 0 20px rgba(14,190,255,0.2); border-color: rgba(14,190,255,0.3); }
.feature-card:nth-child(3):hover { box-shadow: 0 0 20px rgba(174,99,228,0.2); border-color: rgba(174,99,228,0.3); }
.feature-card:nth-child(4):hover { box-shadow: 0 0 20px rgba(240,80,110,0.2); border-color: rgba(240,80,110,0.3); }
.feature-card:nth-child(5):hover { box-shadow: 0 0 20px rgba(255,126,64,0.2); border-color: rgba(255,126,64,0.3); }
.feature-card:nth-child(6):hover { box-shadow: 0 0 20px rgba(255,221,64,0.2); border-color: rgba(255,221,64,0.3); }

.feature-icon { 
    width: 48px; height: 48px; border-radius: var(--radius-lg); 
    display: flex; align-items: center; justify-content: center; 
    font-size: var(--text-xl); flex-shrink: 0;
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); }
.feature-card:nth-child(1) .feature-icon { background: rgba(71,207,115,0.1); color: var(--cp-green); }
.feature-card:nth-child(2) .feature-icon { background: rgba(14,190,255,0.1); color: var(--cp-blue); }
.feature-card:nth-child(3) .feature-icon { background: rgba(174,99,228,0.1); color: var(--cp-purple); }
.feature-card:nth-child(4) .feature-icon { background: rgba(240,80,110,0.1); color: var(--cp-pink); }
.feature-card:nth-child(5) .feature-icon { background: rgba(255,126,64,0.1); color: var(--cp-orange); }
.feature-card:nth-child(6) .feature-icon { background: rgba(255,221,64,0.1); color: var(--cp-yellow); }

.feature-content { flex: 1; }
.feature-card h3 { font-size: var(--text-base); margin-bottom: 4px; font-weight: 700; color: var(--text-white); transition: color 0.3s ease; }
.feature-card:nth-child(1):hover h3 { color: var(--cp-green); }
.feature-card:nth-child(2):hover h3 { color: var(--cp-blue); }
.feature-card:nth-child(3):hover h3 { color: var(--cp-purple); }
.feature-card:nth-child(4):hover h3 { color: var(--cp-pink); }
.feature-card:nth-child(5):hover h3 { color: var(--cp-orange); }
.feature-card:nth-child(6):hover h3 { color: var(--cp-yellow); }
.feature-card p { color: var(--text-secondary); font-size: var(--text-sm); line-height: 1.6; margin-bottom: 0; }

.api-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--space-lg); }
.api-card { padding: var(--space-lg); border-radius: var(--radius-xl); display: flex; flex-direction: column; }
.api-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-sm); }
.api-badge { padding: 3px 10px; border-radius: var(--radius-full); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.api-badge.free { background: rgba(71,207,115,0.1); color: var(--cp-green); }
.api-badge.paid { background: rgba(240,80,110,0.1); color: var(--cp-pink); }
.api-method { font-family: var(--font-mono); font-size: 10px; color: var(--cp-blue); font-weight: 600; text-transform: uppercase; }
.api-name { font-size: var(--text-base); margin-bottom: var(--space-xs); font-weight: 700; }
.api-description { color: var(--text-secondary); font-size: var(--text-sm); margin-bottom: var(--space-md); flex: 1; }
.api-endpoint-wrap { background: var(--bg-primary); padding: 6px 10px; border-radius: var(--radius-md); display: flex; align-items: center; gap: var(--space-sm); margin-bottom: var(--space-md); border: 1px solid rgba(255,255,255,0.04); }
.api-endpoint-wrap code { flex: 1; font-family: var(--font-mono); font-size: var(--text-xs); color: var(--cp-green); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.copy-btn-sm { background: none; border: 1px solid rgba(255,255,255,0.08); color: var(--text-muted); padding: 3px 8px; border-radius: var(--radius-sm); cursor: pointer; font-size: var(--text-xs); transition: all var(--transition-fast); }
.copy-btn-sm:hover { color: var(--cp-green); border-color: var(--cp-green); }
.api-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-md); }
.api-category { color: var(--text-muted); font-size: var(--text-xs); }
.api-category i { margin-right: 3px; }
.api-version { color: var(--text-muted); font-size: var(--text-xs); }
.api-card-footer { display: flex; gap: var(--space-sm); justify-content: space-between; align-items: center; margin-top: auto; }
.api-price { font-weight: 700; font-size: var(--text-sm); font-family: var(--font-mono); }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-lg); }
.pricing-card { padding: var(--space-xl); text-align: center; position: relative; border-radius: var(--radius-xl); }
.pricing-card.featured { border: 2px solid var(--cp-green); box-shadow: 0 0 0 6px rgba(71,207,115,0.05); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 4px 16px; background: var(--gradient-1); color: #fff; border-radius: var(--radius-full); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.pricing-header { margin-bottom: var(--space-lg); }
.pricing-header h3 { font-size: var(--text-lg); margin-bottom: var(--space-xs); }
.pricing-header p { color: var(--text-muted); font-size: var(--text-xs); margin-bottom: 0; }
.pricing-amount { margin-top: var(--space-md); }
.currency { font-size: var(--text-lg); color: var(--cp-green); font-weight: 600; }
.amount { font-size: var(--text-5xl); font-weight: 800; color: var(--text-white); font-family: var(--font-mono); letter-spacing: -2px; }
.period { color: var(--text-muted); font-size: var(--text-xs); }
.pricing-features { list-style: none; margin-bottom: var(--space-xl); text-align: left; }
.pricing-features li { padding: var(--space-xs) 0; color: var(--text-secondary); font-size: var(--text-sm); display: flex; align-items: center; gap: var(--space-sm); }
.pricing-features li .fa-check { color: var(--cp-green); font-size: var(--text-xs); }
.pricing-features li .fa-times { color: var(--text-muted); font-size: var(--text-xs); }

.testimonials-slider { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--space-lg); }
.testimonial-card { 
    padding: var(--space-lg); 
    border-radius: var(--radius-xl); 
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: ''; position: absolute; left: 0; top: 0;
    width: 3px; height: 0; border-radius: 0 3px 3px 0;
    transition: height 0.4s ease;
}
.testimonial-card:nth-child(1)::before { background: var(--cp-green); }
.testimonial-card:nth-child(2)::before { background: var(--cp-blue); }
.testimonial-card:nth-child(3)::before { background: var(--cp-purple); }
.testimonial-card:nth-child(4)::before { background: var(--cp-pink); }
.testimonial-card:hover::before { height: 100%; }

.testimonial-card:nth-child(1):hover { box-shadow: 0 0 20px rgba(71,207,115,0.2); border-color: rgba(71,207,115,0.3); }
.testimonial-card:nth-child(2):hover { box-shadow: 0 0 20px rgba(14,190,255,0.2); border-color: rgba(14,190,255,0.3); }
.testimonial-card:nth-child(3):hover { box-shadow: 0 0 20px rgba(174,99,228,0.2); border-color: rgba(174,99,228,0.3); }
.testimonial-card:nth-child(4):hover { box-shadow: 0 0 20px rgba(240,80,110,0.2); border-color: rgba(240,80,110,0.3); }

.testimonial-rating { margin-bottom: var(--space-sm); }
.testimonial-rating .fa-star { color: #ffdd40; font-size: var(--text-xs); }
.testimonial-rating .fa-star-empty { color: var(--text-muted); font-size: var(--text-xs); }
.testimonial-text { 
    color: var(--text-secondary); font-style: italic; 
    margin-bottom: var(--space-md); line-height: 1.7; font-size: var(--text-sm); 
    transition: color 0.3s ease;
}
.testimonial-card:hover .testimonial-text { color: var(--text-primary); }
.testimonial-author { display: flex; align-items: center; gap: var(--space-sm); }
.author-avatar { 
    width: 40px; height: 40px; border-radius: 50%; 
    border: 2px solid var(--cp-green); flex-shrink: 0;
    transition: border-color 0.3s ease;
}
.testimonial-card:nth-child(1):hover .author-avatar { border-color: var(--cp-green); }
.testimonial-card:nth-child(2):hover .author-avatar { border-color: var(--cp-blue); }
.testimonial-card:nth-child(3):hover .author-avatar { border-color: var(--cp-purple); }
.testimonial-card:nth-child(4):hover .author-avatar { border-color: var(--cp-pink); }
.author-info strong { display: block; color: var(--text-white); font-size: var(--text-sm); }
.author-info span { color: var(--text-muted); font-size: var(--text-xs); }

.faq-accordion { max-width: 700px; margin: 0 auto; }
.faq-item { margin-bottom: var(--space-sm); overflow: hidden; border-radius: var(--radius-lg); }
.faq-question { width: 100%; padding: var(--space-md) var(--space-lg); background: none; border: none; color: var(--text-white); font-size: var(--text-sm); font-weight: 600; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; font-family: var(--font-sans); }
.faq-question i { transition: transform var(--transition-fast); color: var(--cp-green); font-size: var(--text-xs); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height var(--transition-base); }
.faq-answer p { padding: 0 var(--space-lg) var(--space-md); color: var(--text-secondary); font-size: var(--text-sm); line-height: 1.7; margin-bottom: 0; }

.timeline-container {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 2px;
    background: linear-gradient(180deg, 
        var(--cp-green) 0%, 
        var(--cp-blue) 16%,
        var(--cp-purple) 33%, 
        var(--cp-pink) 50%, 
        var(--cp-orange) 66%, 
        var(--cp-yellow) 83%,
        var(--cp-green) 100%
    );
    background-size: 100% 200%;
    animation: timelineFlow 5s ease-in-out infinite;
    box-shadow: 
        0 0 6px rgba(71, 207, 115, 0.3),
        0 0 12px rgba(14, 190, 255, 0.2),
        0 0 18px rgba(174, 99, 228, 0.1);
}

@keyframes timelineFlow {
    0% { background-position: 0% 0%; }
    50% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-xl);
}
.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -33px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    transition: all var(--transition-base);
}

.timeline-item:nth-child(5n+1) .timeline-dot {
    background: var(--cp-green);
    box-shadow: 0 0 8px rgba(71, 207, 115, 0.4), 0 0 0 3px rgba(71, 207, 115, 0.15);
    animation: dotPulseGreen 2s ease-in-out infinite;
}
@keyframes dotPulseGreen {
    0%, 100% { box-shadow: 0 0 8px rgba(71, 207, 115, 0.4), 0 0 0 3px rgba(71, 207, 115, 0.15); }
    50% { box-shadow: 0 0 18px rgba(71, 207, 115, 0.7), 0 0 0 8px rgba(71, 207, 115, 0.05); }
}

.timeline-item:nth-child(5n+2) .timeline-dot {
    background: var(--cp-blue);
    box-shadow: 0 0 8px rgba(14, 190, 255, 0.4), 0 0 0 3px rgba(14, 190, 255, 0.15);
    animation: dotPulseBlue 2s ease-in-out infinite;
    animation-delay: 0.3s;
}
@keyframes dotPulseBlue {
    0%, 100% { box-shadow: 0 0 8px rgba(14, 190, 255, 0.4), 0 0 0 3px rgba(14, 190, 255, 0.15); }
    50% { box-shadow: 0 0 18px rgba(14, 190, 255, 0.7), 0 0 0 8px rgba(14, 190, 255, 0.05); }
}

.timeline-item:nth-child(5n+3) .timeline-dot {
    background: var(--cp-purple);
    box-shadow: 0 0 8px rgba(174, 99, 228, 0.4), 0 0 0 3px rgba(174, 99, 228, 0.15);
    animation: dotPulsePurple 2s ease-in-out infinite;
    animation-delay: 0.6s;
}
@keyframes dotPulsePurple {
    0%, 100% { box-shadow: 0 0 8px rgba(174, 99, 228, 0.4), 0 0 0 3px rgba(174, 99, 228, 0.15); }
    50% { box-shadow: 0 0 18px rgba(174, 99, 228, 0.7), 0 0 0 8px rgba(174, 99, 228, 0.05); }
}

.timeline-item:nth-child(5n+4) .timeline-dot {
    background: var(--cp-pink);
    box-shadow: 0 0 8px rgba(240, 80, 110, 0.4), 0 0 0 3px rgba(240, 80, 110, 0.15);
    animation: dotPulsePink 2s ease-in-out infinite;
    animation-delay: 0.9s;
}
@keyframes dotPulsePink {
    0%, 100% { box-shadow: 0 0 8px rgba(240, 80, 110, 0.4), 0 0 0 3px rgba(240, 80, 110, 0.15); }
    50% { box-shadow: 0 0 18px rgba(240, 80, 110, 0.7), 0 0 0 8px rgba(240, 80, 110, 0.05); }
}

.timeline-item:nth-child(5n+5) .timeline-dot {
    background: var(--cp-orange);
    box-shadow: 0 0 8px rgba(255, 126, 64, 0.4), 0 0 0 3px rgba(255, 126, 64, 0.15);
    animation: dotPulseOrange 2s ease-in-out infinite;
    animation-delay: 1.2s;
}
@keyframes dotPulseOrange {
    0%, 100% { box-shadow: 0 0 8px rgba(255, 126, 64, 0.4), 0 0 0 3px rgba(255, 126, 64, 0.15); }
    50% { box-shadow: 0 0 18px rgba(255, 126, 64, 0.7), 0 0 0 8px rgba(255, 126, 64, 0.05); }
}

.timeline-content {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    border-left: 2px solid transparent;
}
.timeline-content:hover {
    border-left-color: var(--cp-green);
}

.timeline-date {
    color: var(--cp-green);
    font-size: var(--text-xs);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: var(--space-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}
.timeline-date i {
    font-size: var(--text-sm);
}

.timeline-content h3 {
    font-size: var(--text-base);
    margin-bottom: var(--space-xs);
    color: var(--text-white);
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: var(--text-sm);
    margin-bottom: 0;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .timeline-container {
        padding-left: 30px;
    }
    .timeline-container::before {
        left: 10px;
        width: 2px;
    }
    .timeline-dot {
        left: -26px;
        width: 10px;
        height: 10px;
    }
    .timeline-content {
        padding: var(--space-sm) var(--space-md);
    }
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    padding: var(--space-lg);
    text-align: center;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.team-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 2px solid var(--cp-green);
}

.team-card h3 { 
    font-size: var(--text-sm); 
    margin: 0;
    font-weight: 700;
}

.team-role {
    color: var(--cp-green);
    font-size: var(--text-xs);
    font-weight: 600;
    margin: 0;
}

.team-social { 
    display: flex; 
    justify-content: center; 
    gap: var(--space-sm); 
    margin-top: var(--space-xs);
}

.team-social a {
    color: var(--text-muted);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.03);
}

.team-social a:hover { 
    color: var(--cp-green); 
    background: rgba(71, 207, 115, 0.1); 
}

@media (min-width: 769px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
.contact-info { padding: var(--space-xl); border-radius: var(--radius-xl); }
.contact-info h3 { font-size: var(--text-lg); margin-bottom: var(--space-lg); }
.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }

.contact-item { display: flex; align-items: center; gap: var(--space-md); padding: var(--space-sm); }
.contact-item i { font-size: var(--text-lg); color: var(--cp-green); width: 38px; height: 38px; border-radius: var(--radius-lg); background: rgba(71,207,115,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--text-white); font-size: var(--text-sm); }
.contact-item a { color: var(--cp-blue); font-size: var(--text-xs); }
.contact-form { padding: var(--space-xl); border-radius: var(--radius-xl); }
.form-group { margin-bottom: var(--space-md); }
.form-group label { display: block; color: var(--text-secondary); margin-bottom: 4px; font-size: var(--text-xs); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.form-group input, .form-group textarea { width: 100%; padding: 10px 14px; background: var(--bg-input); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-md); color: var(--text-white); font-size: var(--text-sm); font-family: var(--font-sans); transition: all var(--transition-fast); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--cp-green); box-shadow: 0 0 0 3px rgba(71,207,115,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 100px; }

.footer { background: var(--bg-secondary); border-top: 1px solid rgba(255,255,255,0.04); padding: var(--space-2xl) 0 var(--space-xl); position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: var(--space-xl); margin-bottom: var(--space-xl); }
.footer-brand p { color: var(--text-muted); font-size: var(--text-sm); margin: var(--space-sm) 0; max-width: 280px; }
.footer-logo { display: block; margin-bottom: var(--space-sm); }
.footer-logo text { fill: #47cf73; font-family: 'Courier New', monospace; font-size: 25px; font-weight: bold; }
.footer-social { display: flex; gap: var(--space-sm); }
.footer-social a { width: 34px; height: 34px; border-radius: var(--radius-md); background: rgba(255,255,255,0.04); color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-size: var(--text-base); transition: all var(--transition-fast); }
.footer-social a:hover { background: var(--cp-green); color: #fff; }
.footer-links h4 { color: var(--text-white); margin-bottom: var(--space-md); font-size: var(--text-xs); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 6px; }
.footer-links ul li a { color: var(--text-muted); font-size: var(--text-sm); transition: color var(--transition-fast); }
.footer-links ul li a:hover { color: var(--cp-green); }
.footer-links ul li i { margin-right: 6px; color: var(--cp-green); font-size: var(--text-xs); }
.footer-bottom { text-align: center; padding-top: var(--space-lg); border-top: 1px solid rgba(255,255,255,0.04); color: var(--text-muted); font-size: var(--text-xs); }
.footer-bottom a { color: var(--cp-green); font-weight: 600; }

.back-to-top { position: fixed; bottom: 24px; right: 30px; width: 40px; height: 40px; border-radius: var(--radius-full); background: none; border: 1px solid var(--cp-green); color: var(--text-secondary); cursor: pointer; font-size: var(--text-sm); z-index: 999; opacity: 0; visibility: hidden; pointer-events: none; transition: all var(--transition-fast); display: flex; align-items: center; justify-content: center; }
.back-to-top.visible { opacity: 1; visibility: visible; pointer-events: auto; }
.back-to-top:hover { background: none; color: var(--cp-green); border-color: var(--cp-green); }
.back-to-top:active { background: rgba(71,207,115,0.12); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); transform: scale(0.95); }
.back-to-top:focus { background: none; outline: none; }

.toast-container { position: fixed; top: 16px; right: 16px; z-index: var(--z-toast); display: flex; flex-direction: column; gap: 8px; }
.toast { padding: 10px 16px; border-radius: var(--radius-md); background: var(--bg-card); border: 1px solid var(--glass-border); color: var(--text-primary); font-size: var(--text-sm); display: flex; align-items: center; gap: var(--space-sm); animation: slideInRight 0.3s ease; min-width: 240px; box-shadow: var(--shadow-md); }
.toast-success { border-left: 3px solid var(--cp-green); }
.toast-error { border-left: 3px solid var(--cp-pink); }
.toast-close { margin-left: auto; background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: var(--text-lg); }
@keyframes slideInRight { from { transform: translateX(120%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

.loading-screen { position: fixed; inset: 0; background: var(--bg-primary); z-index: var(--z-loader); display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease; }
.loading-screen.fade-out { opacity: 0; pointer-events: none; }
.loader-content { text-align: center; }
.loader-logo { display: block; margin: 0 auto var(--space-md); }
.loader-circle {
    fill: none;
    stroke: url(#loaderGrad);
    stroke-width: 4;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    animation: drawCircle 1.5s ease forwards;
}

@keyframes drawCircle { to { stroke-dashoffset: 0; } }
.loader-logo text { fill: #47cf73; font-family: 'Courier New', monospace; font-size: 30px; font-weight: bold; }
.loader-text { margin: var(--space-md) 0; color: #47cf73; font-family: var(--font-mono); font-size: var(--text-sm); }
.loader-progress { width: 160px; height: 2px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; margin: 0 auto; }
.loader-bar { height: 100%; background: var(--gradient-1); width: 0%; transition: width 0.3s ease; border-radius: 2px; }

.breadcrumb { padding: var(--space-sm) 0; }
.breadcrumb ol { list-style: none; display: flex; align-items: center; gap: var(--space-sm); flex-wrap: wrap; }
.breadcrumb ol li { color: var(--text-muted); font-size: var(--text-xs); }
.breadcrumb ol li:not(:last-child)::after { content: '/'; margin-left: var(--space-sm); color: var(--text-muted); }
.breadcrumb ol li a { color: var(--cp-blue); }
.breadcrumb ol li a:hover { color: var(--cp-green); }
.page-header { text-align: center; padding: var(--space-xl) 0; }
.page-header h1 { font-size: var(--text-3xl); margin-bottom: var(--space-xs); }
.page-header p { color: var(--text-secondary); font-size: var(--text-sm); margin-bottom: 0; }

.mouse-follower { width: 16px; height: 16px; border: 2px solid var(--cp-green); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); opacity: 0.4; transition: transform 0.08s ease; }

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-lg); }
.mt-3 { margin-top: var(--space-xl); }

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

@media (max-width: 768px) {
    :root { --container-padding: 1rem; --space-3xl: 3rem; }
    .mobile-menu-btn { display: flex; }
    .hero { min-height: 80vh; }
    .hero-title { font-size: 2rem; }
    .features-grid, .api-grid, .pricing-grid, .testimonials-slider, .team-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
    .section-title { font-size: var(--text-2xl); }
    .mouse-follower { display: none; }
    .back-to-top { bottom: 18px; right: 18px; width: 38px; height: 38px; }
}

@media (max-width: 480px) {
    .logo-svg { height: 28px; max-width: 130px; }
    .navbar { gap: var(--space-sm); }
    .hero-title { font-size: 1.6rem; }
    .hero-description { font-size: var(--text-sm); }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 280px; }
    .hero-stats { gap: 20px; max-width: 320px; }
    .stat-item { min-width: 70px; }
    .stat-number { font-size: 1.5rem; }
    .stat-label { font-size: 0.6rem; letter-spacing: 0.5px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}
:focus-visible { outline: 2px solid var(--cp-green); outline-offset: 2px; border-radius: 2px; }
::selection { background: rgba(71,207,115,0.25); color: var(--text-white); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.2); }

main .team-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: var(--space-md) !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

main .team-card {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: var(--space-lg) !important;
}

@media (min-width: 769px) {
    main .team-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

* { -webkit-tap-highlight-color: transparent; }
img { content-visibility: auto; }
.glass-card, .tool-card, .api-card, .pricing-card, .feature-card, .team-card, .testimonial-card { will-change: transform; }

@keyframes badgeTextFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
