 /* Product Hero */
        .product-hero {
            min-height: 70vh;
            display: flex;
            align-items: center;
            padding-top: 120px;
            background: linear-gradient(135deg, rgba(0, 200, 150, 0.08) 0%, rgba(45, 55, 72, 0.08) 100%);
        }
        .products-hero{
            height: 10h;
            padding-top: 4%;
        }

        .product-hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .product-hero-content {
            flex: 1;
        }

        .product-hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .product-hero p {
            font-size: 1.2rem;
            color: var(--dark);
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .product-hero-image {
            flex: 1;
            border-radius: var(--card-radius);
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }

        .product-hero-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Product Features */
        .product-features {
            padding: var(--section-padding);
            padding-top: 0%;
            
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        /*.feature-card {
            background: white;
            border-radius: var(--card-radius);
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.03);
        }*/

        .feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;     /* horizontal centering */
  justify-content: center; /* vertical centering if height is set */
  text-align: center;
  padding: 15px;
  height: 100%; /* or a fixed height like 300px if needed */
}

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 200, 150, 0.1);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        /* Product Modules */
        .product-modules {
            padding: var(--section-padding);
            background: linear-gradient(to bottom, rgba(0, 200, 150, 0.03) 0%, transparent 100%);
        }

        .modules-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .module-card {
            background: white;
            border-radius: var(--card-radius);
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .module-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 200, 150, 0.1);
        }

        .module-image {
            height: 200px;
            overflow: hidden;
        }

        .module-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .module-card:hover .module-image img {
            transform: scale(1.05);
        }

        .module-content {
            padding: 2rem;
        }

        .module-content h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary);
        }

        .module-content ul {
            list-style: none;
            margin-top: 1.5rem;
        }

        .module-content li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .module-content li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.7rem;
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
        }

        /* Product Comparison */
        .product-comparison {
            padding: var(--section-padding);
            background-color: var(--secondary);
            color: white;
        }

        .product-comparison .section-title h2,
        .product-comparison .section-title p {
            color: white;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 3rem;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 1.5rem;
            text-align: left;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .comparison-table th {
            font-weight: 600;
            background: rgba(255, 255, 255, 0.05);
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table .feature-name {
            font-weight: 500;
            width: 30%;
        }

        .comparison-table .check {
            color: var(--primary);
            font-weight: bold;
        }

        /* Pricing Section */
        .pricing {
            padding: var(--section-padding);
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .pricing-card {
            background: white;
            border-radius: var(--card-radius);
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.03);
            position: relative;
            overflow: hidden;
        }

        .pricing-card.popular {
            border: 2px solid var(--primary);
        }

        .pricing-card.popular::before {
            content: 'Popular';
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--primary);
            color: white;
            padding: 0.2rem 2rem;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 600;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .price span {
            font-size: 1rem;
            font-weight: 400;
            opacity: 0.8;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .pricing-features li {
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .pricing-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--primary);
        }

        /* Demo Section */
        .demo {
            padding: var(--section-padding);
            background: linear-gradient(135deg, rgba(0, 200, 150, 0.05) 0%, rgba(45, 55, 72, 0.05) 100%);
            text-align: center;
        }

        .demo-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .demo-video {
            border-radius: var(--card-radius);
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            margin: 3rem 0;
            background: #000;
        }

        .demo-video video {
            width: 100%;
            display: block;
        }

        /* FAQ Section */
        .faq {
            padding: var(--section-padding);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border-radius: var(--card-radius);
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .faq-question {
            background: white;
            padding: 1.5rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }

        .faq-question:hover {
            background: rgba(0, 200, 150, 0.05);
        }

        .faq-question i {
            transition: var(--transition);
        }

        .faq-answer {
            background: white;
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item.active .faq-question {
            background: rgba(0, 200, 150, 0.05);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.5rem;
            max-height: 500px;
        }

        /* CTA Section */
        .product-cta {
            padding: var(--section-padding);
            text-align: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            color: white;
        }

        .product-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .product-cta p {
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 6rem 0 3rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .footer-about p {
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .footer-social-links {
            display: flex;
            gap: 1rem;
        }

        .footer-social-links a {
            color: white;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .footer-social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-links h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.8rem;
        }

        .footer-links h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 1rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
            padding-left: 8px;
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .footer-contact i {
            color: var(--primary);
            min-width: 25px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.6;
            font-size: 0.9rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 2rem;
                transition: var(--transition);
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .product-hero-container {
                flex-direction: column;
                text-align: center;
                gap: 3rem;
            }
            
            .comparison-table .feature-name {
                width: 40%;
            }
        }

        @media (max-width: 768px) {
            :root {
                --section-padding: 80px 5%;
            }
            
            .product-hero h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2,
            .product-cta h2 {
                font-size: 2rem;
            }
            
            .comparison-table {
                display: block;
                overflow-x: auto;
            }
        }

        @media (max-width: 576px) {
            .product-hero h1 {
                font-size: 2.2rem;
            }
            
            .pricing-cards {
                grid-template-columns: 1fr;
            }
        }