         /* ================================================================
            SCM SOFTWARE LAB - INTERNATIONAL DESIGN SYSTEM
            Colors: Navy #0B1F4A  |  Red #E63946  |  Orange #F77F00
                    Yellow #FCBF49 |  Green #2D9F4F |  Grey #6B7280
                    White #FFFFFF  |  Light Grey #F3F4F6
            Typography: Plus Jakarta Sans (headings) + Inter (body)
         ================================================================ */

         :root {
            --navy:       #0B1F4A;
            --navy-light: #132D5E;
            --navy-dark:  #071535;
            --red:        #E63946;
            --red-dark:   #C62B38;
            --orange:     #F77F00;
            --orange-light:#FF9B2E;
            --yellow:     #FCBF49;
            --green:      #2D9F4F;
            --green-light:#3ABF62;
            --grey-900:   #111827;
            --grey-700:   #374151;
            --grey-600:   #4B5563;
            --grey-500:   #6B7280;
            --grey-400:   #9CA3AF;
            --grey-300:   #D1D5DB;
            --grey-200:   #E5E7EB;
            --grey-100:   #F3F4F6;
            --grey-50:    #F9FAFB;
            --white:      #FFFFFF;
            --shadow-sm:  0 1px 3px rgba(11,31,74,0.08);
            --shadow-md:  0 4px 16px rgba(11,31,74,0.10);
            --shadow-lg:  0 12px 40px rgba(11,31,74,0.12);
            --shadow-xl:  0 24px 60px rgba(11,31,74,0.15);
            --radius-sm:  8px;
            --radius-md:  12px;
            --radius-lg:  16px;
            --radius-xl:  24px;
         }

         /* ===== GLOBAL RESETS ===== */
         .page-wrapper { overflow-x: hidden; }
         section { position: relative; }

         /* ===== HERO ===== */
         .hero-enhanced {
            position: relative;
            background: #071535;
            min-height: 94vh;
            display: flex;
            align-items: center;
            padding: 130px 0 100px;
            overflow: hidden;
         }
         /* Geometric decorations */
         .hero-enhanced .hero-decor-1 {
            position: absolute; top: 8%; right: 5%;
            width: 320px; height: 320px;
            border: 2px solid rgba(252,191,73,0.12);
            border-radius: 50%;
            animation: rotateSlow 30s linear infinite;
         }
         .hero-enhanced .hero-decor-2 {
            position: absolute; bottom: 10%; left: -5%;
            width: 250px; height: 250px;
            border: 2px solid rgba(247,127,0,0.08);
            border-radius: 50%;
            animation: rotateSlow 25s linear infinite reverse;
         }
         .hero-enhanced .hero-decor-3 {
            position: absolute; top: 20%; left: 12%;
            width: 8px; height: 8px;
            background: var(--orange);
            border-radius: 50%;
            opacity: 0.5;
            animation: twinkle 3s ease-in-out infinite;
         }
         .hero-enhanced .hero-decor-4 {
            position: absolute; top: 60%; right: 20%;
            width: 6px; height: 6px;
            background: var(--yellow);
            border-radius: 50%;
            opacity: 0.4;
            animation: twinkle 4s ease-in-out infinite 1s;
         }
         .hero-enhanced .hero-decor-5 {
            position: absolute; bottom: 25%; right: 45%;
            width: 5px; height: 5px;
            background: var(--green);
            border-radius: 50%;
            opacity: 0.3;
            animation: twinkle 5s ease-in-out infinite 2s;
         }
         @keyframes rotateSlow { 0%{transform:rotate(0deg)} 100%{transform:rotate(360deg)} }
         @keyframes twinkle { 0%,100%{opacity:0.2;transform:scale(1)} 50%{opacity:0.7;transform:scale(1.8)} }
         @keyframes heroFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }
         @keyframes fadeInUp { 0%{opacity:0;transform:translateY(30px)} 100%{opacity:1;transform:translateY(0)} }

         .hero-enhanced .hero-wrap {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            gap: 70px;
            position: relative;
            z-index: 2;
         }
         .hero-enhanced .hero-text { flex: 1; animation: fadeInUp 0.8s ease; }

         .hero-enhanced .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(247,127,0,0.12);
            border: 1px solid rgba(247,127,0,0.25);
            color: var(--orange);
            padding: 7px 18px;
            border-radius: 30px;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 24px;
         }
         .hero-enhanced .hero-tag::before {
            content: '';
            width: 7px; height: 7px;
            background: var(--orange);
            border-radius: 50%;
            animation: twinkle 2s ease-in-out infinite;
         }

         .hero-enhanced .hero-text h1 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 54px;
            font-weight: 800;
            line-height: 1.12;
            color: var(--white);
            margin-bottom: 24px;
            letter-spacing: -1px;
         }
         .hero-enhanced .hero-text h1 .gradient-text {
            background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
         }

         .hero-enhanced .hero-text p {
            font-family: 'Inter', sans-serif;
            font-size: 17px;
            line-height: 1.75;
            color: rgba(255,255,255,0.7);
            margin-bottom: 36px;
            max-width: 520px;
         }

         .hero-enhanced .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

         .hero-enhanced .hero-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 32px;
            border-radius: var(--radius-md);
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
            letter-spacing: 0.3px;
         }
         .hero-enhanced .hero-cta.primary {
            background: linear-gradient(135deg, var(--orange) 0%, var(--red) 100%);
            color: var(--white);
            box-shadow: 0 8px 28px rgba(247,127,0,0.35);
         }
         .hero-enhanced .hero-cta.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(247,127,0,0.45);
         }
         .hero-enhanced .hero-cta.secondary {
            background: rgba(255,255,255,0.06);
            color: var(--white);
            border: 1.5px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(4px);
         }
         .hero-enhanced .hero-cta.secondary:hover {
            border-color: var(--yellow);
            color: var(--yellow);
            background: rgba(252,191,73,0.08);
            transform: translateY(-3px);
         }

         .hero-enhanced .hero-media {
            flex: 0 0 580px;
            position: relative;
            animation: fadeInUp 1s ease 0.3s both;
         }
         .hero-enhanced .hero-media img {
            width: 100%;
            border-radius: var(--radius-xl);
            filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
            animation: heroFloat 5s ease-in-out infinite;
         }

         .hero-enhanced .hero-badges {
            display: flex;
            gap: 28px;
            margin-top: 40px;
            flex-wrap: wrap;
         }
         .hero-enhanced .hero-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Inter', sans-serif;
            color: rgba(255,255,255,0.6);
            font-size: 13px;
            font-weight: 500;
         }
         .hero-enhanced .hero-badge i { font-size: 15px; }
         .hero-enhanced .hero-badge:nth-child(1) i { color: var(--green); }
         .hero-enhanced .hero-badge:nth-child(2) i { color: var(--orange); }
         .hero-enhanced .hero-badge:nth-child(3) i { color: var(--yellow); }

         /* ===== STATS BAR ===== */
         .stats-section { background: var(--grey-50); padding: 0; position: relative; z-index: 3; }
         .stats-bar {
            max-width: 1100px;
            margin: -55px auto 0;
            background: var(--white);
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            padding: 44px 20px;
            position: relative;
            z-index: 5;
            border-top: 4px solid var(--orange);
         }
         .stat-item { text-align: center; padding: 10px 20px; position: relative; }
         .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: 0; top: 15%; height: 70%;
            width: 1px;
            background: linear-gradient(180deg, transparent, var(--grey-200), transparent);
         }
         .stat-number {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 44px;
            font-weight: 800;
            color: var(--navy);
            line-height: 1.1;
            margin-bottom: 6px;
         }
         .stat-number .stat-accent { color: var(--orange); }
         .stat-label {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            color: var(--grey-500);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
         }

         /* ===== HIGHLIGHT SECTION ===== */
         .scm-highlight {
            padding: 90px 20px 70px;
            background: var(--grey-50);
         }
         .scm-highlight-container {
            max-width: 880px;
            margin: 0 auto;
            text-align: center;
         }
         .scm-highlight-tag {
            display: inline-block;
            background: var(--navy);
            color: var(--white);
            padding: 7px 22px;
            border-radius: 30px;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2.5px;
            margin-bottom: 28px;
         }
         .scm-highlight-title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 30px;
            line-height: 1.55;
            color: var(--grey-700);
            font-weight: 400;
            margin-bottom: 32px;
         }
         .accent-red { color: var(--red); font-weight: 700; }
         .accent-dark { color: var(--navy); font-weight: 700; }
         .accent-blue { color: var(--navy-light); font-weight: 700; }
         .accent-italic { font-style: italic; color: var(--grey-600); }
         .accent-muted { color: var(--grey-500); }
         .accent-orange { color: var(--orange); font-weight: 700; }
         .accent-green { color: var(--green); font-weight: 700; }
         .scm-highlight-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--navy);
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            padding: 12px 30px;
            border: 2px solid var(--navy);
            border-radius: var(--radius-md);
            transition: all 0.3s ease;
         }
         .scm-highlight-link:hover {
            background: var(--navy);
            color: var(--white);
         }

         /* ===== CLIENT LOGOS ===== */
         .clients-section {
            padding: 55px 20px;
            background: var(--white);
            overflow: hidden;
            border-top: 1px solid var(--grey-200);
            border-bottom: 1px solid var(--grey-200);
         }
         .clients-section .section-label {
            text-align: center;
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: var(--grey-400);
            margin-bottom: 28px;
         }
         .clients-track {
            display: flex;
            animation: scrollLogos 35s linear infinite;
            gap: 60px;
            align-items: center;
            width: max-content;
         }
         .clients-track img {
            height: 45px;
            object-fit: contain;
            filter: grayscale(100%);
            opacity: 0.4;
            transition: all 0.4s ease;
         }
         .clients-track img:hover { filter: grayscale(0%); opacity: 1; }
         @keyframes scrollLogos { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

         /* ===== SERVICES UNIFORM GRID ===== */
         .svc-bento {
            background: var(--white);
            padding: 100px 20px;
            position: relative;
         }
         .svc-bento-wrap {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
         }
         .svc-uniform-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
         }
         .svc-u-card {
            display: flex; flex-direction: column;
            background: var(--white);
            border: 1px solid var(--grey-200);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            text-decoration: none; color: inherit;
            position: relative; overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
         }
         .svc-u-card::before {
            content: ''; position: absolute; top: 0; left: 0;
            width: 100%; height: 3px;
            background: linear-gradient(90deg, var(--orange), var(--yellow));
            transform: scaleX(0); transform-origin: left;
            transition: transform 0.4s ease;
         }
         .svc-u-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
         }
         .svc-u-card:hover::before { transform: scaleX(1); }
         .svc-u-icon {
            width: 56px; height: 56px; border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            font-size: 24px; color: var(--white);
            margin-bottom: 20px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.12);
            transition: transform 0.4s ease;
         }
         .svc-u-card:hover .svc-u-icon { transform: scale(1.1) rotate(-5deg); }
         .svc-u-card h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 18px; font-weight: 700; color: var(--navy);
            margin-bottom: 10px; line-height: 1.3;
         }
         .svc-u-card p {
            font-family: 'Inter', sans-serif;
            font-size: 14px; color: var(--grey-500);
            line-height: 1.7; margin-bottom: 16px; flex: 1;
         }
         .svc-u-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
         .svc-u-tags span {
            font-family: 'Inter', sans-serif;
            font-size: 11px; font-weight: 600;
            color: var(--grey-600); background: var(--grey-100);
            border: 1px solid var(--grey-200);
            padding: 4px 12px; border-radius: 20px;
         }
         .svc-u-link {
            display: inline-flex; align-items: center; gap: 6px;
            font-family: 'Inter', sans-serif;
            font-size: 13px; font-weight: 700; color: var(--navy);
            transition: all 0.3s ease; margin-top: auto;
         }
         .svc-u-link i { font-size: 11px; transition: transform 0.3s; }
         .svc-u-card:hover .svc-u-link { color: var(--orange); }
         .svc-u-card:hover .svc-u-link i { transform: translateX(4px); }

         @media (max-width: 992px) {
            .svc-uniform-grid { grid-template-columns: repeat(2, 1fr); }
         }
         @media (max-width: 576px) {
            .svc-bento { padding: 70px 16px; }
            .svc-uniform-grid { grid-template-columns: 1fr; }
         }

         /* ===== TECH GRID ===== */
         .tech-grid {
            display: grid;
            grid-template-columns: repeat(8, 1fr);
            gap: 20px;
         }
         .tech-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            padding: 20px 10px;
            background: var(--white);
            border: 1px solid var(--grey-200);
            border-radius: 12px;
            transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
            cursor: default;
         }
         .tech-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(11,18,48,0.1);
            border-color: transparent;
         }
         .tech-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            box-shadow: 0 4px 14px rgba(0,0,0,0.12);
            transition: transform 0.4s ease;
         }
         .tech-item:hover .tech-icon {
            transform: scale(1.1) rotate(-5deg);
         }
         .tech-item span {
            font-family: 'Inter', sans-serif;
            font-size: 13px;
            font-weight: 600;
            color: var(--navy);
         }
         @media (max-width: 1100px) {
            .tech-grid { grid-template-columns: repeat(4, 1fr); }
         }
         @media (max-width: 576px) {
            .tech-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
            .tech-item { padding: 14px 8px; }
            .tech-icon { width: 48px; height: 48px; }
            .tech-item span { font-size: 11px; }
         }

         /* ===== INTEGRATION SECTION ===== */
         .intg-section {
            padding: 100px 0;
            background: var(--white);
         }
         .intg-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
         }
         .intg-card {
            background: var(--white);
            border: 1px solid var(--grey-200);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
         }
         .intg-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(11,18,48,0.12);
            border-color: transparent;
         }
         .intg-hdr {
            padding: 22px 24px;
            display: flex; align-items: center; gap: 12px;
            color: #fff;
         }
         .intg-hdr i { font-size: 22px; opacity: 0.8; }
         .intg-hdr h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 17px; font-weight: 700;
            color: #fff; margin: 0;
         }
         .intg-body {
            padding: 22px 24px 26px;
         }
         .intg-body > p {
            font-family: 'Inter', sans-serif;
            font-size: 13.5px; color: var(--grey-500);
            line-height: 1.65; margin-bottom: 16px;
         }
         .intg-list {
            display: flex; flex-direction: column; gap: 8px;
         }
         .intg-item {
            display: flex; align-items: center; gap: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 13px; color: var(--grey-700);
         }
         .intg-item i {
            font-size: 12px; color: var(--green); flex-shrink: 0;
         }
         .intg-item strong {
            color: var(--navy); font-weight: 700;
         }
         @media (max-width: 992px) {
            .intg-grid { grid-template-columns: repeat(2, 1fr); }
         }
         @media (max-width: 576px) {
            .intg-section { padding: 70px 16px; }
            .intg-grid { grid-template-columns: 1fr; }
         }

         /* ===== SECTION SEPARATOR ===== */
         .sec-sep {
            position: relative;
            height: 1px;
            background: var(--grey-200);
            margin: 0;
            border: none;
         }
         .sec-sep::after {
            content: '';
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--orange), var(--yellow));
         }

         @media (max-width: 992px) {
            .bento-grid { grid-template-columns: repeat(2, 1fr); }
            .bento-hero { grid-column: span 2; }
         }
         @media (max-width: 576px) {
            .svc-bento { padding: 70px 16px; }
            .bento-grid { grid-template-columns: 1fr; }
            .bento-hero { grid-column: span 1; min-height: auto; }
            .bento-card-inner { padding: 28px 22px; }
            .bento-hero h3 { font-size: 20px; }
         }

         /* ===== HOW WE WORK ===== */
         .process-section {
            padding: 100px 20px;
            background: var(--grey-50);
         }
         .process-section .section-header {
            text-align: center;
            margin-bottom: 65px;
         }
         .section-tag {
            display: inline-block;
            background: var(--navy);
            color: var(--white);
            padding: 7px 22px;
            border-radius: 30px;
            font-family: 'Inter', sans-serif;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
         }
         .process-section .section-header h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 36px;
            font-weight: 800;
            color: var(--navy);
         }
         .process-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
         }
         .process-step {
            text-align: center;
            padding: 30px 24px;
            position: relative;
         }
         .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 52px;
            left: 50%;
            width: 100%;
            height: 2px;
            background: repeating-linear-gradient(90deg, var(--grey-300) 0, var(--grey-300) 6px, transparent 6px, transparent 12px);
            z-index: 0;
         }
         .process-step .step-num {
            width: 64px; height: 64px;
            border-radius: 50%;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 24px;
            font-weight: 800;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 22px;
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
            color: var(--white);
         }
         .process-step:nth-child(1) .step-num { background: var(--red); box-shadow: 0 8px 25px rgba(230,57,70,0.3); }
         .process-step:nth-child(2) .step-num { background: var(--orange); box-shadow: 0 8px 25px rgba(247,127,0,0.3); }
         .process-step:nth-child(3) .step-num { background: var(--green); box-shadow: 0 8px 25px rgba(45,159,79,0.3); }
         .process-step:nth-child(4) .step-num { background: var(--navy); box-shadow: 0 8px 25px rgba(11,31,74,0.3); }

         .process-step:hover .step-num { transform: scale(1.15); }
         .process-step h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 18px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 10px;
         }
         .process-step p {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: var(--grey-500);
            line-height: 1.65;
         }

         /* ===== POC SECTION ===== */
         .poc-section {
            background: var(--navy);
            padding: 90px 20px;
            position: relative;
            overflow: hidden;
         }
         .poc-section .poc-pattern {
            position: absolute; inset: 0;
            background-image:
               radial-gradient(circle at 15% 80%, rgba(247,127,0,0.06) 0%, transparent 50%),
               radial-gradient(circle at 85% 20%, rgba(252,191,73,0.05) 0%, transparent 50%);
         }
         .poc-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 2;
         }
         .poc-left h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 36px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 18px;
            line-height: 1.2;
         }
         .poc-left h2 span {
            color: var(--orange);
         }
         .poc-left > p {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            color: rgba(255,255,255,0.7);
            line-height: 1.75;
            margin-bottom: 24px;
         }
         .poc-left ul {
            list-style: none;
            padding: 0;
            margin-bottom: 32px;
         }
         .poc-left ul li {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            color: rgba(255,255,255,0.85);
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 12px;
         }
         .poc-left ul li .check-circle {
            width: 24px; height: 24px;
            border-radius: 50%;
            background: rgba(45,159,79,0.15);
            border: 1.5px solid var(--green);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 11px;
            color: var(--green);
         }
         .poc-right .poc-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: var(--radius-xl);
            padding: 40px 32px;
         }
         .poc-right .poc-card h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--orange);
            margin-bottom: 14px;
         }
         .poc-right .poc-card > p {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            color: rgba(255,255,255,0.7);
            line-height: 1.7;
            margin-bottom: 20px;
         }
         .poc-card .deliverable {
            display: flex; align-items: center; gap: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            color: rgba(255,255,255,0.8);
            margin-bottom: 10px;
         }
         .poc-card .deliverable i { color: var(--green); font-size: 13px; flex-shrink: 0; }
         .poc-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            background: linear-gradient(135deg, var(--orange), var(--red));
            color: var(--white);
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 15px;
            border-radius: var(--radius-md);
            text-decoration: none;
            transition: all 0.35s ease;
            box-shadow: 0 8px 28px rgba(247,127,0,0.3);
         }
         .poc-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(247,127,0,0.4);
            color: var(--white);
         }

         /* ===== BUSINESS IMPACT SECTIONS ===== */
         .business-impact { padding: 80px 0; }
         .business-impact .heading_title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 18px;
            line-height: 1.3;
         }
         .business-impact .text {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            color: var(--grey-600);
            line-height: 1.75;
            margin-bottom: 14px;
         }
         .impact-quote {
            background: var(--grey-50);
            border-left: 4px solid var(--orange);
            padding: 20px 24px;
            margin: 22px 0;
            font-style: italic;
            font-family: 'Inter', sans-serif;
            color: var(--grey-600);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            font-size: 15px;
            line-height: 1.65;
         }
         .business-impact .image_one img {
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
            width: 100%;
         }
         .business-impact .image_one img:hover { transform: scale(1.03); }

         /* ===== INDUSTRIES ===== */
         .industries-section {
            padding: 100px 20px;
            background: var(--grey-50);
         }
         .industries-section .section-header {
            text-align: center;
            margin-bottom: 55px;
         }
         .industries-section .section-header h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 36px;
            font-weight: 800;
            color: var(--navy);
         }
         .industries-section .section-header p {
            font-family: 'Inter', sans-serif;
            font-size: 16px;
            color: var(--grey-500);
            max-width: 580px;
            margin: 10px auto 0;
         }
         .industries-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
         }
         .industry-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 32px 22px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
            border: 1px solid var(--grey-200);
         }
         .industry-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
         }
         .industry-card .ind-icon {
            width: 56px; height: 56px;
            border-radius: var(--radius-md);
            color: var(--white);
            font-size: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            transition: transform 0.4s ease;
         }
         .industry-card:hover .ind-icon { transform: scale(1.12) rotate(-5deg); }
         /* Industry color rotation */
         .industry-card:nth-child(1) .ind-icon { background: var(--red); }
         .industry-card:nth-child(2) .ind-icon { background: var(--orange); }
         .industry-card:nth-child(3) .ind-icon { background: var(--navy); }
         .industry-card:nth-child(4) .ind-icon { background: var(--green); }
         .industry-card:nth-child(5) .ind-icon { background: var(--yellow); color: var(--navy); }
         .industry-card:nth-child(6) .ind-icon { background: var(--red); }
         .industry-card:nth-child(7) .ind-icon { background: var(--orange); }
         .industry-card:nth-child(8) .ind-icon { background: var(--navy); }

         .industry-card h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 6px;
         }
         .industry-card p {
            font-family: 'Inter', sans-serif;
            font-size: 12px;
            color: var(--grey-500);
            line-height: 1.55;
         }

         /* ===== TESTIMONIAL SECTION OVERRIDE ===== */
         .testimonial-section.home_five { background: var(--white); }
         .testimonial-section .sec-title .subtitle {
            font-family: 'Inter', sans-serif;
         }
         .testimonial-section .sec-title .heading_title {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--navy);
         }

         /* ===== CTA SECTION ===== */
         .cta-section {
            background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
            padding: 90px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
         }
         .cta-section .cta-deco-1 {
            position: absolute; top: -80px; right: -60px;
            width: 300px; height: 300px;
            border: 2px solid rgba(247,127,0,0.08);
            border-radius: 50%;
         }
         .cta-section .cta-deco-2 {
            position: absolute; bottom: -60px; left: -40px;
            width: 200px; height: 200px;
            border: 2px solid rgba(252,191,73,0.06);
            border-radius: 50%;
         }
         .cta-content {
            max-width: 680px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
         }
         .cta-content h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 38px;
            font-weight: 800;
            color: var(--white);
            margin-bottom: 18px;
            line-height: 1.25;
         }
         .cta-content h2 span { color: var(--orange); }
         .cta-content p {
            font-family: 'Inter', sans-serif;
            font-size: 17px;
            color: rgba(255,255,255,0.7);
            margin-bottom: 36px;
            line-height: 1.7;
         }
         .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;
         }
         .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 34px;
            border-radius: var(--radius-md);
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
         }
         .cta-btn.primary {
            background: linear-gradient(135deg, var(--orange), var(--red));
            color: var(--white);
            box-shadow: 0 8px 28px rgba(247,127,0,0.35);
         }
         .cta-btn.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 40px rgba(247,127,0,0.45);
         }
         .cta-btn.outline {
            background: transparent;
            color: var(--white);
            border: 1.5px solid rgba(255,255,255,0.2);
         }
         .cta-btn.outline:hover {
            border-color: var(--yellow);
            color: var(--yellow);
            transform: translateY(-3px);
         }

         /* ===== PARTNERSHIP SECTION ===== */
         .partnership-section {
            background: var(--grey-100);
            padding: 60px 20px;
            border-top: 1px solid var(--grey-200);
         }
         .partner-grid {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            gap: 30px;
            align-items: center;
         }
         .partner-left { grid-column: 1 / span 7; }
         .partner-right { grid-column: 8 / span 5; }
         .partner-left h2 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 28px;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 12px;
         }
         .partner-left h2 span { color: var(--orange); }
         .partner-left p {
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            line-height: 1.7;
            color: var(--grey-600);
            margin-bottom: 18px;
         }
         .partner-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 26px;
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            font-weight: 700;
            border-radius: var(--radius-md);
            background: var(--navy);
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
         }
         .partner-cta:hover {
            background: var(--orange);
            transform: translateY(-2px);
            color: var(--white);
         }
         .partner-right-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: var(--shadow-md);
            border-left: 4px solid var(--orange);
         }
         .partner-right-card h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 17px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 8px;
         }
         .partner-right-card p {
            font-family: 'Inter', sans-serif;
            font-size: 14px;
            line-height: 1.65;
            color: var(--grey-500);
            margin: 0;
         }

         /* ===== CAPABILITIES V2 ===== */
         .capabilities-v2 { padding: 100px 0; background: var(--white); }
         .cap-v2-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
         .cap-v2-card {
            background: var(--white);
            border: 1px solid var(--grey-200);
            border-radius: var(--radius-lg);
            padding: 32px 24px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
         }
         .cap-v2-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
         .cap-v2-stripe { position: absolute; top: 0; left: 0; width: 4px; height: 100%; border-radius: 4px 0 0 4px; }
         .cap-v2-icon {
            width: 52px; height: 52px; border-radius: var(--radius-md);
            display: flex; align-items: center; justify-content: center;
            font-size: 22px; margin-bottom: 18px;
         }
         .cap-v2-card h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 10px;
         }
         .cap-v2-card > p {
            font-family: 'Inter', sans-serif;
            font-size: 13.5px; color: var(--grey-500); line-height: 1.65; margin-bottom: 16px;
         }
         .cap-v2-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
         .cap-v2-list li {
            font-family: 'Inter', sans-serif;
            font-size: 13px; color: var(--grey-600);
            display: flex; align-items: center; gap: 8px;
         }
         .cap-v2-list li i { font-size: 11px; color: var(--green); }

         /* ===== SOLUTION SHOWCASE ===== */
         .solution-showcase { padding: 100px 0; background: var(--grey-50); }
         .sol-card {
            display: grid; grid-template-columns: 380px 1fr; gap: 48px;
            align-items: center; margin-bottom: 56px;
            background: var(--white); border: 1px solid var(--grey-200);
            border-radius: var(--radius-xl); padding: 40px;
            transition: all 0.4s ease;
         }
         .sol-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
         .sol-card:last-child { margin-bottom: 0; }
         .sol-card-reverse { grid-template-columns: 1fr 380px; }
         .sol-card-reverse .sol-card-media { order: 2; }
         .sol-card-reverse .sol-card-content { order: 1; }
         .sol-card-media img {
            width: 100%; border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            transition: transform 0.5s ease;
         }
         .sol-card:hover .sol-card-media img { transform: scale(1.03); }
         .sol-card-media-accent {
            background: linear-gradient(135deg, var(--navy-dark), var(--navy-light));
            border-radius: var(--radius-lg);
            display: flex; align-items: center; justify-content: center;
            min-height: 280px;
         }
         .sol-startup-visual { text-align: center; color: var(--white); }
         .sol-startup-visual i { font-size: 48px; color: var(--orange); margin-bottom: 16px; display: block; }
         .sol-startup-visual h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 22px; font-weight: 700; margin-bottom: 8px;
         }
         .sol-startup-visual p { font-size: 14px; color: rgba(255,255,255,0.6); }
         .sol-tag {
            display: inline-flex; align-items: center; gap: 6px;
            color: var(--white); font-family: 'Inter', sans-serif;
            font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
            text-transform: uppercase; padding: 5px 14px;
            border-radius: 20px; margin-bottom: 14px;
         }
         .sol-tag i { font-size: 12px; }
         .sol-card-content h3 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 24px; font-weight: 800; color: var(--navy);
            margin-bottom: 14px; line-height: 1.3;
         }
         .sol-card-content > p {
            font-family: 'Inter', sans-serif;
            font-size: 15px; color: var(--grey-500); line-height: 1.75;
            margin-bottom: 18px;
         }
         .sol-highlights {
            display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px;
         }
         .sol-highlights span {
            display: inline-flex; align-items: center; gap: 6px;
            font-family: 'Inter', sans-serif;
            font-size: 13px; font-weight: 500; color: var(--grey-600);
            background: var(--grey-50); padding: 6px 14px;
            border-radius: 20px; border: 1px solid var(--grey-200);
         }
         .sol-highlights span i { font-size: 12px; color: var(--green); }
         .sol-link {
            display: inline-flex; align-items: center; gap: 8px;
            font-family: 'Inter', sans-serif;
            font-size: 15px; font-weight: 700; color: var(--navy);
            text-decoration: none; transition: all 0.3s ease;
         }
         .sol-link:hover { color: var(--orange); gap: 12px; }
         .sol-link i { font-size: 13px; transition: transform 0.3s; }
         .sol-link:hover i { transform: translateX(3px); }

         /* ===== FAQ V2 ===== */
         .faq-v2-section { padding: 90px 0; background: var(--white); }
         .faq-v2-list { max-width: 740px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
         .faq-v2-item {
            background: var(--white); border: 1px solid var(--grey-200);
            border-radius: var(--radius-md); overflow: hidden;
            transition: all 0.3s ease;
         }
         .faq-v2-item:hover { border-color: var(--navy); }
         .faq-v2-item.open { border-color: var(--navy); box-shadow: var(--shadow-sm); }
         .faq-v2-q {
            width: 100%; display: flex; align-items: center;
            justify-content: space-between; gap: 16px;
            padding: 18px 22px; background: none; border: none; cursor: pointer;
            font-family: 'Inter', sans-serif; font-size: 15px;
            font-weight: 600; color: var(--navy); text-align: left;
         }
         .faq-v2-q:hover { color: var(--orange); }
         .faq-v2-arrow { font-size: 12px; color: var(--grey-400); transition: transform 0.3s; flex-shrink: 0; }
         .faq-v2-item.open .faq-v2-arrow { transform: rotate(180deg); color: var(--orange); }
         .faq-v2-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
         .faq-v2-item.open .faq-v2-a { max-height: 200px; }
         .faq-v2-a p {
            padding: 0 22px 18px;
            font-family: 'Inter', sans-serif; font-size: 14px;
            color: var(--grey-500); line-height: 1.7;
         }

         /* ===== CTA TRUST BADGES ===== */
         .cta-trust-badges {
            display: flex; gap: 24px; justify-content: center;
            margin-top: 22px; flex-wrap: wrap;
         }
         .cta-trust-badges span {
            font-family: 'Inter', sans-serif;
            font-size: 13px; color: rgba(255,255,255,0.65);
            display: flex; align-items: center; gap: 6px;
         }
         .cta-trust-badges span i { color: rgba(255,255,255,0.4); font-size: 12px; }

         /* ===== RESPONSIVE ADDITIONS ===== */
         @media (max-width: 992px) {
            .cap-v2-grid { grid-template-columns: repeat(2, 1fr); }
            .sol-card, .sol-card-reverse { grid-template-columns: 1fr; gap: 28px; }
            .sol-card-reverse .sol-card-media { order: 0; }
            .sol-card-reverse .sol-card-content { order: 0; }
         }
         @media (max-width: 576px) {
            .cap-v2-grid { grid-template-columns: 1fr; }
            .sol-card { padding: 24px; }
            .sol-card-content h3 { font-size: 20px; }
         }

         /* ===== FOOTER ===== */
         .ft {
            background: linear-gradient(180deg, var(--navy) 0%, #070d1f 100%);
            color: rgba(255,255,255,0.45);
            font-family: 'Inter', sans-serif;
         }
         .ft-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
         }
         .ft-top { padding: 72px 0 48px; }
         .ft-grid {
            display: grid;
            grid-template-columns: 2.2fr 1fr 1fr 1.6fr;
            gap: 48px;
         }
         /* Brand column */
         .ft-logo {
            height: 38px;
            margin-bottom: 18px;
            filter: brightness(0) invert(1);
         }
         .ft-brand p {
            font-size: 14px;
            line-height: 1.75;
            margin-bottom: 22px;
            max-width: 320px;
            color: rgba(255,255,255,0.4);
         }
         .ft-socials {
            display: flex;
            gap: 10px;
         }
         .ft-socials a {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.45);
            font-size: 15px;
            transition: all 0.35s ease;
         }
         .ft-socials a:hover {
            background: var(--orange);
            color: #fff;
            border-color: var(--orange);
            transform: translateY(-3px);
            box-shadow: 0 6px 18px rgba(247,127,0,0.3);
         }
         /* Link columns */
         .ft-col h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 12px;
         }
         .ft-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 28px;
            height: 2px;
            background: var(--orange);
            border-radius: 2px;
         }
         .ft-col a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255,255,255,0.4);
            padding: 6px 0;
            transition: all 0.3s ease;
         }
         .ft-col a:hover {
            color: var(--orange);
            padding-left: 5px;
         }
         .ft-col a i {
            font-size: 13px;
            width: 18px;
            color: rgba(255,255,255,0.25);
            transition: color 0.3s;
         }
         .ft-col a:hover i { color: var(--orange); }
         .ft-cta {
            margin-top: 8px;
            color: var(--orange) !important;
            font-weight: 600 !important;
         }
         .ft-cta i { color: var(--orange) !important; }
         /* Divider */
         .ft-divider { padding: 0; }
         .ft-divider-line {
            height: 1px;
            background: rgba(255,255,255,0.06);
            position: relative;
         }
         .ft-divider-accent {
            position: absolute;
            top: -1px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--orange), #FCBF49);
         }
         /* Bottom */
         .ft-bottom { padding: 22px 0 24px; }
         .ft-bottom-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
         }
         .ft-copy {
            font-size: 13px;
            color: rgba(255,255,255,0.25);
         }
         .ft-copy a {
            color: rgba(255,255,255,0.4);
            font-weight: 600;
            transition: color 0.3s;
         }
         .ft-copy a:hover { color: var(--orange); }
         .ft-legal {
            display: flex;
            align-items: center;
            gap: 14px;
         }
         .ft-legal a {
            font-size: 13px;
            color: rgba(255,255,255,0.25);
            transition: color 0.3s;
         }
         .ft-legal a:hover { color: var(--orange); }
         .ft-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: rgba(255,255,255,0.15);
         }
         /* Footer responsive */
         @media (max-width: 992px) {
            .ft-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
         }
         @media (max-width: 576px) {
            .ft-grid { grid-template-columns: 1fr; gap: 32px; }
            .ft-top { padding: 48px 0 32px; }
            .ft-bottom-inner { flex-direction: column; gap: 14px; text-align: center; }
            .ft-legal { flex-wrap: wrap; justify-content: center; }
         }

         /* ===== RESPONSIVE ===== */
         @media (max-width: 992px) {
            .hero-enhanced .hero-wrap { flex-direction: column; text-align: center; gap: 40px; }
            .hero-enhanced .hero-text h1 { font-size: 40px; }
            .hero-enhanced .hero-text p { margin-left: auto; margin-right: auto; }
            .hero-enhanced .hero-buttons { justify-content: center; }
            .hero-enhanced .hero-badges { justify-content: center; }
            .hero-enhanced .hero-media { flex: 0 0 auto; max-width: 520px; }
            .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 30px; }
            .stat-item:nth-child(2)::after { display: none; }
            .process-grid { grid-template-columns: repeat(2, 1fr); }
            .process-step::after { display: none !important; }
            .poc-grid { grid-template-columns: 1fr; }
            .industries-grid { grid-template-columns: repeat(2, 1fr); }
            .partner-left, .partner-right { grid-column: 1 / -1; }
         }
         @media (max-width: 576px) {
            .hero-enhanced { min-height: auto; padding: 115px 0 60px; }
            .hero-enhanced .hero-text h1 { font-size: 32px; }
            .hero-enhanced .hero-media { max-width: 400px; }
            .stats-bar { margin-top: -30px; padding: 28px 15px; }
            .stat-number { font-size: 34px; }
            .process-grid { grid-template-columns: 1fr 1fr; }
            .industries-grid { grid-template-columns: 1fr 1fr; }
            .cta-content h2 { font-size: 28px; }
            .scm-highlight-title { font-size: 24px; }
         }
