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

    /* Global Responsive Images */
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

/* Rendering Optimization: Skip off-screen image calculations */
img[loading="lazy"] {
  content-visibility: auto;
}

    :root {
      --p: #1E3A8A; /* 60% Navy Blue */
      --p2: #0F172A; /* Darker Navy */
      --ac: #DC2626; /* 30% Red Highlight */
      --g: #FACC15; /* 10% Yellow Accent */
      --warn: #F59E0B; 
      --red: #EF4444;
      --bg: #F8FAFC;
      --bg2: #F1F5F9;
      --white: #FFFFFF;
      --surf: rgba(255, 255, 255, 0.78);
      --border: rgba(30, 58, 138, 0.13);
      --text: #1E3A8A; /* Headings and Text in Navy Blue */
      --muted: #334155; /* Accessibility Strict Fix: Darkened for WCAG AA Contrast Compliance */
      --radius: 22px;
      --rs: 13px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      line-height: 1.6;
      letter-spacing: -0.01em;
      cursor: none;
      overflow-wrap: break-word;
      word-wrap: break-word;
    }

    /* ACCESSIBILITY: Screen Reader Only Utility */
    .sr-only {
      position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
      overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0;
    }

    /* ACCESSIBILITY: Keyboard Focus States */
    :focus-visible {
      outline: 2px dashed var(--p2);
      outline-offset: 4px;
      border-radius: 4px;
    }

    @media (min-width: 769px) {
      /* Hide default hand cursor on all interactive elements */
      a, button, select, input[type="submit"], input[type="button"], [onclick], [style*="cursor"], 
      .has-drop, .dmet, .rcard, .wc, .sc, .dr-item, .dl-item, .fqbtn, 
      .hz-card, .bento-card, .fcard, .dtab, .v-tab, .t-tab, .mi, .pnum, .ham, .rmbtn {
        cursor: none !important;
      }
    }

  /* ðŸ’¥ CINEMATIC MODAL OVERLAY */
  #card-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 15, 25, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    padding: 20px;
  }
  #card-modal {
    background: #ffffff;
    width: 100%;
    max-width: 600px;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
    border: 1px solid var(--border);
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
  }
  #card-modal-close {
    position: absolute; top: 20px; right: 20px; background: rgba(79,70,229,0.08); border: none; width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--p); cursor: pointer; transition: 0.3s;
  }
  #card-modal-close:hover { background: var(--p); color: #fff; transform: rotate(90deg); }
  #card-modal-close svg { width: 16px; height: 16px; }

  #card-modal-body {
    overflow-y: auto;
    padding-right: 5px;
    -webkit-overflow-scrolling: touch;
  }

    /* CURSOR */
    #cur {
      position: fixed;
      top: -6px;
      left: -6px;
      width: 12px;
      height: 12px;
      background: var(--p);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99999999;
      transition: background 0.4s ease, box-shadow 0.4s ease;
  contain: layout style;
    }

    #cur.hovering {
      background: rgba(6, 182, 212, 0.95);
      box-shadow: 0 0 15px rgba(6, 182, 212, 0.6);
    }

    #cur-r {
      position: fixed;
      top: -19px;
      left: -19px;
      width: 38px;
      height: 38px;
      border: 1.5px solid var(--p);
      border-radius: 50%;
      pointer-events: none;
      z-index: 99999998;
      transition: opacity 0.4s ease, border-color 0.4s ease, background 0.4s ease;
      opacity: .45;
  contain: layout style;
    }

    /* VERTICAL ALTERNATING TIMELINE (The Blueprint) */
    .v-timeline {
      position: relative;
      max-width: 1000px;
      margin: 60px auto 20px;
      padding: 0 20px;
    }
    .v-line-container {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 40px;
      z-index: 0;
    }
    .v-line-container svg { width: 100%; height: 100%; opacity: 0.5; }
    
    .v-item {
      position: relative;
      width: 50%;
      padding: 20px 40px;
      box-sizing: border-box;
      z-index: 1;
    }
    .v-item.left { left: 0; text-align: right; }
    .v-item.right { left: 50%; text-align: left; }
    
    .v-node {
      position: absolute;
      width: 50px;
      height: 50px;
      background: var(--p);
      border: 6px solid #fff;
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: 1.1rem;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      z-index: 2;
    }
    .v-item.left .v-node { right: -25px; }
    .v-item.right .v-node { left: -25px; }
    
    .v-item:hover .v-node {
      background: var(--ac);
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 4px 20px rgba(224, 49, 49, 0.4);
    }
    .v-item:hover .v-node::after {
      content: '';
      position: absolute;
      inset: -22px;
      background: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20100%20100%22%3E%3Cpath%20id%3D%22p%22%20fill%3D%22none%22%20d%3D%22M50%2C15%20A35%2C35%200%201%2C1%2049.9%2C15%22%2F%3E%3Ctext%20fill%3D%22%2306B6D4%22%20font-size%3D%2212.5%22%20font-weight%3D%22800%22%20font-family%3D%22sans-serif%22%20letter-spacing%3D%223%22%3E%3CtextPath%20href%3D%22%23p%22%20textLength%3D%22219.9%22%3EVIEW%20%E2%80%A2%20DISCOVER%20%E2%80%A2%20EXPLORE%20%E2%80%A2%20%3C%2FtextPath%3E%3C%2Ftext%3E%3C%2Fsvg%3E") center/contain no-repeat;
      animation: spin 8s linear infinite;
      pointer-events: none;
    }
    
    .v-content {
      background: rgba(255, 255, 255, 0.8);
      padding: 24px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.03);
      border: 1px solid var(--border);
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
    }
    .v-item:hover .v-content {
      box-shadow: 0 15px 40px rgba(0,0,0,0.08);
      border-color: var(--ac);
      transform: translateY(-5px);
    }
    .v-item h4 {
      color: var(--p);
      font-size: 1.25rem;
      margin-bottom: 10px;
    }
    .v-item p {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 0;
    }
    
    @media screen and (max-width: 768px) {
      .v-line-container { left: 45px; transform: none; width: 4px; background: var(--ac); }
      .v-line-container svg { display: none; }
      .v-item { width: 100%; padding: 20px 20px 20px 80px; text-align: left !important; }
      .v-item.right { left: 0; }
      .v-item.left .v-node, .v-item.right .v-node { left: 22px; right: auto; }
    }

    #cur-r::after {
      content: ''; 
      position: absolute; 
      inset: -14px;
      background: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20viewBox%3D%220%200%20100%20100%22%3E%3Cpath%20id%3D%22p%22%20fill%3D%22none%22%20d%3D%22M50%2C15%20A35%2C35%200%201%2C1%2049.9%2C15%22%2F%3E%3Ctext%20fill%3D%22%2306B6D4%22%20font-size%3D%2212.5%22%20font-weight%3D%22800%22%20font-family%3D%22sans-serif%22%20letter-spacing%3D%223%22%3E%3CtextPath%20href%3D%22%23p%22%20textLength%3D%22219.9%22%3EVIEW%20%E2%80%A2%20DISCOVER%20%E2%80%A2%20EXPLORE%20%E2%80%A2%20%3C%2FtextPath%3E%3C%2Ftext%3E%3C%2Fsvg%3E") center/contain no-repeat;
      opacity: 0; transition: opacity 0.4s ease; animation: spin 8s linear infinite; pointer-events: none;
    }

    #cur-r.hovering {
      border-color: transparent;
      background: transparent;
      opacity: 1;
    }

    #cur-r.hovering::after {
      opacity: 1;
    }

    @keyframes spin {
      100% { transform: rotate(360deg); }
    }

    @media(max-width:1024px) {

      #cur,
      #cur-r {
        display: none;
      }

      body {
        cursor: auto;
      }
    }

    /* ORBS */
    .orb {
      display: none !important;
    }

    /* SCROLL PROGRESS */
    #spbar {
      position: fixed;
      top: 0;
      left: 0;
      height: 2.5px;
      background: linear-gradient(90deg, var(--p), var(--ac), var(--g));
      z-index: 99999;
      transform: scaleX(0);
      will-change: transform;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HEADER / NAV
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    header {
      position: fixed;
      top: 10px;
      left: 50%;
      transform: translateX(-50%);
      width: calc(100% - 40px);
      max-width: 1200px;
      z-index: 1000;
      transition: max-width 0.6s cubic-bezier(0.16, 1, 0.3, 1), top 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: max-width, top;
    }

    /* Removed header.scrolled to keep navbar full size */

    .npill {
      background: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 100px;
      padding: 8px 10px 8px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: background 0.7s cubic-bezier(0.16, 1, 0.3, 1), padding 0.7s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Removed header.scrolled .npill */

    .nlogo {
      display: flex;
      align-items: center;
      justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      z-index: 10;
      flex-shrink: 0;
    }
    .nlogo:hover {
      transform: translateY(-2px);
    }

    .nlogo img {
      transition: height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Removed header.scrolled .nlogo img */

    .nlinks {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    /* â”€â”€ DROPDOWN MENU â”€â”€ */
    .has-drop {
      position: relative;
      display: flex;
      align-items: center;
      gap: 6px;
      color: var(--text);
      letter-spacing: -0.01em;
      font-size: .85rem;
      font-weight: 500;
      padding: 10px 18px;
      border-radius: 100px;
      cursor: pointer;
      transition: background 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Removed header.scrolled .has-drop */

    .has-drop:hover {
      background: rgba(30, 58, 138, 0.06);
      color: var(--p);
    }

    .has-drop svg.arr {
      width: 14px;
      height: 14px;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      opacity: 0.7;
    }

    /* Removed header.scrolled .has-drop svg.arr */

.has-drop.active svg.arr {
      transform: rotate(180deg);
      opacity: 1;
    }

    .drop-wrap {
      position: absolute;
      top: calc(100% + 16px);
      left: 50%;
      width: 260px;
      background: #ffffff;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 20px;
      padding: 12px;
      box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.4);
      opacity: 0;
      visibility: hidden;
      transform-origin: top center;
      transform: translateX(-50%) translateY(10px) scale(0.95);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 200;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    /* MEGA MENU EXTENSIONS */
    .mega-menu.drop-wrap {
      width: 940px;
      padding: 32px;
      left: 50%;
      transform: translateX(-50%) translateY(10px) scale(0.95);
    }
    .mega-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
  gap: 24px;
    }
    .mega-col h4 {
  font-size: 1.05rem;
      color: var(--p);
      margin-bottom: 12px;
      padding-bottom: 8px;
      border-bottom: 1px solid var(--border);
    }
    
    .mega-bottom {
      margin-top: 24px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
      text-align: center;
    }
    .mega-bottom a {
      font-weight: 600 !important;
      color: var(--p) !important;
      font-size: 0.95rem;
      background: rgba(0,0,0,0.03);
      padding: 8px 24px !important;
      border-radius: 100px;
      display: inline-block;
      transition: background 0.2s, transform 0.2s;
    }
    .mega-bottom a:hover {
      background: rgba(0,0,0,0.06);
      transform: translateY(-2px);
    }

    /* INVISIBLE HOVER BRIDGE */
    /* INVISIBLE HOVER BRIDGE on parent to prevent wide glitch */
    .has-drop::after {
      content: '';
      position: absolute;
      top: 100%; 
      left: 0;
      width: 100%;
      height: 24px;
      background: transparent;
    }

.has-drop.active .drop-wrap {
      opacity: 1;
      visibility: visible;
    }

.has-drop.active .drop-wrap:not(.mega-menu) {
  transform: translateX(-50%) translateY(0) scale(1);
}

.has-drop.active .mega-menu.drop-wrap {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
}

    .drop-wrap a {
      padding: 10px 16px;
      font-size: .85rem;
      font-weight: 500;
      color: var(--muted);
      text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
      display: flex;
      align-items: center;
  gap: 10px;
      border-radius: 12px;
    }

.drop-wrap a svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--muted); transition: color 0.2s ease, transform 0.2s ease; }

    .drop-wrap a:hover {
      background: rgba(30, 58, 138, .05);
      color: var(--p);
      transform: translateX(4px);
    }

.drop-wrap a:hover svg { color: var(--ac); transform: scale(1.1); }
    .drop-wrap .view-all {
      margin-top: 6px;
      border-top: 1px solid rgba(0,0,0,0.04);
      border-radius: 0 0 12px 12px;
      padding-top: 12px;
      color: var(--p);
      font-weight: 600;
      justify-content: space-between;
    }

    .drop-wrap .view-all:hover {
      background: transparent;
      color: var(--p2);
      transform: none;
      padding-left: 16px;
    }

    .ncta {
      background: var(--text) !important;
      color: #fff !important;
      font-weight: 600 !important;
      box-shadow: none !important;
      padding: 12px 24px !important;
      border-radius: 100px !important;
      margin-left: 12px;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
      text-decoration: none !important;
    }

    /* Removed header.scrolled .ncta */

    .ncta:hover {
      background: var(--p) !important;
      box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3) !important;
    }

    /* Hamburger */
    .ham {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 6px;
      background: transparent;
      border: none;
      flex-shrink: 0;
    }

    .ham span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--p);
      border-radius: 2px;
      transition: .3s;
    }

    .ham.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .ham.open span:nth-child(2) {
      opacity: 0;
    }
    .ham.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mob-menu {
      display: none;
      position: fixed;
      top: 88px;
      left: 18px;
      right: 18px;
      background: #ffffff;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.3);
      padding: 18px;
      flex-direction: column;
      gap: 6px;
      z-index: 999;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
      max-height: calc(100vh - 110px);
      overflow-y: auto;
    }

    .mob-menu.open {
      display: flex;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      color: var(--text);
      font-weight: 700;
      text-transform: capitalize;
    }

    .mob-menu a {
      color: var(--text);
      font-weight: 500;
      padding: 11px 14px;
      border-radius: 12px;
      text-decoration: none;
      transition: .2s;
      font-size: .9rem;
    }

    .mob-menu a:hover {
      background: rgba(30, 58, 138, .06);
      color: var(--p);
    }

    .mob-cta {
      background: linear-gradient(135deg, var(--p), var(--p2)) !important;
      color: #fff !important;
      text-align: center;
      margin-top: 6px;
      text-decoration: none !important;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   HERO
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 120px 24px 70px;
      position: relative;
      z-index: 1;
    }

    .hero-in {
      max-width: 1240px;
      margin: 0 auto;
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1.15fr;
      gap: 52px;
      align-items: center;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: 100%;
      background: rgba(30, 58, 138, .08);
      border: 1px solid rgba(30, 58, 138, .18);
      border-radius: 100px;
      padding: 7px 16px;
      font-size: .75rem;
      font-weight: 600;
      color: var(--p);
      letter-spacing: .08em;
      margin-bottom: 20px;
    }

    @keyframes levitate {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    .bdot {
      width: 7px;
      height: 7px;
      background: var(--g);
      border-radius: 50%;
    }

    @keyframes pdot {

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

      50% {
        transform: scale(1.5);
        opacity: .5;
      }
    }

    .hero h1 {
      font-size: clamp(2.2rem, 4.5vw, 3.6rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -.04em;
      margin-bottom: 16px;
      color: var(--p);
      text-transform: capitalize;
    }

    .hero h1 em {
      font-style: normal;
    }

    .hero p {
      color: var(--p);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 30px;
      max-width: 440px;
      font-weight: 400;
    }

    .hbtns {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 36px;
    }

    .btn-p {
      background: linear-gradient(135deg, var(--p), var(--p2));
      color: #fff;
      padding: 13px 26px;
      border-radius: 100px;
      font-weight: 600;
      font-size: .88rem;
      border: none;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(30, 58, 138, .25);
      transition: background 0.5s ease, box-shadow 0.5s ease, color 0.5s ease;
      text-decoration: none;
      display: inline-block;
    }

    .btn-p:hover {
      box-shadow: 0 16px 32px rgba(30, 58, 138, .4);
    }

    .btn-o {
      background: transparent;
      color: var(--p);
      padding: 13px 26px;
      border-radius: 100px;
      font-weight: 600;
      font-size: .88rem;
      border: 1.5px solid rgba(30, 58, 138, .28);
      cursor: pointer;
      transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
      text-decoration: none;
    }

    .btn-o:hover {
      background: rgba(30, 58, 138, .06);
      border-color: var(--p);
    }

    .hstats {
      display: flex;
      gap: 24px;
      align-items: center;
      justify-content: flex-start;
    }

    .hsd {
      width: 1px;
      height: 36px;
      background: var(--border);
    }

    .hs {
      display: flex;
      flex-direction: column;
    }

    .hs-n {
      font-size: 1.7rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--p), var(--ac), var(--p));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hs-l {
      font-size: .7rem;
      color: var(--muted);
      font-weight: 500;
      margin-top: 2px;
    }

    /* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   DASHBOARD â€” DealDeck Style
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
    .dash {
      background: #ffffff;
      border: 1.5px solid var(--border);
      border-radius: 26px;
      overflow: hidden;
      box-shadow: 0 24px 70px rgba(30, 58, 138, .13), 0 0 40px rgba(6, 182, 212, 0.05), inset 0 0 0 1px rgba(255, 255, 255, .9);
      position: relative;
    }

    @keyframes dashFloat {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    .dash::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2.5px;
      background: linear-gradient(90deg, var(--p), var(--ac), var(--g));
    }

    /* Dash top bar */
    .dtop {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 14px 0;
      border-bottom: 1px solid rgba(30, 58, 138, .07);
      padding-bottom: 8px;
    }

    .dtabs {
      display: flex;
      gap: 4px;
    }

    .dtab {
      padding: 6px 14px;
      border-radius: 100px;
      font-size: .7rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      background: transparent;
      color: var(--muted);
      transition: .25s;
      font-family: 'Poppins', sans-serif;
    }

    .dtab.active {
      background: linear-gradient(135deg, var(--p), var(--p2));
      color: #fff;
      box-shadow: 0 4px 12px rgba(30, 58, 138, .28);
    }

    .dtab:hover:not(.active) {
      background: rgba(30, 58, 138, .07);
      color: var(--p);
    }

    .dlive {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .68rem;
      font-weight: 600;
      color: var(--g);
      background: rgba(16, 185, 129, .08);
      padding: 5px 10px;
      border-radius: 20px;
    }

    .ldot {
      width: 6px;
      height: 6px;
      background: var(--g);
      border-radius: 50%;
    }

    /* Dash body */
    .dbody {
      padding: 10px 14px;
    }

    /* Metric row */
    .dmets {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 10px;
    }

    .dmet {
      background: rgba(248, 250, 252, .85);
      border: 1px solid rgba(30, 58, 138, .1);
      border-radius: 10px;
      padding: 10px;
      cursor: pointer;
      transition: .4s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .dmet::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(30, 58, 138, .04), transparent);
      opacity: 0;
      transition: .3s;
      pointer-events: none;
    }

    .dmet:hover {
      border-color: rgba(30, 58, 138, .22);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(30, 58, 138, .08);
    }

    .dmet:hover::after {
      opacity: 1;
    }

    .dmet-lbl {
      font-size: .6rem;
      color: var(--muted);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .05em;
      margin-bottom: 5px;
    }

    .dmet-val {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--text);
      margin-bottom: 4px;
      letter-spacing: -0.02em;
    }

    .dmet-chg {
      font-size: .62rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 3px;
    }

    .up {
      color: var(--g);
    }

    .dn {
      color: var(--red);
    }

    .warn {
      color: var(--warn);
    }

    .dmet-bar {
      height: 3px;
      background: rgba(30, 58, 138, .1);
      border-radius: 10px;
      margin-top: 8px;
      overflow: hidden;
    }

    .dmet-bar-fill {
      height: 100%;
      border-radius: 10px;
      transition: width 1.5s ease;
    }

    /* Charts row */
    .dcharts {
      display: grid;
      grid-template-columns: 1.6fr 1fr;
      gap: 8px;
      margin-bottom: 10px;
    }

    .dc-left,
    .dc-right {
      background: rgba(248, 250, 252, .85);
      border: 1px solid rgba(30, 58, 138, .1);
      border-radius: 10px;
      padding: 10px;
      transition: .4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .dc-left:hover, .dc-right:hover {
      border-color: rgba(30, 58, 138, .22);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(30, 58, 138, .08);
    }

    .dc-title {
      font-size: .7rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
    }

    .dc-sub {
      font-size: .62rem;
      color: var(--muted);
      margin-bottom: 10px;
    }

.chart-wrap {
  position: relative;
  flex: 1;
  width: 100%;
  min-height: 85px; 
  margin-top: 4px;
}

    canvas.dc {
      width: 100% !important;
      height: 85px !important;
    }

    /* Donut */
    .donut-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: nowrap;
      justify-content: space-between;
      padding-top: 4px;
    }

    .donut-c {
      position: relative;
      flex-shrink: 0;
    }

    canvas.donut {
      width: 76px !important;
      height: 76px !important;
    }

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

    .donut-val {
      font-size: .95rem;
      font-weight: 800;
      color: var(--p);
    }

    .donut-sub {
      display: none;
    }

    .donut-legend {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .dl-item {
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      padding: 4px 8px;
      border-radius: 6px;
      transition: .2s;
      background: rgba(30, 58, 138, 0.04);
      border: 1px solid rgba(30, 58, 138, 0.05);
    }

    .dl-item:hover {
      background: rgba(30, 58, 138, .06);
    }

    .dl-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .dl-name {
      font-size: .65rem;
      font-weight: 600;
      color: var(--text);
    }

    .dl-val {
      font-size: .6rem;
      color: var(--muted);
      margin-left: auto;
    }

    .dl-chg {
      font-size: .58rem;
      font-weight: 700;
      padding: 1px 5px;
      border-radius: 6px;
    }

    /* Keyword ranks */
    .dranks {
      background: rgba(248, 250, 252, .85);
      border: 1px solid rgba(30, 58, 138, .1);
      border-radius: 10px;
      padding: 10px;
    }

    .dr-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }

    .dr-item {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 4px 6px;
      border-radius: 10px;
      cursor: pointer;
      transition: .25s;
      border: 1px solid transparent;
      height: 38px;
      box-sizing: border-box;
      white-space: nowrap;
      overflow: hidden;
    }

    .dr-item:hover {
      background: rgba(30, 58, 138, .05);
      border-color: rgba(30, 58, 138, .12);
    }

    .dr-pos {
      font-size: .75rem;
      font-weight: 800;
      min-width: 20px;
      background: linear-gradient(135deg, var(--p), var(--ac));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .dr-kw {
      font-size: .65rem;
      font-weight: 500;
      color: var(--text);
      flex: 1;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .dr-chg {
      font-size: .6rem;
      font-weight: 700;
    }

    /* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   CLIENTS MARQUEE
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
    .clients {
      padding: 80px 24px;
      position: relative;
      z-index: 1;
      background: var(--bg);
    }

    .cl-in {
      max-width: 1240px;
      margin: 0 auto;
    }

    .client-category {
      margin-bottom: 24px;
    }
    
    .client-category:last-child {
      margin-bottom: 0;
    }

    .marq-wrap {
      overflow: hidden;
      position: relative;
      padding: 16px 0;
    }

    .marq-wrap::before,
    .marq-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }

    .marq-wrap::before {
      left: 0;
      background: linear-gradient(90deg, var(--bg), transparent);
    }

    .marq-wrap::after {
      right: 0;
      background: linear-gradient(-90deg, var(--bg), transparent);
    }

    .marq {
      display: flex;
      gap: 24px;
      animation: marq 80s linear infinite;
      width: max-content;
      will-change: transform;
    }
    
    .marq.reverse {
      animation: marq-rev 80s linear infinite;
    }

    .marq:hover {
      animation-play-state: paused;
    }

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

      to {
        transform: translateX(-50%);
      }
    }
    
    @keyframes marq-rev {
      from {
        transform: translateX(-50%);
      }

      to {
        transform: translateX(0);
      }
    }

    .client-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      border: 1.5px solid var(--border);
      padding: 16px 32px;
      border-radius: 16px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.02);
      transition: 0.3s;
      cursor: pointer;
    }

    .client-logo:hover {
      transform: translateY(-4px);
      border-color: var(--p);
      box-shadow: 0 12px 25px rgba(30,58,138,0.08);
    }

    .client-logo img {
      height: 45px;
      width: auto;
      object-fit: contain;
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .client-logo:hover {
      transform: translateY(-8px) scale(1.08);
      border-color: var(--p);
      box-shadow: 0 15px 35px rgba(30,58,138,0.15), 0 0 20px rgba(30,58,138,0.1);
      z-index: 10;
      background: linear-gradient(to bottom, #ffffff, #f8fafc);
    }

    /* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
       REVIEWED ON BADGES
    â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
    .reviewed-wrap { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 0 24px; margin-top: 40px; margin-bottom: 80px; position: relative; z-index: 10; }
    .rev-title { font-size: 0.8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
    .rev-logos { display: flex; gap: 36px; align-items: center; flex-wrap: wrap; justify-content: center; background: #fff; padding: 16px 40px; border-radius: 100px; border: 1px solid var(--border); box-shadow: 0 12px 30px rgba(30, 58, 138, 0.04); transition: transform 0.4s, box-shadow 0.4s; }
    .rev-logos:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(30, 58, 138, 0.08); }
    .rev-item { display: flex; align-items: center; gap: 12px; font-size: 1.1rem; font-weight: 800; color: var(--text); }
    .rev-stars { color: var(--g); font-size: 1.1rem; display: flex; gap: 2px; }
    .rev-stars svg { width: 16px; height: 16px; fill: var(--g); color: var(--g); }

    /* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
       TESTIMONIALS
    â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
    .testi-marq-wrap { overflow: hidden; position: relative; width: 100%; padding: 20px 0; }
    .testi-marq-wrap::before, .testi-marq-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
    .testi-marq-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
    .testi-marq-wrap::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
    .testi-marq { display: flex; gap: 30px; animation: marq 40s linear infinite; width: max-content; will-change: transform; }
    .testi-marq:hover { animation-play-state: paused; }
    .testi-marq .testi-card { width: 450px; flex-shrink: 0; white-space: normal; }

    .testi-card.sazzad-card {
      position: relative;
      min-height: 320px;
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(30, 58, 138, 0.03); /* Subtle theme tint */
      backdrop-filter: blur(25px);
      border: 1px solid rgba(30, 58, 138, 0.15); /* Theme border */
      box-shadow: 25px 25px 60px rgba(0, 0, 0, 0.05), -20px -20px 50px rgba(255, 255, 255, 0.8);
      transition: 0.4s ease;
    }
    .testi-card.sazzad-card:hover {
      transform: translateY(-6px);
      box-shadow: 25px 35px 65px rgba(30, 58, 138, 0.12), -20px -20px 50px rgba(255, 255, 255, 0.9);
    }
    
    .sazzad-bg {
      position: absolute;
      inset: 6px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.75)); /* Clean glass matching --bg */
      border-radius: 16px;
      backdrop-filter: blur(25px);
      border: 1px solid rgba(255, 255, 255, 0.8);
      z-index: 2;
    }
    
    .sazzad-aurora {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      filter: blur(28px);
      z-index: 1;
      /* Using website theme colors: Navy Blue (--p) and Red (--ac) */
      background: radial-gradient(circle, rgba(30, 58, 138, 0.85), rgba(220, 38, 38, 0.4), transparent);
      animation: sazzad-aurora-move 6.5s infinite ease-in-out;
      opacity: 0.8;
    }
    
    @keyframes sazzad-aurora-move {
      0% { transform: translate(-60%, -60%) scale(1); }
      30% { transform: translate(10%, -40%) scale(1.15); }
      60% { transform: translate(20%, 20%) scale(1.05); }
      80% { transform: translate(-40%, 10%) scale(1.2); }
      100% { transform: translate(-60%, -60%) scale(1); }
    }
    
    .testi-content {
      position: relative;
      z-index: 3;
      padding: 32px;
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 100%;
    }
    
    .tc-top {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
      position: relative;
    }
    
    .ta-av {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--p), var(--p2)); /* Reverting to theme primary */
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .ta-av.cyan { background: linear-gradient(135deg, #06B6D4, #0284C7); }
    .ta-av.yellow { background: linear-gradient(135deg, var(--g), #D97706); }
    
    .ta-info h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 2px;
    }
    .ta-info p {
      font-size: 0.85rem;
      color: var(--muted);
      margin: 0;
    }
    
    .tc-quote {
      position: absolute;
      right: 0;
      top: -10px;
      font-size: 5rem;
      font-family: serif;
      color: var(--p);
      opacity: 0.08;
      line-height: 1;
      pointer-events: none;
    }
    
    .tc-stars {
      display: flex;
      gap: 4px;
      margin-bottom: 16px;
    }
    .tc-stars svg {
      width: 16px;
      height: 16px;
      fill: var(--g); /* Yellow stars from theme */
      color: var(--g);
    }
    
    .tc-text {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.6;
      flex-grow: 1;
      margin-bottom: 24px;
    }
    
    .verified-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--p); /* Matches theme */
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }
    .verified-badge svg {
      width: 16px;
      height: 16px;
      background: var(--p);
      color: #fff;
      border-radius: 50%;
      padding: 3px;
    }

    /* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
       CASE STUDIES (PANGRAM PANGRAM STYLE)
    â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
    .section-dark { background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%); position: relative; color: #fff; padding-top: 100px; border-top: 1px solid rgba(255,255,255,0.05); overflow: hidden; padding-bottom: 0px; }
    .section-dark .stitle { color: #fff; }
    .section-dark .ssub { color: rgba(255,255,255,0.7); }
    .section-dark .stag { background: rgba(255,255,255,0.05) !important; border-color: rgba(255,255,255,0.1) !important; color: #fff !important; }
    .section-dark .stag svg { color: #fff !important; }

    .cs-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-top: 40px;
    }
    
    @media (max-width: 1024px) {
      .cs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
    }
    
    @media (max-width: 768px) {
      .cs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
    }

    .cs-card {
      height: 480px;
      transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s;
      overflow: hidden;
      border-radius: 24px;
      position: relative;
      cursor: pointer;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.05);
    }
    .cs-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 60px rgba(0,0,0,0.4);
      border-color: rgba(255,255,255,0.1);
    }
    
    .cs-img-wrap {
      position: absolute;
      inset: 0;
      border-radius: 0;
      background: transparent;
      aspect-ratio: auto;
    }
    .cs-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s, filter 0.5s;
      opacity: 0.8;
      filter: grayscale(10%);
    }
    .cs-card:hover .cs-img-wrap img {
      transform: scale(1.05);
      opacity: 1;
      filter: grayscale(0%);
    }
    
    .cs-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 40px 30px;
      background: linear-gradient(to top, rgba(15,23,42,0.95) 0%, rgba(15,23,42,0) 100%);
      opacity: 1;
      transform: translateY(0);
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 2;
    }
    
    .cs-overlay {
      position: absolute;
      inset: 0;
      background: rgba(15, 23, 42, 0.4);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: 1;
    }
    .cs-card:hover .cs-overlay {
      opacity: 1;
    }
    .cs-overlay .btnw {
      transform: translateY(20px);
      transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      border: none;
      background: #fff;
      color: var(--p);
      padding: 10px 24px;
    }
    .cs-card:hover .cs-overlay .btnw {
      transform: translateY(0);
    }

    .cs-tags { display: flex; gap: 10px; flex-wrap: wrap; }
    .cs-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 14px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); transition: 0.3s; background: rgba(255,255,255,0.05); backdrop-filter: blur(4px); }
    .cs-card:hover .cs-tag { background: rgba(255,255,255,0.1); }
    .cs-title { font-size: 1.7rem; font-weight: 800; line-height: 1.25; color: #fff; letter-spacing: -0.02em; }
    .cs-metric { font-size: 2.4rem; font-weight: 900; color: var(--g); display: flex; align-items: center; gap: 12px; margin-top: 4px; }
    .cs-metric span { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; line-height: 1.2; }

    /* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   SECTION BASE
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
    section {
      padding: 100px 24px;
      position: relative;
      z-index: 1;
    }

    .stag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(30, 58, 138, .07);
      border: 1px solid rgba(30, 58, 138, .15);
      border-radius: 100px;
      padding: 5px 14px;
      font-size: .7rem;
      font-weight: 700;
      color: var(--p);
      text-transform: uppercase;
      letter-spacing: .08em;
      margin-bottom: 14px;
    }

    .stitle {
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 800;
      letter-spacing: -.03em;
      color: var(--p);
      line-height: 1.1;
      text-transform: capitalize;
      margin-bottom: 12px;
    }

    .stitle em {
      font-style: normal;
    }

    .ssub {
      color: var(--p);
      font-size: .95rem;
      line-height: 1.7;
      max-width: 500px;
      font-weight: 400;
    }

    .shead {
      margin-bottom: 48px;
    }

    /* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   SERVICES GRID
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
    #services .sin {
      max-width: 1240px;
      margin: 0 auto;
    }

    .sgrid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .sc {
      display: flex;
      flex-direction: column;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      padding: 26px;
      transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .sc:hover {
      transform: translateY(-8px);
      border-color: var(--ac);
      box-shadow: 0 20px 48px rgba(2, 6, 23, .12);
    }

    .sico {
      width: 44px;
      height: 44px;
      border-radius: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      font-size: 1.2rem;
      background: rgba(30, 58, 138, .08);
    }

    .sc h3 {
      font-size: .98rem;
      font-weight: 700;
      margin-bottom: 9px;
      letter-spacing: -.02em;
    }

    .sc p {
      color: var(--muted);
      font-size: .8rem;
      line-height: 1.65;
      margin-bottom: 14px;
      flex: 1;
    }

    .rmbtn {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      font-size: .75rem;
      font-weight: 700;
      color: var(--p);
      background: rgba(2, 6, 23, 0.05);
      padding: 6px 13px;
      border-radius: 100px;
      border: none;
      cursor: pointer;
      transition: .25s;
      font-family: 'Poppins', sans-serif;
    }

    .rmbtn:hover {
      background: rgba(30, 58, 138, 0.13);
      gap: 9px;
    }

    .rmbtn svg {
      width: 11px;
      height: 11px;
      transition: transform .25s;
    }

    .rmbtn:hover svg {
      transform: translateX(3px);
    }

    .sc-exp {
      display: none;
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid var(--border);
      font-size: .78rem;
      color: var(--muted);
      line-height: 1.65;
    }

    .sc-exp.open {
      display: block;
    }

    .sc.feat {
      background: linear-gradient(135deg, var(--p), var(--p2));
      border-color: transparent;
      box-shadow: 0 20px 48px rgba(30, 58, 138, .28);
    }

    .sc.feat h3,
    .sc.feat p {
      color: rgba(255, 255, 255, .92);
    }

    .sc.feat .sico {
      background: rgba(255, 255, 255, .16);
    }

    .sc.feat .rmbtn {
      background: rgba(255, 255, 255, .16);
      color: #fff;
    }

    .sc.feat .rmbtn:hover {
      background: rgba(255, 255, 255, .26);
    }

    .sc.feat .sc-exp {
      color: rgba(255, 255, 255, .75);
      border-top-color: rgba(255, 255, 255, .18);
    }

    /* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   PERFORMANCE SECTION
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
    #perf .pin {
      max-width: 1240px;
      margin: 0 auto;
    }

    .pgrid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    /* Funnel */
    .fcard {
      display: flex;
      flex-direction: column;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: 0 20px 50px rgba(30,58,138,0.05);
    }

    .fc-t {
      font-size: .9rem;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .fstep {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
    }

    .flbl {
      font-size: .72rem;
      font-weight: 600;
      color: var(--muted);
      min-width: 80px;
      text-align: right;
    }

    .fbw {
      flex: 1;
      height: 36px;
      background: rgba(30, 58, 138, .05);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    }

    .fb {
      height: 100%;
      border-radius: 12px;
      display: flex;
      align-items: center;
      padding-left: 10px;
      font-size: .8rem;
      font-weight: 700;
      color: #fff;
      transition: width 1.4s ease;
      box-shadow: 0 4px 10px rgba(30,58,138,0.2);
    }

    .fcount {
      font-size: .72rem;
      font-weight: 700;
      color: var(--text);
      min-width: 38px;
      text-align: right;
    }

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

    .rcard {
      display: flex;
      flex-direction: column;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: var(--rs);
      padding: 24px;
      display: flex;
      align-items: center;
      gap: 14px;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .rcard:hover {
      transform: translateX(10px) scale(1.02) !important;
      border-left-color: var(--ac);
      box-shadow: 0 20px 40px rgba(30,58,138,0.1) !important;
    }

    .rico {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .rtxt h4 {
      font-size: .85rem;
      font-weight: 700;
      margin-bottom: 3px;
    }

    .rtxt p {
      font-size: .72rem;
      color: var(--muted);
    }

    .rnum {
      margin-left: auto;
      font-size: 1.3rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--p), var(--ac));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      flex-shrink: 0;
    }

    /* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   WHY US
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
    .wgrid {
      max-width: 1240px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .wc {
      background: #ffffff;
      border: 1.5px solid var(--border);
      border-radius: var(--rs);
      padding: 22px 18px;
      text-align: center;
      transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: pointer;
    }

    .wc:hover {
      transform: translateY(-8px);
      border-color: var(--ac);
      box-shadow: 0 16px 40px rgba(2, 6, 23, .1);
    }

    .wc-trap {
      clip-path: polygon(8% 0%, 92% 0%, 100% 100%, 0% 100%);
      border: none !important;
      background: linear-gradient(145deg, #ffffff, #f1f5f9);
      box-shadow: none !important; /* clip-path hides box-shadow anyway */
    }
    .wc-trap:hover {
      transform: translateY(-8px) scale(1.02);
      background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    }

    .wn {
      font-size: 1.9rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--p), var(--ac));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 7px;
    }

    .wc h4 {
      font-size: .85rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .wc p {
      font-size: .76rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   PROCESS
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
    .psteps {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .psteps::before {
      content: '';
      position: absolute;
      top: 30px; /* Middle of the 60px pnum */
      left: 12%;
      right: 12%;
      height: 3px;
      background: linear-gradient(90deg, var(--p), var(--ac), var(--g));
      opacity: .4;
      z-index: 0;
    }

    .pitem {
      text-align: center;
      padding: 0 10px;
      position: relative;
      z-index: 1;
    }

    .pnum {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--p), var(--p2));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      font-weight: 800;
      color: #fff;
      margin: 0 auto 14px;
      box-shadow: 0 8px 20px rgba(30, 58, 138, .24);
      transition: .3s;
      cursor: pointer;
      position: relative;
      z-index: 2;
      border: 4px solid #fff;
    }

    .pitem:hover .pnum {
      transform: scale(1.15) rotate(5deg);
      box-shadow: 0 12px 28px rgba(30, 58, 138, .34);
      background: linear-gradient(135deg, var(--ac), var(--g));
    }

    .pitem h4 {
      font-size: .85rem;
      font-weight: 700;
      margin-bottom: 6px;
      transition: color 0.3s;
    }

    .pitem:hover h4 {
      color: var(--p);
    }

    .pitem p {
      font-size: .74rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   FAQ
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
    .faq-in {
      max-width: 740px;
      margin: 0 auto;
    }
    
    .faq-in.faq-wide {
      max-width: 1200px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .faq-col {
      display: flex;
      flex-direction: column;
    }

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


    .fq {
      background: #ffffff;
      border: 1.5px solid var(--border);
      border-radius: var(--rs);
      margin-bottom: 10px;
      overflow: hidden;
      transition: .3s;
    }

    .fq:hover {
      border-color: rgba(30, 58, 138, .2);
    }

    .fqbtn {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 22px;
      text-align: left;
      font-family: 'Poppins', sans-serif;
      font-size: .86rem;
      font-weight: 700;
      color: var(--text);
      gap: 12px;
    }

    .fqico {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background: rgba(30, 58, 138, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: .3s;
      font-size: .85rem;
      color: var(--p);
    }

    .fq.open .fqico {
      transform: rotate(45deg);
      background: rgba(30, 58, 138, .13);
    }

    .fqa {
      max-height: 0;
      overflow: hidden;
      transition: max-height .38s ease, padding .3s;
      padding: 0 22px;
      font-size: .82rem;
      color: var(--muted);
      line-height: 1.7;
    }

    .fq.open .fqa {
      max-height: 180px;
      padding-bottom: 18px;
    }

    /* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   CTA
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
    .ctacard {
      max-width: 980px;
      margin: 0 auto;
      background: linear-gradient(135deg, var(--p) 0%, var(--p2) 50%, var(--ac) 100%);
      border-radius: 30px;
      padding: 64px 52px;
      text-align: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(30, 58, 138, .28);
    }

    .ctacard::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }

    .ctacard h2 {
      font-size: clamp(1.7rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: #fff;
      letter-spacing: -.03em;
      margin-bottom: 12px;
    }

    .ctacard p {
      color: rgba(255, 255, 255, .8);
      font-size: .95rem;
      margin-bottom: 28px;
      line-height: 1.65;
    }

    .btnw {
      background: #fff;
      color: var(--p);
      padding: 14px 34px;
      border-radius: 100px;
      font-weight: 700;
      font-size: .9rem;
      border: none;
      cursor: pointer;
      transition: background 0.5s ease, box-shadow 0.5s ease, color 0.5s ease;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 8px 24px rgba(0, 0, 0, .14);
      font-family: 'Poppins', sans-serif;
    }

    .btnw:hover {
      box-shadow: 0 14px 36px rgba(0, 0, 0, .2);
    }

    /* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   FOOTER
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
    footer {
      background: #ffffff;
      border-top: 1.5px solid var(--border);
      padding: 44px 24px 28px;
      position: relative;
      z-index: 1;
    }

    .fin {
      max-width: 1240px;
      margin: 0 auto;
    }

    .ftop {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 36px;
      margin-bottom: 36px;
    }

    .flogo {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }

    .fdesc {
      font-size: .78rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .fsoc {
      display: flex;
      gap: 8px;
    }

    .fsl {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(30, 58, 138, .07);
      border: 1px solid rgba(30, 58, 138, .12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .7rem;
      font-weight: 700;
      color: var(--p);
      text-decoration: none;
      transition: .3s;
    }

    .fsl:hover {
      background: var(--p);
      color: #fff;
    }

    .fcol h5 {
      font-size: .8rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--text);
    }

    .fcol a {
      display: block;
      font-size: .77rem;
      color: var(--muted);
      text-decoration: none;
      margin-bottom: 7px;
      transition: .2s;
    }

    .fcol a:hover {
      color: var(--p);
      padding-left: 4px;
    }

    .fbot {
      border-top: 1px solid var(--border);
      padding-top: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    .fbot p {
      font-size: .76rem;
      color: var(--muted);
    }

    /* FADE UP */
    .fu {
      opacity: 0;
      transform: translateY(28px);
    }

    /* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
       PREMIUM SVGS, BENTO & TABS (GLOBAL)
    â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
    .bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
    .bento-card { background: #ffffff; border: 1px solid var(--border); border-radius: 24px; padding: 30px; transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); box-shadow: 0 10px 30px rgba(0,0,0,0.03); display: flex; flex-direction: column; }
    .bento-card:hover { transform: translateY(-8px); border-color: var(--p); box-shadow: 0 24px 48px rgba(79,70,229,0.12); }
    
    .bento-icon, .sico, .wn, .mc-icon { -webkit-background-clip: unset !important; -webkit-text-fill-color: unset !important; background: none !important; color: var(--p); display: flex; align-items: center; justify-content: flex-start; font-size: 1.5rem; }
    .bento-icon.center, .sico.center, .wn.center, .mc-icon.center { justify-content: center; }
    .bento-icon svg, .sico svg, .wn svg, .mc-icon svg { color: var(--p); transition: 0.3s; width: 1em; height: 1em; }
    
    /* CREATIVE ICON DETACHMENT */
    .bento-card:hover .bento-icon svg, .sc:hover .sico svg, .wc:hover .wn svg { 
      transform: scale(1.25) rotate(-10deg) translateY(-3px); 
      color: var(--ac); 
      filter: drop-shadow(0 8px 12px rgba(6,182,212,0.4)); 
    }
    
    .mc-icon { background: rgba(79,70,229,.05) !important; border: 1px solid rgba(79,70,229,.1); width: 36px; height: 36px; border-radius: 10px; }
    .stag svg { width: 14px; height: 14px; margin-right: 6px; }

    .v-tabs-container { display: grid; grid-template-columns: 300px 1fr; gap: 40px; background: #ffffff; border: 1px solid var(--border); border-radius: 24px; padding: 40px; box-shadow: 0 20px 50px rgba(79,70,229,0.08); }
    
    /* CREATIVE NEON TAB BRIDGE */
    .v-tabs-container { position: relative; overflow: hidden; }
    .v-tabs-container::before { content: ''; position: absolute; top: -30%; right: -20%; width: 80%; height: 100%; background: radial-gradient(circle, rgba(6,182,212,0.04) 0%, transparent 60%); pointer-events: none; }
    .v-tabs { display: flex; flex-direction: column; gap: 10px; border-right: 1px solid var(--border); padding-right: 20px; }
    .v-tab { text-align: left; padding: 15px 20px; font-weight: 600; font-family: 'Poppins', sans-serif; border-radius: 12px; border: none; background: transparent; color: var(--muted); cursor: pointer; transition: 0.3s; font-size: .95rem; display: flex; justify-content: space-between; align-items: center; }
    .v-tab:hover { background: rgba(79,70,229,0.05); color: var(--p); }
    .v-tab.active { background: linear-gradient(135deg, var(--p), var(--ac)); color: white; box-shadow: 0 10px 20px rgba(79,70,229,0.2); position: relative; }
    .v-tab.active::after {
      content: ''; position: absolute; right: -21px; top: 50%; transform: translateY(-50%);
      width: 3px; height: 60%; background: var(--ac); border-radius: 4px; box-shadow: 0 0 12px var(--ac);
    }
    
    .v-content { display: none; animation: fadeIn 0.4s ease-out forwards; }
    .v-content.active { display: block; }
    @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

    /* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
       TRELLO-STYLE SERVICES SECTION
    â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
    .t-services-wrap { display: grid; grid-template-columns: 320px 1fr; gap: 40px; align-items: stretch; max-width: 1200px; margin: 0 auto; }
    .t-tabs { display: flex; flex-direction: column; gap: 8px; }
    .t-tab { padding: 18px 24px; border-radius: 16px; border: 1px solid transparent; cursor: pointer; transition: all 0.3s; position: relative; background: transparent; text-align: left; font-family: 'Poppins', sans-serif; box-shadow: none; display: flex; align-items: center; gap: 12px; }
    .t-tab::before { content: ''; position: absolute; left: 0; top: 15%; bottom: 15%; width: 4px; background: linear-gradient(180deg, var(--p), var(--ac)); border-radius: 0 4px 4px 0; opacity: 0; transform: scaleY(0); transition: all 0.3s; }
    .t-tab:hover { background: rgba(30, 58, 138, 0.03); }
    .t-tab.active { background: #ffffff; border-color: var(--border); box-shadow: 0 12px 30px rgba(30, 58, 138, 0.06); }
    .t-tab.active::before { opacity: 1; transform: scaleY(1); top: 0; bottom: 0; }
    .t-tab h3 { font-size: 1.1rem; font-weight: 700; color: var(--muted); margin-bottom: 0; letter-spacing: -0.01em; transition: color 0.3s; }
    .t-tab.active h3 { color: var(--text); }
    .t-tab svg { width: 22px; height: 22px; color: var(--muted); transition: color 0.3s; flex-shrink: 0; }
    .t-tab.active svg { color: var(--ac); }
    
    .t-panels { position: relative; background: #ffffff; border-radius: 24px; border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(30, 58, 138, 0.06); overflow: hidden; min-height: 420px; }
    .t-panel { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1); transform: translateY(20px); padding: 50px; display: flex; flex-direction: column; justify-content: center; }
    .t-panel.active { opacity: 1; visibility: visible; transform: translateY(0); }
    
    .tp-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(30, 58, 138, 0.06); display: flex; align-items: center; justify-content: center; color: var(--p); margin-bottom: 24px; }
    .psteps-snake { 
      display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; 
      position: relative; max-width: 1200px; margin: 40px auto 0; padding: 0 24px; 
    }
    .snake-curve-bg {
      position: absolute; top: 30px; left: 5%; right: 5%; width: 90%; height: 60px; z-index: 0; pointer-events: none;
    }
    .pitem-snake { text-align: center; position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
    .down-step { padding-top: 40px; } /* Pushes the even items down to follow the curve */
    
    .pitem-snake h4 { font-size: 1rem; font-weight: 700; margin-bottom: 16px; color: var(--p); line-height: 1.3; }
    .pitem-snake p { font-size: 0.85rem; line-height: 1.6; color: var(--muted); margin: 0; }

    @media (max-width: 900px) {
      .psteps-snake { 
          display: flex !important; 
          flex-direction: column !important; 
          gap: 24px !important; 
          margin-top: 20px !important; 
          padding: 0 20px !important; 
          width: 100% !important;
          box-sizing: border-box !important;
      }
      .snake-curve-bg { display: none !important; }
      .down-step { padding-top: 0 !important; }
      .pitem-snake { 
        display: flex !important;
        flex-direction: column !important; 
        align-items: flex-start !important; 
        justify-content: center !important;
        text-align: left !important; 
        background: rgba(255, 255, 255, 0.95) !important;
        padding: 24px 20px 24px 75px !important;
        border-radius: 20px !important;
        box-shadow: 0 10px 30px rgba(30, 58, 138, 0.08) !important;
        border: 1px solid rgba(30, 58, 138, 0.1) !important;
        width: 100% !important;
        box-sizing: border-box !important;
        transform: none !important;
        position: relative !important;
        overflow: hidden !important;
      }
      .pitem-snake h4, .pitem-snake p { position: relative; z-index: 2; margin-left: 0; }
      
      .pitem-snake .pnum, .pitem-snake:hover .pnum, .pitem-snake:active .pnum { 
        display: flex !important;
        position: absolute !important;
        top: 24px !important;
        left: 14px !important;
        width: 42px !important;
        height: 42px !important;
        border-radius: 50% !important;
        background: linear-gradient(135deg, var(--p), var(--p2)) !important;
        color: #fff !important;
        margin: 0 !important;
        box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2) !important;
        border: none !important;
        z-index: 5 !important;
      }
      .pitem-snake .pnum span {
        font-size: 1.2rem !important;
        color: #fff !important;
        opacity: 1 !important;
        position: static !important;
      }
      
      /* TASK 3: Premium Interactive Cue */
      .pitem-snake::after {
        content: "→ Click to Expand";
        display: inline-block;
        margin-top: 16px;
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--p);
        background: rgba(30, 58, 138, 0.08);
        padding: 6px 14px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: 0.3s ease;
        animation: pulse-click 2s infinite ease-in-out;
      }
      .pitem-snake:active::after {
        background: var(--p);
        color: #fff;
      }
      @keyframes pulse-click {
        0%, 100% { transform: translateX(0); opacity: 0.8; }
        50% { transform: translateX(4px); opacity: 1; }
      }
      
      .dc-title { font-size: 1rem !important; }
      .dmet-lbl { font-size: 0.85rem !important; letter-spacing: 0.05em; }
      .dc-sub { font-size: 0.85rem !important; }
      .dc-right { text-align: center; }
      .dc-right .dc-title { justify-content: center; }
      
      .dranks .flex-between { flex-direction: column; align-items: flex-start; gap: 8px; }
      .dr-header-title { font-size: 1rem !important; }
      .dr-header-subtitle { font-size: 0.85rem !important; }
      
      /* Dashboard lists sizing */
      .dr-kw { font-size: 0.9rem !important; }
      .dr-pos { font-size: 0.85rem !important; }
      .dr-chg { font-size: 0.8rem !important; }
      .dl-name { font-size: 0.9rem !important; }
      .dl-val { font-size: 0.85rem !important; }
      .dl-chg { font-size: 0.75rem !important; }
      
      /* Disable fade animation for Client Success on mobile */
      #testimonials .fu {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
        visibility: visible !important;
      }
      
      /* Remove side fade gradients from testimonials marquee */
      .testi-marq-wrap::before, .testi-marq-wrap::after {
        display: none !important;
      }
    }
    .tp-icon svg { width: 28px; height: 28px; }
    .tp-title { font-size: 1.8rem; font-weight: 800; color: var(--text); margin-bottom: 16px; letter-spacing: -0.02em; }
    .tp-desc { font-size: 1.05rem; color: var(--muted); line-height: 1.7; margin-bottom: 28px; max-width: 600px; }
    .tp-feat { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; padding: 0; }
    .tp-feat li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; font-weight: 600; color: var(--text); }
    .tp-feat li svg { width: 18px; height: 18px; color: var(--ac); flex-shrink: 0; margin-top: 2px; }

    @media (max-width: 1024px) {
      .t-services-wrap { display: flex; flex-direction: column; gap: 0; }
      .t-tabs, .t-panels { display: contents; }
      
      .t-tabs .t-tab:nth-child(1) { order: 1; }
      .t-panels .t-panel:nth-child(1) { order: 2; }
      .t-tabs .t-tab:nth-child(2) { order: 3; }
      .t-panels .t-panel:nth-child(2) { order: 4; }
      .t-tabs .t-tab:nth-child(3) { order: 5; }
      .t-panels .t-panel:nth-child(3) { order: 6; }
      .t-tabs .t-tab:nth-child(4) { order: 7; }
      .t-panels .t-panel:nth-child(4) { order: 8; }
      .t-tabs .t-tab:nth-child(5) { order: 9; }
      .t-panels .t-panel:nth-child(5) { order: 10; }
      .t-tabs .t-tab:nth-child(6) { order: 11; }
      .t-panels .t-panel:nth-child(6) { order: 12; }

      .t-tab { 
        width: 100%; text-align: left; border-radius: 12px; margin-bottom: 8px; 
        background: #fff; border: 1px solid var(--border); padding: 18px 20px;
        justify-content: flex-start;
      }
      .t-tab::before { display: none; }
      .t-tab.active { 
        background: var(--p); color: #fff; 
        margin-bottom: 0; border-bottom-left-radius: 0; border-bottom-right-radius: 0; 
        border-color: var(--p);
      }
      .t-tab.active h3 { color: #fff; }
      
      .t-panel { 
        padding: 24px; position: relative; display: none; 
        border: 1px solid var(--border); border-top: none; 
        border-radius: 0 0 12px 12px; margin-bottom: 12px; 
        background: #fff;
      }
      .t-panel.active { display: flex; transform: translateY(0); opacity: 1; }
      
      .tp-feat { grid-template-columns: 1fr; gap: 12px; }
    }

    /* ══════════════════════════════════════════════════════════════════
       STRATEGIC GROWTH FRAMEWORK TIMELINE
    â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
    #growth-framework { overflow: hidden; position: relative; }
    .tl-container { width: 100%; padding: 60px 24px 100px; max-width: 1100px; margin: 0 auto; position: relative; }
    .snake-timeline-wrapper {
      width: 100%; position: relative; overflow: hidden; padding-bottom: 20px;
    }
    .snake-timeline-horizontal { 
      display: flex; flex-direction: row; justify-content: space-between; align-items: flex-start;
      position: relative; width: 100%; min-width: 1200px; padding: 40px 0;
    }
    .snake-svg-horizontal {
      position: absolute; top: 70px; left: 0; width: 100%; height: 20px; z-index: 0; pointer-events: none;
    }
    #snake-path { stroke-dasharray: 1000; stroke-dashoffset: 1000; }
    
    .snake-step.horizontal-step { 
      position: relative; color: var(--text);
      width: 180px; display: flex; flex-direction: column; align-items: center; text-align: center;
      z-index: 1; flex-shrink: 0;
    }
    
    .sc-dot.pnum {
      width: 60px; height: 60px; border-radius: 50%;
      background: var(--p);
      box-shadow: 0 8px 20px rgba(30, 58, 138, .24);
      border: 4px solid #fff; z-index: 2;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; font-weight: 800; color: #fff;
      margin-bottom: 20px;
    }

    .snake-text h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; color: var(--p); position: relative; z-index: 1; line-height: 1.3; }
    .snake-text p { font-size: 0.85rem; line-height: 1.6; color: var(--muted); position: relative; z-index: 1; margin: 0; }

    @media (max-width: 1024px) {
      .snake-timeline-horizontal { flex-wrap: nowrap; overflow-x: auto; min-width: unset; padding-bottom: 20px; scroll-snap-type: x mandatory; }
      .snake-step.horizontal-step { width: 250px; scroll-snap-align: center; margin-right: 20px; }
      .snake-svg-horizontal { width: 1500px; } /* Ensures line continues behind scrolling items */
    }

    /* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
       UTILITY & COMPONENT CLASSES (STEP 4)
    â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
/* RESTORED ALIGNMENT & SVG UTILITIES */
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-center-gap { display: flex; align-items: center; gap: 6px; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.max-w-600 { max-width: 600px; width: 100%; }
.max-w-800 { max-width: 800px; width: 100%; }
.max-w-1000 { max-width: 1000px; width: 100%; }
.grid-cols-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

.p-40 { padding: 40px; }
.mb-10 { margin-bottom: 10px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }
.text-xl { font-size: 1.5rem; }

.icon-sm { width: 14px !important; height: 14px !important; flex-shrink: 0; }
.icon-md { width: 18px !important; height: 18px !important; flex-shrink: 0; }
.icon-lg { width: 24px !important; height: 24px !important; flex-shrink: 0; }
.dtab-icon { width: 14px !important; height: 14px !important; margin-right: 4px; vertical-align: text-bottom; }


.nlogo img { height: 50px; width: auto; }
.flogo img { height: 70px; width: auto; }
.hero-sm { min-height: 60vh; padding-top: 180px; }
.badge-center { justify-content: center; width: auto; margin-left: auto; margin-right: auto; }
.bg-indigo-lightest { background: rgba(79,70,229,.03); }
.bg-indigo-light { background: rgba(79,70,229,.1); color: var(--p); }
.bg-cyan-light { background: rgba(6,182,212,.1); color: var(--ac); }
.bg-emerald-light { background: rgba(16,185,129,.1); color: var(--g); }
.border-y { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.mission-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 15px; }
.mission-card p { color: var(--muted); line-height: 1.7; font-size: 0.95rem; }
.dr-header-title { font-size: 0.7rem; font-weight: 700; color: var(--text); }
.dr-header-subtitle { font-size: 0.65rem; color: var(--muted); }

    .section-bg2 { background: linear-gradient(to bottom, var(--bg) 0%, var(--bg2) 10%, var(--bg2) 90%, var(--bg) 100%); border: none; padding: 100px 0; }
    .section-light-bg { background: linear-gradient(to bottom, var(--bg) 0%, rgba(79,70,229,.02) 10%, rgba(79,70,229,.02) 90%, var(--bg) 100%); border: none; }
    
    .shead-center { text-align: center; max-width: 700px; margin: 0 auto 48px; }
    .shead-center-lg { text-align: center; max-width: 800px; margin: 0 auto 48px; }
    .shead-center-sm { text-align: center; max-width: 500px; margin: 0 auto 40px; }
    .shead-left { max-width: 500px; margin-bottom: 40px; }

    .hero-center { min-height: 85vh; padding-top: 160px; display: flex; align-items: center; }
    .pin-lg { max-width: 1200px; margin: 0 auto; width: 100%; }

    .hero-dash-split { padding: 0; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; border-radius: 24px; background: #fff; box-shadow: 0 20px 50px rgba(0,0,0,0.04); border: 1px solid var(--border); }
    .hero-dash-left { padding: 60px; }
    .hero-dash-right { background: var(--bg2); padding: 60px; display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--border); }
    
    .badge-auto { width: max-content; margin-bottom: 20px; }
    .hero-title-main { font-size: 3.2rem; line-height: 1.1; margin-bottom: 20px; letter-spacing: -0.04em; color: var(--text); }
    .hero-desc { color: var(--muted); font-size: 1.05rem; line-height: 1.6; margin-bottom: 30px; }
    .hero-stats-row { margin-top: 40px; border-top: 1px solid var(--border); padding-top: 30px; display: flex; gap: 40px; }
    .hero-stat-val { font-weight: 800; font-size: 1.8rem; color: var(--text); }
    .hero-stat-lbl { font-size: .75rem; color: var(--muted); text-transform: uppercase; font-weight: 600; }
    
    .dmet-white { margin-bottom: 20px; background: #fff; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
    .dmet-white:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 15px 40px rgba(30, 58, 138, 0.1); }
    .dmet-val-lg { font-size: 2.2rem; color: var(--p); }
    .dmet-val-text { font-size: 2.2rem; color: var(--text); }
    .dmet-val-sm { font-size: 1.5rem; }
    .dmet-chg-sm { font-size: .75rem; }

    .hz-scroll-wrap { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 24px; padding: 20px 0; scrollbar-width: none; -webkit-overflow-scrolling: touch; scroll-behavior: smooth; }
    .hz-scroll-wrap::-webkit-scrollbar { display: none; }
    
    /* CREATIVE HORIZONTAL TIMELINE CARDS */
    .hz-card { display: flex; flex-direction: column; flex: 0 0 320px; scroll-snap-align: start; background: var(--white); border: 1px solid var(--border); border-top: 4px solid var(--p); border-radius: 0 0 20px 20px; padding: 40px; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05); position: relative; overflow: hidden; transition: all 0.4s ease; }
    .hz-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 25px 50px rgba(0,0,0,0.3) !important; border-top-color: var(--ac); }
    .step-num { position: absolute; top: -10px; right: 15px; font-size: 6rem; font-weight: 900; color: var(--p); opacity: 0.04; transition: all 0.5s ease; pointer-events: none; }
    .hz-card:hover .step-num { opacity: 0.12; color: var(--ac); transform: scale(1.1) translate(-10px, 10px); }
    
    .hz-title { color: var(--text); margin-top: 20px; font-size: 1.3rem; margin-bottom: 8px;}
    .hz-desc { color: var(--muted); font-size: .9rem; line-height: 1.6; }
    
    /* 2-COLUMN FAQ LAYOUT */
    .faq-split { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; width: 100%; }
    .faq-col { display: flex; flex-direction: column; gap: 16px; }
    
    .pt-0 { padding-top: 0 !important; }
    .pb-40 { padding-bottom: 40px !important; }
    .pb-80 { padding-bottom: 80px !important; }
    .mt-40 { margin-top: 40px !important; }
    .mb-20 { margin-bottom: 20px !important; }
    .mb-30 { margin-bottom: 30px !important; }
    
    .hero-simple { min-height: 60vh; padding-top: 180px; padding-bottom: 40px; }
    .hero-simple-in { grid-template-columns: 1fr; text-align: center; max-width: 900px; margin: 0 auto; }
    .hero-subtitle { margin: 0 auto 30px; color: var(--p); line-height: 1.6; font-weight: 500; }
    
    /* FLOATING LABEL FORM UX */
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
    .float-wrap { position: relative; width: 100%; }
    .form-control { 
      width: 100%; padding: 22px 16px 8px; border-radius: 12px; border: 1px solid var(--border); 
      background: rgba(248, 250, 252, .95); font-family: 'Poppins', sans-serif; font-size: 0.95rem; 
      color: var(--text); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); box-sizing: border-box; 
    }
    select.form-control { padding: 15px 16px; }
    .float-wrap label { 
      position: absolute; left: 16px; top: 16px; font-size: 0.95rem; color: var(--muted); 
      pointer-events: none; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); 
    }
    .form-control:focus { outline: none; border-color: var(--p); background: #ffffff; box-shadow: 0 12px 24px rgba(79, 70, 229, 0.08); }
    
    /* The Magic UX Trigger */
    .form-control:focus ~ label, 
    .form-control:valid ~ label,
    .form-control:not(:placeholder-shown) ~ label {
      top: 6px; font-size: 0.65rem; font-weight: 700; color: var(--p); text-transform: uppercase; letter-spacing: 0.05em;
    }

    .dash-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
    
    /* CREATIVE FLOATING FAQ CARDS */
    .fq { border-left: 4px solid var(--p); border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.02); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); margin-bottom: 12px; }
    .fq:hover { transform: translateX(6px); box-shadow: 0 12px 30px rgba(30, 58, 138, 0.08); }
    .fq.open { border-left-color: var(--ac); background: linear-gradient(135deg, #ffffff, #f0fdfa); }
    .fqbtn { padding: 20px 24px; font-size: .95rem; }
    .fqa { padding: 0 24px; font-size: .88rem; }
    .fq.open .fqa { padding-bottom: 24px; }

    /* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
       GLOBAL BRAND COLOR & LAYOUT FIXES
    â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
    .wc, .fcard { display: flex; flex-direction: column; }
    .has-drop:hover, .drop-wrap a:hover, .mob-menu a:hover, .btn-o:hover, .dtab:hover:not(.active), .dl-item:hover, .dr-item:hover { background-color: rgba(2, 6, 23, 0.05) !important; color: var(--p) !important; }
    .dr-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: .25s;
  border: 1px solid transparent;
  height: 38px;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
}
    .badge, .sico:not(.sc.feat .sico), .fqico, .fsl, .fbw, .mc-icon, .stag, .dl-chg { background-color: rgba(2, 6, 23, 0.07) !important; border-color: rgba(2, 6, 23, 0.1) !important; color: var(--p) !important; }
    .btn-p, .sc.feat, .ctacard { box-shadow: 0 16px 40px rgba(2, 6, 23, 0.25) !important; }
    .dtab.active { box-shadow: 0 4px 12px rgba(2, 6, 23, 0.25) !important; }
    .dash, .bento-card:hover, .v-tabs-container, .form-control:focus, .fq:hover, .sc:hover, .rcard:hover, .wc:hover { box-shadow: 0 16px 40px rgba(2, 6, 23, 0.08) !important; border-color: rgba(2, 6, 23, 0.2) !important; }
    .btn-o, .dmet, .dc-left, .dc-right, .dranks, .sc, .rcard, .wc, .fcard { border-color: rgba(2, 6, 23, 0.12) !important; }
    .dmet-bar, .dmet::after, .rico { background: rgba(2, 6, 23, 0.04) !important; color: var(--p) !important; }
    .rico svg, .sico svg { color: var(--p) !important; }
    .fb { background: linear-gradient(90deg, var(--p), var(--p2)) !important; }
    .dl-dot { background: var(--p) !important; }
    .bento-card:hover .bento-icon svg, .sc:hover .sico svg, .wc:hover .wn svg { filter: drop-shadow(0 8px 12px var(--ac)) !important; color: var(--ac) !important; }
    .v-tabs-container::before { background: radial-gradient(circle, rgba(252, 211, 77, 0.04) 0%, transparent 60%) !important; }
    .bento-card::before, .sc::before, .wc::before, .fcard::before, .hz-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(270deg, rgba(2, 6, 23, 0.06), rgba(252, 211, 77, 0.06), rgba(245, 158, 11, 0.06), rgba(15, 23, 42, 0.06)); background-size: 400% 400%; opacity: 0; z-index: 0; transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1); pointer-events: none; }
    .bento-card:hover::before, .sc:hover::before, .wc:hover::before, .fcard:hover::before, .hz-card:hover::before { opacity: 1; animation: fluidMesh 6s ease infinite; }
    @keyframes fluidMesh { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
    
    /* FORCE HIGHLIGHT GRADIENTS */
    .hero h1 em, .stitle em, .hero-title-main em {
      background: linear-gradient(135deg, var(--ac), var(--g)) !important;
      -webkit-background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
      font-style: normal;
    }

    /* KILL TILTING & INNER POP ANIMATION (Forces CSS overrides over JS inline 3D transforms) */
    .sc > *, .bento-card > *, .fcard > *, .hz-card > *, .wc > *, .rcard > * { position: relative; z-index: 1; }
    .sheen { display: none !important; }
    /* KILL TILTING & 3D ROTATIONS (Forces CSS overrides over JS inline 3D transforms) */
.sc, .bento-card, .fcard, .hz-card, .wc, .rcard, .t-tab, .cs-card { transform-style: flat !important; perspective: none !important; backface-visibility: hidden; -webkit-font-smoothing: subpixel-antialiased; }
    .sc:hover, .bento-card:hover, .wc:hover { transform: translateY(-8px) rotateX(0deg) rotateY(0deg) !important; }
    .rcard:hover { transform: translateX(6px) rotateX(0deg) rotateY(0deg) !important; }
    .hz-card:hover { transform: translateY(-12px) scale(1.02) rotateX(0deg) rotateY(0deg) !important; }
    .fcard:hover { transform: translateY(-4px) rotateX(0deg) rotateY(0deg) !important; }
    #cur.hovering { background: rgba(250, 204, 21, 0.95) !important; box-shadow: 0 0 15px rgba(250, 204, 21, 0.6) !important; }
    #cur-r.view-mode { background: rgba(2, 6, 23, 0.95) !important; box-shadow: 0 0 20px rgba(2, 6, 23, 0.5) !important; }
    #cur-r.drag-mode { background: rgba(245, 158, 11, 0.95) !important; box-shadow: 0 0 20px rgba(245, 158, 11, 0.5) !important; }
    .orb1 { background: rgba(2, 6, 23, 0.12) !important; }
    .orb2 { background: rgba(252, 211, 77, 0.12) !important; }

    /* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
       INDUSTRIES BENTO GRID (ALL GUNS BLAZING)
    â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
    .ind-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 20px; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
    .ind-item {
      position: relative; border-radius: 24px; overflow: hidden; cursor: pointer;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
      background: #000; border: 1px solid rgba(255,255,255,0.05);
    }
    .ind-item.span-2-row { grid-row: span 2; }
    .ind-item.span-2-col { grid-column: span 2; }
    
    .ind-bg {
      position: absolute; inset: 0; background-size: cover; background-position: center;
      opacity: 0.4; transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1); filter: grayscale(100%);
    }
    .ind-item:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(30, 58, 138, 0.2); border-color: rgba(30, 58, 138, 0.5); z-index: 10; }
    .ind-item:hover .ind-bg { opacity: 0.7; filter: grayscale(0%); transform: scale(1.08); }
    
    .ind-item::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.1) 100%);
      transition: 0.5s; z-index: 1; pointer-events: none;
    }
    .ind-item:hover::before { background: linear-gradient(to top, rgba(30, 58, 138, 0.95) 0%, rgba(30, 58, 138, 0.2) 100%); }
    
    .ind-content {
      position: absolute; bottom: 0; left: 0; right: 0; padding: 30px; z-index: 2;
      display: flex; flex-direction: column; gap: 12px;
      transform: translateY(30px); transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .ind-item:hover .ind-content { transform: translateY(0); }
    
    .ind-icon {
      width: 48px; height: 48px; border-radius: 14px; background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
      display: flex; align-items: center; justify-content: center;
      color: #fff; margin-bottom: 8px; border: 1px solid rgba(255,255,255,0.2); transition: 0.5s;
    }
    .ind-item:hover .ind-icon { 
      background: var(--ac); border-color: var(--ac); 
      transform: scale(1.15) rotate(-8deg); box-shadow: 0 10px 25px rgba(220, 38, 38, 0.5); 
    }
    .ind-icon svg { width: 24px; height: 24px; }
    
    .ind-content h3 { color: #fff; font-size: 1.4rem; font-weight: 800; letter-spacing: -0.02em; margin: 0; }
    .ind-content p { 
      color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.6; margin: 0; 
      opacity: 0; transition: opacity 0.5s; 
    }
    .ind-item:hover .ind-content p { opacity: 1; }

    /* â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• 
   RESPONSIVE
â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â• â•  */
    @media(max-width:1024px) {
      /* General Grids */
      .sgrid, .wgrid, .psteps, .bento-grid, .ftop { grid-template-columns: repeat(2, 1fr) !important; }
  .pgrid, .dash-grid-2, .hero-dash-split, .grid-cols-2 { grid-template-columns: 1fr !important; }
      .rev-logos { gap: 20px; padding: 16px 24px; border-radius: 20px; }
      .dtabs { flex-wrap: wrap; }
      .hero-dash-left { padding: 40px; }
      .hero-dash-right { padding: 40px; border-left: none; border-top: 1px solid var(--border); }
      .pin .dash-grid-2 > div:nth-child(2) {
        border-left: none !important;
        border-top: 1px solid var(--border) !important;
        border-radius: 0 0 24px 24px !important;
      }
      .psteps::before { display: none; }

      /* Shift Navigation to Tablet */
      
      .dr-row {
        grid-template-columns: repeat(2, 1fr) !important;
      }

      .nlinks { display: none; }
      .ham { display: flex; }
      
      /* Convert Vertical Tabs to Horizontal Scroll on Tablet */
      .v-tabs-container { grid-template-columns: 1fr !important; padding: 30px; }
      .v-tabs { flex-direction: row; overflow-x: auto; border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 15px; scrollbar-width: none; }
      .v-tab { white-space: nowrap; flex-shrink: 0; }
      .v-tab.active::after { display: none; }

      /* Hero Section Centering for Tablet */
      .hero-in { grid-template-columns: 1fr !important; gap: 40px; text-align: center; }
      .hero-in .fu { margin: 0 auto; display: flex; flex-direction: column; align-items: center; }
      .hero p { text-align: center; margin: 0 auto 30px; }
      .hbtns { justify-content: center; }
      .badge { justify-content: center; flex-direction: row !important; margin-bottom: 35px !important; }
      .hstats { justify-content: center; }
      
      .ind-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; padding: 0 20px; }
      .ind-item.span-2-row { grid-row: span 1; }
      .ind-item.span-2-col { grid-column: span 1; }
      .ind-item:nth-child(1) { grid-column: span 2; grid-row: span 2; } /* Keep Ecommerce large */
      .ind-item:nth-child(4), .ind-item:nth-child(5) { grid-column: span 2; } /* Keep SaaS and Finance wide */
    }

    @media(max-width:768px) {
      /* LOW END DEVICE GPU OPTIMIZATION */
      .orb { display: none; }
      .v-tabs-container, .dash, .sc:not(.feat), .wc, .fcard, .bento-card, .npill, .mob-menu { backdrop-filter: none !important; background: #fff !important; box-shadow: 0 4px 15px rgba(0,0,0,0.05) !important; }
      .sc.feat { display: block !important; box-shadow: 0 4px 15px rgba(30, 58, 138, 0.15) !important; }
      
      section { padding: 60px 20px !important; }
      .section-bg2, .section-dark { padding: 60px 0 !important; }
      .hero { padding: 120px 20px 40px !important; min-height: auto !important; }
      .hero-center { padding-top: 130px !important; min-height: auto !important; }
      .shead { margin-bottom: 32px !important; }
      .stitle { font-size: 2.1rem !important; }
      .bento-card, .sc, .fcard, .wc { padding: 22px !important; }
      .hz-card { padding: 30px !important; flex: 0 0 280px !important; }

      .bento-grid { grid-template-columns: 1fr !important; }

      .hero-dash-left, .hero-dash-right { padding: 30px; }
      .dash-grid-2 > div { padding: 30px !important; }
      .hero-stats-row { flex-direction: column; gap: 20px; }
      .hero-title-main { font-size: 2.4rem !important; }
      
      .form-grid { grid-template-columns: 1fr !important; }
      .dash-grid-2 { grid-template-columns: 1fr !important; gap: 30px; }
      .faq-split { grid-template-columns: 1fr !important; gap: 16px; }

      .dcharts {
        grid-template-columns: 1fr !important;
      }

      .dmets {
        grid-template-columns: 1fr !important;
      }

      .dr-row {
        grid-template-columns: 1fr !important;
      }

      .sgrid {
        grid-template-columns: 1fr !important;
      }

      .wgrid {
        grid-template-columns: 1fr !important;
      }

      .psteps {
        grid-template-columns: 1fr !important;
      }

      .ftop {
        grid-template-columns: 1fr !important;
      }

      .fbot {
        flex-direction: column;
        text-align: center;
      }
      .donut-wrap { flex-direction: column; align-items: center; gap: 16px; } /* mobile fallback */

      .ctacard {
        padding: 44px 24px;
      }

      .hstats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
        width: 100%;
        text-align: center;
      }
      .hstats .hsd {
        display: none;
      }
      .hstats .hs {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
      }
      
      .marq-wrap::before, .marq-wrap::after {
        width: 40px !important;
      }
      
      .ind-bento { grid-template-columns: 1fr; grid-auto-rows: 260px; }
      .ind-item:nth-child(1), .ind-item:nth-child(4), .ind-item:nth-child(5) { grid-column: span 1; grid-row: span 1; }
      .ind-content p { opacity: 1; transform: none; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
      .ind-content { transform: translateY(0); padding: 24px; }
      .ind-bg { opacity: 0.6; filter: grayscale(40%); }
    }

    @media(max-width:480px) {
      .hbtns {
        flex-direction: column;
      }

      .dmets {
        grid-template-columns: 1fr;
      }

      .wgrid {
        grid-template-columns: 1fr;
      }

      .psteps {
        grid-template-columns: 1fr;
      }

      .npill {
        padding: 9px 14px;
      }

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

      .dtop { flex-wrap: wrap; gap: 10px; }
      .dtab { padding: 5px 8px; font-size: 0.6rem; }
      .dtab-icon { margin-right: 3px; width: 12px !important; height: 12px !important; }
      .dr-kw { font-size: 0.58rem; }
      .dc-title { font-size: 0.65rem; }
      
      .testi-marq .testi-card { width: 320px; }
      .testi-marq .testi-content { padding: 24px; }

      .cs-card { flex: 0 0 100% !important; gap: 16px !important; height: 420px; }
      .cs-title { font-size: 1.3rem !important; }
      .cs-metric { font-size: 1.8rem !important; }
    }
/* ==========================================================================
   INDIVIDUAL CASE STUDY (cs-timber-supplier.html)
   ========================================================================== */

.css-hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.css-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.05);
  animation: heroZoom 10s ease-out forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.css-hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(10,10,12,0.4) 0%, rgba(10,10,12,0.95) 100%);
  z-index: 1;
}

.css-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 24px;
}

.css-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 24px 0;
  letter-spacing: -1px;
}

.css-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Quick Metrics Bar */
.css-metrics-bar {
  display: flex;
  gap: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(10px);
  justify-content: space-between;
  transform: translateY(-50%);
}

.css-metric-box {
  flex: 1;
  text-align: center;
  position: relative;
}

.css-metric-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -12px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.css-m-val {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--p), var(--ac));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.css-m-lbl {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Split Layout */
.css-split {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.css-col-left {
  flex: 0 0 35%;
}

.css-col-right {
  flex: 1;
}

.css-sticky {
  position: sticky;
  top: 100px;
}

.css-h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.css-p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 24px;
}

.css-inline-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.css-meta-box {
  background: var(--bg2);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.05);
}

.css-meta-box h4 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 16px;
}

.css-meta-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.css-meta-box ul li {
  color: rgba(255,255,255,0.7);
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.css-meta-box ul li::before {
  content: 'â†’';
  position: absolute;
  left: 0;
  color: var(--p);
  font-weight: bold;
}

@media (max-width: 1024px) {
  .css-metrics-bar {
    flex-direction: column;
    transform: translateY(0);
    margin-bottom: 60px;
  }
  .css-metric-box:not(:last-child)::after {
    display: none;
  }
  .css-split {
    flex-direction: column;
  }
  .css-col-left {
    flex: 1;
  }
}
.hero-word-slider {
  background: linear-gradient(135deg, var(--ac), var(--g));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  white-space: nowrap;
  text-align: left;
  padding-bottom: 0.15em;
  margin-bottom: -0.15em;
  min-width: 250px;
}
@media (max-width: 768px) {
  .hero-word-slider {
    min-width: 200px;
  }
}

/* 1. Define a visible resting state for inactive tabs */
.dtab {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: .7rem;
  font-weight: 600;
  cursor: pointer;
  /* Changed from transparent to a subtle resting background */
  background: rgba(30, 58, 138, 0.04); 
  /* Added a light border to clearly define the clickable area */
  border: 1px solid rgba(30, 58, 138, 0.08); 
  color: var(--text); 
  transition: all 0.25s ease;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
}

/* 2. Keep your existing active state */
.dtab.active {
  background: linear-gradient(135deg, var(--p), var(--p2));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(30, 58, 138, .28);
}

/* 3. Enhance the hover state for inactive tabs */
.dtab:hover:not(.active) {
  /* Darken the background slightly on hover */
  background: rgba(30, 58, 138, 0.1); 
  border-color: rgba(30, 58, 138, 0.15);
  color: var(--p);
  /* Add a tiny lift effect to confirm interactivity */
  transform: translateY(-1px); 
}

.dr-row {
  /* Shift from 3 columns to 2 to eliminate the cramped overlap */
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 12px;
}

.dr-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 10px;
  cursor: pointer;
  transition: .25s;
  border: 1px solid transparent;
  height: 38px;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CONTACT REDESIGN SECTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-redesign {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #0f172a 100%);
}

.cr-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.cr-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(220,38,38,0.12) 0%, transparent 70%);
  top: -150px; left: -100px;
}
.cr-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,58,138,0.2) 0%, transparent 70%);
  bottom: -100px; right: 5%;
}

.cr-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  max-width: 1200px;
  margin: 0 auto;
}

/* LEFT */
.cr-left {
  padding: 80px 60px 80px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cr-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ac);
  margin-bottom: 28px;
}
.cr-label-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--ac);
  animation: pulse 2s ease-in-out infinite;
}

.cr-heading {
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}
.cr-heading-accent {
  background: linear-gradient(90deg, var(--ac), var(--g));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cr-subtext {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 44px;
  max-width: 420px;
}

/* Info pills */
.cr-info-stack { display: flex; flex-direction: column; gap: 14px; margin-bottom: 44px; }

.cr-info-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}
.cr-info-pill:hover {
  background: rgba(220,38,38,0.08);
  border-color: rgba(220,38,38,0.4);
  transform: translateX(6px);
}

.cr-info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(220,38,38,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--ac);
}
.cr-info-icon svg { width: 20px; height: 20px; }

.cr-info-text { display: flex; flex-direction: column; flex: 1; }
.cr-info-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.cr-info-value { font-size: 0.95rem; font-weight: 600; color: #fff; }

.cr-info-arrow { font-size: 1.1rem; color: rgba(255,255,255,0.25); transition: all 0.3s; }
.cr-info-pill:hover .cr-info-arrow { color: var(--ac); }

/* Trust bar */
.cr-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
}
.cr-trust-item { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.cr-trust-num { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.cr-trust-label { font-size: 0.72rem; font-weight: 500; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; }
.cr-trust-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* RIGHT */
.cr-right {
  padding: 60px 80px 60px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border-left: 1px solid rgba(255,255,255,0.07);
}

.cr-form-card {
  width: 100%;
  max-width: 520px;
}

.cr-form-header { margin-bottom: 32px; }
.cr-form-header h3 { font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.cr-form-header p { font-size: 0.9rem; color: rgba(255,255,255,0.45); }

/* Form fields */
.cr-form { display: flex; flex-direction: column; gap: 18px; }
.cr-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.cr-field { display: flex; flex-direction: column; gap: 8px; }
.cr-field label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
}
.cr-field input,
.cr-field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.95rem;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: all 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}
.cr-field input::placeholder,
.cr-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.cr-field input:focus,
.cr-field textarea:focus {
  border-color: var(--ac);
  background: rgba(220, 38, 38, 0.04);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}
.cr-field textarea { resize: none; }

/* Chips */
.cr-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.cr-chip {
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s ease;
  font-family: inherit;
}
.cr-chip:hover {
  border-color: var(--ac);
  color: var(--ac);
}
.cr-chip.active {
  background: linear-gradient(135deg, var(--p), var(--ac));
  border-color: transparent;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.35);
}

/* Submit */
.cr-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 17px 28px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, var(--p), var(--ac));
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(30, 58, 138, 0.3);
  margin-top: 4px;
}
.cr-submit svg { width: 20px; height: 20px; transition: transform 0.3s; }
.cr-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(220, 38, 38, 0.35);
}
.cr-submit:hover svg { transform: translateX(4px); }

.cr-disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

@media (max-width: 900px) {
  .contact-redesign { padding: 0 !important; width: 100% !important; overflow: hidden !important; }
  .cr-inner { display: flex !important; flex-direction: column !important; width: 100% !important;  overflow: hidden !important; }
  .cr-left { padding: 40px 20px 20px !important; width: 100% !important; box-sizing: border-box !important; }
  .cr-right { 
    padding: 30px 20px 60px !important; 
    border-left: none !important; 
    border-top: 1px solid rgba(255,255,255,0.07) !important; 
    display: flex !important; 
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .cr-form-card { width: 100% !important;  margin: 0 auto !important; }
  .cr-row-2 { display: flex !important; flex-direction: column !important; gap: 16px !important; }
  .cr-field input, .cr-field textarea { width: 100% !important;  box-sizing: border-box !important; }
  .cr-trust { flex-wrap: wrap !important; gap: 12px !important; justify-content: center !important; padding: 16px !important; width: 100% !important; box-sizing: border-box !important; }
  .cr-trust-item { flex: 1 1 100% !important; text-align: center !important; }
  .cr-trust-divider { display: none !important; }
  .cr-submit { white-space: normal !important; height: auto !important; text-align: center !important; padding: 14px !important; width: 100% !important; box-sizing: border-box !important; }
  .cr-submit span { white-space: normal !important; }
  .cr-chips { justify-content: center !important; }
}

/* Floating Action Button (Mobile Optimized) */
.mobile-fab-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.fab-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p), var(--p2));
  color: #fff;
  border: none;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 2;
  outline: none;
}
.fab-toggle:hover { transform: scale(1.05); }

.fab-toggle svg {
  width: 28px;
  height: 28px;
  position: absolute;
  transition: 0.3s ease;
}
.fab-icon-close { opacity: 0; transform: scale(0.5) rotate(-90deg); }
.is-open .fab-icon-chat { opacity: 0; transform: scale(0.5) rotate(90deg); }
.is-open .fab-icon-close { opacity: 1; transform: scale(1) rotate(0); }

.fab-menu {
  display: flex;
  flex-direction: column-reverse;
  gap: 14px;
  position: absolute;
  bottom: 75px;
  left: 5px;
  pointer-events: none;
}

.fab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  color: var(--p);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(20px) scale(0.8);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.fab-item svg { width: 22px; height: 22px; transition: 0.3s ease; }
.fab-item.wa { color: #25D366; }
.fab-item.call { color: #06B6D4; }
.fab-item.email { color: #1E293B; }

.fab-item:hover {
  background: linear-gradient(135deg, var(--p), var(--p2));
  color: #fff;
}
.fab-item.wa:hover svg, .fab-item.call:hover svg, .fab-item.email:hover svg { color: #fff; }

.is-open .fab-menu { pointer-events: auto; }
.is-open .fab-item { transform: translateY(0) scale(1); opacity: 1; }

.is-open .fab-item:nth-child(1) { transition-delay: 0s; }
.is-open .fab-item:nth-child(2) { transition-delay: 0.05s; }
.is-open .fab-item:nth-child(3) { transition-delay: 0.1s; }

.fab-label {
  position: absolute;
  left: 64px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--p2);
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  opacity: 0;
  transform: translateX(-15px);
  pointer-events: none;
  transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.is-open .fab-item .fab-label {
  opacity: 1;
  transform: translateX(0);
}
.is-open .fab-item:nth-child(1) .fab-label { transition-delay: 0.05s; }
.is-open .fab-item:nth-child(2) .fab-label { transition-delay: 0.1s; }
.is-open .fab-item:nth-child(3) .fab-label { transition-delay: 0.15s; }

/* Agency Stats Section Grid */
.agency-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.agency-stat-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(30, 58, 138, 0.05);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.agency-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
  border-color: var(--ac);
}
.agency-stat-num {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--p), var(--ac));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.agency-stat-lbl {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
}
@media (max-width: 768px) {
  .agency-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .agency-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STRATEGIC GROWTH FRAMEWORK MODAL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.framework-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.framework-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.framework-modal-card {
  background: #ffffff;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(15, 23, 42, 0.05);
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.framework-modal-overlay.active .framework-modal-card {
  transform: translateY(0) scale(1);
}

.fm-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.05);
  border: none;
  font-size: 1.5rem;
  color: var(--p);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}

.fm-close:hover {
  background: var(--ac);
  color: #fff;
  transform: rotate(90deg);
}

.fm-content {
  padding: 48px;
  flex: 1;
  overflow-y: auto;
}

.fm-step-indicator {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ac);
  margin-bottom: 12px;
}

.fm-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.2;
}

.fm-body {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  transition: opacity 0.2s ease-in-out;
}

.fm-body p {
  margin-bottom: 24px;
}

.fm-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fm-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  color: var(--p);
}

.fm-list li::before {
  content: 'âœ“';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--ac);
  font-weight: bold;
  font-size: 1rem;
}

.fm-nav {
  display: flex;
  justify-content: space-between;
  padding: 24px 48px;
  background: rgba(15, 23, 42, 0.02);
  border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.fm-nav-btn {
  background: none;
  border: none;
  color: var(--p);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.fm-nav-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}

.fm-nav-btn:hover {
  color: var(--ac);
}

.fm-nav-btn#fmPrevBtn:hover svg {
  transform: translateX(-4px);
}

.fm-nav-btn#fmNextBtn:hover svg {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .fm-content { padding: 32px; }
  .fm-nav { padding: 20px 32px; }
  .fm-title { font-size: 1.6rem; }
}
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   CUSTOM SOCIAL ICONS (FOOTER)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.custom-socials {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.c-social {
  position: relative;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}

/* Tooltip */
.cs-tooltip {
  position: absolute;
  top: -45px;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
  z-index: 2;
}

.cs-tooltip::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: #0f172a;
}

/* Icon */
.cs-icon {
  width: 20px;
  height: 20px;
  color: var(--p);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

/* Background fill */
.cs-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-radius: 14px;
  transition: all 0.3s ease-out;
  z-index: 0;
}

/* Colors */
.cs-bg-linkedin { background: #0077b5; }
.cs-bg-twitter { background: #1DA1F2; }
.cs-bg-instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.cs-bg-youtube { background: #FF0000; }

/* Hover States */
.c-social:hover {
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.c-social:hover .cs-bg {
  height: 100%;
}

.c-social:hover .cs-icon {
  color: #ffffff;
  transform: scale(1.15);
}

.c-social:hover .cs-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
}
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   UPDATED FLOATING CONTACT BUTTONS
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.fc-btn {
  width: 46px !important;
  height: 46px !important;
  border-radius: 14px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background-color: #ffffff !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.05) !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: relative !important;
  overflow: visible !important;
  text-decoration: none !important;
}

.fc-btn .fc-icon {
  width: 20px !important;
  height: 20px !important;
  position: relative !important;
  z-index: 1 !important;
  transition: all 0.3s ease !important;
}

/* Tooltip */
.fc-btn .fc-tooltip {
  position: absolute !important;
  left: 60px !important;
  background: #0f172a !important;
  color: #ffffff !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  padding: 6px 12px !important;
  border-radius: 6px !important;
  pointer-events: none !important;
  opacity: 0 !important;
  transform: translateX(-10px) scale(0.9) !important;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
  white-space: nowrap !important;
  z-index: 2 !important;
}

.fc-btn .fc-tooltip::after {
  content: '' !important;
  position: absolute !important;
  left: -4px !important;
  top: 50% !important;
  transform: translateY(-50%) rotate(45deg) !important;
  width: 8px !important;
  height: 8px !important;
  background: #0f172a !important;
}

/* Background fill */
.fc-btn .fc-bg {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 0 !important;
  border-radius: 14px !important;
  transition: all 0.3s ease-out !important;
  z-index: 0 !important;
}

/* Colors */
.fc-bg-wa { background: #25D366 !important; }
.fc-bg-call { background: #06B6D4 !important; }
.fc-bg-email { background: linear-gradient(135deg, var(--p), var(--ac)) !important; }

.fc-wa .fc-icon { color: #25D366 !important; }
.fc-call .fc-icon { color: #06B6D4 !important; }
.fc-email .fc-icon { color: var(--p) !important; }

/* Hover States */
.fc-btn:hover {
  border-color: transparent !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
  background: #ffffff !important;
}

.fc-btn:hover .fc-bg {
  height: 100% !important;
}

.fc-btn:hover .fc-icon {
  color: #fff !important;
  transform: scale(1.15) !important;
}

.fc-btn:hover .fc-tooltip {
  opacity: 1 !important;
  transform: translateX(0) scale(1) !important;
}
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   UPDATED BUTTONS (Uiverse Fill Effect)
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
/* Primary Button (.btn-p) */
.btn-p {
  background: transparent !important;
  color: var(--p) !important;
  padding: 13px 26px !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  font-size: .88rem !important;
  border: 2px solid var(--p) !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  text-decoration: none !important;
  display: inline-block !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
}

.btn-p::before {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 0 !important;
  background: linear-gradient(135deg, var(--p), var(--p2)) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  z-index: -1 !important;
  border-radius: 100px !important;
}

.btn-p:hover {
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3) !important;
  transform: translateY(-3px) !important;
}

.btn-p:hover::before {
  height: 100% !important;
}

/* Secondary/Outline Button (.btn-o) */
.btn-o {
  background: transparent !important;
  color: var(--ac) !important;
  padding: 13px 26px !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  font-size: .88rem !important;
  border: 2px solid var(--ac) !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  text-decoration: none !important;
  display: inline-block !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
}

.btn-o::before {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 0 !important;
  background: var(--ac) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  z-index: -1 !important;
  border-radius: 100px !important;
}

.btn-o:hover {
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3) !important;
  transform: translateY(-3px) !important;
}

.btn-o:hover::before {
  height: 100% !important;
}

/* White Button (.btnw) */
.btnw {
  background: transparent !important;
  color: #fff !important;
  padding: 14px 34px !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  font-size: .9rem !important;
  border: 2px solid #fff !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  text-decoration: none !important;
  display: inline-block !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
}

.btnw::before {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 0 !important;
  background: #fff !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  z-index: -1 !important;
  border-radius: 100px !important;
}

.btnw:hover {
  color: var(--p) !important;
  border-color: transparent !important;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-3px) !important;
}

.btnw:hover::before {
  height: 100% !important;
}

/* Submit Button in Contact form */
.c-sub {
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  background: transparent !important;
  color: var(--p) !important;
  border: 2px solid var(--p) !important;
}

.c-sub::before {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 0 !important;
  background: linear-gradient(135deg, var(--p), var(--p2)) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  z-index: -1 !important;
}

.c-sub:hover {
  color: #fff !important;
  border-color: transparent !important;
}

.c-sub:hover::before {
  height: 100% !important;
}
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   UPDATED PNUM ANIMATION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.pnum {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  background: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: var(--p) !important;
  margin: 0 auto 14px !important;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.1) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 2 !important;
  border: 2px solid var(--border) !important;
  overflow: hidden !important;
}

.pnum span {
  position: relative !important;
  z-index: 1 !important;
  transition: color 0.4s ease !important;
}

.pnum::before {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 0 !important;
  background: linear-gradient(135deg, var(--p), var(--p2)) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  z-index: 0 !important;
  border-radius: 50% !important;
}

.pitem:hover .pnum {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3) !important;
  border-color: transparent !important;
  color: #fff !important;
}

.pitem:hover .pnum span {
  color: #fff !important;
}

.pitem:hover .pnum::before {
  height: 100% !important;
}

/* For Snake layout (Desktop) pnum overrides */
.pitem-snake .pnum {
  margin-right: 15px !important;
  margin-bottom: 0 !important;
  flex-shrink: 0 !important;
}
/* Fix hover triggers for pnum */
.pitem-snake:hover .pnum, .pnum:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 10px 25px rgba(30, 58, 138, 0.3) !important;
  border-color: transparent !important;
  color: #fff !important;
}

.pitem-snake:hover .pnum span, .pnum:hover span {
  color: #fff !important;
}

.pitem-snake:hover .pnum::before, .pnum:hover::before {
  height: 100% !important;
}
/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   REFINED PREMIUM MOBILE EXECUTION
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
@media(max-width:768px) {
  /* GLOBAL MOBILE SPACING & TYPOGRAPHY */
  html, body { overflow-x: hidden !important; width: 100%; }

  /* TASK 1: Eliminate JS lazy loading lag on mobile for instant rendering */
  .fu { opacity: 1 !important; transform: none !important; }

  /* TASK 2: Reduce excessive vertical spacing for a tighter rhythm */
  section { padding: 56px 20px !important; }
  .section-bg2, .section-dark { padding: 56px 0 !important; }
  .hero { padding: 110px 20px 50px !important; min-height: auto !important; }
  .hero-center { padding-top: 110px !important; min-height: auto !important; }
  
  .shead { margin-bottom: 32px !important; }
  .stitle { font-size: 2.1rem !important; line-height: 1.2 !important; }
  .bento-card, .sc, .fcard, .wc { padding: 24px !important; }
  .hz-card { padding: 30px !important; flex: 0 0 280px !important; }

  .bento-grid { grid-template-columns: 1fr !important; gap: 20px !important; }

  /* Hero Section Alignment */
  .hero-dash-left, .hero-dash-right { padding: 30px 24px !important; }
  .dash-grid-2 > div { padding: 30px 24px !important; }
  .hero-stats-row { flex-direction: column; gap: 20px; }
  .hero-title-main { font-size: 2.6rem !important; line-height: 1.15 !important; }
  
  /* Shrink Dash mockup slightly to reduce vertical scroll fatigue */
  .dash { transform: scale(0.95); transform-origin: top; margin-bottom: -20px; }

  /* Grid Layout Fixes */
  .form-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
  .dash-grid-2 { grid-template-columns: 1fr !important; gap: 24px !important; }
  .faq-split { grid-template-columns: 1fr !important; gap: 16px !important; }

  .dcharts, .dmets, .dr-row, .sgrid, .wgrid, .psteps, .ftop {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .fbot {
    flex-direction: column;
    text-align: center;
    gap: 20px !important;
  }
  .donut-wrap { flex-direction: column; align-items: center; gap: 16px !important; }

  /* Cards */
  .ctacard {
    padding: 44px 24px !important;
    border-radius: 24px !important;
  }

  /* Stats Layout */
  .hstats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
    width: 100% !important;
    text-align: center !important;
  }
  .hstats .hsd { display: none !important; }
  .hstats .hs {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 6px !important;
  }
  
  .marq-wrap::before, .marq-wrap::after {
    width: 30px !important;
  }
  
  /* Bento Industry Grid */
  .ind-bento { grid-template-columns: 1fr !important; grid-auto-rows: 220px !important; padding: 0 24px !important; gap: 16px !important; }
  .ind-item:nth-child(1), .ind-item:nth-child(4), .ind-item:nth-child(5) { grid-column: span 1 !important; grid-row: span 1 !important; }
  .ind-content p { opacity: 1 !important; transform: none !important; display: -webkit-box !important; -webkit-line-clamp: 3 !important; -webkit-box-orient: vertical !important; overflow: hidden !important; }
  .ind-content { transform: translateY(0) !important; padding: 24px !important; }
  
  /* Framework Snake (Mobile) removed to fix alignment */
}

@media(max-width:480px) {
  .hbtns {
    flex-direction: column !important;
    width: 100% !important;
    gap: 16px !important;
  }
  .hbtns .btn-p, .hbtns .btn-o {
    width: 100% !important;
    text-align: center !important;
  }
}

@media (max-width: 900px) {
      .ssub { padding: 0 15px; font-size: 0.9rem !important; line-height: 1.6; text-align: left; }
    }/* --- Reusable Hero Trust Banner --- */
.hero-trust-banner {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}
.htb-badges {
  display: flex;
}
.htb-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  margin-left: -12px;
}
.htb-badge:first-child { margin-left: 0; font-size: 14px; background: var(--p); z-index: 3; }
.htb-badge:nth-child(2) { background: var(--ac); color: var(--bg); z-index: 2; }
.htb-badge:nth-child(3) { background: #1e293b; z-index: 1; }

/* --- Reusable Case Study Metric Badge --- */
.cs-metric-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--p);
  color: #fff;
  padding: 6px 12px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.85rem;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


/* ---------------------------------------
   MOBILE UX REFINEMENTS (PHASE 4)
--------------------------------------- */
@media (max-width: 768px) {
  /* Hero Section */
  .hero { padding: 80px 20px 40px; }
  .hero-title-main { font-size: 2.5rem !important; line-height: 1.1; margin-bottom: 15px; }
  .hero-desc { font-size: 1.05rem !important; margin-bottom: 30px; }

  /* Framework / Sections */
  .sin { padding: 40px 20px; }
  .stitle { font-size: 2rem !important; margin-bottom: 15px; }
  section { padding: 40px 0 !important; }

  /* Touch Target Sizes */
  .btn-p, .ncta, .mob-cta { padding: 16px 28px !important; font-size: 1.1rem; border-radius: 50px; }
  a, button { min-height: 44px; min-width: 44px; }

  /* Case Studies (Phase 5) */
  .cs-card { height: 380px; margin-bottom: 20px; }
  .cs-info { padding: 25px 20px; }
  .cs-metric-badge { font-size: 0.95rem; padding: 6px 14px; top: 15px; left: 15px; }

  /* Contact Funnel */
  .form-control { padding: 16px; font-size: 1rem; }
  .cr-form-card { padding: 30px 20px; }
}

/* Option 4: Card Lift Illusion */
.pitem-snake {
  transform: perspective(1000px) rotateX(4deg) translateY(-2px) !important;
  box-shadow: 0 15px 35px rgba(30, 58, 138, 0.08) !important;
  border-bottom: 3px solid var(--ac) !important;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease !important;
}
.pitem-snake:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-8px) !important;
  box-shadow: 0 25px 45px rgba(30, 58, 138, 0.15) !important;
}

/* Option 5: Animated Arrows */
@keyframes arrow-bounce {
  0% { transform: translateX(0); }
  50% { transform: translateX(4px); }
  100% { transform: translateX(0); }
}
.step-arrow {
  display: inline-block;
  color: var(--ac);
  margin-left: 4px;
  font-weight: 800;
  transition: transform 0.3s ease;
}
.pitem-snake:hover .step-arrow,
.snake-step-v:hover .step-arrow {
  animation: arrow-bounce 1s infinite ease-in-out;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   VERTICAL SNAKE TIMELINE
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.section-merged {
  background: linear-gradient(to bottom, var(--bg) 0%, var(--bg2) 10%, var(--bg2) 90%, var(--bg) 100%);
  padding: 100px 0;
  border: none;
}

@media (max-width: 768px) {
  .section-merged { padding: 56px 0 !important; }
}

.snake-timeline-vertical {
  position: relative;
  max-width: 800px;
  margin: 30px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: 20px 0 60px;
}
.snake-svg-vertical {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 5%, black 95%, transparent 100%);
}
.snake-path-vert { stroke-dasharray: 12, 12; }
.snake-step-v {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 50%;
  margin-bottom: -20px;
}
.snake-step-v.step-left {
  align-self: flex-start;
  justify-content: flex-end;
  text-align: left;
  padding-right: 50px;
  flex-direction: row-reverse;
}
.snake-step-v.step-right {
  align-self: flex-end;
  justify-content: flex-start;
  text-align: left;
  padding-left: 50px;
  margin-top: 40px;
}
.snake-step-v .pnum { flex-shrink: 0; margin: 0 !important; }
.snake-step-v.step-left .pnum { margin-left: 20px; }
.snake-step-v.step-right .pnum { margin-right: 20px; }
.snake-text-v {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-bottom: 3px solid var(--ac);
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  flex: 1;
  position: relative;
  overflow: hidden;
}
.snake-text-v::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.snake-step-v:hover .snake-text-v {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
  border-color: rgba(6, 182, 212, 0.6);
  background: rgba(255, 255, 255, 0.95);
}
.snake-step-v:hover .snake-text-v::before { opacity: 1; }
.snake-text-v h4 { font-size: 1.15rem; font-weight: 700; color: var(--p); margin-bottom: 8px; }
.snake-text-v p { font-size: 0.9rem; line-height: 1.6; color: var(--muted); margin: 0; }
.snake-click-indicator { font-size: 0.75rem; color: var(--ac); font-weight: 700; margin-top: 16px; text-transform: uppercase; letter-spacing: 0.5px; display: flex; align-items: center; opacity: 0.8; transition: opacity 0.3s ease; }
.snake-step-v:hover .snake-click-indicator { opacity: 1; }
@media (max-width: 900px) {
  .snake-svg-vertical { display: none !important; }
  .snake-timeline-vertical { padding: 0 20px !important; gap: 24px !important; }
  .snake-step-v, .snake-step-v.step-left, .snake-step-v.step-right {
    width: 100% !important; padding: 24px !important; margin: 0 !important;
    background: #fff !important; border-radius: 16px !important;
    border: 1px solid var(--border) !important; border-bottom: 3px solid var(--ac) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03) !important;
    flex-direction: column !important; align-items: flex-start !important;
    text-align: left !important; transform: none !important;
  }
  .snake-text-v { padding: 0 !important; background: transparent !important; border: none !important; box-shadow: none !important; backdrop-filter: none !important; margin: 0 !important; }
  .snake-step-v .pnum, .snake-step-v.step-left .pnum, .snake-step-v.step-right .pnum {
    position: static !important; margin: 0 0 16px 0 !important;
    transform: none !important; left: auto !important; right: auto !important; top: auto !important;
  }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   STRATEGIC GROWTH FRAMEWORK MODAL
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.framework-modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(15, 23, 42, 0.7); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.framework-modal-overlay.active { opacity: 1; visibility: visible; }
.framework-modal-card {
  background: #ffffff; width: 100%; max-width: 600px; max-height: 90vh;
  border-radius: 24px; box-shadow: 0 24px 60px rgba(15, 23, 42, 0.15), 0 0 0 1px rgba(15, 23, 42, 0.05);
  position: relative; transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden; display: flex; flex-direction: column;
}
.framework-modal-overlay.active .framework-modal-card { transform: translateY(0) scale(1); }
.fm-close {
  position: absolute; top: 20px; right: 20px; width: 40px; height: 40px;
  border-radius: 50%; background: rgba(15, 23, 42, 0.05); border: none;
  font-size: 1.5rem; color: var(--p); cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: all 0.2s; z-index: 10;
}
.fm-close:hover { background: var(--ac); color: #fff; transform: rotate(90deg); }
.fm-content { padding: 48px; flex: 1; overflow-y: auto; }
.fm-step-indicator { font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ac); margin-bottom: 12px; }
.fm-title { font-size: 2rem; font-weight: 800; color: var(--text); margin-bottom: 24px; line-height: 1.2; }
.fm-body { font-size: 1.05rem; color: var(--muted); line-height: 1.7; transition: opacity 0.2s ease-in-out; }
.fm-body p { margin-bottom: 24px; }
.fm-list { list-style: none; padding: 0; margin: 0; }
.fm-list li { position: relative; padding-left: 28px; margin-bottom: 16px; color: var(--p); }
.fm-list li::before { content: 'âœ“'; position: absolute; left: 0; top: 2px; color: var(--ac); font-weight: bold; font-size: 1rem; }
.fm-nav { display: flex; justify-content: space-between; padding: 24px 48px; background: rgba(15, 23, 42, 0.02); border-top: 1px solid rgba(15, 23, 42, 0.05); }
.fm-nav-btn { background: none; border: none; color: var(--p); font-weight: 700; font-size: 0.95rem; cursor: pointer; display: flex; align-items: center; gap: 8px; transition: all 0.2s; }
.fm-nav-btn svg { width: 20px; height: 20px; transition: transform 0.2s; }
.fm-nav-btn:hover { color: var(--ac); }
.fm-nav-btn#fmPrevBtn:hover svg { transform: translateX(-4px); }
.fm-nav-btn#fmNextBtn:hover svg { transform: translateX(4px); }
@media (max-width: 768px) {
  .fm-content { padding: 32px; }
  .fm-nav { padding: 20px 32px; }
  .fm-title { font-size: 1.6rem; }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   GLOBAL CONTACT POPUP
â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.contact-popup-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(15, 23, 42, 0.8); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.contact-popup-overlay.active {
  opacity: 1; visibility: visible;
}
.contact-popup-card {
  background: #ffffff;
  width: 100%; max-width: 450px;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(15, 23, 42, 0.05);
  position: relative;
  transform: translateY(30px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.contact-popup-overlay.active .contact-popup-card {
  transform: translateY(0) scale(1);
}
.cp-close {
  position: absolute; top: 15px; right: 15px;
  width: 36px; height: 36px;
  border-radius: 50%; background: rgba(15, 23, 42, 0.05); border: none;
  font-size: 1.4rem; color: var(--p); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; z-index: 10;
}
.cp-close:hover {
  background: var(--ac); color: #fff; transform: rotate(90deg);
}
.cp-content {
  padding: 40px;
}
.cp-header {
  text-align: center; margin-bottom: 24px;
}
.cp-header h3 {
  font-size: 1.7rem; font-weight: 800; color: var(--text); margin-bottom: 10px;
}
.cp-header p {
  font-size: 0.95rem; color: var(--muted); margin: 0; line-height: 1.5;
}
.cp-form {
  display: flex; flex-direction: column; gap: 16px;
}
.cp-form input {
  width: 100%; padding: 14px 20px;
  border-radius: 12px; border: 1px solid rgba(15, 23, 42, 0.1);
  background: #f8fafc; color: var(--text);
  font-family: inherit; font-size: 0.95rem;
  transition: all 0.2s;
}
.cp-form input:focus {
  outline: none; border-color: var(--ac); background: #fff;
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}
.cp-submit {
  width: 100%; padding: 16px; margin-top: 8px;
  background: var(--ac); color: #fff; border: none; border-radius: 12px;
  font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(6, 182, 212, 0.3);
}
.cp-submit:hover {
  transform: translateY(-2px); box-shadow: 0 15px 25px rgba(6, 182, 212, 0.4);
}
@media (max-width: 480px) {
  .cp-content { padding: 30px 20px; }
  .cp-header h3 { font-size: 1.5rem; }
}

/* --- Blog Contact Form Overrides --- */
/* The base .cr-field is for dark themes, so we override it for the white background of the blog contact cards */
.blog-contact-card .cr-field label {
  color: var(--p2);
}
.blog-contact-card .cr-field input,
.blog-contact-card .cr-field textarea {
  color: var(--p2);
  background: transparent;
}
.blog-contact-card .cr-field input::placeholder,
.blog-contact-card .cr-field textarea::placeholder {
  color: #888888;
}
.blog-contact-card .cr-field input:focus,
.blog-contact-card .cr-field textarea:focus {
  border-color: var(--p);
  background: rgba(23, 92, 230, 0.02);
  box-shadow: 0 0 0 3px rgba(23, 92, 230, 0.1);
}


/* === FINAL SAFARI MARQUEE FIX V13 === */
.marq-wrap {
    display: flex !important;
    width: 100% !important;
    overflow: hidden !important;
    transform: translateZ(0) !important;
}

.marq, .marq.reverse {
    display: flex !important;
    flex: 0 0 auto !important;
    padding-right: 0 !important;
    animation: marq-scroll 80s linear infinite !important;
}

/* Removed hover pause to prevent sticky-hover issues on mobile */

.marq.reverse {
    animation-direction: reverse !important;
}

.client-logo {
    display: flex !important;
    flex: 0 0 auto !important;
    width: 180px !important;
    height: 80px !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 24px !important;
    background: #ffffff !important;
    border: 1.5px solid var(--border) !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02) !important;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s, border-color 0.3s !important;
    cursor: pointer !important;
}

.client-logo img {
    max-width: 140px !important;
    max-height: 45px !important;
    object-fit: contain !important;
}

.client-logo:hover {
    transform: translateY(-8px) scale(1.05) !important;
    border-color: var(--p) !important;
    box-shadow: 0 15px 35px rgba(30,58,138,0.15) !important;
    z-index: 10 !important;
}

@keyframes marq-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}


/* Scrollable tabs feature */
.t-tabs.scrollable-tabs { max-height: 420px; overflow-y: auto; overflow-x: hidden; padding-right: 10px; scrollbar-width: thin; scrollbar-color: var(--p) transparent; }
.t-tabs.scrollable-tabs::-webkit-scrollbar { width: 6px; }
.t-tabs.scrollable-tabs::-webkit-scrollbar-track { background: transparent; }
.t-tabs.scrollable-tabs::-webkit-scrollbar-thumb { background-color: var(--p); border-radius: 10px; }
@media (max-width: 992px) { .t-tabs.scrollable-tabs { max-height: none; overflow-y: visible; padding-right: 0; } }
