/* Reset and Base Styles */
        *, *::before, *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            height: 100%;
            -webkit-text-size-adjust: 100%;
            -ms-text-size-adjust: 100%;
        }

        body {
            color: #2c2c2c;
            background: linear-gradient(135deg, #fefefe 0%, #f9f7f5 100%) url("https://assets-global.website-files.com/686840ce3b72adb273720224/68684fb55d2ff214715317cd_Circle%20Pattern.svg") 100% 2% / cover no-repeat;
            min-height: 100%;
            margin: 0;
            font: 400 16px/1.6 'Poppins', sans-serif;
            overflow-x: hidden;
            letter-spacing: -0.01em;
            /* NEW: Push main content down for announcement bar */
            padding-top: 38px; 
        }

        /* CSS Variables */
        :root {
            --brand-primary: #fd4c26;
            --brand-dark-shade: #e13010;
            --brand-secondary: #29b6f6;
            --brand-soft-shade: #ff6914;
            --brand-neutral: #ebebeb;
            --navbar-height: 90px;
            --text-dark: #1a1a1a;
            --text-light: #666;
            --border-radius: 16px;
            --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.15);
            --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            margin: 20px 0 10px;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        h1 {
            font: 800 72px/1.1 'Outfit', sans-serif;
            color: var(--text-dark);
            background: linear-gradient(135deg, var(--text-dark) 0%, var(--brand-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        h2 {
            font: 700 40px/1.2 'Outfit', sans-serif;
            color: var(--text-dark);
            text-align: center;
        }

        h3 {
            font: 600 28px/1.3 'Outfit', sans-serif;
            color: var(--text-dark);
        }

        h4 {
            margin-top: 10px;
            font-size: 20px;
            line-height: 1.4;
            font-weight: 600;
            color: var(--text-dark);
        }

        p {
            margin: 0 0 16px;
            line-height: 1.7;
            color: var(--text-light);
            font-weight: 400;
        }

        /* Layout Components */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            padding: 0 24px;
        }

        /* --- NEW: Sticky Offer/Announcement Bar Styles --- */
        .announcement-bar-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1001; 
            height: 38px;
            background: linear-gradient(90deg, #e13010, #fd4c26); 
            color: white;
            overflow: hidden;
            display: flex;
            align-items: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .scrolling-content {
            display: inline-block;
            white-space: nowrap;
            animation: scrollAnnouncement 30s linear infinite;
            padding-left: 100%; 
        }

        .announcement-item {
            display: inline-block;
            padding: 0 30px;
            font-size: 14px;
            font-weight: 600;
            line-height: 38px;
        }

        .announcement-item i {
            margin-right: 8px;
        }

        @keyframes scrollAnnouncement {
            from { transform: translateX(0); }
            to { transform: translateX(-100%); }
        }

        /* Navigation */
        .nav-bar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(253, 76, 38, 0.1);
            position: fixed;
            /* ADJUSTED: to be below the new announcement bar */
            top: 38px; 
            left: 0;
            right: 0;
            z-index: 1000;
            transition: var(--transition);
            height: var(--navbar-height);
            box-shadow: var(--shadow-light);
        }

        .nav-bar.nav-hidden {
            /* Adjusted for the offset top */
            transform: translateY(calc(-100% - 38px));
            opacity: 0;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
            height: 100%;
        }

        .brand {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .brand img {
            max-width: 180px;
            width: 100%;
            height: auto;
            transition: var(--transition);
        }

        .brand:hover img {
            transform: scale(1.05);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 8px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .nav-link {
            color: var(--text-dark);
            padding: 16px 20px;
            font-size: 15px;
            line-height: 1.2;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            border-radius: 12px;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--brand-primary);
            background: rgba(253, 76, 38, 0.08);
        }

        .menu-button {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            padding: 12px;
            color: var(--text-dark);
            border-radius: 8px;
            transition: var(--transition);
        }

        .menu-button:hover {
            background: rgba(253, 76, 38, 0.1);
        }

        /* Sections with slide animations */
        .section {
            padding: 80px 0;
            position: relative;
            transform: translateY(60px);
            opacity: 0;
            transition: var(--transition);
        }

        .section.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .hero-section {
            /* ADJUSTED: to account for the new 38px announcement bar */
            padding: calc(var(--navbar-height) + 80px) 0 100px; 
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(253, 76, 38, 0.05) 100%);
        }

        .footer-section {
            background: linear-gradient(135deg, var(--brand-neutral), #f5f5f5);
            border-bottom: 8px solid var(--brand-primary);
            padding: 80px 0;
        }

        /* Grid Systems */
        .hero-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }

        .hero-image {
            position: relative;
            overflow: hidden;
            border-radius: 24px;
            transition: var(--transition);
            cursor: pointer;
        }

        .hero-image:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-hover);
        }

        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 24px;
            transition: var(--transition);
        }

        .hero-image:hover img {
            transform: scale(1.1);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 32px;
            margin-top: 60px;
            align-items: start;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 1px;
            margin-top: 40px;
            background: #d9d9d9;
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-light);
        }

        /* Content Cards */
        .feature-card {
            background: white;
            border-radius: 24px;
            padding: 40px;
            display: flex;
            flex-direction: column;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            overflow: hidden;
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(253, 76, 38, 0.2);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-primary), var(--brand-soft-shade));
            transform: scaleX(0);
            transition: var(--transition);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 16px;
            margin-top: 24px;
            transition: var(--transition);
        }

        .feature-card:hover img {
            transform: scale(1.05);
        }

        .solution-grid {
            background: white;
            border-radius: 24px;
            box-shadow: var(--shadow-light);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
            overflow: hidden;
            margin-top: 60px;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .solution-grid:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .solution-content {
            padding: 60px 50px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .solution-image {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            background: linear-gradient(135deg, rgba(253, 76, 38, 0.05), rgba(41, 182, 246, 0.05));
        }

        .solution-image img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            transition: var(--transition);
        }

        .solution-grid:hover .solution-image img {
            transform: scale(1.05);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-soft-shade));
            color: white;
            border: none;
            border-radius: 50px;
            padding: 18px 36px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(253, 76, 38, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: var(--transition);
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 40px rgba(253, 76, 38, 0.4);
        }

        .btn.secondary {
            background: white;
            color: var(--brand-secondary);
            border: 2px solid var(--brand-secondary);
            box-shadow: 0 4px 20px rgba(41, 182, 246, 0.2);
        }

        .btn.secondary:hover {
            background: var(--brand-secondary);
            color: white;
            box-shadow: 0 12px 40px rgba(41, 182, 246, 0.3);
        }

        .btn-group {
            display: flex;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        /* Improved Form */
        .contact-section {
            background: linear-gradient(135deg, rgba(253, 76, 38, 0.05), rgba(41, 182, 246, 0.05));
        }

        .form-trigger-btn {
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-soft-shade));
            color: white;
            border: none;
            border-radius: 16px;
            padding: 20px 40px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow-light);
            margin: 0 auto;
            display: inline-flex;
            text-decoration: none;
            align-items: center;
            gap: 12px;
        }

        .form-trigger-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
        }
        
        /* Text Styles */
        .hero-title {
            font: 800 72px/1.1 'Outfit', sans-serif;
            background: linear-gradient(135deg, var(--text-dark) 0%, var(--brand-primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin: 0 0 24px 0;
        }

        .hero-subtitle {
            font: 600 32px/1.3 'Outfit', sans-serif;
            color: var(--text-dark);
            margin: 0 0 20px 0;
        }

        .hero-description {
            font-size: 20px;
            line-height: 1.6;
            color: var(--text-light);
            margin: 0 0 40px 0;
            font-weight: 400;
        }

        .section-title {
            font: 700 48px/1.2 'Outfit', sans-serif;
            color: var(--text-dark);
            text-align: center;
            margin: 0 0 24px 0;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-primary), var(--brand-soft-shade));
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 20px;
            color: var(--text-light);
            text-align: center;
            margin: 0 0 60px 0;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        .feature-title {
            font: 600 26px/1.3 'Outfit', sans-serif;
            color: var(--text-dark);
            margin: 0 0 16px 0;
        }

        .feature-description {
            font-size: 16px;
            line-height: 1.7;
            color: var(--text-light);
            margin: 0;
        }

        /* Steps */
        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .comparison-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 1px;
            margin-top: 40px;
            background: #d9d9d9;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }

        .comparison-cell {
            background: white;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            font-weight: 500;
            color: var(--text-dark);
            min-height: 70px;
            transition: var(--transition);
        }

        .comparison-cell.header {
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-soft-shade));
            color: white;
            font-weight: 700;
            font-size: 18px;
        }

        .comparison-cell.header.feature {
            background: linear-gradient(135deg, var(--text-dark), #555);
        }

        .comparison-cell.feature {
            background: #f8f9fa;
            font-weight: 600;
            justify-content: flex-start;
            text-align: left;
            padding-left: 30px;
        }

        .comparison-logo {
            max-width: 120px;
            height: auto;
            filter: brightness(0) invert(1);
        }

        .comparison-cell:hover {
            background: rgba(253, 76, 38, 0.05);
            transform: scale(1.02);
        }

        .comparison-cell.header:hover {
            transform: none;
        }

        /* Benefits Grid Styles */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .benefit-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            border: 1px solid rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--brand-primary), var(--brand-soft-shade));
            transition: var(--transition);
        }

        .benefit-card:hover::before {
            left: 0;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(253, 76, 38, 0.2);
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-soft-shade));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            transition: var(--transition);
        }

        .benefit-icon i {
            font-size: 32px;
            color: white;
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.1);
            box-shadow: 0 8px 25px rgba(253, 76, 38, 0.4);
        }

        .benefit-title {
            font: 600 22px/1.3 'Outfit', sans-serif;
            color: var(--text-dark);
            margin: 0 0 16px 0;
        }

        .benefit-description {
            font-size: 15px;
            line-height: 1.6;
            color: var(--text-light);
            margin: 0;
        }

        /* --- UPDATED: Footer Styles --- */
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1.5fr 1.5fr 1fr; /* 4 columns */
            gap: 40px; 
            align-items: start;
            margin-bottom: 50px;
        }

        .footer-logo img {
            max-width: 200px;
            height: auto;
            margin-bottom: 20px;
        }

        .footer-cta h3, .footer-contact-info h3 {
            font: 600 24px/1.3 'Outfit', sans-serif; 
            color: var(--text-dark);
            margin: 0 0 16px 0;
        }

        .footer-cta p {
            color: var(--text-light);
            margin: 0 0 24px 0;
            line-height: 1.6;
        }

        /* NEW: Footer Contact Info */
        .footer-contact-info p {
            color: var(--text-light);
            font-weight: 500;
            margin: 0 0 12px 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-contact-info a {
            color: var(--text-light);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-contact-info a:hover {
            color: var(--brand-primary);
        }
        .footer-contact-info i {
            color: var(--brand-primary);
            width: 20px;
            text-align: center;
        }


        .social-links {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: flex-start;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            background: white;
            color: var(--brand-primary);
            border-radius: 50%;
            text-decoration: none;
            transition: var(--transition);
            box-shadow: var(--shadow-light);
            border: 2px solid transparent;
        }

        .social-links a:hover {
            background: var(--brand-primary);
            color: white;
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            border-color: var(--brand-primary);
        }

        .social-links i {
            font-size: 20px;
        }

        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 2px solid rgba(253, 76, 38, 0.1);
        }

        .copyright p {
            color: var(--text-light);
            font-size: 14px;
            margin: 0;
        }

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-soft-shade));
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            box-shadow: var(--shadow-light);
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: var(--shadow-hover);
        }

        /* --- FIXED: Voice Assistants Styling --- */
        .voice-assistants {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            align-items: center;
        }

        .voice-assistants img {
            width: 120px;
            height: auto;
            /* REMOVED filter: grayscale(1); */
            /* REMOVED opacity: 0.7; */
            transition: var(--transition);
            cursor: pointer;
        }

        .voice-assistants img:hover {
            /* REMOVED filter: grayscale(0); */
            /* REMOVED opacity: 1; */
            transform: scale(1.1);
        }

        /* Step Styles Enhancement */
        .step-title {
            font: 600 20px/1.4 'Outfit', sans-serif;
            color: var(--text-dark);
            margin: 20px 0 16px 0;
        }

        .step-description {
            color: var(--text-light);
            line-height: 1.7;
            font-size: 15px;
            margin: 0;
        }

        /* --- RESTORED: Mobile Responsiveness --- */
        @media screen and (max-width: 991px) { /* Tablet */
            .footer-content {
                grid-template-columns: 1fr 1fr; /* Stack to 2x2 */
                gap: 40px;
            }
        }

        @media screen and (max-width: 768px) { /* Mobile */
            /* NEW: Stacked comparison table */
            .comparison-grid {
                grid-template-columns: 1fr;
                gap: 1px;
                border-radius: 12px;
                background: transparent; /* Hide grid gap background */
                margin-top: 20px;
            }
            .comparison-cell.header {
                display: none; /* Hide desktop headers */
            }
            .comparison-cell.feature {
                justify-content: center;
                text-align: center;
                padding-left: 20px;
                font-size: 18px;
                background: #f1f5f9;
                border-bottom: 2px solid var(--brand-primary);
                border-radius: 12px 12px 0 0;
            }
            .comparison-cell {
                min-height: 60px;
                background: #fff;
                box-shadow: var(--shadow-light);
                border: 1px solid #eee;
                gap: 10px;
                justify-content: center;
            }
            /* Add 'vs' text */
            .comparison-cell:nth-of-type(3n-1)::before {
                content: "Avantyx:";
                font-weight: 700;
                color: var(--brand-primary);
                margin-right: 10px;
            }
            .comparison-cell:nth-of-type(3n)::before {
                content: "Traditional:";
                font-weight: 700;
                color: #888;
                margin-right: 10px;
            }
            .comparison-cell:nth-of-type(3n) { /* Style the 'Traditional' cell */
                border-radius: 0 0 12px 12px;
                margin-bottom: 20px;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .footer-content {
                grid-template-columns: 1fr; /* Stack to 1 column */
                gap: 40px;
                text-align: center;
            }

            .footer-contact-info p {
                justify-content: center; /* Center contact info on mobile */
            }
            
            .social-links {
                flex-direction: row;
                justify-content: center;
                gap: 20px;
            }
            
            .voice-assistants {
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .voice-assistants img {
                width: 100px;
            }
            
            .scroll-top {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 18px;
            }

            /* ADJUSTED: Mobile menu position */
            .nav-menu {
                top: calc(var(--navbar-height) + 38px);
            }
        }

        .step-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: var(--shadow-light);
            position: relative;
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .step-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 40px;
            background: linear-gradient(135deg, var(--brand-primary), var(--brand-soft-shade));
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 20px;
            box-shadow: 0 4px 15px rgba(253, 76, 38, 0.3);
        }

        /* --- RESTORED: Responsive Design --- */
        @media screen and (max-width: 768px) {
            .container {
                padding: 0 20px;
            }

            .nav-container {
                padding: 0 20px;
            }

            .menu-button {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                /* ADJUSTED: to be below the navbar and announcement bar */
                top: calc(var(--navbar-height) + 38px);
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column; /* This is the stacking for the mobile menu */
                padding: 20px 0;
                box-shadow: var(--shadow-light);
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: var(--transition);
                margin-right: 0; 
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .hero-grid {
                grid-template-columns: 1fr; /* This stacks the hero section */
                gap: 40px;
                text-align: center;
            }

            .hero-title {
                font-size: 48px;
            }

            .hero-subtitle {
                font-size: 28px;
            }

            .hero-description {
                font-size: 18px;
            }

            .section-title {
                font-size: 36px;
            }

            .feature-grid {
                grid-template-columns: 1fr; /* This stacks the feature cards */
                gap: 24px;
            }

            .solution-grid {
                grid-template-columns: 1fr; /* This stacks the solution blocks */
            }

            .solution-content {
                padding: 40px 30px;
            }
        }

        @media screen and (max-width: 480px) {
            .hero-title {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 24px;
            }

            .section-title {
                font-size: 28px;
            }
        }

        /* Scroll animations */
        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: var(--transition);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
    
        /* --- Final 3D Demo --- */
        .final-demo {
            padding: 80px 0;
            background: #f9fafb;
        }

        .final-demo-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .final-demo-stage {
            position: relative;
            height: 400px;
            background: white;
            border-radius: 24px;
            box-shadow: var(--shadow-light);
            border: 1px solid rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            margin: 40px 0;
            overflow: hidden;
        }
        
        /* NEW: Fullscreen styles */
        .final-demo-stage:fullscreen {
            background: #fff;
            overflow: hidden; /* Hide scrollbars in fullscreen */
            /* Re-center content in fullscreen */
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }
        
        /* This selector is for Safari */
        .final-demo-stage:-webkit-full-screen {
            background: #fff;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        /* NEW: Close button (hidden by default) */
        .demo-close-btn {
            display: none; /* Hidden by default */
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0,0,0,0.1);
            border: none;
            font-size: 28px;
            color: #333;
            cursor: pointer;
            z-index: 100;
            transition: var(--transition);
        }
        .demo-close-btn:hover {
            background: rgba(0,0,0,0.2);
            transform: scale(1.1);
        }
        
        /* Show close button ONLY when in fullscreen */
        .final-demo-stage:fullscreen .demo-close-btn {
            display: block;
        }
        .final-demo-stage:-webkit-full-screen .demo-close-btn {
            display: block;
        }


        .final-demo-stage:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        /* Phone position */
        .simple-phone {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 25;
        }

        .phone-body {
            width: 180px;
            height: 320px;
            background: #1f2937;
            border-radius: 18px;
            padding: 12px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            border: 2px solid #374151;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: #ffffff;
            border-radius: 14px;
            padding: 16px 12px;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .app-header {
            text-align: center;
            font-weight: 800;
            font-size: 1rem;
            color: #1f2937;
            letter-spacing: -0.5px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e5e7eb;
        }

        .app-tiles {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            flex: 1;
        }

        .app-tile {
            border: 1.5px solid #d1d5db;
            border-radius: 12px;
            padding: 12px 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            font-size: 0.75rem;
            font-weight: 700;
            color: #6b7280;
            transition: all 0.3s ease;
            cursor: pointer;
            background: linear-gradient(145deg, #ffffff, #f9fafb);
            box-shadow: 0 2px 6px rgba(0,0,0,0.04);
        }

        .app-tile.active {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-color: #667eea;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(102, 126, 234, 0.3);
        }

        .app-tile i {
            font-size: 1rem;
        }

        /* Hub position */
        .final-hub {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
        }

        .hub-3d {
            width: 110px;
            height: 110px;
            position: relative;
            transform-style: preserve-3d;
            transform: rotateX(15deg) rotateY(-20deg);
            animation: hubFloat 8s ease-in-out infinite;
            perspective: 800px;
            transition: transform 0.1s ease-out;
            cursor: grab;
            user-select: none;
        }

        .hub-3d:active {
            cursor: grabbing;
        }

        .hub-3d.user-controlling {
            animation: none;
        }

        .hub-face {
            position: absolute;
            width: 110px;
            height: 110px;
            background: linear-gradient(145deg, #ffffff, #f1f5f9);
            border: 2px solid #667eea;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: #1f2937;
            font-size: 0.8rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
            letter-spacing: -0.5px;
        }

        .hub-face.front { transform: translateZ(55px); }
        .hub-face.back { transform: rotateY(180deg) translateZ(55px); }
        .hub-face.right { transform: rotateY(90deg) translateZ(55px); }
        .hub-face.left { transform: rotateY(-90deg) translateZ(55px); }
        .hub-face.top { transform: rotateX(90deg) translateZ(55px); }
        .hub-face.bottom { transform: rotateX(-90deg) translateZ(55px); }

        @keyframes hubFloat {
            0%, 100% { transform: rotateX(15deg) rotateY(-20deg) translateY(0px); }
            25% { transform: rotateX(10deg) rotateY(-25deg) translateY(-6px); }
            50% { transform: rotateX(20deg) rotateY(-15deg) translateY(-4px); }
            75% { transform: rotateX(5deg) rotateY(-30deg) translateY(-8px); }
        }

        .device-node {
            position: absolute;
            background: linear-gradient(145deg, #ffffff, #f8fafc);
            border: 1px solid #d1d5db;
            border-radius: 12px;
            padding: 10px 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.8rem;
            font-weight: 700;
            color: #374151;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            z-index: 5;
            transition: all 0.3s ease;
        }

        .device-node:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
        }
        
        .device-node.active {
            border-color: #667eea;
            box-shadow: 0 6px 18px rgba(102, 126, 234, 0.3);
            transform: translateY(-2px);
        }

        .device-node i {
            color: #667eea;
            font-size: 1rem;
        }

        /* Node positions all on left */
        .lights-node { left: 60px; top: 40px; }
        .fan-node { left: 60px; top: 110px; }
        .ac-node { left: 60px; top: 180px; }
        .tv-node { left: 60px; top: 250px; }


        /* Connections */
        .connections {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .connection {
            transition: opacity 0.3s ease;
        }

        .connection.active {
            opacity: 1 !important;
            animation: connectionFlow 1.8s linear infinite;
            filter: drop-shadow(0 0 6px rgba(102, 126, 234, 0.4));
        }

        @keyframes connectionFlow {
            0% { stroke-dashoffset: 0; }
            100% { stroke-dashoffset: -250; }
        }

        /* Controls */
        .final-controls {
            text-align: center;
            margin: 30px 0 20px;
        }

        .final-controls .btn {
            margin: 0 10px;
            padding: 12px 24px;
            font-size: 0.95rem;
            font-weight: 700;
        }

        /* Info */
        .final-info {
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            padding: 16px 20px;
            background: rgba(102, 126, 234, 0.05);
            border: 1px solid rgba(102, 126, 234, 0.1);
            border-radius: 12px;
        }

        .final-info p {
            color: #374151;
            font-size: 0.95rem;
            line-height: 1.6;
            margin: 0;
        }

        .final-info i {
            color: #667eea;
            margin-right: 8px;
        }

        /* --- 3D Demo Responsive (Fullscreen Fix) --- */
        @media (max-width: 768px) {
            /* Keep desktop layout, but scale it down to fit */
            .final-demo-stage {
                height: 300px; /* Make shorter */
                transform: scale(0.8); /* Scale everything down */
                transform-origin: center;
                margin: 0; /* FIXED: Removed negative margin */
            }
        }

        @media (max-width: 480px) {
            .final-demo-stage {
                transform: scale(0.6); /* Scale down even more */
                height: 250px;
                margin: -30px 0; /* Adjust for scale */
            }
        }


/* --- PRICING SECTION --- */

.pricing-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* REMOVED: .pricing-scroll-wrapper styles */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    padding: 20px 0; /* Removed horizontal padding */
    align-items: stretch; 
}

@media screen and (max-width: 991px) {
    .pricing-grid {
        margin-top: 40px; 
        padding-top: 20px; /* Add space for the badge */
    }
}


.pricing-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: visible; 
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card.featured {
    transform: translateY(-20px);
    border: 2px solid var(--brand-primary);
    box-shadow: 0 10px 40px rgba(253, 76, 38, 0.15);
}

.pricing-header {
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 2px solid #f1f5f5;
    margin-bottom: 30px;
}

.plan-badge {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-soft-shade));
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.plan-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.plan-price {
    font-size: 48px;
    font-weight: 800;
    color: var(--brand-primary);
    margin-bottom: 10px;
    font-family: 'Outfit', sans-serif;
    min-height: 80px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.pricing-card.featured .plan-price {
    min-height: 110px;
}


.currency {
    font-size: 24px;
    font-weight: 600;
    vertical-align: super;
}

.plan-price .amount {
    font-size: 48px;
}

/* MODIFIED: Make strikethrough style apply to all cards */
.plan-price .price-strikethrough { /* Targeting the div */
    font-size: 20px;
    font-weight: 500;
    color: var(--text-light);
    text-decoration: line-through;
    margin-bottom: -5px;
}


.plan-subtitle {
    color: var(--text-light);
    font-size: 15px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 15px;
}

.feature-item i {
    color: var(--brand-primary);
    font-size: 16px;
}

.pricing-btn {
    width: 100%;
    padding: 15px 0;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
    text-decoration: none;
}

.pricing-card.featured .popular-badge {
    position: absolute;
    top: -15px; /* Sits outside the card */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
    z-index: 2;
}


.pricing-card.featured .plan-price .offer-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--brand-dark-shade);
    margin-top: 5px;
}

/* DELETED: Pagination dots */
.pricing-pagination {
   display: none;
}


/* --- PRICING STACKING ON MOBILE --- */
@media screen and (max-width: 991px) {
    .pricing-grid {
        grid-template-columns: 1fr; /* Stack the cards */
        width: auto; 
        padding-left: 0; 
        padding-right: 0;
        gap: 40px; /* Add more gap between stacked cards */
    }
    
    /* NEW: Card re-ordering for mobile */
    .pricing-card-1 { order: 2; } /* 2BHK */
    .pricing-card-2 { order: 1; } /* 1BHK */
    .pricing-card-3 { order: 3; } /* 3BHK */


    .pricing-card.featured {
        transform: translateY(0); /* No vertical shift on mobile */
    }
}


/* --- UPDATED: Offer Modal Styles --- */
.offer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.offer-modal.active {
    opacity: 1;
    visibility: visible;
}

.offer-content {
    background: linear-gradient(145deg, #ffffff, #f9fafb);
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); /* Bouncy "back" easing */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(253, 76, 38, 0.1);
    overflow: hidden;
    text-align: center;
    max-height: 95vh;
    overflow-y: auto;
}

.offer-modal.active .offer-content {
    transform: scale(1);
    opacity: 1;
}

.offer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.offer-close:hover {
    background: rgba(253, 76, 38, 0.1);
    color: var(--brand-primary);
    transform: scale(1.1);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 65, 108, 0.6);
    }
}

.offer-badge {
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s infinite ease-in-out;
}

.offer-title {
    font: 700 36px/1.2 'Outfit', sans-serif;
    color: var(--text-dark);
    margin: 0 0 12px 0;
}

.offer-subtitle {
    color: var(--text-light);
    font-size: 16px;
    margin: 0 0 24px 0;
}

.offer-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.offer-price-original {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-light);
    text-decoration: line-through;
}

.offer-price-new {
    font: 800 52px/1 'Outfit', sans-serif;
    color: var(--brand-primary);
}

.offer-savings-badge {
    background: #10b981;
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
}

/* DELETED: Countdown timer styles */
.offer-countdown {
   display: none;
}
.countdown-item {
   display: none;
}

/* DELETED: Feature list styles */
.offer-features {
   display: none;
}

@keyframes shine {
    0% { transform: translateX(-100%) skewX(-25deg); }
    100% { transform: translateX(200%) skewX(-25deg); }
}

.offer-cta-btn {
    width: 100%;
    margin: 24px 0 0 0; /* Added margin-top */
    position: relative;
    overflow: hidden; 
    text-decoration: none; 
}

.offer-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-100%) skewX(-25deg);
    animation: shine 2.5s infinite 1s; 
}

/* DELETED: Trust signals styles */
.offer-trust-signals {
    display: none;
}


/* --- NEW: Responsive Offer Modal --- */
@media screen and (max-width: 480px) {
    .offer-content {
        padding: 30px 24px;
        width: 100%;
    }
    .offer-title {
        font-size: 28px;
    }
    .offer-pricing {
        flex-direction: column;
        gap: 8px;
    }
    .offer-price-new {
        font-size: 44px;
    }
}

/* --- UPDATED: Final Demo 3D Stage --- */
.final-demo-stage {
    position: relative;
    height: 400px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    margin: 40px 0;
    overflow: hidden;
}

/* Device positioning */
.device-node[data-device="lights"] {
    top: 15%;
    right: 25%;
}

.device-node[data-device="fan"] {
    top: 15%;
    right: 45%;
}

.device-node[data-device="ac"] {
    top: 45%;
    right: 25%;
}

.device-node[data-device="tv"] {
    top: 45%;
    right: 45%;
}