/* ========== VARIABLES - BLUE NEON THEME ========== */
:root {
    --primary: #0066ff;
    --primary-dark: #0052cc;
    --primary-light: #3399ff;
    --secondary: #3b82f6;
    --secondary-light: #60a5fa;
    --accent: #00c6ff;
    --neon-blue: #0088ff;
    --neon-cyan: #00e5ff;
    --neon-deep: #0044cc;
    --success: #00ff88;
    --warning: #ffaa00;
    --dark: #0a0a1a;
    --darker: #050510;
    --light: #f0f4ff;
    --gray: #6c757d;
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(0, 102, 255, 0.2);
    --glow: 0 0 20px rgba(0, 102, 255, 0.4);
    --glow-strong: 0 0 30px rgba(0, 102, 255, 0.6);
    --glow-cyan: 0 0 15px rgba(0, 229, 255, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--darker);
    color: white;
    overflow-x: hidden;
    cursor: none;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 102, 255, 0.08), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ========== CUSTOM CURSOR ========== */
.cursor {
    width: 8px;
    height: 8px;
    background: var(--neon-blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s;
    box-shadow: 0 0 15px var(--neon-blue);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 2px solid var(--neon-cyan);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.2s, width 0.2s, height 0.2s;
    box-shadow: 0 0 20px var(--neon-cyan);
}

.cursor-follower.active {
    width: 80px;
    height: 80px;
    border-color: var(--neon-blue);
}

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

/* ========== CONTAINER ========== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ========== NEON TEXT STYLE ========== */
.neon-text {
    text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue), 0 0 40px var(--neon-cyan);
    animation: neonPulseBlue 1.5s ease-in-out infinite alternate;
}

@keyframes neonPulseBlue {
    0% {
        text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
    }
    100% {
        text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue), 0 0 40px var(--neon-cyan), 0 0 60px var(--neon-cyan);
    }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 20, 0.95);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 102, 255, 0.2);
    box-shadow: 0 5px 30px rgba(0, 102, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-3d {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
}

.logo-img {
    height: 40px;
    width: auto;
    animation: floatLogo 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px var(--neon-blue));
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.logo-text {
    background: linear-gradient(135deg, white, var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-cyan));
    transition: width 0.3s;
    box-shadow: 0 0 5px var(--neon-blue);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    text-shadow: 0 0 8px var(--neon-blue);
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-outline {
    border: 2px solid var(--neon-blue);
    color: white;
    background: transparent;
    box-shadow: 0 0 5px rgba(0, 102, 255, 0.3);
}

.btn-outline:hover {
    background: var(--neon-blue);
    transform: translateY(-2px);
    box-shadow: var(--glow);
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-deep));
    color: white;
    border: none;
    box-shadow: 0 0 10px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-strong);
}

.btn-large {
    padding: 14px 36px;
    font-size: 16px;
}

.btn-glow {
    animation: pulseBlue 2s infinite;
}

@keyframes pulseBlue {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(0, 102, 255, 0); }
}

.w-100 {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}

/* ========== HERO SECTION WITH 3D ELEMENTS ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-3d-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-sphere {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15), transparent);
    border-radius: 50%;
    animation: floatSphere 8s ease-in-out infinite;
}

.floating-cube {
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: rgba(0, 198, 255, 0.08);
    transform: rotate(45deg);
    animation: rotateCubeNew 12s linear infinite;
}

.floating-ring {
    position: absolute;
    top: 50%;
    left: 20%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(0, 102, 255, 0.2);
    border-radius: 50%;
    animation: ringPulseNew 4s ease-in-out infinite;
}

.floating-cylinder {
    position: absolute;
    bottom: 20%;
    right: 15%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 198, 255, 0.05));
    border-radius: 30px;
    transform: rotate(15deg);
    animation: floatCylinder 7s ease-in-out infinite;
}

@keyframes floatSphere {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

@keyframes rotateCubeNew {
    0% { transform: rotate(45deg) translateY(0) scale(1); }
    50% { transform: rotate(225deg) translateY(20px) scale(1.2); }
    100% { transform: rotate(405deg) translateY(0) scale(1); }
}

@keyframes ringPulseNew {
    0%, 100% { transform: scale(1); opacity: 0.3; border-color: rgba(0, 102, 255, 0.2); }
    50% { transform: scale(1.3); opacity: 0.6; border-color: rgba(0, 229, 255, 0.5); }
}

@keyframes floatCylinder {
    0%, 100% { transform: rotate(15deg) translateY(0); }
    50% { transform: rotate(25deg) translateY(-20px); }
}

.neon-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 102, 255, 0.15), transparent 60%);
    transform: translate(-50%, -50%);
    animation: rotateGlow 20s linear infinite;
}

@keyframes rotateGlow {
    0% { transform: translate(-50%, -50%) rotate(0deg) scale(1); }
    50% { transform: translate(-50%, -50%) rotate(180deg) scale(1.2); }
    100% { transform: translate(-50%, -50%) rotate(360deg) scale(1); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    display: inline-block;
    animation: pulseDotNew 1.5s infinite;
}

@keyframes pulseDotNew {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 var(--success); }
    50% { opacity: 0.5; transform: scale(1.2); box-shadow: 0 0 0 5px var(--success); }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    display: block;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Dashboard 3D Preview */
.dashboard-3d {
    position: relative;
    perspective: 1000px;
}

.dashboard-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 102, 255, 0.05));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 24px;
    padding: 20px;
    transform: rotateY(10deg) rotateX(5deg);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dashboard-card:hover {
    transform: rotateY(5deg) rotateX(2deg) translateY(-15px);
    border-color: var(--neon-blue);
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }
.card-title {
    margin-left: auto;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stat-val {
    font-size: 24px;
    font-weight: 700;
    display: block;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.txn-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    transition: all 0.3s;
}

.txn-item:hover {
    background: rgba(0, 102, 255, 0.1);
    padding-left: 10px;
    border-radius: 8px;
}

.txn-item .success { color: var(--success); text-shadow: 0 0 5px var(--success); }
.txn-item .pending { color: var(--warning); }

.floating-badge {
    position: absolute;
    background: rgba(0, 102, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid var(--neon-blue);
    border-radius: 40px;
    padding: 8px 16px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.3);
}

.badge-1 {
    top: -20px;
    right: 20px;
    animation: floatBadgeNew 3s ease-in-out infinite;
}

.badge-2 {
    bottom: 40px;
    left: -30px;
    animation: floatBadgeNew 3s ease-in-out infinite 1s;
}

@keyframes floatBadgeNew {
    0%, 100% { transform: translateY(0); box-shadow: 0 0 10px rgba(0, 102, 255, 0.3); }
    50% { transform: translateY(-15px); box-shadow: 0 0 25px rgba(0, 102, 255, 0.6); }
}

/* ========== SECTION HEADER ========== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.2);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 13px;
    margin-bottom: 16px;
    color: var(--neon-cyan);
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
}

/* ========== FEATURES - MODERN CARDS WITH GLOW ========== */
.features {
    padding: 100px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(0, 102, 255, 0.03));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.05), transparent);
    transform: rotate(0deg);
    transition: transform 0.6s;
    z-index: -1;
}

.feature-card:hover::before {
    transform: rotate(360deg);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 102, 255, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-deep));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s;
    box-shadow: 0 0 15px rgba(0, 102, 255, 0.4);
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg) scale(1.1);
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.8);
}

.feature-icon i {
    font-size: 36px;
    color: white;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* ========== HOW IT WORKS - TIMELINE WITH ICONS ========== */
.how-it-works {
    padding: 100px 0;
    position: relative;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.step {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(0, 102, 255, 0.03));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step:hover {
    border-color: var(--neon-cyan);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 35px rgba(0, 198, 255, 0.3);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    box-shadow: 0 0 15px var(--neon-blue);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 102, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto;
    transition: all 0.3s;
}

.step:hover .step-icon {
    background: rgba(0, 102, 255, 0.3);
    transform: scale(1.1);
}

.step-icon i {
    font-size: 32px;
    color: var(--neon-blue);
}

.step h3 {
    margin-bottom: 12px;
}

.step p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.step-link {
    color: var(--neon-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.step-link:hover {
    text-shadow: 0 0 10px var(--neon-cyan);
}

.step-arrow {
    font-size: 32px;
    color: rgba(0, 102, 255, 0.4);
    animation: arrowMove 1.5s ease-in-out infinite;
}

@keyframes arrowMove {
    0%, 100% { transform: translateX(0); opacity: 0.4; }
    50% { transform: translateX(10px); opacity: 1; }
}

/* ========== UPI APPS SECTION WITH ROTATING BORDER ========== */
.upi-apps {
    padding: 100px 0;
    position: relative;
}

.upi-apps-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.upi-app-item {
    text-align: center;
}

.app-circle {
    width: 130px;
    height: 130px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 102, 255, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    position: relative;
    animation: circlePulseBlue 2s ease-in-out infinite;
    transition: all 0.3s;
}

.app-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    z-index: -1;
    opacity: 0.4;
    animation: rotateBorderBlue 3s linear infinite;
}

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

@keyframes circlePulseBlue {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 20px rgba(0, 102, 255, 0); }
}

.app-circle img {
    width: 70px;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 0 5px rgba(0, 102, 255, 0.5));
}

.upi-app-item:hover .app-circle {
    transform: scale(1.05);
}

.upi-app-item:hover .app-circle img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px var(--neon-blue));
}

.upi-app-item span {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ========== PRICING - MODERN CARDS ========== */
.pricing {
    padding: 100px 0;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(0, 102, 255, 0.03));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 40px rgba(0, 102, 255, 0.4);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.08), rgba(0, 50, 100, 0.05));
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 35px rgba(0, 198, 255, 0.2);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    padding: 5px 18px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 0 10px var(--neon-blue);
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.price {
    margin-bottom: 16px;
}

.currency {
    font-size: 20px;
    vertical-align: top;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features li i {
    color: var(--success);
    width: 20px;
}

/* ========== TESTIMONIALS - CARDS WITH BORDER GLOW ========== */
.testimonials {
    padding: 100px 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(0, 102, 255, 0.03));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-blue);
    box-shadow: 0 0 35px rgba(0, 102, 255, 0.2);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-icon {
    font-size: 30px;
    color: var(--neon-blue);
    opacity: 0.5;
    margin-bottom: 16px;
}

.testimonial-card p {
    line-height: 1.6;
    margin-bottom: 16px;
}

.stars {
    color: #ffc107;
    margin-bottom: 16px;
}

.testimonial-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.testimonial-card span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========== CTA SECTION ========== */
.cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-3d-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 50, 100, 0.1));
    backdrop-filter: blur(20px);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 48px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.trust-badge {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.trust-badge i {
    margin-right: 8px;
    color: var(--neon-blue);
}

/* ========== FAQ ========== */
.faq {
    padding: 100px 0;
    position: relative;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(0, 102, 255, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--neon-blue);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(0, 102, 255, 0.05);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--neon-blue);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: rgba(255, 255, 255, 0.6);
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 200px;
}

/* ========== FOOTER ========== */
.footer {
    background: rgba(5, 5, 20, 0.95);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 102, 255, 0.2);
}

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

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(0, 102, 255, 0.3);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-deep));
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--neon-blue);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--neon-cyan);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-col ul li a:hover {
    color: var(--neon-blue);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 44px;
    }
    
    .hero-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(5, 5, 20, 0.98);
        backdrop-filter: blur(15px);
        transition: left 0.3s;
        padding: 30px;
        border-radius: 0 0 20px 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cursor, .cursor-follower {
        display: none;
    }
    
    body {
        cursor: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .pricing-card {
        padding: 24px;
    }
}

/* ========== EXTRA ANIMATIONS ========== */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.btn-primary, .btn-outline {
    position: relative;
    overflow: hidden;
}

.btn-primary::after, .btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::after, .btn-outline:hover::after {
    left: 100%;
}

/* Fade animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}