
        /* ===== LIGHT BACKGROUND THEME with Dark Purple & Gold Accents ===== */
        :root {
            --primary-purple: #5B3A8C;
            --primary-purple-dark: #3D2B5A;
            --primary-purple-light: #8B6BBF;
            --primary-gold: #D4AF37;
            --primary-gold-dark: #B8922A;
            --accent-sky: #6BB5D9;
            --accent-pink: #E8A2C6;
            --bg-light: #FDFCF8;
            --bg-white: #FFFFFF;
            --card-bg: #FFFFFF;
            --text-dark: #2D2A3A;
            --text-muted: #6B6A7A;
            --border-light: rgba(91, 58, 140, 0.12);
            --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-light);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        .bg-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" opacity="0.02"><path fill="%235B3A8C" d="M20,20 L30,10 L40,20 L30,30 Z M70,70 L80,60 L90,70 L80,80 Z M45,45 L55,35 L65,45 L55,55 Z"/><circle cx="85" cy="20" r="4"/><circle cx="15" cy="80" r="4"/></svg>');
            background-repeat: repeat;
            pointer-events: none;
            z-index: 0;
        }

        /* Navbar - Light */
        .navbar-elegant {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid var(--border-light);
            padding: 0.5rem 1rem;
        }

        /* Logo shifted slightly to the right */
        .navbar-brand {
            margin-left: 1.5rem;
        }

        @media (max-width: 768px) {
            .navbar-brand {
                margin-left: 0.5rem;
            }
        }

        .nav-link-elegant {
            color: var(--text-dark);
            font-weight: 500;
            margin: 0 0.5rem;
            transition: all 0.3s;
            font-size: 0.95rem;
        }

        .nav-link-elegant:hover,
        .nav-link-elegant.active {
            color: var(--primary-purple);
            border-bottom: 2px solid var(--primary-gold);
        }

        .btn-primary-elegant {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 40px;
            color: white;
            font-weight: 600;
            transition: 0.2s;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 10px rgba(91, 58, 140, 0.2);
        }

        .btn-primary-elegant:hover {
            background: linear-gradient(135deg, #6B4A9C, #4A2E6E);
            transform: translateY(-2px);
            color: white;
        }

        .btn-outline-elegant {
            background: transparent;
            border: 2px solid var(--primary-purple);
            padding: 0.5rem 1.5rem;
            border-radius: 40px;
            color: var(--primary-purple);
            font-weight: 600;
            text-decoration: none;
            transition: 0.2s;
        }

        .btn-outline-elegant:hover {
            background: var(--primary-purple);
            color: white;
        }

        /* ENLARGED HERO SECTION with Slider - Light Overlay */
        .hero-elegant {
            position: relative;
            background: linear-gradient(135deg, #F5F0E8 0%, #EDE6F5 100%);
            overflow: hidden;
            padding: 5rem 0 6rem;
            min-height: 85vh;
            display: flex;
            align-items: center;
        }

        .hero-slider {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1.5s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(253, 252, 248, 0.85), rgba(237, 230, 245, 0.8));
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: var(--text-dark);
            max-width: 900px;
            margin: 0 auto;
        }

        .main-title-elegant {
            font-family: 'Playfair Display', serif;
            font-size: 4rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-light), var(--primary-gold));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: none;
            margin-bottom: 1rem;
        }

        .title-sub-elegant {
            font-size: 1.6rem;
            letter-spacing: 2px;
            margin: 0.5rem 0;
            font-weight: 500;
            color: var(--primary-purple);
        }

        .hero-desc-elegant {
            max-width: 700px;
            margin: 1.5rem auto;
            font-weight: 400;
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--text-muted);
        }

        @media (max-width: 768px) {
            .main-title-elegant { font-size: 2.3rem; }
            .title-sub-elegant { font-size: 1.2rem; }
            .hero-elegant { min-height: 70vh; padding: 3rem 0 4rem; }
        }

        /* Stats Bar - Light */
        .stats-elegant {
            background: white;
            border-radius: 60px;
            box-shadow: var(--shadow-sm);
            padding: 1rem;
            margin-top: -2rem;
            position: relative;
            z-index: 5;
            border: 1px solid var(--border-light);
        }

        .stat-number-elegant {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary-purple);
        }

        /* Glass Card - Light */
        .glass-card-elegant {
            background: white;
            border-radius: 2rem;
            padding: 1.8rem;
            border: 1px solid var(--border-light);
            box-shadow: var(--shadow-sm);
        }

        /* ENLARGED & BEAUTIFUL APPS GRID - 1 ROW 4 ELEMENTS */
        .apps-section {
            padding: 4rem 0;
            background: linear-gradient(180deg, #FDFCF8 0%, #F8F5FF 100%);
        }

        .apps-grid-elegant {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .app-card-elegant {
            background: white;
            border-radius: 1.8rem;
            padding: 1.8rem 1.2rem;
            text-align: center;
            transition: all 0.35s ease;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            position: relative;
            overflow: hidden;
        }

        .app-card-elegant::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-purple), var(--primary-gold), var(--accent-pink));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

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

        .app-card-elegant:hover {
            transform: translateY(-8px);
            border-color: var(--primary-gold);
            box-shadow: var(--shadow-md);
        }

        .app-icon-elegant {
            width: 120px;
            height: 120px;
            object-fit: contain;
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }

        .app-card-elegant:hover .app-icon-elegant {
            transform: scale(1.05);
        }

        .app-card-elegant h6 {
            font-size: 1.1rem;
            font-weight: 700;
            margin: 0.8rem 0 0.5rem;
            color: var(--primary-purple);
        }

        .app-buttons {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: 0.8rem;
        }

        .btn-app-elegant {
            display: inline-block;
            font-size: 0.7rem;
            background: #F3F0F9;
            padding: 0.4rem 0.8rem;
            border-radius: 25px;
            text-decoration: none;
            color: var(--primary-purple);
            font-weight: 500;
            transition: all 0.2s;
        }

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

        @media (max-width: 992px) {
            .apps-grid-elegant {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .apps-grid-elegant {
                grid-template-columns: 1fr;
            }
        }

        /* PROFESSIONAL CUSTOMER PLAN SECTION */
        .pricing-section {
            background: linear-gradient(135deg, #F8F5FF 0%, #FFFFFF 100%);
            padding: 4rem 0;
            position: relative;
        }

        .pricing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
        }

        .pricing-grid-elegant, .pricing-grid-elegant-second {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .pricing-card-professional {
            background: white;
            border-radius: 32px;
            padding: 2rem 1.8rem;
            width: 270px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            position: relative;
            overflow: hidden;
        }

        .pricing-card-professional::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-purple), var(--primary-gold), var(--accent-pink));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .pricing-card-professional:hover::after {
            transform: scaleX(1);
        }

        .pricing-card-professional:hover {
            transform: translateY(-10px);
            border-color: var(--primary-gold);
            box-shadow: var(--shadow-lg);
        }

        .pricing-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
            color: var(--primary-purple-dark);
            font-size: 0.7rem;
            font-weight: 800;
            padding: 0.25rem 0.8rem;
            border-radius: 30px;
        }

        .price-amount {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-purple);
            line-height: 1;
        }

        .price-period {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        .price-save {
            background: rgba(212, 175, 55, 0.15);
            display: inline-block;
            padding: 0.2rem 0.8rem;
            border-radius: 30px;
            font-size: 0.7rem;
            font-weight: 600;
            color: var(--primary-gold-dark);
            margin-top: 0.5rem;
        }

        .price-features-elegant {
            list-style: none;
            padding: 0;
            margin: 1.8rem 0;
            text-align: left;
        }

        .price-features-elegant li {
            margin: 0.8rem 0;
            font-size: 0.85rem;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .price-features-elegant i {
            color: var(--primary-gold);
            width: 20px;
        }

        .btn-price-professional {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-purple-dark));
            color: white;
            padding: 0.75rem 1.8rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            display: inline-block;
            transition: all 0.3s ease;
            width: 100%;
            font-size: 0.9rem;
        }

        .btn-price-professional:hover {
            background: linear-gradient(135deg, #6B4A9C, #4A2E6E);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(91, 58, 140, 0.3);
            color: white;
        }

        .pricing-card-professional.highlight-card {
            border: 2px solid var(--primary-gold);
            box-shadow: var(--shadow-md);
        }

        /* ENLARGED FEATURE ELEMENTS */
        .features-section {
            padding: 5rem 0;
            background: linear-gradient(180deg, #FFFFFF 0%, #FDFCF8 100%);
        }

        .feature-grid-elegant {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 3rem;
            margin: 3rem 0;
        }

        .feature-item-elegant {
            background: white;
            border-radius: 2rem;
            padding: 2rem 2rem;
            text-align: center;
            transition: all 0.35s ease;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            width: 180px;
            cursor: pointer;
        }

        .feature-item-elegant:hover {
            transform: translateY(-8px);
            border-color: var(--primary-gold);
            box-shadow: var(--shadow-md);
        }

        .feature-item-elegant img {
            width: 85px;
            height: 85px;
            object-fit: contain;
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }

        .feature-item-elegant:hover img {
            transform: scale(1.08);
        }

        .feature-item-elegant div {
            font-weight: 700;
            font-size: 1.1rem;
            color: var(--primary-purple);
            margin-top: 0.5rem;
        }

        @media (max-width: 768px) {
            .feature-item-elegant {
                width: 150px;
                padding: 1.5rem;
            }
            .feature-item-elegant img {
                width: 65px;
                height: 65px;
            }
        }

        /* ENLARGED PROFESSIONAL FOOTER */
        .footer-elegant {
            background: #1A1530;
            color: #D1CCE6;
            padding: 4rem 0 2rem;
            margin-top: 3rem;
            position: relative;
        }

        .footer-elegant::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-purple), var(--primary-gold), var(--accent-pink));
        }

        .footer-heading-elegant {
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

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

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

        .footer-links-elegant li a {
            color: #C4BEDA;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links-elegant li a:hover {
            color: var(--primary-gold);
            transform: translateX(5px);
        }

        .footer-links-elegant li a i {
            font-size: 0.75rem;
            color: var(--primary-gold);
        }

        .footer-copyright {
            text-align: center;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            padding-top: 2rem;
            margin-top: 2.5rem;
            font-size: 0.85rem;
            color: #A89FC4;
        }

        .footer-copyright a {
            color: var(--primary-gold);
            text-decoration: none;
            font-weight: 600;
        }

        .footer-copyright a:hover {
            text-decoration: underline;
        }

        /* FAQ - Light */
        .faq-section-new {
            padding: 3rem 0;
            background: #FDFCF8;
        }

        .faq-container-new {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item-new {
            background: white;
            border-radius: 24px;
            margin-bottom: 1rem;
            padding: 0 1.2rem;
            border: 1px solid var(--border-light);
        }

        .faq-question-new {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 0;
            cursor: pointer;
            font-weight: 600;
            color: var(--primary-purple);
        }

        .faq-answer-new {
            max-height: 0;
            overflow: hidden;
            transition: 0.3s;
            padding: 0;
            color: var(--text-muted);
        }

        .faq-item-new.active .faq-answer-new {
            max-height: 200px;
            padding-bottom: 1rem;
        }

        .whatsapp-float-elegant {
            position: fixed;
            bottom: 25px;
            right: 25px;
            z-index: 100;
        }

        .back-to-top-elegant {
            position: fixed;
            bottom: 25px;
            left: 25px;
            background: var(--primary-purple);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            z-index: 100;
            transition: 0.2s;
        }

        .back-to-top-elegant:hover {
            background: var(--primary-gold);
            color: var(--primary-purple-dark);
        }

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

        .section-header-elegant h2 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--primary-purple);
            font-size: 2.2rem;
        }

        .section-underline-elegant {
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-gold), var(--primary-purple-light));
            margin: 0.8rem auto;
        }

        .text-muted {
            color: var(--text-muted) !important;
        }

        @media (max-width: 991px) {

  .navbar-collapse {
    background: white; /* optional but useful */
    padding: 10px;
  }

  .navbar-nav {
    display: flex !important;   /* ⭐ MOST IMPORTANT FIX */
    flex-direction: column !important;
    width: 100%;
  }

  .navbar-nav .nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
}
