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

        /* Omnichannel Section */
        .omnichannel {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
            color: white;
            padding: 120px 0;
            position: relative;
            overflow: hidden;
        }

        .omnichannel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(0, 102, 204, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .omnichannel .container {
            position: relative;
            z-index: 1;
        }

        .omnichannel-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .omnichannel h2 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 32px;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .omnichannel-header p {
            font-size: 1.3rem;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.7;
            opacity: 0.9;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
        }

        .omnichannel-grid {
            display: flex;
            gap: 40px;
            margin-top: 60px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-behavior: smooth;
            padding: 20px 0 40px;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
        }

        .omnichannel-grid::-webkit-scrollbar {
            height: 8px;
        }

        .omnichannel-grid::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            margin: 0 20px;
        }

        .omnichannel-grid::-webkit-scrollbar-thumb {
            background: linear-gradient(90deg, #0066cc, #0052a3);
            border-radius: 10px;
            transition: background 0.3s ease;
        }

        .omnichannel-grid::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(90deg, #0052a3, #003d7a);
        }

        .omnichannel-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px;
            border-radius: 20px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
            flex: 0 0 350px;
            min-height: 200px;
            scroll-snap-align: center;
        }

        @media (min-width: 1200px) {
            .omnichannel-card {
                flex: 0 0 380px;
            }
        }

        .omnichannel-scroll-indicator {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            margin-top: 30px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
        }

        .scroll-hint {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .scroll-arrow {
            width: 20px;
            height: 20px;
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-left: none;
            border-top: none;
            transform: rotate(-45deg);
            animation: scrollPulse 2s infinite;
        }

        @keyframes scrollPulse {
            0%, 100% { 
                transform: rotate(-45deg) translateX(0); 
                opacity: 0.4;
            }
            50% { 
                transform: rotate(-45deg) translateX(5px); 
                opacity: 0.8;
            }
        }

        .omnichannel-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #0066cc, #0052a3);
            transform: scaleX(0);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: left;
        }

        .omnichannel-card:nth-child(1) { animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards; }
        .omnichannel-card:nth-child(2) { animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards; }
        .omnichannel-card:nth-child(3) { animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards; }
        .omnichannel-card:nth-child(4) { animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards; }
        .omnichannel-card:nth-child(5) { animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards; }

        .omnichannel-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(0, 102, 204, 0.3);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

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

        .omnichannel-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: white;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .omnichannel-card:hover h3 {
            color: #66b3ff;
        }

        .omnichannel-card p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.05rem;
            line-height: 1.7;
        }

        /* Growth Channel Section */
        .growth-channel {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .growth-channel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 70% 30%, rgba(0, 102, 204, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 30% 70%, rgba(0, 102, 204, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .growth-channel .container {
            position: relative;
            z-index: 1;
        }

        .growth-channel-content {
            display: flex;
            align-items: center;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .growth-channel-text {
            flex: 1;
            text-align: left;
        }

        .growth-channel h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 32px;
            color: #1a1a1a;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .growth-channel p {
            font-size: 1.3rem;
            color: #4a5568;
            line-height: 1.7;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
        }

        .growth-channel-image {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transform: translateX(40px);
            animation: fadeInRight 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
        }

        .growth-channel-image img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .growth-channel-image img:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
        }

        @keyframes fadeInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .growth-channel::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "Libre Franklin", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            font-optical-sizing: auto;
            line-height: 1.6;
            color: #1a1a1a;
            background: #ffffff;
            overflow-x: hidden;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Header */
        header {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .nav-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
        }

        .logo {
            font-size: 21px;
            padding: .25rem 0;
            font-weight: 600;
            color: #1d1d1f;
            transition: all 0.2s ease;
            text-decoration: none;
            display: grid;
            place-items: center;
            }
            .logo img {
                height: 2.5rem;
                margin-bottom: -.25rem;
            }
            .logo:hover {
                text-decoration: underline;
            }

        .nav-menu {
            display: flex;
            list-style: none;
            margin: 0;
            padding: .5rem 0;
            align-items: center;
        }

        .nav-menu li {
            position: relative;
        }

        .nav-menu a {
            color: #1d1d1f;
            text-decoration: none;
            font-weight: 400;
            font-size: 17px;
            transition: color 0.2s ease;
            position: relative;
            padding: 12px 16px;
        }

        .nav-menu a:hover {
            color: #0066cc;
            text-decoration: underline;
        }

        .nav-menu a.active {
            color: #0066cc;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            gap: 4px;
            background: none;
            border: none;
            z-index: 1001;
        }

        .nav-toggle span {
            width: 19px;
            height: 2px;
            background: #1d1d1f;
            transition: all 0.3s ease;
            transform-origin: center;
        }

        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(4px, 5px);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -4px);
        }

        .nav-menu a.nav-cta {
            display: block;
            background: #0066cc;
            color: white;
            padding: .25rem .75rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 400;
            font-size: 17px;
            margin-left: 12px;
            animation: none;
            transform: none;
            opacity: 100%;
        }

        .nav-menu a.nav-cta:hover {
            color: white;
            transform: none;
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .nav-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 40px;
                transition: right 0.3s ease;
                z-index: 1000;
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-menu li {
                width: auto;
            }

            .nav-menu a {
                font-size: 24px;
                font-weight: 400;
                padding: 16px 0;
                color: #1d1d1f;
                text-align: center;
                border-bottom: none;
            }

            .nav-menu a.nav-cta {
                margin: 20px 0 0;
                padding: .75rem 3rem;
                border-radius: 14px;
                font-size: 1.5em;
                font-weight: bold;
            }
        }

        @media (max-width: 480px) {
            .nav-menu a {
                font-size: 21px;
            }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 220px 0 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(0, 102, 204, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 102, 204, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero .container {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.75rem;
            color: #1a1a1a;
            line-height: 1.1;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
        }

        .hero p {
            font-size: 1.25rem;
            color: #4a5568;
            margin-bottom: .5rem;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
        }

        .hero .cta-button {
            margin-top: 2.5rem;
        }
        .cta-button {
            background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
            color: white;
            padding: 18px 36px;
            font-size: 1.1rem;
            border: none;
            border-radius: 14px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
        }

        .cta-button::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: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Value Propositions */
        .features {
            padding: 100px 0;
            background: white;
            position: relative;
        }

        .features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
        }

        .features h2 {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 80px;
            color: #1a1a1a;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
        }

        .feature-card {
            background: linear-gradient(145deg, #f8fafc 0%, #ffffff 100%);
            padding: 36px;
            border-radius: 20px;
            border: 1px solid rgba(226, 232, 240, 0.6);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(40px);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #0066cc, #0052a3);
            transform: scaleX(0);
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: left;
        }

        .feature-card:nth-child(1) { animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards; }
        .feature-card:nth-child(2) { animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards; }
        .feature-card:nth-child(3) { animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards; }
        .feature-card:nth-child(4) { animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards; }
        .feature-card:nth-child(5) { animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards; }
        .feature-card:nth-child(6) { animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards; }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
            border-color: rgba(0, 102, 204, 0.2);
        }

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

        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 16px;
            color: #1a1a1a;
            transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-card:hover h3 {
            color: #0066cc;
        }

        .feature-card p {
            color: #4a5568;
            font-size: 1rem;
            line-height: 1.7;
        }

        /* FAQ section */
        .faq {
            font-size: 1.2rem;
            padding: 100px 0;
        }

        .faq h2 {
            font-size: 2.5rem;
            font-weight: 700;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            text-align: center;
        }

        .faq h2 + p {
            margin-bottom: 40px;
            text-align: center;
            font-size: 1.3rem;
        }

        .faq details {
            border: 1px solid #e4e4e4;
            border-width: 1px 0;
            padding: 1rem 1.5rem;
        }
        .faq details + details {
            border-top-width: 0;
        }

        .faq summary {
            cursor: pointer;
            user-select: none;
            padding: 1rem 3rem 1rem 1.5rem;
            margin: -1rem -1.5rem;
            position: relative;
            list-style: none;
            font-weight: 500;
        }
        .faq summary:hover {
            background: #f5f5f7;
        }
        .faq [open] summary {
            margin-bottom: .5rem;
        }
        .faq summary:before {
            content: '+';
            width: 1.5rem;
            height: 1.5rem;
            display: flex;
            align-items: center;
            text-align: center;
            font-size: 20px;
            font-weight: 300;
            color: #86868b;
            transition: all 0.2s ease;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }
        .faq [open] summary:before {
            content: '-';
            color: #007aff;
        }

        .faq p {
            line-height: 1.8;
        }
        .faq ul {
            padding-left: 3rem;
            margin-bottom: 1rem;
        }

        /* Audience Section */
        .audience {
            background: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .audience::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .audience .container {
            position: relative;
            z-index: 1;
            gap: 3rem;
            display: flex;
            flex-wrap: wrap;
            }
            .audience .container img {
                max-width: 100%;
                height: auto;
                border-radius: 20px;
                border: 1px solid rgba(255, 255, 255, .1);
                object-fit: cover;
                box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            }
            @media (min-width: 768px) {
                .audience .container {
                    text-align: left;
                    }
                    .audience .container > * {
                        width: calc(50% - 1.5rem);
                    }
            }

        .audience h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 40px;
            opacity: 0;
            line-height: 1.3;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .audience p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0;
            line-height: 1.8;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
        }

        /* Sales CTA */
        .sales-cta {
            background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
            padding: 100px 0;
            text-align: center;
            position: relative;
        }

        .sales-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
        }

        .sales-cta h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: #1a1a1a;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .sales-cta p {
            font-size: 1.2rem;
            color: #4a5568;
            margin: 0 auto;
            max-width: 600px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
        }

        .cta-buttons {
            display: flex;
            gap: 24px;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
        }

        .secondary-cta {
            background: white;
            color: #0066cc;
            padding: 18px 36px;
            font-size: 1.1rem;
            border: 2px solid #0066cc;
            border-radius: 14px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 102, 204, 0.1);
        }

        .secondary-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: #0066cc;
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: -1;
        }

        .secondary-cta:hover {
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 102, 204, 0.25);
        }

        .secondary-cta:hover::before {
            width: 100%;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #1a1a1a 0%, #111827 100%);
            color: white;
            padding: 60px 0;
            text-align: center;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        }

        footer p {
            opacity: 0.8;
            transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        footer:hover p {
            opacity: 1;
        }

        /* Scroll Reveal Utility */
        .scroll-reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-reveal.revealed {
            opacity: 1;
            transform: translateY(0);
        }

        /* Enhanced Responsive */
        @media (max-width: 768px) {
            .hero {
                padding: 140px 0 100px;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .growth-channel-content {
                flex-direction: column;
                gap: 40px;
                text-align: center;
            }
            
            .growth-channel-text {
                text-align: center;
            }
            
            .growth-channel h2 {
                font-size: 2.2rem;
            }
            
            .growth-channel p {
                font-size: 1.15rem;
            }
            
            .growth-channel-image {
                order: -1;
            }
            
            .omnichannel h2 {
                font-size: 2.2rem;
            }
            
            .omnichannel-header p {
                font-size: 1.15rem;
            }
            
            .omnichannel-grid {
                gap: 30px;
                padding: 20px 0 30px;
            }
            
            .omnichannel-card {
                flex: 0 0 280px;
                padding: 32px;
            }
            
            .omnichannel-scroll-indicator {
                margin-top: 20px;
            }
            
            .features h2, .audience h2, .sales-cta h2 {
                font-size: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 16px;
            }
            
            .container {
                padding: 0 48px;
            }

            .feature-card {
                padding: 28px;
            }

            .features {
                padding: 80px 0;
            }

            .growth-channel, .omnichannel, .audience, .sales-cta {
                padding: 80px 0;
            }
        }

        @media (max-width: 512px) {
            .features-grid {
                grid-template-columns: 1fr;
            }            
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .growth-channel h2 {
                font-size: 1.8rem;
            }

            .growth-channel p {
                font-size: 1.05rem;
            }

            .growth-channel-content {
                gap: 30px;
            }

            .omnichannel h2 {
                font-size: 1.8rem;
            }

            .omnichannel-header p {
                font-size: 1.05rem;
            }

            .omnichannel-card {
                flex: 0 0 260px;
                padding: 28px;
            }

            .cta-button, .secondary-cta {
                padding: 16px 28px;
                font-size: 1rem;
            }

            .feature-card {
                padding: 24px;
            }
        }

        /* Smooth reveal on scroll */
        @media (prefers-reduced-motion: no-preference) {
            .growth-channel h2,
            .growth-channel p,
            .growth-channel-image,
            .features h2,
            .omnichannel h2,
            .omnichannel-header p,
            .audience h2,
            .audience p,
            .sales-cta h2,
            .sales-cta p,
            .cta-buttons {
                opacity: 0;
                transform: translateY(30px);
                transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .growth-channel-image {
                transform: translateX(40px);
            }
        }

        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }
  

        /* Plans and Pricing Calculator */
        #plans {
            background: #e3eaf2;
            padding: 5rem 0;
        }
        .pricing-container {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 3rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            margin: 0 -24px;
        }
        @media (min-width: 768px) {
            #plans {
                padding: 6rem 0;
            }
            .pricing-container {
                margin: 0;
            }
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .pricing-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #0658b8;
            margin-bottom: 1rem;
        }
        @media (min-width: 768px) {
            .pricing-title {
                font-size: 3rem;
            }
        }

        .pricing-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 2rem;
        }

        .billing-toggle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .toggle-switch {
            position: relative;
            width: 60px;
            height: 30px;
            background: #e2e8f0;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .toggle-switch.active {
            background: #0658b8;
        }

        .toggle-slider {
            position: absolute;
            top: 3px;
            left: 3px;
            width: 24px;
            height: 24px;
            background: white;
            border-radius: 50%;
            transition: transform 0.3s ease;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .toggle-switch.active .toggle-slider {
            transform: translateX(30px);
        }

        .billing-label {
            font-weight: 600;
            color: #475569;
        }

        .billing-label.active {
            color: #0658b8;
        }

        .save-badge {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-left: 0.5rem;
            white-space: nowrap;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            position: relative;
            border: 2px solid #f1f5f9;
            transition: all 0.3s ease;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .pricing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #e2e8f0, #e2e8f0);
            transition: all 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            border-color: #0658b8;
        }

        .pricing-card:hover::before {
            background: #0658b8;
        }

        .pricing-card.featured {
            border-color: #0658b8;
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(6, 88, 184, 0.2);
        }

        .pricing-card.featured::before {
            background: #0658b8;
        }

        .featured-badge {
            position: absolute;
            top: -1px;
            right: 2rem;
            background: #0658b8;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 0 0 12px 12px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .plan-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.5rem;
        }

        .plan-description {
            color: #64748b;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .price-container {
            margin-bottom: 1.5rem;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 800;
            color: #1e293b;
            line-height: 1;
        }
        @media (min-width: 768px) {
            .price {
                font-size: 3rem;
            }
        }

        .price-period {
            color: #64748b;
            font-size: 1rem;
            font-weight: 500;
        }

        .original-price {
            text-decoration: line-through;
            color: #94a3b8;
            font-size: 1.2rem;
            margin-right: 0.5rem;
        }

        .features-list {
            list-style: none;
            margin-bottom: 2rem;
            flex-grow: 1;
        }

        .features-list li {
            padding: 0.75rem 0;
            border-bottom: 1px solid #f1f5f9;
            display: flex;
            align-items: center;
            color: #475569;
        }

        .features-list li:last-child {
            border-bottom: none;
        }

        .check-icon {
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #10b981, #059669);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .check-icon::after {
            content: '✓';
            color: white;
            font-weight: bold;
            font-size: 0.8rem;
        }

        .plans .cta-button {
            width: 100%;
            padding: 1rem 2rem;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: auto;
            text-align: center;
        }

        .plans .cta-primary {
            background: #0658b8;
            color: white;
        }

        .plans .cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(6, 88, 184, 0.3);
        }

        .plans .cta-secondary {
            background: white;
            color: #0658b8;
            border: 2px solid #0658b8;
        }

        .plans .cta-secondary:hover {
            background: #0658b8;
            color: white;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .pricing-container {
                padding: 2rem;
            }
            .pricing-title {
                font-size: 2rem;
            }
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            .pricing-card.featured {
                transform: none;
            }
        }
