.elementor-20255 .elementor-element.elementor-element-26ffe9e{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-20255 .elementor-element.elementor-element-3db1851{width:100%;max-width:100%;}.elementor-20255 .elementor-element.elementor-element-3db1851 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-20255 .elementor-element.elementor-element-3db1851.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-20255 .elementor-element.elementor-element-67a81dc{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-20255 .elementor-element.elementor-element-bb9e989{width:100%;max-width:100%;}.elementor-20255 .elementor-element.elementor-element-7f3a78a{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}/* Start custom CSS for container, class: .elementor-element-26ffe9e */:root {
            --bg-primary: #0a0e27;
            --bg-secondary: #141b2d;
            --bg-card: #1a2332;
            --bg-accent: #252d42;
            --primary-gradient-start: #14b8a6;
            --primary-gradient-end: #8b5cf6;
            --primary-blue: #3b82f6;
            --text-primary: #ffffff;
            --text-secondary: rgba(255, 255, 255, 0.7);
            --text-muted: rgba(255, 255, 255, 0.5);
            --border-color: rgba(255, 255, 255, 0.1);
            --success: #10b981;
            --warning: #f59e0b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* Header & Navigation */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            text-decoration: none;
        }

        .logo img {
            width: 40px;
            height: 40px;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 32px;
            align-items: center;
        }

        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: var(--text-primary);
        }

        .btn-nav {
            background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
            color: white;
            padding: 10px 24px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            border: none;
            cursor: pointer;
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .btn-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
            padding: 120px 40px 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 44px;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(139, 92, 246, 0.15);
            border: 1px solid rgba(139, 92, 246, 0.3);
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 24px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
            color: white;
            padding: 16px 36px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 16px;
            border: none;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-right: 16px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 16px 40px rgba(139, 92, 246, 0.5);
        }

        .btn-primary:active {
            transform: translateY(-2px) scale(1.02);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 16px 36px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 16px;
            border: 1px solid var(--border-color);
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .btn-secondary:hover::before {
            left: 100%;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(139, 92, 246, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 60px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 24px;
            backdrop-filter: blur(10px);
        }

        .stat-card strong {
            display: block;
            font-size: 32px;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .stat-card span {
            font-size: 14px;
            color: var(--text-secondary);
        }

        /* Services Grid */
        .services-section {
            padding: 100px 40px;
            background: var(--bg-secondary);
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.7) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.4s ease;
            position: relative;
            display: inline-block;
            cursor: default;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-gradient-start), var(--primary-gradient-end));
            transition: width 0.4s ease;
        }

        .section-header:hover h2::after {
            width: 100px;
        }

        .section-header:hover h2 {
            transform: scale(1.02);
            background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .section-header p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }

        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 32px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
            background-image: linear-gradient(
                90deg,
                var(--bg-card) 0%,
                var(--bg-card) 50%,
                rgba(139, 92, 246, 0.05) 50%,
                rgba(139, 92, 246, 0.05) 100%
            );
            background-size: 200% 100%;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            will-change: transform;
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gradient-start), var(--primary-gradient-end));
            opacity: 0;
            transition: opacity 0.4s ease;
            transform: scaleX(0);
            transform-origin: left;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(20, 184, 166, 0.05));
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .service-card:hover {
            transform: translateY(-12px) scale(1.02);
            border-color: rgba(139, 92, 246, 0.5);
            background-position: 100% 0;
            animation: shimmer 0.6s ease;
            box-shadow: 
                0 24px 60px rgba(139, 92, 246, 0.25),
                0 0 0 1px rgba(139, 92, 246, 0.1),
                0 0 40px rgba(139, 92, 246, 0.15);
        }

        .service-card:hover::before {
            opacity: 1;
            transform: scaleX(1);
        }

        .service-card:hover::after {
            opacity: 1;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
        }

        .service-card:hover h3 {
            color: var(--primary-gradient-start);
            transform: translateX(4px);
        }

        .service-card:hover .service-link {
            transform: translateX(8px);
            color: var(--primary-gradient-start);
        }

        .service-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 24px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 16px rgba(139, 92, 246, 0.2);
            position: relative;
            overflow: hidden;
        }

        .service-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .service-card:hover .service-icon::before {
            width: 200px;
            height: 200px;
        }

        .service-card h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-primary);
            transition: all 0.3s ease;
            position: relative;
        }

        .service-card h3::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-gradient-start), var(--primary-gradient-end));
            transition: width 0.4s ease;
        }

        .service-card:hover h3::after {
            width: 60px;
        }

        .service-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            transition: color 0.3s ease;
        }

        .service-card:hover p {
            color: rgba(255, 255, 255, 0.85);
        }

        .service-link {
            color: var(--primary-blue);
            margin-top: 20px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
        }

        .service-link::after {
            content: '→';
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .service-card:hover .service-link::after {
            transform: translateX(4px);
        }

        .service-link:hover {
            color: var(--primary-gradient-start);
        }

        /* Features Section */
        .features-section {
            padding: 100px 40px;
            background: var(--bg-primary);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .feature-item {
            display: flex;
            gap: 20px;
            padding: 24px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(8px);
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            background: rgba(139, 92, 246, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .feature-content h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .feature-content p {
            font-size: 14px;
            color: var(--text-secondary);
        }

        /* Data Fields Section */
        .data-fields-section {
            padding: 100px 40px;
            background: var(--bg-secondary);
        }

        .data-fields-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .data-field-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 32px;
            text-align: left;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .data-field-card:nth-child(1) { animation-delay: 0.1s; }
        .data-field-card:nth-child(2) { animation-delay: 0.2s; }
        .data-field-card:nth-child(3) { animation-delay: 0.3s; }
        .data-field-card:nth-child(4) { animation-delay: 0.4s; }
        .data-field-card:nth-child(5) { animation-delay: 0.5s; }
        .data-field-card:nth-child(6) { animation-delay: 0.6s; }
        .data-field-card:nth-child(7) { animation-delay: 0.7s; }
        .data-field-card:nth-child(8) { animation-delay: 0.8s; }
        .data-field-card:nth-child(9) { animation-delay: 0.9s; }
        .data-field-card:nth-child(10) { animation-delay: 1s; }

        .data-field-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gradient-start), var(--primary-gradient-end));
            opacity: 0;
            transform: scaleX(0);
            transform-origin: left;
            transition: all 0.4s ease;
        }

        .data-field-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
            pointer-events: none;
        }

        .data-field-card:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 20px 50px rgba(139, 92, 246, 0.25), 0 0 0 1px rgba(139, 92, 246, 0.1);
        }

        .data-field-card:hover::before {
            opacity: 1;
            transform: scaleX(1);
        }

        .data-field-card:hover::after {
            opacity: 1;
        }

        .data-field-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 20px;
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
            transition: all 0.4s ease;
        }

        .data-field-card:hover .data-field-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
        }

        .data-field-card h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary);
            transition: color 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .data-field-card:hover h4 {
            color: var(--primary-gradient-start);
        }

        .data-field-card h4::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-gradient-start), var(--primary-gradient-end));
            transition: width 0.4s ease;
        }

        .data-field-card:hover h4::after {
            width: 100%;
        }

        .data-field-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            transition: color 0.3s ease;
        }

        .data-field-card:hover p {
            color: rgba(255, 255, 255, 0.85);
        }

        /* Enhanced List Styling for Split Section */
        .data-fields-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
            display: grid;
            gap: 8px;
        }

        .data-fields-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            opacity: 0;
            transform: translateX(-20px);
            animation: slideInLeft 0.6s ease forwards;
        }

        .data-fields-list li:nth-child(1) { animation-delay: 0.1s; }
        .data-fields-list li:nth-child(2) { animation-delay: 0.15s; }
        .data-fields-list li:nth-child(3) { animation-delay: 0.2s; }
        .data-fields-list li:nth-child(4) { animation-delay: 0.25s; }
        .data-fields-list li:nth-child(5) { animation-delay: 0.3s; }
        .data-fields-list li:nth-child(6) { animation-delay: 0.35s; }
        .data-fields-list li:nth-child(7) { animation-delay: 0.4s; }
        .data-fields-list li:nth-child(8) { animation-delay: 0.45s; }
        .data-fields-list li:nth-child(9) { animation-delay: 0.5s; }
        .data-fields-list li:nth-child(10) { animation-delay: 0.55s; }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .data-fields-list li::before {
            content: "✓";
            color: var(--primary-gradient-start);
            font-weight: 700;
            font-size: 18px;
            margin-top: 2px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .data-fields-list li:hover {
            background: rgba(255, 255, 255, 0.04);
            transform: translateX(4px);
        }

        .data-fields-list li:hover::before {
            transform: scale(1.2);
        }

        .data-fields-list li strong {
            color: var(--text-primary);
            font-weight: 700;
            font-size: 16px;
            display: inline;
            margin-right: 8px;
        }

        .data-fields-list li span {
            color: var(--text-secondary);
            font-size: 15px;
            line-height: 1.6;
        }

        /* Verification Process */
        .verification-section {
            padding: 120px 40px;
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .verification-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(20, 184, 166, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .verification-section .section-header {
            position: relative;
            z-index: 1;
        }

        .verification-section .section-header h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .verification-section .section-header p {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .verification-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            margin-top: 80px;
            max-width: 1400px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 1;
        }

        .verification-step {
            text-align: center;
            position: relative;
            padding: 32px 24px;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            border-radius: 16px;
            margin: 0 12px;
            background: rgba(255, 255, 255, 0.02);
            backdrop-filter: blur(10px);
        }

        .verification-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
            border-radius: 16px;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .verification-step:hover {
            transform: translateY(-12px);
            background: rgba(255, 255, 255, 0.04);
            box-shadow: 0 20px 60px rgba(139, 92, 246, 0.25),
                        0 0 0 1px rgba(139, 92, 246, 0.1),
                        0 0 40px rgba(139, 92, 246, 0.15);
        }

        .verification-step:hover::before {
            opacity: 1;
        }

        .verification-step::after {
            content: '';
            position: absolute;
            top: 80px;
            right: -24px;
            width: 48px;
            height: 2px;
            background: linear-gradient(90deg, 
                rgba(139, 92, 246, 0.4) 0%, 
                rgba(139, 92, 246, 0.6) 50%, 
                rgba(20, 184, 166, 0.6) 50%, 
                rgba(20, 184, 166, 0.4) 100%);
            z-index: 2;
            transition: all 0.4s ease;
        }

        .verification-step:hover::after {
            width: 60px;
            background: linear-gradient(90deg, 
                rgba(139, 92, 246, 0.6) 0%, 
                rgba(139, 92, 246, 0.8) 50%, 
                rgba(20, 184, 166, 0.8) 50%, 
                rgba(20, 184, 166, 0.6) 100%);
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
        }

        .verification-step:last-child::after {
            display: none;
        }

        .step-number {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #14b8a6 0%, #8b5cf6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            font-weight: 800;
            margin: 0 auto 24px;
            color: #ffffff;
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4),
                        0 0 0 4px rgba(139, 92, 246, 0.1),
                        0 0 20px rgba(139, 92, 246, 0.2);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
        }

        .step-number::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .verification-step:hover .step-number {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 12px 32px rgba(139, 92, 246, 0.5),
                        0 0 0 6px rgba(139, 92, 246, 0.2),
                        0 0 30px rgba(139, 92, 246, 0.3);
        }

        .verification-step:hover .step-number::before {
            opacity: 1;
            animation: shimmer 1s ease;
        }

        .verification-step h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-primary);
            transition: color 0.3s ease;
            line-height: 1.3;
        }

        .verification-step:hover h4 {
            color: #ffffff;
        }

        .verification-step p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
            transition: color 0.3s ease;
        }

        .verification-step:hover p {
            color: rgba(255, 255, 255, 0.85);
        }

        /* Validation Features Section - Enhanced Design */
        .validation-features-section {
            padding: 120px 40px;
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .validation-features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
                        radial-gradient(circle at 70% 50%, rgba(20, 184, 166, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .validation-features-section .validation-section-header {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 80px;
            position: relative;
            z-index: 1;
        }

        .validation-features-section .validation-section-header h2 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .validation-features-section .validation-section-header p {
            font-size: 20px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .validation-features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .validation-feature-card {
            padding: 48px 32px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 16px;
            margin: 12px;
            backdrop-filter: blur(10px);
        }

        .validation-feature-card:nth-child(1),
        .validation-feature-card:nth-child(2),
        .validation-feature-card:nth-child(3) {
            border-bottom: 1px solid rgba(59, 130, 246, 0.2);
            padding-bottom: 60px;
            margin-bottom: 24px;
        }

        .validation-feature-card:nth-child(1)::after,
        .validation-feature-card:nth-child(2)::after,
        .validation-feature-card:nth-child(3)::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6), transparent);
        }

        .validation-feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(20, 184, 166, 0.05) 100%);
            border-radius: 16px;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .validation-feature-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.04);
            box-shadow: 0 20px 60px rgba(139, 92, 246, 0.2),
                        0 0 0 1px rgba(139, 92, 246, 0.1),
                        0 0 40px rgba(139, 92, 246, 0.1);
        }

        .validation-feature-card:hover::before {
            opacity: 1;
        }

        .validation-icon-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 24px;
        }

        .validation-icon {
            width: 72px;
            height: 72px;
            border-radius: 50%;
            background: linear-gradient(135deg, #14b8a6 0%, #8b5cf6 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3),
                        0 0 0 4px rgba(139, 92, 246, 0.1);
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
        }

        .validation-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .validation-feature-card:hover .validation-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4),
                        0 0 0 6px rgba(139, 92, 246, 0.15);
        }

        .validation-feature-card:hover .validation-icon::before {
            opacity: 1;
            animation: shimmer 1s ease;
        }

        .validation-icon svg {
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .validation-feature-card h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .validation-feature-card:hover h4 {
            color: #ffffff;
        }

        .validation-feature-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
            transition: color 0.3s ease;
        }

        .validation-feature-card:hover p {
            color: rgba(255, 255, 255, 0.8);
        }

        .validation-separator {
            display: none;
        }

        /* Responsive Design for Validation Features */
        @media (max-width: 1200px) {
            .validation-features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .validation-feature-card:nth-child(1),
            .validation-feature-card:nth-child(2),
            .validation-feature-card:nth-child(3) {
                border-bottom: none;
                padding-bottom: 48px;
            }

            .validation-feature-card:nth-child(1)::after,
            .validation-feature-card:nth-child(2)::after,
            .validation-feature-card:nth-child(3)::after {
                display: none;
            }

            .validation-feature-card:nth-child(odd) {
                border-right: 1px solid rgba(59, 130, 246, 0.2);
                padding-right: 40px;
            }

            .validation-feature-card:nth-child(even) {
                padding-left: 40px;
            }

            .validation-feature-card:nth-child(1),
            .validation-feature-card:nth-child(2) {
                border-bottom: 1px solid rgba(59, 130, 246, 0.2);
                padding-bottom: 60px;
                margin-bottom: 24px;
            }

            .validation-feature-card:nth-child(1)::after,
            .validation-feature-card:nth-child(2)::after {
                display: block;
            }
        }

        @media (max-width: 768px) {
            .validation-features-section {
                padding: 80px 24px;
            }

            .validation-features-section .validation-section-header h2 {
                font-size: 32px;
            }

            .validation-features-section .validation-section-header p {
                font-size: 16px;
            }

            .validation-features-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .validation-feature-card {
                margin: 0;
                padding: 36px 24px;
                border: none !important;
            }

            .validation-feature-card::after {
                display: none !important;
            }

            .validation-icon {
                width: 64px;
                height: 64px;
            }

            .validation-feature-card h4 {
                font-size: 18px;
            }

            .validation-feature-card p {
                font-size: 14px;
            }
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 40px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(20, 184, 166, 0.1));
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-container h2 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 24px;
        }

        .cta-container p {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 40px;
        }

        /* FAQ Section */
        .faq-section {
            padding: 100px 40px;
            background: var(--bg-secondary);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            margin-bottom: 16px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active {
            border-color: rgba(139, 92, 246, 0.4);
        }

        .faq-question {
            padding: 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
            font-size: 18px;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 24px;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 24px 24px;
        }

        .faq-answer p {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .faq-toggle {
            font-size: 24px;
            color: var(--primary-blue);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        /* Footer */
        footer {
            background: var(--bg-primary);
            border-top: 1px solid var(--border-color);
            padding: 60px 40px 30px;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-section h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--text-primary);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            margin-top: 40px;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 14px;
        }

        /* Video/Content Split Sections */
        .split-section {
            padding: 100px 40px;
            background: var(--bg-secondary);
        }

        .split-section.alt {
            background: var(--bg-primary);
        }

        .split-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .split-container.reverse {
            grid-template-columns: 1fr 1fr;
        }

        .split-container.reverse .split-content {
            order: 2;
        }

        .split-container.reverse .split-media {
            order: 1;
        }

        .split-content h2 {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            transition: all 0.4s ease;
            position: relative;
            cursor: default;
        }

        .split-content h2::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 0;
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-gradient-start), var(--primary-gradient-end));
            transition: width 0.4s ease;
            border-radius: 2px;
        }

        .split-content:hover h2::after {
            width: 120px;
        }

        .split-content:hover h2 {
            transform: translateX(4px);
            background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .split-content h3 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .split-content p {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .split-content ul {
            list-style: none;
            padding: 0;
            margin: 24px 0;
        }

        .split-content ul li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 16px;
            color: var(--text-secondary);
        }

        .split-content ul li::before {
            content: "✓";
            color: var(--primary-gradient-start);
            font-weight: 700;
            font-size: 18px;
            margin-top: 2px;
        }

        .split-media {
            position: relative;
        }

        .video-container {
            position: relative;
            border-radius: 24px;
            overflow: hidden;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            width: 100%;
            aspect-ratio: 1 / 1;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 100%; /* 1:1 aspect ratio */
            height: 0;
            overflow: hidden;
        }

        .video-wrapper video,
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 24px;
            object-fit: cover;
            z-index: 1;
        }

        .video-placeholder {
            z-index: 2;
        }

        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(20, 184, 166, 0.2));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--text-primary);
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .video-placeholder .play-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin-bottom: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-placeholder .play-icon:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .video-placeholder p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Video Section (Full Width) */
        .video-section {
            padding: 100px 40px;
            background: var(--bg-secondary);
        }

        .video-section-full {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Image Gallery */
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .gallery-item {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 16/9;
            background: var(--bg-card);
            border: 1px solid var(--border-color);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        /* Service Images */
        .service-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(20, 184, 166, 0.2));
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(20, 184, 166, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover .service-image {
            transform: scale(1.05);
            box-shadow: 0 12px 32px rgba(139, 92, 246, 0.3);
        }

        .service-card:hover .service-image::after {
            opacity: 1;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 1;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.9;
            }
        }

        .service-icon {
            animation: pulse 3s ease-in-out infinite;
        }

        .service-card:hover .service-icon {
            animation: none;
        }

        /* Shimmer effect on hover */
        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }

        /* Modal/Popup Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.85);
            backdrop-filter: blur(10px);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal.active {
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
        }

        .modal-content {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 48px;
            max-width: 600px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            position: relative;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
        }

        .modal.active .modal-content {
            transform: scale(1);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--border-color);
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 24px;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(90deg);
        }

        .modal-content h2 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 24px;
            color: var(--text-primary);
        }

        .modal-content h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-primary);
        }

        .modal-content ul {
            list-style: none;
            padding: 0;
            margin: 24px 0;
        }

        .modal-content ul li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            font-size: 16px;
            color: var(--text-secondary);
        }

        .modal-content ul li::before {
            content: "✓";
            color: var(--primary-gradient-start);
            font-weight: 700;
            font-size: 18px;
            margin-top: 2px;
        }

        .modal-content p {
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
        }

        /* Email Verification Benefits */
        .benefits-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 40px;
        }

        .benefit-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 32px;
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-4px);
            border-color: rgba(139, 92, 246, 0.4);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }

        .benefit-card h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 12px;
            color: var(--text-primary);
        }

        .benefit-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* Results Section */
        .results-section {
            padding: 100px 40px;
            background: var(--bg-primary);
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
            margin-top: 60px;
        }

        .result-card {
            text-align: center;
            padding: 32px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid var(--border-color);
            border-radius: 20px;
        }

        .result-card strong {
            display: block;
            font-size: 48px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
        }

        .result-card span {
            font-size: 16px;
            color: var(--text-secondary);
        }

        /* Contact Form Section */
        .contact-form-section {
            padding: 100px 40px;
            background: var(--bg-secondary);
            position: relative;
            overflow: hidden;
        }

        .contact-form-section::before {
            content: '';
            position: absolute;
            bottom: -20%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.15), transparent);
            border-radius: 50%;
            pointer-events: none;
        }

        .contact-form-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .contact-form-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 40px;
            margin-top: 48px;
        }

        .contact-info-column {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .contact-info-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 32px;
            transition: all 0.3s ease;
        }

        .contact-info-card:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(139, 92, 246, 0.3);
            transform: translateY(-4px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }

        .contact-info-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }

        .contact-info-card p {
            font-size: 15px;
            color: var(--text-secondary);
            margin-bottom: 24px;
            line-height: 1.6;
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 20px;
        }

        .contact-detail:last-child {
            margin-bottom: 0;
        }

        .contact-detail-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .contact-detail-icon.email {
            background: rgba(59, 130, 246, 0.2);
            color: #3b82f6;
        }

        .contact-detail-icon.clock {
            background: rgba(139, 92, 246, 0.2);
            color: #8b5cf6;
        }

        .contact-detail-icon.chat {
            background: rgba(16, 185, 129, 0.2);
            color: #10b981;
        }

        .contact-detail-content strong {
            display: block;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 4px;
        }

        .contact-detail-content span {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        .schedule-btn {
            width: 100%;
            padding: 14px 24px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-decoration: none;
        }

        .schedule-btn:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(139, 92, 246, 0.4);
            transform: translateY(-2px);
        }

        .form-column {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border-color);
            border-radius: 24px;
            padding: 48px;
        }

        .form-column h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 32px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-row .form-group {
            margin-bottom: 0;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--text-secondary);
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 15px;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: rgba(139, 92, 246, 0.5);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
        }

        .form-group textarea {
            min-height: 140px;
            resize: vertical;
        }

        .form-checkbox {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin: 24px 0;
        }

        .form-checkbox input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            cursor: pointer;
            accent-color: var(--primary-gradient-start);
        }

        .form-checkbox label {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            cursor: pointer;
            text-transform: none;
            letter-spacing: normal;
            font-weight: 400;
        }

        .form-submit {
            width: 100%;
            padding: 16px 24px;
            background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
            color: white;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 24px;
        }

        .form-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 30px rgba(139, 92, 246, 0.4);
        }

        .form-privacy {
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
            margin-top: 20px;
            line-height: 1.6;
        }

        .contact-form-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 48px;
            padding-bottom: 24px;
            border-bottom: 1px solid var(--border-color);
        }

        .contact-form-header-text {
            font-size: 18px;
            color: var(--text-secondary);
            line-height: 1.6;
            max-width: 600px;
        }

        .talk-to-us-btn {
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
            color: white;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .talk-to-us-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-content h1 {
                font-size: 48px;
            }

            .verification-section {
                padding: 100px 30px;
            }

            .verification-section .section-header h2 {
                font-size: 40px;
            }

            .verification-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
                margin-top: 60px;
            }

            .verification-step {
                padding: 28px 20px;
            }

            .verification-step:nth-child(2)::after {
                display: none;
            }

            .verification-step:nth-child(4)::after {
                display: none;
            }

            .step-number {
                width: 90px;
                height: 90px;
                font-size: 36px;
            }

            .split-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .split-container.reverse .split-content {
                order: 1;
            }

            .split-container.reverse .split-media {
                order: 2;
            }

            .split-content h2 {
                font-size: 36px;
            }

            .split-content h3 {
                font-size: 24px;
            }
        }

        @media (max-width: 768px) {
            .nav-container {
                padding: 16px 20px;
            }

            nav ul {
                display: none;
            }

            .hero {
                padding: 80px 20px 60px;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .section-header h2 {
                font-size: 32px;
            }

            .services-section,
            .features-section,
            .data-fields-section,
            .verification-section,
            .faq-section,
            .video-section,
            .results-section,
            .contact-form-section,
            .split-section {
                padding: 60px 20px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .verification-section {
                padding: 80px 20px;
            }

            .verification-section .section-header h2 {
                font-size: 32px;
            }

            .verification-section .section-header p {
                font-size: 16px;
            }

            .verification-grid {
                grid-template-columns: 1fr;
                gap: 32px;
                margin-top: 48px;
            }

            .verification-step {
                padding: 32px 20px;
                margin: 0;
            }

            .verification-step::after {
                display: none;
            }

            .step-number {
                width: 80px;
                height: 80px;
                font-size: 32px;
            }

            .verification-step h4 {
                font-size: 18px;
            }

            .verification-step p {
                font-size: 14px;
            }

            .contact-form-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
                margin-bottom: 32px;
            }

            .contact-form-header-text {
                font-size: 16px;
                max-width: 100%;
            }

            .contact-form-container {
                grid-template-columns: 1fr;
                gap: 32px;
                margin-top: 32px;
            }

            .talk-to-us-btn {
                width: 100%;
                text-align: center;
            }

            .form-column {
                padding: 32px 24px;
            }

            .form-column h2 {
                font-size: 28px;
                margin-bottom: 24px;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-bottom: 20px;
            }

            .form-row .form-group {
                margin-bottom: 20px;
            }

            .contact-info-card {
                padding: 24px;
            }

            .contact-info-card h3 {
                font-size: 20px;
            }

            .contact-info-card p {
                font-size: 14px;
            }

            .split-container {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .split-content h2 {
                font-size: 28px;
            }

            .split-content h3 {
                font-size: 20px;
            }

            .split-content p {
                font-size: 16px;
            }

            .split-content ul li {
                font-size: 14px;
            }

            .data-fields-list {
                gap: 6px;
            }

            .data-fields-list li {
                padding: 12px 16px;
            }

            .data-fields-list li strong {
                font-size: 15px;
            }

            .data-fields-list li span {
                font-size: 14px;
            }

            .data-field-card {
                padding: 24px;
            }

            .data-field-icon {
                width: 48px;
                height: 48px;
                font-size: 20px;
                margin-bottom: 16px;
            }

            .data-field-card h4 {
                font-size: 18px;
            }

            .modal-content {
                padding: 32px 24px;
                max-width: 95%;
            }

            .modal-content h2 {
                font-size: 24px;
            }

            .modal-content h3 {
                font-size: 20px;
            }
        }/* End custom CSS */