  :root {
      --blue: #1a4fa0;
      --blue-dk: #0d2d6b;
      --blue-md: #2563c8;
      --blue-lt: #e8f0fd;
      --blue-xl: #f0f5fe;
      --grey: #6b7280;
      --grey-lt: #f3f4f6;
      --grey-md: #e5e7eb;
      --grey-dk: #374151;
      --black: #111827;
      --white: #fff;
      --font: 'Syne', sans-serif;
      --radius: 10px;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, .06);
      --shadow-md: 0 8px 32px rgba(0, 0, 0, .12);
      --shadow-lg: 0 14px 40px rgba(15, 23, 42, .18);
      --transition: .25s cubic-bezier(.4, 0, .2, 1);
  }

  *,
  *::before,
  *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
  }

  html {
      scroll-behavior: smooth;
  }

  body {
      font-family: var(--font);
      background: var(--white);
      color: var(--black);
      overflow-x: hidden;
  }



  /* HERO */
  .hero {
      background: var(--blue-dk);
      padding: 88px 5vw 80px;
      position: relative;
      overflow: hidden;
      text-align: center;
  }

  .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 80% 20%, rgba(37, 99, 200, .3) 0%, transparent 60%), radial-gradient(ellipse 40% 60% at 15% 80%, rgba(255, 255, 255, .04) 0%, transparent 55%);
      pointer-events: none;
  }

  .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
          linear-gradient(rgba(8, 33, 61, 0.253), rgba(26, 79, 160, 0.342)),
          url(/assete/images/page-banner/client.webp);
      background-size: cover;
      background-position: center;
  }

  .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 1100px;
      /* margin: auto; */
  }

  .hero-tag {
      display: inline-block;
      font-size: .7rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: #fff;
      background: rgba(232, 240, 253, .12);
      border: 1px solid rgba(232, 240, 253, .2);
      padding: 4px 14px;
      border-radius: 30px;
      margin-bottom: 20px;
  }

  .hero h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.2rem, 4.5vw, 44px);
      color: var(--white);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -0.025em;
      margin-bottom: 16px;
  }

  .hero h1 em {
      font-style: normal;
      color: #ffffff;
  }

  .hero p {
      color: rgb(255, 255, 255);
      font-size: 1.05rem;
      max-width: 520px;
      margin: 0 auto;
  }

  /* STATS STRIP */
  .stats-strip {
      background: var(--blue);
      padding: 0 5vw;
  }

  .stats-inner {
      max-width: 1100px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
  }

  .stat {
      padding: 24px 28px;
      border-right: 1px solid rgba(255, 255, 255, .15);
      text-align: center;
  }

  .stat:last-child {
      border-right: none;
  }

  .stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
      margin-bottom: 4px;
  }

  .stat-label {
      font-size: .76rem;
      font-weight: 600;
      color: rgba(255, 255, 255, .65);
      text-transform: uppercase;
      letter-spacing: .08em;
  }

  /* SECTION COMMONS */
  section {
      padding: 88px 5vw;
  }

  .inner {
      max-width: 1100px;
      margin: auto;
  }

  .s-tag {
      display: inline-block;
      font-size: .68rem;
      font-weight: 700;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--blue);
      background: var(--blue-lt);
      padding: 4px 12px;
      border-radius: 30px;
      margin-bottom: 14px;
  }

  .s-title {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: clamp(2.2rem, 4.5vw, 44px);

      color: var(--black);
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin-bottom: 14px;
  }

  .s-lead {
      color: var(--grey);
      font-size: 1rem;
      max-width: 640px;
      margin-bottom: 52px;
  }

  .divider {
      width: 48px;
      height: 4px;
      background: var(--blue-md);
      border-radius: 4px;
      margin: 16px 0 48px;
  }

  /* FEATURED CLIENTS */
  #featured {
      background: var(--grey-lt);
  }

  .featured-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 22px;
  }

  .feat-card {
      background: var(--white);
      border: 1px solid var(--grey-md);
      border-radius: 14px;
      padding: 28px 26px;
      display: flex;
      align-items: center;
      gap: 18px;
      box-shadow: var(--shadow-sm);
      transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  }

  .feat-card:hover {
      border-color: var(--blue-md);
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
  }

  .feat-ico {
      width: 56px;
      height: 56px;
      border-radius: 12px;
      background: var(--blue-lt);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      flex-shrink: 0;
  }

  .feat-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: 1rem;
      font-weight: 800;
      color: var(--black);
      margin-bottom: 4px;
  }

  .feat-card p {
      font-size: .82rem;
      color: var(--grey);
  }

  .feat-badge {
      display: inline-block;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--blue);
      background: var(--blue-lt);
      padding: 2px 8px;
      border-radius: 20px;
      margin-top: 6px;
  }

  /* MUNICIPAL CLIENTS */
  #municipal {
      background: var(--blue-dk);
  }

  #municipal .s-tag {
      background: rgba(232, 240, 253, .15);
      color: var(--blue-lt);
  }

  #municipal .s-title {
      color: var(--white);
  }

  #municipal .s-lead {
      color: rgba(255, 255, 255, .55);
  }

  .muni-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 14px;
  }

  .muni-card {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: var(--radius);
      padding: 18px 20px;
      display: flex;
      align-items: center;
      gap: 14px;
      transition: background var(--transition), border-color var(--transition);
  }

  .muni-card:hover {
      background: rgba(255, 255, 255, .12);
      border-color: rgba(232, 240, 253, .3);
  }

  .muni-ico {
      width: 40px;
      height: 40px;
      border-radius: 9px;
      background: rgba(37, 99, 200, .35);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
  }

  .muni-card h3 {
      font-size: .92rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 3px;
  }

  .muni-card p {
      font-size: .75rem;
      color: rgba(255, 255, 255, .45);
  }

  /* PRIVATE SECTOR CLIENTS */
  #private {
      background: var(--white);
  }

  .private-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 18px;
  }

  .priv-card {
      background: var(--grey-lt);
      border: 1px solid var(--grey-md);
      border-radius: var(--radius);
      padding: 22px 20px;
      display: flex;
      align-items: center;
      gap: 16px;
      transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
  }

  .priv-card:hover {
      border-color: var(--blue-md);
      background: var(--blue-xl);
      box-shadow: var(--shadow-sm);
      transform: translateY(-2px);
  }

  .priv-ico {
      width: 46px;
      height: 46px;
      border-radius: 10px;
      background: var(--blue-lt);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
  }

  .priv-card h3 {
      font-family: 'Syne', sans-serif;
      font-size: .95rem;
      font-weight: 700;
      color: var(--black);
      margin-bottom: 4px;
  }

  .priv-card p {
      font-size: .8rem;
      color: var(--grey);
  }

  /* ALL CLIENTS FULL LIST */
  #allclients {
      background: var(--blue-xl);
  }

  .clients-list-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 12px;
  }

  .cl-item {
      background: var(--white);
      border: 1px solid var(--grey-md);
      border-radius: var(--radius);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .88rem;
      font-weight: 600;
      color: var(--grey-dk);
      box-shadow: var(--shadow-sm);
      transition: border-color var(--transition), background var(--transition), color var(--transition);
  }

  .cl-item:hover {
      border-color: var(--blue-md);
      background: var(--blue-lt);
      color: var(--blue-dk);
  }

  .cl-item .cl-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--blue-md);
      flex-shrink: 0;
  }

  .cl-num {
      font-size: .68rem;
      font-weight: 800;
      color: var(--grey);
      min-width: 22px;
  }

  /* CTA */
  .cta-strip {
      background: linear-gradient(135deg, var(--blue-dk) 0%, var(--blue) 60%, var(--blue-md) 100%);
      padding: 80px 5vw;
      text-align: center;
      position: relative;
      overflow: hidden;
  }

  .cta-strip::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 80% at 50% 120%, rgba(255, 255, 255, .07) 0%, transparent 60%);
      pointer-events: none;
  }

  .cta-strip h2 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.2rem, 4.5vw, 44px);
      font-weight: 800;
      color: var(--white);
      margin-bottom: 14px;
      position: relative;
      letter-spacing: -0.02em;
  }

  .cta-strip p {
      color: rgba(255, 255, 255, .7);
      margin-bottom: 34px;
      font-size: 1rem;
      position: relative;
  }

  .cta-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
  }

  .btn-white {
      display: inline-block;
      background: var(--white);
      color: var(--blue-dk);
      padding: 14px 32px;
      border-radius: var(--radius);
      font-weight: 700;
      font-size: .92rem;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
      transition: transform var(--transition), box-shadow var(--transition);
  }

  .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
  }

  .btn-outline-w {
      display: inline-block;
      background: #2d659a;
      color: var(--white);
      padding: 13px 32px;
      border-radius: var(--radius);
      font-weight: 600;
      font-size: .92rem;
      text-decoration: none;
      border: 1.5px solid rgba(255, 255, 255, .4);
      transition: background var(--transition), border-color var(--transition);
  }

  .btn-outline-w:hover {
      background: rgba(255, 255, 255, .1);
      border-color: rgba(255, 255, 255, .7);
  }


  /* SCROLL REVEAL */
  .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .5s ease, transform .5s ease;
  }

  .reveal.visible {
      opacity: 1;
      transform: none;
  }

  @media (max-width: 860px) {
      .stats-inner {
          grid-template-columns: repeat(2, 1fr);
      }

  }

  @media (max-width: 480px) {
      .stats-inner {
          grid-template-columns: 1fr 1fr;
      }
  }

  /* --------------------------------------------------------------------------- */

  .client-logo {
      width: 50px;
      height: 50px;
      border-radius: 8px;
  }