        :root {
            /* Brand Colors */
            --color-blue: #4CC9F0;
            --color-vibrant-blue: #4361EE;
            --color-purple: #7209B7;
            --color-light-purple: #9D4EDD;
            --color-deep-purple: #560BAD;
            --color-mid-tone: #6247AA;
            --color-focus-teal: #00BCD4;
            --color-focus-violet: #8A2BE2;
        }

     

        /* Frame containers */
        .frame-container {
            background: white;
            border-radius: 0.375rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            padding: 1.5rem;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
            width: 100%;
            max-width: 350px;
            animation: entrance-animation 0.8s ease forwards;
        }

        .frame-container:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px -5px rgba(0, 0, 0, 0.1);
        }

        .frame-container:nth-child(1) { animation-delay: 0.1s; }
        .frame-container:nth-child(2) { animation-delay: 0.3s; }
        .frame-container:nth-child(3) { animation-delay: 0.5s; }

        /* Illustration containers */
        .illustration-wrapper {
            width: 100%;
            max-width: 267px;
            height: 264px;
            margin: 0 auto 1rem;
            position: relative;
            overflow: hidden;
            border-radius: 0.375rem;
            background: white;
        }

        .illustration-content {
            width: 100%;
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        /* Corner accents */
        .corner-accent-top-right {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 16px;
            height: 16px;
            border-top: 2px solid var(--color-blue);
            border-right: 2px solid var(--color-blue);
            opacity: 0.7;
            z-index: 10;
            animation: corner-accent-appear 0.4s ease 0.8s both;
        }

        .corner-accent-bottom-left {
            position: absolute;
            bottom: 8px;
            left: 8px;
            width: 16px;
            height: 16px;
            border-bottom: 2px solid var(--color-purple);
            border-left: 2px solid var(--color-purple);
            opacity: 0.7;
            z-index: 10;
            animation: corner-accent-appear 0.4s ease 0.9s both;
        }

        /* Description text */
        .description-text {
            font-size: 16px;
            line-height: 1.25;
            color: #0d0d0d;
            text-align: center;
            padding: 0 1rem;
        }

        /* ===== FORM ILLUSTRATION ===== */
        .form-illustration {
            position: relative;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(76, 201, 240, 0.1) 0%, rgba(114, 9, 183, 0.1) 100%);
        }

        .form-header {
            position: absolute;
            top: 16px;
            left: 16px;
            right: 16px;
            height: 32px;
            border-radius: 6px;
            background: rgba(76, 201, 240, 0.2);
            display: flex;
            align-items: center;
        }

        .form-header-title {
            margin-left: 12px;
            width: 96px;
            height: 12px;
            border-radius: 9999px;
            background: rgba(76, 201, 240, 0.4);
        }

        .form-fields {
            position: absolute;
            top: 64px;
            left: 16px;
            right: 16px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .form-field {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .field-label {
            width: 64px;
            height: 10px;
            border-radius: 9999px;
            background: rgba(98, 71, 170, 0.3);
        }

        .field-label.email {
            width: 48px;
        }

        .field-input {
            height: 40px;
            border-radius: 6px;
            width: 100%;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            position: relative;
            display: flex;
            align-items: center;
            padding-left: 12px;
        }

        .field-input.name {
            background: rgba(76, 201, 240, 0.15);
        }

        .field-input.email {
            background: rgba(114, 9, 183, 0.15);
        }

        .field-input.focused.name {
            border-color: var(--color-focus-teal);
            box-shadow: 0 0 0 1px var(--color-focus-teal);
        }

        .field-input.focused.email {
            border-color: var(--color-focus-violet);
            box-shadow: 0 0 0 1px var(--color-focus-violet);
        }

        .field-content {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .field-text {
            width: 80px;
            height: 10px;
            border-radius: 9999px;
            background: rgba(98, 71, 170, 0.4);
        }

        .field-text.email {
            width: 112px;
        }

        .typing-cursor {
            width: 6px;
            height: 16px;
            margin-left: 4px;
            opacity: 0;
        }

        .typing-cursor.name {
            background-color: var(--color-focus-teal);
        }

        .typing-cursor.email {
            background-color: var(--color-focus-violet);
        }

        .typing-cursor.active {
            animation: cursor-blink 1s infinite;
        }

        .submit-button {
            position: absolute;
            bottom: 16px;
            right: 16px;
            width: 96px;
            height: 40px;
            border-radius: 6px;
            background: linear-gradient(to right, var(--color-blue), var(--color-purple));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .submit-button.submitted {
            transform: scale(0.95);
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.2);
        }

        .submit-icon {
            width: 16px;
            height: 16px;
            margin-right: 8px;
            transition: all 0.3s ease;
        }

        .submit-button.submitted .submit-icon {
            transform: scale(1.25);
        }

        .form-decorations {
            position: absolute;
            bottom: 16px;
            left: 16px;
            display: flex;
            gap: 8px;
        }

        .decoration-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }

        .decoration-dot.blue {
            background: var(--color-blue);
        }

        .decoration-dot.mid {
            background: var(--color-mid-tone);
        }

        .decoration-dot.purple {
            background: var(--color-purple);
        }

        /* ===== CONNECTION ILLUSTRATION ===== */
        .connection-illustration {
            position: relative;
            width: 100%;
            height: 100%;
            background: white;
            overflow: hidden;
        }

        .connection-bg-gradient {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 25% 25%, rgba(76, 201, 240, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(86, 11, 173, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 75% 25%, rgba(67, 97, 238, 0.04) 0%, transparent 60%),
                radial-gradient(circle at 25% 75%, rgba(157, 78, 221, 0.04) 0%, transparent 60%);
        }

        .connection-bg-elements {
            position: absolute;
            inset: 0;
        }

        .bg-element {
            position: absolute;
            border: 1px solid;
            opacity: 0.02;
        }

        .bg-element.square {
            width: 48px;
            height: 48px;
            top: 32px;
            left: 32px;
            border-color: var(--color-blue);
            transform: rotate(45deg);
            animation: bg-float 8s ease-in-out infinite;
        }

        .bg-element.circle {
            width: 32px;
            height: 32px;
            top: 48px;
            right: 48px;
            border-color: var(--color-vibrant-blue);
            border-radius: 50%;
            animation: bg-float 6s ease-in-out infinite 1s;
        }

        .bg-element.triangle {
            width: 24px;
            height: 24px;
            bottom: 64px;
            left: 48px;
            border-color: var(--color-light-purple);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            animation: bg-float 7s ease-in-out infinite 2s;
        }

        .bg-element.rounded-square {
            width: 40px;
            height: 40px;
            bottom: 32px;
            right: 32px;
            border-color: var(--color-deep-purple);
            border-radius: 8px;
            transform: rotate(12deg);
            animation: bg-float 9s ease-in-out infinite 0.5s;
        }

        .floating-dot {
            position: absolute;
            border-radius: 50%;
            opacity: 0.06;
        }

        .floating-dot.dot1 {
            width: 12px;
            height: 12px;
            top: 25%;
            left: 33.33%;
            background: radial-gradient(circle, var(--color-blue), transparent);
            animation: bg-float 5s ease-in-out infinite 3s;
        }

        .floating-dot.dot2 {
            width: 8px;
            height: 8px;
            bottom: 33.33%;
            right: 25%;
            background: radial-gradient(circle, var(--color-purple), transparent);
            animation: bg-float 6s ease-in-out infinite 1.5s;
        }

        .connection-grid {
            position: absolute;
            inset: 0;
            opacity: 0.03;
            background-image: 
                linear-gradient(var(--color-mid-tone) 0.5px, transparent 0.5px),
                linear-gradient(90deg, var(--color-mid-tone) 0.5px, transparent 0.5px);
            background-size: 32px 32px;
        }

        .network-indicator {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .network-indicator.top-left {
            top: 16px;
            left: 16px;
        }

        .network-indicator.top-right {
            top: 16px;
            right: 16px;
        }

        .indicator-dot {
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .indicator-dot.small {
            width: 4px;
            height: 4px;
        }

        .indicator-dot.medium {
            width: 6px;
            height: 6px;
        }

        .indicator-line {
            width: 12px;
            height: 2px;
            transition: all 0.3s ease;
        }

        .indicator-dot.active, .indicator-line.active {
            opacity: 0.6;
        }

        .indicator-dot.active.blue, .indicator-line.active.blue {
            background-color: var(--color-blue);
            animation: network-pulse 2s ease-in-out infinite;
        }

        .indicator-dot.active.purple, .indicator-line.active.purple {
            background-color: var(--color-purple);
            animation: network-pulse 2s ease-in-out infinite 0.5s;
        }

        .indicator-dot.inactive, .indicator-line.inactive {
            background-color: #e5e7eb;
            opacity: 0.2;
        }

        .signal-strength {
            position: absolute;
            bottom: 16px;
            left: 16px;
            display: flex;
            align-items: flex-end;
            gap: 2px;
        }

        .signal-bar {
            width: 4px;
            background-color: #e5e7eb;
            opacity: 0.2;
            transform-origin: bottom;
            transition: all 0.3s ease;
        }

        .signal-bar.bar1 {
            height: 8px;
        }

        .signal-bar.bar2 {
            height: 12px;
        }

        .signal-bar.bar3 {
            height: 16px;
        }

        .signal-bar.active {
            opacity: 0.8;
            animation: signal-bars 1.5s ease-in-out infinite;
        }

        .signal-bar.active.blue {
            background-color: var(--color-blue);
        }

        .signal-bar.active.mid {
            background-color: var(--color-mid-tone);
            animation-delay: 0.2s;
        }

        .signal-bar.active.purple {
            background-color: var(--color-purple);
            animation-delay: 0.4s;
        }

        .data-packets {
            position: absolute;
            bottom: 16px;
            right: 16px;
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .packet-row {
            display: flex;
            gap: 2px;
        }

        .data-packet {
            width: 4px;
            height: 4px;
            background-color: #e5e7eb;
            opacity: 0.2;
            transition: all 0.3s ease;
        }

        .data-packet.active {
            opacity: 0.7;
            animation: network-pulse 2s ease-in-out infinite;
        }

        .data-packet.active.blue {
            background-color: var(--color-blue);
        }

        .data-packet.active.mid {
            background-color: var(--color-mid-tone);
            animation-delay: 0.3s;
        }

        .data-packet.active.light-purple {
            background-color: var(--color-light-purple);
            animation-delay: 0.6s;
        }

        .data-packet.active.purple {
            background-color: var(--color-purple);
            animation-delay: 0.9s;
        }

        .connection-devices {
            position: relative;
            width: 100%;
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 24px;
        }

        .device {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            transition: all 0.5s ease;
            border: 2px solid;
        }

        .device.microphone {
            background: linear-gradient(135deg, rgba(76, 201, 240, 0.3), rgba(76, 201, 240, 0.1));
            border-color: var(--color-blue);
        }

        .device.headphones {
            background: linear-gradient(135deg, rgba(114, 9, 183, 0.3), rgba(114, 9, 183, 0.1));
            border-color: var(--color-purple);
        }

        .device.active {
            transform: scale(1.05);
        }

        .device-inner {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .device.microphone .device-inner {
            background: var(--color-blue);
        }

        .device.headphones .device-inner {
            background: var(--color-purple);
        }

        .device-icon {
            width: 16px;
            height: 16px;
            color: white;
        }

        .device-icon.active {
            animation: device-pulse 1s infinite;
        }

        .data-flow {
            position: absolute;
            left: 88px;
            top: 50%;
            transform: translateY(-50%);
            width: 120px;
            height: 60px;
            pointer-events: none;
        }

        .flow-dot {
            position: absolute;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            opacity: 0;
            left: 0;
            top: 30px;
            transform: translateY(-50%);
        }

        .flow-dot.active {
            animation: flow-dots-wave 3s ease-in-out infinite;
        }

        .flow-dot.dot1 {
            background-color: var(--color-blue);
            animation-delay: 0s;
        }

        .flow-dot.dot2 {
            background-color: var(--color-mid-tone);
            animation-delay: 0.5s;
        }

        .flow-dot.dot3 {
            background-color: var(--color-light-purple);
            animation-delay: 1s;
        }

        .flow-dot.dot4 {
            background-color: var(--color-purple);
            animation-delay: 1.5s;
        }

        .flow-dot.dot5 {
            background-color: var(--color-blue);
            animation-delay: 2s;
        }

        .flow-dot.dot6 {
            background-color: var(--color-mid-tone);
            animation-delay: 2.5s;
        }

        .connection-success {
            position: absolute;
            top: 16px;
            left: 16px;
            display: flex;
            gap: 4px;
            z-index: 10;
        }

        .success-dot {
            width: 8px;
            height: 8px;
            background-color: #4ade80;
            border-radius: 50%;
            opacity: 0;
            animation: success-pulse 1s infinite alternate;
        }

        .success-dot.active {
            opacity: 1;
        }

        .success-dot.dot1 {
            animation-delay: 0s;
        }

        .success-dot.dot2 {
            animation-delay: 0.2s;
        }

        .success-dot.dot3 {
            animation-delay: 0.4s;
        }

        /* ===== AI ILLUSTRATION ===== */
        .ai-illustration {
            position: relative;
            width: 100%;
            height: 100%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .ai-bg-gradient {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 50% 50%, rgba(76, 201, 240, 0.08) 0%, rgba(86, 11, 173, 0.08) 70%, transparent 100%);
        }

        .ai-bg-circles {
            position: absolute;
            inset: 0;
            background: 
                radial-gradient(circle at 30% 30%, rgba(67, 97, 238, 0.15) 0%, transparent 50%), 
                radial-gradient(circle at 70% 70%, rgba(157, 78, 221, 0.15) 0%, transparent 50%);
        }

        .task-indicators {
            position: absolute;
            inset: 0;
        }

        .task-indicator {
            position: absolute;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.7s ease;
            border: 2px solid;
        }

        .task-indicator.top-left {
            top: 32px;
            left: 32px;
        }

        .task-indicator.top-right {
            top: 32px;
            right: 32px;
        }

        .task-indicator.bottom-left {
            bottom: 32px;
            left: 32px;
        }

        .task-indicator.bottom-right {
            bottom: 32px;
            right: 32px;
        }

        .task-indicator.inactive {
            background: radial-gradient(circle, rgba(98, 71, 170, 0.2) 0%, rgba(98, 71, 170, 0.1) 70%, transparent 100%);
            border-color: rgba(98, 71, 170, 0.4);
        }

        .task-indicator.completed {
            box-shadow: 0 0 20px rgba(var(--task-color), 0.3), inset 0 0 10px rgba(var(--task-color), 0.2);
            animation: task-glow 2s ease-in-out infinite;
        }

        .task-indicator.completed.blue {
            background: radial-gradient(circle, rgba(76, 201, 240, 0.4) 0%, rgba(76, 201, 240, 0.2) 70%, transparent 100%);
            border-color: var(--color-blue);
            --task-color: 76, 201, 240;
        }

        .task-indicator.completed.vibrant-blue {
            background: radial-gradient(circle, rgba(67, 97, 238, 0.4) 0%, rgba(67, 97, 238, 0.2) 70%, transparent 100%);
            border-color: var(--color-vibrant-blue);
            --task-color: 67, 97, 238;
        }

        .task-indicator.completed.light-purple {
            background: radial-gradient(circle, rgba(157, 78, 221, 0.4) 0%, rgba(157, 78, 221, 0.2) 70%, transparent 100%);
            border-color: var(--color-light-purple);
            --task-color: 157, 78, 221;
        }

        .task-indicator.completed.deep-purple {
            background: radial-gradient(circle, rgba(86, 11, 173, 0.4) 0%, rgba(86, 11, 173, 0.2) 70%, transparent 100%);
            border-color: var(--color-deep-purple);
            --task-color: 86, 11, 173;
        }

        .task-icon {
            width: 20px;
            height: 20px;
            transition: all 0.7s ease;
            color: var(--color-mid-tone);
        }

        .task-indicator.completed .task-icon {
            animation: task-complete 0.8s ease-out;
            filter: drop-shadow(0 0 4px currentColor);
        }

        .task-indicator.completed.blue .task-icon {
            color: var(--color-blue);
        }

        .task-indicator.completed.vibrant-blue .task-icon {
            color: var(--color-vibrant-blue);
        }

        .task-indicator.completed.light-purple .task-icon {
            color: var(--color-light-purple);
        }

        .task-indicator.completed.deep-purple .task-icon {
            color: var(--color-deep-purple);
        }

        .task-pulse-ring {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            border: 2px solid;
            opacity: 0;
            animation: task-ping 2s infinite;
        }

        .task-indicator.completed .task-pulse-ring {
            opacity: 0.6;
        }

        .task-indicator.completed.blue .task-pulse-ring {
            border-color: rgba(76, 201, 240, 0.6);
        }

        .task-indicator.completed.vibrant-blue .task-pulse-ring {
            border-color: rgba(67, 97, 238, 0.6);
        }

        .task-indicator.completed.light-purple .task-pulse-ring {
            border-color: rgba(157, 78, 221, 0.6);
        }

        .task-indicator.completed.deep-purple .task-pulse-ring {
            border-color: rgba(86, 11, 173, 0.6);
        }

        .central-processor {
            position: relative;
            width: 96px;
            height: 96px;
            border: 2px solid;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s ease;
            z-index: 10;
        }

        .central-processor.inactive {
            border-color: rgba(98, 71, 170, 0.4);
            background: linear-gradient(135deg, rgba(98, 71, 170, 0.15) 0%, rgba(98, 71, 170, 0.1) 100%);
        }

        .central-processor.processing {
            border-color: var(--color-vibrant-blue);
            background: linear-gradient(135deg, rgba(67, 97, 238, 0.2) 0%, rgba(86, 11, 173, 0.2) 100%);
            box-shadow: 0 0 30px rgba(67, 97, 238, 0.4), inset 0 0 20px rgba(67, 97, 238, 0.2);
            animation: data-pulse 2s ease-in-out infinite;
        }

        .processor-inner {
            position: absolute;
            inset: 8px;
            border-radius: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s ease;
        }

        .central-processor.processing .processor-inner {
            background: radial-gradient(circle, rgba(67, 97, 238, 0.3) 0%, transparent 70%);
        }

        .processor-icon {
            width: 40px;
            height: 40px;
            transition: all 0.5s ease;
            position: relative;
            z-index: 10;
            color: var(--color-mid-tone);
        }

        .central-processor.processing .processor-icon {
            color: var(--color-vibrant-blue);
            filter: drop-shadow(0 0 8px var(--color-vibrant-blue));
        }

        .processor-notch {
            position: absolute;
            width: 12px;
            height: 12px;
            border: 2px solid;
            transition: all 0.5s ease;
        }

        .processor-notch.top-left {
            top: 0;
            left: 0;
            border-right: none;
            border-bottom: none;
            border-top-left-radius: 2px;
        }

        .processor-notch.top-right {
            top: 0;
            right: 0;
            border-left: none;
            border-bottom: none;
            border-top-right-radius: 2px;
        }

        .processor-notch.bottom-left {
            bottom: 0;
            left: 0;
            border-right: none;
            border-top: none;
            border-bottom-left-radius: 2px;
        }

        .processor-notch.bottom-right {
            bottom: 0;
            right: 0;
            border-left: none;
            border-top: none;
            border-bottom-right-radius: 2px;
        }

        .central-processor.inactive .processor-notch {
            border-color: rgba(98, 71, 170, 0.4);
        }

        .central-processor.processing .processor-notch.top-left,
        .central-processor.processing .processor-notch.top-right {
            border-color: var(--color-blue);
            background: linear-gradient(135deg, rgba(76, 201, 240, 0.3), transparent);
        }

        .central-processor.processing .processor-notch.bottom-left,
        .central-processor.processing .processor-notch.bottom-right {
            border-color: var(--color-deep-purple);
            background: linear-gradient(45deg, rgba(86, 11, 173, 0.3), transparent);
        }

        .ai-decorations {
            position: absolute;
            bottom: 16px;
            left: 16px;
            display: flex;
            gap: 8px;
        }

        .ai-decoration-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            transition: all 0.5s ease;
            opacity: 0.4;
        }

        .ai-decoration-dot.processing {
            opacity: 1;
        }

        .ai-decoration-dot.blue {
            background: radial-gradient(circle, var(--color-blue), rgba(76, 201, 240, 0.8));
        }

        .ai-decoration-dot.vibrant-blue {
            background: radial-gradient(circle, var(--color-vibrant-blue), rgba(67, 97, 238, 0.8));
        }

        .ai-decoration-dot.deep-purple {
            background: radial-gradient(circle, var(--color-deep-purple), rgba(86, 11, 173, 0.8));
        }

        .ai-particles {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .ai-particle {
            position: absolute;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            opacity: 0.4;
        }

        .ai-particle.processing {
            animation: particle-glow 1.5s ease-in-out infinite;
        }

        .ai-particle.blue {
            background: var(--color-blue);
            left: 20%;
            top: 30%;
            animation-delay: 0s;
            animation-duration: 1.5s;
        }

        .ai-particle.vibrant-blue {
            background: var(--color-vibrant-blue);
            left: 35%;
            top: 45%;
            animation-delay: 0.2s;
            animation-duration: 1.8s;
        }

        .ai-particle.light-purple {
            background: var(--color-light-purple);
            left: 50%;
            top: 25%;
            animation-delay: 0.4s;
            animation-duration: 2.1s;
        }

        .ai-particle.purple {
            background: var(--color-purple);
            left: 65%;
            top: 60%;
            animation-delay: 0.6s;
            animation-duration: 1.7s;
        }

        .ai-particle.mid {
            background: var(--color-mid-tone);
            left: 80%;
            top: 40%;
            animation-delay: 0.8s;
            animation-duration: 1.9s;
        }

        .ai-particle.deep {
            background: var(--color-deep-purple);
            left: 95%;
            top: 70%;
            animation-delay: 1.0s;
            animation-duration: 2.2s;
        }

        /* Typewriter text effect */
        .typewriter-cursor {
            display: inline-block;
            width: 2px;
            height: 16px;
            background-color: var(--color-blue);
            margin-left: 4px;
            animation: cursor-blink 1s infinite;
        }

        .typewriter-cursor.hidden {
            opacity: 0;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes entrance-animation {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.9);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        @keyframes corner-accent-appear {
            from {
                transform: scale(0);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 0.7;
            }
        }

        @keyframes cursor-blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        @keyframes bg-float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.02;
            }
            50% {
                transform: translateY(-10px) rotate(180deg);
                opacity: 0.05;
            }
        }

        @keyframes network-pulse {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 0.6; }
        }

        @keyframes signal-bars {
            0%, 100% {
                transform: scaleY(0.3);
                opacity: 0.4;
            }
            50% {
                transform: scaleY(1);
                opacity: 0.8;
            }
        }

        @keyframes device-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        @keyframes flow-dots-wave {
            0% {
                transform: translateX(0px) translateY(0px) scale(0);
                opacity: 0;
            }
            15% {
                transform: translateX(15px) translateY(-8px) scale(1);
                opacity: 1;
            }
            30% {
                transform: translateX(30px) translateY(-12px) scale(1);
                opacity: 1;
            }
            50% {
                transform: translateX(60px) translateY(5px) scale(1);
                opacity: 0.9;
            }
            70% {
                transform: translateX(85px) translateY(-5px) scale(1);
                opacity: 0.7;
            }
            90% {
                transform: translateX(105px) translateY(2px) scale(0.8);
                opacity: 0.3;
            }
            100% {
                transform: translateX(110px) translateY(0px) scale(0);
                opacity: 0;
            }
        }

        @keyframes success-pulse {
            0% { transform: scale(0); opacity: 0; }
            50% { transform: scale(1.3); opacity: 1; }
            100% { transform: scale(1); opacity: 1; }
        }

        @keyframes data-pulse {
            0%, 100% {
                opacity: 0.4;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.03);
            }
        }

        @keyframes task-complete {
            0% {
                transform: scale(0) rotate(-180deg);
                opacity: 0;
            }
            50% {
                transform: scale(1.3) rotate(-90deg);
                opacity: 1;
            }
            100% {
                transform: scale(1) rotate(0deg);
                opacity: 1;
            }
        }

        @keyframes task-glow {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 0.9; }
        }

        @keyframes task-ping {
            75%, 100% {
                transform: scale(2);
                opacity: 0;
            }
        }

        @keyframes particle-glow {
            0%, 100% { opacity: 0.4; }
            50% { opacity: 0.8; }
        }

        /* Responsive Design */
        @media (max-width: 576px) {
            
            
            .illustration-wrapper {
                height: 200px;
                max-width: 100%;
            }
            
            .frame-container {
                padding: 1rem;
                max-width: 100%;
            }
            
            .description-text {
                font-size: 14px;
                padding: 0 0.5rem;
            }
        }

        @media (min-width: 577px) and (max-width: 768px) {
            .illustration-wrapper {
                height: 240px;
            }
            
            .frame-container {
                max-width: 300px;
            }
        }

        @media (min-width: 769px) {
           
    
            .illustration-wrapper {
                height: 264px;
            }
            
            .frame-container {
                padding: 2rem;
                max-width: 350px;
            }
        }

          .gradient-text {
      /* background: linear-gradient(90deg, var(--speed-color), var(--reliability-color), var(--experience-color));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent; */
     color: var(--www-callconnectindia-com-black, var(--color-black-solid, #000));
  text-align: justify;
  font-size: clamp(32px, 5.5vw, 64px);
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
      /*display: inline-block;*/
    }
