        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
             /**background: linear-gradient(135deg,#eff6ff,#ecfeff);**/
            background: #ecfeff;
            color: #111827;
            line-height: 1.6;
        }

        .container {
            width: 90%;
            max-width: 1250px;
            margin: auto;
        }

        header {
            background: #ffffff;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            position: sticky;
            top: 0;
            z-index: 999;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .logo-box {
            width: 58px;
            height: 58px;
            border-radius: 16px;
            background: linear-gradient(135deg,#2563eb,#14b8a6);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
        }

        .logo h1 {
            font-size: 28px;
            color: #0f172a;
        }

        .logo span {
            color: #64748b;
            font-size: 14px;
        }

        nav a {
            text-decoration: none;
            color: #334155;
            margin-left: 28px;
            font-weight: 600;
            transition: 0.3s;
        }

            nav a:hover {
                color: #2563eb;
            }

        .hero {
            padding: 90px 0;
            /*background: linear-gradient(135deg,#eff6ff,#ecfeff);*/
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .badge {
            display: inline-block;
            padding: 10px 18px;
            background: #dbeafe;
            color: #2563eb;
            border-radius: 999px;
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 22px;
        }

        .hero h2 {
            font-size: 60px;
            line-height: 1.1;
            margin-bottom: 24px;
            color: #0f172a;
        }

        .hero p {
            font-size: 18px;
            color: #475569;
            margin-bottom: 35px;
        }

        .btn {
            display: inline-block;
            padding: 16px 30px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s;
            margin-right: 15px;
        }

        .btn-primary {
            background: #2563eb;
            color: white;
        }

            .btn-primary:hover {
                background: #1d4ed8;
            }

        .btn-secondary {
            background: white;
            color: #2563eb;
            border: 2px solid #2563eb;
        }

            .btn-secondary:hover {
                background: #2563eb;
                color: white;
            }

        .mockup {
            animation: fadeInUp 1.2s ease;
            background: white;
            border-radius: 24px;
            padding: 28px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.12);
        }

        .mockup-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

        .mockup-title {
            font-size: 22px;
            font-weight: bold;
        }

        .status-pill {
            background: #dcfce7;
            color: #166534;
            padding: 8px 16px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: bold;
        }

        .mockup-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px;
            border-radius: 14px;
            background: #f8fafc;
            margin-bottom: 15px;
        }

        .redacted {
            background: #111827;
            color: #111827;
            border-radius: 6px;
            padding: 2px 10px;
        }

        .stats {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 18px;
            margin-top: 28px;
        }

        .stat-box {
            background: #eff6ff;
            padding: 18px;
            border-radius: 16px;
            text-align: center;
        }

            .stat-box h3 {
                font-size: 32px;
                color: #2563eb;
            }

        section {
            padding: 20px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

            .section-title h3 {
                font-size: 44px;
                margin-bottom: 16px;
            }

            .section-title p {
                color: #64748b;
                font-size: 18px;
            }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
            gap: 28px;
        }

        .feature-card {
            background: white;
            padding: 35px;
            border-radius: 22px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            transition: 0.3s;
        }

        .feature-card {
            animation: fadeInUp 1s ease;
        }

            .feature-card:hover {
                transform: translateY(-8px);
            }

        .feature-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            background: linear-gradient(135deg,#2563eb,#14b8a6);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 24px;
        }

        .feature-card h4 {
            font-size: 24px;
            margin-bottom: 14px;
        }

        .feature-card p {
            color: #64748b;
        }

        .workflow {
            background: #0f172a;
            color: white;
        }

            .workflow .section-title p {
                color: #cbd5e1;
            }

        .workflow-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
            gap: 30px;
        }

        @keyframes floatCard {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        @keyframes pulseGlow {
            0% {
                box-shadow: 0 0 0 rgba(20,184,166,0.2);
            }

            50% {
                box-shadow: 0 0 30px rgba(20,184,166,0.35);
            }

            100% {
                box-shadow: 0 0 0 rgba(20,184,166,0.2);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(25px);
            }

            to {
                opacity: 1;
                transform: translateY(0px);
            }
        }

        .workflow-step {
            background: #1e293b;
            animation: floatCard 5s ease-in-out infinite;
            transition: 0.3s;
            padding: 35px;
            border-radius: 22px;
            position: relative;
        }

        .step-number {
            animation: pulseGlow 3s infinite;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #14b8a6;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .workflow-step h4 {
            font-size: 24px;
            margin-bottom: 16px;
        }

        .workflow-step p {
            color: #cbd5e1;
        }

        .pricing-callout {
            background: linear-gradient(135deg,#2563eb,#14b8a6);
            color: white;
            border-radius: 30px;
            padding: 80px 40px;
            text-align: center;
        }

            .pricing-callout h3 {
                font-size: 48px;
                margin-bottom: 18px;
            }

            .pricing-callout p {
                max-width: 700px;
                margin: auto;
                margin-bottom: 30px;
                font-size: 18px;
            }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-info {
            background: #ffffff;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        }

            .contact-info h4 {
                font-size: 32px;
                margin-bottom: 18px;
            }

            .contact-info p {
                color: #64748b;
                margin-bottom: 18px;
            }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
        }

        .form-group {
            margin-bottom: 20px;
        }

        input,
        textarea,
        select {
            width: 100%;
            padding: 16px;
            border-radius: 12px;
            border: 1px solid #cbd5e1;
            font-size: 16px;
        }

        textarea {
            min-height: 150px;
        }

        footer {
            background: #020617;
            color: white;
            padding: 45px 0;
            text-align: center;
        }

            footer p {
                color: #94a3b8;
            }

        @media(max-width:900px) {

            .hero-grid,
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .hero h2 {
                font-size: 42px;
            }

            nav {
                display: none;
            }
        }