/* Base Styles & Custom Variables */
:root {
    --primary: #6366f1;
    --primary-light: #818cf8;
    --primary-dark: #4338ca;
    --secondary: #06b6d4;
    --secondary-light: #22d3ee;
    --accent: #f43f5e;
    --success: #10b981;
    --warning: #f59e0b;
    --info: #3b82f6;
    --danger: #ef4444;
    
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --white: #ffffff;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-bg-dark: rgba(15, 23, 42, 0.8);
    --glass-border-dark: rgba(255, 255, 255, 0.08);
    
    --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.3);
    
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography Headings */
h1, h2, h3, h4, .logo {
    font-family: 'Lexend', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    color: var(--darker);
}

h1 { font-size: 4.5rem; letter-spacing: -0.03em; margin-bottom: 1.5rem; }
h2 { font-size: 3.2rem; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
h3 { font-size: 1.75rem; margin-bottom: 1rem; }
h4 { font-size: 1.35rem; margin-bottom: 0.75rem; }

p { margin-bottom: 1rem; color: var(--gray); font-size: 1.125rem; }

/* Dynamic Gradients */
.text-gradient {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.text-gradient-alt {
    background: linear-gradient(135deg, var(--secondary-light), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-danger { color: var(--danger); }
.text-info { color: var(--info); }
.text-white { color: var(--white); }
.text-dark { color: var(--dark); }
.opacity-80 { opacity: 0.8; }

.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.pb-2 { padding-bottom: 0.5rem; }
.p-4 { padding: 2rem; }
.d-flex { display: flex; }
.justify-content-between { justify-content: space-between; }
.border-bottom { border-bottom: 1px solid rgba(255,255,255,0.1); }
.border-top { border-top: 1px solid rgba(0,0,0,0.1); }
.text-center { text-align: center; }
.text-left { text-align: left; }
.w-100 { width: 100%; }

/* Background Animated Blobs */
.background-effects {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.grain {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform:translate(0, 0) }
    10% { transform:translate(-5%, -10%) }
    20% { transform:translate(-15%, 5%) }
    30% { transform:translate(7%, -25%) }
    40% { transform:translate(-5%, 25%) }
    50% { transform:translate(-15%, 10%) }
    60% { transform:translate(15%, 0%) }
    70% { transform:translate(0%, 15%) }
    80% { transform:translate(3%, 35%) }
    90% { transform:translate(-10%, 10%) }
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: drift 20s infinite alternate cubic-bezier(0.5, 0, 0.5, 1);
}

.blob-1 {
    top: -10%; left: -10%;
    width: 500px; height: 500px;
    background: rgba(79, 70, 229, 0.15); /* Primary */
}

.blob-2 {
    bottom: -20%; right: -10%;
    width: 600px; height: 600px;
    background: rgba(14, 165, 233, 0.1); /* Secondary */
    animation-delay: -5s;
}

.blob-3 {
    top: 40%; left: 60%;
    width: 400px; height: 400px;
    background: rgba(244, 63, 94, 0.05); /* Accent */
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.1); }
}

/* Utilities */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: 900px;
}

.section {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
}

.flex-text {
    max-width: 600px;
}
.flex-text h2 { margin-bottom: 0.5rem; }
.flex-text p { margin-bottom: 0; }

.grid {
    display: grid;
    gap: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-family: 'Lexend', sans-serif;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 10px 20px -10px var(--primary);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -10px var(--primary);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--darker);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-top: 1rem;
}

.link-btn:hover {
    color: var(--white);
    gap: 0.75rem;
}

/* Glassmorphism Classes */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
    transition: var(--transition);
    z-index: 1;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: -150%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-25deg);
    transition: 0.8s ease;
}

.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.12);
}

.glass-card:hover::before {
    left: 150%;
}

.glass-card-dark {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid var(--glass-border-dark);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
}

.bg-light-glass {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 1.5rem 0;
    background: transparent;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.3rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    background: rgba(255, 255, 255, 0.4);
    padding: 0.6rem 1.75rem;
    border-radius: 9999px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.7);
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute; bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover { color: var(--primary); }
.nav-links a:hover::after { width: 100%; }

.menu-toggle {
    display: none;
    background: none; border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.glow-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 2rem; font-weight: 800; color: var(--darker); font-family: 'Outfit', sans-serif;}
.stat-label { font-size: 0.875rem; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }

.hero-image {
    position: relative;
    perspective: 1000px;
}

.img-wrapper {
    border-radius: 30px;
    overflow: hidden;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: var(--transition);
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.hero-image:hover .img-wrapper {
    transform: rotateY(0deg) rotateX(0deg);
}

.img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.floating-bubble {
    position: absolute;
    padding: 1rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    animation: float 5s ease-in-out infinite;
    z-index: 2;
}

.bubble-1 { top: 15%; left: -15%; animation-delay: 0s; }
.bubble-2 { bottom: 15%; right: -10%; animation-delay: 2.5s; background: rgba(15, 23, 42, 0.9); color: white; border-color: rgba(255,255,255,0.1); }

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

/* Features Grid */
.features-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }

.icon-box {
    width: 65px; height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: white;
    margin-bottom: 2rem;
}

.gradient-1 { background: linear-gradient(135deg, #4f46e5, #ec4899); box-shadow: 0 10px 20px rgba(79, 70, 229, 0.3); }
.gradient-2 { background: linear-gradient(135deg, #0ea5e9, #10b981); box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3); }
.gradient-3 { background: linear-gradient(135deg, #f59e0b, #f43f5e); box-shadow: 0 10px 20px rgba(245, 158, 11, 0.3); }

/* Services Grid */
.services-grid { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.service-block { padding: 2.5rem 2rem; }
.service-icon { font-size: 2.5rem; margin-bottom: 1.5rem; display: inline-block; }

/* Store Section */
.rounded-section {
    border-radius: 40px;
    margin: 2rem;
    padding: 8rem 0;
}
.bg-dark { background-color: var(--darker); }

.store-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
.store-item { padding: 0; display: flex; flex-direction: column; overflow: hidden; }
.store-img { position: relative; height: 250px; overflow: hidden; }
.store-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.store-item:hover .store-img img { transform: scale(1.05); }

.tag {
    position: absolute; top: 1rem; right: 1rem;
    background: var(--primary); color: white;
    padding: 0.25rem 0.75rem; border-radius: 9999px;
    font-size: 0.8rem; font-weight: 700;
}

.store-info { padding: 2rem; flex-grow: 1; display: flex; flex-direction: column; }
.store-info h3 { color: white; margin-bottom: 1rem; }
.store-info p { color: #94a3b8; flex-grow: 1; }

.exchange-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(14, 165, 233, 0.2));
    border: 1px solid rgba(79, 70, 229, 0.3);
    justify-content: center;
}
.exchange-content { padding: 3rem; text-align: center; }
.exchange-content h3 { color: white; font-size: 2rem; margin-bottom: 1rem; }
.exchange-content p { color: #cbd5e1; margin-bottom: 2rem; }
.exchange-content i { font-size: 2.5rem; color: var(--secondary); margin-bottom: 1rem; display: block; }

/* Testimonials */
.testimonial-grid { grid-template-columns: repeat(2, 1fr); }
.testimonial-card { position: relative; padding: 3rem; }
.stars { color: var(--warning); font-size: 1rem; margin-bottom: 1.5rem; letter-spacing: 2px;}
.review-text { font-size: 1.25rem; font-style: italic; color: var(--darker); margin-bottom: 2rem; line-height: 1.8; }

.reviewer { display: flex; align-items: center; gap: 1rem; }
.avatar {
    width: 50px; height: 50px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 1.25rem;
}
.bg-primary { background: var(--primary); }
.bg-secondary { background: var(--secondary); }
.reviewer h4 { margin-bottom: 0; font-size: 1.1rem; }
.reviewer span { font-size: 0.875rem; color: var(--gray); font-weight: 500;}

/* FAQ Section */
.faq-container { display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: var(--transition);
}
.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex; justify-content: space-between; align-items: center;
    background: none; border: none;
    font-size: 1.25rem; font-weight: 600; color: var(--darker);
    font-family: 'Outfit', sans-serif; cursor: pointer; text-align: left;
}
.faq-question i { color: var(--primary); transition: transform 0.3s ease; }
.faq-item.active { box-shadow: var(--shadow-md); transform: scale(1.01); border-left: 4px solid var(--primary); }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    background: var(--light);
}
.faq-answer p { padding: 0 2rem 2rem; margin: 0; }

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    padding: 0;
    overflow: hidden;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.icon-circle {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; color: var(--secondary-light);
    flex-shrink: 0;
}

.contact-list-item h5 { font-size: 1.1rem; color: white; margin-bottom: 0.25rem;}
.contact-list-item p { margin-bottom: 0; color: #cbd5e1; }

.social-links { display: flex; gap: 1rem; }
.social-circle {
    width: 45px; height: 45px; border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: white; transition: var(--transition);
}
.social-circle:hover { background: var(--primary); transform: translateY(-3px); }

.contact-map { background: var(--light); display: flex; flex-direction: column; }
.map-placeholder {
    width: 100%; height: 100%; min-height: 400px;
    border-radius: 16px;
    background: #f1f5f9 url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect fill="none" width="100" height="100"/><path fill="rgba(0,0,0,0.05)" d="M0 0h100v100H0z"/></svg>') repeat;
    display: flex; align-items: center; justify-content: center;
}
.map-inner { max-width: 300px; }

/* Footer */
.footer { background: var(--white); padding: 5rem 0 2rem; border-top: 1px solid var(--glass-border); position: relative; z-index: 1;}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 4rem; }
.footer h4 { font-size: 1.25rem; margin-bottom: 1.5rem; color: var(--darker); }
.footer ul li { margin-bottom: 0.75rem; }
.footer ul a { color: var(--gray); font-weight: 500; }
.footer ul a:hover { color: var(--primary); padding-left: 5px;}

.newsletter-form { display: flex; background: var(--light); border-radius: 9999px; padding: 0.25rem; border: 1px solid var(--gray-light); }
.newsletter-form input {
    border: none; background: transparent; padding: 0.75rem 1.5rem;
    width: 100%; font-family: inherit; font-size: 1rem; outline: none;
}
.newsletter-form button {
    background: var(--primary); color: white; border: none;
    width: 45px; height: 45px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--transition);
}
.newsletter-form button:hover { background: var(--primary-dark); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.legal-links { display: flex; gap: 2rem; }
.legal-links a { color: var(--gray); font-size: 0.9rem; }
.legal-links a:hover { color: var(--primary); }

/* Animation utilities */
.reveal-up { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-active { opacity: 1; transform: translate(0, 0); }

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .floating-bubble { display: none; }
    h1 { font-size: 3.5rem; }
    .btn-large { padding: 0.875rem 1.75rem; font-size: 1.05rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .store-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px -5px var(--primary);
    z-index: 999;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.2);
}

.floating-call-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px -5px var(--primary);
}

@media (max-width: 768px) {
    .floating-call-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 55px;
        height: 55px;
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .rounded-section { margin: 0; border-radius: 0; padding: 5rem 0; }
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .nav-links, .pulse-btn { display: none; }
    .menu-toggle { display: block; }
    .features-grid, .store-grid, .testimonial-grid { grid-template-columns: 1fr; }
    .section-flex { flex-direction: column; align-items: flex-start; gap: 1.5rem; text-align: left; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
}

/* Custom Tech Cursor */
.custom-cursor {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary);
    border-radius: 8px; /* Hexagon-like or square tech feel */
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transform: translate3d(0, 0, 0) rotate(45deg);
    transition: width 0.3s, height 0.3s, border-color 0.3s, background-color 0.3s, transform 0.2s ease-out;
    display: none;
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.3);
}

.custom-cursor::before {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.custom-cursor-inner {
    width: 8px;
    height: 8px;
    background-color: var(--secondary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    transform: translate3d(0, 0, 0);
    display: none;
    box-shadow: 0 0 10px var(--secondary);
}

@media (pointer: fine) {
    .custom-cursor, .custom-cursor-inner { display: block; }
    body { cursor: none; }
    a, button, .faq-question, .floating-call-btn { cursor: none !important; }
}

.cursor-hover {
    width: 50px;
    height: 50px;
    background-color: rgba(99, 102, 241, 0.15);
    border-color: var(--secondary);
    transform: translate3d(0, 0, 0) rotate(135deg);
}

.cursor-hover-inner {
    transform: scale(2);
    background-color: var(--primary);
}

