        :root {
            --color-primary: #9940eb;
            --color-primary-r: 153,64,235;
            --color-secondary-r: 47,5,59;
            --color-secondary: #2f053b;
            --color-accent: #693da9;
            --color-light: #f5dbfcab;
            --color-white: #ffffff;
            --color-gray: #6c757d;
            --color-dark: #212529;
            --gradient-primary: linear-gradient(135deg, #9940eb 0%, #693da9 100%);
            --gradient-secondary: linear-gradient(135deg, #2f053b 0%, #4a1a5a 100%);
            --gradient-hero: linear-gradient(135deg, #2f053b 0%, #4a1a5a 50%, #693da9 100%);
            --white-low-gradiant: linear-gradient(135deg, #fdebf9 0%, #e7b8e79a 100%);
            --shadow-sm: 0 2px 8px rgba(153, 64, 235, 0.08);
            --shadow-md: 0 4px 16px rgba(153, 64, 235, 0.12);
            --shadow-lg: 0 8px 30px rgba(153, 64, 235, 0.15);
            --border-radius: 12px;
            --transition: all 0.3s ease;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            font-size: 1rem;
            line-height: 1.6;
            color: var(--color-dark);
            background-color: var(--color-white);
            overflow-x: hidden;
        }



        .language-switcher {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--color-primary);
            font-weight: 500;
            cursor: pointer;
        }


        /* Modern Hero Section */
        .hero-section {
            background: var(--gradient-hero);
            color: white;
            padding: 12rem 0 6rem;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
        }

        @media (max-width: 768px) { /* adjust breakpoint as needed */
          .hero-section {
            padding-top: 6rem;
          }
          .hero-visual{
            min-width: 75vw;
          }
          .about-visual{
            min-width: 85vw;
          }
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
            background-size: cover;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 3rem;
        }

        .hero-text {
            flex: 1;
            max-width: 600px;
        }

        .hero-visual {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            padding: 0.5rem 1.25rem;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 1.5rem;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
            max-width: 500px;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            gap: 0.5rem;
            font-size: 1rem;
            
            position: relative;
            z-index: 12;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: 0 4px 14px rgba(248, 240, 255, 0.1);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        .hero-dashboard {
            width: 100%;
            max-width: 600px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transform: perspective(1000px) rotateY(3deg) rotateX(-3deg);
            transition: var(--transition);
        }

        .hero-dashboard:hover {
            transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
        }

        .dashboard-header {
            display: flex;
            align-items: center;
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .dashboard-nav {
            display: flex;
            gap: 1rem;
        }

        .dashboard-nav-item {
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }

        .dashboard-nav-item:nth-child(1) {
            background: #ff5f57;
        }

        .dashboard-nav-item:nth-child(2) {
            background: #ffbd2e;
        }

        .dashboard-nav-item:nth-child(3) {
            background: #28ca42;
        }

        .dashboard-content {
            padding: 1.5rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .dashboard-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 1rem;
            height: 80px;
        }

        .dashboard-card:nth-child(1) {
            grid-column: 1 / 3;
            height: 120px;
        }

        /* Section Styling */
        .section {
            padding: 6rem 0;
        }

        .section-light {
            background-color: var(--color-light);
        }

        .section-dark {
            background: var(--gradient-secondary);
            color: white;
            position: relative;

        }
        .section-dark::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
        background-size: cover;
       }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

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

        .section-dark .section-subtitle {
            color: rgba(255, 255, 255, 0.8);
        }

        /* About Section */
        .about-modules {
            width: 100%;
            max-width: 500px;
            background: var(--gradient-secondary);
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transform: perspective(1000px) rotateY(1deg) rotateX(1deg);
            transition: var(--transition);
            position: relative;
        }

        .about-modules::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
            background-size: cover;
        }

        .about-modules:hover {
            transform: perspective(1000px) rotateY(6deg) rotateX(-2deg);
        }

        .modules-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 1.5rem;
            background: rgba(255, 255, 255, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
        }

        .modules-controls {
            display: flex;
            gap: 0.75rem;
        }

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

        .control-dot:nth-child(1) {
            background: #ff5f57;
        }

        .control-dot:nth-child(2) {
            background: #ffbd2e;
        }

        .control-dot:nth-child(3) {
            background: #28ca42;
        }

        .modules-title {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.875rem;
            font-weight: 600;
        }

        .modules-grid {
            padding: 1.5rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            position: relative;
            z-index: 1;
        }

        .module-panel {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            padding: 1.25rem;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        .module-panel:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-2px);
        }

        .module-panel.main {
            grid-column: 1 / 3;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .panel-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .panel-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.125rem;
        }

        .panel-icon.small {
            width: 32px;
            height: 32px;
            font-size: 0.875rem;
        }

        .panel-title {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.875rem;
            font-weight: 600;
        }

        .panel-content {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .panel-value {
            color: white;
            font-size: 1rem;
            font-weight: 700;
            line-height: 1;
        }

        .panel-stats {
            display: flex;
            gap: 1.5rem;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .stat-value {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            line-height: 1;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.75rem;
            font-weight: 500;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .about-modules {
                transform: none;
                max-width: 100%;
            }
            
            .about-modules:hover {
                transform: translateY(-5px);
            }
            
            .modules-grid {
                grid-template-columns: 1fr;
                gap: 0.875rem;
            }
            
            .module-panel.main {
                grid-column: 1;
            }
        }
        .about-content {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .about-text {
            flex: 1;
            text-align: justify;
        }

        .about-text p {
            margin-bottom: 1.5rem;
        }

        .about-visual {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .about-cube {
            width: 300px;
            height: 300px;
            position: relative;
            transform-style: preserve-3d;
            transform: rotateX(-15deg) rotateY(15deg);
            animation: rotate 20s infinite linear;
        }

        @keyframes rotate {
            0% { transform: rotateX(-15deg) rotateY(0deg); }
            100% { transform: rotateX(-15deg) rotateY(360deg); }
        }

        .cube-face {
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(153, 64, 235, 0.1);
            border: 1px solid rgba(153, 64, 235, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--color-primary);
            backdrop-filter: blur(10px);
        }

        .cube-face:nth-child(1) { transform: translateZ(150px); }
        .cube-face:nth-child(2) { transform: rotateY(90deg) translateZ(150px); }
        .cube-face:nth-child(3) { transform: rotateY(180deg) translateZ(150px); }
        .cube-face:nth-child(4) { transform: rotateY(-90deg) translateZ(150px); }
        .cube-face:nth-child(5) { transform: rotateX(90deg) translateZ(150px); }
        .cube-face:nth-child(6) { transform: rotateX(-90deg) translateZ(150px); }

        /* Core Values Section */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .value-card {
            border-radius: var(--border-radius);
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
            text-align: center;
            position: relative;
            background-color: var(--color-secondary);
            color: #ddd;
        }
        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
            background-size: cover;
        }

        .value-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);

        }


        .value-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin: 0 auto 1.5rem;
            
        }


        .value-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--color-white);
        }

        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: var(--white-low-gradiant);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
        }
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
            background-size: cover;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

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

        .feature-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--color-dark);
        }

        .feature-description {
            color: var(--color-gray);
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        /* Modules Section */
        .modules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .module-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
            background-color: var(--color-secondary);
            color: #ddd;
        }

        
        .module-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
            background-size: cover;
        }


        .module-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .module-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .module-title {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff;
        }

        .module-description {
            color: #ddd;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        /* Pricing Section */
        .pricing-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            background: var(--color-light);
            border-radius: 50px;
            padding: 0.5rem;
            max-width: 400px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-tab {
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            flex: 1;
        }

        .pricing-tab.active {
            background: var(--gradient-primary);
            color: white;
        }

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

        .pricing-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem 2rem;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            display: flex;
            flex-direction: column;

                                position: relative;
            background-color: var(--color-secondary);
            color: #ddd;
        }


        
        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
            background-size: cover;
        }

        .pricing-card.featured {
            transform: scale(1.05);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--color-primary);
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

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

        .pricing-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-primary);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .pricing-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--color-primary);
        }

        .pricing-price {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--color-white);
        }

        .pricing-period {
            color: var(--color-primary);
            font-size: 1rem;
        }

        .pricing-features {
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .pricing-feature {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .pricing-feature i {
            color: #00ff3c;
            margin-right: 0.75rem;
            margin-left: 0.75rem;
        }

        .discount-badge {
            background: #28a745;
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-left: 0.5rem;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            margin-bottom: 1rem;
        }

        .section-dark .faq-item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .faq-question {
            padding: 1.5rem 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            position: relative;
            z-index: 2;
        }

        .faq-answer {
            display: none;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 0 1.5rem 0;
        }

        .faq-answer.active {
            display: block;
            max-height: 500px;
        }

        .faq-icon {
            transition: var(--transition);
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }
        /* Contact Section */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .contact-form {
            background: white;
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow-sm);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-control {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px rgba(153, 64, 235, 0.1);
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gradient-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
            flex-shrink: 0;
        }

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

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--color-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-dark);
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--color-primary);
            color: white;
            transform: translateY(-2px);
        }

        /* Updated Footer Design */
        .footer {
            background: var(--gradient-secondary);
            color: white;
            padding: 4rem 0 2rem;
            position: relative;
            overflow: hidden;
        }

        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.03"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
            background-size: cover;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
            position: relative;
            z-index: 1;
        }

        .footer-brand {
            margin-bottom: 1.5rem;
        }

        .footer-description {
            opacity: 0.8;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .footer-links h4 {
            margin-bottom: 1.5rem;
            font-size: 1.125rem;
            position: relative;
            display: inline-block;
        }

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

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

        .footer-links li {
            margin-bottom: 0.75rem;
            transition: var(--transition);
        }

        .footer-links li:hover {
            transform: translateX(5px);
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        a {
            color: rgba(207, 34, 250, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        a:not(.google-btn):not(.details-btn):hover {
            color: rgb(249, 224, 255);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-links a i {
            font-size: 0.75rem;
            opacity: 0.7;
        }

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

        .footer-copyright {
            opacity: 0.9;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .powered-by {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-weight: 600;
            margin-left: 0.5rem;
        }

        .footer-newsletter {
            margin-top: 1.5rem;
        }

        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.75rem 1rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-size: 0.875rem;
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-btn {
            padding: 0.75rem 1.25rem;
            border-radius: 50px;
            background: var(--gradient-primary);
            color: white;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            font-size: 0.875rem;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(153, 64, 235, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.75rem;
            }
            
            .hero-content, .about-content {
                flex-direction: column;
            }
            
            .contact-content {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-5px);
            }
        }

        @media (max-width: 768px) {

            
            .hero-title {
                font-size: 2.25rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .modules-grid, .pricing-grid, .features-grid, .values-grid {
                grid-template-columns: 1fr;
            }
            
            .pricing-tabs {
                flex-direction: column;
                gap: 0.5rem;
            }
        }



        /* Modern Contact Section Styles */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch; /* This makes both columns the same height */
}

.contact-form {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%; /* Ensure it takes full height of grid cell */
    display: flex;
    flex-direction: column;
}

.contact-form form {
    flex: 1; /* Make form take remaining space */
    display: flex;
    flex-direction: column;
}

.contact-form .btn {
    margin-top: auto; /* Push button to bottom */
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(153, 64, 235, 0.1);
    background: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure it takes full height */
}

.company-card {
    background: var(--gradient-secondary);
    color: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    height: 100%; /* Take full height of parent */
    display: flex;
    flex-direction: column;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.company-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.company-logo h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
}

.company-tagline {
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.contact-details {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.contact-details h4 {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    position: relative;
    display: inline-block;
}

.contact-details h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    background: var(--gradient-primary);
    transform: scale(1.05);
}

.contact-item p {
    margin: 0;
    line-height: 1.5;
}

.social-section {
    position: relative;
    z-index: 1;
    margin-top: auto; /* Push social section to bottom */
}

.social-section h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .company-card {
        padding: 2rem 1.5rem;
    }
    
    .company-logo {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}


/* /////////////////// */

/* Navigation */
.subscription-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 30;
}

.sp-navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sp-navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.sp-navbar-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    margin: 0;
}

.sp-navbar-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.sp-navbar-links a:hover {
    opacity: 0.8;
}

.sp-navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1000;
}

/* Mobile Styles - Aggressive fix */
/* Mobile Styles - Simple fix */
@media (max-width: 768px) {
    .sp-navbar-toggle {
        display: block !important;
    }

    .sp-navbar-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(45, 5, 59, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        padding: 2rem;
        z-index: 999;
    }

    .sp-navbar-links.active {
        display: flex !important;
    }

    .language-switcher {
        display: none !important;
    }
}

/* //////////////////////////////////////  */

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

.sp-navbar.scrolled {
    background: rgba(45, 5, 59, 0.95);
    backdrop-filter: blur(10px);
}

.sp-navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Small Scroll Down Indicator */
.scroll-indicator {
  scale: 1.3;
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    opacity: 0.9;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-2px);
}

.scroll-indicator span {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
    animation: bounce 2s infinite;
}

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


 /* Privacy Policy & Terms of Use  */  


.legal-section {
    padding: 8rem 0 4rem;
    background: var(--color-light);
    min-height: 100vh;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #9940eb;
}

.legal-subtitle {
    color: var(--color-gray);
    font-size: 1.125rem;
}

.legal-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-section-content {
    margin-bottom: 2.5rem;
}

.legal-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-primary);
    border-bottom: 2px solid var(--color-light);
    padding-bottom: 0.5rem;
}

.legal-text {
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-list {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-list li {
    margin-bottom: 0.5rem;
    color: var(--color-gray);
    line-height: 1.6;
}

.effective-date {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--color-gray);
    font-style: italic;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .legal-title {
        font-size: 2rem;
    }
}




/* uset settings  */

.settings-section {
    padding: 8rem 0 4rem;
    background: var(--color-light);
    min-height: 100vh;
}

.settings-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.settings-header {
    text-align: center;
    margin-bottom: 3rem;
}

.settings-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.settings-subtitle {
    color: var(--color-gray);
    font-size: 1.125rem;
}

.settings-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
}

.settings-sidebar {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: fit-content;
}

.settings-nav {
    list-style: none;
}

.settings-nav-item {
    margin-bottom: 0.5rem;
}

.settings-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    color: var(--color-gray);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.settings-nav-link.active,
.settings-nav-link:hover {
    background: var(--gradient-primary);
    color: white;
}

.settings-nav-link i {
    width: 20px;
    text-align: center;
}

.settings-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.settings-tab {
    display: none;
}

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

.tab-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--color-dark);
    border-bottom: 2px solid var(--color-light);
    padding-bottom: 0.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(153, 64, 235, 0.1);
    background: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.checkbox-group label {
    font-weight: 500;
    color: var(--color-dark);
}

.payment-methods {
    margin: 2rem 0;
}

.payment-method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.payment-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-icon {
    width: 40px;
    height: 40px;
    background: var(--color-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.25rem;
}

.notification-category {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.notification-category:last-child {
    border-bottom: none;
}

.category-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.btn-save {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .settings-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}



/* login  & signUp  */
        .auth-section {
    padding: 8rem 0 4rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.auth-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.auth-container {
    max-width: 450px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.auth-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.auth-logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
}

.auth-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.auth-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form .form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
}

.auth-form .form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.auth-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.auth-form .form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(153, 64, 235, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.auth-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.forgot-password {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.forgot-password:hover {
    color: white;
}

.social-login {
    margin: 2rem 0;
    text-align: center;
}

.social-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: rgba(255, 255, 255, 0.6);
}

.social-divider::before,
.social-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.social-divider span {
    padding: 0 1rem;
    font-size: 0.875rem;
}

.google-btn {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.google-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.auth-footer {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    gap: 0.5rem;
}

.auth-footer a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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


.terms-agreement {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.terms-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.terms-checkbox input {
    margin-top: 0.25rem;
}

.terms-checkbox label {
    font-size: 0.875rem;
    color: white;
    line-height: 1.4;
}



/* business management  */
/* Business Management Section */
.bm-section {
    padding: 8rem 0 4rem;
    background: var(--color-light);
    min-height: 100vh;
}

.bm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bm-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bm-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

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

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

.bm-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    flex-direction: column;
}

.bm-card:hover {
    box-shadow: var(--shadow-lg);
}

/* Disable hover for cards with .no-hover */
.bm-card.bm-card-no-hover {
    transform: none;
    box-shadow: var(--shadow-sm); /* or keep original shadow */
}

.bm-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    flex-direction: column;
}

@media (min-width: 768px) {
    .bm-header {
        flex-direction: row !important;
    }
}

@media (max-width: 575.98px) {
    .bm-status-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 1rem !important;
    }
}

.bm-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.bm-status {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.bm-details {
    margin-bottom: 2rem;
}

.bm-detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.bm-detail-label {
    color: var(--color-gray);
    font-weight: 500;
}

.bm-detail-value {
    color: var(--color-dark);
    font-weight: 600;
}

.bm-modules-list {
    margin: 1.5rem 0;
    flex-grow: 1;
}

.bm-modules-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.bm-modules-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.bm-module-tag {
    background: var(--color-light);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    word-break: break-all;
}

.suggest-slug {
    background: var(--color-light);
    color: var(--color-primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    word-break: break-all;
    cursor: pointer;
}

/* Add New Business Card */
.bm-add-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-sm);
    border: 2px dashed #e0e0e0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    min-height: 300px;
}

.bm-add-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
}

.bm-add-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.bm-add-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.bm-add-description {
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.bm-card.bm-card-new {
  animation: bm-new 2.2s ease forwards;
  border-radius: 12px;
}

@keyframes bm-new {
  0%   {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(var(--color-primary-r), 0.12);
    outline: 3px solid rgba(0,0,0,0);
  }
  10%  {
    outline: 3px solid rgba(var(--color-primary-r), 0.9);
  }
  60% {
    transform: none;
    box-shadow: 0 8px 22px rgba(var(--color-primary-r), 0.08);
  }
  100% {
    outline: 0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  }
}

/* small inline spinner shown inside the submit button */
.btn-spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.25);
  border-top-color: #fff;
  box-sizing: border-box;
  vertical-align: middle;
  margin-left: 0.6rem;
  animation: spinner-rotate 0.75s linear infinite;
}

/* disabled-button look while loading */
#addBusinessForm button[disabled] {
  cursor: wait;
  opacity: 0.85;
}

/* spinner animation */
@keyframes spinner-rotate {
  to { transform: rotate(360deg); }
}


/* Modal */
.bm-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.bm-modal.active {
    display: flex;
}

.bm-modal-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.bm-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.bm-modal-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-dark);
}

.bm-close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-gray);
    cursor: pointer;
    transition: var(--transition);
}

.bm-close-modal:hover {
    color: var(--color-dark);
}

/* Form */
.bm-form-group {
    margin-bottom: 1.5rem;
}

.bm-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

.bm-form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    background: #fafafa;
}

.bm-form-control:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(153, 64, 235, 0.1);
    background: white;
}

.bm-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

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

    .bm-form-row {
        grid-template-columns: 1fr;
    }
}

        /* ERP Modules Details  */

        
.modules-section {
    padding: 8rem 0 4rem;
    background: var(--color-light);
    min-height: 100vh;
}

.modules-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}


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


.module-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.module-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.module-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.module-status {
    background: #28a745;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}



.module-features {
    margin: 2rem 0;
}

.features-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.features-list {
    list-style: none;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-gray);
}

.features-list li i {
    color: #00ff3c;
    font-size: 0.875rem;
}

.module-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

.btn-add-module {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-add-module:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-add-module.added {
    background: #28a745;
}

.btn-preview {
    background: var(--color-light);
    color: var(--color-dark);
    border: 1px solid #e0e0e0;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-preview:hover {
    background: #e9ecef;
}

.module-detail-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.module-detail-modal.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-gray);
    cursor: pointer;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--color-dark);
}

.modal-header {
    margin-bottom: 2rem;
    padding-right: 3rem;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.modal-subtitle {
    color: var(--color-gray);
    font-size: 1.125rem;
    line-height: 1.6;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.features-section h3,
.screenshots-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
}

.feature-content p {
    color: var(--color-gray);
    line-height: 1.6;
}

.screenshot-placeholder {
    background: var(--color-light);
    border-radius: 12px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
    margin-bottom: 1rem;
    border: 2px dashed #e0e0e0;
}

.video-placeholder {
    background: var(--color-dark);
    border-radius: 12px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.play-button:hover {
    transform: scale(1.1);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .module-actions {
        flex-direction: column;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
    }
}

.form-check-input {
    --bs-form-check-bg: transparent;
    flex-shrink: 0;
    width: 1.313em;
    height: 1.313em;
    margin-top: .0935em;
    vertical-align: top;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1.25px solid #8e939b;
    border-radius: 3px;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact
}


.form-check-input[type=radio] {
    border-radius: 50%
}

.form-check-input:active {
    filter: brightness(90%)
}

.form-check-input:focus {
    border-color: #aec3ff;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(93,135,255,.25)
}

.form-check-input:checked {
    background-color: var(--color-accent);
    border-color: var(--color-accent)
}

.form-check-input:checked[type=checkbox] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e")
}

.form-check-input:checked[type=radio] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")
}

.form-check-input:disabled {
    pointer-events: none;
    filter: none;
    opacity: .5
}

.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label {
    cursor: default;
    opacity: .5
}

.no-arrows::-webkit-inner-spin-button,
.no-arrows::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.no-arrows {
  -moz-appearance: textfield; /* Firefox */
}

ul.errorlist { 
    list-style: none;
    margin-top: 0.75rem;
}

.btn.disabled { 
    cursor: not-allowed;
}

.pricing-tab.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Quantity control — modern segmented look */
.sp-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(180deg, rgba(var(--color-primary-r),0.01), rgba(255,255,255,0.02));
  border-radius: calc(var(--border-radius) - 4px);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}

/* Button base */
.qty-btn {
  -webkit-tap-highlight-color: transparent;
  appearance: none;
  border: none;
  background: transparent;
  min-width: 44px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  cursor: pointer;
  padding: 0 10px;
  transition: transform 160ms ease, background 220ms ease;
  color: var(--color-secondary);
}

/* left / right visual separators (optional) */
.qty-btn + .qty-input,
.qty-input + .qty-btn {
  border-left: 1px solid rgba(0,0,0,0.06);
}

/* Hover / Active */
.qty-btn:hover {
  color: rgb(var(--color-primary-r));
}
.qty-btn:active { transform: translateY(0); }

/* Input */
.qty-input {
  -moz-appearance: textfield; /* hide firefox arrows */
  -webkit-appearance: none;   /* hide ios */
  appearance: none;
  border: none;
  width: 80px;
  padding: 8px 12px;
  font-size: 1rem;
  text-align: center;
  background: transparent;
  outline: none;
  color: var(--color-dark);
}

/* Remove webkit number spinners */
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Disabled */
.qty-btn:disabled,
.qty-input[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Small helper text */
.qty-price {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--color-gray);
}

/* Responsive tweaks */
@media (max-width: 480px) {
  .qty-input { width: 64px; font-size: 0.95rem; }
  .qty-btn { min-width: 40px; height: 36px; }
}

.bg-primary-subtle {
    background-color: rgba(var(--color-primary-r), 0.1);
}

/* Account dropdown - modern style consistent with sp- classes */
.sp-nav-dropdown {
  position: relative;
  list-style: none;
}

/* Toggle anchor */
.sp-nav-dropdown .sp-nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem .6rem;
  border-radius: .35rem;
  text-decoration: none;
  font-weight: 500;
  color: inherit;
  cursor: pointer;
}

/* Caret */
.sp-nav-dropdown .sp-caret {
  font-size: .8rem;
  transition: transform .18s ease;
  opacity: .85;
}

/* Dropdown menu */
.sp-dropdown-menu {
  display: none; /* shown on hover (desktop) or when .open (mobile) */
  position: absolute;
  top: calc(100% - 4px);
  right: -2rem;
  min-width: 175px;
  background: #2f053b;
  border-radius: .5rem;
  box-shadow: 0 8px 24px rgba(22, 28, 37, 0.12);
  padding: .4rem;
  z-index: 1200;
  border: 1px solid rgba(0,0,0,0.05);
  text-align: center;
}

/* Dropdown item */
.sp-dropdown-item {
  list-style: none;
  margin: 0;
  color: #fff !important;
}
.sp-dropdown-item a {
  display: block;
  border-radius: .35rem;
  text-decoration: none;
  font-size: .95rem;
  color: inherit;
}
.sp-dropdown-item a:hover,
.sp-dropdown-item a:focus {
  background: rgb(249 224 255 / 12%);
  outline: none;
  text-align: center;
    align-items: center;
    justify-content: center;
}

/* Show on parent hover (desktop) */
@media (min-width: 768px) {
  .sp-nav-dropdown:hover .sp-dropdown-menu,
  .sp-nav-dropdown:focus-within .sp-dropdown-menu {
    display: block;
  }
  .sp-nav-dropdown:hover .sp-caret,
  .sp-nav-dropdown:focus-within .sp-caret {
    transform: rotate(180deg);
  }
}

/* Mobile / burger behaviour */
@media (max-width: 767px) {
  /* inside the burger the nav links stack - make dropdown full width */
  .sp-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 0;
    padding-right: 0;
    margin-top: .25rem;
  }
  .sp-dropdown-item a {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  /* when open (JS toggles .open on the parent) */
  .sp-nav-dropdown.open .sp-dropdown-menu {
    display: block;
  }
  .sp-nav-dropdown .sp-nav-dropdown-toggle {
    width: 100%;
    justify-content: center;
  }

  /* subtle divider between dropdown items in mobile */
  .sp-dropdown-item + .sp-dropdown-item a {
    border-top: 1px solid rgba(0,0,0,0.04);
  }
}

/* ensure hover-style is applied when .open-hover is present */
.sp-nav-dropdown.open-hover .sp-dropdown-menu,
.sp-nav-dropdown:hover .sp-dropdown-menu,
.sp-nav-dropdown:focus-within .sp-dropdown-menu {
  display: block;
}
.sp-nav-dropdown.open-hover .sp-caret {
  transform: rotate(180deg);
}
.sp-dropdown-item:hover {
    background-color: transparent !important;
}

.bg-gradient-danger {
    --gradient-danger: linear-gradient(135deg, #3b0505 0%, #5a1a1a 50%, #a93d3d 100%);
    background: var(--gradient-danger);
}

.bg-gradient-warning {
    --gradient-warning: linear-gradient(135deg, #755703 0%, #755703 50%, rgb(228, 173, 35) 100%);
    background: var(--gradient-warning);
}

.bg-gradient-info {
    --gradient-info: linear-gradient(135deg, #121959 0%, #2636c4 50%, #56b6ee  100%);
    background: var(--gradient-info);
}

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.375rem 0.75rem; /* padding-y padding-x */
    font-size: 0.875rem;
    color: #2a3547; /* --bs-link-color */
    text-decoration: none;
    background-color: #fff; /* --bs-body-bg */
    border: 1px solid #ebf1f6; /* --bs-border-width solid --bs-border-color */
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .page-link {
        transition: none;
    }
}

.page-link:hover {
    /* z-index: 2; */
    color: #fff !important; /* --bs-pagination-hover-color */
    background-color: #ca66ff; /* --bs-tertiary-bg */
    border-color: #ebf1f6; /* --bs-border-color */
}

.page-link:focus {
    z-index: 3;
    color: #fff; /* kept as in original rule */
    background-color: #4a1a5a; /* kept as in original rule */
    outline: 0;
}

.active > .page-link,
.page-link.active {
    /* z-index: 3; */
    color: #fff; /* --bs-pagination-active-color */
    background-color: #9940eb; /* as in original rule (overrides the variable) */
    border-color: #9940eb; /* as in original rule */
}

.disabled > .page-link,
.page-link.disabled {
    color: #5a6a8566; /* --bs-secondary-color */
    pointer-events: none;
    background-color: #fefefe; /* --bs-secondary-bg */
    border-color: #ebf1f6; /* --bs-border-color */
}

.page-item:not(:first-child) .page-link {
    margin-left: -1px; /* calc(1px * -1) */
}

.page-item:first-child .page-link {
    border-top-left-radius: 7px; /* --bs-border-radius */
    border-bottom-left-radius: 7px; /* --bs-border-radius */
}

.page-item:last-child .page-link {
    border-top-right-radius: 7px; /* --bs-border-radius */
    border-bottom-right-radius: 7px; /* --bs-border-radius */
}

/* Large pagination */
.pagination-lg .page-link {
    padding: 0.75rem 1.5rem; /* padding-y padding-x from .pagination-lg */
    font-size: 1.09375rem;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}

/* Small pagination */
.pagination-sm .page-link {
    padding: 0.25rem 0.5rem; /* padding-y padding-x from .pagination-sm */
    font-size: 0.765625rem;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

html[dir=rtl] .page-item:first-child .page-link {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 7px!important;
    border-bottom-right-radius: 7px!important
}

html[dir=rtl] .page-item:last-child .page-link {
    border-top-left-radius: 7px!important;
    border-bottom-left-radius: 7px!important;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.details-btn {
    padding: 0.875rem !important;
}

.align-middle {
    vertical-align: middle !important;
}

.border-bottom-space {
    position: relative;
    border-style: hidden;
}

table, tbody, td, tfoot, th, thead, tr {
    /* border: none; */
    border-spacing: 0;
    border-collapse: collapse;
}

tbody, td, tfoot, th, thead, tr
 {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}

.table>:not(caption)>*>* {
    padding: 16px 16px;
    border-bottom-width: 1px;
}

.border-bottom-space::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #482a6ed9, #482a6ed9);
    /* z-index: 1; */
    pointer-events: none;
}

#custom-solutions {
    position: relative;
    overflow: hidden;
}

#custom-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.05"><polygon fill="white" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.solutions-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.intro-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.6;
}

.solutions-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
}

.solution-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solution-card.core-solution {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(153, 64, 235, 0.5);
    box-shadow: 0 10px 30px rgba(153, 64, 235, 0.2);
}

.solution-badge-main {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
    white-space: nowrap;
}

.sme-badge {
    background: var(--gradient-primary);
}

.solution-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.logo-icon.core {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
}

.solution-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: white;
}

.solution-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

.solution-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 6px;
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.feature-item i {
    width: 20px;
    text-align: center;
    color: #00ff3c;
}

.feature-item.limited i {
    color: #ff6b6b;
}

.feature-item span {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.solution-suitable {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.solution-suitable h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.solution-suitable ul {
    list-style: none;
    padding: 0;
}

.solution-suitable li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    font-size: 0.9rem;
}

.solution-suitable li::before {
    content: '•';
    position: absolute;
    color: var(--color-primary);
}

html[dir=rtl] .solution-suitable li::before {
    right: 0;
}

html[dir=ltr] .solution-suitable li::before {
    left: 0;
}

.core-cta-section {
    background: linear-gradient(1deg, #2f073d, transparent);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin: 3rem 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-text h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.cta-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.core-benefits {
    margin-top: 3rem;
}

.benefits-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

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

.benefit-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 1.5rem;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
    .solutions-comparison {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .solution-header {
        text-align: center;
    }
    
    .solution-logo {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .solution-card {
        padding: 1.5rem;
    }
    
    .core-cta-section {
        padding: 2rem 1.5rem;
    }
    
    .cta-text h3 {
        font-size: 1.5rem;
    }
}

.pricing-price-container {
    position: relative;
    margin-bottom: 0.5rem;
}

.original-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.pricing-card .pricing-price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

/* Specific styling for each pricing card */
.pricing-card:nth-child(1) .original-price {
    color: rgba(30, 210, 255, 0.6);
}

.pricing-card:nth-child(2) .original-price {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card:nth-child(3) .original-price {
    color: rgba(255, 213, 98, 0.6);
}