

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: #172033;
            background: #ffffff;
            line-height: 1.6;
            
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: auto;
        }


        /* =========================
           HEADER
        ========================= */

        .header {
            height: 100px;
            display: flex;
            align-items: center;
            background: #ffffff;
            border-bottom: 1px solid #eef1f6;

            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo img {
            width: 120px;
            display: block;
        }

        .navbar {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .navbar > a:not(.nav-demo-btn) {
            font-size: 14px;
            color: #4c566a;
            font-weight: 500;
            transition: 0.3s;
        }

        .navbar > a:not(.nav-demo-btn):hover {
            color: #2477d4;
        }

        .nav-demo-btn {
            background: #2792c0;
            color: #ffffff;
            padding: 12px 22px;
            border-radius: 7px;

            font-size: 14px;
            font-weight: 600;

            transition: 0.3s;
        }

        .nav-demo-btn:hover {
            background: #185ba9;
            transform: translateY(-2px);
        }
        
   .menu-btn {
    display: none;
    width: 45px;
    height: 45px;

    border: 1px solid #172033;
    background: #ffffff;

    color: #172033;

    font-size: 24px;
    cursor: pointer;

    position: relative;
    z-index: 9999;
}

        /* =========================
           HERO
        ========================= */

        .hero {
            background:
                linear-gradient(135deg,
                #f6fbff 0%,
                #ffffff 60%);

            padding: 50px 0 120px;

            overflow: hidden;
        }

        .hero-container {
            display: grid;
            grid-template-columns: 1fr 1fr;

            gap: 70px;

            align-items: center;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;

            background: #eaf4ff;
            color: #2477d4;

            padding: 8px 15px;

            border-radius: 30px;

            font-size: 12px;
            font-weight: 600;

            margin-bottom: 25px;
        }

        .hero-content h1 {
            font-size: clamp(42px, 5vw, 68px);

            line-height: 1.1;

            letter-spacing: -2px;

            color: #172033;

            margin-bottom: 25px;
        }

        .hero-content h1 span {
            display: block;
            color: #2792c0;
        }

        .hero-content > p {
            font-size: 17px;

            color: #697386;

            max-width: 560px;

            margin-bottom: 35px;
        }

        .hero-buttons {
            display: flex;

            align-items: center;

            gap: 15px;

            flex-wrap: wrap;
        }

        .primary-btn,
        .secondary-btn {
            display: inline-flex;

            align-items: center;

            gap: 10px;

            padding: 15px 24px;

            border-radius: 7px;

            font-size: 14px;

            font-weight: 600;

            transition: 0.3s;
        }

        .primary-btn {
            background: #2792c0;
            color: #ffffff;
        }

        .primary-btn:hover {
            background: #185ba9;
            transform: translateY(-3px);
        }

        .secondary-btn {
            color: #2792c0;

            border: 1px solid #d8e7f8;
        }

        .secondary-btn:hover {
            background: #f1f7fd;
        }

        .hero-trust {
            display: flex;

            gap: 25px;

            flex-wrap: wrap;

            margin-top: 35px;
        }

        .trust-item {
            display: flex;

            align-items: center;

            gap: 7px;

            color: #7a8495;

            font-size: 12px;
        }

        .trust-item i {
            color: #21ad76;
        }


        /* =========================
           DASHBOARD
        ========================= */

        .hero-visual {
            position: relative;

            min-height: 500px;

            display: flex;

            justify-content: center;

            align-items: center;
        }

        .dashboard-card {
            width: 100%;
            max-width: 500px;

            background: #ffffff;

            border-radius: 18px;

            padding: 28px;

            box-shadow:
                0 25px 70px rgba(43, 84, 125, 0.15);

            border: 1px solid #edf2f7;
        }

        .dashboard-header {
            display: flex;

            justify-content: space-between;

            align-items: center;

            margin-bottom: 25px;
        }

        .dashboard-header small {
            color: #8993a5;
            font-size: 12px;
        }

        .dashboard-header h3 {
            font-size: 21px;
            margin-top: 3px;
        }

        .dashboard-icon {
            width: 45px;
            height: 45px;

            border-radius: 12px;

            display: grid;

            place-items: center;

            color: #2477d4;

            background: #eaf4ff;
        }

        .stats-grid {
            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 15px;
        }

        .stat-box {
            background: #f8fafc;

            padding: 18px;

            border-radius: 12px;
        }

        .stat-box span {
            display: block;

            color: #8993a5;

            font-size: 11px;

            margin-bottom: 8px;
        }

        .stat-box strong {
            display: block;

            font-size: 21px;

            margin-bottom: 5px;
        }

        .stat-box small {
            font-size: 11px;
        }

        .positive {
            color: #21ad76;
        }


        /* =========================
           CHART
        ========================= */

        .chart-area {
            margin-top: 30px;
        }

        .chart-title {
            display: flex;

            justify-content: space-between;

            color: #677286;

            font-size: 12px;

            margin-bottom: 20px;
        }

        .chart-bars {
            height: 170px;

            display: flex;

            align-items: end;

            justify-content: space-around;

            gap: 14px;

            border-bottom: 1px solid #edf0f4;
        }

        .bar {
            width: 35px;

            background: #d9eafa;

            border-radius: 5px 5px 0 0;
        }

        .bar.active {
            background: #2477d4;
        }

        .chart-labels {
            display: flex;

            justify-content: space-around;

            color: #9ba3b0;

            font-size: 10px;

            margin-top: 10px;
        }


        /* =========================
           FLOATING CARDS
        ========================= */

        .floating-card {
            position: absolute;

            background: #ffffff;

            border-radius: 12px;

            padding: 15px;

            display: flex;

            align-items: center;

            gap: 12px;

            box-shadow:
                0 15px 40px rgba(43, 84, 125, 0.15);

            border: 1px solid #eef1f6;
        }

        .floating-card strong {
            display: block;

            font-size: 11px;
        }

        .floating-card small {
            display: block;

            color: #8993a5;

            font-size: 9px;
        }

        .medicine-card {
            left: -10px;
            top: 80px;
        }

        .prescription-card {
            right: -20px;
            bottom: 80px;
        }

        .floating-icon {
            width: 38px;
            height: 38px;

            display: grid;

            place-items: center;

            border-radius: 10px;

            background: #eaf8f2;

            color: #21ad76;
        }

        .floating-icon.purple {
            background: #f1edff;
            color: #7257d8;
        }

        .success-icon {
            color: #21ad76;
        }


        /* =========================
           TRUST SECTION
        ========================= */

        .trust-section {
            padding: 35px 0;

            border-bottom: 1px solid #edf1f5;
        }

        .trust-section p {
            text-align: center;

            color: #8993a5;

            font-size: 13px;

            margin-bottom: 25px;
        }

        .trust-logos {
            display: flex;

            justify-content: center;

            gap: 55px;

            flex-wrap: wrap;
        }

        .trust-logos span {
            display: flex;

            align-items: center;

            gap: 9px;

            color: #2792c0;

            font-size: 13px;
        }

        .trust-logos i {
            color: #2792c0;

            font-size: 18px;
        }


        /* =========================
           COMMON SECTION
        ========================= */

        .features-section,
        .benefits-section {
            padding: 110px 0;
        }

        .section-heading {
            max-width: 650px;

            margin: auto;

            text-align: center;

            margin-bottom: 60px;
        }

        .section-label {
            display: inline-block;

            color: #2477d4;

            font-size: 11px;

            font-weight: 700;

            letter-spacing: 1.5px;

            margin-bottom: 15px;
        }

        .section-heading h2 {
            font-size: 42px;

            line-height: 1.2;

            letter-spacing: -1px;

            margin-bottom: 18px;
        }

        .section-heading p {
            color: #778194;

            font-size: 15px;
        }


        /* =========================
           FEATURES
        ========================= */

        .features-grid {
            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 22px;
        }

        .feature-card {
            padding: 30px;

            border: 1px solid #edf0f5;

            border-radius: 14px;

            transition: 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-7px);

            box-shadow:
                0 15px 40px rgba(31, 71, 113, 0.09);
        }

        .feature-icon {
            width: 52px;
            height: 52px;

            border-radius: 13px;

            display: grid;

            place-items: center;

            font-size: 21px;

            margin-bottom: 22px;
        }

        .feature-icon.blue {
            background: #eaf4ff;
            color: #2477d4;
        }

        .feature-icon.green {
            background: #eaf8f2;
            color: #21ad76;
        }

        .feature-icon.purple {
            background: #f1edff;
            color: #7257d8;
        }

        .feature-icon.orange {
            background: #fff3e5;
            color: #e38c29;
        }

        .feature-icon.cyan {
            background: #e7f9fb;
            color: #1b9ba9;
        }

        .feature-icon.red {
            background: #fff0f0;
            color: #dc6060;
        }

        .feature-card h3 {
            font-size: 18px;

            margin-bottom: 12px;
        }

        .feature-card p {
            color: #788294;

            font-size: 13px;

            margin-bottom: 22px;
        }

        .feature-card a {
            color: #2477d4;

            font-size: 12px;

            font-weight: 600;
        }


        /* =========================
           SOLUTIONS
        ========================= */

        .solutions-section {
            padding: 110px 0;

            background: #f7faff;
        }

        .solution-container {
            display: grid;

            grid-template-columns: 1fr 1fr;

            gap: 90px;

            align-items: center;
        }

        .solution-image {
            background: #eaf4ff;

            padding: 35px;

            border-radius: 25px;
        }

        .solution-screen {
            background: #ffffff;

            border-radius: 15px;

            padding: 25px;

            box-shadow:
                0 15px 40px rgba(42, 87, 130, 0.12);
        }

        .screen-top {
            display: flex;

            justify-content: space-between;

            color: #2477d4;

            font-weight: 700;

            font-size: 13px;
        }

        .screen-title {
            margin: 35px 0 25px;
        }

        .screen-title h3 {
            font-size: 21px;
        }

        .screen-title p {
            color: #8993a5;

            font-size: 12px;
        }

        .medicine-row {
            display: flex;

            justify-content: space-between;

            align-items: center;

            padding: 16px 0;

            border-bottom: 1px solid #edf1f5;

            font-size: 13px;
        }

        .medicine-row span {
            display: flex;

            align-items: center;

            gap: 10px;
        }

        .medicine-row i {
            color: #2477d4;
        }

        .medicine-row strong {
            color: #21ad76;
        }

        .solution-content h2 {
            font-size: 43px;

            line-height: 1.2;

            margin-bottom: 20px;
        }

        .solution-content h2 span {
            color: #2792c0;
        }

        .solution-content > p {
            color: #778194;

            font-size: 15px;

            margin-bottom: 35px;
        }

        .solution-point {
            display: flex;

            gap: 15px;

            margin-bottom: 24px;
        }

        .point-icon {
            min-width: 28px;

            height: 28px;

            display: grid;

            place-items: center;

            border-radius: 50%;

            background: #eaf8f2;

            color: #21ad76;

            font-size: 12px;
        }

        .solution-point h4 {
            font-size: 15px;

            margin-bottom: 3px;
        }

        .solution-point p {
            color: #8993a5;

            font-size: 12px;
        }


        /* =========================
           BENEFITS
        ========================= */

        .benefits-section {
            background: #ffffff;
        }

        .benefits-grid {
            display: grid;

            grid-template-columns: repeat(4, 1fr);

            gap: 25px;
        }

        .benefit-item {
            padding: 25px;

            border-left: 1px solid #e8edf3;
        }

        .benefit-number {
            color: #2477d4;

            font-size: 13px;

            font-weight: 700;

            margin-bottom: 22px;
        }

        .benefit-item h3 {
            font-size: 20px;

            margin-bottom: 10px;
        }

        .benefit-item p {
            color: #788294;

            font-size: 13px;
        }


        /* =========================
           CTA
        ========================= */

        .cta-section {
            padding: 80px 0;

            background: #2792c0;

            color: #ffffff;
        }

        .cta-container {
            display: flex;

            justify-content: space-between;

            align-items: center;

            gap: 40px;
        }

        .section-label.light {
            color: #cce3fb;
        }

        .cta-container h2 {
            font-size: 40px;

            line-height: 1.2;

            max-width: 600px;

            margin-bottom: 15px;
        }

        .cta-container p {
            color: #d9eafa;

            font-size: 14px;
        }

        .cta-buttons {
            display: flex;

            gap: 12px;

            flex-shrink: 0;
        }

        .white-btn,
        .outline-btn {
            padding: 14px 22px;

            border-radius: 7px;

            font-size: 13px;

            font-weight: 600;
        }

        .white-btn {
            background: #ffffff;

            color: #2477d4;
        }

        .outline-btn {
            border: 1px solid #a9d0f4;

            color: #ffffff;
        }


        /* =========================
           FOOTER
        ========================= */

        .footer {
            background: #172033;

            color: #ffffff;

            padding-top: 40px;
        }

        .footer-container {
            display: grid;

            grid-template-columns: 2fr 1fr 1fr 1fr;

            gap: 50px;

            padding-bottom: 55px;
        }

        .footer-brand img {
            width: 140px;

            margin-bottom: 20px;
        }

        .footer-brand p {
            max-width: 260px;

            color: #a9b2c1;

            font-size: 13px;
        }

        .social-icons {
            display: flex;

            gap: 10px;

            margin-top: 22px;
        }

        .social-icons a {
            width: 34px;

            height: 34px;

            display: grid;

            place-items: center;

            border: 1px solid #354054;

            border-radius: 50%;

            color: #a9b2c1;

            font-size: 12px;
        }

        .footer-column h4 {
            font-size: 14px;

            margin-bottom: 20px;
        }

        .footer-column a {
            display: block;

            color: #a9b2c1;

            font-size: 12px;

            margin-bottom: 12px;
        }

        .footer-column a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            border-top: 1px solid #2c374a;

            padding: 20px 0;
        }

        .footer-bottom .container {
            display: flex;

            justify-content: space-between;

            color: #8993a5;

            font-size: 11px;
        }


        /* =========================
           RESPONSIVE
        ========================= */
        
@media (max-width: 900px) {

    /* MOBILE NAVIGATION */
    .navbar {
        display: none;
        position: absolute;
        top: 100px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 1001;
    }

    .navbar.active {
        display: flex !important;
    }

    .navbar a {
        display: block;
        width: 100%;
        padding: 15px;
        text-align: center;
    }

 .menu-btn {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        border: 0;
        
    }
        

    .menu-btn11 i {
        color: #2792c0;
    }


    /* OTHER MOBILE LAYOUT */
    .hero-container,
    .solution-container {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons,
    .hero-trust {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-container {
        grid-template-columns: 2fr 1fr 1fr;
    }
}


@media (max-width: 600px) {

    .hero {
        padding: 70px 0;
    }

    .hero-container {
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-visual {
        min-height: auto;
        width: 100%;
    }

    .dashboard-card {
        width: 100%;
        padding: 18px;
    }

    .floating-card {
        display: none;
    }

    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .section-heading h2,
    .solution-content h2,
    .cta-container h2 {
        font-size: 32px;
    }

    .solution-container {
        gap: 50px;
    }

    .solution-image {
        padding: 18px;
    }

    .trust-logos {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 8px;
    }
}