:root {
                --primary: #007B3A; /* Main green color */
    --primary-light: #00994A; /* Lighter green */
    --secondary: #7B3A00; /* Burnt orange accent */
    --accent: #FF6B6B; /* Keeping this for alerts/errors */
    --dark: #14142B;
    --gray-dark: #4E4B66;
    --gray-medium: #A0A3BD;
    --gray-light: #EFF0F6;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, #9A4B00 100%);
    --shadow-light: 0 4px 20px rgba(0, 123, 58, 0.1);
    --shadow-medium: 0 8px 40px rgba(0, 123, 58, 0.15);
    --shadow-heavy: 0 20px 80px rgba(0, 123, 58, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Space Grotesk', 'Inter', sans-serif;
            background-color: var(--white);
            color: var(--dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            letter-spacing: -0.02em;
            font-family: 'Space Grotesk', sans-serif;
        }

        .text-primary { color: var(--primary) !important; }
        .text-secondary { color: var(--secondary) !important; }
        .bg-primary { background: var(--gradient-primary) !important; }
        .bg-secondary { background: var(--gradient-secondary) !important; }

        /* Navigation */
        .navbar {
            padding: 1.5rem 0;
            transition: all 0.3s ease;
            background: transparent !important;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.85) !important;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: var(--shadow-light);
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-size: 1.75rem;
            font-weight: 800;
            text-decoration: none;
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .navbar-brand img {
            height: 40px;
            width: auto;
        }

        .nav-link {
            font-weight: 500;
            color: var(--dark) !important;
            transition: all 0.3s ease;
            position: relative;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
        }

        .nav-link:hover {
            color: var(--primary) !important;
        }

        .nav-link.active {
            color: var(--primary) !important;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            bottom: 0;
            left: 25%;
            background: var(--primary);
            border-radius: 3px;
        }
        
        #backToTop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
    background-color: #007B3A; /* Your primary color */
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

#backToTop:hover {
    background-color: #005f2b; /* Darker shade on hover */
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}


        /* Mobile Navigation */
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: none;
            width: 1.5em;
            height: 1.5em;
            position: relative;
        }

        .navbar-toggler-icon::before {
            content: '\f0c9';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 1.5rem;
            color: var(--dark);
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: all 0.3s ease;
        }

        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
            content: '\f00d';
        }

        .mobile-menu-close {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 2rem;
            color: var(--dark);
            display: none;
        }

        @media (max-width: 991px) {
            .navbar-collapse {
                position: fixed;
                top: 0;
                left: 0;
                width: 100vw;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                z-index: 9999;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                transform: translateX(-100%);
                transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                padding: 2rem;
            }

            .navbar-collapse.show {
                transform: translateX(0);
            }

            .mobile-menu-close {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    font-weight: bold;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.3s ease;
}

            .navbar-nav {
                width: 100%;
                text-align: center;
                gap: 1.5rem;
            }

            .nav-item {
                margin: 0.5rem 0;
            }

            .nav-link {
                font-size: 1.5rem;
                font-weight: 600;
                display: inline-block;
            }
        }

        /* Hero Section */
        .hero-section {
            padding: 8rem 0 4rem;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background-color: var(--white);
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-section h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            color: var(--dark);
        }

        .hero-section .lead {
            font-size: 1.5rem;
            color: var(--gray-dark);
            margin-bottom: 3rem;
            font-weight: 400;
        }

        .hero-highlight {
            position: relative;
            display: inline-block;
        }

        .hero-highlight::after {
            content: '';
            position: absolute;
            bottom: 0.2em;
            left: 0;
            width: 100%;
            height: 0.4em;
            background: rgba(0, 196, 204, 0.3);
            z-index: -1;
            border-radius: 2px;
        }

        .hero-image {
            position: relative;
            z-index: 1;
            perspective: 1000px;
        }

        .hero-mockup {
            width: 100%;
            max-width: 500px;
            height: 600px;
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
            border-radius: 30px;
            box-shadow: var(--shadow-heavy);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            animation: floating 6s ease-in-out infinite;
        }

        .hero-mockup::before {
            content: '';
            position: absolute;
            top: 20px;
            left: 20px;
            right: 20px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 15px;
        }

        .hero-mockup::after {
            content: '';
            position: absolute;
            top: 100px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            background: url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') center/cover;
            opacity: 0.8;
        }

        /* Buttons */
        .btn {
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            font-size: 1.1rem;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--shadow-light);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
            color: white;
        }

        .btn-secondary {
            background: var(--gradient-secondary);
            color: white;
            box-shadow: var(--shadow-light);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-medium);
            color: white;
        }

        .btn-outline-primary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline-primary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        /* Stats Section */
        .stats-section {
            background: var(--gray-light);
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .stat-item {
            text-align: center;
            padding: 2rem 1rem;
            position: relative;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%235F2EEA" opacity="0.05"/></svg>') repeat;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            display: block;
            margin-bottom: 0.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--gray-dark);
            font-weight: 500;
        }

        /* Features Section */
        .features-section {
            padding: 6rem 0;
            background: var(--white);
        }

        .feature-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            border: 1px solid rgba(95, 46, 234, 0.1);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-medium);
        }

        .feature-card .icon-wrapper {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            border-radius: 20px;
            color: white;
            font-size: 2rem;
            box-shadow: var(--shadow-light);
        }

        .feature-card h3 {
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .feature-card p {
            color: var(--gray-dark);
        }

        /* How It Works Section */
        .how-it-works {
            padding: 6rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
        }

        .step-card {
            text-align: center;
            padding: 2.5rem;
            position: relative;
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow-light);
            transition: all 0.4s ease;
            height: 100%;
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .step-number {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-primary);
            color: white;
            font-size: 1.8rem;
            font-weight: 700;
            border-radius: 50%;
            box-shadow: var(--shadow-light);
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 6rem 0;
            background: var(--white);
        }

        .testimonial-slider {
            padding: 2rem 0;
        }

        .testimonial-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: var(--shadow-light);
            height: 100%;
            position: relative;
            border: 1px solid rgba(95, 46, 234, 0.1);
            margin: 0 1rem;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 30px;
            font-size: 4rem;
            color: var(--primary);
            font-weight: bold;
            opacity: 0.3;
        }

        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-style: italic;
            color: var(--gray-dark);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .author-info h5 {
            margin: 0;
            font-weight: 600;
            color: var(--dark);
        }

        .author-info p {
            margin: 0;
            color: var(--gray-medium);
            font-size: 0.9rem;
        }

        /* Business Types Section */
        .business-types {
            padding: 6rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
        }

        .business-card {
            text-align: center;
            padding: 2.5rem;
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow-light);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            height: 100%;
            border: 1px solid rgba(95, 46, 234, 0.1);
        }

        .business-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-medium);
        }

        .business-card i {
            font-size: 3rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
        }

        /* Demo Section */
        .demo-section {
            padding: 6rem 0;
            background: var(--white);
        }

        .demo-video {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
            position: relative;
        }

        .demo-video::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(95, 46, 234, 0.1);
            z-index: 1;
        }

        .demo-video video {
            width: 100%;
            display: block;
        }

        /* FAQ Section */
        .faq-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
        }

        .faq-item {
            border: 1px solid rgba(95, 46, 234, 0.1);
            border-radius: 15px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
            background: var(--white);
        }

        .faq-item:hover {
            box-shadow: var(--shadow-light);
        }

        .faq-question {
            padding: 1.5rem 2rem;
            background: var(--white);
            border: none;
            width: 100%;
            text-align: left;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            color: var(--dark);
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-answer {
            padding: 0 2rem 1.5rem;
            color: var(--gray-dark);
            line-height: 1.7;
            display: none;
        }

        .faq-icon {
            font-size: 1.2rem;
            color: var(--primary);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        /* Pricing Section */
        .pricing-section {
            padding: 6rem 0;
            background: var(--white);
        }

        .pricing-card {
            background: var(--white);
            border-radius: 25px;
            padding: 3rem;
            box-shadow: var(--shadow-medium);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(95, 46, 234, 0.1);
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .pricing-card.popular {
            border: 2px solid var(--primary);
        }

        .pricing-card.popular::before {
            content: 'Most Popular';
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--gradient-primary);
            color: white;
            padding: 0.25rem 2rem;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 600;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .pricing-card .price {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .pricing-card .price span {
            font-size: 1rem;
            color: var(--gray-medium);
            font-weight: 400;
        }

        .pricing-feature {
            display: flex;
            align-items: center;
            margin: 1rem 0;
            font-size: 1rem;
            color: var(--gray-dark);
        }

        .pricing-feature i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 1.2rem;
        }

        /* CTA Section */
        .cta-section {
    padding: 6rem 0;
    color: white;
    position: relative;
    overflow: hidden;

    /* Strong colored gradient on top, image faintly behind */
    background: 
        linear-gradient(
            rgba(0, 123, 58, 0.95), 
            rgba(123, 58, 0, 0.95)
        ),
        url('https://images.unsplash.com/photo-1556740738-b6a63e27c4df?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: normal; /* Or try: overlay, soft-light */
}


        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>') repeat;
            animation: sparkle 15s linear infinite;
        }

        .cta-section h2 {
            color: white;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            font-size: 1.2rem;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
        }

        footer a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        footer a:hover {
            color: white;
        }

        footer .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        footer .social-icons a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        /* Animations */
        @keyframes floating {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(2deg); }
        }

        @keyframes floatRotate {
            0% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-20px) rotate(90deg); }
            50% { transform: translateY(0px) rotate(180deg); }
            75% { transform: translateY(20px) rotate(270deg); }
            100% { transform: translateY(0px) rotate(360deg); }
        }

        @keyframes sparkle {
            0% { transform: translateX(0); }
            100% { transform: translateX(100px); }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes wave {
            0% { transform: translateX(0) translateY(0); }
            50% { transform: translateX(50%) translateY(-20px); }
            100% { transform: translateX(100%) translateY(0); }
        }

        /* Scroll Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-in-left.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-in-right.animate {
            opacity: 1;
            transform: translateX(0);
        }

        /* Hover Effects */
        .hover-grow {
            transition: transform 0.3s ease;
        }

        .hover-grow:hover {
            transform: scale(1.05);
        }

        .hover-rotate {
            transition: transform 0.3s ease;
        }

        .hover-rotate:hover {
            transform: rotate(5deg);
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            z-index: -1;
            opacity: 0.8;
            animation: float 15s infinite ease-in-out;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-section {
                padding: 6rem 0 4rem;
                text-align: center;
            }

            .hero-section h1 {
                font-size: 2.5rem;
            }

            .hero-section .lead {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .section-subtitle {
                font-size: 1.1rem;
            }

            .hero-mockup {
                height: 400px;
                margin-top: 3rem;
            }

            .stat-number {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero-section h1 {
                font-size: 2rem;
            }

            .btn {
                padding: 0.875rem 1.5rem;
                font-size: 1rem;
            }

            .feature-card,
            .step-card,
            .business-card,
            .testimonial-card {
                padding: 2rem 1.5rem;
            }
        }

        /* Swiper Custom Styles */
        .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background: var(--gray-medium);
            opacity: 1;
        }

        .swiper-pagination-bullet-active {
            background: var(--primary);
        }

        .swiper-button-next, .swiper-button-prev {
            color: var(--primary);
            background: rgba(255, 255, 255, 0.8);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            backdrop-filter: blur(5px);
            box-shadow: var(--shadow-light);
        }

        .swiper-button-next::after, .swiper-button-prev::after {
            font-size: 1.5rem;
        }

        /* Custom Shapes */
        .shape-circle {
            position: absolute;
            border-radius: 50%;
            z-index: -1;
            opacity: 0.1;
            animation: floatRotate 20s infinite linear;
        }

        .shape-circle.primary {
            background: var(--primary);
        }

        .shape-circle.secondary {
            background: var(--secondary);
        }

        .shape-circle.accent {
            background: var(--accent);
        }

        /* Demo GIF */
        .demo-gif {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-heavy);
            position: relative;
        }

        .demo-gif img {
            width: 100%;
            height: auto;
            display: block;
        }
/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: var(--white);
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.8rem;
    border-radius: 18px;
    flex-shrink: 0;
}

.benefit-content h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit-content p {
    color: var(--gray-dark);
    margin: 0;
}

@media (max-width: 768px) {
    .benefit-card {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto;
    }
}
/* Storefront Section */
.storefront-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
}

.storefront-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.feature-content h4 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.feature-content p {
    color: var(--gray-dark);
    margin: 0;
}

.storefront-preview {
    position: relative;
    perspective: 1000px;
}

.storefront-mockup {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transform: rotate3d(0.5, 1, 0, 15deg);
    transition: transform 0.5s ease;
}

.storefront-mockup:hover {
    transform: rotate3d(0, 0, 0, 0deg);
}

.mockup-header {
    background: var(--gradient-primary);
    padding: 1rem;
    text-align: center;
}

.mockup-url {
    color: white;
    font-weight: 500;
}

.mockup-content {
    padding: 1.5rem;
}

.mockup-product {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.mockup-product:last-child {
    margin-bottom: 0;
}

.product-image {
    width: 60px;
    height: 60px;
    background: var(--gray-light);
    border-radius: 10px;
    flex-shrink: 0;
}

.product-details h5 {
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.product-details p {
    margin: 0;
    color: var(--primary);
    font-weight: 600;
}

@media (max-width: 992px) {
    .storefront-mockup {
        transform: none;
        margin-top: 3rem;
    }
    
    .storefront-mockup:hover {
        transform: none;
    }
}
/* Waitlist Section */
.waitlist-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #f1f3f5 100%);
}

.waitlist-form-container {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    margin-bottom: 2rem;
}

.waitlist-form .form-floating {
    margin-bottom: 1rem;
}

.waitlist-form .form-control,
.waitlist-form .form-select {
    border-radius: 12px;
    padding: 1rem 1.5rem;
    height: auto;
    border: 2px solid var(--gray-light);
    transition: all 0.3s ease;
}

.waitlist-form .form-control:focus,
.waitlist-form .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 58, 0.25);
}

.waitlist-form label {
    padding: 1rem 1.5rem;
    color: var(--gray-medium);
}

.waitlist-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.waitlist-success h3 {
    margin-bottom: 1rem;
    color: var(--dark);
}

.waitlist-benefits .benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-item i {
    font-size: 2.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.benefit-item h5 {
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.benefit-item p {
    color: var(--gray-dark);
    margin: 0;
}

@media (max-width: 768px) {
    .waitlist-form-container {
        padding: 2rem 1.5rem;
    }
}
/* Single Pricing Plan Styles */
.pricing-card {
    background: var(--white);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(95, 46, 234, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-heavy);
}

.pricing-card.popular {
    border: 2px solid var(--primary);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 2rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--primary);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-card .price span {
    font-size: 1.2rem;
    color: var(--gray-medium);
    font-weight: 400;
}

.pricing-features {
    margin: 2.5rem 0;
}

.pricing-feature {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    font-size: 1rem;
    color: var(--gray-dark);
    text-align: left;
}

.pricing-feature i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pricing-faq {
    margin-top: 3rem;
}

.accordion-button {
    font-weight: 600;
    color: var(--dark);
}

.accordion-button:not(.collapsed) {
    background-color: rgba(0, 123, 58, 0.1);
    color: var(--primary);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 58, 0.25);
    border-color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-card .price {
        font-size: 2.8rem;
    }
    
    .pricing-badge {
        right: -35px;
        font-size: 0.7rem;
        padding: 0.2rem 1.8rem;
    }
}

@media (max-width: 576px) {
    .pricing-feature {
        font-size: 0.9rem;
    }
    
    .pricing-badge {
        right: -40px;
        padding: 0.2rem 1.5rem;
    }
}