:root {
    --primary-color: #23ee75;
    --secondary-color: #1aaa55;
    --background-dark: #000000;
    --background-light: #111111;
    --text-primary: #ffffff;
    --text-secondary: #969698;
    --accent: #23ee75;
    --accent2: #4eff9b;
    --gradient-start: #23ee75;
    --gradient-end: #4eff9b;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.08);
    
    --glass-bg-primary: rgba(255, 255, 255, 0.05);
    --glass-bg-secondary: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-accent: rgba(57, 222, 127, 0.2);
    --glass-border-hover: rgba(57, 222, 127, 0.4);
    --glass-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    --glass-shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.25);
    --accent-glow: rgba(57, 222, 127, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.logo, .nav-brand .brand-text, .navbar .logo {
    font-family: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-weight: 500 !important;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background-dark);
    color: var(--text-primary);
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
    overflow-x: hidden;
    position: relative;
}

.white {
    color: white;
}

.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -2;
    overflow: visible;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(57, 222, 127, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 222, 127, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 30s linear infinite;
    z-index: -1;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.circle {
    position: fixed;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: float 25s infinite alternate ease-in-out;
    z-index: -2;
    will-change: transform;
}

.circle-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-color);
    top: 10%;
    left: -100px;
    animation-duration: 28s;
}

.circle-2 {
    width: 500px;
    height: 500px;
    background: var(--accent2);
    top: 60%;
    right: -50px;
    animation-duration: 35s;
    animation-delay: 2s;
}

.circle-3 {
    width: 700px;
    height: 700px;
    background: var(--secondary-color);
    bottom: -200px;
    left: 30%;
    animation-duration: 40s;
    animation-delay: 1s;
    opacity: 0.1;
}

.circle-4 {
    width: 450px;
    height: 450px;
    background: var(--accent);
    top: 20%;
    right: 20%;
    animation-duration: 22s;
    animation-delay: 3s;
}

.circle-5 {
    width: 450px;
    height: 450px;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    top: 50%;
    left: 20%;
    animation-duration: 32s;
    animation-delay: 5s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(5%, 10%) rotate(5deg) scale(1.05);
    }
    50% {
        transform: translate(-5%, 15%) rotate(-5deg) scale(0.95);
    }
    75% {
        transform: translate(10%, 5%) rotate(10deg) scale(1.1);
    }
    100% {
        transform: translate(-10%, -5%) rotate(-10deg) scale(0.9);
    }
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: visible;
}

.blur-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    transition: transform 3s cubic-bezier(0.215, 0.610, 0.355, 1);
}

.blur-circle-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    top: -200px;
    left: -200px;
}

.blur-circle-2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    bottom: 100px;
    right: -100px;
}

.blur-circle-3 {
    width: 600px;
    height: 600px;
    background: var(--accent2);
    top: 50%;
    left: -300px;
}

.blur-circle-4 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    bottom: -200px;
    right: 10%;
}

.blur-circle-5 {
    width: 350px;
    height: 350px;
    background: var(--accent);
    top: -150px;
    right: 5%;
}

.blur-circle-6 {
    width: 450px;
    height: 450px;
    background: var(--gradient-start);
    bottom: -200px;
    left: 5%;
}

.blur-circle-7, .blur-circle-8 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    opacity: 0.1;
}

.blur-circle-7 {
    bottom: 50px;
    left: 10%;
}

.blur-circle-8 {
    top: 30%;
    right: -100px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 10%;
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 2rem;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--primary-color);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--primary-color), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    margin-left: 2rem;
    transition: color 0.3s ease;
}

.nav-links a:nth-child(1) {
    animation-delay: 0.3s;
}

.nav-links a:nth-child(2) {
    animation-delay: 0.4s;
}

.nav-links a:nth-child(3) {
    animation-delay: 0.5s;
}

.nav-links a:nth-child(4) {
    animation-delay: 0.6s;
}

.nav-links a:nth-child(5) {
    animation-delay: 0.7s;
}

.nav-links a:nth-child(6) {
    animation-delay: 0.8s;
}

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

.nav-buttons {
    margin-left: 2rem;
    display: inline-flex;
    gap: 1rem;
}

.login-btn, .dashboard-btn {
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.login-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
}

.login-btn:hover {
    background: var(--primary-color);
    color: black !important;
}

.dashboard-btn {
    background: var(--primary-color);
    color: black !important;
    border: 2px solid var(--primary-color);
}

.dashboard-btn:hover {
    background: transparent;
    color: var(--primary-color) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 2px 0;
    transition: 0.4s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes riseFadeIn {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.animated {
    animation: riseFadeIn 0.5s ease forwards;
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
        flex-direction: column;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-links a {
        margin: 0.5rem 0;
        text-align: center;
        margin-left: 0;
        font-size: 0.9rem;
    }

    .nav-buttons {
        margin-top: 1rem;
        margin-left: 0;
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        padding: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        margin: 1rem 0;
        font-size: 1.1rem;
        text-align: center;
    }

    .nav-buttons {
        margin: 1rem 0;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 200px;
    }

    .nav-buttons a {
        margin: 0;
        width: 100%;
        text-align: center;
    }
}

header {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 10%;

    background-size: cover;
    background-position: center;
}

.hero {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.reveal-text {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: revealText 1.5s forwards;
    transform: translateY(30px);
}

@keyframes revealText {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    40% {
        opacity: 0.6;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s forwards 0.5s;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.slide-up {
    opacity: 0;
    animation: slideUp 1s forwards 1s;
    transform: translateY(30px);
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-bottom {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.float-in {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.section-title {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.in-view {
    opacity: 1;
    transform: translate(0) scale(1);
}

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

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

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

section {
    padding: 8rem 10% 6rem;
    position: relative;
    overflow: visible;
    background-color: transparent;
    z-index: 1;
}

section.section-animate {
    perspective: 1000px;
}

#features, #about, #partners {
    overflow: visible;
}

#features {
    background-color: var(--background-dark);
    position: relative;
}

#features h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    position: relative;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

#features h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin-top: 1.5rem;
    border-radius: 2px;
    opacity: 0.8;
}

#features h2 span {
    opacity: 0.95;
}

#features h2 .text-wrapper {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    padding: 0.5rem 1rem;
}

#features h2 .text-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
    box-shadow: 0 0 20px var(--primary-color);
}

#features h2 .accent {
    color: var(--primary-color);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    transform: rotate(-90deg) translateX(50%);
    position: absolute;
    right: 0;
    top: 50%;
    background: linear-gradient(to right, var(--primary-color), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

#features h2 .dot {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    margin-left: 0.5rem;
    box-shadow: 0 0 15px var(--primary-color);
}

#features h2::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--primary-color);
    filter: blur(80px);
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.8rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(57, 222, 127, 0.2);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 230, 118, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-color: rgba(57, 222, 127, 0.4);
    background: rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(57, 222, 127, 0.6);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card i {
    font-size: 2.75rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.5s ease;
}

.feature-card:hover i {
    transform: scale(1.2);
}

.feature-card:nth-child(1) {
    animation-delay: 1.3s;
}

.feature-card:nth-child(2) {
    animation-delay: 1.5s;
}

.feature-card:nth-child(3) {
    animation-delay: 1.7s;
}

.feature-card:nth-child(4) {
    animation-delay: 1.9s;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(145deg, rgba(35, 238, 117, 0.05), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(145deg, rgba(35, 238, 117, 0.08), rgba(35, 238, 117, 0.03));
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.2);
}

.feature-card i {
    font-size: 2.75rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.feature-card .changelog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.2rem;
    margin-top: 0.8rem;
    font-size: 0.9rem;
    line-height: normal;
}

.feature-card .changelog-btn i {
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    margin-right: 6px;
    position: relative;
    top: 0;
    line-height: 1;
}

#pricing {
    background: 
        radial-gradient(circle at 25% 25%, rgba(57, 222, 127, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(57, 222, 127, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    position: relative;
    padding: 140px 0;
    overflow: hidden;
}

.pricing-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.pricing-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 98px,
            rgba(57, 222, 127, 0.03) 100px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            rgba(57, 222, 127, 0.03) 100px
        );
    opacity: 0.3;
    animation: gridMove 20s linear infinite;
    z-index: 1;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}

#pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        conic-gradient(from 45deg, rgba(57, 222, 127, 0.1), transparent, rgba(57, 222, 127, 0.05), transparent),
        radial-gradient(circle at 30% 40%, rgba(57, 222, 127, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(78, 255, 155, 0.06) 0%, transparent 50%);
    animation: backgroundShift 15s ease-in-out infinite;
    z-index: 1;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 0.7; transform: rotate(0deg) scale(1); }
    50% { opacity: 1; transform: rotate(1deg) scale(1.02); }
}

.pricing-hero {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-bottom: 4rem;
}

.pricing-stats-bar {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pricing-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.pricing-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(57, 222, 127, 0.1), transparent);
    transition: left 0.6s ease;
}

.pricing-stat:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(57, 222, 127, 0.2);
    box-shadow: 0 10px 30px rgba(57, 222, 127, 0.15);
}

.pricing-stat:hover::before {
    left: 100%;
}

.pricing-stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

.pricing-stat-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.pricing-stat:hover .pricing-stat-icon::before {
    transform: translateX(100%);
}

.pricing-stat-icon i {
    color: #000000;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 2;
}

.pricing-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.pricing-stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.price-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 3.5rem 3rem 3rem;
    border-radius: 28px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.04);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.08),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.price-card-aurora {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(57, 222, 127, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(78, 255, 155, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, rgba(57, 222, 127, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.8s ease;
    border-radius: 28px;
    animation: auroraMove 8s ease-in-out infinite;
}

@keyframes auroraMove {
    0%, 100% { transform: rotate(0deg) scale(1); }
    33% { transform: rotate(1deg) scale(1.02); }
    66% { transform: rotate(-1deg) scale(0.98); }
}

.featured-aurora {
    background: 
        radial-gradient(circle at 30% 20%, rgba(57, 222, 127, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(78, 255, 155, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, rgba(57, 222, 127, 0.08), rgba(78, 255, 155, 0.04));
}

.enterprise-aurora {
    background: 
        radial-gradient(circle at 30% 20%, rgba(147, 51, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, rgba(147, 51, 234, 0.04), transparent);
}

.price-card-border-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(57, 222, 127, 0.1),
        transparent,
        rgba(57, 222, 127, 0.15),
        transparent
    );
    background-size: 400% 400%;
    border-radius: 30px;
    opacity: 0;
    z-index: -1;
    animation: borderPulse 4s ease-in-out infinite;
    transition: opacity 0.6s ease;
}

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

.featured-glow {
    background: linear-gradient(
        45deg,
        rgba(57, 222, 127, 0.2),
        rgba(78, 255, 155, 0.3),
        rgba(57, 222, 127, 0.2),
        rgba(78, 255, 155, 0.25),
        rgba(57, 222, 127, 0.2)
    );
    opacity: 0.7;
}

.enterprise-glow {
    background: linear-gradient(
        45deg,
        transparent,
        rgba(147, 51, 234, 0.15),
        transparent,
        rgba(168, 85, 247, 0.2),
        transparent
    );
}

.price-card:hover {
    transform: translateY(-20px) scale(1.03);
    box-shadow: 
        0 35px 80px rgba(0, 0, 0, 0.3),
        0 15px 40px rgba(57, 222, 127, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(57, 222, 127, 0.15);
}

.price-card:hover .price-card-aurora {
    opacity: 1;
}

.price-card:hover .price-card-border-glow {
    opacity: 1;
}

.price-tier-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    z-index: 10;
}

.featured-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent2));
    color: #000000;
    box-shadow: 0 8px 25px rgba(57, 222, 127, 0.3);
}

.enterprise-badge {
    background: linear-gradient(135deg, #9333ea, #a855f7);
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.3);
}

.price-card.featured {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(57, 222, 127, 0.15);
    transform: scale(1.05);
    box-shadow: 
        0 20px 60px rgba(57, 222, 127, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.price-card.featured:hover {
    transform: translateY(-20px) scale(1.08);
    box-shadow: 
        0 40px 100px rgba(57, 222, 127, 0.25),
        0 20px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.featured-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent2));
    color: #000000;
    padding: 0.8rem 2.5rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 20;
    box-shadow: 
        0 10px 30px rgba(57, 222, 127, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: featuredFloat 3s ease-in-out infinite;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes featuredFloat {
    0%, 100% { 
        transform: translateX(-50%) translateY(0px) scale(1);
        box-shadow: 0 10px 30px rgba(57, 222, 127, 0.4);
    }
    50% { 
        transform: translateX(-50%) translateY(-3px) scale(1.02);
        box-shadow: 0 15px 40px rgba(57, 222, 127, 0.6);
    }
}

.featured-tag i {
    font-size: 0.9rem;
    animation: crownSpin 4s linear infinite;
}

@keyframes crownSpin {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
    100% { transform: rotate(0deg); }
}

.price-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 2rem 0 1.5rem;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    position: relative;
}

.price-container {
    margin: 2rem 0 2.5rem;
    position: relative;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: transparent;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        var(--primary-color) 40%,
        #ffffff 80%
    );
    -webkit-background-clip: text;
    background-clip: text;
    letter-spacing: -3px;
    line-height: 1;
    position: relative;
    display: inline-block;
    animation: priceGlow 2s ease-in-out infinite alternate;
}

@keyframes priceGlow {
    0% { 
        filter: drop-shadow(0 0 20px rgba(57, 222, 127, 0.3));
    }
    100% { 
        filter: drop-shadow(0 0 35px rgba(57, 222, 127, 0.6));
    }
}

.price span {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 600;
    vertical-align: top;
    margin-left: 0.5rem;
}

.price-savings {
    background: linear-gradient(135deg, #ff4757, #ff6b7a);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    animation: savingsPulse 2s ease-in-out infinite;
}

@keyframes savingsPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.price-card ul {
    list-style: none;
    margin: 2.5rem 0;
    padding: 0;
    text-align: left;
}

.price-card ul li {
    margin: 1.2rem 0;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.price-card ul li i {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1rem;
    width: 25px;
    height: 25px;
    background: rgba(57, 222, 127, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(57, 222, 127, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.price-card ul li:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding-left: 3.2rem;
    transform: translateX(5px);
}

.price-card ul li:hover i {
    background: var(--primary-color);
    color: #000000;
    transform: translateY(-50%) scale(1.1) rotate(360deg);
    box-shadow: 0 0 15px rgba(57, 222, 127, 0.4);
}

.price-card ul li:last-child {
    border-bottom: none;
}

.price-card .btn.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent2));
    border: none;
    padding: 1.2rem 3rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #000000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 10px 30px rgba(57, 222, 127, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    min-width: 200px;
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.4), 
        transparent
    );
    transition: left 0.8s ease;
}

.btn-icon {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 1rem;
}

.price-card .btn.primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(57, 222, 127, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--accent2), var(--primary-color));
}

.price-card .btn.primary:hover .btn-shimmer {
    left: 100%;
}

.price-card .btn.primary:hover .btn-icon {
    transform: translateX(5px) rotate(45deg);
}

.featured-btn {
    background: linear-gradient(135deg, #ffffff, #f0f0f0) !important;
    color: #000000 !important;
    box-shadow: 
        0 12px 35px rgba(255, 255, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.featured-btn:hover {
    background: linear-gradient(135deg, #ffffff, #e0e0e0) !important;
    box-shadow: 
        0 20px 50px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
}

.enterprise-btn {
    background: linear-gradient(135deg, #9333ea, #a855f7) !important;
    color: #ffffff !important;
    box-shadow: 
        0 10px 30px rgba(147, 51, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.enterprise-btn:hover {
    background: linear-gradient(135deg, #a855f7, #9333ea) !important;
    box-shadow: 
        0 20px 50px rgba(147, 51, 234, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
}

.price-card-features {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(57, 222, 127, 0.08);
    border-radius: 15px;
    margin: 0.8rem 0;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    border: 1px solid rgba(57, 222, 127, 0.15);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    background: rgba(57, 222, 127, 0.12);
    transform: translateY(-2px);
}

.feature-highlight.premium {
    background: rgba(57, 222, 127, 0.12);
    border-color: rgba(57, 222, 127, 0.25);
}

.feature-highlight.enterprise {
    background: rgba(147, 51, 234, 0.08);
    border-color: rgba(147, 51, 234, 0.15);
    color: #a855f7;
}

.pricing-guarantee {
    margin-top: 5rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 10;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000000;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    animation: guaranteePulse 3s ease-in-out infinite;
}

@keyframes guaranteePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.guarantee-text h4 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.guarantee-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

.guarantee-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.guarantee-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.guarantee-feature i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

#pricing .section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: transparent;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        var(--primary-color) 30%,
        #ffffff 60%,
        var(--accent2) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 800;
    position: relative;
    padding-bottom: 2rem;
    letter-spacing: -1px;
    line-height: 1.1;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% { 
        filter: drop-shadow(0 0 20px rgba(57, 222, 127, 0.3));
    }
    100% { 
        filter: drop-shadow(0 0 35px rgba(57, 222, 127, 0.6));
    }
}

#pricing .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent,
        var(--primary-color), 
        var(--accent2),
        var(--primary-color),
        transparent
    );
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(57, 222, 127, 0.5);
    animation: lineGlow 2s ease-in-out infinite alternate;
}

@keyframes lineGlow {
    0% { 
        opacity: 0.7;
        box-shadow: 0 0 15px rgba(57, 222, 127, 0.5);
    }
    100% { 
        opacity: 1;
        box-shadow: 0 0 25px rgba(57, 222, 127, 0.8);
    }
}

#pricing .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    position: relative;
    z-index: 10;
}

#partners {
    background-color: var(--background-dark);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.partners-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(35, 238, 117, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(78, 255, 155, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 20% 90%, rgba(35, 238, 117, 0.02) 0%, transparent 60%);
    animation: partnersParticleFloat 25s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes partnersParticleFloat {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    100% { transform: translateY(-40px) rotate(3deg) scale(1.1); }
}

.partners-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.partners-title {
    text-align: center;
    margin-bottom: 2rem;
}

.title-highlight {
    color: var(--text-primary);
    font-weight: 400;
}

.title-brand {
    background: linear-gradient(135deg, var(--primary-color), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.partners-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 4rem 0 5rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.partner-stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.partner-stat::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(35, 238, 117, 0.1) 90deg,
        transparent 180deg,
        rgba(78, 255, 155, 0.1) 270deg,
        transparent 360deg
    );
    animation: rotateBorder 6s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.partner-stat:hover::before {
    opacity: 1;
}

.partner-stat:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(35, 238, 117, 0.2);
    box-shadow: 0 20px 40px rgba(35, 238, 117, 0.1);
}

.partner-stat .stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--background-dark);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.partner-stat:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
}

.partner-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.partner-stat:not(:has(.stat-icon)) .stat-number {
    margin-top: 1rem;
}

.partner-stat .stat-number:first-child {
    margin-top: 1rem;
}

.partner-stat .stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 2;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.partner-card {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    animation: partnerCardEnter 0.8s ease-out;
    animation-fill-mode: both;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@keyframes partnerCardEnter {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.partner-card:nth-child(1) { animation-delay: 0.1s; }
.partner-card:nth-child(2) { animation-delay: 0.2s; }
.partner-card:nth-child(3) { animation-delay: 0.3s; }
.partner-card:nth-child(4) { animation-delay: 0.4s; }
.partner-card:nth-child(5) { animation-delay: 0.5s; }
.partner-card:nth-child(6) { animation-delay: 0.6s; }
.partner-card:nth-child(7) { animation-delay: 0.7s; }
.partner-card:nth-child(8) { animation-delay: 0.8s; }

.partner-card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--primary-color), 
        var(--accent2), 
        var(--primary-color));
    border-radius: 26px;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
    z-index: -1;
}

.partner-card:hover .partner-card-glow {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

.partner-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(35, 238, 117, 0.3);
    box-shadow: 0 30px 60px rgba(35, 238, 117, 0.15);
}

.partner-card a {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 2rem;
    height: 100%;
}

.partner-image-container {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.partner-card:hover .partner-image-container {
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(35, 238, 117, 0.4);
}

.partner-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.partner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(35, 238, 117, 0.2) 0%, 
        rgba(78, 255, 155, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-card:hover .partner-overlay {
    opacity: 1;
}

.partner-info {
    text-align: center;
}

.partner-info h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-info h3 {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.partner-info p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, 
        rgba(35, 238, 117, 0.2), 
        rgba(78, 255, 155, 0.2));
    border: 1px solid rgba(35, 238, 117, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--primary-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.partner-card:hover .partner-badge {
    background: linear-gradient(135deg, 
        rgba(35, 238, 117, 0.3), 
        rgba(78, 255, 155, 0.3));
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(35, 238, 117, 0.3);
}

.partnership-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.partnership-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, 
        rgba(35, 238, 117, 0.05) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.partnership-cta:hover::before {
    opacity: 1;
}

.partnership-cta h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.partnership-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.partner-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2));
    color: var(--background-dark);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(35, 238, 117, 0.3);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.partner-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent2), var(--primary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.partner-cta-btn:hover::before {
    opacity: 1;
}

.partner-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(35, 238, 117, 0.4);
}

.partner-cta-btn i,
.partner-cta-btn span {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .partners-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 3rem 0 4rem 0;
    }
    
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 1.5rem;
    }
    
    .partner-card a {
        padding: 1.5rem;
    }
    
    .partner-image-container {
        width: 100px;
        height: 100px;
    }
    
    .partnership-cta {
        padding: 2rem;
    }
    
    .partnership-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .partners-container {
        padding: 0 1rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .partner-card a {
        padding: 1rem;
    }
    
    .partner-image-container {
        width: 80px;
        height: 80px;
    }
    
    .partnership-cta {
        padding: 1.5rem;
    }
}

#about {
    background-color: var(--background-dark);
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.about-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(35, 238, 117, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(78, 255, 155, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(35, 238, 117, 0.02) 0%, transparent 60%);
    animation: aboutParticleFloat 20s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes aboutParticleFloat {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    100% { transform: translateY(-30px) rotate(5deg) scale(1.1); }
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.title-highlight {
    color: var(--text-primary);
    font-weight: 400;
}

.title-brand {
    background: linear-gradient(135deg, var(--primary-color), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
}

.title-brand::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent2));
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(35, 238, 117, 0.4);
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.about-text-card {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.03) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-text-card:hover {
    transform: translateY(-8px);
    border-color: rgba(35, 238, 117, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.text-glow-effect {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(35, 238, 117, 0.1), 
        rgba(78, 255, 155, 0.1), 
        rgba(35, 238, 117, 0.1));
    border-radius: 26px;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.6s ease;
    z-index: -1;
}

.about-text-card:hover .text-glow-effect {
    opacity: 1;
}

.about-description,
.about-mission {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.about-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-description em {
    color: var(--accent2);
    font-style: normal;
    font-weight: 600;
}

.highlight-text {
    background: linear-gradient(135deg, var(--primary-color), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(35, 238, 117, 0.1), 
        transparent);
    transition: left 0.6s ease;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(35, 238, 117, 0.2);
    box-shadow: 0 15px 30px rgba(35, 238, 117, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--background-dark);
    box-shadow: 0 10px 30px rgba(35, 238, 117, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotateY(180deg);
    box-shadow: 0 15px 40px rgba(35, 238, 117, 0.4);
}

.feature-item h4 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    padding: 3rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
}

.stat::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, 
        rgba(35, 238, 117, 0.1) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.stat:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 30px 60px rgba(35, 238, 117, 0.15);
    border-color: rgba(35, 238, 117, 0.3);
}

.stat:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--background-dark);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.stat:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
}

.stat h3 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent2));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    text-shadow: 0 0 30px rgba(35, 238, 117, 0.3);
}

.stat p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.stat-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent2));
    border-radius: 2px;
    width: 0;
    transition: width 2s ease-in-out 0.5s;
    box-shadow: 0 0 10px rgba(35, 238, 117, 0.5);
}

.stat:nth-child(1) .stat-fill { animation: fillBar1 2s ease-in-out 1s forwards; }
.stat:nth-child(2) .stat-fill { animation: fillBar2 2s ease-in-out 1.2s forwards; }
.stat:nth-child(3) .stat-fill { animation: fillBar3 2s ease-in-out 1.4s forwards; }

@keyframes fillBar1 { to { width: 99.9%; } }
@keyframes fillBar2 { to { width: 85%; } }
@keyframes fillBar3 { to { width: 100%; } }

.changelog-btn {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(35, 238, 117, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(35, 238, 117, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.changelog-btn:hover {
    color: var(--background-dark);
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(35, 238, 117, 0.4);
}

@media (max-width: 768px) {
    .about-hero {
        gap: 2rem;
    }
    
    .about-text-card {
        padding: 2rem;
    }
    
    .about-description,
    .about-mission {
        font-size: 1.1rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat {
        padding: 2rem 1.5rem;
    }
    
    .stat h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-container {
        padding: 0 1rem;
    }
    
    .about-text-card {
        padding: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

::-webkit-scrollbar {
    width: 8px;
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
    transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--background-dark);
}

.scroll-arrow {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    animation: bounce 2s infinite;
    color: var(--text-primary);
    font-size: 2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-arrow:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-15px) translateX(-50%);
    }
    60% {
        transform: translateY(-7px) translateX(-50%);
    }
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-wrapper.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 0.8s linear infinite;
}

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

footer {
    background-color: var(--background-light);
    padding: 4rem 10% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-section a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0.5rem 0;
    transition: color 0.3s ease;
}

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

.footer-section i {
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        padding: 2rem;
    }

    .nav-links {
        margin-top: 1rem;
    }

    .nav-links a {
        margin: 0 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    section {
        padding: 6rem 5% 4rem;
    }

    .features-grid,
    .pricing-grid,
    .stats {
        grid-template-columns: 1fr;
    }

    .circle {
        opacity: 0.1;
    }

    .circle-1 {
        width: 200px;
        height: 200px;
    }

    .circle-2, .circle-4 {
        width: 150px;
        height: 150px;
    }

    .circle-3, .circle-5 {
        width: 250px;
        height: 250px;
    }

    .blur-circle {
        opacity: 0.08;
    }

    .reveal-text {
        font-size: 2.5rem;
    }
}

.user-count {
    position: absolute;
    top: 100px;
    left: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    animation: slideInLeft 1s ease 0.5s both;
}

.user-count:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.user-count:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
}

.user-count:hover:before {
    opacity: 1;
}

.user-count span {
    position: relative;
    z-index: 2;
    color: var(--primary-color);
    font-weight: 700;
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .user-count,
    .scan-count {
        display: none;
    }
}

.scan-count {
    position: absolute;
    top: 100px;
    left: 140px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    animation: slideInLeft 1s ease 0.7s both;
}

.scan-count:before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 30px;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: xor;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.scan-count:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
}

.scan-count:hover:before {
    opacity: 1;
}

.scan-count span {
    position: relative;
    z-index: 2;
    color: var(--primary-color);
    font-weight: 700;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.nav-links a[href*="changelogs"] {
    position: relative;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-links a[href*="changelogs"]:hover {
    color: var(--accent2);
    text-shadow: 0 0 10px rgba(35, 238, 117, 0.3);
}

.changelog-new {
    position: relative;
}

.changelog-new::after {
    content: '';
    top: -4px;
    right: -6px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-color);
    animation: pulse 2s infinite;
}

.changelog-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(57, 222, 127, 0.15);
    border-radius: 16px;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-decoration: none;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.changelog-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(57, 222, 127, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.changelog-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(57, 222, 127, 0.05),
        rgba(57, 222, 127, 0.15)
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 16px;
}

.changelog-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 12px 35px rgba(57, 222, 127, 0.15),
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(57, 222, 127, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.changelog-btn:hover::before {
    left: 100%;
}

.changelog-btn:hover::after {
    opacity: 1;
}

.changelog-btn i {
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    line-height: normal;
    display: inline-flex;
    vertical-align: middle;
    margin-right: 0.15rem;
    filter: drop-shadow(0 0 8px rgba(57, 222, 127, 0.3));
}

.changelog-btn:hover i {
    transform: rotate(360deg) scale(1.1);
    filter: drop-shadow(0 0 12px rgba(57, 222, 127, 0.6));
}

.feature-card p a.changelog-btn {
    padding: 0.5rem 1.2rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    vertical-align: middle;
    display: inline-flex;
    align-items: center;
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin: 0.5rem;
    z-index: 1;
    letter-spacing: 0.01em;
}

.btn.primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent2));
    color: #000;
    box-shadow: 0 8px 20px rgba(0, 230, 118, 0.25);
}

.btn.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent2), var(--primary-color));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn.primary:hover::before {
    opacity: 1;
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(0, 230, 118, 0.3);
}

.nav-links a:not(.login-btn):not(.dashboard-btn) {
    position: relative;
}

.nav-links a:not(.login-btn):not(.dashboard-btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.nav-links a:not(.login-btn):not(.dashboard-btn):hover::after {
    transform: scaleX(1);
}

.price-card:nth-child(3) {
    animation: cardFloat3 3.8s ease-in-out infinite;
}

#features {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin: -20px auto 60px auto;
    max-width: 600px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.games-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(35, 238, 117, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(78, 255, 155, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(35, 238, 117, 0.02) 0%, transparent 70%);
    animation: particleFloat 15s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes particleFloat {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-20px) scale(1.05); }
}

.games-supported-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.games-supported-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    perspective: 1000px;
}

.game-card {
    grid-column: span 2;
}

.game-card.siege {
    grid-column: span 5;
}

.game-card.ragemp {
    grid-column: span 5;
}

.game-card {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(255, 255, 255, 0.04) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
    animation: gameCardEnter 0.8s ease-out;
    animation-fill-mode: both;
}

@keyframes gameCardEnter {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(15deg);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.2s; }
.game-card:nth-child(3) { animation-delay: 0.3s; }
.game-card:nth-child(4) { animation-delay: 0.4s; }
.game-card:nth-child(5) { animation-delay: 0.5s; }
.game-card:nth-child(6) { animation-delay: 0.6s; }
.game-card:nth-child(7) { animation-delay: 0.7s; }
.game-card:nth-child(8) { animation-delay: 0.8s; }
.game-card:nth-child(9) { animation-delay: 0.9s; }
.game-card:nth-child(10) { animation-delay: 1.0s; }
.game-card:nth-child(11) { animation-delay: 1.1s; }
.game-card:nth-child(12) { animation-delay: 1.2s; }

.game-card-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent2), var(--primary-color));
    border-radius: 26px;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.3s ease;
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { filter: blur(8px) brightness(1); }
    50% { filter: blur(12px) brightness(1.2); }
}

.game-card-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 2;
}

.game-card i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.game-card span {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.game-card-hover-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    pointer-events: none;
}

.game-card:hover {
    transform: translateY(-12px) rotateY(5deg) rotateX(5deg) scale(1.05);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(35, 238, 117, 0.15);
}

.game-card:hover .game-card-glow {
    opacity: 1;
}

.game-card:hover i {
    transform: scale(1.2) translateY(-5px);
}

.game-card:hover span {
    color: #ffffff;
    transform: translateY(-2px);
}

.game-card:hover .game-card-hover-effect {
    width: 200px;
    height: 200px;
}

.game-card.altv i { color: #ff6b35; }
.game-card.cod i { color: #f4d03f; }
.game-card.dayz i { color: #e74c3c; }
.game-card.fivem i { color: #3498db; }
.game-card.fortnite i { color: #9b59b6; }
.game-card.freefire i { color: #e67e22; }
.game-card.gmod i { color: #2ecc71; }
.game-card.minecraft i { color: #27ae60; }
.game-card.roblox i { color: #e74c3c; }
.game-card.rust i { color: #d35400; }
.game-card.siege i { color: #34495e; }
.game-card.ragemp i { color: #8e44ad; }

.game-card.altv:hover .game-card-glow { background: linear-gradient(45deg, #ff6b35, #ff8c42, #ff6b35); }
.game-card.cod:hover .game-card-glow { background: linear-gradient(45deg, #f4d03f, #f7dc6f, #f4d03f); }
.game-card.dayz:hover .game-card-glow { background: linear-gradient(45deg, #e74c3c, #ec7063, #e74c3c); }
.game-card.fivem:hover .game-card-glow { background: linear-gradient(45deg, #3498db, #5dade2, #3498db); }
.game-card.fortnite:hover .game-card-glow { background: linear-gradient(45deg, #9b59b6, #bb8fce, #9b59b6); }
.game-card.freefire:hover .game-card-glow { background: linear-gradient(45deg, #e67e22, #f0b27a, #e67e22); }
.game-card.gmod:hover .game-card-glow { background: linear-gradient(45deg, #2ecc71, #58d68d, #2ecc71); }
.game-card.minecraft:hover .game-card-glow { background: linear-gradient(45deg, #27ae60, #52c882, #27ae60); }
.game-card.roblox:hover .game-card-glow { background: linear-gradient(45deg, #e74c3c, #ec7063, #e74c3c); }
.game-card.rust:hover .game-card-glow { background: linear-gradient(45deg, #d35400, #e67e22, #d35400); }
.game-card.siege:hover .game-card-glow { background: linear-gradient(45deg, #34495e, #5d6d7e, #34495e); }
.game-card.ragemp:hover .game-card-glow { background: linear-gradient(45deg, #8e44ad, #a569bd, #8e44ad); }

.games-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05) 0%, 
        rgba(255, 255, 255, 0.02) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    animation: countUp 2s ease-out 1.5s both;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@keyframes countUp {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 768px) {
    .games-supported-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .game-card.siege,
    .game-card.ragemp {
        grid-column: span 1;
    }
    
    .game-card {
        height: 140px;
    }
    
    .game-card i {
        font-size: 2.5rem;
    }
    
    .game-card span {
        font-size: 0.9rem;
    }
    
    .games-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .games-supported-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .game-card.siege,
    .game-card.ragemp {
        grid-column: span 1;
    }
    
    .game-card {
        height: 120px;
    }
    
    .game-card i {
        font-size: 2rem;
    }
    
    .game-card span {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0 5%;
        min-height: 100vh;
    }
    
    .hero {
        padding: 1rem;
        max-width: 100%;
    }
    
    .reveal-text {
        font-size: 2.5rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .fade-in {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 200px;
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0 3%;
    }
    
    .hero {
        padding: 0.5rem;
    }
    
    .reveal-text {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .fade-in {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons .btn {
        width: 180px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
