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

    /* ── DESIGN TOKENS (light-mode only) ── */
    :root {
      --bg: #F5F5F7;
      --bg-2: #ffffff;
      --text: #1d1d1f;
      --text-2: #6e6e73;
      --text-3: #3d3d3f;
      --teal: #33c5f3;
      --glass-bg: rgba(255, 255, 255, 0.72);
      --glass-border: rgba(255, 255, 255, 0.9);
      --glass-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 32px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
      --radius: 20px;
      --radius-sm: 12px;
      --radius-pill: 100px;
      --fh: 'Plus Jakarta Sans', -apple-system, sans-serif;
      --fb: 'Inter', -apple-system, sans-serif;
      --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    /* ── BASE ── */
    html {
      scroll-behavior: smooth;
      scroll-padding-top: 88px;
    }

    body {
      font-family: var(--fb);
      background: var(--bg);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    .container {
      max-width: 1520px;
      margin: 0 auto;
      padding: 0 60px;
    }

    @media(max-width:768px) {
      .container {
        padding: 0 24px;
      }
    }

    /* ── NAV ── */
    .nav-wrap {
      position: fixed;
      top: 20px;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 0 40px;
    }

    @media(max-width:768px) {
      .nav-wrap {
        padding: 0 16px;
      }
    }

    nav {
      position: relative;
      max-width: 1440px;
      margin: 0 auto;
      background: #0a0d1a;
      border: 1px solid rgba(255, 255, 255, 0.10);
      border-radius: 24px;
      padding: 0;
      display: block;
      box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
      transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, border-radius .22s ease, backdrop-filter .3s ease;
      overflow: visible;
    }

    nav.scrolled {
      background: rgba(10, 13, 26, 0.55);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid rgba(255, 255, 255, 0.12);
      box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
    }

    .nav-bar-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 8px 8px 24px;
      width: 100%;
      box-sizing: border-box;
      position: relative;
      z-index: 100;
    }

    .nav-backdrop {
      display: none !important;
      pointer-events: none !important;
    }

    .nav-backdrop.visible {
      display: none !important;
      opacity: 0 !important;
      visibility: hidden !important;
      pointer-events: none !important;
    }

    nav::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      border: 1px solid transparent;
      background: linear-gradient(to right, #2dd4bf, #818cf8, #f472b6) border-box;
      -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: destination-out;
      mask-composite: exclude;
      pointer-events: none;
      opacity: 0.75;
      transition: border-radius .22s ease;
    }

    nav:has(.mega-menu.visible) {
      border-radius: 24px 24px 0 0;
      box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10), 0 1px 3px rgba(0, 0, 0, 0.04);
    }

    nav:has(.mega-menu.visible)::after {
      border-radius: 24px 24px 0 0;
      clip-path: inset(0 0 1px 0);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

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

    .nav-links a {
      font-size: 15px;
      font-weight: 500;
      color: #e8e8ed;
      text-decoration: none;
      transition: color .2s;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #ffffff;
    }

    .nav-has-mega {
      position: static;
    }

    .nav-has-mega>a {
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .nav-has-mega>a::after {
      content: '';
      display: inline-block;
      width: 12px;
      height: 12px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231d1d1f' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
      transition: transform .25s;
    }

    .nav-has-mega.open>a::after {
      transform: rotate(180deg);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .nav-cta {
      background: linear-gradient(135deg, #33c5f3 0%, #0a6ebd 100%);
      color: #fff;
      font-family: var(--fh);
      font-size: 14px;
      font-weight: 800;
      padding: 10px 22px;
      border-radius: var(--radius-pill);
      text-decoration: none;
      box-shadow: 0 0 18px rgba(51,197,243,0.40);
      transition: opacity .2s, transform .18s var(--ease), box-shadow .2s;
    }

    .nav-cta:hover {
      opacity: .92;
      transform: translateY(-1px);
      box-shadow: 0 4px 24px rgba(51,197,243,0.60);
    }

    @media(max-width:768px) {
      .nav-links {
        display: none;
      }
      .nav-cta {
        display: none !important;
      }

      .nav-hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: transparent;
        border: none;
        cursor: pointer;
        color: #ffffff;
        flex-shrink: 0;
        transition: background .15s;
      }

      .nav-hamburger:hover {
        background: rgba(255, 255, 255, 0.10);
      }
    }

    @media(min-width:769px) {
      .nav-hamburger {
        display: none;
      }
    }

    /* ── SIDE DRAWER ── */
    .nav-drawer-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.45);
      z-index: 9998;
      opacity: 0;
      transition: opacity .32s ease;
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
    }

    .nav-drawer-overlay.open {
      display: block;
      opacity: 1;
    }

    .nav-drawer {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 300px;
      max-width: 85vw;
      background: #fff;
      z-index: 9999;
      transform: translateX(110%);
      transition: transform .32s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      display: flex;
      flex-direction: column;
      box-shadow: -12px 0 48px rgba(0, 0, 0, 0.14);
      border-left: 1px solid rgba(0, 0, 0, 0.07);
    }

    .nav-drawer.open {
      transform: translateX(0);
    }

    @media(min-width:769px) {

      .nav-drawer,
      .nav-drawer-overlay {
        display: none !important;
      }
    }

    .nav-drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.07);
      flex-shrink: 0;
    }

    .nav-drawer-logo {
      height: 34px;
      width: auto;
      display: block;
    }

    .nav-drawer-close {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(0, 0, 0, 0.05);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #1d1d1f;
      transition: background .15s;
      flex-shrink: 0;
    }

    .nav-drawer-close:hover {
      background: rgba(0, 0, 0, 0.1);
    }

    .nav-drawer-body {
      flex: 1;
      overflow-y: auto;
      padding: 8px 0 28px;
    }

    .nav-drawer-body>a {
      display: block;
      padding: 14px 24px;
      font-size: 15px;
      font-weight: 500;
      color: #1d1d1f;
      text-decoration: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      transition: background .15s, color .15s;
    }

    .nav-drawer-body>a:hover {
      background: rgba(0, 0, 0, 0.03);
    }

    .nav-drawer-body>a.active {
      color: var(--teal);
    }

    .nav-drawer-services-toggle {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 24px;
      font-size: 15px;
      font-weight: 500;
      color: #1d1d1f;
      cursor: pointer;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      transition: background .15s;
      user-select: none;
      -webkit-user-select: none;
    }

    .nav-drawer-services-toggle:hover {
      background: rgba(0, 0, 0, 0.03);
    }

    .drawer-chevron {
      display: inline-flex;
      align-items: center;
      transition: transform .25s var(--ease);
      color: #6e6e73;
    }

    .nav-drawer-services-toggle.open .drawer-chevron {
      transform: rotate(90deg);
    }

    .nav-drawer-services {
      display: none;
      background: rgba(245, 245, 247, 0.6);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-drawer-services.open {
      display: block;
    }

    .nav-drawer-services a {
      display: block;
      padding: 12px 24px 12px 36px;
      font-size: 14px;
      font-weight: 500;
      color: #3a3a3c;
      text-decoration: none;
      border-bottom: 1px solid rgba(0, 0, 0, 0.04);
      transition: background .15s, color .15s;
    }

    .nav-drawer-services a:last-child {
      border-bottom: none;
    }

    .nav-drawer-services a:hover {
      background: rgba(51, 197, 243, 0.07);
      color: var(--teal);
    }

    .nav-drawer-cta {
      display: block;
      margin: 20px 20px 0;
      padding: 14px 24px;
      border-radius: 100px;
      background: linear-gradient(135deg, #33c5f3 0%, #0a6ebd 100%);
      color: #fff !important;
      font-size: 15px;
      font-weight: 800;
      text-align: center;
      text-decoration: none;
      transition: opacity .2s, transform .18s;
    }

    .nav-drawer-cta:hover {
      opacity: .88;
      transform: translateY(-1px);
    }

    .mega-inner {
      display: grid;
      grid-template-columns: 1fr 1fr 280px;
      gap: 8px 24px;
    }

    .mega-item {
      display: flex;
      flex-direction: column;
      padding: 14px 16px;
      border-radius: 12px;
      text-decoration: none;
      transition: background .18s;
      cursor: pointer;
    }

    .mega-item:hover {
      background: rgba(51, 197, 243, 0.06);
    }

    .mega-item:hover .mega-item-title {
      color: var(--teal);
    }

    .mega-item-title {
      font-family: var(--fh);
      font-size: 15px;
      font-weight: 700;
      color: #1d1d1f;
      margin-bottom: 4px;
      transition: color .18s;
    }

    .mega-item-desc {
      font-size: 13px;
      color: #6b7280;
      line-height: 1.45;
    }

    .mega-featured {
      grid-row: 1 / 4;
      grid-column: 3;
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      border-radius: 16px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-decoration: none;
      transition: transform .2s;
      min-height: 240px;
    }

    .mega-featured:hover {
      transform: translateY(-2px);
    }

    .mega-featured-eyebrow {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #33c5f3;
      margin-bottom: 12px;
    }

    .mega-featured-title {
      font-family: var(--fh);
      font-size: 22px;
      font-weight: 900;
      color: #fff;
      line-height: 1.2;
      margin-bottom: 8px;
    }

    .mega-featured-desc {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.5;
      flex: 1;
    }

    .mega-featured-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 20px;
      font-size: 13px;
      font-weight: 700;
      color: #33c5f3;
    }

    @media(max-width:768px) {
      .mega-menu {
        display: none !important;
      }
    }

    .mega-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: -1px;
      right: -1px;
      background: #ffffff;
      border-radius: 0 0 23px 23px;
      border: 1px solid transparent;
      border-top: none;
      padding: 0 48px 32px;
      margin: 0;
      box-sizing: border-box;
      z-index: 95;
      opacity: 0;
      transform: translateY(-6px);
      transition: opacity .22s ease, transform .22s ease;
      pointer-events: none;
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.04);
      overflow: hidden;
    }

    .mega-menu::after {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: inherit;
      border: 1px solid transparent;
      background: linear-gradient(to right, #2dd4bf, #818cf8, #f472b6) border-box;
      -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: destination-out;
      mask-composite: exclude;
      pointer-events: none;
      opacity: 0.75;
    }

    .mega-menu.visible {
      display: grid;
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
      padding-top: 24px;
    }

    /* ── HERO ── */
    .hero {
      background: #05081a;
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 140px 0 80px;
    }

    /* Photo layer */
    .hero-photo {
      position: absolute;
      inset: 0;
      background:
        url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1800&q=90&auto=format&fit=crop')
        center 40% / cover no-repeat;
      animation: heroDrift 26s ease-in-out infinite alternate;
      will-change: transform;
    }
    @keyframes heroDrift {
      from { transform: scale(1.0) translate(0px, 0px); }
      to   { transform: scale(1.07) translate(-16px, -6px); }
    }

    /* Overlay 1 — deep navy base */
    .hero-ov1 {
      position: absolute; inset: 0;
      background: rgba(5, 8, 24, 0.55);
    }

    /* Overlay 2 — directional: left darker for text, right open for animation */
    .hero-ov2 {
      position: absolute; inset: 0;
      background: linear-gradient(
        106deg,
        rgba(5,8,24,0.50) 0%,
        rgba(5,8,24,0.22) 50%,
        rgba(5,8,24,0.08) 100%
      );
    }

    /* Overlay 3 — brand colour radials */
    .hero-ov3 {
      position: absolute; inset: 0; pointer-events: none;
      background:
        radial-gradient(ellipse 55% 70% at 88% 38%, rgba(51,197,243,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 35% 45% at 8%  88%, rgba(16,185,129,0.09) 0%, transparent 55%),
        radial-gradient(ellipse 30% 40% at 72% 88%, rgba(139,92,246,0.11) 0%, transparent 55%);
    }

    /* Overlay 4 — bottom curtain */
    .hero-ov4 {
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 220px;
      background: linear-gradient(transparent, rgba(5,8,24,0.72));
    }

    /* Overlay 5 — top vignette (blends with navbar) */
    .hero-ov5 {
      position: absolute; top: 0; left: 0; right: 0;
      height: 160px;
      background: linear-gradient(rgba(5,8,24,0.50), transparent);
    }

    /* hero::before no longer needed — replaced by overlay divs */
    .hero::before { display: none; }

    .hero .container {
      width: 100%;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      width: 100%;
    }

    @media(max-width:900px) {
      .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
      }
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 24px;
    }

    .hero-eyebrow-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--teal);
      animation: pulse 2s ease infinite;
      flex-shrink: 0;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: .3;
        transform: scale(.65);
      }
    }

    .hero-h1 {
      font-family: var(--fh);
      font-size: clamp(38px, 4.5vw, 64px);
      font-weight: 900;
      letter-spacing: -.045em;
      line-height: 1.05;
      color: #ffffff;
      margin-bottom: 22px;
      text-shadow: 0 2px 28px rgba(0,0,0,0.4);
    }

    .hero-h1 em {
      font-style: normal;
      background: linear-gradient(110deg, #33c5f3 0%, #8b5cf6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-sub {
      font-size: 17px;
      line-height: 1.7;
      color: rgba(255,255,255,0.65);
      max-width: 420px;
      margin-bottom: 36px;
    }

    .hero-btns {
      display: flex;
      gap: 12px;
      align-items: center;
      margin-bottom: 44px;
      flex-wrap: wrap;
    }

    .hero-btn-primary {
      background: linear-gradient(135deg, #33c5f3 0%, #0a6ebd 100%);
      color: #fff !important;
      font-family: var(--fh);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: -.01em;
      padding: 15px 30px;
      border-radius: var(--radius-pill);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1), 0 0 40px rgba(51,197,243,0.12);
      transition: transform .2s var(--ease), box-shadow .2s;
    }

    .hero-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 32px rgba(0,0,0,0.45);
    }

    .hero-btn-secondary {
      font-size: 15px;
      font-weight: 600;
      color: rgba(255,255,255,0.60);
      text-decoration: none;
      padding: 15px 16px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: color .2s;
    }

    .hero-btn-secondary:hover {
      color: rgba(255,255,255,0.90);
    }



    /* ── TRUST LOGOS SECTION ── */
    .trust-logos-section {
      background: var(--bg);
      padding: 72px 0 80px;
      position: relative;
      overflow: hidden;
    }

    /* subtle teal bloom — matches site accent */
    .trust-logos-section::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 320px;
      background: radial-gradient(ellipse, rgba(51, 197, 243, .06) 0%, transparent 70%);
      pointer-events: none;
    }

    .trust-logos-section .tls-inner {
      position: relative;
      z-index: 1;
    }

    .trust-logos-section .tls-header {
      display: flex;
      align-items: center;
      gap: 20px;
      justify-content: center;
      margin-bottom: 36px;
    }

    .trust-logos-section .tls-line {
      flex: 1;
      max-width: 220px;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(0,0,0,.10));
    }

    .trust-logos-section .tls-line.rev {
      background: linear-gradient(to left, transparent, rgba(0,0,0,.10));
    }

    .trust-logos-section .tls-label {
      font-family: var(--fh);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: #9ca3af;
      white-space: nowrap;
    }

    /* logo items on light background — clear grayscale */
    .trust-logos-section .client-logo-item img {
      filter: grayscale(1) opacity(.45);
      transition: filter .3s ease, transform .25s ease;
    }

    .trust-logos-section .client-logo-item img:hover {
      filter: grayscale(0) opacity(.9);
      transform: scale(1.06);
    }

    /* ── CLIENT LOGOS ── */
    .client-logos {
      margin-top: 64px;
      width: 100%;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 28px;
      overflow: hidden;
    }

    .client-logos-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .10em;
      text-transform: uppercase;
      color: #c0c0c6;
      margin-bottom: 18px;
    }

    /* Infinite Marquee Carousel (Both Desktop & Mobile) */
    .logo-marquee-container {
      display: flex;
      overflow: hidden;
      width: 100%;
      mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    }

    .logo-marquee-track {
      display: flex;
      align-items: center;
      flex-wrap: nowrap;
      gap: 48px;
      width: max-content;
      animation: marquee-scroll 32s linear infinite;
    }

    .logo-marquee-track:hover {
      animation-play-state: paused;
    }

    .client-logo-item {
      height: 38px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .client-logo-item img {
      height: 100%;
      width: auto;
      max-height: 38px;
      max-width: 130px;
      object-fit: contain;
      filter: grayscale(1) opacity(.45);
      transition: filter .25s ease, transform .25s ease;
    }

    .client-logo-item img:hover {
      filter: grayscale(0) opacity(.85);
      transform: scale(1.05);
    }

    /* Mobile View Tweaks */
    @media(max-width: 768px) {
      .client-logos {
        margin-top: 36px;
        padding-top: 0;
        border-top: none;
      }
      .client-logos-label {
        margin-bottom: 14px;
      }
      .logo-marquee-track {
        gap: 32px;
      }
      .client-logo-item {
        height: 28px;
      }
      .client-logo-item img {
        max-height: 28px;
      }
    }

    @keyframes marquee-scroll {
      0% {
        transform: translate3d(0, 0, 0);
      }
      100% {
        transform: translate3d(-50%, 0, 0);
      }
    }

    /* ── FLOW DIAGRAM ── */
    .hero-flow {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
    }

    @media(max-width:900px) {
      .hero-flow {
        display: none;
      }

      .hero-flow-wrap {
        display: none !important;
      }
    }

    .flow-col {
      display: flex;
      flex-direction: column;
      gap: 12px;
      width: 175px;
      flex-shrink: 0;
    }

    .fnode {
      background: rgba(255,255,255,0.09);
      backdrop-filter: blur(28px) saturate(190%);
      -webkit-backdrop-filter: blur(28px) saturate(190%);
      border: 1px solid rgba(255,255,255,0.17);
      border-radius: 14px;
      padding: 12px 14px;
      min-height: 62px;
      box-sizing: border-box;
      box-shadow: 0 2px 8px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.10);
      display: flex;
      align-items: center;
      gap: 10px;
      transition: transform .3s var(--ease), background .3s, box-shadow .3s;
    }

    .fnode:hover {
      transform: translateX(-3px);
      background: rgba(255,255,255,0.14);
      box-shadow: 0 4px 20px rgba(0,0,0,0.38);
    }

    .fnode-right:hover {
      transform: translateX(3px);
    }

    .fnode-icon {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      flex-shrink: 0;
    }

    .fnode-name {
      font-family: var(--fh);
      font-size: 13px;
      font-weight: 700;
      color: #ffffff;
      line-height: 1.2;
      margin-bottom: 2px;
      white-space: nowrap;
    }

    .fnode-detail {
      font-size: 11px;
      color: rgba(255,255,255,0.42);
      white-space: nowrap;
    }

    .fnode-out {
      border-left: 2px solid transparent;
    }

    .fnode-out.web {
      border-left-color: #6366f1;
    }

    .fnode-out.mob {
      border-left-color: var(--teal);
    }

    .fnode-out.ai {
      border-left-color: #8b5cf6;
    }

    .flow-connector {
      width: 48px;
      flex-shrink: 0;
      position: relative;
      display: flex;
      align-items: center;
      align-self: stretch;
    }

    .conn-line {
      position: absolute;
      left: 0;
      right: 0;
      top: 50%;
      height: 1px;
      transform: translateY(-50%);
    }

    .conn-line-l {
      background: linear-gradient(90deg, rgba(51, 197, 243, .08), rgba(51, 197, 243, .35));
    }

    .conn-line-r {
      background: linear-gradient(90deg, rgba(51, 197, 243, .35), rgba(51, 197, 243, .08));
    }

    .fdot {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 6px rgba(51, 197, 243, .6);
      animation: fdotR 1.8s linear infinite;
      opacity: 0;
    }

    .fdot:nth-child(2) {
      animation-delay: .6s;
    }

    .fdot:nth-child(3) {
      animation-delay: 1.2s;
    }

    @keyframes fdotR {
      0% {
        left: 0%;
        opacity: 0;
      }

      10% {
        opacity: 1;
      }

      90% {
        opacity: 1;
      }

      100% {
        left: 100%;
        opacity: 0;
      }
    }

    .fdot-rev {
      animation-name: fdotL;
    }

    @keyframes fdotL {
      0% {
        right: 0%;
        left: auto;
        opacity: 0;
      }

      10% {
        opacity: 1;
      }

      90% {
        opacity: 1;
      }

      100% {
        right: 100%;
        left: auto;
        opacity: 0;
      }
    }

    .flow-engine {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      width: 110px;
      height: 110px;
    }

    .pulse-ring {
      position: absolute;
      border-radius: 50%;
      border: 1.5px solid rgba(51, 197, 243, .2);
      animation: pulseRing 3.2s ease-out infinite;
    }

    .pulse-ring:nth-child(1) {
      width: 110px;
      height: 110px;
      animation-delay: 0s;
    }

    .pulse-ring:nth-child(2) {
      width: 110px;
      height: 110px;
      animation-delay: 1.07s;
    }

    .pulse-ring:nth-child(3) {
      width: 110px;
      height: 110px;
      animation-delay: 2.14s;
    }

    @keyframes pulseRing {
      0% {
        transform: scale(1);
        opacity: .4;
      }

      100% {
        transform: scale(1.8);
        opacity: 0;
      }
    }

    .engine-circle {
      position: absolute;
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: #fff;
      border: 1.5px solid rgba(51, 197, 243, .2);
      box-shadow: 0 0 0 8px rgba(51, 197, 243, .05), 0 4px 24px rgba(51, 197, 243, .12), 0 12px 48px rgba(0, 0, 0, .06), inset 0 1px 0 #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .engine-ring-svg {
      position: absolute;
      width: 110px;
      height: 110px;
      animation: spinRing 14s linear infinite;
    }

    @keyframes spinRing {
      from {
        transform: rotate(0deg);
      }

      to {
        transform: rotate(360deg);
      }
    }

    .engine-emblem {
      width: 58px;
      height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1;
      background: #fff;
      border-radius: 50%;
    }

    /* ── MARQUEE ── */
    .marquee-section {
      background: #ffffff;
      padding: 60px 0 40px;
      overflow: hidden;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .marquee-label {
      text-align: center;
      font-size: 11px;
      font-weight: 800;
      color: var(--teal);
      text-transform: uppercase;
      letter-spacing: .12em;
      margin-bottom: 28px;
    }

    .marquee-track-wrap {
      overflow: hidden;
    }

    .marquee-track {
      display: flex;
      width: max-content;
      animation: mq 28s linear infinite;
    }

    .marquee-track:hover {
      animation-play-state: paused;
    }

    @keyframes mq {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .mq-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 28px 8px 20px;
      margin: 0 8px;
      background: var(--glass-bg);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(0, 0, 0, 0.07);
      border-radius: var(--radius-pill);
      white-space: nowrap;
      font-family: var(--fh);
      font-size: 14px;
      font-weight: 700;
      color: var(--text-2);
      transition: color .2s, box-shadow .2s;
      cursor: default;
    }

    .mq-item:hover {
      color: var(--text);
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }

    .mq-icon {
      width: 28px;
      height: 28px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* ── STATS BAND (dark contrast) ── */
    .stats-band {
      background: #1d1d1f;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .stats-band::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(51, 197, 243, .05), transparent 60%, rgba(168, 85, 247, .05));
      pointer-events: none;
    }

    .stats-inner {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      position: relative;
      z-index: 1;
    }

    @media(max-width:768px) {
      .stats-inner {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    .stat-item {
      text-align: center;
      padding: 24px 32px;
      border-right: 1px solid rgba(255, 255, 255, .08);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-num {
      font-family: var(--fh);
      font-size: clamp(42px, 4vw, 68px);
      font-weight: 900;
      letter-spacing: -.04em;
      color: #fff;
      line-height: 1;
    }

    .stat-num em {
      color: var(--teal);
      font-style: normal;
    }

    .stat-lbl {
      font-size: 13px;
      color: rgba(255, 255, 255, .35);
      text-transform: uppercase;
      letter-spacing: .1em;
      margin-top: 10px;
    }

    /* ── SERVICES BENTO ── */
    .services {
      background: var(--bg);
      padding: 120px 0;
    }

    .section-eyebrow {
      font-size: 11px;
      font-weight: 800;
      color: var(--teal);
      text-transform: uppercase;
      letter-spacing: .12em;
      margin-bottom: 14px;
    }

    .section-h2 {
      font-family: var(--fh);
      font-size: clamp(36px, 3.5vw, 56px);
      font-weight: 900;
      letter-spacing: -.03em;
      line-height: 1.08;
      color: var(--text);
      margin-bottom: 14px;
    }

    .section-sub {
      font-size: 17px;
      line-height: 1.65;
      color: var(--text-2);
      max-width: 500px;
    }

    .services-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 52px;
    }

    .bento {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 14px;
    }

    @media(max-width:900px) {
      .bento {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:560px) {
      .bento {
        grid-template-columns: 1fr;
      }
    }

    .bc {
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
      background: var(--glass-bg);
      backdrop-filter: blur(28px) saturate(180%);
      -webkit-backdrop-filter: blur(28px) saturate(180%);
      border: 1px solid var(--glass-border);
      box-shadow: var(--glass-shadow);
      transition: transform .25s var(--ease), box-shadow .25s var(--ease);
    }

    .bc:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 16px 48px rgba(0, 0, 0, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    }

    .bc-ai {
      grid-column: span 8;
      background: linear-gradient(135deg, rgba(51, 197, 243, 0.08) 0%, rgba(168, 85, 247, 0.05) 100%), var(--glass-bg);
      padding: 48px;
      min-height: 320px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    @media(max-width:900px) {
      .bc-ai {
        grid-column: span 2;
      }

      .bc-shopify,
      .bc-wp,
      .bc-mobile,
      .bc-auto {
        grid-column: span 1;
      }
    }

    @media(max-width:560px) {

      .bc-ai,
      .bc-shopify,
      .bc-wp,
      .bc-mobile,
      .bc-auto {
        grid-column: span 1;
      }
    }

    .bc-ai-bg {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 55% 65% at 25% 35%, rgba(51, 197, 243, .12), transparent 70%);
      pointer-events: none;
    }

    .bc-shopify {
      grid-column: span 4;
      padding: 40px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .bc-wp {
      grid-column: span 5;
      padding: 40px;
      min-height: 240px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .bc-mobile {
      grid-column: span 4;
      padding: 40px;
      min-height: 240px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .bc-auto {
      grid-column: span 3;
      padding: 40px;
      min-height: 240px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background: linear-gradient(135deg, rgba(30, 30, 30, 0.92), rgba(20, 20, 20, 0.95));
    }

    /* Tags */
    .bc-tag {
      font-size: 10px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .12em;
      padding: 5px 12px;
      border-radius: var(--radius-pill);
      display: inline-block;
      margin-bottom: 16px;
    }

    .bc-tag.teal {
      background: rgba(51, 197, 243, .14);
      color: #0ea5ca;
    }

    .bc-tag.green {
      background: rgba(34, 197, 94, .12);
      color: #16a34a;
    }

    .bc-tag.blue {
      background: rgba(59, 130, 246, .12);
      color: #2563eb;
    }

    .bc-tag.purple {
      background: rgba(168, 85, 247, .12);
      color: #9333ea;
    }

    .bc-tag.white {
      background: rgba(255, 255, 255, .14);
      color: rgba(255, 255, 255, .8);
    }

    .bc-title {
      font-family: var(--fh);
      font-weight: 800;
      font-size: 22px;
      letter-spacing: -.02em;
      line-height: 1.2;
      color: var(--text);
    }

    .bc-title.lg {
      font-size: 28px;
    }

    .bc-auto .bc-title {
      color: #fff;
    }

    .bc-body {
      font-size: 14px;
      line-height: 1.6;
      margin-top: 10px;
      color: var(--text-2);
    }

    .bc-auto .bc-body {
      color: rgba(255, 255, 255, .5);
    }

    .bc-arrow {
      font-size: 22px;
      margin-top: 20px;
      color: var(--text-2);
      opacity: .4;
      transition: opacity .2s, transform .2s;
    }

    .bc-auto .bc-arrow {
      color: #fff;
    }

    .bc:hover .bc-arrow {
      opacity: 1;
      transform: translateX(5px);
    }

    .bc-kpis {
      display: flex;
      gap: 10px;
      margin-top: 24px;
      position: relative;
      z-index: 1;
    }

    .bc-kpi {
      background: rgba(255, 255, 255, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.9);
      border-radius: var(--radius-sm);
      padding: 14px 18px;
      flex: 1;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .bc-kpi-val {
      font-family: var(--fh);
      font-size: 20px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -.02em;
    }

    .bc-kpi-lbl {
      font-size: 10px;
      color: var(--text-2);
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-top: 3px;
    }

    .bc-kpi-delta {
      font-size: 10px;
      color: #16a34a;
      margin-top: 2px;
    }

    .rev-bar {
      margin-top: 20px;
    }

    .rev-label {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-2);
      margin-bottom: 8px;
    }

    .rev-label strong {
      color: var(--text);
      font-weight: 700;
    }

    .rev-track {
      height: 6px;
      background: rgba(0, 0, 0, .08);
      border-radius: var(--radius-pill);
      overflow: hidden;
    }

    .rev-fill {
      height: 6px;
      background: linear-gradient(90deg, var(--teal), #a855f7);
      border-radius: var(--radius-pill);
      width: 0;
      animation: revfill .9s var(--ease) .4s forwards;
    }

    @keyframes revfill {
      to {
        width: 78%;
      }
    }

    /* ── EXPANDED SERVICES ── */
    .svc-expanded {
      background: #f0f8fd;
      background-image:
        radial-gradient(ellipse 65% 55% at 8% 15%, rgba(51, 197, 243, 0.10) 0%, transparent 60%),
        radial-gradient(ellipse 50% 45% at 92% 85%, rgba(139, 92, 246, 0.08) 0%, transparent 55%),
        radial-gradient(ellipse 40% 35% at 55% 5%, rgba(51, 197, 243, 0.05) 0%, transparent 50%);
      padding: 120px 0;
    }

    .svc-exp-eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 16px;
    }

    .svc-exp-h2 {
      font-family: var(--fh);
      font-weight: 900;
      font-size: clamp(32px, 3.5vw, 52px);
      line-height: 1.08;
      letter-spacing: -.03em;
      color: var(--text);
      max-width: 680px;
      margin: 0 auto 72px;
      text-align: center;
    }

    .svc-exp-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    @media(max-width:768px) {
      .svc-exp-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }
    }

    .svc-card {
      padding: 52px 48px;
      position: relative;
      overflow: hidden;
      background: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.9);
      border-radius: var(--radius);
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.05);
      transition: box-shadow .3s var(--ease), transform .25s var(--ease);
    }

    .svc-card:hover {
      box-shadow: 0 4px 24px rgba(51, 197, 243, 0.12), 0 12px 40px rgba(0, 0, 0, 0.08);
      transform: translateY(-2px);
    }

    .svc-card::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0;
      background: radial-gradient(ellipse 60% 50% at 0% 100%, rgba(51, 197, 243, .06), transparent);
      transition: opacity .4s;
    }

    .svc-card:hover::before {
      opacity: 1;
    }

    /* Icon wrapper */
    .svc-icon-wrap {
      width: 60px;
      height: 60px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 28px;
      flex-shrink: 0;
      position: relative;
    }

    .svc-icon-wrap svg {
      position: relative;
      z-index: 1;
    }

    .svc-icon-wrap.ic-web {
      background: linear-gradient(135deg, rgba(51, 197, 243, 0.15), rgba(51, 197, 243, 0.06));
      box-shadow: 0 2px 12px rgba(51, 197, 243, 0.18);
    }

    .svc-icon-wrap.ic-shop {
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(99, 102, 241, 0.06));
      box-shadow: 0 2px 12px rgba(99, 102, 241, 0.18);
    }

    .svc-icon-wrap.ic-mkt {
      background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.06));
      box-shadow: 0 2px 12px rgba(139, 92, 246, 0.18);
    }

    .svc-icon-wrap.ic-mob {
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(51, 197, 243, 0.08));
      box-shadow: 0 2px 12px rgba(16, 185, 129, 0.16);
    }

    .svc-card-tag {
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 12px;
      display: block;
    }

    .svc-card-title {
      font-family: var(--fh);
      font-weight: 800;
      font-size: 22px;
      letter-spacing: -.02em;
      color: var(--text);
      margin-bottom: 12px;
    }

    .svc-card-desc {
      font-size: 15px;
      line-height: 1.65;
      color: var(--text-2);
      margin-bottom: 28px;
    }

    .svc-card-stack {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 32px;
    }

    .stack-pill {
      font-size: 12px;
      font-weight: 600;
      padding: 5px 13px;
      border-radius: var(--radius-pill);
      background: rgba(0, 0, 0, 0.05);
      color: var(--text-3);
      border: 1px solid rgba(0, 0, 0, 0.08);
    }

    .svc-card-link {
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--teal);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-bottom: 1px solid rgba(51, 197, 243, .3);
      padding-bottom: 2px;
      transition: gap .2s, border-color .2s;
    }

    .svc-card-link:hover {
      gap: 10px;
      border-color: var(--teal);
    }

    /* ── PROCESS ── */
    .process {
      background: var(--bg);
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

    .process-head {
      text-align: center;
      margin-bottom: 80px;
      position: relative;
      z-index: 2;
    }

    .process-head .section-h2 {
      color: var(--text);
    }

    .process-head .section-sub {
      margin: 0 auto;
      max-width: 500px;
      color: var(--text-2);
    }

    .process-steps {
      display: grid;
      grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
      position: relative;
      z-index: 2;
      gap: 0;
      align-items: center;
    }

    @media(max-width:768px) {
      .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
      }

      .process-steps .connector {
        display: none;
      }
    }

    @media(max-width:480px) {
      .process-steps {
        grid-template-columns: 1fr;
      }
    }

    .ps {
      text-align: center;
      padding: 36px 24px;
      background: var(--glass-bg);
      backdrop-filter: blur(28px) saturate(180%);
      -webkit-backdrop-filter: blur(28px) saturate(180%);
      border: 1px solid var(--glass-border);
      box-shadow: var(--glass-shadow);
      border-radius: var(--radius);
      transition: opacity 450ms cubic-bezier(0.22, 1, 0.36, 1), transform 450ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow .25s var(--ease);
      opacity: 0;
      transform: translateY(16px);
      position: relative;
    }

    .ps:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 16px 48px rgba(0, 0, 0, 0.10);
    }

    .ps.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .ps.done-glow {
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 6px 24px rgba(51, 197, 243, 0.15), 0 0 0 1.5px rgba(51, 197, 243, 0.2);
    }

    /* Connector */
    .connector {
      width: 40px;
      height: 2px;
      position: relative;
      flex-shrink: 0;
      overflow: visible;
      align-self: center;
    }

    .conn-track {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.08);
      border-radius: 2px;
    }

    .conn-fill {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 0%;
      border-radius: 2px;
      background: linear-gradient(90deg, #33c5f3, #8b5cf6);
      transition: width 420ms cubic-bezier(0.4, 0, 0.6, 1);
      box-shadow: 0 0 6px rgba(51, 197, 243, 0.5);
    }

    .conn-fill.filled {
      width: 100%;
    }

    .conn-dot {
      position: absolute;
      top: 50%;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #33c5f3;
      transform: translateX(-50%) translateY(-50%);
      box-shadow: 0 0 8px rgba(51, 197, 243, 0.8), 0 0 16px rgba(51, 197, 243, 0.4);
      opacity: 0;
    }

    /* Stamp badge */
    .stamp-badge {
      position: absolute;
      top: -10px;
      right: -10px;
      width: 36px;
      height: 36px;
      opacity: 0;
      transform: translateY(-16px) scale(1.3);
      z-index: 10;
      pointer-events: none;
    }

    .stamp-badge .seal {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, #33c5f3, #8b5cf6);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(51, 197, 243, 0.45);
    }

    .stamp-badge .seal svg {
      width: 16px;
      height: 16px;
    }

    .stamp-ripple {
      position: absolute;
      inset: 0;
      border-radius: var(--radius);
      pointer-events: none;
      opacity: 0;
      box-shadow: inset 0 0 0 2px rgba(51, 197, 243, 0.4);
    }

    /* Keyframes */
    @keyframes stampDrop {
      0% {
        opacity: 0;
        transform: translateY(-16px) scale(1.3);
      }

      55% {
        opacity: 1;
        transform: translateY(2px) scale(0.93);
      }

      75% {
        transform: translateY(-1px) scale(1.04);
      }

      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes rippleFade {
      0% {
        opacity: .8;
      }

      100% {
        opacity: 0;
        box-shadow: inset 0 0 0 0 rgba(51, 197, 243, 0);
      }
    }

    @keyframes dotTravel {
      0% {
        left: 0%;
        opacity: 0;
      }

      8% {
        opacity: 1;
      }

      92% {
        opacity: 1;
      }

      100% {
        left: 100%;
        opacity: 0;
      }
    }

    /* Reduced motion */
    @media(prefers-reduced-motion:reduce) {
      .ps {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }

      .conn-fill {
        width: 100% !important;
        transition: none !important;
      }

      .conn-dot {
        display: none !important;
      }

      .stamp-badge {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
      }

      .stamp-ripple {
        display: none !important;
      }
    }

    .ps-num {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: rgba(51, 197, 243, .08);
      border: 1.5px solid rgba(51, 197, 243, .35);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 28px;
      font-family: var(--fh);
      font-size: 20px;
      font-weight: 900;
      color: var(--teal);
      position: relative;
      z-index: 1;
    }

    .ps-title {
      font-family: var(--fh);
      font-size: 18px;
      font-weight: 800;
      color: var(--text);
    }

    .ps-body {
      font-size: 14px;
      line-height: 1.65;
      color: var(--text-2);
      margin-top: 10px;
    }

    /* ── CASE STUDIES ── */
    .cases {
      background: #ffffff;
      padding: 120px 0;
    }

    .cases-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 52px;
    }

    .cases-btn-ghost {
      background: transparent;
      color: var(--text);
      font-family: var(--fh);
      font-size: 14px;
      font-weight: 700;
      padding: 12px 24px;
      border-radius: var(--radius-pill);
      text-decoration: none;
      border: 1px solid rgba(0, 0, 0, 0.15);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background .2s, transform .2s var(--ease), border-color .2s;
    }

    .cases-btn-ghost:hover {
      background: rgba(0, 0, 0, 0.04);
      transform: translateY(-1px);
    }

    .cases-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    @media(max-width:768px) {
      .cases-grid {
        grid-template-columns: 1fr;
      }
    }

    .case-card {
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--glass-bg);
      backdrop-filter: blur(28px) saturate(180%);
      -webkit-backdrop-filter: blur(28px) saturate(180%);
      border: 1px solid var(--glass-border);
      box-shadow: var(--glass-shadow);
      transition: transform .3s var(--ease), box-shadow .3s;
    }

    .case-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06), 0 24px 64px rgba(0, 0, 0, 0.12);
    }

    .case-visual {
      height: 220px;
      position: relative;
      display: flex;
      align-items: flex-end;
      padding: 24px;
    }

    .case-visual.ai {
      background:
        linear-gradient(160deg, rgba(5,8,26,0.60) 0%, rgba(10,13,40,0.40) 100%),
        url('https://images.unsplash.com/photo-1677442135703-1787eea5ce01?w=800&q=90&auto=format&fit=crop') center/cover no-repeat;
    }

    .case-visual.shop {
      background:
        linear-gradient(160deg, rgba(0,60,30,0.40) 0%, rgba(0,40,20,0.25) 100%),
        url('https://images.unsplash.com/photo-1441986300917-64674bd600d8?w=800&q=90&auto=format&fit=crop') center/cover no-repeat;
    }

    .case-visual.mob {
      background:
        linear-gradient(160deg, rgba(60,0,100,0.40) 0%, rgba(40,0,70,0.25) 100%),
        url('https://images.unsplash.com/photo-1512941937669-90a1b58e7e9c?w=800&q=90&auto=format&fit=crop') center/cover no-repeat;
    }

    .case-visual.wp {
      background:
        linear-gradient(160deg, rgba(0,30,90,0.40) 0%, rgba(0,20,60,0.25) 100%),
        url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=800&q=90&auto=format&fit=crop') center/cover no-repeat;
    }

    .case-chip {
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.9);
      border-radius: var(--radius-pill);
      padding: 5px 14px;
      font-size: 11px;
      font-weight: 700;
      color: var(--text);
    }

    .case-chip.dk {
      background: rgba(255, 255, 255, 0.90);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-color: rgba(255, 255, 255, 0.85);
      color: var(--text);
    }

    .case-body {
      padding: 28px;
    }

    .case-result {
      font-family: var(--fh);
      font-size: 36px;
      font-weight: 900;
      letter-spacing: -.04em;
      margin-bottom: 6px;
      color: var(--text);
    }

    .case-result em {
      font-style: normal;
      color: var(--teal);
    }

    .case-title {
      font-family: var(--fh);
      font-size: 18px;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 8px;
    }

    .case-desc {
      font-size: 14px;
      line-height: 1.6;
      color: var(--text-2);
    }

    .case-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 700;
      color: var(--teal);
      text-decoration: none;
      margin-top: 16px;
      transition: gap .2s;
    }

    .case-cta:hover {
      gap: 10px;
    }

    /* ── TESTIMONIALS (dark contrast) ── */
    .testimonials {
      background: #1d1d1f;
      padding: 120px 0;
      overflow: hidden;
      position: relative;
    }

    .test-head {
      text-align: center;
      margin-bottom: 64px;
      position: relative;
      z-index: 2;
    }

    .test-head .section-h2 {
      color: #fff;
    }

    .test-head .section-eyebrow {
      color: rgba(255, 255, 255, .4);
    }

    .trow {
      overflow: hidden;
      margin-bottom: 16px;
    }

    .trow:last-child {
      margin-bottom: 0;
    }

    .trow-track {
      display: flex;
      gap: 16px;
      width: max-content;
    }

    .trow-track.fwd {
      animation: mq 40s linear infinite;
    }

    .trow-track.rev {
      animation: mqr 44s linear infinite;
    }

    @keyframes mqr {
      from {
        transform: translateX(-50%);
      }

      to {
        transform: translateX(0);
      }
    }

    .tcard {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .09);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-radius: 16px;
      padding: 24px 28px;
      width: 360px;
      flex-shrink: 0;
    }

    .tcard-stars {
      color: #f59e0b;
      font-size: 14px;
      margin-bottom: 12px;
      letter-spacing: 2px;
    }

    .tcard-quote {
      font-size: 14px;
      line-height: 1.65;
      color: rgba(255, 255, 255, 0.65);
      margin-bottom: 16px;
    }

    .tcard-author {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .tcard-avatar {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--fh);
      font-size: 12px;
      font-weight: 800;
      color: #fff;
      flex-shrink: 0;
    }

    .tcard-name {
      font-family: var(--fh);
      font-size: 13px;
      font-weight: 700;
      color: #fff;
    }

    .tcard-role {
      font-size: 11px;
      color: rgba(255, 255, 255, .32);
      margin-top: 1px;
    }

    /* ── WHY GLOBOTECH (infographic) ── */
    .comparison {
      background: var(--bg);
      padding: 120px 0;
    }

    .why-header {
      text-align: center;
      margin-bottom: 72px;
    }

    .why-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }

    @media(max-width:700px) {
      .why-layout {
        grid-template-columns: 1fr;
        gap: 0;
      }
    }

    .why-cards {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .why-card {
      display: flex;
      align-items: center;
      gap: 14px;
      background: rgba(255, 255, 255, .80);
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border: 1px solid rgba(255, 255, 255, .9);
      border-radius: 16px;
      padding: 18px 20px;
      box-shadow: 0 1px 4px rgba(0, 0, 0, .04), 0 4px 20px rgba(0, 0, 0, .05);
      opacity: 0;
      transform: translateX(-24px);
      transition: opacity .65s var(--ease), transform .65s var(--ease), box-shadow .25s;
    }

    .why-card.visible {
      opacity: 1;
      transform: translateX(0);
    }

    .why-card:hover {
      box-shadow: 0 2px 8px rgba(0, 0, 0, .06), 0 8px 32px rgba(0, 0, 0, .09);
      transform: translateX(0) translateY(-1px);
    }

    .why-card-dot {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 15px;
      transition: transform .4s cubic-bezier(.34, 1.56, .64, 1);
    }

    .why-card-dot.lit {
      transform: scale(1.12);
    }

    .why-card-text {
      flex: 1;
      min-width: 0;
    }

    .why-card-name {
      font-family: var(--fh);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: -.01em;
      color: var(--text);
      line-height: 1.2;
      margin-bottom: 3px;
    }

    .why-card-desc {
      font-size: 12px;
      color: var(--text-2);
      line-height: 1.45;
    }

    .why-card-check {
      font-size: 16px;
      font-weight: 800;
      color: var(--teal);
      opacity: 0;
      transform: scale(.3) rotate(-20deg);
      transition: opacity .45s cubic-bezier(.34, 1.56, .64, 1), transform .45s cubic-bezier(.34, 1.56, .64, 1);
      flex-shrink: 0;
    }

    .why-card-check.visible {
      opacity: 1;
      transform: scale(1) rotate(0deg);
    }

    .why-ring-col {
      position: sticky;
      top: 100px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    @media(max-width:700px) {
      .why-ring-col {
        position: static;
        order: -1;
        margin-bottom: 40px;
      }
    }

    .why-ring-wrap {
      position: relative;
      width: min(300px, 100%);
      aspect-ratio: 1;
    }

    .why-ring-svg {
      width: 100%;
      height: 100%;
      transform: rotate(-90deg);
      overflow: visible;
    }

    .why-ring-track {
      fill: none;
      stroke: #E5E7EB;
      stroke-width: 14;
    }

    .why-ring-agency {
      fill: none;
      stroke: #FDA4AF;
      stroke-width: 8;
      stroke-dasharray: 4 103.5;
      opacity: .35;
    }

    .why-seg {
      fill: none;
      stroke-width: 14;
      stroke-linecap: butt;
      opacity: 0;
      transition: opacity .55s var(--ease);
    }

    .why-ring-center {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .why-ring-num {
      font-family: var(--fh);
      font-size: clamp(42px, 8vw, 64px);
      font-weight: 900;
      letter-spacing: -.04em;
      color: var(--text);
      line-height: 1;
      transition: color .4s;
    }

    .why-ring-num.done {
      color: var(--teal);
    }

    .why-ring-denom {
      font-size: clamp(12px, 2vw, 15px);
      font-weight: 600;
      color: var(--text-2);
      letter-spacing: -.01em;
      margin-top: 4px;
    }

    .why-ring-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #9ca3af;
      margin-top: 3px;
    }

    .why-legend {
      display: flex;
      gap: 20px;
      justify-content: center;
    }

    .why-legend-item {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-2);
    }

    .why-swatch {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }

    .why-note {
      font-size: 11px;
      color: #9ca3af;
      text-align: center;
      line-height: 1.5;
      max-width: 220px;
      opacity: 0;
      transition: opacity .6s;
    }

    .why-note.visible {
      opacity: 1;
    }


    /* ── FAQ ── */
    .faq {
      background: #ffffff;
      padding: 120px 0;
      position: relative;
      overflow: hidden;
    }

    .faq-head {
      text-align: center;
      margin-bottom: 52px;
    }

    .faq-head .section-h2 {
      color: var(--text);
    }

    .faq-head .section-eyebrow {
      color: var(--teal);
    }

    .faq-list {
      max-width: 760px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .faq-item {
      border-radius: var(--radius-sm);
      margin-bottom: 8px;
      background: var(--glass-bg);
      backdrop-filter: blur(28px) saturate(180%);
      -webkit-backdrop-filter: blur(28px) saturate(180%);
      border: 1px solid var(--glass-border);
      box-shadow: var(--glass-shadow);
      overflow: hidden;
    }

    .faq-q {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 24px;
      cursor: pointer;
      gap: 16px;
      font-family: var(--fh);
      font-size: 17px;
      font-weight: 700;
      color: var(--text);
      transition: background .15s;
    }

    .faq-q:hover {
      background: rgba(0, 0, 0, .02);
    }

    .faq-icon {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(0, 0, 0, .06);
      border: 1px solid rgba(0, 0, 0, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: transform .3s, background .2s;
    }

    .faq-icon svg path {
      stroke: #1d1d1f;
    }

    .faq-q.open .faq-icon {
      transform: rotate(45deg);
      background: var(--teal);
      border-color: var(--teal);
    }

    .faq-q.open .faq-icon svg path {
      stroke: #fff;
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s var(--ease);
    }

    .faq-a p {
      font-size: 15px;
      line-height: 1.7;
      color: var(--text-2);
      padding: 0 24px 22px;
    }

    /* ── CTA (dark contrast) ── */
    .cta-section {
      background: #1d1d1f;
      padding: 72px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 700px;
      pointer-events: none;
      background: radial-gradient(circle, rgba(51, 197, 243, .06), transparent 70%);
    }

    .cta-inner {
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .cta-h2 {
      font-family: var(--fh);
      font-size: clamp(32px, 3.5vw, 56px);
      font-weight: 900;
      letter-spacing: -.04em;
      color: #fff;
      margin-bottom: 20px;
      line-height: 1.05;
    }

    .cta-sub {
      font-size: 18px;
      color: rgba(255, 255, 255, .45);
      margin-bottom: 44px;
    }

    .cta-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cta-btn-primary {
      background: linear-gradient(135deg, #33c5f3 0%, #0a6ebd 100%);
      color: #fff;
      font-family: var(--fh);
      font-size: 16px;
      font-weight: 800;
      padding: 16px 36px;
      border-radius: var(--radius-pill);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: opacity .2s, transform .2s var(--ease);
    }

    .cta-btn-primary:hover {
      opacity: .9;
      transform: translateY(-2px);
    }

    .cta-btn-ghost {
      background: rgba(255, 255, 255, .08);
      color: #fff;
      font-family: var(--fh);
      font-size: 16px;
      font-weight: 700;
      padding: 16px 36px;
      border-radius: var(--radius-pill);
      text-decoration: none;
      border: 1px solid rgba(255, 255, 255, .2);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background .2s, transform .2s var(--ease);
    }

    .cta-btn-ghost:hover {
      background: rgba(255, 255, 255, .14);
      transform: translateY(-2px);
    }

    .cta-note {
      margin-top: 22px;
      font-size: 13px;
      color: rgba(255, 255, 255, .28);
    }

    /* ── FOOTER (dark premium) ── */
    footer {
      background: #1D1D1F;
      color: #fff;
      padding: 80px 0 32px;
      border-top: 1px solid #4b5563;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(240px, 1.8fr) repeat(3, minmax(140px, 1fr));
      gap: 42px;
      align-items: start;
    }

    @media(max-width:1120px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:768px) {
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    .footer-brand .footer-logo {
      display: inline-flex;
      align-items: center;
      text-decoration: none;
    }

    .footer-brand .footer-logo svg,
    .footer-brand .footer-logo img {
      width: 170px;
      height: auto;
      display: block;
    }

    .footer-tagline {
      margin: 20px 0 14px;
      font-family: var(--fh);
      font-size: 18px;
      font-weight: 700;
      line-height: 1.3;
      color: #fff;
      max-width: 360px;
    }

    .footer-desc {
      max-width: 400px;
      font-size: 15px;
      line-height: 1.8;
      color: rgba(255, 255, 255, .82);
    }

    .footer-column {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .footer-title {
      font-family: var(--fh);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 10px;
    }

    .footer-column a {
      font-size: 15px;
      color: rgba(255, 255, 255, .82);
      text-decoration: none;
      line-height: 1.8;
      transition: color .2s, transform .2s;
    }

    .footer-column a:hover {
      color: #fff;
      transform: translateX(2px);
    }

    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .contact-block {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .contact-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: rgba(255, 255, 255, .82);
      font-size: 15px;
      line-height: 1.8;
    }

    .contact-item svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      color: #33c5f3;
    }

    .contact-item strong {
      display: block;
      font-weight: 700;
      color: #fff;
      margin-bottom: 4px;
      font-size: 15px;
    }

    .footer-bottom {
      margin-top: 54px;
      padding-top: 28px;
      border-top: 1px solid #4b5563;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    .footer-copy {
      font-size: 13px;
      color: rgba(255, 255, 255, .75);
    }

    .footer-bottom-links {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-bottom-links a {
      font-size: 13px;
      color: rgba(255, 255, 255, .72);
      text-decoration: none;
      transition: color .2s;
    }

    .footer-bottom-links a:hover {
      color: #fff;
    }

    /* ── ADDITIONAL MOBILE RESPONSIVENESS AND GRID OPTIMIZATIONS ── */
    @media(max-width: 768px) {

      /* Expanded Services Cards: Grid Header Layout on Mobile */
      .svc-card {
        padding: 24px 20px !important;
        border-radius: 16px !important;
        display: grid !important;
        grid-template-columns: 1fr auto !important;
        grid-template-rows: auto auto auto auto !important;
        column-gap: 16px !important;
        row-gap: 12px !important;
        align-items: center !important;
      }

      .svc-icon-wrap {
        width: 48px !important;
        height: 48px !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        border-radius: 12px !important;
        grid-column: 2 / 3 !important;
        grid-row: 1 / 3 !important;
        align-self: center !important;
      }

      .svc-icon-wrap svg {
        width: 22px !important;
        height: 22px !important;
      }

      .svc-card-tag {
        grid-column: 1 / 2 !important;
        grid-row: 1 / 2 !important;
        margin-bottom: 0 !important;
        align-self: end !important;
      }

      .svc-card-title {
        grid-column: 1 / 2 !important;
        grid-row: 2 / 3 !important;
        margin-bottom: 0 !important;
        font-size: 18px !important;
        align-self: start !important;
      }

      .svc-card-desc {
        grid-column: 1 / 3 !important;
        grid-row: 3 / 4 !important;
        margin-bottom: 0 !important;
        font-size: 13.5px !important;
      }

      .svc-card-stack {
        grid-column: 1 / 3 !important;
        grid-row: 4 / 5 !important;
        margin-bottom: 0 !important;
      }

      .svc-card-link {
        display: none !important;
      }

      .svc-card-stack {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-snap-type: x mandatory !important;
        padding-bottom: 6px !important;
        margin-bottom: 16px !important;
        gap: 6px !important;
      }

      .svc-card-stack::-webkit-scrollbar {
        display: none !important;
      }

      .stack-pill {
        flex-shrink: 0 !important;
        scroll-snap-align: start !important;
        font-size: 11px !important;
        padding: 4px 10px !important;
      }

      /* Dev Process Timeline Grid */
      .process-steps {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 16px !important;
      }

      .ps {
        padding: 20px 16px !important;
        border-radius: 16px !important;
      }

      .ps-num {
        width: 44px !important;
        height: 44px !important;
        margin-bottom: 12px !important;
        font-size: 15px !important;
      }

      .ps-title {
        font-size: 14px !important;
      }

      .ps-body {
        font-size: 11px !important;
        line-height: 1.4 !important;
      }

      .process-steps .connector {
        display: none !important;
      }

      /* Case Studies 2-Column Grid */
      .cases-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
      }

      .case-visual {
        height: 120px !important;
        padding: 12px !important;
        border-radius: 12px 12px 0 0 !important;
      }

      .case-body {
        padding: 16px !important;
      }

      .case-result {
        font-size: 20px !important;
      }

      .case-title {
        font-size: 14px !important;
        margin-bottom: 4px !important;
      }

      .case-desc {
        font-size: 11px !important;
        line-height: 1.4 !important;
      }

      .case-cta {
        margin-top: 10px !important;
        font-size: 11px !important;
      }

      .case-chip {
        font-size: 9px !important;
        padding: 3px 8px !important;
      }



      /* Bento Grid & Card Mobile Optimizations */
      .bento {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
      }

      .bc-ai,
      .bc-shopify,
      .bc-wp,
      .bc-mobile,
      .bc-auto {
        grid-column: span 1 !important;
        padding: 24px 20px !important;
        min-height: auto !important;
      }

      .bc-ai-bg {
        display: none !important;
      }

      .bc-kpis {
        flex-direction: row !important;
        gap: 8px !important;
        margin-top: 16px !important;
      }

      .bc-kpi {
        padding: 10px 8px !important;
        flex: 1 !important;
        min-width: 0 !important;
        width: auto !important;
      }

      .bc-kpi-val {
        font-size: 20px !important;
      }

      .bc-kpi-lbl {
        font-size: 9px !important;
      }

      .bc-kpi-delta {
        font-size: 9px !important;
      }



      .stat-item {
        padding: 16px !important;
      }

      .stat-item:nth-child(2n) {
        border-right: none !important;
      }

      .services-head,
      .cases-head {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 16px !important;
        margin-bottom: 32px !important;
      }

      .section-sub {
        max-width: 100% !important;
      }
    }
  

    /* ── MOBILE FIRST LAYOUT OPTIMIZATION (max-width: 768px) ── */
    @media (max-width: 768px) {
      /* 1. Reduce section paddings to eliminate excessive vertical spacing on mobile */
      section,
      .about-hero,
      .blog-hero,
      .testimonials,
      .faq,
      .comparison,
      .our-services,
      .services,
      .svc-expanded,
      .process,
      .process-section,
      .showcase-section,
      .tech-stack-section,
      .features-grid-section,
      .why-choose,
      .cta-section,
      .portfolio,
      .about-company,
      .mvg-section,
      .trust-logos-section,
      .blog-filter-section,
      .blog-search-section,
      .blog-grid-section,
      .contact-form-section,
      .featured-blog-section,
      .featured-section,
      .blog-newsletter,
      .stats-band {
        padding-top: 48px !important;
        padding-bottom: 48px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
      }

      /* Specific handling for contact page cards to keep top spacing tight under the hero */
      .contact-cards-section {
        padding-top: 0 !important;
        padding-bottom: 48px !important;
      }

      /* 2. Compact padding and clear min-height for Hero sections to accommodate fixed header navigation */
      .about-hero,
      .blog-hero {
        padding-top: 140px !important;
        padding-bottom: 40px !important;
        min-height: auto !important;
      }
      /* Homepage hero: compact on mobile, trust carousel visible in same scroll */
      .hero {
        padding-top: 80px !important;
        padding-bottom: 20px !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        height: 100vh !important;
        height: 100dvh !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
      }

      .hero-inner {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 16px !important;
        width: 100% !important;
      }

      .hero-sub {
        margin-bottom: 20px !important;
      }

      .hero-flow-wrap {
        display: flex !important;
        width: 100% !important;
        height: 240px !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: auto !important;
        margin-right: auto !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: visible !important;
      }

      .hero-flow {
        display: flex !important;
        transform: scale(0.55) !important;
        transform-origin: center !important;
        margin: 0 auto !important;
      }

      /* 2b. Hero Section Mobile Optimization (alignments, side-by-side buttons, and tight vertical spacing) */
      .hero-btns {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 12px !important;
        align-items: center !important;
        justify-content: flex-start !important;
        margin-bottom: 0 !important;
      }

      .hero-btn-primary,
      .hero-btn-secondary {font-size: 13px !important;
        height: 44px !important;
        padding: 0 20px !important;
        border-radius: var(--radius-pill) !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-sizing: border-box !important;
        flex: 1 !important;
        max-width: none !important;
        white-space: nowrap !important;}

      .hero-btn-primary {
        background: linear-gradient(135deg, #33c5f3 0%, #0a6ebd 100%) !important;
        color: #fff !important;
        box-shadow: 0 4px 16px rgba(0,0,0,0.3) !important;
      }

      .hero-btn-secondary {
        color: rgba(255,255,255,0.65) !important;
        background: transparent !important;
        border: 1px solid rgba(255,255,255,0.22) !important;
      }

      /* Mobile: switch directional overlay to top-bottom (text is centred) */
      .hero-ov2 {
        background: linear-gradient(
          180deg,
          rgba(5,8,24,0.58) 0%,
          rgba(5,8,24,0.38) 50%,
          rgba(5,8,24,0.62) 100%
        ) !important;
      }

      /* Mobile: pause Ken-Burns — saves battery, less jarring on small screens */
      .hero-photo {
        animation-play-state: paused !important;
        background-position: center 20% !important;
      }

      /* Mobile: hero text centred */
      .hero-inner > div:first-child {
        text-align: center;
      }
      .hero-sub {
        margin-left: auto !important;
        margin-right: auto !important;
      }
      .hero-btns {
        justify-content: center !important;
      }

      /* 3. Standard mobile side paddings for container columns */
      .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
      }

      /* 4. Optimize title & heading typography for mobile devices */
      h1, .hero-h1 {
        font-size: clamp(30px, 8vw, 38px) !important;
        line-height: 1.15 !important;
        margin-bottom: 12px !important;
        letter-spacing: -0.02em !important;
      }
      h2, .section-h2, .cta-h2, .svc-exp-h2 {
        font-size: clamp(20px, 5.5vw, 26px) !important;
        line-height: 1.15 !important;
        margin-bottom: 12px !important;
        letter-spacing: -0.03em !important;
      }

      br.desktop-br {
        display: none !important;
      }

      .process-head .section-h2 {
        font-size: clamp(18px, 4.8vw, 22px) !important;
        letter-spacing: -0.04em !important;
      }
      .section-eyebrow, .hero-eyebrow, .svc-exp-eyebrow {
        font-size: 10px !important;
        margin-bottom: 8px !important;
        letter-spacing: 0.1em !important;
      }
      .hero-sub, .cta-sub {
        font-size: 15px !important;
        line-height: 1.5 !important;
        margin-bottom: 40px !important;
      }

      /* 5. Force single-column grid layouts and clear extra margins */
      .hero-grid,
      .about-hero-grid,
      .about-company-grid,
      .mvg-grid,
      .why-layout,
      .services-grid,
      .footer-grid,
      .contact-cards-grid,
      .contact-grid,
      .showcase-grid,
      .features-grid,
      .tech-stack-grid,
      .process-grid,
      .faq-grid,
      .testimonials-grid,
      .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
      }

      /* 6. Spacing between section header elements and section grids */
      .why-header,
      .test-head,
      .trust-logos-head,
      .faq-head,
      .portfolio-head {
        margin-bottom: 28px !important;
      }

      /* 7. Ensure absolute responsive safety and horizontal containment */
      html, body {
        overflow-x: hidden !important;
        width: 100% !important;
      }

      /* Hide Quick Links footer column on mobile to reduce clutter */
      .footer-quick-links {
        display: none !important;
      }

      /* ── ELEGANT MOBILE FOOTER ── */
      footer {
        padding: 40px 0 24px !important;
      }
      /* Brand, Services, and Contact stacked vertically on mobile */
      .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
      }
      /* Brand spans full-width container */
      .footer-brand {
        grid-column: 1 / -1 !important;
        padding-bottom: 20px !important;
        margin-bottom: 0 !important;
        border-bottom: 1px solid rgba(255,255,255,0.08) !important;
      }
      .footer-brand .footer-logo img,
      .footer-brand .footer-logo svg {
        width: 130px !important;
        height: auto !important;
      }
      .footer-tagline {
        font-size: 15px !important;
        margin: 14px 0 8px !important;
        max-width: 100% !important;
      }
      .footer-desc {
        font-size: 13px !important;
        line-height: 1.6 !important;
        max-width: 100% !important;
      }
      /* Hide Services column on mobile */
      .footer-services-col {
        display: none !important;
      }
      /* Services and USA Contact sections */
      .footer-grid > .footer-column:not(.footer-quick-links) {
        padding-right: 0 !important;
      }
      .footer-title {
        font-size: 11px !important;
        letter-spacing: 0.12em !important;
        margin-bottom: 16px !important;
      }
      .footer-column a {
        font-size: 14px !important;
        line-height: 1.8 !important;
      }
      /* Contact block */
      .contact-block {
        gap: 12px !important;
      }
      .contact-item {
        font-size: 13px !important;
        line-height: 1.6 !important;
        gap: 10px !important;
      }
      .contact-item svg {
        width: 14px !important;
        height: 14px !important;
        flex-shrink: 0 !important;
        margin-top: 2px !important;
      }
      .contact-item strong {
        font-size: 13px !important;
        margin-bottom: 4px !important;
      }
      /* Footer bottom */
      .footer-bottom {
        margin-top: 28px !important;
        padding-top: 20px !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 12px !important;
      }
      .footer-copy {
        font-size: 12px !important;
        text-align: center !important;
        width: 100% !important;
      }
      .footer-bottom-links {
        gap: 14px !important;
        justify-content: center !important;
        width: 100% !important;
      }
      .footer-bottom-links a {
        font-size: 12px !important;
      }
    }

    /* ── CTA BUTTONS: side-by-side & compact on mobile ── */
    @media (max-width: 768px) {
      .cta-btns {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 420px !important;
        margin-left: auto !important;
        margin-right: auto !important;
      }
      .cta-btn-primary,
      .cta-btn-ghost {
        font-size: 13px !important;
        padding: 12px 24px !important;
        flex: 1 1 auto !important;
        min-width: 140px !important;
        max-width: 200px !important;
        box-sizing: border-box !important;
        justify-content: center !important;
        white-space: nowrap !important;
        text-align: center !important;
        border-radius: 30px !important;
        height: auto !important;
        display: inline-flex !important;
        align-items: center !important;
      }
    }
    @media (max-width: 480px) {
      .cta-btns {
        flex-direction: column !important;
        align-items: stretch !important;
      }
      .cta-btn-primary,
      .cta-btn-ghost {
        max-width: none !important;
        width: 100% !important;
      }
    }

body {
  background: var(--bg) !important;
  color: var(--text) !important;
}

/* ═══════════════════════════════════════════════════════
   GLOBAL WP SPECIFICITY FIXES
   WordPress injects: h1-h6 { color:#1d1d1f }, h2 { font-size:clamp(28px,4vw,44px) }
   body { color:#1d1d1f }, a { color:#33c5f3 }
   These break dark-background sections. Fix all of them below.
   ═══════════════════════════════════════════════════════ */

/* ── Section headings: restore correct sizes everywhere ── */
.section-h2 {
  font-size: clamp(36px, 3.5vw, 56px) !important;
  font-weight: 900 !important;
  letter-spacing: -.03em !important;
  line-height: 1.08 !important;
  color: var(--text) !important;
  margin-bottom: 14px !important;
}
.cta-h2 {
  font-size: clamp(32px, 3.5vw, 56px) !important;
  font-weight: 900 !important;
  letter-spacing: -.04em !important;
  line-height: 1.05 !important;
  color: #fff !important;
}
.svc-exp-h2 {
  font-size: clamp(32px, 3.5vw, 52px) !important;
  font-weight: 900 !important;
  line-height: 1.08 !important;
  color: var(--text) !important;
}

/* ── STATS BAND (dark) ── */
.stats-band {
  background: #1d1d1f !important;
}
.stats-band .stat-num {
  color: #ffffff !important;
  font-size: clamp(42px, 4vw, 68px) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: -.04em !important;
}
.stats-band .stat-num em {
  color: var(--teal) !important;
  font-style: normal !important;
}
.stats-band .stat-lbl {
  color: rgba(255,255,255,.35) !important;
}

/* ── TESTIMONIALS (dark) ── */
.testimonials {
  background: #1d1d1f !important;
}
.test-head .section-h2 {
  color: #fff !important;
}
.test-head .section-eyebrow {
  color: rgba(255,255,255,.4) !important;
}
.tcard-name {
  color: #fff !important;
}
.tcard-role {
  color: rgba(255,255,255,.32) !important;
}
.tcard-body {
  color: rgba(255,255,255,.7) !important;
}

/* ── CTA SECTION (dark) ── */
.cta-section {
  background: #1d1d1f !important;
}
.cta-h2 {
  color: #fff !important;
}
.cta-sub {
  color: rgba(255,255,255,.45) !important;
}

/* ── FOOTER (dark) ── */
footer {
  background: #1D1D1F !important;
  color: #fff !important;
}
.footer-tagline {
  color: #fff !important;
}
.footer-desc {
  color: rgba(255,255,255,.82) !important;
}
.footer-title {
  color: #fff !important;
}
.footer-column a {
  color: rgba(255,255,255,.82) !important;
}
.footer-column a:hover {
  color: #fff !important;
}
.contact-item {
  color: rgba(255,255,255,.82) !important;
}
.footer-bottom {
  color: rgba(255,255,255,.3) !important;
}
.footer-bottom a {
  color: rgba(255,255,255,.5) !important;
}

/* ── PROCESS section (light) ── */
.process-head .section-h2 {
  color: var(--text) !important;
}
.process-head .section-sub {
  color: var(--text-2) !important;
}
.ps-num {
  color: var(--teal) !important;
}
.ps-title {
  color: var(--text) !important;
}
.ps-body {
  color: var(--text-2) !important;
}
/* Process steps grid: WP is-layout-constrained breaks 7-col step/connector layout */
.process-steps {
  display: grid !important;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr !important;
  align-items: center !important;
  gap: 0 !important;
  max-width: none !important;
  width: 100% !important;
}
.process-steps > * {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  min-width: 0 !important;
}
/* Connector must stay exactly 40px wide as a thin horizontal line */
.process-steps .connector {
  width: 40px !important;
  max-width: 40px !important;
  min-width: 40px !important;
  height: 2px !important;
  align-self: center !important;
  overflow: visible !important;
  display: block !important;
  position: relative !important;
  margin: 0 !important;
}
/* Step cards */
.process-steps .ps {
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
}
@media(max-width:768px) {
  .process-steps {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }
  .process-steps .connector {
    display: none !important;
  }
}
@media(max-width:480px) {
  .process-steps {
    grid-template-columns: 1fr !important;
  }
}

/* ── CASE STUDIES (white bg) ── */
.cases {
  background: #ffffff !important;
}
.cases-head {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 40px !important;
  margin-bottom: 52px !important;
}
.cases-head .section-h2 {
  color: var(--text) !important;
  font-size: clamp(36px, 3.5vw, 56px) !important;
}
.cases-head > * {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.cases-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
  max-width: none !important;
}
.cases-grid > * {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media(max-width:768px) {
  .cases-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ── WHY GLOBOTECH ── */
.comparison {
  background: var(--bg) !important;
}
.why-header .section-h2 {
  color: var(--text) !important;
}
.why-ring-num {
  color: var(--text) !important;
}
.why-ring-denom {
  color: var(--text-2) !important;
}
.why-ring-label {
  color: var(--text-2) !important;
}
/* Why layout: fix 2-col grid */
.why-layout {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 56px !important;
  align-items: start !important;
  max-width: none !important;
}
.why-layout > * {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media(max-width:700px) {
  .why-layout {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
}

/* ── "What We Build" head + bento grid ── */
.services-head {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 40px !important;
  margin-bottom: 52px !important;
}
.services-head > * {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.services-head .section-h2 {
  font-size: clamp(36px, 3.5vw, 56px) !important;
  font-weight: 900 !important;
  letter-spacing: -.03em !important;
  line-height: 1.08 !important;
  color: var(--text) !important;
  margin-bottom: 14px !important;
}
.services-head .section-eyebrow {
  color: var(--teal) !important;
}
.services-head .section-sub {
  max-width: 500px !important;
  align-self: flex-end !important;
  color: var(--text-2) !important;
  font-size: 17px !important;
  line-height: 1.65 !important;
}
.bento {
  display: grid !important;
  grid-template-columns: repeat(12, 1fr) !important;
  gap: 14px !important;
  max-width: none !important;
  width: 100% !important;
}
.bento > * {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.bc-ai      { grid-column: span 8 !important; }
.bc-shopify { grid-column: span 4 !important; }
.bc-wp      { grid-column: span 5 !important; }
.bc-mobile  { grid-column: span 4 !important; }
.bc-auto    { grid-column: span 3 !important; }
@media(max-width:900px) {
  .bento { grid-template-columns: 1fr 1fr !important; }
  .bc-ai,.bc-shopify,.bc-wp,.bc-mobile,.bc-auto { grid-column: span 1 !important; }
}
@media(max-width:560px) {
  .bento { grid-template-columns: 1fr !important; }
  .bc-ai,.bc-shopify,.bc-wp,.bc-mobile,.bc-auto { grid-column: span 1 !important; }
}

/* ── bc-auto dark card: force dark background and white text ── */
.bc-auto {
  background: linear-gradient(135deg, #1e1e1e, #141414) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.bc-auto .bc-title,
.bc-auto .bc-arrow { color: #ffffff !important; }
.bc-auto .bc-body  { color: rgba(255,255,255,0.65) !important; }
.bc-auto .bc-tag.white { background: rgba(255,255,255,0.14) !important; color: rgba(255,255,255,0.8) !important; }



/* Hide last 2 case study blocks on mobile to reduce scrolling */
@media (max-width: 767px) {
  #cases .cases-grid .case-card:nth-child(n+3) {
    display: none !important;
  }
}


/* Hide comparison dial animation on mobile */
@media (max-width: 768px) {
  .why-ring-col {
    display: none !important;
  }
}


/* ── Uniform Mobile Section Headings & Centered Alignment ── */
@media (max-width: 991px) {
  /* Default mobile section headings size to 28px */
  .section-h2,
  .svc-exp-h2,
  .services-head .section-h2,
  .why-header .section-h2 {
    font-size: 28px !important;
    text-align: center !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em !important;
    font-weight: 900 !important;
    margin-bottom: 12px !important;
  }

  /* Results section heading size to 28px */
  .cases-head .section-h2 {
    font-size: 28px !important;
    text-align: center !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em !important;
    font-weight: 900 !important;
    margin-bottom: 12px !important;
  }

  /* Center the container structures on mobile */
  .services-head,
  .cases-head {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 16px !important;
    margin-bottom: 36px !important;
    width: 100% !important;
  }

  /* Ensure flex children center properly */
  .services-head > div,
  .cases-head > div {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .services-head .section-sub {
    align-self: center !important;
    text-align: center !important;
    margin-top: 8px !important;
  }

  .cases-btn-ghost {
    align-self: center !important;
    margin-top: 8px !important;
    display: inline-flex !important;
  }
  
  .section-eyebrow,
  .svc-exp-eyebrow {
    text-align: center !important;
    display: block !important;
    width: 100% !important;
  }
}