/* NEXVO Custom Styles */

:root {
    --primary: #6C63FF;
    --secondary: #00D4AA;
    --accent: #FFD166;
    --danger: #EF476F;
    --emerald: #10b981;
    --dark: #0a0a0f;
    --darker: #050508;
    --gray: #6B7280;
    --light-gray: #9CA3AF;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background-color: var(--dark);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

/* Smooth Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

p, span, a, li {
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Improved text selection */
::selection {
    background: rgba(108, 99, 255, 0.3);
    color: var(--white);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--darker);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

/* Buttons */
.btn {
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.4);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-lg {
    padding: 16px 35px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.875rem;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: rgba(108, 99, 255, 0.3);
    transform: translateY(-5px);
}

/* Forms */
.form-control, .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    padding: 14px 18px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
    color: var(--white);
}

.form-control::placeholder {
    color: var(--gray);
}

.form-select option {
    background: var(--dark);
    color: var(--white);
}

/* Navigation */
.navbar {
    padding: 20px 0;
    transition: all 0.3s ease;
    /* background: rgba(10, 10, 15, 0.95); */
  backdrop-filter: blur(20px);
}

.navbar.scrolled {
    /* background: rgba(10, 10, 15, 0.95); */
    backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: var(--gray) !important;
    font-weight: 500;
    padding: 10px 18px !important;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.05);
}
.navbar-toggler {
  border-color: #fff; /* border color */
}

.navbar-toggler-icon {
  filter: invert(1); /* makes icon white */
}
.navbar-toggler {
  border-color: #ffffff59;
}

/* Hero Section */
.hero-section {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a2e 50%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(108, 99, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.3);
    color: var(--primary);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--white);
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 35px;
    max-width: 500px;
}

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

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

.hero-stat {
    text-align: center;
}

.hero-stat .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat .label {
    color: var(--gray);
    font-size: 0.875rem;
}

/* Floating Elements Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

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

/* Section Styles */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Feature Cards */
.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    border-color: rgba(108, 99, 255, 0.3);
    transform: translateY(-10px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--gray);
    margin: 0;
    line-height: 1.7;
}

/* Pricing Cards */
.pricing-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card.popular {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card:hover {
    border-color: rgba(108, 99, 255, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

.pricing-header h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-header p {
    color: var(--gray);
    font-size: 0.9rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
}

.price span {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--gray);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--secondary);
}

.pricing-features li.not-included {
    opacity: 0.5;
}

.pricing-features li.not-included i {
    color: var(--gray);
}

/* Footer */
/* ============================================
   FOOTER - PREMIUM DESIGN
   ============================================ */

.footer {
    background: linear-gradient(180deg, #0a0a12 0%, #050508 100%);
    padding: 100px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.3), transparent);
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.footer-brand i {
    font-size: 1.4rem;
}

.footer p {
    color: var(--gray);
    margin-bottom: 25px;
}

.footer h5 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--gray);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 0;
}

.footer-links a:hover::before {
    width: 12px;
}

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

.footer-social a {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-social a i {
    position: relative;
    z-index: 1;
}

.footer-social a:hover {
    border-color: transparent;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(108, 99, 255, 0.3);
}

.footer-social a:hover::before {
    opacity: 1;
}

.footer-whatsapp {
    margin-top: 20px;
}

.footer-whatsapp .btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-whatsapp .btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 25px;
    margin-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    margin: 0;
}

/* Trust & Compliance Footer */
.trust-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--secondary);
    font-size: 0.85rem;
}

.trust-divider {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.trust-legal {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
}

.trust-legal p {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.7rem;
    line-height: 1.8;
    margin: 0;
}

.trust-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.3s ease;
}

.trust-legal a:hover {
    color: var(--primary);
}

.trust-locations {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.trust-locations span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-locations span i {
    color: rgba(108, 99, 255, 0.6);
    font-size: 0.7rem;
}

.loc-divider {
    color: rgba(255, 255, 255, 0.15) !important;
}

@media (max-width: 768px) {
    .trust-row {
        gap: 15px;
    }
    
    .trust-divider {
        display: none;
    }
    
    .trust-locations {
        flex-direction: column;
        gap: 8px;
    }
    
    .loc-divider {
        display: none;
    }
}

/* ============================================
   FOOTER ENHANCEMENTS
   ============================================ */

/* Footer Tagline */
.footer-tagline {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 300px;
}

/* Legal Bar */
.legal-bar {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05), rgba(0, 212, 170, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px 30px;
    margin: 50px 0 30px;
}

.legal-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.legal-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.legal-info p strong {
    color: var(--white);
    font-weight: 600;
}

.license {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.85rem;
    padding: 8px 18px;
    background: rgba(0, 212, 170, 0.08);
    border: 1px solid rgba(0, 212, 170, 0.2);
    border-radius: 50px;
}

.license::before {
    content: '•';
    color: var(--secondary);
}

.license strong {
    color: var(--secondary);
    font-weight: 700;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(108, 99, 255, 0.5);
    color: white;
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Back to top pulse animation */
.back-to-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0;
    z-index: -1;
    animation: pulse-ring 2s ease-out infinite;
}

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

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    color: white;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    opacity: 0;
    z-index: -1;
    animation: whatsapp-pulse 2s ease-out infinite;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 80px;
        right: 20px;
    }
}

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

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

/* ============================================
   CTA SECTION - PREMIUM (Global Styles)
   ============================================ */

.cta-premium {
    background: linear-gradient(145deg, #0f0f1a 0%, #1a1a2e 50%, #0d0d18 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 70px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Glow Effects */
.cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
}

.cta-glow-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -150px;
    right: -100px;
    opacity: 0.25;
}

.cta-glow-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: -100px;
    left: -80px;
    opacity: 0.2;
}

/* Grid Pattern Overlay */
.cta-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Content Container */
.cta-content-premium {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Badge */
.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.15), rgba(0, 212, 170, 0.1));
    border: 1px solid rgba(108, 99, 255, 0.25);
    border-radius: 50px;
    padding: 10px 22px;
    margin-bottom: 28px;
}

.cta-badge i {
    color: var(--secondary);
    font-size: 0.95rem;
}

.cta-badge span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Headline */
.cta-headline-premium {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.headline-accent {
    display: block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 8px;
}

/* Subheadline */
.cta-subheadline-premium {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* Value Pills */
.cta-pills {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.value-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 12px 22px;
    transition: all 0.3s ease;
}

.value-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.value-pill i {
    color: var(--secondary);
    font-size: 1rem;
}

.value-pill span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

/* CTA Buttons */
.cta-buttons-premium {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #6c63ff, #00d4aa);
    color: white;
    border: none;
    padding: 18px 32px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.35);
    transition: all 0.3s ease;
}

.btn-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(108, 99, 255, 0.45);
    color: white;
}

.btn-cta-main i {
    transition: transform 0.3s ease;
}

.btn-cta-main:hover i {
    transform: translateX(4px);
}

.btn-outline-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 18px 28px;
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-cta:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.35);
    color: white;
}

.btn-outline-cta i {
    color: var(--secondary);
}

.btn-outline-cta small {
    display: block;
    font-size: 0.75rem;
    opacity: 0.7;
    font-weight: 400;
    margin-top: 2px;
}

/* Offer Cards */
.cta-offers-premium {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.offer-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 20px 24px;
    transition: all 0.3s ease;
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.offer-card.offer-highlight {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(251, 191, 36, 0.03));
    border-color: rgba(251, 191, 36, 0.25);
}

.offer-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-emoji {
    font-size: 1.5rem;
}

.offer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.offer-label {
    color: var(--gray);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-value {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
}

.offer-card.offer-highlight .offer-value {
    color: #fbbf24;
}

.offer-note {
    color: var(--gray);
    font-size: 0.85rem;
}

.offer-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* CTA Reassurance Line */
.cta-reassurance {
    text-align: center;
    color: var(--gray);
    font-size: 0.95rem;
    margin: 32px 0 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-reassurance i {
    color: var(--secondary);
    margin-right: 8px;
}


   .pricing-section {
        padding: 40px 0 80px;
        background: var(--dark);
    }
 
 
    /* Progress Steps */
    .signup-progress {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        margin-bottom: 45px;
        margin-top: 50px;
    }
 
    .progress-step {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
 
    .progress-step .step-icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.05);
        border: 2px solid rgba(255, 255, 255, 0.1);
        color: var(--gray);
    }
 
    .progress-step.active .step-icon {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        border-color: transparent;
        color: white;
    }
 
    .progress-step.completed .step-icon {
        background: var(--emerald);
        border-color: var(--emerald);
        color: white;
    }
 
    .progress-step span {
        font-size: 0.85rem;
        color: var(--gray);
    }
 
    .progress-step.active span {
        color: var(--white);
        font-weight: 500;
    }
 
    .progress-line {
        width: 60px;
        height: 2px;
        background: rgba(255, 255, 255, 0.1);
    }
 
    .progress-line.completed {
        background: var(--emerald);
    }
 
    .progress-line.active {
        background: linear-gradient(90deg, var(--emerald), var(--primary));
    }
    .navbar-brand img {
    max-width: 220px;
    height: auto;
    }

    input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  /* -webkit-box-shadow: 0 0 0px 1000px #ffffff inset; */
  -webkit-text-fill-color: #fff;
  transition: background-color 5000s ease-in-out 0s;
  background: rgba(255, 255, 255, 0.05);
}

.auth-form .form-floating > .form-control:focus ~ label, .auth-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
        color: #080808;
    background: none !important;
       padding: 15px 15px !important;
}
.form-floating > .form-control-plaintext:focus, .form-floating > .form-control-plaintext:not(:placeholder-shown), .form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1rem !important;
}
.form-floating > .form-control-plaintext ~ label::after, .form-floating > .form-control:focus ~ label::after, .form-floating > .form-control:not(:placeholder-shown) ~ label::after, .form-floating > .form-select ~ label::after {
  position: absolute;
  inset: 1rem 0.375rem;
  z-index: -1;
  height: 1.5em;
  content: "";
  background-color: #1c2c37;
  border-radius: var(--bs-border-radius);
  background: rgb(44, 44, 44) !important;
  backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 5px;
}
.legend-item.verified i {
  color: #04c84d !important;
}
/* Premium CTA Mobile Responsive */
@media (max-width: 768px) {
    .cta-premium {
        padding: 50px 28px;
        margin: 0 15px;
    }
    
    .cta-headline-premium {
        font-size: 2.2rem;
    }
    
    .headline-accent {
        font-size: 1.8rem;
    }
    
    .cta-subheadline-premium {
        font-size: 1.05rem;
    }
    
    .cta-pills {
        gap: 10px;
    }
    
    .value-pill {
        padding: 10px 16px;
    }
    
    .value-pill span {
        font-size: 0.85rem;
    }
    
    .cta-buttons-premium {
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }
    
    .btn-cta-main,
    .btn-outline-cta {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .cta-offers-premium {
        flex-direction: column;
        gap: 16px;
    }
    
    .offer-divider {
        width: 80px;
        height: 1px;
    }
    
    .offer-card {
        width: 100%;
        max-width: 280px;
        justify-content: flex-start;
    }
    
    .cta-reassurance {
        font-size: 0.9rem;
        margin-top: 28px;
        padding-top: 20px;
    }
    .included-grid { 
         grid-template-columns: repeat(2, 1fr) !important; 
    }
    }

@media (max-width: 480px) {
    .cta-headline-premium {
        font-size: 1.8rem;
    }
    
    .headline-accent {
        font-size: 1.5rem;
    }
    
    .cta-badge {
        padding: 8px 16px;
    }
    
    .cta-badge span {
        font-size: 0.8rem;
    }
}

/* ============================================
   FOOTER & BACK TO TOP - RESPONSIVE
   ============================================ */

@media (max-width: 991px) {
    .footer {
        padding: 70px 0 25px;
    }
    
    .footer h5 {
        margin-bottom: 18px;
    }
    
    .legal-bar {
        padding: 20px;
        margin: 35px 0 25px;
    }
    
    .legal-info p {
        font-size: 0.85rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 60px 0 20px;
    }
    
    .footer-brand {
        font-size: 1.5rem;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
        max-width: 100%;
    }
    
    .footer h5 {
        font-size: 0.95rem;
        margin-bottom: 16px;
        padding-bottom: 10px;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .legal-bar {
        padding: 18px 20px;
        margin: 30px 0 20px;
        border-radius: 12px;
    }
    
    .legal-info {
        gap: 8px;
    }
    
    .legal-info p {
        font-size: 0.8rem;
    }
    
    .license {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
    
    .back-to-top {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        bottom: 15px;
        right: 15px;
    }
     .included-grid { 
         grid-template-columns: repeat(1, 1fr) !important; 
    }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.75rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .hero-stat .number {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
}


/* ============================================
   PREMIUM HERO SECTION
   ============================================ */

.hero-section-premium {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, var(--dark) 0%, #0a0a12 50%, var(--darker) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Animated Background Grid */
.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(108, 99, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 99, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

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

/* Gradient Orbs */
.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -150px;
    right: 15%;
    opacity: 0.1;
    animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
    width: 350px;
    height: 350px;
    background: var(--secondary);
    bottom: -100px;
    right: 25%;
    opacity: 0.08;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.05); }
}

/* Floating Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 12s linear infinite;
}

.particle:nth-child(1) { left: 15%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 2s; }
.particle:nth-child(3) { left: 35%; top: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 55%; top: 80%; animation-delay: 1s; }
.particle:nth-child(5) { left: 75%; top: 40%; animation-delay: 3s; }
.particle:nth-child(6) { left: 85%; top: 70%; animation-delay: 5s; }

@keyframes particleFloat {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Trust Badge - Clean */
.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 20px;
}

.hero-trust-badge i {
    color: var(--emerald);
    font-size: 0.85rem;
}

.hero-trust-badge span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 400;
}

/* Premium Hero Title - Clean & Light */
.hero-title-premium {
    font-size: 2.6rem;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    color: var(--white);
}

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

/* Value Proposition - Clean */
.hero-value-prop {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 460px;
}

.hero-value-prop strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.highlight-price {
    color: var(--secondary);
    font-weight: 500;
}

/* What You Get Tags - Minimal */
.hero-get-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.get-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.2s ease;
}

.get-tag:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(108, 99, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.get-tag i {
    color: var(--primary);
    font-size: 0.7rem;
}

/* CTA Group - Clean */
.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
}

.btn-hero-primary:hover {
    background: #5b52e0;
    transform: translateY(-2px);
    color: white;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.25s ease;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
    color: white;
}

/* Trust Row - Minimal */
.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-dot {
    font-size: 0.75rem;
    color: var(--gray);
    position: relative;
    padding-left: 12px;
}

.trust-dot::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--secondary);
    border-radius: 50%;
}

/* Hero Visual - Enhanced Dashboard */
.hero-visual-premium {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Decorative Rings */
.decorative-ring {
    position: absolute;
    border: 1px solid rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.ring-1 {
    width: 450px;
    height: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 4s ease-in-out infinite;
}

.ring-2 {
    width: 550px;
    height: 550px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: rgba(0, 212, 170, 0.08);
    animation: ringPulse 4s ease-in-out infinite reverse;
}

@keyframes ringPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.8; }
}

.decorative-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Main Dashboard Card - Enhanced */
.dashboard-card-main {
    background: linear-gradient(145deg, rgba(25, 25, 40, 0.9), rgba(15, 15, 30, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px;
    width: 100%;
    max-width: 420px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(108, 99, 255, 0.1);
    position: relative;
    z-index: 10;
    animation: dashboardFloat 6s ease-in-out infinite;
}

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

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.dashboard-brand {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.brand-tagline {
    font-size: 0.8rem;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.brand-tagline i {
    font-size: 0.7rem;
    animation: arrowBounce 1.5s infinite;
}

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

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--gray);
}

.status-dot-pulse {
    width: 7px;
    height: 7px;
    background: var(--emerald);
    border-radius: 50%;
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

/* Dashboard Stats - Enhanced */
.dashboard-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(108, 99, 255, 0.15);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 2px;
}

.stat-change {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--emerald);
    display: flex;
    align-items: center;
    gap: 3px;
}

.stat-change.up::before {
    content: '+';
}

/* Chart - Enhanced with Animation */
.dashboard-chart {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 70px;
    gap: 8px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, rgba(108, 99, 255, 0.5), rgba(108, 99, 255, 0.1));
    border-radius: 4px 4px 0 0;
    height: var(--height);
    animation: barGrow 1s ease-out forwards;
    animation-delay: var(--delay);
    transform-origin: bottom;
    transform: scaleY(0);
    transition: all 0.3s ease;
}

.chart-bar:hover {
    background: linear-gradient(180deg, rgba(108, 99, 255, 0.7), rgba(108, 99, 255, 0.2));
}

.chart-bar.active {
    background: linear-gradient(180deg, var(--secondary), rgba(0, 212, 170, 0.2));
}

@keyframes barGrow {
    to { transform: scaleY(1); }
}

/* Floating Feature Cards - Enhanced */
.feature-float-card {
    position: absolute;
    background: rgba(30, 30, 45, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    z-index: 20;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-float-card:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.feature-float-card i {
    font-size: 0.85rem;
    width: 24px;
    height: 24px;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
}

/* Positioning of floating cards with animation */
.card-website {
    top: 8%;
    right: 7%;
    animation: floatCard1 5s ease-in-out infinite;
}

.card-seo {
    top: 42%;
    right: 6%;
    animation: floatCard2 6s ease-in-out infinite;
}

.card-seo i {
    background: rgba(108, 99, 255, 0.15);
    color: var(--primary);
}

.card-rating {
    bottom: 12%;
    right: 9%;
    animation: floatCard3 5.5s ease-in-out infinite;
}

.card-rating i {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

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

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

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

/* ============================================
   PREMIUM HERO - RESPONSIVE
   ============================================ */

@media (max-width: 1199px) {
    .hero-title-premium {
        font-size: 2.4rem;
    }
}

@media (max-width: 991px) {
    .hero-section-premium {
        padding: 100px 0 60px;
        min-height: auto;
    }
    
    .hero-title-premium {
        font-size: 2.2rem;
    }
    
    .hero-visual-premium {
        margin-top: 50px;
        min-height: 400px;
    }
    
    .decorative-ring {
        display: none;
    }
    
    .feature-float-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-section-premium {
        padding: 90px 0 50px;
    }
    
    .hero-title-premium {
        font-size: 1.9rem;
    }
    
    .hero-get-tags {
        gap: 8px;
    }
    
    .get-tag {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .dashboard-card-main {
        max-width: 100%;
        padding: 20px;
    }
    
    .stat-value {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .hero-section-premium {
        padding: 80px 0 40px;
    }
    
    .hero-title-premium {
        font-size: 1.7rem;
    }
    
    .hero-value-prop {
        font-size: 0.9rem;
    }
    
    .hero-trust-badge {
        padding: 6px 12px;
    }
    
    .hero-trust-badge span {
        font-size: 0.75rem;
    }
    
    .trust-dot {
        font-size: 0.7rem;
    }
    
    .chart-bars {
        height: 50px;
    }
}


/* ============================================
   MAGNETIC GLOW BUTTON EFFECT
   ============================================ */

/* Base magnetic button styles */
.btn-magnetic,
.btn-hero-primary,
.btn-hero-secondary,
.btn-primary,
.btn-outline-light,
.sf-icon-btn,
.nav-link {
    position: relative;
    overflow: visible;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), 
                box-shadow 0.3s ease;
}

/* The glow effect container */
.btn-magnetic::before,
.btn-hero-primary::before,
.btn-hero-secondary::before,
.btn-primary::before,
.btn-outline-light::before,
.sf-icon-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(108, 99, 255, 0.6) 0%,
        rgba(0, 212, 170, 0.4) 25%,
        transparent 50%
    );
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
    z-index: -1;
    filter: blur(20px);
}

/* Glow on hover */
.btn-magnetic:hover::before,
.btn-hero-primary:hover::before,
.btn-hero-secondary:hover::before,
.btn-primary:hover::before,
.btn-outline-light:hover::before,
.sf-icon-btn:hover::before {
    opacity: 1;
    transform: scale(1.5);
}

/* Magnetic border trail effect */
.btn-magnetic::after,
.btn-hero-primary::after,
.btn-hero-secondary::after,
.btn-primary::after,
.btn-outline-light::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    padding: 2px;
    background: conic-gradient(
        from var(--angle, 0deg) at var(--mouse-x, 50%) var(--mouse-y, 50%),
        transparent 0deg,
        rgba(108, 99, 255, 0.8) 60deg,
        rgba(0, 212, 170, 0.8) 120deg,
        rgba(255, 209, 102, 0.6) 180deg,
        rgba(108, 99, 255, 0.8) 240deg,
        transparent 300deg,
        transparent 360deg
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.btn-magnetic:hover::after,
.btn-hero-primary:hover::after,
.btn-hero-secondary:hover::after,
.btn-primary:hover::after,
.btn-outline-light:hover::after {
    opacity: 1;
}

/* Particle trail effect on hover */
.magnetic-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s ease;
    z-index: 10;
}

.btn-magnetic:hover .magnetic-particle,
.btn-hero-primary:hover .magnetic-particle,
.btn-hero-secondary:hover .magnetic-particle {
    opacity: 0.6;
    transform: scale(1);
}

/* Ripple effect on click */
.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, transparent 70%);
    transform: scale(0);
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleEffect {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Magnetic lift effect */
.btn-magnetic:hover,
.btn-hero-primary:hover,
.btn-hero-secondary:hover,
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 10px 40px rgba(108, 99, 255, 0.3),
        0 0 60px rgba(108, 99, 255, 0.1);
}

/* Sticky glow - stays after mouse leaves */
.btn-magnetic.sticky-glow::before,
.btn-hero-primary.sticky-glow::before,
.btn-hero-secondary.sticky-glow::before {
    opacity: 0.3;
    transform: scale(1.2);
    transition: opacity 1s ease, transform 1s ease;
}

/* Floating animation for buttons */
@keyframes floatButton {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.btn-magnetic.floating,
.btn-hero-primary.floating {
    animation: floatButton 3s ease-in-out infinite;
}

/* Shine sweep effect */
.btn-magnetic .shine,
.btn-hero-primary .shine,
.btn-hero-secondary .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
    pointer-events: none;
}

.btn-magnetic:hover .shine,
.btn-hero-primary:hover .shine,
.btn-hero-secondary:hover .shine {
    left: 100%;
}

/* Enhanced focus state */
.btn-magnetic:focus-visible,
.btn-hero-primary:focus-visible,
.btn-hero-secondary:focus-visible {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(108, 99, 255, 0.3),
        0 0 20px rgba(108, 99, 255, 0.5);
}

/* Magnetic attraction for nearby buttons */
.btn-magnetic-group {
    display: flex;
    gap: 16px;
}

.btn-magnetic-group .btn-magnetic {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* ============================================
   HERO SECTION BUTTON FIX
   ============================================ */

/* Hero CTA group - contain the buttons properly */
.hero-cta-group {
    position: relative;
    z-index: 10;
}

/* Hero buttons specific - contain the magnetic effect */
.hero-cta-group .btn-hero-primary,
.hero-cta-group .btn-hero-secondary {
    position: relative;
    overflow: hidden !important;
    isolation: isolate;
}

/* Hero button glow - contained within button */
.hero-cta-group .btn-hero-primary::before,
.hero-cta-group .btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform: translate(-50%, -50%) scale(0.8);
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(108, 99, 255, 0.5) 0%,
        rgba(0, 212, 170, 0.3) 30%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: -1;
    filter: blur(15px);
}

/* Show glow on hover */
.hero-cta-group .btn-hero-primary:hover::before,
.hero-cta-group .btn-hero-secondary:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Hero button border effect - contained */
.hero-cta-group .btn-hero-primary::after,
.hero-cta-group .btn-hero-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(
        var(--angle, 45deg),
        rgba(108, 99, 255, 0.8),
        rgba(0, 212, 170, 0.8),
        rgba(255, 209, 102, 0.6),
        rgba(108, 99, 255, 0.8)
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.hero-cta-group .btn-hero-primary:hover::after,
.hero-cta-group .btn-hero-secondary:hover::after {
    opacity: 1;
}

/* Hero button shine effect */
.hero-cta-group .btn-hero-primary .shine,
.hero-cta-group .btn-hero-secondary .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.hero-cta-group .btn-hero-primary:hover .shine,
.hero-cta-group .btn-hero-secondary:hover .shine {
    left: 150%;
}

/* Hero button magnetic movement - more subtle */
.hero-cta-group .btn-hero-primary.magnetic-initialized,
.hero-cta-group .btn-hero-secondary.magnetic-initialized {
    transition: transform 0.2s ease-out !important;
}

/* Remove particles from hero buttons */
.hero-cta-group .btn-hero-primary .magnetic-particle,
.hero-cta-group .btn-hero-secondary .magnetic-particle {
    display: none !important;
}

/* Ripple effect for hero buttons - contained */
.hero-cta-group .btn-hero-primary .btn-ripple,
.hero-cta-group .btn-hero-secondary .btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 70%);
    transform: scale(0);
    animation: rippleEffect 0.5s ease-out;
    pointer-events: none;
    z-index: 0;
}

@keyframes rippleEffect {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* Ensure hero buttons stay in place */
.hero-cta-group {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    align-items: center;
}

/* Primary hero button specific */
.hero-cta-group .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta-group .btn-hero-primary:hover {
    background: #5b52e0;
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.3);
}

/* Secondary hero button specific */
.hero-cta-group .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 400;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.hero-cta-group .btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
    color: white;
    transform: translateY(-2px);
}


/* ============================================
   MODERN GLASSMORPHISM HEADER
   ============================================ */

/* Main Navigation - Transparent at top */
#mainNav {
    padding: 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 90px;
}

/* Glass effect when scrolled - more glassy */
#mainNav.scrolled {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    height: 70px;
}

#mainNav .container {
    height: 100%;
    display: flex;
    align-items: center;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    transition: transform 0.3s ease;
}

.navbar-brand:hover {
    transform: scale(1.02);
}

.nav-logo {
    width: 180px;
    height: auto;
    transition: all 0.3s ease;
}

#mainNav.scrolled .nav-logo {
    width: 160px;
}

/* Navigation Links */
#mainNav .navbar-nav {
    gap: 8px;
}

#mainNav .nav-item {
    position: relative;
}

#mainNav .nav-link {
    position: relative;
    padding: 10px 18px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    border-radius: 50px;
    overflow: hidden;
}

/* Pill-shaped hover background */
#mainNav .nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(0, 212, 170, 0.1));
    border-radius: 50px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

#mainNav .nav-link:hover::before,
#mainNav .nav-link.active::before {
    opacity: 1;
    transform: scale(1);
}

#mainNav .nav-link:hover,
#mainNav .nav-link.active {
    color: #fff !important;
}

/* Nav Text */
.nav-text {
    position: relative;
    z-index: 1;
}

/* Nav Indicator - Animated underline */
.nav-indicator {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

#mainNav .nav-link:hover .nav-indicator,
#mainNav .nav-link.active .nav-indicator {
    width: 20px;
    opacity: 1;
}

/* Active State */
#mainNav .nav-link.active {
    background: rgba(108, 99, 255, 0.08);
}

/* Auth Buttons */
.nav-auth {
    gap: 12px;
    align-items: center;
    position: relative;
}

.nav-auth .nav-link {
    padding: 10px 20px !important;
}

/* Get Started Button */
.btn-nav-primary {
    position: relative;
    overflow: hidden !important;
    isolation: isolate;
    z-index: 1;
    background: linear-gradient(135deg, #6c63ff, #00d4aa);
    color: #fff !important;
    padding: 12px 26px !important;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.35);
    border: none;
}

/* Contained glow effect */
.btn-nav-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%) scale(0.9);
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(108, 99, 255, 0.5) 0%,
        rgba(0, 212, 170, 0.3) 30%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: -1;
    filter: blur(12px);
}

.btn-nav-primary:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Rotating border gradient */
.btn-nav-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(
        var(--angle, 45deg),
        rgba(108, 99, 255, 0.9),
        rgba(0, 212, 170, 0.9),
        rgba(255, 209, 102, 0.7),
        rgba(108, 99, 255, 0.9)
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.btn-nav-primary:hover::after {
    opacity: 1;
}

.btn-nav-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.5);
}

/* Shine effect */
.btn-nav-primary .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.btn-nav-primary:hover .shine {
    left: 150%;
}

/* Dropdown Styling */
#mainNav .dropdown-menu {
    background: rgba(20, 20, 30, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 8px;
    margin-top: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: dropdownFade 0.2s ease;
}

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

#mainNav .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

#mainNav .dropdown-item:hover {
    background: rgba(108, 99, 255, 0.1);
    color: #fff;
}

#mainNav .dropdown-item i {
    color: var(--primary);
    width: 20px;
}

/* Animated Hamburger */
.navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.navbar-toggler:hover {
    background: rgba(108, 99, 255, 0.15);
}

.toggle-line {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation to X */
.navbar-toggler[aria-expanded="true"] .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggle-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
@media (max-width: 991px) {
    #mainNav {
        height: 70px;
        background: rgba(10, 10, 15, 0.95);
    }
    
    #mainNav .navbar-collapse {
        background: rgba(15, 15, 25, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        margin-top: 15px;
        padding: 20px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    }
    
    #mainNav .navbar-nav {
        gap: 4px;
    }
    
    #mainNav .nav-link {
        padding: 12px 16px !important;
        border-radius: 12px;
    }
    
    .nav-indicator {
        display: none;
    }
    
    .nav-auth {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .nav-logo {
        width: 150px !important;
    }
}


/* ============================================
   ENTERPRISE BUTTON - Same as Header Button
   ============================================ */

/* Enterprise Schedule Consultation button */
.btn-enterprise {
    position: relative;
    overflow: hidden !important;
    isolation: isolate;
    z-index: 1;
    background: linear-gradient(135deg, var(--primary), #5b52e0);
    color: #fff !important;
    padding: 14px 28px !important;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.35);
    border: none;
    display: inline-flex;
    align-items: center;
}

/* Contained glow effect */
.btn-enterprise::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%) scale(0.9);
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(108, 99, 255, 0.5) 0%,
        rgba(0, 212, 170, 0.3) 30%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: -1;
    filter: blur(12px);
}

.btn-enterprise:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Rotating border gradient */
.btn-enterprise::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(
        var(--angle, 45deg),
        rgba(108, 99, 255, 0.9),
        rgba(0, 212, 170, 0.9),
        rgba(255, 209, 102, 0.7),
        rgba(108, 99, 255, 0.9)
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

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

.btn-enterprise:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.5);
}

/* Shine effect */
.btn-enterprise .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.btn-enterprise:hover .shine {
    left: 150%;
}

/* Click ripple */
.btn-enterprise .btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.5) 0%, transparent 70%);
    transform: scale(0);
    animation: rippleEffect 0.5s ease-out;
    pointer-events: none;
    z-index: 0;
}


/* ============================================
   LIGHT BUTTON (How it works) - Magnetic Effect
   ============================================ */

/* Light button with magnetic effect */
.btn-light.btn-magnetic {
    position: relative;
    overflow: hidden !important;
    isolation: isolate;
    z-index: 1;
    background: linear-gradient(135deg, #ffffff, #f0f0f5);
    color: var(--primary) !important;
    padding: 14px 28px !important;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.2);
    border: 1px solid rgba(108, 99, 255, 0.15);
    display: inline-flex;
    align-items: center;
}

/* Contained glow effect - purple tint */
.btn-light.btn-magnetic::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%) scale(0.9);
    background: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(108, 99, 255, 0.3) 0%,
        rgba(0, 212, 170, 0.2) 30%,
        transparent 60%
    );
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    z-index: -1;
    filter: blur(12px);
}

.btn-light.btn-magnetic:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Rotating border gradient */
.btn-light.btn-magnetic::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 2px;
    background: linear-gradient(
        var(--angle, 45deg),
        rgba(108, 99, 255, 0.8),
        rgba(0, 212, 170, 0.8),
        rgba(255, 209, 102, 0.6),
        rgba(108, 99, 255, 0.8)
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: -1;
}

.btn-light.btn-magnetic:hover::after {
    opacity: 1;
}

.btn-light.btn-magnetic:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.25);
    color: var(--primary) !important;
}

/* Shine effect */
.btn-light.btn-magnetic .shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(108, 99, 255, 0.2),
        transparent
    );
    transform: skewX(-25deg);
    transition: left 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

.btn-light.btn-magnetic:hover .shine {
    left: 150%;
}

/* Click ripple */
.btn-light.btn-magnetic .btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.3) 0%, transparent 70%);
    transform: scale(0);
    animation: rippleEffect 0.5s ease-out;
    pointer-events: none;
    z-index: 0;
}

/* =====================================================
   IMPROVED HERO SECTION STYLES
   ===================================================== */

/* Subheadline */
.hero-subheadline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 480px;
}

.hero-subheadline strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Benefits List - Clean */
.hero-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.benefit-item i {
    color: var(--emerald);
    font-size: 0.85rem;
}

/* Hero Pricing Box - Prominent */
.hero-pricing-box {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(0, 212, 170, 0.05));
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 16px;
    padding: 18px 22px;
    margin-bottom: 24px;
    max-width: 420px;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.price-from {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.price-amount {
    font-size: 2rem;
    font-weight: 600;
    color: white;
}

.price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.price-guarantees {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.price-guarantees span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

.price-guarantees i {
    color: var(--secondary);
    font-size: 0.75rem;
}

/* Testimonial Card */
.testimonial-card-main {
    background: linear-gradient(145deg, rgba(25, 25, 40, 0.95), rgba(15, 15, 30, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 28px;
    width: 100%;
    max-width: 420px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(108, 99, 255, 0.1);
    position: relative;
    z-index: 10;
    animation: dashboardFloat 6s ease-in-out infinite;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 20px;
}

.quote-icon {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.5;
    margin-bottom: 10px;
    display: block;
}

.testimonial-quote p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 0.85rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

.author-business {
    font-size: 0.75rem;
    color: var(--gray);
}

.author-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(16, 185, 129, 0.15);
    padding: 6px 10px;
    border-radius: 20px;
}

.author-rating i {
    color: var(--emerald);
    font-size: 0.7rem;
}

.author-rating span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--emerald);
}

/* Growth Stats Card */
.growth-stats-card {
    background: rgba(30, 30, 45, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 24px;
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 320px;
    z-index: 15;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.growth-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.growth-label {
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
}

.growth-period {
    font-size: 0.7rem;
    color: var(--gray);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 12px;
}

.growth-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.growth-metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--emerald);
    margin-bottom: 2px;
}

.metric-label {
    font-size: 0.65rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.growth-chart {
    height: 40px;
    position: relative;
}

.trend-line {
    width: 100%;
    height: 100%;
}

.trend-line svg {
    width: 100%;
    height: 100%;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .growth-stats-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        width: 100%;
        max-width: 420px;
    }
}

@media (max-width: 991px) {
    .hero-title-premium {
        font-size: 2.2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .price-amount {
        font-size: 1.8rem;
    }
    
    .hero-visual-premium {
        margin-top: 50px;
        min-height: auto;
        padding: 20px 0;
    }
    
    .testimonial-card-main {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-title-premium {
        font-size: 1.9rem;
    }
    
    .hero-benefits-list {
        gap: 8px;
    }
    
    .benefit-item {
        font-size: 0.85rem;
    }
    
    .hero-pricing-box {
        padding: 16px 18px;
    }
    
    .price-amount {
        font-size: 1.6rem;
    }
    
    .price-guarantees {
        gap: 12px;
    }
    
    .price-guarantees span {
        font-size: 0.75rem;
    }
    
    .growth-stats-card {
        padding: 18px;
    }
    
    .metric-value {
        font-size: 1.1rem;
    }
}

@media (max-width: 575px) {
    .hero-title-premium {
        font-size: 1.7rem;
    }
    
    .hero-subheadline {
        font-size: 0.95rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .testimonial-card-main {
        padding: 20px;
    }
    
    .testimonial-quote p {
        font-size: 0.9rem;
    }
    
    .growth-metrics {
        gap: 8px;
    }
    
    .metric-value {
        font-size: 1rem;
    }
    
    .metric-label {
        font-size: 0.6rem;
    }
}

/* =====================================================
   STREAMLINED HERO STYLES - Reduced Cognitive Load
   ===================================================== */

/* Streamlined Subheadline */
.hero-subheadline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 480px;
}

/* Condensed Benefits Grid */
.hero-benefits-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
    max-width: 440px;
}

.benefit-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 16px;
    transition: all 0.25s ease;
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(108, 99, 255, 0.2);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.15), rgba(0, 212, 170, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    color: var(--primary);
    font-size: 0.85rem;
}

.benefit-card span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Key Differentiator */
.hero-differentiator {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.diff-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), rgba(108, 99, 255, 0.8));
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
}

.diff-badge i {
    font-size: 0.8rem;
}

.diff-text {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Simplified Testimonial */
.testimonial-card-main {
    background: linear-gradient(145deg, rgba(25, 25, 40, 0.95), rgba(15, 15, 30, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px;
    width: 100%;
    max-width: 400px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(108, 99, 255, 0.1);
    position: relative;
    z-index: 10;
    animation: dashboardFloat 6s ease-in-out infinite;
}

.testimonial-quote {
    margin-bottom: 18px;
}

.testimonial-quote p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 0.8rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.author-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: white;
}

.author-business {
    font-size: 0.7rem;
    color: var(--gray);
}

.author-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(16, 185, 129, 0.15);
    padding: 5px 10px;
    border-radius: 20px;
}

.author-rating i {
    color: var(--emerald);
    font-size: 0.65rem;
}

.author-rating span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--emerald);
}

/* Simplified Growth Stats */
.growth-stats-card {
    background: rgba(30, 30, 45, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 20px;
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 280px;
    z-index: 15;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.growth-header {
    margin-bottom: 14px;
}

.growth-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.growth-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.growth-metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--emerald);
    margin-bottom: 2px;
}

.metric-label {
    font-size: 0.65rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .growth-stats-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 20px;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 991px) {
    .hero-title-premium {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .hero-benefits-compact {
        gap: 10px;
    }
    
    .benefit-card {
        padding: 12px 14px;
    }
    
    .benefit-card span {
        font-size: 0.8rem;
    }
    
    .hero-differentiator {
        gap: 12px;
    }
    
    .diff-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 767px) {
    .hero-title-premium {
        font-size: 1.75rem;
    }
    
    .hero-benefits-compact {
        grid-template-columns: 1fr;
        max-width: 320px;
    }
    
    .hero-differentiator {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .testimonial-card-main {
        max-width: 100%;
        padding: 20px;
    }
    
    .testimonial-quote p {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .hero-title-premium {
        font-size: 1.6rem;
    }
    
    .hero-subheadline {
        font-size: 0.95rem;
    }
    
    .benefit-card {
        padding: 12px;
    }
    
    .benefit-icon {
        width: 32px;
        height: 32px;
    }
    
    .diff-badge {
        font-size: 0.85rem;
        padding: 8px 14px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .metric-value {
        font-size: 1.1rem;
    }
}

/* =====================================================
   ULTRA-COMPACT HERO + UNIQUE 3D HOLOGRAPHIC DESIGN
   ===================================================== */

/* Ultra-Compact Left Side */
.hero-title-premium {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    color: var(--white);
}

.hero-subheadline {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 440px;
}

.hero-subheadline strong {
    color: var(--secondary);
    font-weight: 500;
}

/* Ultra Benefits - Pills */
.hero-benefits-ultra {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.benefit-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.25s ease;
}

.benefit-pill:hover {
    background: rgba(108, 99, 255, 0.1);
    border-color: rgba(108, 99, 255, 0.3);
    transform: translateY(-2px);
}

.benefit-pill i {
    color: var(--secondary);
    font-size: 0.8rem;
}

/* Micro Text */
.hero-micro-text {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 16px;
}

/* =====================================================
   UNIQUE 3D HOLOGRAPHIC VISUAL
   ===================================================== */

.hero-visual-unique {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
    overflow: visible;
}

/* Animated Grid Background */
.holo-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(108, 99, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 99, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

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

/* Orbital Rings */
.orbit-ring {
    position: absolute;
    border: 1px solid;
    border-radius: 50%;
    pointer-events: none;
}

.ring-outer {
    width: 450px;
    height: 450px;
    border-color: rgba(108, 99, 255, 0.1);
    animation: orbitRotate 20s linear infinite;
}

.ring-mid {
    width: 350px;
    height: 350px;
    border-color: rgba(0, 212, 170, 0.15);
    animation: orbitRotate 15s linear infinite reverse;
}

.ring-inner {
    width: 250px;
    height: 250px;
    border-color: rgba(108, 99, 255, 0.2);
    animation: orbitRotate 10s linear infinite;
}

@keyframes orbitRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Holographic Card Stack */
.holo-card-stack {
    position: relative;
    width: 280px;
    height: 360px;
    transform-style: preserve-3d;
    animation: floatStack 6s ease-in-out infinite;
}

@keyframes floatStack {
    0%, 100% { transform: translateY(0) rotateX(10deg) rotateY(-10deg); }
    50% { transform: translateY(-15px) rotateX(12deg) rotateY(-8deg); }
}

/* Holographic Cards */
.holo-card {
    position: absolute;
    width: 220px;
    height: 280px;
    background: linear-gradient(135deg, 
        rgba(25, 25, 35, 0.9), 
        rgba(15, 15, 25, 0.95));
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.holo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.1) 0%, 
        transparent 50%,
        rgba(0, 212, 170, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Shine Effect */
.holo-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.05) 45%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 55%,
        transparent 60%
    );
    transform: translateX(-100%);
    animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Card Positions */
.card-back {
    transform: translateZ(-80px) translateX(-30px) rotateY(5deg);
    opacity: 0.6;
    filter: blur(1px);
}

.card-mid {
    transform: translateZ(-40px) translateX(15px) rotateY(-3deg);
    opacity: 0.8;
}

.card-front {
    transform: translateZ(0) translateX(0);
    border-color: rgba(108, 99, 255, 0.4);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(108, 99, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Card Stack Hover Effect */
.holo-card-stack:hover .card-back {
    transform: translateZ(-100px) translateX(-50px) rotateY(10deg);
}

.holo-card-stack:hover .card-mid {
    transform: translateZ(-50px) translateX(25px) rotateY(-5deg);
}

.holo-card-stack:hover .card-front {
    transform: translateZ(30px) scale(1.02);
}

/* Card Content */
.card-content {
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.2), 
        rgba(0, 212, 170, 0.1));
    border: 1px solid rgba(108, 99, 255, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.2);
}

.card-icon.pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        box-shadow: 0 10px 30px rgba(108, 99, 255, 0.2);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 15px 40px rgba(108, 99, 255, 0.4);
        transform: scale(1.05);
    }
}

.card-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 12px;
}

.card-stats {
    padding: 8px 16px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 170, 0.2);
}

.card-stats .stat {
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 500;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 6px;
}

.live-badge i {
    font-size: 0.5rem;
    color: var(--emerald);
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Floating Data Particles */
.data-particle {
    position: absolute;
    background: rgba(25, 25, 35, 0.9);
    border: 1px solid rgba(108, 99, 255, 0.3);
    border-radius: 16px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: particleFloat 4s ease-in-out infinite;
}

.data-particle i {
    color: var(--secondary);
    font-size: 0.9rem;
}

.data-particle span {
    font-weight: 600;
    color: var(--secondary);
}

.particle-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}

.particle-2 {
    top: 60%;
    right: 5%;
    animation-delay: 1s;
}

.particle-3 {
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

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

/* Holographic Glows */
.holo-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.glow-primary {
    background: var(--primary);
    top: 20%;
    left: 20%;
    animation: glowPulse 4s ease-in-out infinite;
}

.glow-secondary {
    background: var(--secondary);
    bottom: 20%;
    right: 20%;
    animation: glowPulse 4s ease-in-out infinite reverse;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.1); }
}

/* Connection Lines SVG */
.connection-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
}

.connect-line {
    fill: none;
    stroke: url(#lineGradient);
    stroke-width: 1;
    stroke-dasharray: 5, 5;
    animation: dashMove 2s linear infinite;
}

@keyframes dashMove {
    to { stroke-dashoffset: -10; }
}

/* Responsive */
@media (max-width: 1199px) {
    .hero-visual-unique {
        min-height: 400px;
    }
    
    .holo-card-stack {
        transform: scale(0.9);
    }
    
    .orbit-ring {
        display: none;
    }
}

@media (max-width: 991px) {
    .hero-title-premium {
        font-size: 2.2rem;
    }
    
    .hero-visual-unique {
        margin-top: 40px;
        min-height: 380px;
    }
    
    .holo-card-stack {
        transform: scale(0.8);
    }
    
    .data-particle {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-title-premium {
        font-size: 1.9rem;
    }
    
    .hero-benefits-ultra {
        gap: 8px;
    }
    
    .benefit-pill {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .holo-card-stack {
        transform: scale(0.7);
    }
}

@media (max-width: 575px) {
    .hero-title-premium {
        font-size: 1.7rem;
    }
    
    .hero-subheadline {
        font-size: 0.95rem;
    }
    
    .holo-card-stack {
        transform: scale(0.6);
    }
}

/* =====================================================
   UNIQUE FLOATING ELEMENTS - HEXAGONS & BADGES
   ===================================================== */

/* Hexagon Floating Cards */
.float-hex {
    position: absolute;
    width: 100px;
    height: 110px;
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.15), 
        rgba(0, 212, 170, 0.1));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 1px solid rgba(108, 99, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: hexFloat 5s ease-in-out infinite;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hex-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.hex-content i {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 6px;
}

.hex-content span {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    line-height: 1.2;
}

.hex-1 {
    top: 10%;
    left: 8%;
    animation-delay: 0s;
}

.hex-2 {
    top: 65%;
    right: 10%;
    animation-delay: 1.5s;
}

.hex-3 {
    bottom: 15%;
    left: 12%;
    animation-delay: 3s;
}

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

/* Floating Badges */
.float-badge {
    position: absolute;
    background: rgba(25, 25, 35, 0.9);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 50px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: badgeFloat 4s ease-in-out infinite;
}

.float-badge i {
    color: var(--emerald);
    font-size: 0.9rem;
}

.badge-pulse {
    position: absolute;
    left: 12px;
    width: 8px;
    height: 8px;
    background: var(--emerald);
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-1 {
    top: 25%;
    right: 5%;
    animation-delay: 0.5s;
}

.badge-1 .badge-pulse {
    display: block;
}

.badge-2 {
    bottom: 25%;
    right: 15%;
    animation-delay: 2s;
}

.badge-2 .badge-pulse {
    display: block;
    background: var(--primary);
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

@keyframes badgePulse {
    0%, 100% { 
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% { 
        opacity: 0.6;
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

/* Remove old data particles */
.data-particle {
    display: none;
}

/* Connection lines - remove if not needed */
.connection-lines {
    display: none;
}

/* Responsive for new elements */
@media (max-width: 991px) {
    .float-hex,
    .float-badge {
        display: none;
    }
}

/* =====================================================
   CLEAN HERO VISUAL - Consistent Design
   ===================================================== */

.hero-visual-clean {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* Background Grid */
.bg-grid {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(108, 99, 255, 0.08) 1px, transparent 0);
    background-size: 30px 30px;
    pointer-events: none;
}

/* Center Main Card */
.main-feature-card {
    position: relative;
    width: 240px;
    height: 300px;
    background: linear-gradient(145deg, 
        rgba(30, 30, 45, 0.95), 
        rgba(20, 20, 35, 0.98));
    border: 1px solid rgba(108, 99, 255, 0.25);
    border-radius: 24px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(108, 99, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: cardFloat 5s ease-in-out infinite;
    z-index: 10;
}

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

/* Growing Arrow Animation */
.growth-arrow {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 100px;
}

.arrow-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.arrow-path {
    stroke: url(#arrowGrad);
    stroke-width: 2;
    fill: url(#arrowGrad);
    opacity: 0.9;
    animation: arrowPulse 2s ease-in-out infinite;
}

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

.arrow-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 4px;
}

.arrow-dots span {
    width: 4px;
    height: 4px;
    background: var(--secondary);
    border-radius: 50%;
    animation: dotPulse 1.5s ease-in-out infinite;
}

.arrow-dots span:nth-child(2) { animation-delay: 0.2s; }
.arrow-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Main Card Content */
.main-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(108, 99, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(108, 99, 255, 0.15);
}

.feature-row i {
    font-size: 1.1rem;
    color: var(--primary);
    width: 24px;
    text-align: center;
}

.feature-row span {
    font-size: 1rem;
    font-weight: 500;
    color: white;
}

.growth-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15), rgba(0, 212, 170, 0.05));
    border: 1px solid rgba(0, 212, 170, 0.25);
    border-radius: 50px;
    margin-top: 4px;
}

.growth-label i {
    color: var(--secondary);
    font-size: 0.9rem;
    animation: trendUp 2s ease-in-out infinite;
}

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

.growth-label span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--secondary);
}

/* Floating Hexagons - Consistent Shape */
.feature-hex {
    position: absolute;
    width: 110px;
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.4));
    animation: hexBob 4s ease-in-out infinite;
    z-index: 5;
}

.feature-hex::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.15), 
        rgba(0, 212, 170, 0.1));
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    border: 1px solid rgba(108, 99, 255, 0.25);
}

.hex-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.hex-inner i {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 6px;
}

.hex-inner span {
    font-size: 0.7rem;
    color: white;
    font-weight: 500;
    line-height: 1.2;
}

.hex-inner small {
    font-size: 0.6rem;
    color: var(--gray);
    margin-top: 2px;
}

/* Hexagon Positions */
.hex-qrcode {
    top: 5%;
    left: 12%;
    animation-delay: 0s;
}

.hex-logo {
    top: 8%;
    right: 15%;
    animation-delay: 0.5s;
}

.hex-listing {
    top: 38%;
    left: 5%;
    animation-delay: 1s;
}

.hex-hosting {
    top: 40%;
    right: 8%;
    animation-delay: 1.5s;
}

.hex-gmb {
    bottom: 12%;
    left: 15%;
    animation-delay: 2s;
}

.hex-leads {
    bottom: 15%;
    right: 12%;
    animation-delay: 2.5s;
}

@keyframes hexBob {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

/* Orbital Ring Around Center */
.center-orbit {
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px dashed rgba(108, 99, 255, 0.15);
    border-radius: 50%;
    animation: orbitSpin 30s linear infinite;
    pointer-events: none;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1199px) {
    .hero-visual-clean {
        min-height: 420px;
    }
    
    .feature-hex {
        transform: scale(0.85);
    }
    
    .center-orbit {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 991px) {
    .hero-visual-clean {
        margin-top: 40px;
        min-height: 380px;
    }
    
    .main-feature-card {
        transform: scale(0.9);
    }
    
    .feature-hex {
        display: none;
    }
    
    .center-orbit {
        display: none;
    }
}

@media (max-width: 575px) {
    .main-feature-card {
        transform: scale(0.8);
    }
}

/* =====================================================
   3D CENTER STACK + 3D HEXAGONS
   ===================================================== */

.hero-visual-3d {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

/* Background Grid */
.bg-grid-3d {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(108, 99, 255, 0.1) 1px, transparent 0);
    background-size: 25px 25px;
    pointer-events: none;
}

/* Orbital Rings */
.orbit-ring-3d {
    position: absolute;
    border: 1px solid rgba(108, 99, 255, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.ring-outer {
    width: 420px;
    height: 420px;
    animation: orbitRotate3d 25s linear infinite;
}

.ring-inner {
    width: 320px;
    height: 320px;
    border-color: rgba(0, 212, 170, 0.1);
    animation: orbitRotate3d 18s linear infinite reverse;
}

@keyframes orbitRotate3d {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Center 3D Card Stack */
.card-stack-3d {
    position: relative;
    width: 220px;
    height: 300px;
    transform-style: preserve-3d;
    animation: stackFloat3d 6s ease-in-out infinite;
}

@keyframes stackFloat3d {
    0%, 100% { transform: translateY(0) rotateX(8deg) rotateY(-8deg); }
    50% { transform: translateY(-12px) rotateX(10deg) rotateY(-6deg); }
}

/* Stack Cards */
.stack-card {
    position: absolute;
    width: 200px;
    height: 280px;
    background: linear-gradient(145deg, 
        rgba(30, 30, 45, 0.95), 
        rgba(18, 18, 30, 0.98));
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.card-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 30%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 70%
    );
    transform: translateX(-100%);
    animation: cardShine3d 4s ease-in-out infinite;
}

@keyframes cardShine3d {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Card Positions */
.card-back-3d {
    transform: translateZ(-60px) translateX(-15px) rotateY(5deg);
    opacity: 0.5;
}

.card-mid-3d {
    transform: translateZ(-30px) translateX(8px) rotateY(-3deg);
    opacity: 0.75;
}

.card-front-3d {
    transform: translateZ(0);
    border-color: rgba(108, 99, 255, 0.35);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(108, 99, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* Hover Effects */
.card-stack-3d:hover .card-back-3d {
    transform: translateZ(-80px) translateX(-25px) rotateY(8deg);
}

.card-stack-3d:hover .card-mid-3d {
    transform: translateZ(-40px) translateX(15px) rotateY(-5deg);
}

.card-stack-3d:hover .card-front-3d {
    transform: translateZ(20px) scale(1.02);
}

/* Card Content */
.stack-content {
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stack-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.15), 
        rgba(0, 212, 170, 0.1));
    border: 1px solid rgba(108, 99, 255, 0.25);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.5rem;
    color: var(--primary);
}

.card-front-3d .stack-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.stack-label {
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

/* Growing Arrow in Front Card */
.arrow-3d {
    width: 70px;
    height: 50px;
    margin-bottom: 12px;
}

.arrow-svg-3d {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.arrow-path-3d {
    opacity: 0.9;
    animation: arrowPulse3d 2s ease-in-out infinite;
}

@keyframes arrowPulse3d {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.08); }
}

.growth-badge-3d {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15), rgba(0, 212, 170, 0.05));
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 50px;
}

.growth-badge-3d i {
    color: var(--secondary);
    font-size: 0.9rem;
    animation: trendBounce 1.5s ease-in-out infinite;
}

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

.growth-badge-3d span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--secondary);
}

/* =====================================================
   3D HEXAGONS AROUND CENTER
   ===================================================== */

.hex-3d {
    position: absolute;
    width: 100px;
    height: 115px;
    transform-style: preserve-3d;
    animation: hexFloat3d 5s ease-in-out infinite;
    z-index: 5;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
}

.hex-face {
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    backface-visibility: hidden;
}

.hex-front {
    background: linear-gradient(145deg, 
        rgba(45, 45, 60, 0.98), 
        rgba(28, 28, 40, 0.99));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 2px solid rgba(255, 255, 255, 0.25);
    transform: translateZ(12px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 8px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
}

.hex-back {
    background: linear-gradient(145deg, 
        rgba(20, 20, 30, 0.95), 
        rgba(10, 10, 18, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateZ(-12px) rotateY(180deg);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        inset 0 -1px 0 rgba(255, 255, 255, 0.05);
}

.hex-side {
    background: linear-gradient(90deg, 
        rgba(80, 80, 100, 0.6), 
        rgba(40, 40, 55, 0.4));
    width: 20px;
    clip-path: none;
    transform: rotateY(90deg) translateZ(50px);
    box-shadow: 
        inset 1px 0 0 rgba(255, 255, 255, 0.1),
        inset -1px 0 0 rgba(0, 0, 0, 0.3);
}

.hex-front i {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 6px;
}

.hex-front span {
    font-size: 0.7rem;
    color: white;
    font-weight: 500;
    line-height: 1.2;
}

.hex-front small {
    font-size: 0.6rem;
    color: var(--gray);
    margin-top: 2px;
}

/* Hexagon Positions */
.hex-qr {
    top: 8%;
    left: 10%;
    animation-delay: 0s;
}

.hex-brand {
    top: 5%;
    right: 12%;
    animation-delay: 0.8s;
}

.hex-listing {
    top: 40%;
    left: 3%;
    animation-delay: 1.6s;
}

.hex-hosting {
    top: 42%;
    right: 5%;
    animation-delay: 2.4s;
}

.hex-gmb {
    bottom: 10%;
    left: 12%;
    animation-delay: 3.2s;
}

.hex-leads {
    bottom: 12%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes hexFloat3d {
    0%, 100% { 
        transform: translateY(0) rotateX(5deg) rotateY(-5deg); 
    }
    50% { 
        transform: translateY(-10px) rotateX(8deg) rotateY(-3deg); 
    }
}

/* Center Glow - Neutral 3D Ambient Light */
.center-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, 
        rgba(255, 255, 255, 0.08) 0%, 
        rgba(200, 200, 220, 0.04) 40%,
        transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: glowPulse3d 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glowPulse3d {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

/* Responsive */
@media (max-width: 1199px) {
    .hero-visual-3d {
        min-height: 450px;
    }
    
    .hex-3d {
        transform: scale(0.9);
    }
}

@media (max-width: 991px) {
    .hero-visual-3d {
        margin-top: 40px;
        min-height: 400px;
    }
    
    .card-stack-3d {
        transform: scale(0.85);
    }
    
    .hex-3d {
        display: none;
    }
    
    .orbit-ring-3d {
        display: none;
    }
}

@media (max-width: 575px) {
    .card-stack-3d {
        transform: scale(0.75);
    }
}

/* =====================================================
   CENTER CARD - SHOWING ALL FEATURES
   ===================================================== */

/* Full Content Layout for Front Card */
.stack-content-full {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
}

/* Feature Mini Rows */
.feature-mini-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(108, 99, 255, 0.1);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: 10px;
}

.mini-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, 
        rgba(108, 99, 255, 0.2), 
        rgba(0, 212, 170, 0.1));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--primary);
}

.feature-mini-row span {
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
}

/* Growing Row */
.growing-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, 
        rgba(0, 212, 170, 0.15), 
        rgba(0, 212, 170, 0.05));
    border: 1px solid rgba(0, 212, 170, 0.25);
    border-radius: 50px;
    margin-top: 4px;
}

.growing-row i {
    color: var(--secondary);
    font-size: 0.9rem;
    animation: trendUpIcon 1.5s ease-in-out infinite;
}

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

.growing-row span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
}

/* Hide old arrow and growth badge styles */
.arrow-3d,
.growth-badge-3d {
    display: none;
}
