.elementor-8103 .elementor-element.elementor-element-18d14e38 > .elementor-widget-container{margin:-25px 0px 0px 0px;}.elementor-8103 .elementor-element.elementor-element-1de94e1b{margin-top:50px;margin-bottom:50px;}.elementor-8103 .elementor-element.elementor-element-7c1958b6 > .elementor-widget-container{margin:0px 30px 0px 0px;}.elementor-8103 .elementor-element.elementor-element-6165d694{margin-top:-50px;margin-bottom:0px;}@media(max-width:767px){.elementor-8103 .elementor-element.elementor-element-18d14e38 > .elementor-widget-container{margin:-140px 0px 0px 0px;}}/* Start custom CSS */:root {
        --primary-color: #0F52BA;
        --primary-light: #3A7CE0;
        --secondary-color: #00A3E0;
        --accent-color: #FF6B35;
        --accent-hover: #E55A2B;
        --dark-color: #0B1120;
        --text-main: #334155;
        --text-light: #64748B;
        --bg-light: #F8FAFC;
        --bg-white: #FFFFFF;
        --success-color: #10B981;
        --border-color: #E2E8F0;
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        --radius-md: 12px;
            --primary: #00a3e0;
            --primary-dark: #0081b8;
            --accent: #ff6b35;
            --success: #10b981;
            --bg-light: #f8fafc;
            --bg-grey: #f1f5f9;
            --text-dark: #1e293b;
            --text-muted: #64748b;
            --border: #e2e8f0;
            --radius: 8px;
            --radius-lg: 16px;
    }

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

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
        line-height: 1.7;
        color: var(--text-main);
        background-color: var(--bg-white);
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5, h6 {
        color: var(--dark-color);
        line-height: 1.2;
        letter-spacing: -0.02em;
    }

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

        .section-intro {
            max-width: 800px;
            margin: 0 auto 56px;
        }

        /* FEATURE SECTIONS */
        .feature-section {
            padding: 100px 0;
            border-bottom: 1px solid var(--border);
        }

            .feature-section:nth-child(even) {
                background: #fff;
            }

        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

            .feature-grid.reverse .feature-content {
                order: 2;
            }

            .feature-grid.reverse .feature-visual {
                order: 1;
            }

        .feature-content h2 {
            font-size: 2.5rem;
            margin-bottom: 24px;
            line-height: 1.2;
            letter-spacing: -0.01em;
        }

        .feature-content p {
            font-size: 1.125rem;
            margin-bottom: 20px;
            color: var(--text-muted);
        }

        .feature-content ul {
            list-style: none;
            padding: 0;
            margin: 24px 0;
        }

            .feature-content ul li {
                padding: 12px 0;
                color: var(--text-dark);
                font-size: 1.45rem;
                display: flex;
                align-items: flex-start;
                gap: 12px;
            }

                .feature-content ul li::before {
                    content: "✓";
                    color: var(--success);
                    font-weight: 800;
                    font-size: 1.2rem;
                    flex-shrink: 0;
                }

        /* FEATURE VISUAL */
        .feature-visual {
            background: white;
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            position: relative;
        }

            .feature-visual::before {
                content: '';
                position: absolute;
                top: -12px;
                left: -12px;
                right: 12px;
                bottom: 12px;
                background: var(--primary);
                border-radius: var(--radius-lg);
                z-index: -1;
                opacity: 0.08;
            }

        /* MOCKUP STYLES */
        .dashboard-mockup {
            background: white;
            border-radius: var(--radius);
            padding: 24px;
            border: 1px solid var(--border);
        }

        /* BENEFITS GRID */
        .benefits-section {
            background: var(--bg-grey);
            padding: 100px 0;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 20px;
            margin-top: 56px;
        }

        .benefit-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }

            .benefit-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 12px 32px rgba(0,0,0,0.08);
                border-color: var(--primary);
            }

            .benefit-card .icon {
                font-size: 2.5rem;
                margin-bottom: 20px;
                display: inline-block;
                background: var(--bg-light);
                padding: 16px;
                border-radius: var(--radius);
                line-height: 1;
            }

            .benefit-card h3 {
                font-size: 2rem;
                margin-bottom: 12px;
                color: var(--text-dark);
            }

            .benefit-card p {
                font-size: 0.95rem;
                color: var(--text-muted);
                margin: 0;
            }

            .benefit-card ul {
                list-style: none;
                padding: 0;
                margin-top: 16px;
            }

                .benefit-card ul li {
                    padding: 10px 0;
                    color: var(--text-muted);
                    font-size: 14px;
                    border-top: 1px solid var(--bg-light);
                }

                    .benefit-card ul li:first-child {
                        border-top: none;
                    }

                    .benefit-card ul li::before {
                        content: "✓ ";
                        color: var(--success);
                        font-weight: 800;
                        margin-right: 8px;
                    }

        /* ROI SECTION */
        .roi-section {
            background: white;
            padding: 100px 0;
        }

        .roi-comparison {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 40px;
            flex-wrap: wrap;
            margin: 56px 0;
        }

        .roi-card {
            background: var(--bg-light);
            border-radius: var(--radius-lg);
            padding: 48px 40px;
            min-width: 280px;
            text-align: center;
            transition: transform 0.3s ease;
            border: 2px solid transparent;
        }

            .roi-card:hover {
                transform: scale(1.02);
            }

            .roi-card.before {
                border-color: #fca5a5;
                background: #fef2f2;
            }

            .roi-card.after {
                border-color: #86efac;
                background: #f0fdf4;
            }

        .roi-time {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 12px;
            line-height: 1;
        }

        .roi-card.before .roi-time {
            color: #dc2626;
        }

        .roi-card.after .roi-time {
            color: var(--success);
        }

        .roi-label {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-dark);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .roi-result {
            background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
            color: #fff;
            border-radius: var(--radius-lg);
            padding: 48px;
            max-width: 800px;
            margin: 0 auto;
            box-shadow: 0 20px 60px rgba(0, 163, 224, 0.25);
            text-align: center;
        }

            .roi-result .big {
                font-size: 2.5rem;
                font-weight: 800;
                display: block;
                margin-bottom: 16px;
                line-height: 1.2;
            }

            .roi-result p {
                color: rgba(255,255,255,0.95);
                font-size: 1.125rem;
                margin: 0;
            }

        /* COMPARISON TABLE */
        .comparison-section {
            background: var(--bg-grey);
            padding: 100px 0;
        }

        table.comparison-table {
            width: 100%;
            max-width: 900px;
            margin: 56px auto 0;
            border-collapse: separate;
            border-spacing: 0;
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: #fff;
        }

            table.comparison-table th,
            table.comparison-table td {
                padding: 24px 32px;
                text-align: left;
                border-bottom: 1px solid var(--border);
            }

            table.comparison-table th {
                background: var(--text-dark);
                color: #fff;
                font-size: 1.125rem;
                font-weight: 600;
            }

            table.comparison-table td:first-child {
                color: var(--text-muted);
                font-weight: 500;
            }

            table.comparison-table td:last-child {
                color: var(--primary);
                font-weight: 600;
                background: rgba(0, 163, 224, 0.03);
            }

            table.comparison-table tr:last-child td {
                border-bottom: none;
            }


    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }

    .text-gradient {
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 14px 32px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.3rem;
        text-decoration: none;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
    }

    .btn-primary {
        background: var(--accent-color);
        color: white;
        box-shadow: 0 4px 14px rgba(255, 107, 53, 0.3);
    }

        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

    /* Header */
    header {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--border-color);
        position: sticky;
        top: 0;
        z-index: 1000;
        padding: 0;
    }

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

    .logo {
        font-size: 1.75rem;
        font-weight: 800;
        color: var(--primary-color);
        letter-spacing: -0.03em;
        display: flex;
        align-items: center;
        gap: 8px;
    }

        .logo::before {
            content: '';
            display: inline-block;
            width: 24px;
            height: 24px;
            background: var(--accent-color);
            border-radius: 6px;
        }

    /* Hero Section */
    .hero {
        background: var(--bg-light);
        padding: 50px 0 60px;
        position: relative;
        overflow: hidden;
    }

        .hero::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0,163,224,0.1) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            z-index: 0;
        }

    .hero-container {
        display: flex;
        align-items: center;
        gap: 0px;
        position: relative;
        z-index: 1;
    }

    .hero-content {
        flex: 1;
        max-width: 650px;
    }

    .hero-tag {
        display: inline-block;
        padding: 6px 16px;
        background: rgba(15, 82, 186, 0.1);
        color: var(--primary-color);
        border-radius: 20px;
        font-weight: 600;
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .hero h1 {
        font-size: 5rem;
        margin-bottom: 24px;
        font-weight: 800;
    }

    .hero p {
        font-size: 1.8rem;
        color: var(--text-light);
        margin-bottom: 32px;
    }

    .hero-visual {
        flex: 1;
        position: relative;
        animation: float 6s ease-in-out infinite;
        padding-left: 50px;
    }

    .dashboard-mockup {
        background: white;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-xl);
        padding: 5px;
        border: 1px solid var(--border-color);
    }
    
    .dashboard-mockup img {
        border-radius: var(--radius-lg)
    }

    .dashboard-header {
        display: flex;
        gap: 8px;
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--border-color);
    }

    .dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

        .dot.red {
            background: #FF5F56;
        }

        .dot.yellow {
            background: #FFBD2E;
        }

        .dot.green {
            background: #27C93F;
        }

    .dashboard-body {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .mock-bar {
        height: 12px;
        border-radius: 6px;
        background: var(--bg-light);
    }

        .mock-bar.w-70 {
            width: 70%;
            background: var(--primary-light);
        }

        .mock-bar.w-40 {
            width: 40%;
            background: var(--secondary-color);
        }

        .mock-bar.w-90 {
            width: 90%;
            background: var(--success-color);
        }

    .hero-checklist {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 40px;
    }

    .hero-check-item {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 500;
        color: var(--dark-color);
    }

        .hero-check-item svg {
            color: var(--success-color);
            width: 20px;
            height: 20px;
        }

    /* Section Titles */
    .section-header {
        text-align: center;
        margin-bottom: 64px;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

        .section-header h2 {
            font-size: 2.5rem;
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 1.8rem;
            color: var(--text-light);
        }

    /* Problem Section */
    .problem-section {
        padding: 100px 0;
        background: white;
    }

    .challenge-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 32px;
    }

    .challenge-card {
        background: var(--bg-light);
        padding: 40px 32px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
    }

        .challenge-card:hover {
            background: white;
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            border-color: var(--primary-light);
        }

    .icon-wrapper {
        width: 48px;
        height: 48px;
        background: rgba(15, 82, 186, 0.1);
        color: var(--primary-color);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 24px;
    }

    .challenge-card h3 {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    /* Features Section */
    .features-section {
        padding: 100px 0;
        background: var(--bg-light);
    }

    .feature-row {
        display: flex;
        align-items: center;
        gap: 80px;
        margin-bottom: 100px;
    }

        .feature-row:last-child {
            margin-bottom: 0;
        }

        .feature-row:nth-child(even) {
            flex-direction: row-reverse;
        }

    .feature-content {
        flex: 1;
    }

        .feature-content h3 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .feature-content p {
            color: var(--text-light);
            font-size: 1.6rem;
            margin-bottom: 24px;
        }

    .feature-list {
        list-style: none;
    }

        .feature-list li {
            position: relative;
            padding-left: 32px;
            margin-bottom: 16px;
            font-weight: 500;
            color: var(--dark-color);
        }

            .feature-list li::before {
                content: '';
                position: absolute;
                left: 0;
                top: 6px;
                width: 20px;
                height: 20px;
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF6B35' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
                background-size: contain;
                background-repeat: no-repeat;
            }

    .feature-visual {
        flex: 1;
        background: white;
        border-radius: var(--radius-lg);
        padding: 40px;
        box-shadow: var(--shadow-xl);
        position: relative;
    }

        .feature-visual::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: 20px;
            bottom: 20px;
            background: var(--primary-color);
            border-radius: var(--radius-lg);
            z-index: -1;
            opacity: 0.05;
        }

    /* Workflow Section */
    .workflow-section {
        padding: 120px 0;
        background: var(--dark-color);
        color: white;
        text-align: center;
    }

        .workflow-section .section-header h2,
        .workflow-section .section-header p {
            color: white;
        }

        .workflow-section .section-header p {
            opacity: 0.8;
        }

    .workflow-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        margin-top: 60px;
    }

    .workflow-step {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 40px 24px;
        border-radius: var(--radius-md);
        position: relative;
        transition: all 0.3s ease;
    }

        .workflow-step:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-5px);
            border-color: var(--secondary-color);
        }

    .step-number {
        width: 48px;
        height: 48px;
        background: var(--accent-color);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0 auto 24px;
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
    }

    .workflow-step h4 {
        color: white;
        font-size: 1.9rem;
        margin-bottom: 12px;
        opacity: 0.9;
    }

    .workflow-step p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.5rem;
    }


    /* Why Choose Section */
    .why-choose-section {
        padding: 100px 0;
        background: white;
    }

    .reasons-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 32px;
    }

    .reason-card {
        text-align: center;
        padding: 40px 32px;
        background: var(--bg-light);
        border-radius: var(--radius-md);
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
    }

        .reason-card:hover {
            background: white;
            box-shadow: var(--shadow-lg);
            transform: translateY(-5px);
            border-color: var(--primary-light);
        }

    .reason-icon {
        font-size: 3.5rem;
        margin-bottom: 0;
        display: block;
    }

    .reason-card b {
        color: var(--primary-color);
        margin-bottom: 16px;
        font-size: 2rem;
        line-height: 50px;
    }

    .reason-card h3 {
        color: var(--text-light);
        font-size: 1.4rem;
        font-size: 16px;
        font-weight: 700;
    }

    /* Comparison Section */
    .comparison-section {
        padding: 10px 0;
        background: white;
    }
        .comparison-section h3 {
            color: #fff;
            font-size: 1.4em;
        }
    .table-container {
        background: white;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        border: 1px solid var(--border-color);
    }

    table {
        width: 100%;
        border-collapse: collapse;
    }

    th, td {
        padding: 24px;
        text-align: left;
        border-bottom: 1px solid var(--border-color);
    }

    th {
        background: var(--bg-light);
        font-weight: 600;
        color: var(--dark-color);
        font-size: 1.9rem;
    }

        th:nth-child(2) {
            background: var(--primary-color);
            color: white;
        }

    td:first-child {
        font-weight: 500;
        color: var(--dark-color);
    }

    tr:last-child td {
        border-bottom: none;
    }

    .check-icon {
        color: var(--success-color);
        font-weight: bold;
    }

    .cross-icon {
        color: var(--text-light);
    }

    /* CTA Section */
    #contact-us {
        padding: 70px 0;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        text-align: left;
        position: relative;
        overflow: hidden;
    }

    #contact-us input, #contact-us select, #contact-us textarea {
        border-radius: 10px;
    }
    
    .cta-container {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 0 auto;
    }

    .cta-section h2 {
        color: white;
        font-size: 3rem;
        margin-bottom: 24px;
    }

    #contact-us p {
        font-size: 1.8rem;
        opacity: 0.9;
    }

    /* FAQ Section */
    .faq-section {
        padding: 100px 0;
        background: var(--bg-light);
    }

    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .faq-item {
        background: white;
        margin-bottom: 16px;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-color);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
    }

    .faq-question {
        padding: 24px;
        font-weight: 600;
        font-size: 1.9rem;
        color: var(--dark-color);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background 0.2s ease;
    }

        .faq-question:hover {
            background: var(--bg-light);
        }

    .faq-icon {
        transition: transform 0.3s ease;
        color: var(--primary-color);
    }

    .faq-item.active .faq-icon {
        transform: rotate(45deg);
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out, padding 0.3s ease;
        background: white;
        color: var(--text-light);
        padding: 0 24px;
    }

    .faq-item.active .faq-answer {
        max-height: 200px;
        padding: 0 24px 24px;
    }

    /* Footer */
    footer {
        background: var(--dark-color);
        color: rgba(255,255,255,0.6);
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    
    #back-to-top.show {
        display: none !important;
    }

    /* Animations */
    @keyframes float {
        0% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-15px);
        }

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

    .animate-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

        .animate-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

    /* Responsive */
    @media (max-width: 992px) {
        .hero {
            padding: 100px 0 60px;
        }
        
        .hero-visual {
            padding: 0;
            margin-top: 40px;
        }
        
        .hero-container, .feature-row, .feature-row:nth-child(even) {
            flex-direction: column;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.5rem;
        }

        .hero-checklist {
            text-align: left;
        }

        .feature-list {
            text-align: left;
            display: inline-block;
        }

        .feature-visual {
            width: 100%;
        }
        
        .feature-grid {
            grid-template-columns: auto;
        }
    }

    /* Sticky CTA */
    .sticky-cta {
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.4s ease;
    }

        .sticky-cta.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }/* End custom CSS */