        :root {
            --primary:#BF1951;
            --secondary:#F34C00;
            --dark:#003F37;
            --gold:#AB982D;
            --light:#f8fafc;
            --text:#0f172a;
            --muted:#64748b;
        }

        body {
            font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
            color: var(--text);
            overflow-x: hidden;
        }

        .navbar {
            padding: 18px 0;
            background: rgba(255,255,255,.9);
            backdrop-filter: blur(14px);
            box-shadow: 0 10px 35px rgba(15,23,42,.06);
        }

        .navbar-brand {
            font-weight: 900;
            color: var(--dark);
            font-size: 26px;
        }

        .brand-mark {
            display: inline-grid;
            place-items: center;
            width: 42px;
            height: 42px;
            border-radius: 14px;
            background: linear-gradient(135deg,var(--primary),var(--secondary));
            color: #fff;
            margin-right: 8px;
            font-size: 16px;
        }

        .nav-link {
            font-weight: 700;
            color: #334155;
            margin: 0 8px;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .btn-gradient {
            border: 0;
            color: #fff;
            font-weight: 800;
            padding: 12px 22px;
            border-radius: 16px;
            background: linear-gradient(135deg,var(--primary),var(--secondary));
            box-shadow: 0 14px 35px rgba(191,25,81,.25);
        }

        .btn-gradient:hover {
            color: #fff;
            transform: translateY(-2px);
        }

        .hero {
            min-height: 92vh;
            padding: 140px 0 80px;
            background:
                radial-gradient(circle at top left, rgba(191,25,81,.13), transparent 32%),
                radial-gradient(circle at bottom right, rgba(243,76,0,.13), transparent 34%),
                linear-gradient(180deg,#ffffff,#f8fafc);
            position: relative;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            padding: 10px 16px;
            border-radius: 999px;
            box-shadow: 0 12px 35px rgba(15,23,42,.08);
            color: var(--primary);
            font-weight: 800;
            margin-bottom: 22px;
        }

        .hero h1 {
            font-size: clamp(42px, 6vw, 76px);
            line-height: 1.03;
            font-weight: 950;
            letter-spacing: -2px;
        }

        .hero h1 span {
            background: linear-gradient(135deg,var(--primary),var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 18px;
            color: var(--muted);
            max-width: 640px;
            margin: 22px 0 32px;
        }

        .hero-card {
            background: rgba(255,255,255,.86);
            border: 1px solid rgba(15,23,42,.08);
            border-radius: 32px;
            padding: 24px;
            box-shadow: 0 30px 80px rgba(15,23,42,.12);
            position: relative;
        }

        .mockup {
            border-radius: 26px;
            background:
                radial-gradient(circle at 18% 12%, rgba(255,255,255,.18), transparent 28%),
                linear-gradient(145deg, #052f2b 0%, #073d36 48%, #111827 100%);
            padding: 24px;
            color: #fff;
            overflow: hidden;
            position: relative;
        }

        .mockup::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(191,25,81,.18), transparent 34%, rgba(243,76,0,.16));
            pointer-events: none;
        }

        .mockup > * {
            position: relative;
            z-index: 1;
        }

        .section {
            padding: 90px 0;
        }

        .section-light {
            background: var(--light);
        }

        .section-title {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 50px;
        }

        .section-title h2 {
            font-size: clamp(32px,4vw,48px);
            font-weight: 950;
            letter-spacing: -1px;
        }

        .section-title p {
            color: var(--muted);
            font-size: 17px;
        }

        .service-card,
        .portfolio-card,
        .industry-card {
            height: 100%;
            background: #fff;
            border: 1px solid rgba(15,23,42,.07);
            border-radius: 28px;
            padding: 26px;
            box-shadow: 0 18px 45px rgba(15,23,42,.06);
            transition: .25s ease;
        }

        .service-card:hover,
        .portfolio-card:hover,
        .industry-card:hover {
            transform: translateY(-7px);
            box-shadow: 0 28px 70px rgba(15,23,42,.11);
        }

        .service-icon {
            width: 58px;
            height: 58px;
            border-radius: 18px;
            display: grid;
            place-items: center;
            color: #fff;
            background: linear-gradient(135deg,var(--primary),var(--secondary));
            font-size: 23px;
            margin-bottom: 20px;
        }

        .portfolio-img {
            width: 100%;
            height: 190px;
            object-fit: cover;
            border-radius: 22px;
            margin-bottom: 18px;
        }

        .cta-box {
            border-radius: 36px;
            padding: 55px;
            background:
                radial-gradient(circle at top left, rgba(255,255,255,.18), transparent 35%),
                linear-gradient(135deg,var(--dark),#061b1a);
            color: #fff;
            overflow: hidden;
        }

        .form-box {
            background: #fff;
            border-radius: 30px;
            padding: 32px;
            box-shadow: 0 25px 70px rgba(15,23,42,.09);
        }

        .form-control,
        .form-select {
            border-radius: 15px;
            padding: 13px 15px;
            border: 1px solid #e2e8f0;
        }

        .whatsapp-float {
            position: fixed;
            right: 22px;
            bottom: 22px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25D366;
            color: #fff;
            display: grid;
            place-items: center;
            font-size: 30px;
            z-index: 999;
            box-shadow: 0 18px 40px rgba(37,211,102,.35);
            text-decoration: none;
        }

        footer {
            background: #041b19;
            color: #cde3df;
            padding: 42px 0;
        }

        .footer-logo{
    background:#fff;
    padding:8px 14px;
    border-radius:14px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.footer-logo img{
    height:42px;
    width:auto;
}

        .dashboard-preview {
            animation: floatCard 5s ease-in-out infinite;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-12px); }
        }

        .live-dot {
            background: rgba(255,255,255,.13);
            border: 1px solid rgba(255,255,255,.16);
            padding: 7px 12px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: #dcfce7;
            white-space: nowrap;
        }

        .live-dot span {
            width: 8px;
            height: 8px;
            background: #22c55e;
            border-radius: 50%;
            animation: blinkLive 1.2s infinite;
        }

        @keyframes blinkLive {
            0% {
                opacity: 1;
                box-shadow: 0 0 0 0 rgba(34,197,94,.6);
            }
            70% {
                opacity: .45;
                box-shadow: 0 0 0 10px rgba(34,197,94,0);
            }
            100% {
                opacity: 1;
            }
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
            margin-bottom: 18px;
        }

        .stat-box {
            background: rgba(255,255,255,.13);
            border: 1px solid rgba(255,255,255,.14);
            border-radius: 18px;
            padding: 14px 12px;
            min-width: 0;
            box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
        }

        .stat-box small {
            color: rgba(255,255,255,.7);
            display: block;
            font-size: 11px;
            line-height: 1.35;
        }

        .stat-box h3 {
            margin: 8px 0 0;
            font-size: clamp(24px, 3vw, 34px);
            font-weight: 950;
        }

        .growth-card {
            background: rgba(255,255,255,.94);
            color: #111827;
            border: 1px solid rgba(255,255,255,.7);
            border-radius: 22px;
            padding: 20px;
            margin-bottom: 16px;
            box-shadow: 0 20px 45px rgba(2,6,23,.18);
        }

      
        .solution-card {
            display: flex;
            align-items: center;
            gap: 14px;
            background: rgba(255,255,255,.12);
            border: 1px solid rgba(255,255,255,.14);
            border-radius: 18px;
            padding: 14px;
            margin-bottom: 10px;
            min-width: 0;
        }

        .solution-card:last-child {
            margin-bottom: 0;
        }

        .solution-card i {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            display: grid;
            place-items: center;
            flex: 0 0 auto;
            background: rgba(255,255,255,.15);
            color: #fff;
            font-size: 18px;
        }

        .solution-card strong {
            display: block;
            line-height: 1.2;
        }

        .solution-card small {
            display: block;
            color: rgba(255,255,255,.68);
            margin-top: 3px;
        }

        @media(max-width: 991px) {
            .hero {
                padding-top: 110px;
                min-height: auto;
            }

            .cta-box {
                padding: 32px;
            }

            .dashboard-preview {
                animation: floatCardMobile 7s ease-in-out infinite;
            }

            @keyframes floatCardMobile {
                0%, 100% { transform: translateY(0); }
                50% { transform: translateY(-4px); }
            }

            .growth-bars {
                height: 120px;
            }
        }

        @media(max-width: 575px) {
            .hero-card,
            .mockup {
                padding: 16px;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .stat-box {
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 12px;
                text-align: left;
            }

            .stat-box h3 {
                margin: 0;
                font-size: 24px;
                flex: 0 0 auto;
            }

            .growth-card {
                padding: 16px;
            }

            .growth-bars {
                height: 98px;
                gap: 7px;
            }

            .solution-card {
                padding: 12px;
            }
        }

        .line-chart-wrap {
    height: 190px;
}

.line-chart-wrap svg {
    width: 100%;
    height: 150px;
    display: block;
}

.chart-grid-line {
    stroke: #e2e8f0;
    stroke-width: 1;
    stroke-dasharray: 5 6;
}

.chart-area {
    fill: url(#growthArea);
}

.chart-line {
    fill: none;
    stroke: url(#growthGradient);
    stroke-width: 5;
    stroke-linecap: round;
    filter: drop-shadow(0 8px 14px rgba(191,25,81,.25));
}

.chart-point {
    fill: #fff;
    stroke: #BF1951;
    stroke-width: 4;
}

.chart-labels {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-top: 8px;
    font-size: 12px;
    color: #64748b;
    font-weight: 800;
    text-align: center;
}

@media(max-width: 991px) {
    .line-chart-wrap {
        height: 160px;
    }

    .line-chart-wrap svg {
        height: 125px;
    }
}

.industry-modern-card {
    position: relative;
    overflow: hidden;
    min-height: 245px;
    padding: 28px;
    text-align: left;
}

.industry-modern-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    right: -45px;
    top: -45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(191,25,81,.13), rgba(243,76,0,.12));
}

.industry-modern-card::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    left: -35px;
    bottom: -35px;
    border-radius: 50%;
    background: rgba(0,63,55,.06);
}

.industry-icon {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-size: 25px;
    margin-bottom: 24px;
    box-shadow: 0 16px 34px rgba(191,25,81,.22);
    position: relative;
    z-index: 1;
}

.industry-modern-card h5 {
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.industry-modern-card p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

.industry-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    background: rgba(191,25,81,.08);
    color: var(--primary);
    border: 1px solid rgba(191,25,81,.12);
    position: relative;
    z-index: 1;
}

.industry-badge::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
}

.industry-modern-card:hover .industry-icon {
    transform: rotate(-8deg) scale(1.08);
}

.industry-icon {
    transition: .3s ease;
}

.section-title-premium {
    position: relative;
    margin-bottom: 55px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(191,25,81,.06);
    border: 1px solid rgba(191,25,81,.18);
    color: var(--primary);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 18px;
}

.section-badge span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.section-title-premium h2 {
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 950;
    letter-spacing: -2px;
    line-height: 1.05;
}

.section-title-premium h2 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title-premium p {
    max-width: 850px;
    margin: 18px auto 0;
    font-size: 18px;
}

.section-title-line {
    width: 115px;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin: 28px auto 0;
    position: relative;
}

.section-title-line span {
    position: absolute;
    right: -20px;
    top: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--secondary);
}

.why-section {
    background:
        radial-gradient(circle at top left, rgba(191,25,81,.08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(243,76,0,.08), transparent 30%),
        #fff;
}

.why-card {
    height: 100%;
    background: #fff;
    border: 1px solid rgba(15,23,42,.07);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 20px 55px rgba(15,23,42,.07);
    transition: .3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(15,23,42,.12);
}

.why-icon {
    width: 66px;
    height: 66px;
    border-radius: 22px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 26px;
    margin-bottom: 24px;
    box-shadow: 0 18px 36px rgba(191,25,81,.24);
}

.why-card h5 {
    font-size: 21px;
    font-weight: 900;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.why-stats {
    margin-top: 48px;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.18), transparent 35%),
        linear-gradient(135deg, var(--dark), #061b1a);
    color: #fff;
    border-radius: 34px;
    padding: 38px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.why-stats div {
    text-align: center;
}

.why-stats h3 {
    font-size: 42px;
    font-weight: 950;
    margin-bottom: 6px;
    background: linear-gradient(135deg, #fff, #ffd9cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.why-stats p {
    margin-bottom: 0;
    color: #cde3df;
    font-weight: 700;
}

@media(max-width: 768px) {
    .why-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 28px;
    }

    .why-stats h3 {
        font-size: 32px;
    }
}

@media(max-width: 480px) {
    .why-stats {
        grid-template-columns: 1fr;
    }
}

.process-section {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(191,25,81,.07);
    top: 100px;
    left: -160px;
}

.process-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(243,76,0,.07);
    right: -130px;
    bottom: 80px;
}

.process-section .container {
    position: relative;
    z-index: 1;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    position: relative;
}

.process-card {
    background: #fff;
    border-radius: 28px;
    padding: 26px 22px;
    border: 1px solid rgba(15,23,42,.07);
    box-shadow: 0 18px 45px rgba(15,23,42,.06);
    position: relative;
    overflow: hidden;
    transition: .3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(15,23,42,.12);
}

.process-card::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -45px;
    top: -45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(191,25,81,.10), rgba(243,76,0,.10));
}

.process-number {
    font-size: 13px;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.process-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-size: 22px;
    margin-bottom: 22px;
    box-shadow: 0 16px 34px rgba(191,25,81,.22);
    position: relative;
    z-index: 1;
}

.process-card h5 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.process-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

@media(max-width: 1199px) {
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media(max-width: 768px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 480px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
}

.form-box {
    max-width: 920px;
    margin: 0 auto;
}

.form-box .form-label {
    font-size: 14px;
    color: #0f172a;
    margin-bottom: 8px;
}

.form-hint {
    display: block;
    margin-top: 7px;
    color: #64748b;
    font-size: 12px;
}

.mobile-input-group {
    display: flex;
    gap: 10px;
}

.country-select {
    max-width: 125px;
    flex: 0 0 125px;
}

.mobile-number {
    flex: 1;
}

.consultation-btn {
    padding: 15px 22px;
    border-radius: 16px;
}

@media(max-width: 575px) {
    .mobile-input-group {
        flex-direction: column;
    }

    .country-select {
        max-width: 100%;
        flex: 1;
    }
}

.btn-share{
    background: linear-gradient(135deg,#BF1951 0%,#F34C00 100%) !important;
    color:#ffffff !important;
    border:none !important;

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    padding:14px 32px;
    border-radius:16px;

    font-size:16px;
    font-weight:700;

    text-decoration:none;

    transition:all .3s ease;
}

.btn-share:hover{
    background: linear-gradient(135deg,#c91c57 0%,#ff5a1f 100%) !important;
    color:#fff !important;
    transform:translateY(-2px);
}

.btn-share i{
    color:#fff;
}

