
/* Modern CSS Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Properties */
:root {
    --banner-height: 38px;
    --nav-height: 70px;
    --primary: #8B5CF6;
    --primary-dark: #7C3AED;
    --primary-light: #A78BFA;
    --secondary: #10B981;
    --secondary-dark: #059669;
    --dark: #1E293B;
    --light: #F8FAFC;
    --gray: rgba(248, 250, 252, 0.8);
    --white: rgba(255, 255, 255, 0.9);
    --text: #475569;
    --gradient-bg: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(167, 139, 250, 0.05) 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
    width: 100%;
    background: var(--gradient-bg);
}

/* Modern Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
nav {
    position: fixed;
    top: var(--banner-height);
    left: 0;
    right: 0;
    height: var(--nav-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1002;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    transition: top 0.3s ease;
}


.nav-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-buttons {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.nav-btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    min-width: 120px;
}

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

.nav-btn-outline:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: transparent;
}

.nav-btn-filled {
    background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.2);
}

.nav-btn-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.3);
}

.nav-btn svg {
    width: 14px;
    height: 14px;
}

.nav-btn-outline, .nav-btn-filled {
    color: #7C3AED;
    background: white;
}

.nav-btn-filled:hover {
    color: white;
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
    border-color: transparent;
}




.nav-btn-filled:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.3);
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    color: var(--dark);
}

.mobile-nav-toggle svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 1024px) {
    .nav-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Mobile optimizations */
@media (max-width: 768px) {
    /* Navigation */
    .nav-buttons {
        position: absolute;
        top: 100%;
        right: 1rem;
        left: 1rem;
        background: var(--white);
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 0.8rem;
        display: none;
        margin-top: 0.5rem;
        z-index: 1000;
    }

    .nav-btn {
        width: 100%;
        justify-content: center;
    }

    /* Hero section */
    .hero {
        padding-top: 65px;
        padding-bottom: 80px;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        padding: 0 0.5rem;
    }

    /* Step image styles */
    .step-image {
        width: 100%;
        height: 160px;
        margin: 0.5rem auto;
        padding: 0.5rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        background: #f8fafc;
        object-fit: contain;
        border-radius: 12px;
        transform: none !important;
        cursor: pointer;
    }

    /* Card styles */
    .step-card,
    .business-card {
        min-height: auto;
        padding: 1.5rem;
        gap: 1rem;
        margin-bottom: 1rem;
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        background: white;
        animation: none !important;
        perspective: none !important;
        transform-style: flat !important;
        backface-visibility: hidden !important;
        will-change: auto !important;
    }

    /* Remove all effects */
    .business-card::before,
    .business-card::after,
    .business-card .card-content::before,
    .step-card::before,
    .step-card::after,
    .step-card .card-content::before,
    .step-image::after,
    .step-image::before {
        display: none !important;
    }

    /* Grid layouts */
    .business-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.5rem;
    }

    /* Disable hover effects */
    .business-card:hover,
    .step-card:hover,
    .step-image:hover,
    .business-card:active,
    .step-card:active {
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
        background: white !important;
        animation: none !important;
    }

    /* Remove 3D transforms */
    .card-icon,
    .card-content,
    .card-front,
    .card-back {
        transform: none !important;
        transform-style: flat !important;
        transition: none !important;
        animation: none !important;
    }

    /* Disable card flipping */
    .business-card .card-content {
        transform: none !important;
        position: static !important;
    }

    .card-front,
    .card-back {
        position: static !important;
        transform: none !important;
        backface-visibility: visible !important;
    }

    /* Remove floating animations */
    @keyframes cardFloat {
        0%, 50%, 100% { transform: none; }
    }

    /* Simplify interactions */
    .business-card:active,
    .step-card:active {
        transform: translateY(1px) !important;
        background: rgba(147, 51, 234, 0.02);
    }

    /* Remove particle effects */
    .particle-container,
    .particles,
    .particle {
        display: none !important;
    }

    /* Remove loading animations */
    .step-image.loading::before {
        animation: none !important;
        background: #f0f0f0;
    }



    /* Footer */
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        text-align: center;
    }

    .mobile-footer-nav {
        display: block;
    }




    /* Mobile buttons */
    .mobile-hero-buttons {
        display: flex;
        flex-direction: column;
    }

    /* Video section */
    .video-section {
        margin: 1rem;
        border-radius: 8px;
    }
}

@media (min-width: 1400px) {
    .nav-buttons {
        gap: 1.5rem;
    }

    .nav-btn {
        padding: 0.8rem 1.6rem;
        font-size: 1rem;
    }
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: var(--dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(147, 51, 234, 0.2));
    transition: transform 0.3s ease;
    animation: logoFloat 6s ease-in-out infinite;
}

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

.logo:hover img {
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    padding-top: 160px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 85px; /* Banner height */
}




.announcement-banner.closing {
    height: 0;
    padding: 0;
    border: none;
    transition: all 0.3s ease;
}

.announcement-banner.closing + nav {
    top: 0;
    transition: top 0.3s ease;
}

.announcement-banner.closing ~ .hero {
    padding-top: 90px;
    transition: padding-top 0.3s ease;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
    transform: translateY(-20px);
}




.hero h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--dark);
    padding: 0 0.5rem;
    text-align: center;
}

.hero h1 br {
    display: none;
}

@media (min-width: 768px) {
    .hero h1 br {
        display: block;
    }
}

.hero-description {
    max-width: 100%;
    margin: 0 auto;
}

.feature-text {
    font-size: clamp(1rem, 3vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 1rem;
    padding: 0 1rem;
    word-wrap: break-word;
}

.hero h1 .highlight-text {
    background: linear-gradient(120deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero h1 .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(120deg, #9333EA 0%, #8B5CF6 50%, #A855F7 100%);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.hero h1:hover .highlight-text::after {
    transform: scaleX(1);
    transform-origin: left;
}

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

.hero h1 .emoji {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
    margin: 0 4px;
}

.hero-description {
    text-align: center;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.hero .feature-text {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.hero .highlight {
    color: #9333EA;
    font-weight: 500;
    background: none;
    -webkit-text-fill-color: initial;
}

.hero .highlight.secondary {
    color: #8B5CF6;
}

.hero .highlight.tertiary {
    color: #A855F7;
}

.hero .subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--dark);
    line-height: 1.4;
}

.hero .features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero .emoji {
    font-size: 1.4rem;
    vertical-align: middle;
    margin-right: 0.3rem;
}

.badges {
    margin: 1.5rem 0;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    padding: 0 1rem;
}

.btn, .nav-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 30px;
    background: linear-gradient(135deg, #9333EA 0%, #7C3AED 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: none;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.2);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    gap: 8px;
    min-width: 180px;
}

.btn:hover, .nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(147, 51, 234, 0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.btn-secondary:hover {
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

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

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    top: 50%;
    left: 50%;
    margin: -3px 0 0 -3px;
}

.magnetize-btn:hover .particle {
    opacity: 0.8;
    transform: scale(1.2);
}

/* Update specific button variants */
.btn-primary, .nav-btn-filled {
    background-color: #e5d4ff;
    border-color: #a982ff;
    color: #6a0dad;
}

.btn-secondary, .nav-btn-outline {
    background-color: #e5d4ff;
    border-color: #a982ff;
    color: #6a0dad;
}

.btn-primary:hover, .nav-btn-filled:hover,
.btn-secondary:hover, .nav-btn-outline:hover {
    background-color: #d4b8ff;
    transform: translateY(-2px);
}

.mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only {
        display: inline-flex;
    }

    .btn-group {
        gap: 0.8rem;
        flex-direction: column;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1.5rem;
    }
}

/* Responsive Design */
/* Mobile-specific improvements */
@media (max-width: 768px) {
    :root {
        --nav-height: 60px;
    }

    .hero {
        padding-top: 140px;
    }

    .hero-content {
        padding: 1rem;
    }

    .announcement-banner.closing ~ .hero {
        padding-top: calc(var(--nav-height) + 30px);
    }

    .badges {
        flex-direction: column;
        gap: 12px;
        margin: 24px 0;
    }

    .badge {
        border-radius: 50px;
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
    }

    .btn-group {
        gap: 12px;
        margin-top: 24px;
    }

    .btn {
        border-radius: 50px;
        padding: 14px 24px;
    }


    .mobile-footer-nav {
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    }

    .mobile-footer-nav .nav-items {
        padding: 0.6rem;
        gap: 0.2rem;
    }

    .mobile-footer-nav .nav-item {
        padding: 0.5rem;
        min-width: 55px;
        font-size: 0.75rem;
    }

    .mobile-footer-nav .nav-item svg {
        width: 20px;
        height: 20px;
    }

    /* Improve logo size on mobile */
    .logo {
        font-size: 1.2rem;
    }

    .logo img {
        width: 36px;
        height: 36px;
    }

    /* Adjust navigation height */
    nav {
        height: 60px;
    }

    /* Improve spacing for mobile buttons */
    .mobile-hero-buttons {
        padding: 0 1rem;
        margin-top: 1.5rem;
    }

    .mobile-hero-buttons .btn {
        margin-bottom: 0.8rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .badge {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }

    .mobile-footer-nav .nav-item {
        min-width: 45px;
        font-size: 0.7rem;
    }
}

/* Ensure text breaks properly */
.highlight {
    display: inline-block;
    white-space: normal;
    word-break: break-word;
}

/* Modern Footer Styles */
.newsletter-signup {
    margin-top: 1rem;
}

.newsletter-form {
    position: relative;
    margin-top: 1rem;
}

.footer-input {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.footer-submit-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-submit-btn:hover {
    transform: translateY(-50%) scale(1.1);
    background: var(--primary-dark);
}

.whatsapp-channel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    background: #25D366;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.85rem;
    margin-top: 0.8rem;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(37, 211, 102, 0.4);
    width: auto;
    line-height: 1;
}

.whatsapp-channel-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.4);
    background: #22bb5b;
}

.whatsapp-channel-btn svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    position: relative;
    top: -0.5px;
}

.newsletter-signup {
    margin-top: 1rem;
}

.newsletter-signup p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}




.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 3rem;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Additional Footer Styles */
footer {
    background: linear-gradient(135deg, var(--dark) 0%, #2D3748 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-links h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.footer-links address {
    font-style: normal;
    line-height: 1.8;
}

.footer-links address p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

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

.footer-links ul li {
    margin-bottom: 0.8rem;
}

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

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

@media (max-width: 768px) {
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links {
        text-align: center;
    }

    .footer-links ul li a:hover {
        padding-left: 0;
    }

    .social-links {
        justify-content: center;
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--white);
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}




.stats-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-top: 2rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

/* Footer Improvements */
footer {
    background: linear-gradient(135deg, var(--dark) 0%, #2D3748 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
    padding: 2rem 0;
}

.footer-links {
    position: relative;
    padding: 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.footer-links:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    padding: 0.3rem 0;
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 0 6rem;
    }

    .footer-grid {
        gap: 2rem;
        padding: 1rem 0;
    }

    .footer-links {
        text-align: center;
    }

    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Mobile navigation final refinements */
.mobile-footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 10px;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
    z-index: 1000;
}

.mobile-footer-nav .nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: transparent;
    padding: 0;
    max-width: 500px;
    margin: 0 auto;
}

.mobile-footer-nav .nav-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text);
    font-size: 0.85rem;
    gap: 0.3rem;
    background: transparent;
    transition: all 0.3s ease;
    padding: 0.8rem;
    border-radius: 12px;
    min-width: 70px;
}

.mobile-footer-nav .nav-item.active {
    color: var(--primary);
    background: rgba(147, 51, 234, 0.1);
}

.mobile-footer-nav .nav-item:hover:not(.active) {
    background: rgba(147, 51, 234, 0.05);
    color: var(--primary);
}

.mobile-footer-nav .nav-item svg {
    width: 18px;
    height: 18px;
    margin-bottom: 4px;
}

/* Adjust body padding for fixed footer */
body {
    padding-bottom: 70px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .preview-content {
        grid-template-columns: 1fr;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}

/* Badges */
.badge {
    border-radius: 30px;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: none;
    font-weight: 500;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

.badge svg {
    width: 18px;
    height: 18px;
}

.badge-danger {
    background: rgba(255, 235, 235, 0.9);
    color: #EF4444;
}

.badge-success {
    background: rgba(235, 255, 235, 0.9);
    color: #22C55E;
}


/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.steps-grid + .steps-grid {
    margin-top: 3rem;
}

.step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(147, 51, 234, 0.08);
    min-height: 400px;
    position: relative;
    transition: all 0.3s ease;
    gap: 1.5rem;
}

.step-icon {
    width: 48px;
    height: 48px;
    padding: 12px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card h3 {
    font-size: 1.2rem;
    color: #9333EA;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.step-image {
    cursor: zoom-in;
    position: relative;
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin: 1rem auto;
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.06);
    transition: all 0.3s ease;
}

.step-image::after {
    content: '🔍';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.step-image:hover::after {
    opacity: 1;
    transform: scale(1);
}

.step-image:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .step-image {
        cursor: pointer;
    }

    .step-image::after {
        display: none;
    }

    .step-image:hover {
        transform: none;
    }
}

.step-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748B;
    padding: 0 1rem;
}

.step-card .highlight {
    color: #9333EA;
    font-weight: 500;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.12);
}

.step-card:hover .step-image {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.08);
}





.step-image.loading::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite linear;
    border-radius: inherit;
}

@keyframes shimmer {
    to { background-position: -200% 0; }
}




/* Mobile optimizations */
/* Mobile optimizations */
@media (max-width: 768px) {
    /* Step image styles */
    .step-image {
        width: 100%;
        height: 160px;
        margin: 0.5rem auto;
        padding: 0.5rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        background: #f8fafc;
        object-fit: contain;
        border-radius: 12px;
        transform: none !important;
    }

    /* Card styles */
    .step-card,
    .business-card {
        min-height: auto;
        padding: 1.5rem;
        gap: 1rem;
        margin-bottom: 1rem;
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        background: white;
        animation: none !important;
        perspective: none !important;
        transform-style: flat !important;
    }

    /* Grid layouts */
    .business-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0.5rem;
    }

    /* Remove effects */
    .business-card::before,
    .business-card::after,
    .business-card .card-content::before,
    .step-card::before,
    .step-card::after,
    .step-card .card-content::before,
    .step-image::after,
    .step-image::before {
        display: none !important;
    }

    /* Text styles */
    .step-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .step-card p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-top: 0.5rem;
    }

    .business-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .business-card li {
        font-size: 0.95rem;
        padding: 0.7rem 0;
    }

    /* Disable all hover and animations */
    .business-card:hover,
    .step-card:hover,
    .step-image:hover,
    .business-card:active,
    .step-card:active {
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
        background: white !important;
    }

    .business-card .card-content,
    .step-card .card-content {
        transform: none !important;
        transition: none !important;
        position: static !important;
    }
}




.step-image::after {
    content: '🔍';
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    padding: 8px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 16px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.step-image:hover::after {
    opacity: 1;
    transform: scale(1);
}

.step-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #f8f8f8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    opacity: 0;
    pointer-events: none;
}

.step-image.loading::before {
    opacity: 1;
}

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

.step-image:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.step-image::after {
    content: '🔍';
    position: absolute;
    top: 8px;
    right: 8px;
    background: white;
    padding: 6px;
    border-radius: 50%;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.step-image:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Enhanced animations for all step cards */
.step-card:nth-child(1),
.step-card:nth-child(2),
.step-card:nth-child(3),
.step-card:nth-child(4) {
    border: 2px solid transparent;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(249,250,251,0.98) 100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.step-card:nth-child(1) { border-image: linear-gradient(45deg, #7C3AED, #9333EA) 1; }
.step-card:nth-child(2) { border-image: linear-gradient(45deg, #22C55E, #16A34A) 1; }
.step-card:nth-child(3) { border-image: linear-gradient(45deg, #3B82F6, #2563EB) 1; }
.step-card:nth-child(4) { border-image: linear-gradient(45deg, #F59E0B, #D97706) 1; }

.step-card:nth-child(1) { animation: cardFloat 6s ease-in-out infinite; }
.step-card:nth-child(2) { animation: cardFloat 6s ease-in-out infinite 0.5s; }
.step-card:nth-child(3) { animation: cardFloat 6s ease-in-out infinite 1s; }
.step-card:nth-child(4) { animation: cardFloat 6s ease-in-out infinite 1.5s; }

.step-card:hover {
    animation-play-state: paused;
    transform: translateY(-10px) scale(1.02);
}

.step-card:nth-child(1):hover { box-shadow: 0 25px 50px rgba(147, 51, 234, 0.2); }
.step-card:nth-child(2):hover { box-shadow: 0 25px 50px rgba(34, 197, 94, 0.2); }
.step-card:nth-child(3):hover { box-shadow: 0 25px 50px rgba(59, 130, 246, 0.2); }
.step-card:nth-child(4):hover { box-shadow: 0 25px 50px rgba(245, 158, 11, 0.2); }

.step-card .step-image {
    transform-style: preserve-3d;
    backface-visibility: hidden;
}

.step-card:hover .step-image {
    transform: scale(1.08) translateY(-5px) translateZ(30px);
}

.step-card:nth-child(1):hover .step-image { box-shadow: 0 20px 40px rgba(147, 51, 234, 0.25); }
.step-card:nth-child(2):hover .step-image { box-shadow: 0 20px 40px rgba(34, 197, 94, 0.25); }
.step-card:nth-child(3):hover .step-image { box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25); }
.step-card:nth-child(4):hover .step-image { box-shadow: 0 20px 40px rgba(245, 158, 11, 0.25); }

/* Shine effect */
.step-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-15deg);
    transition: 0.6s;
    z-index: -1;
}

.step-card:hover::after {
    left: 100%;
    transform: skewX(-15deg);
}

/* Text animations */
.step-card h3,
.step-card p {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.step-card:hover h3 {
    transform: scale(1.05) translateZ(20px);
    letter-spacing: 0.5px;
}

.step-card:hover p {
    transform: translateY(2px) translateZ(10px);
}

/* Mobile optimization */
@media (max-width: 768px) {
    .step-card {
        animation: none !important;
        transform: none !important;
    }

    .step-card:hover {
        transform: none !important;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
    }

    .step-card .step-image,
    .step-card:hover .step-image {
        transform: none !important;
        box-shadow: none !important;
    }

    .step-card h3,
    .step-card p,
    .step-card:hover h3,
    .step-card:hover p {
        transform: none !important;
        letter-spacing: normal;
    }
}


/* Add keyframe animations */
@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
    50% { transform: translateY(-10px) rotateX(2deg) rotateY(2deg); }
}

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

/* Update hover states */
.step-card:first-child:hover {
    animation-play-state: paused;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(147, 51, 234, 0.2);
    border-color: rgba(147, 51, 234, 0.4);
}

.step-card:first-child:hover .step-image {
    animation-play-state: paused;
    transform: scale(1.08) translateY(-5px) translateZ(30px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.25);
}

.step-card:first-child:hover h3 {
    transform: scale(1.05) translateZ(20px);
    letter-spacing: 0.5px;
}

.step-card:first-child:hover p {
    transform: translateY(2px) translateZ(10px);
}

.step-card:first-child h3 {
    color: var(--primary);
    font-size: 1.6rem;
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.step-card:first-child:hover h3 {
    transform: scale(1.05);
    letter-spacing: 0.5px;
}

.step-card:first-child p {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.step-card:first-child:hover p {
    transform: translateY(2px);
}

/* Modal styles for image zoom */
.image-modal {
    opacity: 0;
    transition: all 0.3s ease;
    display: flex !important;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    cursor: zoom-out;
    touch-action: none;
}

.image-modal.active {
    opacity: 1;
    pointer-events: all;
}

.image-modal img {
    max-width: 100%;
    max-height: 100vh;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    object-fit: contain;
    touch-action: pinch-zoom;
    user-select: none;
    -webkit-user-select: none;
}

.image-modal.active img {
    transform: translate(-50%, -50%) scale(1);
}

.modal-close, .modal-fullscreen {
    position: fixed;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 1001;
    backdrop-filter: blur(4px);
}

.modal-close {
    top: 20px;
    right: 20px;
}

.modal-fullscreen {
    top: 20px;
    left: 20px;
}

.modal-close:hover, .modal-fullscreen:hover {
    background: rgba(0, 0, 0, 0.6);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.image-modal.fullscreen img {
    max-width: 100vw;
    max-height: 100vh;
    margin: 0;
    border-radius: 0;
}




@media (max-width: 768px) {
    .image-modal img {
        max-width: 100%;
        max-height: 100vh;
        margin: 0;
        border-radius: 0;
    }

    .modal-close {
        top: auto;
        bottom: 20px;
        right: 20px;
    }

    .modal-fullscreen {
        top: auto;
        bottom: 20px;
        left: 20px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.how-it-works {
    padding: 2rem 0;
    background: var(--gradient-bg);
}

.how-it-works h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark);
    background: linear-gradient(120deg, var(--primary) 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.steps-grid + .steps-grid {
    margin-top: 1.5rem;
}

@media (min-width: 1200px) {
    .step-card {
        min-height: 280px;
    }

    .step-image {
        height: 130px;
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2rem;
        background: #FFFFFF;
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(147, 51, 234, 0.08);
        min-height: 400px;
        position: relative;
        transition: all 0.3s ease;
        gap: 1.5rem;
    }

    .step-icon {
        width: 48px;
        height: 48px;
        padding: 12px;
        background: rgba(147, 51, 234, 0.1);
        border-radius: 12px;
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .step-card h3 {
        font-size: 1.2rem;
        color: #9333EA;
        margin-bottom: 1.5rem;
        font-weight: 600;
    }

    .step-image {
        width: 100%;
        height: 180px;
        object-fit: contain;
        margin: 1rem auto;
        background: #FFFFFF;
        padding: 1.5rem;
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(147, 51, 234, 0.06);
        transition: all 0.3s ease;
    }

    .step-card p {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #64748B;
        padding: 0 1rem;
    }

    .step-card .highlight {
        color: #9333EA;
        font-weight: 500;
    }

    .step-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(147, 51, 234, 0.12);
    }

    .step-card:hover .step-image {
        transform: scale(1.02);
        box-shadow: 0 6px 20px rgba(147, 51, 234, 0.08);
    }

    .step-card:hover {
        transform: none;
    }

    .step-card:hover .step-image {
        transform: none;
    }

    .step-card p {
        font-size: 0.85rem;
    }

    .image-modal {
        background: rgba(0, 0, 0, 0.98);
    }

    .image-modal img {
        max-width: 98%;
        max-height: 98vh;
    }
}




.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-card p {
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Perfect For Section */
.perfect-for {
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.03) 0%, rgba(139, 92, 246, 0.03) 100%);
}

.section-desc {
    font-size: 1.2rem;
    color: var(--text);
    max-width: 800px;
    margin: 0 auto 4rem;
    line-height: 1.8;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding: 1rem;
    margin-top: 3rem;
}

.category-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(147, 51, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.15);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.category-card ul {
    list-style: none;
    margin-top: 1rem;
}

.category-card li {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--text);
}

.category-card li::before {
    content: "→";
    color: var(--primary);
    margin-right: 0.8rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.category-card:hover li::before {
    transform: translateX(5px);
}

/* Statistics Card */
.detailed-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.stat-box {
    padding: 1rem;
    border-radius: 10px;
    background: var(--gray);
}

.stat-box.incoming { color: #28a745; }
.stat-box.outgoing { color: #ffc107; }
.stat-box.rejected { color: #dc3545; }
.stat-box.missed { color: #6c757d; }




section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.perfect-for h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(120deg, var(--primary) 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

section p.section-desc {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--text);
    opacity: 0.8;
}

/* Products List */
.products-list {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1rem 0;
}

.products-list h4 {
    color: var(--dark);
    margin-bottom: 1rem;
}

.products-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.products-list li {
    color: var(--text);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 0.9rem;
}

.products-list li:last-child {
    border-bottom: none;
}

/* Call Statistics */
.call-stats {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.stat-big-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-big-number svg {
    width: 24px;
    height: 24px;
}

.call-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.call-type {
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.call-type.incoming { background: rgba(40, 167, 69, 0.1); color: #28a745; }
.call-type.outgoing { background: rgba(255, 193, 7, 0.1); color: #ffc107; }
.call-type.rejected { background: rgba(220, 53, 69, 0.1); color: #dc3545; }
.call-type.missed { background: rgba(108, 117, 125, 0.1); color: #6c757d; }

.call-type strong {
    font-size: 1.2rem;
}

.export-option {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Video Section Styles */
.video-section {
    width: 95%;
    max-width: 900px;
    margin: 2rem auto;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background: #000;
    padding: 1.5rem 0 0;
    margin-top: -120px;
    padding-top: 140px;
    scroll-margin-top: 140px;
}

@media (max-width: 768px) {
    .video-section {
        margin: 1rem auto;
        border-radius: 8px;
        margin-top: -200px;
        padding-top: 220px;
        scroll-margin-top: 220px;
    }
}

.video-tab {
    display: none;
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}

.video-tab.active {
    display: block;
}

.video-tab iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-section {
        margin: 1rem;
        border-radius: 8px;
    }
}

.video-tab.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #9333EA;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Base responsive settings */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
    scroll-padding-top: 120px;
}

/* Add smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    body {
        scroll-padding-top: 250px;
    }
}

/* Container responsive adjustments */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Hero section responsive adjustments */
.hero {
    padding: 2rem 1rem;
    width: 100%;
    box-sizing: border-box;
}

.hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

/* Text responsiveness */
.feature-text {
    font-size: clamp(0.875rem, 2.5vw, 1.25rem);
    padding: 0 0.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Button group responsiveness */
.btn-group {
    gap: 0.6rem;
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 0.5rem;
    width: 100%;
    box-sizing: border-box;
}

.btn {
    position: relative;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    min-width: 150px;
    height: 44px;
    cursor: pointer;
}

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

.btn:hover::before {
    transform: translateX(0);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.3);
}

.btn svg {
    width: 12px;
    height: 12px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #7C3AED 100%);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, #16A34A 100%);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
}

.btn-secondary:hover {
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}





@media (max-width: 768px) {
    .nav-btn {
        padding: 8px 16px;
        font-size: 14px;
        min-width: 100px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 140px;
        height: 40px;
    }

    .btn-group {
        gap: 1rem;
        padding: 0 1rem;
    }

    .mobile-hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Video section responsiveness */
.video-section {
    width: 95%;
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

/* Responsive grid adjustments */
.steps-grid,
.categories-grid,
.features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 0 0.5rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero h1 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        padding: 0 0.5rem;
    }

    .badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        padding: 0 0.5rem;
    }

    .badge {
        font-size: 0.875rem;
        padding: 0.6rem 1rem;
    }

    .btn-group {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .nav-content {
        padding: 0 0.5rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .logo img {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero {
        padding: 3rem 0.5rem;
    }

    .step-card,
    .category-card {
        padding: 1rem;
    }

    .feature-text {
        font-size: 0.875rem;
    }
}

/* Fix for mobile stats */
@media (max-width: 768px) {
    .call-stats {
        overflow-x: hidden;
    }

    .call-types {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }
}



/* Ensure images don't overflow */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile Hero Buttons */
.mobile-hero-buttons {
    display: none;
    gap: 1rem;
    margin-top: 2rem;
    width: 100%;
}

.mobile-hero-buttons .btn {
    width: 100%;
    justify-content: center;
}

.mobile-hero-buttons .btn-outline {
    color: var(--primary);
    border: 3px solid var(--primary);
    background: transparent;
}

.mobile-hero-buttons .btn-outline:hover {
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
    color: white;
    border-color: transparent;
}

.mobile-hero-buttons .btn-filled {
    background: linear-gradient(135deg, #9333EA 0%, #7C3AED 100%);
    color: white;
}

@media (max-width: 768px) {
    .mobile-hero-buttons {
        display: flex;
        flex-direction: column;
    }
}

/* Add loading placeholder */
.video-tab::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1a1a1a;
}

/* Hero text improvements */
.hero h1 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: var(--dark);
    padding: 0 0.5rem;
    text-align: center;
}

.hero h1 br {
    display: none;
}

@media (min-width: 768px) {
    .hero h1 br {
        display: block;
    }
}

/* Improve highlight text responsiveness */
.highlight-text {
    display: inline;
    padding: 0 0.2em;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

/* Add content-visibility for better performance */
.how-it-works,
.perfect-for {
    content-visibility: auto;
    contain-intrinsic-size: 1px 5000px;
}


/* Mobile navigation styles */
.mobile-footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(147, 51, 234, 0.1);
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.06);
    z-index: 9999;
    display: none;
    height: 60px;
}

.mobile-footer-nav .nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0.3rem 1rem;
}

.mobile-footer-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text);
    font-size: 0.65rem;
    gap: 0.2rem;
    padding: 0.3rem;
    min-width: 45px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-footer-nav .nav-item.active {
    color: var(--primary);
    background: rgba(147, 51, 234, 0.1);
}

.mobile-footer-nav .nav-item:hover:not(.active) {
    background: rgba(147, 51, 234, 0.05);
    color: var(--primary);
}

.mobile-footer-nav .nav-item svg {
    width: 18px;
    height: 18px;
    margin-bottom: 1px;
}

@media (max-width: 768px) {
    .mobile-footer-nav {
        display: block;
    }

    body {
        padding-bottom: 60px;
    }

    .footer {
        padding-bottom: 60px;
        margin-bottom: 0;
    }

    .footer-grid {
        padding-bottom: 0;
    }

    .perfect-for {
        padding: 6rem 0;
    }

    .section-desc {
        margin-bottom: 3rem;
    }

    .category-card {
        padding: 2rem;
    }

    .mobile-footer-nav .nav-items {
        gap: 0.3rem;
    }

    .mobile-footer-nav .nav-item {
        padding: 0.6rem;
        min-width: 60px;
    }
}

/* Modern Footer Styles */
.newsletter-signup {
    margin-top: 1rem;
}

.newsletter-form {
    position: relative;
    margin-top: 1rem;
}

.footer-input {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    transition: all 0.3s ease;
}

.footer-input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.footer-submit-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-submit-btn:hover {
    transform: translateY(-50%) scale(1.1);
    background: var(--secondary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Footer Bottom Styles */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 3rem;
    text-align: center;
}

.footer-bottom .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0 0.5rem;
}

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

@media (max-width: 768px) {
    .footer-bottom {
        padding: 1.5rem 0;
    }

    .footer-bottom .container {
        gap: 0.5rem;
    }
}

/* Business Grid Styles */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.business-card {
    background: white;
    border-radius: 16px;
    padding: 1.8rem;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.card-icon {
    width: 48px;
    height: 48px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(147, 51, 234, 0.1);
    transition: transform 0.3s ease;
}

.business-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    line-height: 1.4;
}

.business-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.8rem;
}

.business-card li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(147, 51, 234, 0.08);
    color: var(--text);
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

@media (min-width: 1400px) {
    .business-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }

    .business-card {
        min-height: 300px;
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .business-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .business-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .business-card {
        min-height: auto;
        padding: 1.5rem;
    }

    .business-card li {
        padding: 0.6rem 0;
    }
}

/* Touch and Hover Effects */
@media (hover: none) {
    .business-card.touched {
        transform: scale(0.98);
        background-color: rgba(147, 51, 234, 0.03);
    }

    .business-card.touched .card-icon {
        transform: scale(1.1);
    }

    .business-card.touched li {
        color: var(--primary);
        transform: translateX(4px);
    }
}

@media (hover: hover) {
    .business-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(147, 51, 234, 0.15);
    }

    .business-card:hover .card-icon {
        transform: scale(1.1);
    }

    .business-card:hover li {
        color: var(--primary);
        transform: translateX(4px);
    }
}

/* Card hover effects */
.business-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    min-height: 320px;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.business-card:hover {
    transform: perspective(1000px) rotateX(10deg) rotateY(10deg) translateZ(20px);
    box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(147, 51, 234, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transform: translateZ(30px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.business-card:hover .card-icon {
    transform: translateZ(50px) scale(1.1);
}

.business-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0;
    transform: translateZ(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.business-card:hover h3 {
    transform: translateZ(40px);
}

.business-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    transform: translateZ(10px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.business-card:hover ul {
    transform: translateZ(30px);
}

.business-card li {
    padding: 0.8rem 0;
    color: var(--text);
    border-bottom: 1px solid rgba(147, 51, 234, 0.1);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
}

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

.business-card li::before {
    content: '→';
    color: var(--primary);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.business-card:hover li::before {
    transform: translateX(5px);
}

/* Add glowing effect */
.business-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(45deg,
        rgba(147, 51, 234, 0.3),
        rgba(139, 92, 246, 0.3),
        rgba(147, 51, 234, 0.3)
    );
    border-radius: 20px;
    z-index: -2;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.business-card:hover::after {
    opacity: 1;
}

/* Add shine effect */
.business-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-15deg);
    transition: 0.6s;
    z-index: -1;
}

.business-card:hover::before {
    left: 100%;
    transform: skewX(-15deg);
}

/* Smooth animations */
@keyframes cardFloat {
    0%, 100% { transform: translateY(0) perspective(1000px); }
    50% { transform: translateY(-10px) perspective(1000px); }
}

.business-card {
    animation: cardFloat 6s ease-in-out infinite;
}

.business-card:hover {
    animation-play-state: paused;
}

/* Card grid layout */
.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}


@media (min-width: 1400px) {
    .business-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) and (max-width: 1399px) {
    .business-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
        padding: 1.5rem;
    }
}

@media (max-width: 767px) {
    .business-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }

    .business-card {
        min-height: auto;
        padding: 1.2rem;
    }

    .business-card li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }
}

/* Touch and Hover Effects */
@media (hover: none) {
    .business-card {
        transition: transform 0.3s ease, background-color 0.3s ease;
    }

    .business-card.touched {
        transform: scale(0.98);
        background-color: rgba(147, 51, 234, 0.03);
    }

    .business-card.touched .card-icon {
        transform: scale(1.1);
    }

    .business-card.touched li {
        color: var(--primary);
        transform: translateX(4px);
    }
}

@media (hover: hover) {
    .business-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(147, 51, 234, 0.15);
    }

    .business-card:hover .card-icon {
        transform: scale(1.1);
    }

    .business-card:hover li {
        color: var(--primary);
        transform: translateX(4px);
    }
}

@media (max-width: 768px) {
    .business-card {
        min-height: 280px;
        padding: 1.5rem;
    }

    .business-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.business-card:hover .card-content {
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Improve card interactions */
.business-card {
    backface-visibility: hidden;
    will-change: transform;
    cursor: pointer;
}

/* Adjust animation for better performance */
@keyframes cardFloat {
    0%, 100% {
        transform: perspective(1000px) translateY(0) translateZ(0);
    }
    50% {
        transform: perspective(1000px) translateY(-10px) translateZ(20px);
    }
}

/* Add touch interaction styles */
/* Mobile Touch Interactions */
@media (hover: none) {
    .business-card {
        transform: none !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .business-card:active {
        transform: scale(0.98) !important;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .business-card.touched {
        background: rgba(147, 51, 234, 0.05);
    }

    .business-card.touched li {
        transform: translateX(5px);
    }
}


@media (max-width: 1199px) {
    .business-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 991px) {
    .business-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .business-grid {
        grid-template-columns: 1fr;
    }

    .business-card {
        height: 300px;
    }
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(147, 51, 234, 0.1);
}

.card-front {
    transform: rotateY(0);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-back {
    transform: rotateY(180deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth transitions */
.card-front h3,
.card-front p {
    transition: transform 0.3s ease;
}

.business-card:hover .card-front h3,
.business-card:hover .card-front p {
    transform: scale(0.95);
}

.card-back ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: left;
}

.card-back li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(147, 51, 234, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.card-back li::before {
    content: '→';
    color: var(--primary);
    font-weight: bold;
}

.business-card .card-content {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.business-card:hover .card-content {
    transform: rotateY(180deg);
}

@media (hover: none) {
    .business-card::after {
        display: none;
    }
}


.card-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(139, 92, 246, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.business-card:hover .card-content::before {
    opacity: 1;
}

.card-icon {
    width: 44px;
    height: 44px;
    padding: 10px;
    border-radius: 12px;
    background: rgba(147, 51, 234, 0.1);
    margin-bottom: 0.5rem;
}

.icon-purple svg { color: #9333EA; }
.icon-blue svg { color: #3B82F6; }
.icon-green svg { color: #22C55E; }
.icon-red svg { color: #EF4444; }
.icon-orange svg { color: #F59E0B; }
.icon-pink svg { color: #EC4899; }
.icon-indigo svg { color: #6366F1; }
.icon-teal svg { color: #14B8A6; }

.icon-purple svg { color: #9333EA; }
.icon-blue svg { color: #3B82F6; }
.icon-green svg { color: #22C55E; }
.icon-red svg { color: #EF4444; }
.icon-orange svg { color: #F59E0B; }
.icon-pink svg { color: #EC4899; }
.icon-indigo svg { color: #6366F1; }
.icon-teal svg { color: #14B8A6; }

.card-icon svg {
    width: 100%;
    height: 100%;
}

.business-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0;
    margin-bottom: 0.5rem;
}

.business-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.business-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(147, 51, 234, 0.08);
    color: var(--text);
    font-size: 0.9rem;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.business-card li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.business-card li::before {
    content: '→';
    color: var(--primary);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.business-card:hover li::before {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .business-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .business-card {
        height: auto;
        min-height: 280px;
    }

    .card-content {
        position: relative;
        padding: 1.5rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        padding: 0.8rem;
    }

    .business-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .business-card li {
        font-size: 0.95rem;
    }
}

/* Magnetize Button Styles */
.magnetize-btn {
    position: relative;
    overflow: visible !important;
    touch-action: none;
    cursor: pointer;
}

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

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: currentColor;
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    top: 50%;
    left: 50%;
    margin: -3px 0 0 -3px;
}

.magnetize-btn:hover .particle {
    opacity: 1;
}

.btn-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    width: 100%;
}

/* Mobile optimization for magnetize buttons */
@media (max-width: 768px) {
    .particle-container {
        display: none;
    }
}

/* Adjust button styles for magnetize effect */
.nav-btn.magnetize-btn,
.btn.magnetize-btn {
    border: none;
    background: none;
    padding: 0.8rem 1.6rem;
}

.nav-btn.nav-btn-outline.magnetize-btn .btn-content {
    background: transparent;
    color: #7C3AED;
    border: 3px solid #7C3AED;
    border-radius: 50px;
    padding: 0.4rem 1.7rem;
    transition: all 0.3s ease;
}

.nav-btn.nav-btn-outline.magnetize-btn:hover .btn-content {
    background: linear-gradient(135deg, #7C3AED 0%, #9333EA 100%);
    color: white;
    transform: translateY(-2px);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

.nav-btn.nav-btn-filled.magnetize-btn .btn-content {
    background: linear-gradient(135deg, #9333EA 0%, #7C3AED 100%);
    color: white;
    border-radius: 50px;
    padding: 0.5rem 1.1rem;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.2);
    transition: all 0.3s ease;
}

.nav-btn.nav-btn-filled.magnetize-btn:hover .btn-content {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.3);
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
}

.btn.btn-primary.magnetize-btn .btn-content {
    background: linear-gradient(135deg, #9333EA 0%, #7C3AED 100%);
    color: white;
    border-radius: 50px;
    padding: 0.8rem 1.8rem;
    box-shadow: 0 4px 15px rgba(147, 51, 234, 0.2);
    transition: all 0.3s ease;
}

.btn.btn-primary.magnetize-btn:hover .btn-content {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(147, 51, 234, 0.3);
    background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
}

.btn.btn-secondary.magnetize-btn .btn-content {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    color: white;
    border-radius: 50px;
    padding: 0.8rem 1.8rem;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
    transition: all 0.3s ease;
}

.btn.btn-secondary.magnetize-btn:hover .btn-content {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
}

.step-card .highlight {
    color: #7C3AED;
    font-weight: 600;
    background: linear-gradient(120deg, rgba(147, 51, 234, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    padding: 0.1em 0.3em;
    border-radius: 4px;
    display: inline-block;
    line-height: 1.4;
}

.step-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text);
    padding: 0 0.5rem;
}


.reseller-partner {
    padding: 2rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reseller-partner h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(120deg, var(--primary) 0%, #8B5CF6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.reseller-content {
    background: transparent;
    box-shadow: none;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    transform: translateY(0);
    transition: all 0.3s ease;
}


.reseller-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.15);
}

.reseller-text p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 2rem;
}

.reseller-cta {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .reseller-partner {
        padding: 4rem 1rem;
    }

    .reseller-content {
        padding: 1.5rem;
        margin: 0 1rem;
    }

    .reseller-text p {
        font-size: 1rem;
    }
}


/* Announcement Banner */
.announcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 38px;
    background: white;
    z-index: 1003;
    border-bottom: 1px solid rgba(255, 77, 77, 0.1);
    display: flex;
    align-items: center;
}



.announcement-banner.closing {
    height: 0;
    padding: 0;
    border: none;
    opacity: 0;
    transition: all 0.3s ease;
}

.announcement-banner.closing + nav {
    top: 0;
    transition: top 0.3s ease;
}

.announcement-banner.closing ~ .hero {
    margin-top: 0;
    padding-top: 120px;
}


.announcement-banner.closing ~ .hero .hero-content {
    margin-top: 0;
}


.announcement-banner .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.announcement-banner p {
    margin: 0;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    background: linear-gradient(90deg, #FF4D4D, #FF0000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer-icon {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

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

@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.banner-cta {
    background: linear-gradient(90deg, #FF4D4D, #FF0000);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.banner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.2);
}

.close-banner {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #FF4D4D;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
    .announcement-banner .container {
        gap: 0.8rem;
    }

    .banner-cta {
        font-size: 0.8rem;
        padding: 0.2rem 0.8rem;
    }

    .announcement-banner p {
        font-size: 0.75rem;
        padding: 0 1.1rem;
    }
}


.footer {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #1a237e 0%, #121858 100%);
    color: #fff;
    padding: 1rem 0 0;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

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

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        rgba(255,255,255,0.05) 0%,
        rgba(255,255,255,0) 100%);
    animation: gradientMove 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes gradientMove {
    0% {
        transform: translateX(-50%) translateY(-50%) rotate(0deg);
    }
    100% {
        transform: translateX(50%) translateY(50%) rotate(360deg);
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-section {
    flex: 1;
    min-width: 160px;
    max-width: 280px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    padding: 1.5rem;
    border-radius: 12px;
}

.footer-section:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

.footer-section h3 {
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    white-space: nowrap;
    background: linear-gradient(90deg, #fff, rgba(255,255,255,0.8));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 100%;
}

.footer-desc, .contact-info {
    font-size: 0.85rem;
    max-width: 240px;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .footer-content {
        flex-wrap: nowrap;
        gap: 0.3rem;
    }

    .footer-section {
        flex: 1;
        min-width: 140px;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-section:hover {
        transform: none;
    }

    .footer-section h3::after {
        width: 50px;
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-section:hover h3::after {
        width: 100px;
    }

    .contact-info li::before {
        display: none;
    }

    .footer-section {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .footer-desc, .contact-info {
        max-width: 100%;
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #8B5CF6, transparent);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Enhanced Footer Animations */
.whatsapp-btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 50%);
    transform: scale(0);
    transition: transform 0.6s ease-out;
}

.whatsapp-btn:hover::after {
    transform: scale(1);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

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

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding: 0.3rem 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-links a:hover {
    color: #fff;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease;
    position: relative;
    padding-left: 1rem;
}

.contact-info li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s ease, top 0.3s ease;
}

.contact-info li:hover::before {
    height: 100%;
    top: 0;
}

.contact-info li:hover {
    transform: translateX(5px);
}

.contact-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    transform-origin: center;
}

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

.social-link:hover::before {
    width: 150%;
    height: 150%;
}

.social-link:hover {
    transform: translateY(-3px) rotate(8deg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.social-icon {
    width: 20px;
    height: 20px;
    color: white;
}

.footer-bottom {
    margin-top: 4rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-bottom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: shimmerBottom 2s infinite;
}

@keyframes shimmerBottom {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.separator {
    color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .footer::after {
        animation: none;
    }

    .mobile-footer-nav {
        display: block;
    }

    .footer {
        display: block !important;
        padding: 2rem 1rem 70px;
        margin-bottom: 0;
    }

    .footer-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 2rem;
    }

    .footer-section {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }

    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-info li {
        justify-content: center;
        text-align: center;
        margin-bottom: 1rem;
    }

    .whatsapp-btn {
        margin: 1rem auto;
        display: inline-flex;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }

    .footer-bottom .container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* Remove any conflicting styles */
    body {
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .footer-grid {
        padding-bottom: 0;
    }

    /* Ensure mobile nav stays on top */
    .mobile-footer-nav {
        position: fixed;
        z-index: 1001;
        bottom: 0;
    }

    /* Add mobile nav items styles */
    .mobile-footer-nav .nav-items {
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 0.5rem;
        gap: 0.3rem;
    }

    .mobile-footer-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--text);
        font-size: 0.8rem;
        padding: 0.6rem;
        min-width: 60px;
    }

    .mobile-footer-nav .nav-item svg {
        width: 20px;
        height: 20px;
        margin-bottom: 4px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/*  */
