:root {
            --primary-color: #8a42ff;
            --primary-light: #9d5eff;
            --primary-dark: #6a2fd4;
            --secondary-color: #2b2b36;
            --accent-color: #00d4aa;
            --accent-light: #4dffd9;
            --danger-color: #ff4757;
            --warning-color: #ffa502;
            --success-color: #2ed573;
            --info-color: #1e90ff;
            --bg-light: #f8f9fa;
            --bg-dark: #1a1a24;
            --text-dark: #2d3748;
            --text-light: #718096;
            --text-white: #ffffff;
            --border-radius: 12px;
            --border-radius-sm: 8px;
            --box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            --box-shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
            --transition: all 0.3s ease;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            font-size: 16px;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            line-height: 1.3;
        }

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

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

        

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

        .btn-primary:hover {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(138, 66, 255, 0.2);
        }

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

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

        .btn-accent {
            background: linear-gradient(135deg, var(--accent-color), #00b894);
            color: white;
            border: none;
        }

        .btn-accent:hover {
            background: linear-gradient(135deg, #00b894, var(--accent-color));
            color: white;
            transform: translateY(-2px);
        }

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

        .section-padding {
            padding: 100px 0;
        }

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

        .section-title h2 {
            font-size: 2.8rem;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Header Styles */
        .main-header {
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        .main-header.scrolled {
            padding: 10px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .navbar {
            padding: 20px 0;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
        }

        .navbar-brand .logo-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: white;
        }

        .nav-link {
            font-weight: 500;
            padding: 10px 20px !important;
            margin: 0 5px;
            border-radius: var(--border-radius-sm);
            transition: var(--transition);
        }

        .nav-link:hover, .nav-link.active {
            background: rgba(138, 66, 255, 0.1);
            color: var(--primary-color);
        }

        .navbar-toggler {
            border: none;
            padding: 8px 10px;
            border-radius: var(--border-radius-sm);
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28138, 66, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #1a237e 0%, #311b92 100%);
            color: white;
            padding: 180px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .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 1200 600" opacity="0.05"><path fill="%23ffffff" d="M0,0V600H1200V0ZM600,300A300,300,0,1,1,300,600,300,300,0,0,1,600,300Z"/></svg>');
            background-size: cover;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            margin-bottom: 30px;
            max-width: 700px;
            
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-top: 30px;
        }

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

        .hero-stat h3 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .hero-stat p {
            opacity: 0.8;
            font-size: 0.9rem;
        }

        .hero-image {
            position: relative;
            z-index: 2;
        }

        .dashboard-mockup {
            background: white;
            border-radius: 20px;
            padding: 15px;
            box-shadow: var(--box-shadow-lg);
            transform: perspective(1000px) rotateY(-10deg);
            transition: var(--transition);
        }

        .dashboard-mockup:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        /* Social Platforms Section */
        .platforms-section {
            background: var(--bg-light);
        }

        .platform-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            text-align: center;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

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

        .platform-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 36px;
            color: white;
        }

        .facebook-bg { background: linear-gradient(135deg, #1877f2, #0d5cb6); }
        .instagram-bg { background: linear-gradient(135deg, #e4405f, #c13584); }
        .twitter-bg { background: linear-gradient(135deg, #1da1f2, #0d8bd9); }
        .linkedin-bg { background: linear-gradient(135deg, #0a66c2, #004182); }
        .youtube-bg { background: linear-gradient(135deg, #ff0000, #cc0000); }
        .tiktok-bg { background: linear-gradient(135deg, #000000, #69c9d0); }
        .whatsapp-bg { background: linear-gradient(135deg, #25d366, #128C7E); }

        .platform-features {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        .platform-features li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            color: var(--text-light);
            font-size: 0.95rem;
        }
        .platform-features li i {
            color: var(--accent-color);
            font-size: 14px;
        }

        /* Automation Features */
        .feature-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

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

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            color: white;
            font-size: 28px;
        }

        .feature-icon.accent { background: linear-gradient(135deg, var(--accent-color), #00b894); }
        .feature-icon.warning { background: linear-gradient(135deg, var(--warning-color), #ff7b00); }
        .feature-icon.success { background: linear-gradient(135deg, var(--success-color), #1db954); }

        .feature-benefit {
            font-size: 1rem;
            color: var(--text-light);
            margin: 15px 0 10px;
            font-weight: 500;
        }

        /* Pricing Section */
        .pricing-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .pricing-card.popular {
            border: 2px solid var(--accent-color);
            transform: scale(1.05);
        }

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

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

        .popular-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--accent-color);
            color: white;
            padding: 8px 40px;
            font-size: 14px;
            font-weight: 600;
            transform: rotate(45deg);
        }

        .pricing-amount {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            margin: 20px 0;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 30px 0;
        }
        .pricing-features li {
            padding: 10px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .pricing-features li i {
            color: var(--accent-color);
        }

        /* Testimonials */
        .testimonial-slider {
            background: linear-gradient(135deg, var(--secondary-color), #1a1a24);
            color: white;
            border-radius: var(--border-radius);
            overflow: hidden;
        }

        .testimonial-slide {
            padding: 60px;
            text-align: center;
        }

        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin: 0 auto 20px;
            overflow: hidden;
            border: 4px solid rgba(255, 255, 255, 0.1);
        }

        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 20px;
            opacity: 0.9;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-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 1200 600" opacity="0.1"><path fill="%23ffffff" d="M0,0V600H1200V0ZM600,300A300,300,0,1,1,300,600,300,300,0,0,1,600,300Z"/></svg>');
            background-size: cover;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            text-align: center;
        }

        /* Footer */
        .main-footer {
            background: var(--bg-dark);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 20px;
        }

        .footer-logo .logo-icon {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: white;
        }

        .footer-about {
            opacity: 0.8;
            margin-bottom: 25px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

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

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

        .footer-heading {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-heading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 3px;
        }

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

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

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--accent-color);
            padding-left: 5px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-contact li i {
            margin-right: 10px;
            color: var(--accent-color);
            margin-top: 5px;
        }

        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 50px;
            text-align: center;
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Trust badges */
        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
        }
        .trust-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            color: var(--text-light);
            background: rgba(255,255,255,0.1);
            padding: 8px 16px;
            border-radius: 40px;
            color: white;
        }
        .trust-badge i {
            color: var(--accent-color);
        }

        /* Company logos row */
        .company-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 40px;
            margin-top: 40px;
            opacity: 0.7;
        }
        .company-logos img {
            height: 30px;
            filter: brightness(0) invert(1);
        }

        /* Comparison table */
        .comparison-table {
            background: white;
            border-radius: var(--border-radius);
            padding: 40px;
            box-shadow: var(--box-shadow);
        }
        .comparison-table table {
            width: 100%;
            text-align: left;
        }
        .comparison-table th {
            font-weight: 700;
            padding-bottom: 20px;
            font-size: 1.1rem;
        }
        .comparison-table td {
            padding: 12px 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .comparison-table i.fa-check { color: var(--accent-color); }
        .comparison-table i.fa-times { color: var(--danger-color); }

        /* FAQ */
        .faq-section {
            background: var(--bg-light);
        }
        .accordion-item {
            border: none;
            margin-bottom: 16px;
            background: white;
            border-radius: var(--border-radius-sm) !important;
            box-shadow: var(--box-shadow);
        }
        .accordion-button {
            font-weight: 600;
            color: var(--text-dark);
            background: white;
            border-radius: var(--border-radius-sm) !important;
            box-shadow: none !important;
        }
        .accordion-button:not(.collapsed) {
            background: white;
            color: var(--primary-color);
        }
        .accordion-button:focus {
            box-shadow: none;
        }

        /* Service description cards */
        .service-card {
            background: white;
            border-radius: var(--border-radius);
            padding: 30px;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow-lg);
        }
        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 28px;
        }
        .service-icon.whatsapp {
            background: linear-gradient(135deg, #25d366, #128C7E);
        }
        .service-icon.crm {
            background: linear-gradient(135deg, #ff6b6b, #ee5253);
        }
        .service-icon.integration {
            background: linear-gradient(135deg, #1e90ff, #0c7cd5);
        }

        /* Mobile adjustments */
        @media (max-width: 992px) {
            .hero-title { font-size: 2.8rem; }
            .section-title h2 { font-size: 2.4rem; }
            .pricing-card.popular { transform: scale(1); }
            .pricing-card.popular:hover { transform: translateY(-10px); }
        }
        @media (max-width: 768px) {
            .hero-section { padding: 150px 0 80px; }
            .hero-title { font-size: 2.3rem; }
            .hero-subtitle { font-size: 1.1rem; }
            .section-padding { padding: 80px 0; }
            .section-title h2 { font-size: 2rem; }
            .dashboard-mockup { transform: perspective(1000px) rotateY(0deg); margin-top: 40px; }
            .testimonial-slide { padding: 40px 20px; }
            
        }
        @media (max-width: 576px) {
            .hero-title { font-size: 2rem; }
            .feature-card, .platform-card, .pricing-card, .service-card { padding: 30px 20px; }
            .trust-badges { flex-direction: column; }
            .company-logos { gap: 20px; }
            .company-logos img { height: 24px; }
        }
        /* Touch targets */
        .nav-link, .btn, .dropdown-item, .social-link { min-height: 44px; display: inline-flex; align-items: center; }
        /* ===== MINIMAL FADE FIXES ===== */

/* Only fix elements that are too faded */
.hero-subtitle {
    opacity: 1 !important;  /* Change from 0.9 to 1 */
}

.hero-stat p {
    opacity: 1 !important;  /* Change from 0.8 to 1 */
}

.testimonial-text {
    opacity: 1 !important;  /* Change from 0.9 to 1 */
}

.footer-about {
    opacity: 1 !important;  /* Change from 0.8 to 1 */
}

.copyright {
    opacity: 1 !important;  /* Change from 0.7 to 1 */
}

.company-logos {
    opacity: 1 !important;  /* Change from 0.7 to 1 */
}

.company-logos img {
    filter: none !important;  /* Remove filter */
    -webkit-filter: none !important;
}

