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

        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #2c2c54 0%, #1a1a2e 50%, #16213e 100%);
            color: white;
            min-height: 100vh;
            overflow-x: hidden;
        }

        @font-face {
    font-family: 'CustomFont';
    src: url('Visomatic_Electrite.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

        /* Subtle SVG Background Pattern */
        .bg-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;
            z-index: -1;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 20px 0;
            background: rgba(22, 33, 62, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            z-index: 1000;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .company-name {

            font-size: 1.4rem;
            font-weight: 300;
            color: #e8e8e8;
            text-decoration: none;
            letter-spacing: 0.05em;
            font-family: 'Oliver_Printype';
        }

        /* Main Content */
        .main-content {
            padding-top: 80px;
        }

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

        /* Hero Section */
        .hero-section {
            padding: 80px 0 120px;
            text-align: center;
            position: relative;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.8rem;
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 30px;
            color: white;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.3rem;
            line-height: 1.5;
            color: #b8b8b8;
            max-width: 800px;
            margin: 0 auto 40px;
            font-weight: 300;
        }

        .hero-opportunity {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 30px;
            margin: 40px auto;
            border-radius: 8px;
            max-width: 700px;
            font-size: 1rem;
            color: #d4d4d4;
            backdrop-filter: blur(10px);
        }

        .hero-opportunity strong {
            color: white;
            font-weight: 500;
        }

        /* Content Sections */
        .content-section {
            padding: 80px 0;
            position: relative;
        }

        .section-header {
            margin-bottom: 60px;
        }

        .section-number {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: #888;
            font-weight: 600;
            letter-spacing: 0.15em;
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 400;
            line-height: 1.2;
            color: white;
            margin-bottom: 20px;
        }

        .section-text {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            line-height: 1.6;
            color: #b8b8b8;
            max-width: 600px;
            font-weight: 300;
        }

        /* Service Cards */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 40px;
            position: relative;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .service-card:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.05);
        }

        .service-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .service-title {
            font-family: 'Inter', sans-serif;
            font-size: 1.4rem;
            font-weight: 600;
            color: white;
            margin-bottom: 5px;
        }

        .service-price {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            color: #e8e8e8;
            font-weight: 400;
        }

        .service-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            color: #888;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 20px;
        }

        .service-description {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            line-height: 1.6;
            color: #b8b8b8;
            margin-bottom: 25px;
            font-weight: 300;
        }

        .service-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .service-features li {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            color: #d4d4d4;
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
            font-weight: 300;
        }

        .service-features li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #888;
            font-weight: bold;
        }

        .service-note {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: #888;
            font-style: italic;
            margin-top: 20px;
        }

        .service-cta {
            display: inline-block;
            background: transparent;
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 6px;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
        }

        .service-cta:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        /* Audience Section */
        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .audience-item {
            padding: 30px;
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .audience-item:hover {
            background: rgba(255, 255, 255, 0.04);
            border-color: rgba(255, 255, 255, 0.15);
        }

        .audience-title {
            font-family: 'Inter', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            margin-bottom: 15px;
        }

        .audience-description {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #b8b8b8;
            font-weight: 300;
        }

        /* Process Section */
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin: 50px 0;
        }

        .process-step {
            text-align: center;
            padding: 30px 20px;
            position: relative;
        }

        .step-number {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 400;
            color: rgba(255, 255, 255, 0.3);
            margin-bottom: 15px;
        }

        .step-title {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .step-description {
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
            line-height: 1.5;
            color: #b8b8b8;
            font-weight: 300;
        }

        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            text-align: center;
            background: rgba(255, 255, 255, 0.02);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cta-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 400;
            color: white;
            margin-bottom: 20px;
        }

        .cta-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            color: #b8b8b8;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .cta-button {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 18px 40px;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 6px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
        }

        /* Footer */
        .footer {
            padding: 60px 0 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 40px;
            text-align: center;
        }

        .footer-brand {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: #888;
            margin-bottom: 10px;
            font-weight: 300;
        }

        .footer-company {
            font-family: 'Inter', sans-serif;
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 30px;
            font-weight: 300;
            font-style: italic;
        }

        .footer-disclaimer {
            font-family: 'Inter', sans-serif;
            font-size: 0.8rem;
            line-height: 1.5;
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 300;
        }

        /* Low-pixel animations */
        .pulse-dot {
            width: 8px;
            height: 8px;
            background: #888;
            border-radius: 50%;
            display: inline-block;
            margin-right: 10px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.4;
            }

            50% {
                opacity: 1;
            }
        }

        .slide-in {
            animation: slideIn 0.6s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

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

        /* Additional low-pixel animations */
        .data-flow {
            position: relative;
            overflow: hidden;
        }

        .data-flow::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, #888, transparent);
            animation: dataStream 3s infinite;
        }

        @keyframes dataStream {
            0% {
                left: -100%;
            }

            100% {
                left: 100%;
            }
        }







        /* Modal/Popup Styling */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .modal-overlay.active {
            display: flex;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        .modal-content {
            background: linear-gradient(135deg, #2c2c54 0%, #1a1a2e 100%);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 40px;
            max-width: 600px;
            width: 90%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            animation: slideUp 0.3s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

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

        .modal-close {
            position: absolute;
            top: 15px;
            right: 20px;
            background: none;
            border: none;
            color: #888;
            font-size: 24px;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .modal-close:hover {
            color: white;
        }

        .modal-title {
            font-family: 'Inter', sans-serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: white;
            margin-bottom: 10px;
        }

        .modal-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: #b8b8b8;
            margin-bottom: 30px;
            line-height: 1.5;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            color: #b8b8b8;
            margin-bottom: 8px;
            font-size: 0.9rem;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            color: white;
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: rgba(255, 255, 255, 0.4);
            background: rgba(255, 255, 255, 0.15);
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-textarea {
            min-height: 80px;
            resize: vertical;
        }

        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 10px;
            margin-top: 10px;
        }

        .checkbox-item {
            display: flex;
            align-items: center;
        }

        .checkbox-item input[type="checkbox"] {
            margin-right: 8px;
            accent-color: #b8b8b8;
        }

        .checkbox-item label {
            color: #d4d4d4;
            font-size: 0.9rem;
            cursor: pointer;
        }

        .radio-group {
            display: flex;
            gap: 20px;
            margin-top: 10px;
        }

        .radio-item {
            display: flex;
            align-items: center;
        }

        .radio-item input[type="radio"] {
            margin-right: 8px;
            accent-color: #b8b8b8;
        }

        .radio-item label {
            color: #d4d4d4;
            font-size: 0.9rem;
            cursor: pointer;
        }

        .form-submit {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 15px 30px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 6px;
            font-family: 'Inter', sans-serif;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .form-submit:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        /* Form Styling */
        input::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        button:hover {
            background: rgba(255, 255, 255, 0.15) !important;
            border-color: rgba(255, 255, 255, 0.5) !important;
        }

        /* Timing Section */
        .timing-section {
            padding: 100px 0;
            position: relative;
            background: rgba(0, 0, 0, 0.1);
            border-top: 1px solid rgba(251, 222, 182, 0.1);
            border-bottom: 1px solid rgba(251, 222, 182, 0.1);
        }

        .timing-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 30% 70%, rgba(251, 222, 182, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(212, 201, 255, 0.03) 0%, transparent 50%);
            opacity: 0.6;
            animation: timingGlow 15s ease-in-out infinite;
        }

        @keyframes timingGlow {

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

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

        .timing-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 10;
        }

        .timing-title {
            font-size: 3.5rem;
            font-weight: 300;
            line-height: 1.2;
            color: white;
            font-family: 'Playfair Display', serif;
            margin-bottom: 30px;
        }

        .timing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 10;
        }

        .timing-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(251, 222, 182, 0.2);
            padding: 35px 25px;
            border-radius: 12px;
            text-align: center;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            min-height: 280px;
            display: flex;
            flex-direction: column;
        }

        .timing-card:hover::before {
            transform: translateX(0);
        }

        .timing-card:hover {
            transform: translateY(-8px);
            border-color: rgba(251, 222, 182, 0.4);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        }

        .timing-icon {
            width: 60px;
            height: 60px;
            margin: 20px auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(251, 222, 182, 0.15);
            border-radius: 50%;
            position: relative;
            box-shadow: 0 0 20px rgba(251, 222, 182, 0.1);
            flex-shrink: 0;
        }

        .timing-icon::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 1px solid rgba(251, 222, 182, 0.3);
            border-radius: 50%;
            animation: iconPulse 3s ease-in-out infinite;
        }

        @keyframes iconPulse {

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

            50% {
                opacity: 1;
                transform: scale(1.1);
            }
        }

        .timing-icon svg {
            width: 28px;
            height: 28px;
            z-index: 2;
            position: relative;
        }

        .timing-card-title {
            font-size: 1.4rem;
            font-weight: 500;
            color: white;
            margin-bottom: 15px;
            font-family: 'Playfair Display', serif;
            flex-shrink: 0;
        }

        .timing-card-description {
            font-size: 1rem;
            line-height: 1.6;
            color: #e8e0ff;
            font-weight: 300;
            flex-grow: 1;
            display: flex;
            align-items: center;
        }

        /* Responsive for timing section */
        @media (max-width: 1200px) {
            .timing-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            .timing-grid {
                grid-template-columns: 1fr;
                padding: 0 20px;
                gap: 20px;
            }

            .timing-card {
                padding: 30px 20px;
                min-height: 240px;
            }
        }

        @media (max-width: 480px) {
            .timing-card {
                min-height: 200px;
                padding: 25px 15px;
            }
        }

        /* Features Grid - Imported from index-final.html */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        @media (min-width: 768px) and (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1025px) {
            .features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 30px;
            border-radius: 12px;
            text-align: left;
            position: relative;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 600;
            color: white;
            margin: 20px 0 15px;
        }

        .feature-description {
            color: #d4c9ff;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* Data Stream Animation */
        .data-stream {
            position: absolute;
            top: 0;
            right: 0;
            width: 60px;
            height: 60px;
            opacity: 0.6;
        }

        .data-stream::before,
        .data-stream::after {
            content: '';
            position: absolute;
            width: 2px;
            height: 20px;
            background: #fbdeb6;
            animation: dataFlow 2s infinite;
        }

        .data-stream::before {
            left: 10px;
            animation-delay: 0s;
        }

        .data-stream::after {
            left: 20px;
            animation-delay: 0.5s;
        }

        @keyframes dataFlow {
            0% {
                transform: translateY(-20px);
                opacity: 0;
            }

            50% {
                opacity: 1;
            }

            100% {
                transform: translateY(40px);
                opacity: 0;
            }
        }

        /* Pulse Indicator */
        .pulse-indicator {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 20px;
            height: 20px;
            background: #fbdeb6;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .pulse-indicator::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px solid #fbdeb6;
            border-radius: 50%;
            animation: pulseRing 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        @keyframes pulseRing {
            0% {
                transform: scale(0.8);
                opacity: 1;
            }

            100% {
                transform: scale(1.4);
                opacity: 0;
            }
        }

        /* Security Grid */
        .security-grid {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 30px;
            height: 30px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 2px;
        }

        .security-grid::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(0deg,
                    transparent,
                    transparent 3px,
                    rgba(251, 222, 182, 0.3) 3px,
                    rgba(251, 222, 182, 0.3) 4px);
            animation: gridScan 3s infinite;
        }

        @keyframes gridScan {

            0%,
            100% {
                opacity: 0.3;
            }

            50% {
                opacity: 0.8;
            }
        }

        /* System Radar Animation - for audience cards */
        .system-radar {
            position: relative;
            width: 60px;
            height: 60px;
            margin: 0 auto;
            border: 2px solid rgba(251, 222, 182, 0.3);
            border-radius: 50%;
            overflow: hidden;
        }

        .system-radar-sweep {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 2px;
            height: 30px;
            background: linear-gradient(to bottom, #fbdeb6, transparent);
            transform-origin: bottom center;
            transform: translate(-50%, -100%) rotate(0deg);
            animation: systemRadarSweep 3s linear infinite;
        }

        .system-radar-dots {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .system-radar-dot {
            position: absolute;
            width: 3px;
            height: 3px;
            background: #fbdeb6;
            border-radius: 50%;
            opacity: 0;
            animation: systemRadarPing 3s infinite;
        }

        .system-radar-dot:nth-child(1) {
            top: 30%;
            left: 60%;
            animation-delay: 0.5s;
        }

        .system-radar-dot:nth-child(2) {
            top: 60%;
            left: 30%;
            animation-delay: 1.2s;
        }

        .system-radar-dot:nth-child(3) {
            top: 70%;
            left: 70%;
            animation-delay: 2.1s;
        }

        @keyframes systemRadarSweep {
            0% {
                transform: translate(-50%, -100%) rotate(0deg);
            }

            100% {
                transform: translate(-50%, -100%) rotate(360deg);
            }
        }

        @keyframes systemRadarPing {

            0%,
            90% {
                opacity: 0;
                transform: scale(0.5);
            }

            5%,
            15% {
                opacity: 1;
                transform: scale(1);
            }

            20%,
            100% {
                opacity: 0;
                transform: scale(1.2);
            }
        }

        /* Target Animation */
        .target-animation {
            width: 60px;
            height: 60px;
            margin: 0 auto;
            position: relative;
        }

        .target-animation::before,
        .target-animation::after {
            content: '';
            position: absolute;
            border: 2px solid #fbdeb6;
            border-radius: 50%;
            animation: targetPulse 2s infinite;
        }

        .target-animation::before {
            top: 10px;
            left: 10px;
            right: 10px;
            bottom: 10px;
        }

        .target-animation::after {
            top: 20px;
            left: 20px;
            right: 20px;
            bottom: 20px;
            animation-delay: 0.5s;
        }

        @keyframes targetPulse {

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

            50% {
                opacity: 0.5;
                transform: scale(1.1);
            }
        }

        /* Execute Animation */
        .execute-animation {
            width: 60px;
            height: 60px;
            margin: 0 auto;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .execute-animation::before {
            content: '→';
            font-size: 24px;
            color: #fbdeb6;
            animation: executeFlash 1.5s infinite;
        }

        @keyframes executeFlash {

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

            85% {
                opacity: 0.5;
                transform: scale(1.2);
            }

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

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

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

            .service-quick-options {
                grid-template-columns: 1fr;
            }

            .container {
                padding: 0 20px;
            }

            .header-container {
                padding: 0 20px;
            }
        }

        /* Ready to Start Section */
        .ready-to-start-section {
            margin: 80px 0;
            padding: 60px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
        }

        .ready-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: white;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .ready-subtitle {
            color: #b8b8b8;
            margin-bottom: 40px;
            font-size: 1.1rem;
            font-family: 'Inter', sans-serif;
            font-weight: 300;
        }

        .ready-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }

        .ready-service-card {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .ready-service-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .ready-service-name {
            font-family: 'Inter', sans-serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
            margin-bottom: 10px;
        }

        .ready-service-price {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: #e8e8e8;
            margin-bottom: 20px;
            font-weight: 400;
        }

        .ready-service-cta {
            display: inline-block;
            background: transparent;
            color: white;
            padding: 10px 25px;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 4px;
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .ready-service-cta:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
        }

        /* Efficiency Section - Susan Kare 80s Corp Style */
        .efficiency-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }

        .efficiency-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 40px 30px;
            border-radius: 8px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .efficiency-card:hover {
            background: rgba(255, 255, 255, 0.06);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .efficiency-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .efficiency-title {
            font-family: 'Inter', sans-serif;
            font-size: 1.2rem;
            font-weight: 600;
            color: white;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .efficiency-description {
            font-family: 'Inter', sans-serif;
            font-size: 0.95rem;
            line-height: 1.6;
            color: #b8b8b8;
            font-weight: 300;
        }

        .efficiency-statement {
            text-align: center;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .efficiency-statement p {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            color: #e8e8e8;
            font-style: italic;
            font-weight: 400;
        }

        /* Susan Kare-inspired minimal icons */
        .document-stack {
            width: 40px;
            height: 40px;
            position: relative;
        }

        .document-stack::before,
        .document-stack::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 35px;
            border: 2px solid #fbdeb6;
            border-radius: 2px;
            background: rgba(251, 222, 182, 0.1);
        }

        .document-stack::before {
            top: 0;
            left: 5px;
            z-index: 1;
        }

        .document-stack::after {
            top: 5px;
            left: 0;
            z-index: 0;
            opacity: 0.6;
        }

        .time-indicator {
            width: 40px;
            height: 40px;
            border: 2px solid #fbdeb6;
            border-radius: 50%;
            position: relative;
            background: rgba(251, 222, 182, 0.1);
        }

        .time-indicator::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 2px;
            height: 12px;
            background: #fbdeb6;
            transform: translate(-50%, -100%);
            transform-origin: bottom center;
            animation: clockTick 2s linear infinite;
        }

        .time-indicator::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 2px;
            height: 8px;
            background: #fbdeb6;
            transform: translate(-50%, -100%) rotate(90deg);
            transform-origin: bottom center;
        }

        @keyframes clockTick {
            0% {
                transform: translate(-50%, -100%) rotate(0deg);
            }

            100% {
                transform: translate(-50%, -100%) rotate(360deg);
            }
        }

        .record-keeper {
            width: 40px;
            height: 40px;
            position: relative;
        }

        .record-keeper::before {
            content: '';
            position: absolute;
            width: 35px;
            height: 30px;
            border: 2px solid #fbdeb6;
            border-radius: 2px;
            background: rgba(251, 222, 182, 0.1);
            top: 5px;
            left: 2px;
        }

        .record-keeper::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 2px;
            background: #fbdeb6;
            top: 15px;
            left: 10px;
            box-shadow: 0 5px 0 #fbdeb6, 0 10px 0 #fbdeb6;
        }

        /* Highlight Box - from index-final.html */
        .highlight-box {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 30px;
            margin: 30px 0;
            border-radius: 8px;
            text-align: center;
        }

        .highlight-text {
            font-size: 1.2rem;
            font-weight: 600;
            line-height: 1.4;
            color: white;
        }

        /* Radar Animation - from index-final.html */
        .radar-container {
            position: relative;
            width: 120px;
            height: 120px;
            margin: 0 auto 30px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            overflow: hidden;
        }

        .radar-sweep {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 2px;
            height: 60px;
            background: linear-gradient(to bottom, #fbdeb6, transparent);
            transform-origin: bottom center;
            transform: translate(-50%, -100%) rotate(0deg);
            animation: radarSweep 3s linear infinite;
        }

        .radar-dots {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .radar-dot {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #fbdeb6;
            border-radius: 50%;
            opacity: 0;
            animation: radarPing 3s infinite;
        }

        .radar-dot:nth-child(1) {
            top: 30%;
            left: 60%;
            animation-delay: 0.5s;
        }

        .radar-dot:nth-child(2) {
            top: 60%;
            left: 30%;
            animation-delay: 1.2s;
        }

        .radar-dot:nth-child(3) {
            top: 70%;
            left: 70%;
            animation-delay: 2.1s;
        }

        @keyframes radarSweep {
            0% {
                transform: translate(-50%, -100%) rotate(0deg);
            }

            100% {
                transform: translate(-50%, -100%) rotate(360deg);
            }
        }

        @keyframes radarPing {

            0%,
            90% {
                opacity: 0;
                transform: scale(0.5);
            }

            5%,
            15% {
                opacity: 1;
                transform: scale(1);
            }

            20%,
            100% {
                opacity: 0;
                transform: scale(1.2);
            }
        }

        /* Timing Visualization - from index-final.html */
        .timing-visualization {
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            padding: 50px 30px;
            margin: 50px 0;
            position: relative;
            overflow: hidden;
        }

        .timing-visualization::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                linear-gradient(rgba(251, 222, 182, 0.08) 1px, transparent 1px),
                linear-gradient(90deg, rgba(251, 222, 182, 0.08) 1px, transparent 1px),
                linear-gradient(rgba(251, 222, 182, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(251, 222, 182, 0.03) 1px, transparent 1px);
            background-size: 25px 25px, 25px 25px, 5px 5px, 5px 5px;
            background-position: 0 0, 0 0, 0 0, 0 0;
            animation: timingPattern 12s ease-in-out infinite;
        }

        @keyframes timingPattern {
            0% {
                background-position: 0 0, 0 0, 0 0, 0 0;
                opacity: 0.4;
            }

            25% {
                background-position: 12.5px 12.5px, 12.5px 12.5px, 2.5px 2.5px, 2.5px 2.5px;
                opacity: 0.7;
            }

            50% {
                background-position: 25px 25px, 25px 25px, 5px 5px, 5px 5px;
                opacity: 0.9;
            }

            75% {
                background-position: 37.5px 37.5px, 37.5px 37.5px, 7.5px 7.5px, 7.5px 7.5px;
                opacity: 0.7;
            }

            100% {
                background-position: 50px 50px, 50px 50px, 10px 10px, 10px 10px;
                opacity: 0.4;
            }
        }

        .timing-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .timing-header h4 {
            font-size: 1.4rem;
            color: #fbdeb6;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .timing-header p {
            color: #e8e0ff;
            font-size: 1rem;
        }

        .timing-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .timing-point {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 25px 20px;
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .timing-point:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-3px);
        }

        .timing-point::before {
            content: '';
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 20px;
            background: #fbdeb6;
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(251, 222, 182, 0.5);
        }

        .timing-point.active::before {
            animation: timingPulse 2s infinite;
        }

        .timing-point span {
            display: block;
            font-size: 1rem;
            color: #ffffff;
            font-weight: 500;
            line-height: 1.4;
        }

        @keyframes timingPulse {

            0%,
            100% {
                transform: translateX(-50%) scale(1);
                box-shadow: 0 0 15px rgba(251, 222, 182, 0.5);
            }

            50% {
                transform: translateX(-50%) scale(1.2);
                box-shadow: 0 0 25px rgba(251, 222, 182, 0.8);
            }
        }