
        :root {
            --brand: #6C63FF;
            --brand-dark: #4F49C9;
            --ink: #1f2d3d;
            --muted: #6c7a89;
            --bg: #f7f9fc;
        }

        * {
            scroll-behavior: smooth;
        }



        /* Custom Utilities */
        .btn-brand {
            background-color: var(--brand);
            border-color: var(--brand);
            color: white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .btn-brand:hover {
            background-color: var(--brand-dark);
            border-color: var(--brand-dark);
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
        }

        .btn-brand-outline {
            border: 2px solid var(--brand);
            color: var(--brand);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 6px;
            background: transparent;
            transition: all 0.3s ease;
        }

        .btn-brand-outline:hover {
            background-color: var(--brand);
            color: white;
            transform: translateY(-2px);
        }

        .shadow-soft {
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
        }

        .rounded-2xl {
            border-radius: 16px !important;
        }

        .badge-soft {
            background-color: rgba(108, 99, 255, 0.1);
            color: var(--brand);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .tech-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(108, 99, 255, 0.05) 100%);
            color: var(--brand);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
            margin: 4px;
            border: 1px dashed rgba(108, 99, 255, 0.3);
            transition: all 0.2s ease;
        }

        .tech-badge:hover {
            background: var(--brand);
            color: white;
            border-color: var(--brand);
            transform: translateY(-2px);
        }

        .process-step {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1rem;
            box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
        }

        .step-index {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .icon-lg {
            font-size: 2.5rem;
            color: var(--brand);
            margin-bottom: 1rem;
        }

        .section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--muted);
            margin-bottom: 3rem;
        }



        /* Hero Section */
        .hero-section {
            padding: 120px 0 100px;
            background: linear-gradient(135deg, #f7f9fc 0%, #ffffff 100%);
        }

        .hero-headline {
            font-size: 3rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero-subcopy {
            font-size: 1.25rem;
            color: var(--muted);
            margin-bottom: 2rem;
        }

        .hero-image {
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            max-width: 100%;
            height: auto;
        }

        .trust-microcopy {
            font-size: 0.875rem;
            color: var(--muted);
            margin-top: 1.5rem;
        }

        /* Trust Bar */
        .trust-bar {
            padding: 2rem 0;
            background: white;
            border-top: 1px solid rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .trust-item {
            text-align: center;
            color: var(--muted);
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Services Section */
        .services-section {
            background: white;
        }

        .service-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .service-card h4 {
            color: var(--ink);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .service-card ul {
            list-style: none;
            padding: 0;
        }

        .service-card ul li {
            padding: 0.5rem 0;
            color: var(--muted);
            position: relative;
            padding-left: 1.5rem;
        }

        .service-card ul li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--brand);
            font-weight: bold;
        }

        /* Value Proposition Section */
        .value-section {
            background: var(--bg);
        }

        .value-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .value-item i {
            color: var(--brand);
            font-size: 1.5rem;
            margin-right: 1rem;
            margin-top: 0.25rem;
        }

        /* Process Section */
        .process-section {
            background: white;
        }

        .process-card {
            text-align: center;
            padding: 1.5rem;
        }

        .process-card h5 {
            color: var(--ink);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .process-card p {
            color: var(--muted);
            font-size: 0.9rem;
        }

        /* Results Section */
        .results-section {
            background: var(--bg);
        }

        .result-card {
            background: white;
            border-radius: 12px;
            padding: 2rem;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }

        .result-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .result-card h4 {
            color: var(--ink);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .result-card .badge {
            margin: 0.25rem;
        }

        .result-metric {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--brand);
            margin-bottom: 0.5rem;
        }

        /* Pricing Section */
        .pricing-section {
            background: white;
        }

        .pricing-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem 2rem;
            height: 100%;
            transition: all 0.3s ease;
            border: 2px solid rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--brand);
        }

        .pricing-card.featured {
            border-color: var(--brand);
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(108, 99, 255, 0.02) 100%);
        }

        .pricing-tier {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 0.5rem;
        }

        .pricing-price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--brand);
            margin: 1rem 0;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
            text-align: left;
        }

        .pricing-features li {
            padding: 0.75rem 0;
            color: var(--muted);
            position: relative;
            padding-left: 1.5rem;
        }

        .pricing-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--brand);
            font-weight: bold;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: var(--bg);
        }

        .testimonial-card {
            background: white;
            border-radius: 12px;
            padding: 2.5rem;
            text-align: center;
            border: none;
        }

        .testimonial-text {
            font-size: 1.1rem;
            font-style: italic;
            color: var(--ink);
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--brand);
        }

        .testimonial-role {
            color: var(--muted);
            font-size: 0.9rem;
        }

        /* CTA Banner */
        .cta-banner {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
            color: white;
            text-align: center;
        }

        .cta-banner h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .cta-banner .btn {
            background: white;
            color: var(--brand);
            border: none;
            padding: 12px 40px;
            font-weight: 600;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .cta-banner .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        /* FAQ Section */
        .faq-section {
            background: white;
        }

        .faq-card {
            background: white;
            border: 1px solid rgba(0, 0, 0, 0.05);
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .faq-header {
            background: transparent;
            border: none;
            padding: 1.5rem;
            width: 100%;
            text-align: left;
            font-weight: 600;
            color: var(--ink);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .faq-header:hover {
            color: var(--brand);
        }

        .faq-header:not(.collapsed) {
            color: var(--brand);
        }

        .faq-body {
            padding: 0 1.5rem 1.5rem;
            color: var(--muted);
        }

        /* Contact Section */
        .contact-section {
            background: var(--bg);
        }

        .contact-info h3 {
            color: var(--ink);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .contact-info p {
            color: var(--muted);
            margin-bottom: 1.5rem;
        }

        .contact-detail {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .contact-detail i {
            color: var(--brand);
            font-size: 1.25rem;
            margin-right: 1rem;
            width: 24px;
        }

        .contact-form {
            background: white;
            border-radius: 12px;
            padding: 2rem;
        }

        .form-control {
            border-radius: 6px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            padding: 12px;
            margin-bottom: 1rem;
        }

        .form-control:focus {
            border-color: var(--brand);
            box-shadow: 0 0 0 0.2rem rgba(108, 99, 255, 0.25);
        }

        .form-check-input:checked {
            background-color: var(--brand);
            border-color: var(--brand);
        }


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

            .hero-subcopy {
                font-size: 1.1rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .cta-banner h2 {
                font-size: 2rem;
            }
        }
