   /* CSS Variables - WESP Design System */
        :root {
            --primary-color: #2e3191;
            --primary-light: rgba(46, 49, 145, 0.04);
            --primary-dark: #1e2175;
            --secondary-color: #ff6b2c;
            --secondary-light: rgba(255, 107, 44, 0.06);
            --accent-color: #ff8f5e;
            --accent-bright: #ffa366;
            --text-color: #1a1f36;
            --text-light: #4f566b;
            --text-muted: #8892b0;
            --background-light: #f8faff;
            --background-white: #ffffff;
            --background-gradient: linear-gradient(135deg, #f8faff 0%, #e8f0ff 100%);
            --spacing-unit: 16px;
            --border-radius: 16px;
            --border-radius-lg: 24px;
            --border-radius-xl: 32px;
            --transition-speed: 0.4s;
            --transition-curve: cubic-bezier(0.4, 0, 0.2, 1);

            /* Enhanced design variables */
            --glass-bg: rgba(255, 255, 255, 0.85);
            --glass-bg-strong: rgba(255, 255, 255, 0.95);
            --glass-border: rgba(255, 255, 255, 0.25);
            --glass-border-strong: rgba(255, 255, 255, 0.4);
            --card-shadow: 0 8px 32px -8px rgba(0, 0, 0, 0.12);
            --card-hover-shadow: 0 16px 48px -12px rgba(0, 0, 0, 0.18);
            --card-translate: translateY(-8px);
            --glow-shadow: 0 0 40px rgba(46, 49, 145, 0.15);

            /* Enhanced gradients */
            --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #4750c4 50%, #5865f2 100%);
            --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #ff8f5e 50%, var(--accent-bright) 100%);
            --gradient-light: linear-gradient(135deg, var(--background-light) 0%, #e6e9ff 100%);
            --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
            --gradient-hero: linear-gradient(135deg, rgba(46, 49, 145, 0.05) 0%, rgba(255, 107, 44, 0.03) 100%);

            /* Bosch specific colors */
            --bosch-red: #ff6b2c;
            --bosch-red-light: rgba(234, 0, 41, 0.1);
            --bosch-dark: #1e1e1e;
        }

        /* Reset & Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "DM Sans", sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background: var(--background-white);
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 12px;
            position: relative;
            z-index: 2;
        }

        /* Hero Section - Completely New Design */
        .hero {
            position: relative;
            min-height: 70vh;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 25%, #2a2f5a 75%, #3a4f7a 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 4rem 0 3rem;
        }

        /* Animated Background Elements */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 80%, rgba(255, 107, 44, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(46, 49, 145, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 30%);
            animation: backgroundFloat 20s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes backgroundFloat {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
            }

            33% {
                transform: translateY(-20px) rotate(1deg);
            }

            66% {
                transform: translateY(20px) rotate(-1deg);
            }
        }

        /* Floating geometric shapes */
        .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
            pointer-events: none;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 15s ease-in-out infinite;
        }

        .shape:nth-child(1) {
            top: 10%;
            left: 10%;
            width: 100px;
            height: 100px;
            border: 2px solid var(--secondary-color);
            border-radius: 50%;
            animation-delay: 0s;
        }

        .shape:nth-child(2) {
            top: 20%;
            right: 15%;
            width: 80px;
            height: 80px;
            background: linear-gradient(45deg, var(--primary-color), transparent);
            transform: rotate(45deg);
            animation-delay: -5s;
        }

        .shape:nth-child(3) {
            bottom: 30%;
            left: 20%;
            width: 60px;
            height: 60px;
            border: 3px solid var(--accent-color);
            border-radius: 30%;
            animation-delay: -10s;
        }

        .shape:nth-child(4) {
            bottom: 20%;
            right: 10%;
            width: 120px;
            height: 120px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            animation-delay: -7s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.1;
            }

            25% {
                transform: translateY(-30px) rotate(90deg);
                opacity: 0.2;
            }

            50% {
                transform: translateY(-60px) rotate(180deg);
                opacity: 0.15;
            }

            75% {
                transform: translateY(-30px) rotate(270deg);
                opacity: 0.25;
            }
        }

        /* Hero Content Grid Layout */
        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 10;
        }

        .hero-content {
            position: relative;
            z-index: 3;
        }

        .hero-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Logo Section */
        .hero-logos {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: slideInLeft 1s ease-out 0.3s forwards;
        }

        .logo-badge {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 16px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .logo-badge:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .logo-separator {
            font-size: 2rem;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 300;
        }

        /* Typography */
        .hero-title {
            font-size: clamp(2rem, 5vw, 3.2rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1rem;
            color: white;
            opacity: 0;
            animation: slideInLeft 1s ease-out 0.6s forwards;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-bright));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: slideInLeft 1s ease-out 0.9s forwards;
        }

        .hero-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 1.5rem;
            max-width: 500px;
            opacity: 0;
            animation: slideInLeft 1s ease-out 1.2s forwards;
        }

        /* CTA Section */
        .hero-cta {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            opacity: 0;
            animation: slideInLeft 1s ease-out 1.5s forwards;
        }

        .cta-button {
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-bright));
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 44, 0.3);
            align-self: flex-start;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 107, 44, 0.4);
        }

        /* Important Notice */
        .hero-notice {
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 107, 44, 0.1);
            border: 1px solid rgba(255, 107, 44, 0.3);
            border-radius: 12px;
            padding: 16px 20px;
            color: rgba(255, 255, 255, 0.9);
        }

        .hero-notice svg {
            color: var(--secondary-color);
            flex-shrink: 0;
        }

        /* Visual Side */
        .hero-visual-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 24px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
            opacity: 0;
            animation: slideInRight 1s ease-out 0.9s forwards;
        }

        .hero-visual-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-bright));
        }

        .visual-content {
            text-align: center;
            color: white;
        }

        .visual-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem;
            background: linear-gradient(135deg, var(--primary-color), #4750c4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .visual-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }

            50% {
                transform: translateX(0%) translateY(0%) rotate(45deg);
            }

            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        .visual-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .visual-description {
            font-size: 1rem;
            opacity: 0.8;
            line-height: 1.5;
        }

        /* Animations */
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

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

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }

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

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
                padding-top: 2rem;
            }

            .hero-content {
                order: 2;
            }

            .hero-visual {
                order: 1;
            }
        }

        @media (max-width: 768px) {
            .hero-container {
                padding: 0 1rem;
                gap: 2rem;
            }

            .hero-logos {
                justify-content: center;
            }

            .hero-description {
                max-width: 100%;
            }

            .hero-visual-card {
                padding: 2rem;
            }
        }

        /* Section Styles */
        section {
            position: relative;
            padding: calc(var(--spacing-unit) * 6) 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: calc(var(--spacing-unit) * 4);
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-header h2 {
            font-size: 36px;
            margin-bottom: calc(var(--spacing-unit) * 1.5);
            background: var(--gradient-primary);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            position: relative;
            line-height: 1.2;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -16px;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-secondary);
            border-radius: 2px;
            box-shadow: 0 4px 12px rgba(255, 107, 44, 0.3);
        }

        .section-header p {
            font-size: 20px;
            color: var(--text-light);
            max-width: 650px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* What is WESP Section */
        .what-is-wesp {
            background: var(--background-gradient);
            position: relative;
            overflow: hidden;
        }

        .what-is-wesp::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(46, 49, 145, 0.03) 0%, transparent 50%);
            z-index: 1;
        }

        .what-is-wesp .container {
            position: relative;
            z-index: 2;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: calc(var(--spacing-unit) * 2);
            margin-top: calc(var(--spacing-unit) * 3);
        }

        .feature-card {
            background: var(--glass-bg-strong);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: var(--border-radius-lg);
            border: 1px solid var(--glass-border);
            padding: calc(var(--spacing-unit) * 2.5);
            position: relative;
            overflow: hidden;
            transform: translateZ(0);
            will-change: transform;
            transition: all var(--transition-speed) var(--transition-curve);
            box-shadow: var(--card-shadow);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-secondary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--transition-speed) var(--transition-curve);
        }

        .feature-card:hover {
            transform: var(--card-translate) scale(1.02);
            box-shadow: var(--card-hover-shadow);
            border-color: var(--glass-border-strong);
        }

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

        .feature-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 72px;
            height: 72px;
            background: var(--gradient-secondary);
            color: white;
            border-radius: var(--border-radius-lg);
            margin-bottom: calc(var(--spacing-unit) * 2);
            font-size: 32px;
            transform: none;
            box-shadow: 0 12px 32px rgba(255, 107, 44, 0.3), 0 4px 12px rgba(255, 107, 44, 0.2);
            transition: all var(--transition-speed) var(--transition-curve);
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h3 {
            color: var(--primary-color);
            margin-bottom: calc(var(--spacing-unit) * 1);
            font-size: 24px;
            font-weight: 700;
            line-height: 1.3;
        }

        .feature-card p {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.6;
        }

        /* Services Section */
        .services-section {
            background: var(--background-white);
            position: relative;
            overflow: hidden;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: calc(var(--spacing-unit) * 3);
            margin-top: calc(var(--spacing-unit) * 4);
        }

        .service-card {
            background: var(--glass-bg-strong);
            backdrop-filter: blur(20px);
            border-radius: var(--border-radius-lg);
            border: 2px solid var(--glass-border);
            padding: calc(var(--spacing-unit) * 3);
            position: relative;
            overflow: hidden;
            transition: all var(--transition-speed) var(--transition-curve);
            cursor: pointer;
        }

        .service-card.selected {
            border-color: var(--bosch-red);
            background: var(--bosch-red-light);
            transform: translateY(-8px);
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--card-hover-shadow);
        }

        .service-header {
            display: flex;
            align-items: center;
            margin-bottom: calc(var(--spacing-unit) * 2);
        }

        .service-checkbox {
            width: 24px;
            height: 24px;
            border: 2px solid var(--glass-border);
            border-radius: 6px;
            margin-right: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-speed) var(--transition-curve);
        }

        .service-card.selected .service-checkbox {
            background: var(--bosch-red);
            border-color: var(--bosch-red);
        }

        .service-checkbox svg {
            opacity: 0;
            transform: scale(0);
            transition: all var(--transition-speed) var(--transition-curve);
        }

        .service-card.selected .service-checkbox svg {
            opacity: 1;
            transform: scale(1);
        }

        .service-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
            margin: 0;
        }

        .service-price {
            font-size: 32px;
            font-weight: 800;
            color: var(--bosch-red);
            margin: calc(var(--spacing-unit) * 1) 0;
        }

        .service-features {
            list-style: none;
            margin: calc(var(--spacing-unit) * 2) 0;
        }

        .service-features li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            font-size: 16px;
            color: var(--text-light);
        }

        .service-features li svg {
            margin-right: 12px;
            color: var(--secondary-color);
            flex-shrink: 0;
        }

        /* Form Section */
        .form-section {
            background: var(--gradient-primary);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .form-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
            z-index: 1;
        }

        .form-section .container {
            position: relative;
            z-index: 2;
        }

        .form-section .section-header h2,
        .form-section .section-header p {
            color: white;
        }

        .form-section .section-header h2::after {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
        }

        .form-embed-container {
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            background: var(--glass-bg-strong);
            backdrop-filter: blur(20px);
            border-radius: var(--border-radius-xl);
            padding: calc(var(--spacing-unit) * 2);
            box-shadow: var(--card-shadow);
            min-height: 1200px;
            display: flex;
            align-items: stretch;
            justify-content: center;
        }

        .form-embed-container iframe {
            width: 100% !important;
            min-height: 1200px !important;
            border: none;
            border-radius: 16px;
        }

        .form-embed-placeholder {
            text-align: center;
            padding: calc(var(--spacing-unit) * 3);
            border: 2px dashed var(--glass-border);
            border-radius: var(--border-radius);
            color: var(--text-muted);
        }

        .form-embed-placeholder h3 {
            color: var(--primary-color);
            margin-bottom: 16px;
        }

        /* Button Styles */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 16px 32px;
            background: var(--gradient-primary);
            color: white;
            text-decoration: none;
            border-radius: var(--border-radius-lg);
            font-weight: 600;
            font-size: 16px;
            transition: all var(--transition-speed) var(--transition-curve);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 24px rgba(46, 49, 145, 0.3);
            will-change: transform;
        }

        .btn:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 12px 32px rgba(46, 49, 145, 0.4);
        }

        .btn-bosch {
            background: linear-gradient(135deg, var(--bosch-red) 0%, #d4002a 100%);
            box-shadow: 0 8px 24px rgba(234, 0, 41, 0.3);
        }

        .btn-bosch:hover {
            box-shadow: 0 12px 32px rgba(234, 0, 41, 0.4);
        }

        .btn-large {
            padding: 20px 40px;
            font-size: 18px;
            border-radius: var(--border-radius-xl);
        }

        /* Benefits Section */
        .benefits-section {
            background: var(--background-light);
            position: relative;
            overflow: hidden;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: calc(var(--spacing-unit) * 2);
            margin-top: calc(var(--spacing-unit) * 3);
        }

        .benefit-card {
            background: var(--glass-bg-strong);
            backdrop-filter: blur(20px);
            border-radius: var(--border-radius);
            padding: calc(var(--spacing-unit) * 2);
            text-align: center;
            border: 1px solid var(--glass-border);
            transition: all var(--transition-speed) var(--transition-curve);
        }

        .benefit-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--card-hover-shadow);
        }

        .benefit-number {
            font-size: 48px;
            font-weight: 800;
            color: var(--bosch-red);
            line-height: 1;
            margin-bottom: 8px;
        }

        .benefit-text {
            font-size: 16px;
            color: var(--text-light);
            font-weight: 500;
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s var(--transition-curve);
            will-change: opacity, transform;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            :root {
                --spacing-unit: 14px;
                --border-radius: 12px;
                --border-radius-lg: 18px;
                --border-radius-xl: 24px;
            }

            .container {
                padding: 0 calc(var(--spacing-unit) * 1.5);
            }

            .hero {
                padding: calc(var(--spacing-unit) * 4) 0;
                min-height: 80vh;
            }

            .hero h1 {
                font-size: 32px;
                line-height: 1.2;
                margin-bottom: calc(var(--spacing-unit) * 1.5);
            }

            .hero p {
                font-size: 16px;
                margin-bottom: calc(var(--spacing-unit) * 1.5);
            }

            .hero-content {
                padding: calc(var(--spacing-unit) * 2) calc(var(--spacing-unit) * 1.5);
                width: 95%;
            }

            .logo-container {
                gap: 16px;
                flex-direction: column;
            }

            .logo-separator {
                transform: rotate(90deg);
                font-size: 24px;
            }

            .section-header h2 {
                font-size: 28px;
            }

            .section-header p {
                font-size: 16px;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: calc(var(--spacing-unit) * 2);
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: calc(var(--spacing-unit) * 1.5);
            }

            .wesp-services-grid {
                grid-template-columns: 1fr;
                gap: calc(var(--spacing-unit) * 2);
            }

            .final-benefits-grid {
                grid-template-columns: 1fr;
                gap: calc(var(--spacing-unit) * 1.5);
            }

            .final-benefit-card {
                flex-direction: column;
                text-align: center;
            }
        }

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

            .hero-subheading {
                font-size: 16px !important;
            }

            .section-header h2 {
                font-size: 24px;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            /* Very small screen form adjustments */
            .form-embed-container {
                margin: 0 calc(var(--spacing-unit) * 0.5);
                padding: calc(var(--spacing-unit) * 0.5);
                min-height: 900px;
                border-radius: 12px;
            }

            .form-embed-container iframe {
                min-height: 900px !important;
                border-radius: 8px;
            }

            /* Service cards very small screens */
            .service-card {
                padding: calc(var(--spacing-unit) * 1.5);
                margin: 0;
            }

            .service-price {
                font-size: 24px;
            }

            .service-features li {
                font-size: 13px;
            }

            /* Container adjustments */
            .container {
                padding: 0 calc(var(--spacing-unit));
            }

            /* Section padding */
            section {
                padding: calc(var(--spacing-unit) * 3) 0;
            }

            /* Hero adjustments for very small screens */
            .hero-container {
                padding: 0 0.5rem;
            }

            .hero-title {
                font-size: clamp(1.8rem, 8vw, 2.5rem);
                line-height: 1.2;
            }

            .hero-description {
                font-size: 1rem;
                line-height: 1.5;
            }

            .cta-button {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
        }

        /* Tablet-specific improvements */
        @media (max-width: 1024px) and (min-width: 769px) {
            .form-embed-container {
                max-width: 900px;
                min-height: 1100px;
            }

            .form-embed-container iframe {
                min-height: 1100px !important;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: calc(var(--spacing-unit) * 2);
                max-width: 600px;
                margin: 0 auto;
            }

            .hero-container {
                gap: 3rem;
            }
        }

        /* Smooth Scroll */
        html {
            scroll-behavior: smooth;
        }

        /* WESP Services Detail Cards */
        .wesp-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: calc(var(--spacing-unit) * 2.5);
            margin-top: calc(var(--spacing-unit) * 3);
        }

        .service-detail-card {
            background: var(--glass-bg-strong);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: var(--border-radius-lg);
            border: 1px solid var(--glass-border);
            padding: calc(var(--spacing-unit) * 3);
            position: relative;
            overflow: hidden;
            transform: translateZ(0);
            will-change: transform;
            transition: all var(--transition-speed) var(--transition-curve);
            box-shadow: var(--card-shadow);
        }

        .service-detail-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform var(--transition-speed) var(--transition-curve);
        }

        .service-detail-card:hover {
            transform: var(--card-translate) scale(1.02);
            box-shadow: var(--card-hover-shadow);
            border-color: var(--glass-border-strong);
        }

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

        .service-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            margin-bottom: calc(var(--spacing-unit) * 1.5);
            font-size: 20px;
            font-weight: 700;
            box-shadow: 0 8px 24px rgba(46, 49, 145, 0.3);
            transition: all var(--transition-speed) var(--transition-curve);
        }

        .service-detail-card:hover .service-number {
            transform: scale(1.1);
        }

        .service-detail-card h3 {
            color: var(--primary-color);
            margin-bottom: calc(var(--spacing-unit) * 1);
            font-size: 22px;
            font-weight: 700;
            line-height: 1.3;
        }

        .service-detail-card p {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.6;
        }

        /* How it Works Section */
        .how-it-works-section {
            background: var(--background-white);
            position: relative;
            overflow: hidden;
        }

        .how-it-works-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .security-section {
            background: var(--glass-bg-strong);
            backdrop-filter: blur(20px);
            border-radius: var(--border-radius);
            padding: calc(var(--spacing-unit) * 2);
            border: 1px solid var(--glass-border);
            box-shadow: var(--card-shadow);
        }

        /* Final Benefits Section */
        .final-benefits-section {
            background: var(--background-gradient);
            position: relative;
            overflow: hidden;
        }

        .final-benefits-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 80% 20%, rgba(46, 49, 145, 0.03) 0%, transparent 50%);
            z-index: 1;
        }

        .final-benefits-section .container {
            position: relative;
            z-index: 2;
        }

        .final-benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: calc(var(--spacing-unit) * 2);
            margin-top: calc(var(--spacing-unit) * 3);
        }

        .final-benefit-card {
            background: var(--glass-bg-strong);
            backdrop-filter: blur(20px);
            border-radius: var(--border-radius);
            padding: calc(var(--spacing-unit) * 2);
            border: 1px solid var(--glass-border);
            transition: all var(--transition-speed) var(--transition-curve);
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }

        .final-benefit-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--card-hover-shadow);
        }

        .benefit-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            background: var(--gradient-secondary);
            color: white;
            border-radius: var(--border-radius);
            flex-shrink: 0;
            box-shadow: 0 8px 24px rgba(255, 107, 44, 0.3);
            transition: all var(--transition-speed) var(--transition-curve);
        }

        .final-benefit-card:hover .benefit-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .final-benefit-card p {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.6;
            margin: 0;
            font-weight: 500;
        }

        /* Important Notice in Hero */
        .important-notice {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: var(--bosch-red-light);
            border: 2px solid var(--bosch-red);
            border-radius: var(--border-radius);
            padding: calc(var(--spacing-unit) * 1.5);
            margin-top: calc(var(--spacing-unit) * 2);
            max-width: 600px;
        }

        .important-notice svg {
            color: var(--bosch-red);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .important-notice p {
            color: var(--text-color);
            font-size: 16px;
            line-height: 1.5;
            margin: 0;
        }

        .important-notice strong {
            color: var(--bosch-red);
        }

        .important-notice em {
            color: var(--bosch-red);
            font-weight: 600;
            font-style: normal;
        }

        /* Why WESP Section */
        .why-wesp-section {
            background: var(--background-light);
            position: relative;
            overflow: hidden;
        }

        .why-wesp-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 80%, rgba(46, 49, 145, 0.03) 0%, transparent 50%);
            z-index: 1;
        }

        .why-wesp-section .container {
            position: relative;
            z-index: 2;
        }

        .why-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .intro-paragraph {
            font-size: 18px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: calc(var(--spacing-unit) * 3);
            text-align: center;
        }

        .question-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: calc(var(--spacing-unit) * 2);
            margin-bottom: calc(var(--spacing-unit) * 4);
        }

        .question-card {
            background: var(--glass-bg-strong);
            backdrop-filter: blur(20px);
            border-radius: var(--border-radius);
            padding: calc(var(--spacing-unit) * 1.5);
            border: 1px solid var(--glass-border);
            transition: all var(--transition-speed) var(--transition-curve);
            text-align: center;
        }

        .question-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--card-hover-shadow);
        }

        .question-card h4 {
            color: var(--primary-color);
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            line-height: 1.4;
        }

        .wesp-integration-info {
            background: var(--glass-bg-strong);
            backdrop-filter: blur(20px);
            border-radius: var(--border-radius-lg);
            padding: calc(var(--spacing-unit) * 3);
            border: 1px solid var(--glass-border);
            box-shadow: var(--card-shadow);
        }

        .wesp-integration-info h3 {
            color: var(--primary-color);
            font-size: 24px;
            margin-bottom: calc(var(--spacing-unit) * 1.5);
            text-align: center;
        }

        .wesp-integration-info>p {
            font-size: 18px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: calc(var(--spacing-unit) * 2);
            text-align: center;
        }

        .special-offer {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            background: var(--secondary-light);
            border-radius: var(--border-radius);
            padding: calc(var(--spacing-unit) * 2);
            border-left: 4px solid var(--secondary-color);
        }

        .offer-icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 64px;
            height: 64px;
            background: var(--gradient-secondary);
            color: white;
            border-radius: var(--border-radius);
            flex-shrink: 0;
            box-shadow: 0 8px 24px rgba(255, 107, 44, 0.3);
        }

        .offer-content h4 {
            color: var(--secondary-color);
            font-size: 18px;
            margin-bottom: 8px;
        }

        .offer-content p {
            color: var(--text-color);
            font-size: 16px;
            line-height: 1.6;
            margin: 0;
        }

        .offer-content strong {
            color: var(--bosch-red);
            font-size: 18px;
        }

        /* Network Dashboard Section - Complete Redesign */
        .network-dashboard-section {
            background: linear-gradient(135deg, #f8faff 0%, #e8f0ff 50%, #f0f4ff 100%);
            position: relative;
            overflow: hidden;
            padding: 8rem 0;
        }

        /* Animated Background Pattern */
        .network-dashboard-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 20%, rgba(46, 49, 145, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 44, 0.03) 0%, transparent 50%),
                url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%232e3191' fill-opacity='0.02'%3E%3Cpath d='M20 20c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm0-20c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8z'/%3E%3C/g%3E%3C/svg%3E");
            animation: patternMove 25s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes patternMove {

            0%,
            100% {
                transform: translateX(0px) translateY(0px);
            }

            25% {
                transform: translateX(-15px) translateY(-10px);
            }

            50% {
                transform: translateX(-10px) translateY(-15px);
            }

            75% {
                transform: translateX(10px) translateY(-5px);
            }
        }

        .network-dashboard-section .container {
            position: relative;
            z-index: 2;
            max-width: 1400px;
        }

        /* Header Section */
        .dashboard-header {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
        }

        .dashboard-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(46, 49, 145, 0.1);
            border: 1px solid rgba(46, 49, 145, 0.2);
            border-radius: 50px;
            padding: 0.75rem 1.5rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--primary-color);
            opacity: 0;
            animation: slideInUp 1s ease-out 0.3s forwards;
        }

        .dashboard-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: var(--gradient-primary);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            opacity: 0;
            animation: slideInUp 1s ease-out 0.6s forwards;
        }

        .dashboard-subtitle {
            font-size: 1.3rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0;
            animation: slideInUp 1s ease-out 0.9s forwards;
        }

        /* Main Dashboard Layout */
        .dashboard-main {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 5rem;
            align-items: center;
            margin-bottom: 5rem;
        }

        /* Content Section */
        .dashboard-content {
            opacity: 0;
            animation: slideInLeft 1s ease-out 1.2s forwards;
        }

        .content-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-light);
            margin-bottom: 2.5rem;
        }

        .content-highlight {
            color: var(--primary-color);
            font-weight: 600;
        }

        .network-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(46, 49, 145, 0.1);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient-secondary);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 600;
        }

        /* Dashboard Visual */
        .dashboard-visual {
            position: relative;
            opacity: 0;
            animation: slideInRight 1s ease-out 1.2s forwards;
        }

        .dashboard-mockup {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 24px;
            padding: 2rem;
            box-shadow: 0 25px 50px rgba(46, 49, 145, 0.15);
            position: relative;
            overflow: hidden;
        }

        .dashboard-mockup::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
        }

        .mockup-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(46, 49, 145, 0.1);
        }

        .mockup-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--text-color);
        }

        .mockup-status {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: #22c55e;
            font-weight: 600;
        }

        .status-dot {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        .mockup-metrics {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .metric-item {
            background: rgba(46, 49, 145, 0.05);
            border-radius: 12px;
            padding: 1rem;
            text-align: center;
        }

        .metric-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.25rem;
        }

        .metric-label {
            font-size: 0.75rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .mockup-chart {
            height: 120px;
            background: linear-gradient(135deg, rgba(46, 49, 145, 0.1), rgba(255, 107, 44, 0.1));
            border-radius: 12px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: end;
            padding: 1rem;
            gap: 0.5rem;
        }

        .chart-bar {
            background: var(--gradient-primary);
            border-radius: 4px 4px 0 0;
            width: 100%;
            animation: growUp 2s ease-out 2s forwards;
            transform-origin: bottom;
            transform: scaleY(0);
        }

        .chart-bar:nth-child(1) {
            height: 60%;
            animation-delay: 2.1s;
        }

        .chart-bar:nth-child(2) {
            height: 80%;
            animation-delay: 2.2s;
        }

        .chart-bar:nth-child(3) {
            height: 45%;
            animation-delay: 2.3s;
        }

        .chart-bar:nth-child(4) {
            height: 90%;
            animation-delay: 2.4s;
        }

        .chart-bar:nth-child(5) {
            height: 70%;
            animation-delay: 2.5s;
        }

        .chart-bar:nth-child(6) {
            height: 95%;
            animation-delay: 2.6s;
        }

        @keyframes growUp {
            to {
                transform: scaleY(1);
            }
        }

        /* Analysis Questions Grid */
        .analysis-questions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            opacity: 0;
            animation: slideInUp 1s ease-out 1.8s forwards;
        }

        .question-card {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            border-radius: 20px;
            padding: 2rem;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .question-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--gradient-secondary);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .question-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(46, 49, 145, 0.15);
            border-color: rgba(255, 255, 255, 0.8);
        }

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

        .question-icon {
            width: 50px;
            height: 50px;
            background: var (--gradient-primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.2rem;
        }

        .question-text {
            font-size: 1rem;
            color: var(--text-color);
            font-weight: 600;
            line-height: 1.5;
        }

        /* Bottom CTA */
        .dashboard-cta {
            text-align: center;
            margin-top: 4rem;
            opacity: 0;
            animation: slideInUp 1s ease-out 2.1s forwards;
        }

        .cta-text {
            font-size: 1.2rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-style: italic;
        }

        .cta-highlight {
            font-size: 1.1rem;
            color: var(--primary-color);
            font-weight: 700;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .dashboard-main {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .network-stats {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .network-dashboard-section {
                padding: 4rem 0;
            }

            .dashboard-header {
                margin-bottom: 3rem;
            }

            .mockup-metrics {
                grid-template-columns: 1fr;
            }

            .analysis-questions {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        .analysis-questions {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: calc(var(--spacing-unit) * 1.5);
        }

        .analysis-card {
            background: var (--glass-bg-strong);
            backdrop-filter: blur(20px);
            border-radius: var(--border-radius);
            padding: calc(var(--spacing-unit) * 1.5);
            border: 1px solid var(--glass-border);
            transition: all var(--transition-speed) var(--transition-curve);
            text-align: center;
            border-left: 4px solid var(--primary-color);
        }

        .analysis-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--card-hover-shadow);
        }

        .analysis-card h4 {
            color: var(--primary-color);
            font-size: 16px;
            font-weight: 600;
            margin: 0;
            line-height: 1.4;
        }

        /* Data Security Section - Complete Redesign */
        .data-security-section {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
            color: white;
            position: relative;
            overflow: hidden;
            padding: 8rem 0;
        }

        /* Animated Security Pattern Background */
        .data-security-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
                url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M54 54h6v6h-6V54zM42 42h6v6h-6v-6zm0 12h6v6h-6v-6zm12 0h6v6h-6v-6zM0 0h6v6H0V0zm12 12h6v6h-6v-6zm0 12h6v6h-6v-6zm12 0h6v6h-6v-6zm0-12h6v6h-6V12zm12 12h6v6h-6v-6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            animation: patternFloat 30s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes patternFloat {

            0%,
            100% {
                transform: translateX(0px) translateY(0px);
            }

            25% {
                transform: translateX(-10px) translateY(-5px);
            }

            50% {
                transform: translateX(-5px) translateY(-10px);
            }

            75% {
                transform: translateX(5px) translateY(-5px);
            }
        }

        .data-security-section .container {
            position: relative;
            z-index: 2;
            max-width: 1400px;
        }

        /* Security Header */
        .security-header {
            text-align: center;
            margin-bottom: 5rem;
            position: relative;
        }

        .security-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: #ff6b2c24;
            border: 1px solid #ff6b2c66;
            border-radius: 50px;
            padding: 0.75rem 1.5rem;
            margin-bottom: 2rem;
            font-size: 0.9rem;
            font-weight: 600;
            color: #ff6b2c;
            opacity: 0;
            animation: slideInUp 1s ease-out 0.3s forwards;
        }

        .security-badge svg {
            width: 20px;
            height: 20px;
        }

        .security-title {
            font-size: clamp(2.5rem, 5vw, 3.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            opacity: 0;
            animation: slideInUp 1s ease-out 0.6s forwards;
        }

        .security-subtitle {
            font-size: 1.3rem;
            color: #94a3b8;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
            opacity: 0;
            animation: slideInUp 1s ease-out 0.9s forwards;
        }

        /* Main Security Grid */
        .security-main {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .security-content {
            opacity: 0;
            animation: slideInLeft 1s ease-out 1.2s forwards;
        }

        .security-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: #e2e8f0;
            margin-bottom: 2rem;
        }

        .security-text:last-child {
            margin-bottom: 0;
        }

        .security-highlight {
            color: #ff6b2c;
            font-weight: 600;
        }

        /* Security Features Visual */
        .security-visual {
            position: relative;
            opacity: 0;
            animation: slideInRight 1s ease-out 1.2s forwards;
        }

        .security-central-icon {
            width: 200px;
            height: 200px;
            margin: 0 auto 3rem;
            background: linear-gradient(135deg, #ff6b2c, #ff532c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            position: relative;
            box-shadow:
                0 0 0 20px rgba(255, 107, 44, 0.1),
                0 0 0 40px rgba(255, 107, 44, 0.05),
                0 20px 40px rgba(0, 0, 0, 0.3);
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .security-central-icon::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 2px solid rgba(15, 23, 42, 0.306);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }

            to {
                transform: rotate(360deg);
            }
        }

        /* Security Feature Cards */
        .security-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            opacity: 0;
            animation: slideInUp 1s ease-out 1.8s forwards;
        }

        .security-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            cursor: pointer;
        }

        .security-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(135deg, #ff6b2c, rgb(255, 157, 0));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .security-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        }

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

        .security-card-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            background: linear-gradient(135deg, #ff6b2c, rgb(255, 157, 0));
            border-radius: 15px;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
        }

        .security-card-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: white;
            margin-bottom: 1rem;
        }

        .security-card-description {
            font-size: 0.95rem;
            color: #94a3b8;
            line-height: 1.5;
        }

        /* Trust Indicators */
        .trust-indicators {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            margin-top: 4rem;
            padding: 2rem;
            opacity: 0;
            animation: slideInUp 1s ease-out 2.1s forwards;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #ff6b2c;
            font-weight: 600;
        }

        .trust-item svg {
            width: 24px;
            height: 24px;
        }

        /* Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

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

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

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

        /* Responsive Design */
        @media (max-width: 1024px) {
            .security-main {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .trust-indicators {
                flex-wrap: wrap;
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .data-security-section {
                padding: 4rem 0;
            }

            .security-header {
                margin-bottom: 3rem;
            }

            .security-central-icon {
                width: 150px;
                height: 150px;
                font-size: 3rem;
            }

            .security-features {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .trust-indicators {
                gap: 1.5rem;
            }
        }

        .security-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .security-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: calc(var(--spacing-unit) * 2.5);
        }

        .security-card {
            background: var(--glass-bg-strong);
            backdrop-filter: blur(20px);
            border-radius: var(--border-radius-lg);
            padding: calc(var(--spacing-unit) * 2.5);
            border: 1px solid var(--glass-border);
            transition: all var(--transition-speed) var(--transition-curve);
            text-align: center;
            box-shadow: var(--card-shadow);
        }

        .security-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--card-hover-shadow);
            background-color: rgba(255, 255, 255, 0.886);
        }

        .security-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 80px;
            height: 80px;
            background: var(--gradient-secondary);
            color: white;
            border-radius: var(--border-radius-lg);
            margin-bottom: calc(var(--spacing-unit) * 2);
            box-shadow: 0 12px 32px rgba(255, 107, 44, 0.3);
            transition: all var(--transition-speed) var(--transition-curve);
        }

        .security-card:hover .security-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .security-card h3 {
            color: var(--primary-color);
            font-size: 20px;
            margin-bottom: calc(var(--spacing-unit) * 1);
            font-weight: 700;
        }

        .security-card p {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.6;
            margin: 0;
        }

        /* Mobile adjustments for new sections */
        @media (max-width: 768px) {
            .important-notice {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .question-highlights {
                grid-template-columns: 1fr;
                gap: calc(var(--spacing-unit) * 1.5);
            }

            .analysis-questions {
                grid-template-columns: 1fr;
                gap: calc(var(--spacing-unit) * 1.5);
            }

            .security-grid {
                grid-template-columns: 1fr;
                gap: calc(var(--spacing-unit) * 2);
            }

            .special-offer {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            /* Services Section Mobile */
            .services-grid {
                grid-template-columns: 1fr;
                gap: calc(var(--spacing-unit) * 1.5);
                padding: 0 calc(var(--spacing-unit));
            }

            .service-card {
                padding: calc(var(--spacing-unit) * 2);
                margin: 0 calc(var(--spacing-unit) * 0.5);
            }

            .service-price {
                font-size: 28px;
            }

            .service-features {
                margin: calc(var(--spacing-unit) * 1.5) 0;
            }

            .service-features li {
                font-size: 14px;
                margin-bottom: 10px;
            }

            /* Form Section Mobile */
            .form-embed-container {
                max-width: 100%;
                margin: 0 calc(var(--spacing-unit));
                padding: calc(var(--spacing-unit));
                min-height: 1000px;
            }

            .form-embed-container iframe {
                min-height: 1000px !important;
                border-radius: 12px;
            }

            /* Dashboard Section Mobile */
            .dashboard-main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .network-stats {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .analysis-questions {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .question-card {
                padding: calc(var(--spacing-unit));
            }

            /* Hero Section Mobile Improvements */
            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                padding: 0 1rem;
                min-height: auto;
                padding-top: 2rem;
                padding-bottom: 2rem;
            }

            .hero-content {
                text-align: center;
                order: 2;
            }

            .hero-visual {
                order: 1;
            }

            .hero-visual-card {
                padding: 1.5rem;
                margin: 0 1rem;
            }

            .visual-icon {
                width: 80px;
                height: 80px;
                font-size: 2rem;
            }
        }

        /* Customer Number Display */
        .customer-info {
            max-width: 800px;
            margin: 0 auto 2rem auto;
            opacity: 0;
            animation: slideInUp 1s ease-out 0.3s forwards;
        }

        .customer-number-card {
            background: linear-gradient(135deg, var(--primary-color), #4750c4);
            border-radius: var(--border-radius-lg);
            padding: 1.5rem 2rem;
            display: flex;
            align-items: center;
            gap: 1rem;
            box-shadow: 0 8px 32px rgba(46, 49, 145, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .customer-number-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .customer-number-card:hover::before {
            opacity: 1;
        }

        .customer-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
        }

        .customer-icon svg {
            width: 24px;
            height: 24px;
        }

        .customer-details {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
        }

        .customer-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .customer-number {
            font-size: 1.4rem;
            color: white;
            font-weight: 700;
            font-family: 'Courier New', monospace;
            letter-spacing: 1px;
        }

        .form-embed-container {
            max-width: 800px;
            margin: 0 auto;
            background: var(--glass-bg-strong);
            backdrop-filter: blur(20px);
            border-radius: var(--border-radius-xl);
            padding: calc(var(--spacing-unit) * 4);
            box-shadow: var(--card-shadow);
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        













     
        /* Section Separator */
        .section-separator {
            height: 1;

            margin: var(--section-separator-margin);
            position: relative;
            overflow: hidden;
            opacity: 0.0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1), 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .section-wave {
            position: absolute;
            left: 0;
            right: 0;
            height: 40px;
            background-color: transparent;
            overflow: hidden;
            z-index: 1;
        }

        .top-wave {
            top: -40px;
        }

        .bottom-wave {
            bottom: -40px;
            transform: rotate(180deg);
        }

        .wave-svg {
            width: 100%;
            height: 40px;
            fill: currentColor;
        }

        /* Enhanced section styling for better visual separation */
        section {
            position: relative;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        /* Header */
        .header {
            display: none;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 16px;
            justify-content: center;
            width: 100%;
            flex-wrap: wrap;
            /* Allow wrapping on small screens */
        }


        .features {
            position: relative;
            padding: calc(var(--spacing-unit) * 3) 0;
            /* Increased from *4 */
            background: var(--background-light);
            overflow: hidden;
            box-shadow: 0 -10px 30px -15px rgba(0, 0, 0, 0.1);
            border-top: 1px solid rgba(255, 255, 255, 0.8);
        }

        .section-header {
            padding-top: calc(var(--spacing-unit) * 1);
            text-align: center;
            margin-bottom: calc(var(--spacing-unit) * 2.5);
            /* Increased from *1.5 */
            max-width: 900px;
            /* Increased from 800px */
            margin-left: auto;
            margin-right: auto;
        }

        .section-header h2 {
            font-size: 28px;
            /* Reduced from 30px */
            margin-bottom: 16px;
            /* Reduced from 20px */
            background: var(--gradient-primary);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            position: relative;
            line-height: 1.2;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--gradient-secondary);
            border-radius: 2px;
        }

        .section-header p {
            font-size: 18px;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            /* Reduced from 300px */
            gap: 24px;
            /* Increased from 18px */
            margin-top: calc(var(--spacing-unit) * 2.5);
            /* Increased from *1.5 */
        }

        .feature-card {
            background: var(--glass-bg);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border-radius: var(--border-radius);
            border: 1px solid var(--glass-border);
            padding: calc(var(--spacing-unit) * 2);
            /* Increased from *1.5 */
            position: relative;
            overflow: hidden;
            transform: translateZ(0);
            will-change: transform;
            transition: all var(--transition-speed) ease;
            box-shadow: var(--card-shadow);
        }

        .feature-card:hover {
            transform: var(--card-translate);
            box-shadow: var(--card-hover-shadow);
            border-color: transparent;
        }

        .feature-card.visible {
            animation: cardEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .feature-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: var(--gradient-secondary);
            color: white;
            border-radius: 20px;
            margin-bottom: calc(var(--spacing-unit) * 1.5);
            font-size: 28px;
            transform: none;
            box-shadow: 0 8px 24px rgba(255, 107, 44, 0.25);
            transition: all var(--transition-speed) ease;
        }

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

        .feature-card h3 {
            color: var(--primary-color);
            margin-bottom: 12px;
            font-size: 22px;
            font-weight: 700;
        }

        .feature-card p {
            color: var(--text-light);
            font-size: 16px;
            line-height: 1.5;
        }

        .spider-diagram-section {
            padding: calc(var(--spacing-unit) * 3) 0;
            /* Increased from *4 */
            background: linear-gradient(135deg, var(--primary-color) 0%, #4750c4 100%);
            position: relative;
            overflow: hidden;
            color: white;
            box-shadow: 0 -10px 30px -15px rgba(0, 0, 0, 0.2), 0 10px 30px -15px rgba(0, 0, 0, 0.2);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .spider-diagram-section .section-header h2,
        .spider-diagram-section .section-header p {
            color: white;
        }

        .spider-diagram {
            max-width: 700px;
            /* Reduced from 800px */
            height: auto;
            margin: 0 auto;
            display: block;
            filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.15));
            /* Reduced shadow */
            position: relative;
            z-index: 2;
            will-change: transform;
        }

        .spider-diagram.visible {
            animation: diagramEntrance 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .testimonials {
            padding: calc(var(--spacing-unit) *3) 0;
            /* Increased from *2 */
            background: var(--background-light);
            position: relative;
            overflow: hidden;
            box-shadow: 0 -10px 30px -15px rgba(0, 0, 0, 0.1);
            border-top: 1px solid rgba(255, 255, 255, 0.8);
            margin-top: 2px;
            /* Small gap for visual separation */
        }

        .testimonial-card {
            padding: calc(var(--spacing-unit) * 2);
            /* Reduced from *3 */
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            box-shadow: var(--card-shadow);
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            /* Reduced from -5px */
            border-color: transparent;
        }

        .testimonial-card.visible {
            animation: testimonialEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .quote-icon {
            color: var(--secondary-color);
            font-size: 48px;
            /* Reduced from 56px */
            opacity: 0.15;
            margin-bottom: 16px;
            /* Reduced from 24px */
            line-height: 1;
        }

        .testimonial-text {
            font-size: 18px;
            /* Reduced from 20px */
            font-style: italic;
            margin-bottom: 24px;
            /* Reduced from 32px */
            color: var (--text-color);
            line-height: 1.6;
            /* Reduced from 1.7 */
            position: relative;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .author-avatar {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            object-fit: cover;
            padding: 3px;
            background: var(--gradient-secondary);
            box-shadow: 0 4px 16px rgba(255, 107, 44, 0.2);
        }

        .author-name {
            font-weight: 700;
            color: var(--primary-color);
            font-size: 18px;
            margin-bottom: 4px;
        }

        .author-title {
            color: var(--text-light);
            font-size: 15px;
        }

        .two-column-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: calc(var(--spacing-unit) * 3.5);
            /* Increased from *2.5 */
            align-items: center;
        }

        .pain-points-section {
            background: var(--background-white);
            padding: calc(var(--spacing-unit) * 3) 0;
            /* Increased from *4 */
            position: relative;
            overflow: hidden;
            box-shadow: 0 -10px 30px -15px rgba(0, 0, 0, 0.1);
            border-top: 1px solid rgba(255, 255, 255, 0.8);
            margin-top: 2px;
            /* Small gap for visual separation */
        }

        .pain-points-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            /* Reduced from 300px */
            gap: 28px;
            /* Increased from 20px */
            margin-top: calc(var(--spacing-unit) * 3);
            /* Increased from *2 */
        }

        .pain-point-card {
            padding: calc(var(--spacing-unit) * 2);
            /* Increased from *1.5 */
            border-radius: var(--border-radius);
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            position: relative;
            overflow: hidden;
            transition: transform 0.4s ease;
            will-change: transform;
        }

        .pain-point-card:hover {
            transform: translateY(-4px);
            /* Reduced from -5px */
            border-color: transparent;
        }

        .pain-point-icon {
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-secondary);
            border-radius: 16px;
            margin-bottom: var(--spacing-unit);
            color: white;
            font-size: 24px;
            transform: none;
            box-shadow: 0 8px 24px rgba(255, 107, 44, 0.25);
            transition: all var(--transition-speed) ease;
        }

        .pain-point-card:hover .pain-point-icon {
            transform: scale(1.05);
        }

        .pain-point-card h3 {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 12px;
            font-weight: 700;
        }

        .pain-point-card p {
            color: var (--text-light);
            font-size: 16px;
            line-height: 1.5;
        }

        /* Video Section */
        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            border-radius: var(--border-radius);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        /* Solution Intro Section */
        .solution-intro {
            padding: calc(var(--spacing-unit) * 3) 0;
            /* Increased from *2 */
            background: var(--background-light);
            position: relative;
            overflow: hidden;
            box-shadow: 0 -10px 30px -15px rgba(0, 0, 0, 0.1);
            border-top: 1px solid rgba(255, 255, 255, 0.8);
            margin-top: 2px;
            /* Small gap for visual separation */
        }

        /* How it works section */
        .how-it-works {
            padding: calc(var(--spacing-unit) * 3) 0;
            /* Increased from *2 */
            background: var(--background-light);
            position: relative;
            overflow: hidden;
            box-shadow: 0 -10px 30px -15px rgba(0, 0, 0, 0.1);
            border-top: 1px solid rgba(255, 255, 255, 0.8);
            margin-top: 2px;
            /* Small gap for visual separation */
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            /* Reduced from 250px */
            gap: 18px;
            /* Reduced from 24px */
            margin: calc(var(--spacing-unit) * 1.5) 0;
            /* Reduced from *2 */
        }

        .step-item {
            position: relative;
            padding: calc(var(--spacing-unit) * 2);
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: var(--border-radius);
            border: 1px solid var(--glass-border);
            text-align: center;
            transition: transform 0.4s ease;
            will-change: transform;
        }

        .step-item:hover {
            transform: translateY(-5px);
            border-color: transparent;
        }

        .step-item.visible {
            animation: stepEntrance 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        }

        .step-number {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--gradient-secondary);
            color: white;
            font-weight: 700;
            border-radius: 50%;
            margin: 0 auto calc(var(--spacing-unit) * 1.5);
        }

        .step-item h3 {
            color: var(--primary-color);
            margin-bottom: var(--spacing-unit);
            font-weight: 600;
        }

        .cta-box {
            text-align: center;
            padding: calc(var(--spacing-unit) * 3);
            background: var(--gradient-glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: var(--border-radius-lg);
            border: 1px solid var(--glass-border);
            margin-top: calc(var(--spacing-unit) * 3);
            position: relative;
            overflow: hidden;
            box-shadow: var(--card-shadow);
        }

        .cta-box:hover {
            transform: translateY(-5px);
            border-color: transparent;
        }

        .cta-box h3 {
            font-size: 28px;
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 700;
        }

        .cta-box p {
            margin-bottom: 24px;
            font-size: 18px;
            color: var(--text-light);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Buttons */
        .button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 14px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all var(--transition-speed) ease;
            border: none;
            text-decoration: none;
            color: white;
            will-change: transform;
            box-shadow: 0 4px 16px rgba(255, 107, 44, 0.3);
        }

        .button-primary {
            background: var(--gradient-secondary);
            position: relative;
            z-index: 1;
            border: none;
            color: white;
        }

        .button-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 24px rgba(255, 107, 44, 0.4);
        }

        /* Logo Carousel Section */
        .logo-carousel-section {
            background: var(--background-light);
            position: relative;
            overflow: hidden;
            padding: calc(var(--spacing-unit) * 4) 0;
            /* Increased from *4 */
            box-shadow: 0 -10px 30px -15px rgba(0, 0, 0, 0.1);
            border-top: 1px solid rgba(255, 255, 255, 0.8);
            margin-top: 2px;
            /* Small gap for visual separation */
        }

        .logo-carousel {
            position: relative;
            width: 100%;
            max-width: 100vw;
            overflow: hidden;
            padding: 0.75rem 0;
            /* Reduced from 1rem */
            background: rgba(247, 249, 252, 0.5);
            contain: layout style paint;
        }

        .logo-track {
            display: flex;
            width: fit-content;
            animation: scroll 35s linear infinite;
            will-change: transform;
            transform: translateZ(0);
        }

        /* Create a second track for infinite loop effect */
        .logo-track-container {
            display: flex;
            width: 100%;
        }

        .logo-item {
            flex: 0 0 110px;
            height: 45px;
            margin: 0 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.4s ease;
            backface-visibility: hidden;
            will-change: transform;
        }

        .logo-item:hover {
            transform: translateY(-5px) translateZ(0);
        }

        .logo-item img {
            max-width: 100%;
            max-height: 32px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: filter 0.4s ease, opacity 0.4s ease;
        }

        .logo-item:hover img {
            filter: grayscale(0%);
            opacity: 1;
        }

        /* Benefit Highlight Styles */
        .stat-highlight {
            font-size: 64px;
            font-weight: 800;
            line-height: 1;
            margin: 24px 0 8px;
            background: var(--gradient-secondary);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            display: inline-block;
            position: relative;
            text-align: center;
        }

        .stat-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 6px 16px;
            background: var (--secondary-light);
            color: var(--secondary-color);
            border-radius: 20px;
            font-size: 16px;
            font-weight: 700;
            margin: 8px 0;
            box-shadow: 0 4px 12px rgba(255, 107, 44, 0.15);
        }

        .benefit-list {
            margin-top: 32px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 24px;
        }

        .benefit-icon {
            flex-shrink: 0;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--secondary-color);
            color: white;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(255, 107, 44, 0.25);
        }

        .benefit-text h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--primary-color);
        }

        .benefit-text p {
            font-size: 16px;
            color: var(--text-light);
        }

        .key-benefit-box {
            position: relative;
            background: var(--glass-bg);
            border-radius: var(--border-radius);
            padding: 24px;
            margin: 24px 0;
            border-left: 4px solid var(--secondary-color);
            box-shadow: var(--card-shadow);
        }

        .key-benefit-box h4 {
            font-size: 20px;
            color: var(--primary-color);
            margin-bottom: 8px;
        }

        .key-benefit-box p {
            color: var(--text-light);
        }

        .highlight-number {
            font-size: 38px;
            font-weight: 800;
            line-height: 1;
            color: var(--secondary-color);
            display: block;
            margin-bottom: 6px;
        }

        .highlight-text {
            display: block;
            font-size: 14px;
            color: var(--text-light);
            font-weight: 500;
        }

        .stats-container {
            gap: 12px;
            margin: 16px 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }

        .stat-card {
            background: var(--glass-bg);
            border-radius: var(--border-radius);
            padding: 20px;
            text-align: center;
            box-shadow: var(--card-shadow);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-hover-shadow);
        }

        @keyframes scroll {
            0% {
                transform: translateX(0) translateZ(0);
            }

            100% {
                transform: translateX(calc(-50%)) translateZ(0);
            }
        }

        /* Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
            will-change: opacity, transform;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Media Queries */
        @media (max-width: 992px) {
            .contact-form-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            :root {
                --spacing-unit: 10px;
                /* Further reduced from 14px */
            }

            .section-header {
                margin-bottom: calc(var(--spacing-unit) * 2.5);
                /* Adjusted from *3 */
            }

            .hero {
                padding: calc(var(--spacing-unit) * 3) 0;
                /* Reduced vertical padding on mobile */
            }

            .hero h1 {
                font-size: 28px;
                /* Smaller font for mobile */
                line-height: 1.3;
                margin-bottom: calc(var(--spacing-unit) * 1);
                padding: 0 10px;
            }

            .hero-subheading {
                font-size: 16px !important;
                padding: 0 15px;
            }

            .hero p {
                font-size: 15px;
                padding: 0 15px;
                margin-bottom: 15px;
            }

            .hero-content {
                padding: 20px 10px;
                width: 92%;
            }

            .logo-container img.hero-logo:first-of-type {
                height: 80px !important;
                width: auto !important;
            }

            .logo-container img.hero-logo:last-of-type {
                height: 30px !important;
                width: auto !important;
            }

            .section-header h2 {
                font-size: 26px;
                /* Reduced from 28px */
            }

            .feature-card {
                padding: calc(var(--spacing-unit) * 1.5);
                /* Reduced from *2 */
            }

            .two-column-grid {
                grid-template-columns: 1fr;
                gap: calc(var(--spacing-unit) * 1.5);
                /* Reduced from *2 */
            }

            .features,
            .testimonials,
            .solution-intro,
            .how-it-works,
            .spider-diagram-section,
            .pain-points-section,
            .logo-carousel-section {
                padding: calc(var(--spacing-unit) * 4) 0;
                /* Increased from *3 */
            }

            .stat-highlight {
                font-size: 38px;
                /* Reduced from 42px */
            }

            .highlight-number {
                font-size: 32px;
                /* Reduced from 36px */
            }
        }

        /* Additional breakpoint for smaller mobile devices */
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 24px;
                line-height: 1.3;
            }

            .hero-content {
                width: 95%;
                padding: 20px 10px;
            }

            .hero {
                padding: calc(var(--spacing-unit) * 2) 0;
            }

            .logo-container {
                gap: 8px;
            }

            .logo-container img.hero-logo:first-of-type {
                height: 65px !important;
            }

            .logo-container img.hero-logo:last-of-type {
                height: 25px !important;
            }

            .logo-container span {
                font-size: 20px !important;
                margin: 0 5px;
            }

            .hero-subheading {
                font-size: 15px !important;
            }
        }

        html {
            scroll-behavior: smooth;
        }

        /* Base animations - simplified for better performance */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* Scroll-triggered animations - optimized with GPU acceleration */
        @keyframes cardEntrance {
            0% {
                opacity: 0;
                transform: translateY(100px) scale(0.9) translateZ(0);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1) translateZ(0);
            }
        }

        @keyframes testimonialEntrance {
            0% {
                opacity: 0;
                transform: translateX(-100px) translateZ(0);
            }

            100% {
                opacity: 1;
                transform: translateX(0) translateZ(0);
            }
        }

        @keyframes stepEntrance {
            0% {
                opacity: 0;
                transform: translateY(50px) scale(0.95) translateZ(0);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1) translateZ(0);
            }
        }

        /* Background pulse effect - optimized for performance */
        @keyframes bgPulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.6;
            }

            50% {
                transform: scale(1.05);
                opacity: 0.4;
            }
        }

        /* Scroll Progress Indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--scroll-indicator-size);
            background: linear-gradient(to right,
                    var(--primary-color),
                    var(--secondary-color));
            transform-origin: left;
            z-index: 1000;
            will-change: transform;
        }

        /* Additional trusted partners styles */
        .highlight-badge {
            display: inline-block;
            padding: 8px 16px;
            background: var(--secondary-light);
            color: var (--secondary-color);
            border-radius: 30px;
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 24px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .trusted-partners-title {
            margin-bottom: 2rem;
            text-align: center;
        }

        .trusted-partners-title h3 {
            font-size: 1.8rem;
            margin-bottom: 0;
            line-height: 1.4;
        }

        /* Logo carousel improvements */
        .logo-carousel {
            padding: 1rem 0;
            position: relative;
            perspective: 1000px;
        }

        /* Pulsating animation for highlights */
        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }
        }

        .pulse {
            animation: none;
        }

        /* Sticky CTA Button with background blur */
        .sticky-cta {
            position: fixed;
            bottom: 30px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            z-index: 100;
            pointer-events: none;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }

        .sticky-cta.hidden {
            transform: translateY(100px);
            opacity: 0;
        }

        .sticky-cta-button {
            pointer-events: auto;
            background: rgba(46, 49, 145, 0.65);
            /* Changed to blue and more transparent */
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: white;
            padding: 16px 36px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 18px;
            text-decoration: none;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .sticky-cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
            background: rgba(46, 49, 145, 0.9);
            /* Changed hover state to blue but less transparent */
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        /* Improved Testimonial Card Styles */
        .testimonial-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }

        .testimonial-content {
            margin-bottom: 1.5rem;
        }

        .quote-icon {
            color: var(--secondary-color);
            font-size: 36px;
            opacity: 0.2;
            margin-bottom: 0.75rem;
            line-height: 1;
        }

        .testimonial-text {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.6;
            font-style: normal;
        }

        .author-avatar {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            object-fit: cover;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .author-name {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.25rem;
            font-size: 16px;
        }

        .author-title {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.4;
        }

        /* Responsive Testimonial Layout */
        @media (max-width: 768px) {
            .testimonial-card {
                padding: 1.5rem !important;
            }

            .testimonial-card > div > div {
                flex-direction: column;
                text-align: center;
            }

            .testimonial-card .author-avatar {
                margin: 0 auto 1rem;
            }

            .testimonial-author {
                justify-content: center !important;
            }
        }

        /* Horizontal Scrolling Testimonials */
        .testimonials-scroll-wrapper {
            position: relative;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto 2rem;
            overflow: visible;
        }

        /* Scroll Navigation Buttons */
        .testimonial-scroll-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(46, 49, 145, 0.9);
            border: none;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .testimonial-scroll-btn:hover {
            background: var(--primary-color);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }

        .testimonial-scroll-left {
            left: -24px;
        }

        .testimonial-scroll-right {
            right: -24px;
        }

        .testimonials-container {
            display: flex;
            gap: 2rem;
            overflow-x: auto;
            overflow-y: visible;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE/Edge */
            padding: 1rem 2rem;
            margin: 0 -2rem;
            cursor: grab;
            user-select: none;
        }

        .testimonials-container:active {
            cursor: grabbing;
        }

        .testimonials-container::-webkit-scrollbar {
            display: none; /* Chrome/Safari/Opera */
        }

        .testimonials-container .testimonial-card {
            flex: 0 0 calc(50% - 1rem);
            min-width: calc(50% - 1rem);
            max-width: calc(50% - 1rem);
            width: calc(50% - 1rem);
            scroll-snap-align: start;
            transition: opacity 0.4s ease, transform 0.4s ease;
            padding: 1.75rem;
            height: auto;
            flex-shrink: 0;
            display: block;
        }

        /* Shorter card for Cindy */
        .testimonials-container .testimonial-card-short {
            flex: 0 0 calc(38% - 1rem);
            min-width: calc(30% - 1rem);
            max-width: calc(30% - 1rem);
            width: calc(38% - 1rem);
        }

        .testimonials-container .testimonial-card .testimonial-text {
            font-size: 14px;
            line-height: 1.65;
        }

        .testimonials-container .testimonial-card .quote-icon {
            font-size: 32px;
            margin-bottom: 0.5rem;
        }

        /* Fade effect for cards not in view */
        .testimonials-container .testimonial-card:not(:nth-child(1)):not(:nth-child(2)) {
            opacity: 0.3;
            transform: scale(0.95);
        }

        .testimonials-container .testimonial-card:nth-child(1),
        .testimonials-container .testimonial-card:nth-child(2) {
            opacity: 1;
            transform: scale(1);
        }

        /* Navigation Dots */
        .testimonials-nav {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            margin-top: 2rem;
            padding: 1rem 0;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid var(--primary-color);
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            padding: 0;
        }

        .nav-dot:hover {
            background: rgba(46, 49, 145, 0.3);
            transform: scale(1.2);
        }

        .nav-dot.active {
            background: var(--primary-color);
            transform: scale(1.3);
        }

        /* Responsive adjustments */
        @media (max-width: 1024px) {
            .testimonials-container .testimonial-card {
                flex: 0 0 calc(60% - 1rem);
                min-width: calc(60% - 1rem);
            }
        }

        @media (max-width: 768px) {
            .testimonials-container {
                gap: 1rem;
            }

            .testimonials-container .testimonial-card {
                flex: 0 0 85%;
                min-width: 85%;
                padding: 1.5rem;
            }

            .testimonials-container .testimonial-card:not(:nth-child(1)) {
                opacity: 0.3;
            }

            .testimonials-container .testimonial-card:nth-child(1) {
                opacity: 1;
            }

            .nav-dot {
                width: 10px;
                height: 10px;
            }
        }