
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
            position: relative;
        }

        /* ============================================
           ANIMATED BACKGROUND
        ============================================ */
        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .blob {
            position: absolute;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, #3B444B 0%, transparent 70%);
            filter: blur(120px);
            opacity: 0.4;
            animation: morph 25s ease-in-out infinite;
        }

        .blob:nth-child(1) {
            top: -10%;
            left: -10%;
            animation-delay: 0s;
        }

        .blob:nth-child(2) {
            top: 50%;
            right: -10%;
            animation-delay: 8s;
        }

        .blob:nth-child(3) {
            bottom: -10%;
            left: 40%;
            animation-delay: 16s;
        }

        @keyframes morph {
            0%, 100% {
                border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
                transform: translate(0, 0) rotate(0deg) scale(1);
            }
            25% {
                border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
                transform: translate(80px, 80px) rotate(90deg) scale(1.1);
            }
            50% {
                border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
                transform: translate(-80px, 120px) rotate(180deg) scale(0.9);
            }
            75% {
                border-radius: 60% 40% 60% 40% / 70% 30% 50% 60%;
                transform: translate(120px, -80px) rotate(270deg) scale(1.05);
            }
        }

        /* ============================================
           NAVIGATION
        ============================================ */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            padding: 1.5rem 4rem;
            backdrop-filter: blur(20px);
            background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.8) 100%);
            border-bottom: 1px solid rgba(59, 68, 75, 0.2);
            transition: all 0.3s ease;
        }

        /* .nav.scrolled {
            padding: 1rem 4rem;
            background: rgba(0,0,0,0.98);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        } */

        .nav-content {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2rem;
            letter-spacing: 3px;
            color: #f7f4ef;
            transition: all 0.3s ease;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-link {
            color: #f7f4ef;;
            text-decoration: none;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #3B444B;
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: #3B444B;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .btn {
            padding: 0.9rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            border: none;
            cursor: pointer;
            font-size: 0.95rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, #3B444B, #4a5562);
            color: white;
            box-shadow: 0 5px 20px rgba(59, 68, 75, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(59, 68, 75, 0.5);
        }

        /* ============================================
           HERO SECTION WITH VIDEO
        ============================================ */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10rem 2rem 6rem;
            z-index: 1;
            overflow: hidden;
        }

        .hero-content {
            max-width: 1200px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1.75rem;
            background: rgba(59, 68, 75, 0.2);
            border: 1px solid rgba(59, 68, 75, 0.4);
            border-radius: 50px;
            font-size: 0.85rem;
            margin-bottom: 2.5rem;
            animation: fadeInUp 0.6s ease, pulse 2s ease-in-out infinite;
            letter-spacing: 0.5px;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .hero-badge i {
            color: #3B444B;
        }

        .hero-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(3.5rem, 10vw, 8rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 2rem;
            color: #f7f4ef;
            animation: fadeInUp 0.8s ease;
            letter-spacing: 8px;
        }

        .hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.4rem);
            color: #f7f4ef;;
            margin-bottom: 3.5rem;
            max-width: 750px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 1s ease;
            line-height: 1.8;
            letter-spacing: 0.5px;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 1.2s ease;
            margin-bottom: 4rem;
        }

        .btn-large {
            padding: 1.5rem 3rem;
            font-size: 1.1rem;
        }

        .btn-outline {
            background: rgba(59, 68, 75, 0.15);
            border: 2px solid rgba(59, 68, 75, 0.4);
            color: #fff;
            backdrop-filter: blur(10px);
        }

        .btn-outline:hover {
            border-color: #3B444B;
            background: rgba(59, 68, 75, 0.3);
            transform: translateY(-2px);
        }

        /* Video Showcase */
        .video-showcase {
            margin-top: 5rem;
            animation: fadeInUp 1.4s ease;
        }

        .video-container {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
            border: 1px solid rgba(59, 68, 75, 0.3);
            background: rgba(13, 13, 18, 0.6);
            backdrop-filter: blur(20px);
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
        }

        .video-wrapper iframe,
        .video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ============================================
           HOW IT WORKS SECTION
        ============================================ */
        .how-it-works {
            position: relative;
            z-index: 1;
            padding: 8rem 2rem;
            background: rgba(13, 13, 18, 0.4);
            backdrop-filter: blur(10px);
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(59, 68, 75, 0.2);
            border: 1px solid rgba(59, 68, 75, 0.3);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            color: #3B444B;
        }

        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            color: #f7f4ef;
            letter-spacing: 4px;
            margin-bottom: 1.5rem;
        }

        .section-subtitle {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.2rem;
            letter-spacing: 0.5px;
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.8;
        }

        .steps-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
        }

        .step-card {
            position: relative;
            text-align: center;
            padding: 2rem;
        }

        .step-number {
            width: 80px;
            height: 80px;
            margin: 0 auto 2rem;
            border-radius: 50%;
            background: #4f1330;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            letter-spacing: 2px;
         
            position: relative;
            transition: all 0.3s ease;
        }

        .step-card:hover .step-number {
            transform: scale(1.1) rotate(5deg);
        }

      

        .step-card:last-child .step-number::after {
            display: none;
        }

        .step-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #f7f4ef;
            letter-spacing: 2px;
        }

        .step-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            letter-spacing: 0.3px;
        }

        /* ============================================
           FEATURES SECTION (Updated)
        ============================================ */
        .features {
            position: relative;
            z-index: 1;
            padding: 8rem 2rem;
        }

        .features-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .feature-card {
            background: rgba(13, 13, 18, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(59, 68, 75, 0.2);
            border-radius: 30px;
            padding: 2.5rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        /* .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #3B444B, transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
        } */

        .feature-card:hover {
            transform: translateY(-10px);
            border-color: #3B444B;
         
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: #4f1330;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            margin-bottom: 2rem;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(59, 68, 75, 0.3);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: #3B444B;
            letter-spacing: 2px;
        }

        .feature-description {
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
            letter-spacing: 0.3px;
        }

        /* ============================================
           DEMO VIDEO SECTION
        ============================================ */
        .demo-section {
            position: relative;
            z-index: 1;
            padding: 8rem 2rem;
            background: rgba(13, 13, 18, 0.4);
            backdrop-filter: blur(10px);
        }

        .demo-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .demo-text {
            padding-right: 2rem;
        }

        .demo-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: #f7f4ef;
            letter-spacing: 4px;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .demo-description {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .demo-features {
            list-style: none;
            margin-bottom: 3rem;
        }

        .demo-features li {
            padding: 1rem 0;
            display: flex;
            align-items: center;
            gap: 1rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.05rem;
        }

        .demo-features li i {
            color: #4f1330;
            font-size: 1.3rem;
            width: 30px;
        }

        .demo-video {
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(59, 68, 75, 0.3);
        }

        /* ============================================
           TESTIMONIALS
        ============================================ */
        .testimonials {
            position: relative;
            z-index: 1;
            padding: 8rem 2rem;
        }

        .testimonials-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .testimonial-card {
            background: rgba(13, 13, 18, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(59, 68, 75, 0.2);
            border-radius: 30px;
            padding: 3rem;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: #3B444B;
            box-shadow: 0 20px 50px rgba(59, 68, 75, 0.3);
        }

        .testimonial-stars {
            color: #3B444B;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
        }

        .testimonial-text {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-size: 1.05rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3B444B, #4a5562);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
        }

        .author-info h4 {
            color: #3B444B;
            font-size: 1.1rem;
            margin-bottom: 0.3rem;
        }

        .author-info p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        /* ============================================
           STATS SECTION
        ============================================ */
        .stats-section {
            position: relative;
            z-index: 1;
            padding: 6rem 2rem;
            background: rgba(13, 13, 18, 0.4);
            backdrop-filter: blur(10px);
        }

        .stats-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 4rem;
        }

        .stat-item {
            text-align: center;
            position: relative;
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, transparent, #3B444B, transparent);
        }

        .stat-value {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 4.5rem;
            background: linear-gradient(135deg, #3B444B, #4a5562);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 3px;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .stat-label {
            color: rgba(255, 255, 255, 0.7);
            font-size: 1.1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-weight: 600;
        }

        /* ============================================
           CTA SECTION
        ============================================ */
        .cta-section {
            position: relative;
            z-index: 1;
            padding: 8rem 2rem;
            text-align: center;
        }

        .cta-card {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(13, 13, 18, 0.8);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(59, 68, 75, 0.3);
            border-radius: 40px;
            padding: 5rem 3rem;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
        }

        .cta-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            color: #f7f4ef;
            letter-spacing: 4px;
            margin-bottom: 1.5rem;
        }

        .cta-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 3rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* ============================================
           FAQ SECTION
        ============================================ */
        .faq-section {
            position: relative;
            z-index: 1;
            padding: 8rem 2rem;
            background: rgba(13, 13, 18, 0.4);
            backdrop-filter: blur(10px);
        }

        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(13, 13, 18, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(59, 68, 75, 0.2);
            border-radius: 20px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: #3B444B;
        }

        .faq-question {
            padding: 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 2rem;
        }

        .faq-question h3 {
            color: #f7f4ef;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .faq-question i {
            color: #f7f4ef;
            font-size: 1.5rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 2rem 2rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.8;
        }

        /* ============================================
           FOOTER
        ============================================ */
        .footer {
            position: relative;
            z-index: 1;
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(59, 68, 75, 0.2);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .footer-logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 2.5rem;
            letter-spacing: 3px;
            color: #f7f4ef;
            margin-bottom: 1rem;
        }

        .footer-text {
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 2rem;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-link:hover {
            color: #3B444B;
        }

        .footer-social {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(59, 68, 75, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #3B444B;
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #3B444B;
            color: white;
            transform: translateY(-3px);
        }

        .footer-copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.9rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(59, 68, 75, 0.2);
        }

        /* ============================================
           RESPONSIVE
        ============================================ */
        @media (max-width: 1024px) {
            .demo-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .demo-text {
                padding-right: 0;
                text-align: center;
            }

            .demo-features li {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .nav {
                padding: 1.5rem 2rem;
            }
            
            .logo {
                font-size: 1.5rem;
            }
            
            .nav-links {
                gap: 1rem;
            }
            
            .nav-link {
                display: none;
            }
            
            .hero {
                padding: 8rem 1.5rem 4rem;
            }
            
            .hero-title {
                letter-spacing: 4px;
            }
            
            .hero-cta {
                flex-direction: column;
                gap: 1rem;
            }
            
            .btn-large {
                width: 100%;
            }

            .video-showcase {
                margin-top: 3rem;
            }

            .how-it-works,
            .features,
            .demo-section,
            .testimonials {
                padding: 4rem 1.5rem;
            }

            .section-header {
                margin-bottom: 3rem;
            }

            .steps-container,
            .features-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .step-number::after {
                display: none;
            }

            .stats-section {
                padding: 4rem 1.5rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .stat-value {
                font-size: 3rem;
            }

            .cta-section {
                padding: 4rem 1.5rem;
            }

            .cta-card {
                padding: 3rem 2rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .faq-section {
                padding: 4rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .nav {
                padding: 1rem 1.5rem;
            }

            .hero {
                padding: 6rem 1.5rem 3rem;
            }

            .hero-badge {
                font-size: 0.75rem;
                padding: 0.6rem 1.25rem;
            }

            .feature-card,
            .testimonial-card {
                padding: 2rem;
            }

            .feature-icon,
            .step-number {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .stat-value {
                font-size: 2.5rem;
            }

            .cta-card {
                padding: 2.5rem 1.5rem;
            }
        }

        /* ============================================
           SCROLL ANIMATIONS
        ============================================ */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ============================================
   PRICING SECTION
============================================ */
.pricing-section {
    position: relative;
    z-index: 1;
    padding: 8rem 2rem;
    background: rgba(13, 13, 18, 0.4);
    backdrop-filter: blur(10px);
}

.pricing-grid {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    align-items: start;
}

.pricing-card {
    background: rgba(13, 13, 18, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 68, 75, 0.3);
    border-radius: 40px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #3B444B, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 68, 75, 0.6);
    box-shadow: 0 30px 80px rgba(59, 68, 75, 0.4);
}

.pricing-card:hover::before {
    opacity: 1;
}







.pricing-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(59, 68, 75, 0.2);
}

.pricing-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    background: linear-gradient(135deg, #3B444B, #4a5562);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(59, 68, 75, 0.4);
    transition: all 0.3s ease;
}

.pricing-card.premium .pricing-icon {
    background: oklch(79.5% .184 86.047);
    color: #000;
    
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.1) rotate(5deg);
}

.pricing-plan-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 3px;
    color: #3B444B;
    margin-bottom: 1rem;
}

.pricing-card.premium .pricing-plan-name {
    background: oklch(79.5% .184 86.047);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    color: #3B444B;
    letter-spacing: 2px;
    line-height: 1;
}

.pricing-card.premium .price-amount {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.pricing-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid rgba(59, 68, 75, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: #3B444B;
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.pricing-card.premium .pricing-features li i {
    color: #FFD700;
}

.pricing-features li.disabled {
    color: rgba(255, 255, 255, 0.3);
}

.pricing-features li.disabled i {
    color: rgba(255, 255, 255, 0.2);
}

.pricing-card .btn {
    width: 100%;
    margin-top: 1rem;
}

.pricing-guarantee {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(59, 68, 75, 0.2);
    color: #f7f4ef;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.pricing-guarantee i {
    color: #3B444B;
}

/* Pricing FAQ */
.pricing-faq {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-faq-item {
    background: rgba(13, 13, 18, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 68, 75, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.pricing-faq-item i {
    color: #3B444B;
    font-size: 2rem;
    flex-shrink: 0;
}

.pricing-faq-item strong {
    display: block;
    color: #f7f4ef;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.pricing-faq-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-section {
        padding: 4rem 1.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-card {
        padding: 2.5rem 2rem;
    }

    .pricing-card.premium {
        transform: scale(1);
    }

    .pricing-card.premium:hover {
        transform: translateY(-10px) scale(1);
    }

    .pricing-badge {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }

    .price-amount {
        font-size: 3.5rem;
    }

    .pricing-faq {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .price-amount {
        font-size: 3rem;
    }

    .pricing-features li {
        font-size: 0.9rem;
    }
}


/* ============================================
   COOKIE CONSENT
============================================ */
.cookie-consent {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    max-width: 500px;
    width: calc(100% - 4rem);
    background: linear-gradient(135deg, rgba(13, 13, 18, 0.98), rgba(10, 10, 10, 0.98));
    backdrop-filter: blur(30px);
    border: 1px solid rgba(59, 68, 75, 0.4);
    border-radius: 25px;
    padding: 2rem;
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: slideUpCookie 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: bottom right;
}

.cookie-consent.hidden {
    animation: slideDownCookie 0.4s ease forwards;
}

@keyframes slideUpCookie {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideDownCookie {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(100px) scale(0.8);
        pointer-events: none;
    }
}

/* Cookie Header */
.cookie-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3B444B, #4a5562);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.cookie-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #3B444B;
    margin: 0;
}

/* Cookie Description */
.cookie-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    letter-spacing: 0.3px;
}

/* Cookie Settings */
.cookie-settings {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(59, 68, 75, 0.1);
    border: 1px solid rgba(59, 68, 75, 0.2);
    border-radius: 15px;
}

.cookie-category {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(59, 68, 75, 0.2);
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.cookie-category-info {
    display: flex;
    align-items: start;
    gap: 1rem;
    flex: 1;
}

.cookie-category-info i {
    font-size: 1.25rem;
    color: #3B444B;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.cookie-category-info strong {
    display: block;
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.cookie-category-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.3px;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
    cursor: pointer;
}

.cookie-toggle.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(59, 68, 75, 0.3);
    border: 2px solid rgba(59, 68, 75, 0.4);
    transition: all 0.3s ease;
    border-radius: 34px;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.cookie-toggle input:checked + .toggle-slider {
    background: linear-gradient(135deg, #3B444B, #4a5562);
    border-color: #3B444B;
}

.cookie-toggle input:checked + .toggle-slider:before {
    transform: translateX(24px);
}

/* Cookie Actions */
.cookie-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.btn-cookie {
    flex: 1;
    padding: 0.9rem 1.25rem;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-customize {
    background: rgba(59, 68, 75, 0.2);
    border: 2px solid rgba(59, 68, 75, 0.4);
    color: #fff;
}

.btn-customize:hover {
    background: rgba(59, 68, 75, 0.3);
    border-color: #3B444B;
    transform: translateY(-2px);
}

.btn-reject {
    background: rgba(244, 67, 54, 0.15);
    border: 2px solid rgba(244, 67, 54, 0.3);
    color: #F44336;
}

.btn-reject:hover {
    background: rgba(244, 67, 54, 0.25);
    border-color: #F44336;
    transform: translateY(-2px);
}

.btn-accept {
    background: linear-gradient(135deg, #3B444B, #4a5562);
    color: white;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(59, 68, 75, 0.4);
}

/* Cookie Footer */
.cookie-footer {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(59, 68, 75, 0.2);
    justify-content: center;
}

.cookie-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #3B444B;
}

/* Cookie Settings Button (Floating) */
.cookie-settings-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3B444B, #4a5562);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(59, 68, 75, 0.4);
    transition: all 0.3s ease;
    z-index: 9999;
    animation: fadeIn 0.5s ease;
}

.cookie-settings-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 15px 40px rgba(59, 68, 75, 0.6);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-consent {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        width: 100%;
        border-radius: 25px 25px 0 0;
        margin: 0;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .btn-cookie {
        width: 100%;
    }

    .cookie-settings-btn {
        bottom: 1rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        padding: 1.5rem;
    }

    .cookie-title {
        font-size: 1.25rem;
    }

    .cookie-description {
        font-size: 0.85rem;
    }

    .cookie-footer {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
}


/* ============================================
   PWA INSTALL FLOATING BUTTON
============================================ */
.pwa-install-floating {
    position: fixed;
    bottom: 6rem;
    right: 2rem;
    background: linear-gradient(135deg, rgba(13, 13, 18, 0.98), rgba(10, 10, 10, 0.98));
    backdrop-filter: blur(30px);
    border: 1px solid rgba(59, 68, 75, 0.4);
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    max-width: 300px;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: slideInRight 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transition: all 0.3s ease;
}

.pwa-install-floating:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(400px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pwa-install-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pwa-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3B444B, #4a5562);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.pwa-text {
    flex: 1;
}

.pwa-text strong {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    color: #3B444B;
    margin-bottom: 0.25rem;
}

.pwa-text span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.pwa-close-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 50%;
    color: #F44336;
    font-size: 0.7rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pwa-close-btn:hover {
    background: rgba(244, 67, 54, 0.25);
    transform: scale(1.1);
}


/* Manual Instructions Modal */
.instructions-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.instruction-item {
    display: flex;
    gap: 1.25rem;
    align-items: start;
    padding: 1.25rem;
    background: rgba(59, 68, 75, 0.15);
    border: 1px solid rgba(59, 68, 75, 0.3);
    border-radius: 15px;
}

.instruction-item i {
    font-size: 2rem;
    color: #3B444B;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.instruction-item strong {
    display: block;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1.5px;
}

.instruction-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.instructions-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(244, 67, 54, 0.15);
    border: 1px solid rgba(244, 67, 54, 0.3);
    border-radius: 50%;
    color: #F44336;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.instructions-close:hover {
    background: rgba(244, 67, 54, 0.25);
    transform: rotate(90deg);
}

.pwa-manual-instructions h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    color: #3B444B;
    margin-bottom: 1rem;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    to {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }
}

