        /* ============================================
           CSS CUSTOM PROPERTIES (Theme)
           ============================================ */
        :root {
            --primary-gradient: linear-gradient(135deg, #1d4ed8, #2563eb);
            --primary-color: #1d4ed8;
            --secondary-color: #3b82f6;
            --accent-gradient: linear-gradient(135deg, #ff5a00, #ff7a30);
            --success-color: #10b981;
            --success-light: #d1fae5;
            --dark-color: #0a1628;
            --dark-secondary: #0f1e45;
            --text-dark: #1f2937;
            --text-muted: #6b7280;
            --text-light: #9ca3af;
            --bg-light: #f0f5ff;
            --bg-white: #ffffff;
            --glass-bg: rgba(255, 255, 255, 0.1);
            --glass-border: rgba(255, 255, 255, 0.2);
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --shadow-glow: 0 0 40px rgba(29, 78, 216, 0.3);
            --border-radius-sm: 8px;
            --border-radius-md: 12px;
            --border-radius-lg: 20px;
            --border-radius-xl: 28px;
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
            --transition-slow: 0.5s ease;
        }

        /* ============================================
           BASE STYLES
           ============================================ */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: clip;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: clip;
            max-width: 100vw;
            background: var(--bg-white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            line-height: 1.2;
            color: var(--text-dark);
        }

        .section-title {
            font-size: clamp(1.5rem, 3vw, 2.25rem);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 0.975rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 3rem;
        }

        .gradient-text {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ============================================
           BUTTONS
           ============================================ */
        .btn-primary-gradient {
            background: linear-gradient(135deg, #ff5a00, #e64e00);
            border: none;
            color: white;
            padding: 14px 32px;
            border-radius: var(--border-radius-md);
            font-weight: 600;
            font-size: 1rem;
            transition: all var(--transition-normal);
            box-shadow: 0 4px 15px rgba(255, 90, 0, 0.4);
            position: relative;
            overflow: hidden;
        }

        .btn-primary-gradient::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-primary-gradient:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 90, 0, 0.5);
            color: white;
        }

        .btn-primary-gradient:hover::before {
            left: 100%;
        }

        .btn-outline-gradient {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            padding: 12px 30px;
            border-radius: var(--border-radius-md);
            font-weight: 600;
            font-size: 1rem;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
        }

        .btn-outline-gradient:hover {
            background: var(--primary-gradient);
            border-color: transparent;
            color: white;
            transform: translateY(-2px);
        }

        .btn-white {
            background: white;
            border: none;
            color: var(--primary-color);
            padding: 14px 32px;
            border-radius: var(--border-radius-md);
            font-weight: 600;
            font-size: 1rem;
            transition: all var(--transition-normal);
            box-shadow: var(--shadow-md);
        }

        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
            color: var(--secondary-color);
        }

        .btn-orange {
            background: linear-gradient(135deg, #ff5a00, #e64e00);
            border: none;
            color: white;
            padding: 14px 32px;
            border-radius: var(--border-radius-md);
            font-weight: 600;
            font-size: 1rem;
            transition: all var(--transition-normal);
            box-shadow: 0 4px 15px rgba(255,90,0,0.35);
            text-decoration: none;
        }

        .btn-orange:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255,90,0,0.5);
            color: white;
        }

        /* ============================================
           NAVBAR
           ============================================ */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 1.5rem 0;
            transition: all var(--transition-normal);
            background: #1d4ed8;
        }

        .navbar.scrolled {
            background: #1d4ed8;
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 4px 24px rgba(0,0,0,0.15);
            padding: 0.75rem 0;
        }

        .navbar .container {
            transition: all var(--transition-normal);
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 1.5rem;
            color: white !important;
            transition: all var(--transition-normal);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .navbar.scrolled .navbar-brand {
            color: white !important;
            font-size: 1.25rem;
        }

        .navbar-brand .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--primary-gradient);
            border-radius: var(--border-radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all var(--transition-normal);
        }

        .navbar.scrolled .navbar-brand .logo-icon {
            width: 35px;
            height: 35px;
        }

        /* Nav logo image */
        .nav-logo {
            height: 40px;
            width: 40px;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 6px 16px rgba(29,78,216,0.08);
        }

        /* Footer logo */
        .footer-logo {
            height: 48px;
            width: 48px;
            object-fit: contain;
            border-radius: 8px;
            box-shadow: 0 8px 24px rgba(29,78,216,0.06);
            vertical-align: middle;
        }

        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            transition: all var(--transition-normal);
            position: relative;
        }

        .navbar.scrolled .nav-link {
            color: rgba(255, 255, 255, 0.9) !important;
        }

        .navbar-nav .nav-link:hover {
            color: white !important;
        }

        .navbar.scrolled .nav-link:hover {
            color: #ff7a30 !important;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: currentColor;
            transition: all var(--transition-normal);
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after {
            width: 60%;
        }

        .navbar-toggler {
            border: none;
            padding: 0;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .navbar.scrolled .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2831, 41, 55, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* ============================================
           HERO SECTION
           ============================================ */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, #2d6cc0 0%, #7ab5e8 50%, #c8e8fa 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding-top: 140px;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 20% 20%, rgba(59, 130, 246, 0.25) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(255, 90, 0, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
            z-index: 1;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 150px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 150'%3E%3Cpath fill='%23f8fafc' d='M0,64L48,80C96,96,192,128,288,128C384,128,480,96,576,85.3C672,75,768,85,864,96C960,107,1056,117,1152,112C1248,107,1344,85,1392,74.7L1440,64L1440,150L1392,150C1344,150,1248,150,1152,150C1056,150,960,150,864,150C768,150,672,150,576,150C480,150,384,150,288,150C192,150,96,150,48,150L0,150Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
            background-size: cover;
            z-index: 2;
        }

        /* Floating shapes */
        .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1;
            overflow: hidden;
        }

        .floating-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }

        .floating-shape:nth-child(1) {
            width: 400px;
            height: 400px;
            background: var(--primary-gradient);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .floating-shape:nth-child(2) {
            width: 300px;
            height: 300px;
            background: var(--accent-gradient);
            bottom: 20%;
            left: -50px;
            animation-delay: -5s;
        }

        .floating-shape:nth-child(3) {
            width: 200px;
            height: 200px;
            background: var(--primary-gradient);
            top: 40%;
            right: 10%;
            animation-delay: -10s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            33% { transform: translateY(-30px) rotate(5deg); }
            66% { transform: translateY(20px) rotate(-5deg); }
        }

        .hero-content {
            position: relative;
            z-index: 3;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(15, 30, 53, 0.12);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(15, 30, 53, 0.35);
            padding: 0.55rem 1.2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            color: #0f1e35;
            margin-bottom: 1.5rem;
        }

        .hero-badge .badge-dot {
            width: 8px;
            height: 8px;
            background: var(--success-color);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        .hero-title {
            font-size: clamp(2rem, 4.2vw, 3.5rem);
            font-weight: 800;
            color: #0f1e35;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, #ff5a00, #ffaa60);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 1.15rem;
            color: rgba(15, 30, 53, 0.88);
            max-width: 100%;
            margin-bottom: 2rem;
            line-height: 1.75;
            font-weight: 400;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(15, 30, 53, 0.15);
        }

        .hero-stat {
            text-align: left;
        }

        .hero-stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: #0f1e35;
            display: flex;
            align-items: baseline;
            gap: 0.25rem;
        }

        .hero-stat-value span {
            font-size: 1.25rem;
            color: #ff5a00;
        }

        .hero-stat-label {
            font-size: 0.95rem;
            font-weight: 600;
            color: rgba(15, 30, 53, 0.78);
            margin-top: 0.25rem;
        }

        .hero-visual {
            position: relative;
            z-index: 3;
        }

        .hero-image-wrapper {
            position: relative;
            perspective: 1000px;
        }

        .hero-image {
            width: 100%;
            max-width: 500px;
            margin-left: auto;
            display: block;
            border-radius: var(--border-radius-xl);
            box-shadow: 
                0 25px 50px -12px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 255, 255, 0.1);
            transform: rotateY(-5deg) rotateX(5deg);
            transition: transform var(--transition-slow);
        }

        .hero-image:hover {
            transform: rotateY(0deg) rotateX(0deg);
        }

        .hero-floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 1.25rem;
            border-radius: var(--border-radius-md);
            box-shadow: var(--shadow-xl);
            display: flex;
            align-items: center;
            gap: 0.75rem;
            animation: floatCard 3s infinite ease-in-out;
        }

        .hero-floating-card.card-1 {
            top: 10%;
            left: -10%;
            animation-delay: 0s;
        }

        .hero-floating-card.card-2 {
            bottom: 20%;
            right: -5%;
            animation-delay: -1.5s;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating-card-icon {
            width: 40px;
            height: 40px;
            border-radius: var(--border-radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
        }

        .floating-card-icon.success {
            background: var(--success-light);
            color: var(--success-color);
        }

        .floating-card-icon.primary {
            background: rgba(29, 78, 216, 0.1);
            color: var(--primary-color);
        }

        .floating-card-text {
            font-size: 0.875rem;
        }

        .floating-card-text strong {
            display: block;
            color: var(--text-dark);
        }

        .floating-card-text span {
            color: var(--text-muted);
            font-size: 0.75rem;
        }

        /* ============================================
           PROBLEMS SECTION
           ============================================ */
        .problems-section {
            background: linear-gradient(160deg, #fff8f5 0%, var(--bg-light) 60%);
            padding: 6rem 0;
            position: relative;
        }

        .problems-section::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            height: 100px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%23ffffff' d='M0,0L1440,100L1440,100L0,100Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
            background-size: cover;
        }

        .problem-card {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
            height: 100%;
            position: relative;
            overflow: hidden;
            border: 1px solid transparent;
        }

        .problem-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent-gradient);
            transform: scaleX(1);
            transition: transform var(--transition-normal);
        }

        .problem-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
            border-color: rgba(29, 78, 216, 0.1);
        }

        .problem-card:hover::before {
            transform: scaleX(1);
        }

        .problem-icon {
            width: 60px;
            height: 60px;
            border-radius: var(--border-radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, rgba(29, 78, 216, 0.1), rgba(255, 90, 0, 0.08));
            color: var(--primary-color);
        }

        .problem-card h4 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .problem-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin: 0;
        }

        /* ============================================
           BENEFITS SECTION
           ============================================ */
        .benefits-section {
            padding: 6rem 0;
            background: white;
            position: relative;
        }

        .benefit-row {
            display: flex;
            align-items: center;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .benefit-row:nth-child(even) {
            flex-direction: row-reverse;
        }

        .benefit-row:last-child {
            margin-bottom: 0;
        }

        .benefit-content {
            flex: 1;
        }

        .benefit-visual {
            flex: 1;
            position: relative;
        }

        .benefit-number {
            font-size: 5rem;
            font-weight: 800;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            opacity: 0.3;
            line-height: 1;
            margin-bottom: -1rem;
        }

        .benefit-content h3 {
            font-size: 1.75rem;
            margin-bottom: 1rem;
        }

        .benefit-content p {
            color: var(--text-muted);
            font-size: 1.1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .benefit-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .benefit-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.5rem 0;
            color: var(--text-dark);
        }

        .benefit-features li i {
            color: var(--success-color);
            font-size: 1.25rem;
        }

        .benefit-card {
            background: var(--bg-light);
            border-radius: var(--border-radius-xl);
            padding: 2.5rem;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: var(--primary-gradient);
            opacity: 0.05;
            border-radius: 50%;
        }

        .benefit-card-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-gradient);
            border-radius: var(--border-radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            margin-bottom: 1.5rem;
            box-shadow: 0 10px 30px rgba(29, 78, 216, 0.3);
        }

        .benefit-card h4 {
            font-size: 1.25rem;
            margin-bottom: 0.75rem;
        }

        .benefit-card p {
            color: var(--text-muted);
            margin: 0;
        }

        /* ============================================
           FEATURES SECTION
           ============================================ */
        .features-section {
            padding: 6rem 0;
            background: linear-gradient(150deg, #3a7ac8 0%, #7ec0ec 50%, #cdeafa 100%);
            position: relative;
            overflow: hidden;
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(ellipse at 0% 50%, rgba(29, 78, 216, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 100% 50%, rgba(255, 90, 0, 0.10) 0%, transparent 50%);
        }

        .features-section .section-title,
        .features-section .section-subtitle {
            color: #0f1e35;
        }

        .features-section .section-subtitle {
            color: rgba(15, 30, 53, 0.7);
        }

        /* 3-Step Process */
        .process-steps {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0;
            margin-bottom: 4rem;
            flex-wrap: wrap;
            position: relative;
        }

        .process-step {
            text-align: center;
            padding: 2rem;
            position: relative;
            flex: 1;
            max-width: 280px;
        }

        .process-connector {
            width: 80px;
            height: 3px;
            position: relative;
            overflow: visible;
            /* animated scrolling dashes */
            background-image: repeating-linear-gradient(
                90deg,
                #ff5a00 0, #ff5a00 10px,
                transparent 10px, transparent 20px
            );
            background-size: 20px 100%;
            animation: dashScroll 0.45s linear infinite;
        }

        /* chevron arrow tip */
        .process-connector::after {
            content: '';
            position: absolute;
            right: -13px;
            top: 50%;
            width: 10px;
            height: 10px;
            border-top: 3px solid #ff7a30;
            border-right: 3px solid #ff7a30;
            transform: translateY(-50%) rotate(45deg);
            animation: arrowPulse 1.1s ease-in-out infinite;
            filter: drop-shadow(0 0 4px rgba(255,90,0,0.8));
        }

        .process-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 1.5rem;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            position: relative;
            box-shadow: 0 10px 30px rgba(29, 78, 216, 0.4);
            animation: iconPulse 2.8s ease-in-out infinite;
        }

        /* spinning dashed orbit ring */
        .process-icon::after {
            content: '';
            position: absolute;
            inset: -10px;
            border-radius: 50%;
            border: 2px dashed rgba(255, 90, 0, 0.55);
            animation: ringOrbit 5s linear infinite;
        }

        .process-icon::before {
            content: attr(data-step);
            position: absolute;
            top: -10px;
            right: -10px;
            width: 30px;
            height: 30px;
            background: #ff5a00;
            border-radius: 50%;
            font-size: 0.875rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
            animation: badgePop 0.6s cubic-bezier(0.34,1.56,0.64,1) both;
        }

        .process-title {
            font-size: 1.25rem;
            color: #0f1e35;
            margin-bottom: 0.5rem;
        }

        .process-desc {
            color: rgba(15, 30, 53, 0.65);
            font-size: 0.95rem;
        }

        /* ---- Process animations ---- */
        @keyframes dashScroll {
            from { background-position: 0 0; }
            to   { background-position: 20px 0; }
        }
        @keyframes arrowPulse {
            0%, 100% { transform: translateY(-50%) rotate(45deg) scale(1);   opacity: 1; }
            50%       { transform: translateY(-50%) rotate(45deg) scale(1.35); opacity: 0.6; }
        }
        @keyframes ringOrbit {
            from { transform: rotate(0deg); }
            to   { transform: rotate(360deg); }
        }
        @keyframes iconPulse {
            0%, 100% { box-shadow: 0 10px 30px rgba(29,78,216,0.4); }
            50%       { box-shadow: 0 14px 40px rgba(29,78,216,0.7), 0 0 0 8px rgba(29,78,216,0.1); }
        }
        @keyframes badgePop {
            0%   { transform: scale(0) rotate(-20deg); opacity: 0; }
            70%  { transform: scale(1.25) rotate(5deg); opacity: 1; }
            100% { transform: scale(1) rotate(0deg); opacity: 1; }
        }
        @keyframes stepSlideUp {
            from { opacity: 0; transform: translateY(40px) scale(0.96); }
            to   { opacity: 1; transform: translateY(0) scale(1); }
        }

        .process-step { animation: stepSlideUp 0.65s cubic-bezier(0.34,1.2,0.64,1) both; }
        .process-step:nth-child(1) { animation-delay: 0.05s; }
        .process-step:nth-child(3) { animation-delay: 0.25s; }
        .process-step:nth-child(5) { animation-delay: 0.45s; }

        .process-step:nth-child(3) .process-icon { animation-delay: 0.4s; }
        .process-step:nth-child(5) .process-icon { animation-delay: 0.8s; }
        .process-step:nth-child(3) .process-icon::after { animation-delay: 0.4s; animation-direction: reverse; }
        .process-step:nth-child(5) .process-icon::after { animation-delay: 0.2s; }
        .process-step:nth-child(3) .process-icon::before { animation-delay: 0.35s; }
        .process-step:nth-child(5) .process-icon::before { animation-delay: 0.7s; }

        .process-step:hover .process-icon {
            transform: scale(1.1);
            box-shadow: 0 18px 45px rgba(29,78,216,0.65), 0 0 0 12px rgba(29,78,216,0.12);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation-play-state: paused;
        }
        .process-step:hover .process-icon::after {
            animation-duration: 1.5s;
            border-color: rgba(255,90,0,0.9);
        }

        /* Feature Cards Grid */
        /* FEATURE CARDS SECTION */
        .feature-cards-section {
            padding: 5rem 0;
            background: #f0f5ff;
            position: relative;
            overflow: hidden;
        }

        .feature-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }

        .feature-card {
            background: #ffffff;
            backdrop-filter: none;
            border: 1px solid #dce8fb;
            border-radius: var(--border-radius-lg);
            padding: 2rem;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(29, 78, 216, 0.08);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--primary-gradient);
            opacity: 0;
            transition: opacity var(--transition-normal);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            border-color: #a0c0f0;
            box-shadow: 0 16px 40px rgba(29, 78, 216, 0.15);
        }

        .feature-card:hover::before {
            opacity: 0.05;
        }

        .feature-card-content {
            position: relative;
            z-index: 1;
        }

        .feature-card-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-gradient);
            border-radius: var(--border-radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: white;
            margin-bottom: 1.25rem;
        }

        .feature-card h4 {
            color: #0f1e35;
            font-size: 1.125rem;
            margin-bottom: 0.75rem;
        }

        .feature-card p {
            color: rgba(15, 30, 53, 0.65);
            font-size: 0.95rem;
            margin: 0;
        }

        /* ============================================
           SOCIAL PROOF SECTION
           ============================================ */
        .social-proof-section {
            padding: 6rem 0;
            background: linear-gradient(160deg, #fff5f0 0%, #ffffff 50%, #f0f5ff 100%);
            position: relative;
        }

        .metrics-row {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 4rem;
        }

        .metric-card {
            text-align: center;
            padding: 2rem 3rem;
            background: white;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

        .metric-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--accent-gradient);
        }

        .metric-value {
            font-size: 3rem;
            font-weight: 800;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .metric-label {
            color: var(--text-muted);
            font-size: 1rem;
        }

        .testimonials-wrapper {
            max-width: 900px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: white;
            border-radius: var(--border-radius-xl);
            padding: 2.5rem;
            box-shadow: var(--shadow-lg);
            text-align: center;
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            font-size: 6rem;
            color: var(--primary-color);
            opacity: 0.1;
            position: absolute;
            top: 0;
            left: 2rem;
            line-height: 1;
            font-family: Georgia, serif;
        }

        .testimonial-text {
            font-size: 1.25rem;
            color: var(--text-dark);
            line-height: 1.8;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .testimonial-info {
            text-align: left;
        }

        .testimonial-name {
            font-weight: 600;
            color: var(--text-dark);
        }

        .testimonial-role {
            color: var(--text-muted);
            font-size: 0.875rem;
        }

        .logos-row {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 3rem;
            opacity: 0.6;
        }

        .client-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-muted);
        }

        /* ============================================
           DEMO SECTION
           ============================================ */
        .demo-section {
            padding: 6rem 0;
            background: white;
            position: relative;
        }

        .demo-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .demo-preview {
            position: relative;
        }

        /* Platform Features Showcase */
        .platform-features-preview {
            background: white;
            border-radius: var(--border-radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            border: 1px solid var(--border-light);
        }

        .feature-showcase-header {
            background: linear-gradient(135deg, rgba(29,78,216,0.08), rgba(29,78,216,0.04));
            padding: 2rem;
            border-bottom: 1px solid var(--border-light);
        }

        .feature-showcase-header h4 {
            color: var(--primary-color);
            margin: 0 0 0.5rem 0;
            font-size: 1.5rem;
            font-weight: 700;
        }

        .features-showcase-grid {
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
        }

        .showcase-item {
            padding: 1.5rem;
            background: var(--bg-light);
            border-radius: var(--border-radius-md);
            border: 1px solid var(--border-light);
            transition: all var(--transition-normal);
        }

        .showcase-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: #ff5a00;
        }

        .showcase-icon {
            width: 48px;
            height: 48px;
            background: var(--primary-gradient);
            border-radius: var(--border-radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .showcase-item h5 {
            color: var(--text-dark);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .showcase-item p {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.5;
            margin: 0;
        }

        @media (max-width: 768px) {
            .features-showcase-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Legacy chat widget styles - keep for other uses */
        .chat-widget-preview {
            background: var(--dark-color);
            border-radius: var(--border-radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .chat-header {
            background: var(--primary-gradient);
            padding: 1.25rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .chat-avatar {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.25rem;
        }

        .chat-info h5 {
            color: white;
            margin: 0;
            font-size: 1rem;
        }

        .chat-info span {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.75rem;
        }

        .chat-body {
            padding: 1.5rem;
            min-height: 300px;
            background: #1e1e2f;
        }

        .chat-message {
            margin-bottom: 1rem;
            display: flex;
            flex-direction: column;
        }

        .chat-message.bot {
            align-items: flex-start;
        }

        .chat-message.user {
            align-items: flex-end;
        }

        .message-bubble {
            max-width: 80%;
            padding: 1rem 1.25rem;
            border-radius: var(--border-radius-md);
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .chat-message.bot .message-bubble {
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.9);
            border-bottom-left-radius: 4px;
        }

        .chat-message.user .message-bubble {
            background: var(--primary-gradient);
            color: white;
            border-bottom-right-radius: 4px;
        }

        .chat-input-area {
            padding: 1rem 1.5rem;
            background: rgba(0, 0, 0, 0.2);
            display: flex;
            gap: 1rem;
        }

        .chat-input {
            flex: 1;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: var(--border-radius-md);
            padding: 0.75rem 1rem;
            color: white;
            font-size: 0.95rem;
        }

        .chat-input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .chat-send-btn {
            width: 45px;
            height: 45px;
            background: var(--primary-gradient);
            border: none;
            border-radius: var(--border-radius-sm);
            color: white;
            cursor: pointer;
            transition: all var(--transition-normal);
        }

        .chat-send-btn:hover {
            transform: scale(1.05);
        }

        .demo-form-wrapper {
            padding: 2.5rem;
            background: var(--bg-light);
            border-radius: var(--border-radius-xl);
        }

        .demo-form-wrapper h3 {
            margin-bottom: 0.5rem;
        }

        .demo-form-wrapper p {
            color: var(--text-muted);
            margin-bottom: 2rem;
        }

        .demo-form .form-control {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: var(--border-radius-sm);
            padding: 0.875rem 1rem;
            font-size: 1rem;
            transition: all var(--transition-fast);
        }

        .demo-form .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
        }

        .demo-form .form-label {
            font-weight: 500;
            color: var(--text-dark);
            margin-bottom: 0.5rem;
        }

        /* ============================================
           FAQ SECTION
           ============================================ */
        .faq-section {
            padding: 6rem 0;
            background: var(--bg-light);
        }

        .faq-wrapper {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            background: white;
            border: none !important;
            border-radius: var(--border-radius-md) !important;
            margin-bottom: 1rem;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
        }

        .accordion-header {
            margin: 0;
        }

        .accordion-button {
            background: white;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 1.25rem 1.5rem;
            border: none;
            box-shadow: none !important;
        }

        .accordion-button:not(.collapsed) {
            background: white;
            color: var(--primary-color);
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231d4ed8'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            transition: transform var(--transition-normal);
        }

        .accordion-body {
            padding: 0 1.5rem 1.5rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* ============================================
           COMPLIANCE & DATA SECURITY CARD
           ============================================ */
        .compliance-section {
            padding: 5rem 0 6rem;
            background: linear-gradient(160deg, #fff8f5 0%, var(--bg-light) 60%);
            position: relative;
        }

        .compliance-card {
            position: relative;
            max-width: 960px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: var(--border-radius-lg);
            padding: 4rem 2.5rem 3.5rem;
            text-align: center;
            overflow: hidden;
            border: 1px solid rgba(29, 78, 216, 0.08);
            box-shadow: var(--shadow-xl);
            transition: all var(--transition-normal);
        }

        .compliance-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--accent-gradient);
        }

        .compliance-card::after {
            content: '';
            position: absolute;
            top: -120px;
            left: 50%;
            transform: translateX(-50%);
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(255, 90, 0, 0.12) 0%, transparent 60%);
            pointer-events: none;
        }



        .compliance-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 30px 70px rgba(29, 78, 216, 0.18);
        }

        .compliance-icon-wrap {
            position: relative;
            display: flex;
            justify-content: center;
            margin-bottom: 1.75rem;
            z-index: 1;
        }

        .compliance-icon-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: none;
            border: none;
            box-shadow: none;
        }

        .compliance-icon-circle img {
            width: 135px;
            height: 135px;
            object-fit: contain;
        }

        .compliance-title {
            position: relative;
            font-size: clamp(1.875rem, 4.5vw, 3rem);
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 1rem;
            letter-spacing: -0.5px;
            z-index: 1;
        }

        .compliance-subtitle {
            position: relative;
            font-size: 0.95rem;
            color: var(--text-dark);
            margin-bottom: 0.35rem;
            font-weight: 600;
            z-index: 1;
        }

        .compliance-desc {
            position: relative;
            max-width: 620px;
            margin: 0 auto;
            color: var(--text-muted);
            font-size: 1.05rem;
            line-height: 1.75;
            z-index: 1;
        }

        .compliance-highlight {
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
        }

        @media (max-width: 576px) {
            .compliance-card {
                padding: 3rem 1.25rem 2.5rem;
                border-radius: var(--border-radius-md);
            }
            .compliance-icon-circle img {
                width: 100px;
                height: 100px;
            }
        }

        /* ============================================
           CTA SECTION
           ============================================ */
        .cta-section {
            padding: 6rem 0;
            background: linear-gradient(120deg, #4a8fd4 0%, #8ecbf0 45%, #d5eefa 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(29,78,216,0.1) 0%, transparent 50%);
            animation: rotateBg 30s linear infinite;
        }

        @keyframes rotateBg {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .cta-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .cta-content h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            color: #0f1e35;
            margin-bottom: 1rem;
        }

        .cta-content p {
            font-size: 1.25rem;
            color: rgba(15, 30, 53, 0.75);
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        /* ============================================
           FOOTER
           ============================================ */
        .footer {
            background: #1d4ed8;
            padding: 4rem 0 2rem;
            color: rgba(255, 255, 255, 0.7);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand .navbar-brand {
            margin-bottom: 1rem;
            display: inline-flex;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-social {
            display: flex;
            gap: 1rem;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all var(--transition-normal);
        }

        .footer-social a:hover {
            background: var(--accent-gradient);
            transform: translateY(-3px);
        }

        .footer-links h5 {
            color: white;
            font-size: 1rem;
            margin-bottom: 1.5rem;
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.95rem;
            transition: all var(--transition-fast);
        }

        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            margin: 0;
            font-size: 0.875rem;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color var(--transition-fast);
        }

        .footer-legal a:hover {
            color: white;
        }

        /* ============================================
           RESPONSIVE STYLES
           ============================================ */
        @media (max-width: 991.98px) {
            .navbar {
                background: #1d4ed8 !important;
                backdrop-filter: none;
                -webkit-backdrop-filter: none;
                border-bottom: none;
            }
            .navbar.scrolled {
                background: #1d4ed8 !important;
                border-bottom-color: rgba(255,255,255,0.08);
            }
            .navbar-collapse {
                margin-top: 0.5rem;
                background: #1d4ed8;
                backdrop-filter: blur(24px);
                -webkit-backdrop-filter: blur(24px);
                border: 1px solid rgba(255, 255, 255, 0.12);
                border-radius: 14px;
                padding: 0.75rem 1.25rem 1rem;
                box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
            }
            .navbar-collapse .nav-link {
                padding: 0.7rem 0.5rem !important;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
                color: rgba(255, 255, 255, 0.92) !important;
                font-weight: 500;
            }
            .navbar-collapse .nav-link:hover { color: #ff5a00 !important; }
            .navbar-collapse .nav-link:last-of-type { border-bottom: none; }
            .navbar-collapse .btn {
                margin-top: 0.75rem;
                width: 100%;
                justify-content: center;
                background: linear-gradient(135deg, #ff5a00, #e64e00) !important;
                border: none !important;
                color: white !important;
                padding: 0.75rem !important;
                border-radius: 10px;
                font-weight: 600;
            }
            .hero-section {
                padding-top: 160px;
                padding-bottom: 100px;
            }

            .hero-visual {
                margin-top: 3rem;
            }

            .hero-floating-card {
                display: none;
            }

            .benefit-row,
            .benefit-row:nth-child(even) {
                flex-direction: column;
                gap: 2rem;
            }

            .demo-wrapper {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }

            .process-connector {
                display: none;
            }

            .process-steps {
                flex-direction: column;
                gap: 2rem;
            }
        }

        @media (max-width: 575.98px) {
            .container { padding-left: 1rem; padding-right: 1rem; }
            .hero-cta .btn { width: 100%; }
            .hero-section { padding-top: 140px; }
        }

        @media (max-width: 767.98px) {
            .hero-stats {
                gap: 1.5rem;
            }

            .hero-cta {
                flex-direction: column;
            }

            .hero-cta .btn {
                width: 100%;
            }

            .metrics-row {
                flex-direction: column;
            }

            .metric-card {
                width: 100%;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-social {
                justify-content: center;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-legal {
                justify-content: center;
            }
        }

        /* ============================================
           ANIMATION UTILITIES
           ============================================ */
        [data-aos] {
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-light);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-gradient);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary-color);
        }

        /* ── Extracted inline styles ── */
        .btn-outline-white { border-color: white; color: white; }
