.elementor-editor-active .reveal, .elementor-editor-preview .reveal { opacity: 1 !important; transform: none !important; visibility: visible !important; }
      :root {
        --primary: #2563eb;
        --secondary: #38bdf8;
        --accent: #0ea5e9;
        --bg: #ffffff;
        --bg2: #f8fafc;
        --bg3: #eef6ff;
        --text: #0f172a;
        --muted: #475569;
        --border: #e2e8f0;
        --glass: rgba(255, 255, 255, 0.7);
        --shadow: 0 4px 24px rgba(37, 99, 235, 0.08);
        --shadow-lg: 0 8px 48px rgba(37, 99, 235, 0.13);
      }

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

      html {
        scroll-behavior: smooth;
        font-size: 16px;
      }

      body {
        font-family: "Plus Jakarta Sans", sans-serif;
        color: var(--text);
        background: var(--bg);
        overflow-x: hidden;
        line-height: 1.6;
      }

      /* ─── NAVBAR ─── */
      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 0 5%;
        background: rgba(255, 255, 255, 0.88);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(37, 99, 235, 0.08);
        transition: all 0.3s ease;
      }
      nav.scrolled {
        box-shadow: 0 2px 32px rgba(37, 99, 235, 0.1);
      }
      .nav-inner {
        max-width: 1280px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 72px;
      }
      .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
      }
      .logo-icon {
        width: 38px;
        height: 38px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: "Manrope", sans-serif;
        font-weight: 800;
        color: #fff;
        font-size: 15px;
        letter-spacing: -0.5px;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
      }
      .logo-text {
        font-family: "Manrope", sans-serif;
        font-weight: 800;
        font-size: 17px;
        color: var(--text);
        letter-spacing: -0.3px;
      }
      .logo-text span {
        color: var(--primary);
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 6px;
        list-style: none;
      }
      .nav-links a {
        text-decoration: none;
        color: var(--muted);
        font-size: 13px;
        font-weight: 500;
        padding: 8px 14px;
        border-radius: 8px;
        transition: all 0.2s;
      }
      .nav-links a:hover {
        color: var(--primary);
        background: var(--bg3);
      }

      .nav-cta {
        display: flex;
        align-items: center;
        gap: 12px;
      }
      .btn-ghost {
        font-size: 14px;
        font-weight: 600;
        color: var(--primary);
        background: none;
        border: none;
        cursor: pointer;
        padding: 9px 18px;
        border-radius: 9px;
        border: 1.5px solid var(--primary);
        transition: all 0.2s;
        font-family: "Plus Jakarta Sans", sans-serif;
        text-decoration: none;
      }
      .btn-ghost:hover {
        background: var(--bg3);
        text-decoration: none;
      }
      .btn-primary {
        font-size: 14px;
        font-weight: 600;
        color: #fff;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        border: none;
        cursor: pointer;
        padding: 10px 22px;
        border-radius: 9px;
        box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
        transition: all 0.25s;
        font-family: "Plus Jakarta Sans", sans-serif;
        text-decoration: none;
      }
      .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
        text-decoration: none;
      }
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
      }
      .hamburger span {
        width: 24px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: 0.3s;
      }
      
      
      /* ─── DROPDOWN ─── */
.nav-links li {
  position: relative;
}

.nav-links a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.chevron {
  transition: transform 0.25s ease;
  opacity: 0.6;
  flex-shrink: 0;
}

.has-dropdown:hover .chevron,
.has-dropdown.active .chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.dropdown {
  position: absolute;
  top: 100%;                          /* flush — no gap */
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  padding: 16px 6px 6px;             /* top padding creates visual gap without breaking hover */
  min-width: 210px;
  list-style: none;
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12), 0 2px 8px rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  transition-delay: 0.12s;           /* delay closing only */
  z-index: 999;
}

.dropdown::before {
  content: '';
  position: absolute;
  top: 10px;                          /* sits within padding area */
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #fff;
  border-left: 1px solid rgba(37, 99, 235, 0.1);
  border-top: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 2px 0 0 0;
}

.has-dropdown:hover .dropdown,
.has-dropdown.active .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;              /* open immediately, only closing is delayed */
}

.dropdown li a {
  display: flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.18s;
  gap: 10px;
}

.dropdown li a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.18s;
  flex-shrink: 0;
}

.dropdown li a:hover {
  color: var(--primary);
  background: var(--bg3);
}

.dropdown li a:hover::before {
  opacity: 1;
}

/* ─── MOBILE DROPDOWN ─── */
@media (max-width: 768px) {
  .has-dropdown.active .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    box-shadow: none;
    border: none;
    background: var(--bg3);
    border-radius: 8px;
    margin-top: 4px;
    padding: 4px;
  }

  .has-dropdown.active .dropdown::before {
    display: none;
  }

  .dropdown {
    display: none;
  }

  .has-dropdown.active .dropdown {
    display: block;
  }
}

      /* ─── HERO ─── */
      #hero {
        min-height: 100vh;
        padding-top: 72px;
        background: linear-gradient(
          160deg,
          #ffffff 0%,
          #eef6ff 40%,
          #f0f9ff 100%
        );
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
      }
      .hero-bg-shapes {
        position: absolute;
        inset: 0;
        pointer-events: none;
        overflow: hidden;
      }
      .hero-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.18;
      }
      .blob1 {
        width: 600px;
        height: 600px;
        background: var(--primary);
        top: -200px;
        right: -100px;
        animation: floatBlob 8s ease-in-out infinite;
      }
      .blob2 {
        width: 400px;
        height: 400px;
        background: var(--secondary);
        bottom: -100px;
        left: -100px;
        animation: floatBlob 10s ease-in-out infinite reverse;
      }
      .blob3 {
        width: 300px;
        height: 300px;
        background: var(--accent);
        top: 40%;
        left: 30%;
        animation: floatBlob 12s ease-in-out infinite;
      }

      @keyframes floatBlob {
        0%,
        100% {
          transform: translateY(0) scale(1);
        }
        50% {
          transform: translateY(-30px) scale(1.06);
        }
      }

      /* Grid pattern */
      .hero-grid {
        position: absolute;
        inset: 0;
        background-image:
          linear-gradient(rgba(37, 99, 235, 0.04) 1px, transparent 1px),
          linear-gradient(90deg, rgba(37, 99, 235, 0.04) 1px, transparent 1px);
        background-size: 48px 48px;
      }

      .hero-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 80px 5%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        position: relative;
        z-index: 2;
        width: 100%;
      }
      .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(37, 99, 235, 0.08);
        border: 1px solid rgba(37, 99, 235, 0.15);
        padding: 6px 16px;
        border-radius: 50px;
        font-size: 12.5px;
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 24px;
        animation: fadeInUp 0.6s ease both;
      }
      .badge-dot {
        width: 7px;
        height: 7px;
        background: var(--secondary);
        border-radius: 50%;
        animation: pulse 2s infinite;
      }
      @keyframes pulse {
        0%,
        100% {
          opacity: 1;
        }
        50% {
          opacity: 0.4;
        }
      }

      .hero-title {
        font-family: "Manrope", sans-serif;
        font-size: clamp(36px, 4.5vw, 60px);
        font-weight: 800;
        line-height: 1.12;
        letter-spacing: -1.5px;
        color: var(--text);
        margin-bottom: 20px;
        animation: fadeInUp 0.7s ease 0.1s both;
      }
      .hero-title .grad {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      .hero-sub {
        font-size: 17px;
        color: var(--muted);
        line-height: 1.7;
        margin-bottom: 36px;
        max-width: 520px;
        animation: fadeInUp 0.7s ease 0.2s both;
      }
      .hero-actions {
        display: flex;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap;
        animation: fadeInUp 0.7s ease 0.3s both;
      }
      .btn-hero-primary {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        padding: 14px 28px;
        border-radius: 12px;
        border: none;
        cursor: pointer;
        text-decoration: none;
        box-shadow: 0 6px 24px rgba(37, 99, 235, 0.38);
        transition: all 0.25s;
        font-family: "Plus Jakarta Sans", sans-serif;
      }
      .btn-hero-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(37, 99, 235, 0.5);
      }
      .btn-hero-ghost {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        background: rgba(255, 255, 255, 0.8);
        color: var(--text);
        font-weight: 600;
        font-size: 15px;
        padding: 13px 26px;
        border-radius: 12px;
        border: 1.5px solid var(--border);
        cursor: pointer;
        text-decoration: none;
        backdrop-filter: blur(10px);
        transition: all 0.25s;
        font-family: "Plus Jakarta Sans", sans-serif;
      }
      .btn-hero-ghost:hover {
        border-color: var(--primary);
        color: var(--primary);
        background: var(--bg3);
      }

      .hero-trust {
        margin-top: 48px;
        animation: fadeInUp 0.7s ease 0.4s both;
      }
      .trust-label {
        font-size: 11.5px;
        font-weight: 600;
        color: var(--muted);
        letter-spacing: 0.8px;
        text-transform: uppercase;
        margin-bottom: 16px;
      }
      .trust-logos {
        display: flex;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
      }
      .trust-logo {
        background: rgba(255, 255, 255, 0.85);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 10px 20px;
        font-weight: 700;
        font-size: 13px;
        color: #94a3b8;
        letter-spacing: 0.3px;
        backdrop-filter: blur(8px);
        transition: all 0.2s;
      }
      .trust-logo:hover {
        border-color: var(--primary);
        color: var(--primary);
      }

      /* Hero Dashboard Visual */
      .hero-visual {
        position: relative;
        animation: fadeInRight 0.9s ease 0.2s both;
      }
      .dashboard-card {
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(37, 99, 235, 0.12);
        border-radius: 20px;
        padding: 28px;
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(20px);
      }
      .dash-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 24px;
      }
      .dash-title {
        font-weight: 700;
        font-size: 15px;
        color: var(--text);
      }
      .dash-badge {
        background: #dcfce7;
        color: #16a34a;
        font-size: 11.5px;
        font-weight: 700;
        padding: 4px 10px;
        border-radius: 20px;
      }

      .dash-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin-bottom: 24px;
      }
      .stat-card {
        background: var(--bg2);
        border-radius: 14px;
        padding: 16px;
        border: 1px solid var(--border);
      }
      .stat-num {
        font-family: "Manrope", sans-serif;
        font-size: 24px;
        font-weight: 800;
        color: var(--text);
      }
      .stat-num .unit {
        font-size: 13px;
        color: var(--muted);
        font-weight: 500;
      }
      .stat-label {
        font-size: 11.5px;
        color: var(--muted);
        margin-top: 4px;
        font-weight: 500;
      }
      .stat-up {
        font-size: 11px;
        font-weight: 700;
        color: #16a34a;
        margin-top: 6px;
      }

      .dash-chart {
        background: linear-gradient(
          135deg,
          var(--bg3),
          rgba(56, 189, 248, 0.08)
        );
        border-radius: 14px;
        padding: 16px;
        border: 1px solid rgba(37, 99, 235, 0.1);
        margin-bottom: 16px;
      }
      .chart-label {
        font-size: 12px;
        color: var(--muted);
        font-weight: 600;
        margin-bottom: 14px;
      }
      .chart-bars {
        display: flex;
        align-items: flex-end;
        gap: 6px;
        height: 60px;
      }
      .bar {
        flex: 1;
        border-radius: 5px 5px 0 0;
        background: linear-gradient(180deg, var(--primary), var(--accent));
        opacity: 0.7;
        transition: opacity 0.2s;
        animation: growBar 1s ease both;
      }
      .bar:hover {
        opacity: 1;
      }
      .bar:nth-child(1) {
        height: 40%;
        animation-delay: 0.1s;
      }
      .bar:nth-child(2) {
        height: 65%;
        animation-delay: 0.15s;
      }
      .bar:nth-child(3) {
        height: 50%;
        animation-delay: 0.2s;
      }
      .bar:nth-child(4) {
        height: 80%;
        animation-delay: 0.25s;
      }
      .bar:nth-child(5) {
        height: 60%;
        animation-delay: 0.3s;
      }
      .bar:nth-child(6) {
        height: 90%;
        background: linear-gradient(180deg, var(--secondary), var(--primary));
        animation-delay: 0.35s;
      }
      .bar:nth-child(7) {
        height: 75%;
        animation-delay: 0.4s;
      }
      @keyframes growBar {
        from {
          transform: scaleY(0);
          transform-origin: bottom;
        }
        to {
          transform: scaleY(1);
        }
      }

      .dash-activities {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .activity-item {
        display: flex;
        align-items: center;
        gap: 12px;
        background: var(--bg2);
        border-radius: 10px;
        padding: 10px 14px;
        border: 1px solid var(--border);
      }
      .act-icon {
        width: 32px;
        height: 32px;
        border-radius: 9px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        flex-shrink: 0;
      }
      .act-text {
        font-size: 12.5px;
        font-weight: 600;
        color: var(--text);
      }
      .act-sub {
        font-size: 11px;
        color: var(--muted);
        margin-top: 1px;
      }
      .act-time {
        font-size: 11px;
        color: var(--muted);
        margin-left: auto;
      }

      /* Floating cards around dashboard */
      .float-card {
        position: absolute;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(37, 99, 235, 0.12);
        border-radius: 14px;
        padding: 12px 16px;
        box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
        backdrop-filter: blur(16px);
        font-size: 12.5px;
        font-weight: 600;
        color: var(--text);
      }
      .float1 {
        top: -20px;
        right: -20px;
        animation: floatCard 5s ease-in-out infinite;
      }
      .float2 {
        bottom: 40px;
        left: -30px;
        animation: floatCard 6s ease-in-out infinite reverse;
      }
      @keyframes floatCard {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-10px);
        }
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(24px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }
      @keyframes fadeInRight {
        from {
          opacity: 0;
          transform: translateX(40px);
        }
        to {
          opacity: 1;
          transform: translateX(0);
        }
      }

      /* ─── SECTION COMMONS ─── */
      section {
        padding: 100px 5%;
      }
      .section-inner {
        max-width: 1280px;
        margin: 0 auto;
      }
      .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--bg3);
        border: 1px solid rgba(37, 99, 235, 0.15);
        color: var(--primary);
        font-size: 12px;
        font-weight: 700;
        padding: 5px 14px;
        border-radius: 50px;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        margin-bottom: 16px;
      }
      .section-title {
        font-family: "Manrope", sans-serif;
        font-size: clamp(28px, 3.5vw, 44px);
        font-weight: 800;
        letter-spacing: -1px;
        line-height: 1.18;
        color: var(--text);
        margin-bottom: 16px;
      }
      .section-sub {
        font-size: 16.5px;
        color: var(--muted);
        line-height: 1.7;
        max-width: 560px;
      }
      .section-header {
        margin-bottom: 60px;
      }
      .section-header.center {
        text-align: center;
      }
      .section-header.center .section-sub {
        margin: 0 auto;
      }

      /* ─── SERVICES ─── */
      #services {
        background: var(--bg2);
      }
      .services-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
      }
      .service-card {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 18px;
        padding: 28px 24px;
        transition: all 0.3s;
        cursor: pointer;
        position: relative;
        overflow: hidden;
      }
      .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        opacity: 0;
        transition: opacity 0.3s;
      }
      .service-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: transparent;
      }
      .service-card:hover::before {
        opacity: 1;
      }
      .service-card:hover .svc-icon {
        background: rgba(255, 255, 255, 0.2);
      }
      .service-card:hover .svc-title,
      .service-card:hover .svc-desc,
      .service-card:hover .svc-link {
        color: #fff;
      }
      .service-card:hover .svc-emoji {
        filter: brightness(10);
      }
      .service-content {
        position: relative;
        z-index: 1;
      }
      .svc-icon {
        width: 52px;
        height: 52px;
        border-radius: 14px;
        background: var(--bg3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-bottom: 18px;
        transition: background 0.3s;
      }
      .svc-title {
        font-family: "Manrope", sans-serif;
        font-weight: 700;
        font-size: 16px;
        color: var(--text);
        margin-bottom: 10px;
        transition: color 0.3s;
      }
      .svc-desc {
        font-size: 13.5px;
        color: var(--muted);
        line-height: 1.65;
        margin-bottom: 18px;
        transition: color 0.3s;
      }
      .svc-link {
        font-size: 13px;
        font-weight: 700;
        color: var(--primary);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
        transition: color 0.3s;
      }
      .svc-link:hover {
        gap: 9px;
      }

      /* ─── INDUSTRIES ─── */
      #industries {
        background: #fff;
      }
      .industries-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }
      .industry-card {
        background: linear-gradient(145deg, var(--bg2), var(--bg3));
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 32px 28px;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        transition: all 0.3s;
      }
      .industry-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        border-color: rgba(37, 99, 235, 0.2);
      }
      .ind-icon {
        width: 58px;
        height: 58px;
        border-radius: 16px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        flex-shrink: 0;
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.25);
      }
      .ind-title {
        font-family: "Manrope", sans-serif;
        font-weight: 700;
        font-size: 17px;
        color: var(--text);
        margin-bottom: 8px;
      }
      .ind-desc {
        font-size: 13.5px;
        color: var(--muted);
        line-height: 1.65;
      }
      .ind-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        margin-top: 14px;
      }
      .ind-tag {
        font-size: 11.5px;
        font-weight: 600;
        color: var(--primary);
        background: rgba(37, 99, 235, 0.08);
        padding: 3px 10px;
        border-radius: 20px;
      }

      /* ─── CASE STUDIES ─── */
      #case-studies {
        background: var(--bg2);
      }
      .cs-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .cs-card {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        transition: all 0.3s;
      }
      .cs-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
      }
      .cs-header {
        padding: 28px 28px 20px;
        background: linear-gradient(
          135deg,
          var(--bg3),
          rgba(56, 189, 248, 0.1)
        );
        border-bottom: 1px solid var(--border);
      }
      .cs-industry {
        font-size: 11.5px;
        font-weight: 700;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 0.6px;
        margin-bottom: 10px;
      }
      .cs-title {
        font-family: "Manrope", sans-serif;
        font-weight: 700;
        font-size: 16px;
        color: var(--text);
        line-height: 1.4;
      }
      .cs-body {
        padding: 24px 28px;
      }
      .cs-kpis {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-bottom: 20px;
      }
      .kpi {
        text-align: center;
      }
      .kpi-num {
        font-family: "Manrope", sans-serif;
        font-size: 24px;
        font-weight: 800;
        color: var(--primary);
      }
      .kpi-label {
        font-size: 11px;
        color: var(--muted);
        font-weight: 500;
        margin-top: 2px;
      }
      .cs-desc {
        font-size: 13.5px;
        color: var(--muted);
        line-height: 1.65;
      }
      .cs-progress {
        margin-top: 18px;
      }
      .prog-label {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 6px;
        color: var(--muted);
      }
      .prog-bar {
        height: 6px;
        background: var(--bg2);
        border-radius: 10px;
        overflow: hidden;
      }
      .prog-fill {
        height: 100%;
        border-radius: 10px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        animation: fillBar 1.5s ease both;
      }
      @keyframes fillBar {
        from {
          width: 0 !important;
        }
      }

      /* ─── WHY CHOOSE US ─── */
      #why-us {
        background: #fff;
      }
      .why-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
      }
      .why-content .section-header {
        margin-bottom: 40px;
      }
      .why-features {
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
      .why-feature {
        display: flex;
        align-items: flex-start;
        gap: 16px;
        padding: 20px;
        border-radius: 16px;
        border: 1px solid var(--border);
        background: var(--bg2);
        transition: all 0.3s;
      }
      .why-feature:hover {
        border-color: rgba(37, 99, 235, 0.25);
        box-shadow: var(--shadow);
      }
      .wf-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        flex-shrink: 0;
      }
      .wf-title {
        font-weight: 700;
        font-size: 15px;
        color: var(--text);
        margin-bottom: 5px;
      }
      .wf-desc {
        font-size: 13.5px;
        color: var(--muted);
        line-height: 1.6;
      }

      .why-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
      }
      .stat-big {
        background: linear-gradient(
          145deg,
          var(--bg3),
          rgba(56, 189, 248, 0.1)
        );
        border: 1px solid rgba(37, 99, 235, 0.12);
        border-radius: 20px;
        padding: 28px;
        text-align: center;
        transition: all 0.3s;
      }
      .stat-big:hover {
        transform: scale(1.03);
        box-shadow: var(--shadow);
      }
      .stat-big.featured {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        border-color: transparent;
        grid-column: span 2;
        padding: 32px;
      }
      .stat-big.featured .stat-number,
      .stat-big.featured .stat-desc,
      .stat-big.featured .stat-unit {
        color: #fff;
      }
      .stat-number {
        font-family: "Manrope", sans-serif;
        font-size: 44px;
        font-weight: 800;
        color: var(--primary);
        line-height: 1;
      }
      .stat-unit {
        font-size: 24px;
        font-weight: 700;
        color: var(--primary);
      }
      .stat-desc {
        font-size: 13.5px;
        color: var(--muted);
        margin-top: 8px;
        font-weight: 500;
      }

      /* ─── TECH STACK ─── */
      #tech-stack {
        background: var(--bg2);
      }
      .tech-tabs {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        margin-bottom: 36px;
      }
      .tech-tab {
        padding: 9px 20px;
        border-radius: 50px;
        font-size: 13.5px;
        font-weight: 600;
        background: #fff;
        border: 1.5px solid var(--border);
        color: var(--muted);
        cursor: pointer;
        transition: all 0.2s;
      }
      .tech-tab.active,
      .tech-tab:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: #fff;
      }
      .tech-grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 14px;
      }
      .tech-item {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 14px;
        padding: 18px 14px;
        text-align: center;
        transition: all 0.25s;
        cursor: pointer;
      }
      .tech-item:hover {
        border-color: var(--primary);
        box-shadow: var(--shadow);
        transform: translateY(-3px);
      }
      .tech-emoji {
        font-size: 24px;
        display: block;
        margin-bottom: 8px;
      }
      .tech-name {
        font-size: 12px;
        font-weight: 600;
        color: var(--muted);
      }

      /* ─── TESTIMONIALS ─── */
      #testimonials {
        background: linear-gradient(160deg, #fff 0%, var(--bg3) 100%);
      }
      .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .testi-card {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 20px;
        padding: 28px;
        box-shadow: var(--shadow);
        transition: all 0.3s;
        position: relative;
      }
      .testi-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
      }
      .testi-quote {
        font-size: 40px;
        color: var(--primary);
        opacity: 0.2;
        line-height: 1;
        margin-bottom: 10px;
        font-family: "Manrope", sans-serif;
      }
      .testi-text {
        font-size: 14.5px;
        color: var(--muted);
        line-height: 1.75;
        margin-bottom: 24px;
        font-style: italic;
      }
      .testi-author {
        display: flex;
        align-items: center;
        gap: 14px;
      }
      .testi-avatar {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 16px;
        color: #fff;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        flex-shrink: 0;
      }
      .testi-name {
        font-weight: 700;
        font-size: 14px;
        color: var(--text);
      }
      .testi-role {
        font-size: 12.5px;
        color: var(--muted);
        margin-top: 2px;
      }
      .testi-stars {
        display: flex;
        gap: 3px;
        margin-top: 8px;
      }
      .testi-stars span {
        color: #f59e0b;
        font-size: 13px;
      }

      /* ─── INSIGHTS ─── */
      #insights {
        background: var(--bg2);
      }
      .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .blog-card {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid var(--border);
        box-shadow: var(--shadow);
        transition: all 0.3s;
      }
      .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
      }
      .blog-thumb {
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 50px;
        position: relative;
        overflow: hidden;
      }
      .blog-thumb::before {
        content: "";
        position: absolute;
        inset: 0;
        opacity: 0.9;
      }
      .b1 .blog-thumb::before {
        background: linear-gradient(135deg, #dbeafe, #e0f2fe);
      }
      .b2 .blog-thumb::before {
        background: linear-gradient(135deg, #f0fdf4, #dcfce7);
      }
      .b3 .blog-thumb::before {
        background: linear-gradient(135deg, #fdf4ff, #fce7f3);
      }
      .blog-thumb-icon {
        position: relative;
        z-index: 1;
      }
      .blog-body {
        padding: 24px;
      }
      .blog-cat {
        font-size: 11.5px;
        font-weight: 700;
        color: var(--primary);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 10px;
      }
      .blog-title {
        font-family: "Manrope", sans-serif;
        font-weight: 700;
        font-size: 16px;
        color: var(--text);
        line-height: 1.45;
        margin-bottom: 12px;
      }
      .blog-excerpt {
        font-size: 13.5px;
        color: var(--muted);
        line-height: 1.65;
        margin-bottom: 20px;
      }
      .blog-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
      .blog-author {
        font-size: 12.5px;
        font-weight: 600;
        color: var(--muted);
      }
      .blog-read {
        font-size: 12.5px;
        font-weight: 700;
        color: var(--primary);
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 5px;
      }
      .blog-read:hover {
        gap: 9px;
      }

      /* ─── CTA ─── */
      #cta-section {
        background: #fff;
        padding: 80px 5%;
      }
      .cta-inner {
        max-width: 1280px;
        margin: 0 auto;
        background: linear-gradient(
          135deg,
          var(--primary) 0%,
          #1d4ed8 40%,
          var(--accent) 100%
        );
        border-radius: 28px;
        padding: 72px 64px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        position: relative;
        overflow: hidden;
      }
      .cta-inner::before {
        content: "";
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E")
          repeat;
        opacity: 0.5;
      }
      .cta-content {
        position: relative;
        z-index: 1;
      }
      .cta-title {
        font-family: "Manrope", sans-serif;
        font-size: clamp(24px, 3vw, 38px);
        font-weight: 800;
        color: #fff;
        line-height: 1.25;
        margin-bottom: 14px;
        letter-spacing: -0.5px;
      }
      .cta-sub {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.65;
        max-width: 500px;
      }
      .cta-actions {
        display: flex;
        gap: 14px;
        flex-shrink: 0;
        position: relative;
        z-index: 1;
        flex-wrap: wrap;
      }
      .btn-cta-white {
        background: #fff;
        color: var(--primary);
        font-weight: 700;
        font-size: 15px;
        padding: 14px 28px;
        border-radius: 12px;
        border: none;
        cursor: pointer;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
        transition: all 0.25s;
        font-family: "Plus Jakarta Sans", sans-serif;
        white-space: nowrap;
        text-decoration: none;
        display: inline-block;
      }
      .btn-cta-white:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 36px rgba(0, 0, 0, 0.25);
      }
      .btn-cta-ghost {
        background: rgba(255, 255, 255, 0.15);
        color: #fff;
        font-weight: 700;
        font-size: 15px;
        padding: 14px 28px;
        border-radius: 12px;
        border: 1.5px solid rgba(255, 255, 255, 0.3);
        cursor: pointer;
        transition: all 0.25s;
        font-family: "Plus Jakarta Sans", sans-serif;
        white-space: nowrap;
        text-decoration: none;
        display: inline-block;
      }
      .btn-cta-ghost:hover {
        background: rgba(255, 255, 255, 0.25);
      }

      /* ─── FOOTER ─── */
      footer {
        background: #0f172a;
        color: #94a3b8;
        padding: 72px 5% 40px;
      }
      .footer-inner {
        max-width: 1280px;
        margin: 0 auto;
      }
      .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 40px;
        padding-bottom: 56px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 36px;
      }
      .footer-brand .logo-text {
        color: #fff;
      }
      .footer-brand p {
        font-size: 13.5px;
        line-height: 1.7;
        margin: 16px 0 24px;
      }
      .footer-social {
        display: flex;
        gap: 10px;
      }
      .social-btn {
        width: 38px;
        height: 38px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        cursor: pointer;
        transition: background 0.2s;
        text-decoration: none;
        color: #94a3b8;
      }
      .social-btn:hover {
        background: var(--primary);
        color: #fff;
      }
      .footer-col h4 {
        color: #fff;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 18px;
      }
      .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .footer-col ul li a {
        font-size: 13.5px;
        color: #94a3b8;
        text-decoration: none;
        transition: color 0.2s;
      }
      .footer-col ul li a:hover {
        color: var(--secondary);
      }
      .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
      }
      .footer-copy {
        font-size: 13px;
      }
      .footer-links {
        display: flex;
        gap: 24px;
      }
      .footer-links a {
        font-size: 13px;
        color: #94a3b8;
        text-decoration: none;
      }
      .footer-links a:hover {
        color: var(--secondary);
      }

      /* ─── RESPONSIVE ─── */
      @media (max-width: 1100px) {
        .services-grid {
          grid-template-columns: repeat(2, 1fr);
        }
        .tech-grid {
          grid-template-columns: repeat(4, 1fr);
        }
        .footer-top {
          grid-template-columns: 1fr 1fr 1fr;
        }
      }
      @media (max-width: 900px) {
        .hero-inner {
          grid-template-columns: 1fr;
        }
        .hero-visual {
          display: none;
        }
        .why-grid {
          grid-template-columns: 1fr;
        }
        .industries-grid {
          grid-template-columns: 1fr 1fr;
        }
        .cs-grid {
          grid-template-columns: 1fr 1fr;
        }
        .testimonials-grid {
          grid-template-columns: 1fr;
        }
        .blog-grid {
          grid-template-columns: 1fr 1fr;
        }
        .cta-inner {
          flex-direction: column;
          text-align: center;
        }
        .cta-sub {
          max-width: 100%;
        }
      }
      @media (max-width: 700px) {
        .nav-links {
          display: none;
        }
        .nav-cta {
          display: none;
        }
        .hamburger {
          display: flex;
        }
        .services-grid {
          grid-template-columns: 1fr;
        }
        .industries-grid {
          grid-template-columns: 1fr;
        }
        .cs-grid {
          grid-template-columns: 1fr;
        }
        .blog-grid {
          grid-template-columns: 1fr;
        }
        .tech-grid {
          grid-template-columns: repeat(3, 1fr);
        }
        section {
          padding: 70px 5%;
        }
        .why-stats {
          grid-template-columns: 1fr 1fr;
        }
        .stat-big.featured {
          grid-column: span 2;
        }
        .footer-top {
          grid-template-columns: 1fr 1fr;
        }
        .cta-inner {
          padding: 40px 28px;
        }
      }

      /* Scroll animation */
      .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .reveal.visible {
        opacity: 1;
        transform: translateY(0);
      }
      .reveal-delay-1 {
        transition-delay: 0.1s;
      }
      .reveal-delay-2 {
        transition-delay: 0.2s;
      }
      .reveal-delay-3 {
        transition-delay: 0.3s;
      }
      .reveal-delay-4 {
        transition-delay: 0.4s;
      }