
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header */
        header {
            background: white;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            padding: 0.75rem 0;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: #0b63d6;
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.25rem;
        }

        .brand-name {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1f2937;
        }

        .brand-tagline {
            font-size: 0.75rem;
            color: #6b7280;
        }

        .cta-button {
            background: #0b63d6;
            color: white;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            box-shadow: 0 2px 4px rgba(11, 99, 214, 0.2);
            transition: transform 0.2s;
        }

        .cta-button:hover {
            transform: scale(1.05);
        }

        /* Main Content */
        main {
            flex: 1;
            display: flex;
            align-items: center;
            padding: 2.5rem 0;
        }

        .grid {
            display: grid;
            gap: 2.5rem;
            align-items: center;
        }

        @media (min-width: 1024px) {
            .grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        /* Hero Section */
        .hero-section {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .badge {
            display: inline-block;
            padding: 0.375rem 0.875rem;
            background: #dbeafe;
            color: #0b63d6;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 500;
            width: fit-content;
        }

        h1 {
            font-size: 2.5rem;
            line-height: 1.2;
            color: #1f2937;
            font-weight: 600;
        }

        .highlight {
            color: #0b63d6;
        }

        .hero-text {
            color: #4b5563;
            line-height: 1.6;
            max-width: 500px;
            font-size: 0.95rem;
        }

        .button-group {
            display: flex;
            gap: 0.75rem;
            flex-wrap: wrap;
        }

        .primary-btn {
            background: #0b63d6;
            color: white;
            border: none;
            padding: 0.625rem 1.5rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            cursor: pointer;
            box-shadow: 0 4px 6px rgba(11, 99, 214, 0.25);
            transition: transform 0.2s;
        }

        .primary-btn:hover {
            transform: scale(1.02);
        }

        .secondary-btn {
            background: white;
            color: #374151;
            border: 1px solid #e5e7eb;
            padding: 0.625rem 1.5rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            cursor: pointer;
            transition: background 0.2s;
        }

        .secondary-btn:hover {
            background: #f0f9ff;
        }

        .status {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 0.75rem;
            color: #4b5563;
            flex-wrap: wrap;
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            background: #10b981;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
            }

            50% {
                opacity: 0.5;
            }
        }

        /* Info Card Section */
        .info-section {
            position: relative;
        }

        .blur-bg-1 {
            position: absolute;
            top: -40px;
            right: -24px;
            width: 128px;
            height: 128px;
            background: rgba(11, 99, 214, 0.1);
            border-radius: 50%;
            filter: blur(40px);
            z-index: 0;
        }

        .blur-bg-2 {
            position: absolute;
            bottom: -40px;
            left: -24px;
            width: 160px;
            height: 160px;
            background: rgba(191, 219, 254, 0.3);
            border-radius: 50%;
            filter: blur(40px);
            z-index: 0;
        }

        .info-card {
            position: relative;
            background: white;
            border-radius: 1rem;
            border: 1px solid #dbeafe;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            padding: 1.5rem;
            z-index: 1;
        }

        .image-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 1rem;
}

.info-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    object-fit: cover;
}

/* Mobile support */
@media (max-width: 768px) {
    .info-image {
        max-height: 260px;
        object-fit: contain;
    }
}

/* Grid container for images + text */
.images-text-mode {
    display: grid;
    gap: 2rem;
    margin-top: 2.5rem;
    grid-template-columns: repeat(4, 1fr);
}

/* Each card */
.step-img-card {
    background: white;
    border-radius: 1rem;
    padding: 1.25rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

/* Hover effect */
.step-img-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Images */
.step-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

/* Titles & Description */
.step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .images-text-mode {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .images-text-mode {
        grid-template-columns: 1fr;
    }

    .step-img-card {
        padding: 1rem;
    }
}


        .active-badge {
            background: #d1fae5;
            color: #065f46;
            padding: 0.25rem 0.625rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 500;
            white-space: nowrap;
        }

        /* Feature Grid */
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.75rem;
            margin-bottom: 1.25rem;
        }

        .feature-box {
            background: #f0f9ff;
            padding: 0.75rem;
            border-radius: 0.5rem;
        }

        .feature-title {
            font-size: 0.875rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.25rem;
        }

        .feature-text {
            font-size: 0.75rem;
            color: #4b5563;
            line-height: 1.4;
        }

        /* Workflow Timeline */
        .workflow-section {
            margin-top: 1.25rem;
        }

        .workflow-title {
            font-size: 0.875rem;
            font-weight: 500;
            color: #1f2937;
            margin-bottom: 0.5rem;
        }

        .workflow-list {
            list-style: none;
            font-size: 0.75rem;
            color: #4b5563;
            line-height: 1.8;
        }

        .workflow-list li {
            padding-left: 0.5rem;
        }

        /* ========== HOW IT WORKS SECTION ========== */
        .how-it-works-section {
            background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
            padding: 4rem 0;
            margin-top: 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.75rem;
        }

        .section-subtitle {
            font-size: 1rem;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 2.5rem;
        }

        .step-card {
            background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
            border-radius: 1rem;
            padding: 2rem 1.5rem;
            border: 1px solid #dbeafe;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .step-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(11, 99, 214, 0.15);
            border-color: #0b63d6;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #0b63d6, #3b82f6);
        }

        .step-number {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #0b63d6, #3b82f6);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
            box-shadow: 0 4px 12px rgba(11, 99, 214, 0.3);
        }

        .step-title {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.75rem;
        }

        .step-description {
            font-size: 0.9375rem;
            color: #4b5563;
            line-height: 1.6;
        }

        .step-icon {
            font-size: 2.5rem;
            position: absolute;
            right: 1.5rem;
            top: 1.5rem;
            opacity: 0.08;
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .step-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }

        .step-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .step-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .step-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        /* Footer */
        footer {
            background: white;
            border-top: 1px solid #e5e7eb;
            padding: 1rem 0;
            text-align: center;
            font-size: 0.75rem;
            color: #6b7280;
        }

        /* ---------- RESPONSIVE TWEAKS FOR ALL DEVICES ---------- */

        /* Tablets & below */
        @media (max-width: 1024px) {
            main {
                align-items: flex-start;
                padding: 2rem 0;
            }

            .how-it-works-section {
                padding: 3rem 0;
            }
        }

        /* Mobile & small tablets */
        @media (max-width: 768px) {
            .container {
                padding: 0 1.25rem;
            }

            h1 {
                font-size: 2rem;
            }

            .hero-text {
                max-width: 100%;
            }

            .feature-grid {
                grid-template-columns: 1fr;
            }

            .info-card {
                margin-top: 0.5rem;
            }

            .header-content {
                flex-direction: row;
                justify-content: space-between;
            }

            .section-title {
                font-size: 1.75rem;
            }

            .section-subtitle {
                font-size: 0.9375rem;
            }

            .steps-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .how-it-works-section {
                padding: 2.5rem 0;
                margin-top: 1.5rem;
            }
        }

        /* Very small devices (<=480px) */
        @media (max-width: 480px) {
            header {
                padding: 0.5rem 0;
            }

            .header-content {
                flex-direction: column;
                align-items: flex-start;
            }

            h1 {
                font-size: 1.75rem;
            }

            main {
                padding: 1.5rem 0;
            }

            .info-card {
                padding: 1.25rem;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .step-card {
                padding: 1.5rem 1.25rem;
            }

            .step-number {
                width: 42px;
                height: 42px;
                font-size: 1.125rem;
            }

            .step-title {
                font-size: 1.125rem;
            }

            .how-it-works-section {
                padding: 2rem 0;
            }
        }
    
        /* ===========================
   BASIC RESET & GLOBAL STYLES
=========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f5f7ff;
    color: #333;
    line-height: 1.6;
}

/* Container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ===========================
        HEADER
=========================== */
header {
    padding: 20px 0;
    background: #ffffffaa;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid #e6e6e6;
}

.header-content {
    display: flex;
    align-items: center;
}

.logo-section img {
    object-fit: contain;
}

/* ===========================
        MAIN GRID
=========================== */
.grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* ===========================
        HERO SECTION LEFT
=========================== */
.hero-section h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
}

.highlight {
    color: #4a63ff;
}

.hero-text {
    margin-top: 15px;
    font-size: 18px;
    color: #555;
}

.status {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #ff4d4d;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: #ff4d4d;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

.extra-info {
    margin-top: 25px;
    padding-left: 10px;
}

.extra-info ul {
    margin-top: 8px;
    padding-left: 20px;
    color: #444;
}

/* ===========================
        INFO CARD RIGHT
=========================== */
.info-section {
    position: relative;
}

.blur-bg-1, .blur-bg-2 {
    position: absolute;
    width: 160px;
    height: 160px;
    background: #4a63ff;
    opacity: 0.2;
    filter: blur(80px);
    border-radius: 50%;
}

.blur-bg-1 {
    top: -20px;
    right: 20px;
}

.blur-bg-2 {
    bottom: -20px;
    left: 20px;
}

.info-card {
    background: #ffffffcc;
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(255,255,255,0.5);
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
}

.card-subtitle {
    color: #555;
    font-size: 14px;
}

.active-badge {
    background: #49d66e;
    padding: 6px 14px;
    color: #fff;
    border-radius: 25px;
    font-size: 13px;
}

/* Features Grid */
.feature-grid {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.feature-box {
    background: #f3f4ff;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
}

.feature-text {
    font-size: 13px;
    margin-top: 5px;
    color: #555;
}

/* Workflow */
.workflow-section {
    margin-top: 25px;
}

.workflow-title {
    font-weight: 600;
    font-size: 18px;
}

.workflow-list {
    margin-top: 10px;
    padding-left: 5px;
    color: #444;
}

/* ===========================
        ABOUT SECTION
=========================== */
.about-section {
    padding: 3rem 0 3.5rem;
}

.about-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

/* Image wrapper */
.about-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.about-image {
    width: 100%;
    max-width: 420px;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

/* Text side */
.about-content {
    text-align: left;
}

.about-content .section-title {
    margin-bottom: 1rem;
}

.about-content .about-text {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.7;
}

/* Tablet and up: 2 columns */
@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    }
}

/* Mobile tweaks */
@media (max-width: 767px) {
    .about-section {
        padding: 2.5rem 0;
    }

    .about-content {
        text-align: left;
    }
}


/* ===========================
        HOW IT WORKS
=========================== */
.how-it-works-section {
    padding: 70px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

.section-subtitle {
    margin-top: 10px;
    color: #555;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.step-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-icon {
    font-size: 40px;
}

.step-number {
    margin: 10px auto;
    font-size: 20px;
    font-weight: 700;
    color: #4a63ff;
}

.step-title {
    font-size: 18px;
    font-weight: 600;
}

.step-description {
    margin-top: 8px;
    color: #555;
    font-size: 14px;
}

.features-section {
    padding: 3rem 0 3.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

/* Grid layout */
.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(4, 1fr);
}

/* Each feature card */
.feature-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Image */
.feature-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.feature-image {
    width: 100%;
    max-width: 220px;
    border-radius: 0.75rem;
    object-fit: contain;
}

/* Text */
.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
}

.feature-text {
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.6;
}

/* Medium screens: 2 columns */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small screens: 1 column */
@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 1.25rem 1rem;
    }
}


/* ===========================
        FOOTER
=========================== */
footer {
    background: #1a1f36;
    color: #ddd;
    padding: 50px 0 20px;
    margin-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.footer-col ul li:hover {
    color: #4a63ff;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 14px;
}

/* ===========================
        RESPONSIVE DESIGN
=========================== */
@media (max-width: 900px) {

    .grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .steps-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-section h1 {
        font-size: 32px;
    }
}

/* ===========================
   REQUEST DEMO SECTION
=========================== */
.request-demo-section {
    margin-top: 90px;
    padding: 70px 0;
    background: #f1f3ff;
    border-top: 1px solid #d9ddff;
}

.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.demo-text h2 {
    font-size: 32px;
    font-weight: 700;
}

.demo-text p {
    margin-top: 10px;
    font-size: 17px;
    color: #444;
    max-width: 450px;
}

.demo-points {
    margin-top: 18px;
    list-style: none;
}

.demo-points li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
}

/* FORM CARD */
.demo-form-card {
    background: #ffffffcc;
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border: 1px solid rgba(255,255,255,0.6);
}

.demo-form-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
}

.demo-form-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.demo-form-card input,
.demo-form-card select {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #d0d3ff;
    font-size: 15px;
    outline: none;
}

.demo-form-card input:focus,
.demo-form-card select:focus {
    border-color: #4a63ff;
}

.demo-btn {
    margin-top: 5px;
    padding: 12px;
    background: #4a63ff;
    color: white;
    font-size: 16px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.demo-btn:hover {
    background: #3c51d8;
    transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .demo-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .demo-text p,
    .demo-text h2 {
        margin: auto;
    }

    .demo-form-card {
        width: 100%;
    }
}
