@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&display=swap');

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: #fff;
      color: #000;
      overflow-x: hidden;
    }

    /* ── HERO ── */
    .its-hero {
      padding-top: 68px;
      min-height: 52vh;
      background: #000;
      display: flex;
      align-items: flex-end;
      position: relative;
      overflow: hidden;
    }

    /* animated grid lines */
    .its-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridMove 12s linear infinite;
    }

    @keyframes gridMove {
      from { background-position: 0 0; }
      to   { background-position: 60px 60px; }
    }

    .its-hero-content {
      position: relative;
      z-index: 1;
      padding: 60px 10%;
      max-width: 900px;
    }

    .its-hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-bottom: 20px;
    }

    .its-hero-tag span {
      width: 24px;
      height: 1px;
      background: rgba(255,255,255,0.3);
      display: inline-block;
    }

    .its-hero h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(52px, 7vw, 96px);
      line-height: 0.95;
      color: #fff;
      letter-spacing: 0.5px;
      opacity: 0;
      transform: translateY(30px);
      animation: heroIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.1s forwards;
    }

    .its-hero p {
      margin-top: 22px;
      font-size: 16px;
      font-weight: 300;
      color: rgba(255,255,255,0.5);
      max-width: 520px;
      line-height: 1.7;
      opacity: 0;
      animation: heroIn 0.9s cubic-bezier(0.16,1,0.3,1) 0.3s forwards;
    }

    @keyframes heroIn {
      to { opacity: 1; transform: translateY(0); }
    }

    /* ── SERVICES SECTION ── */
    .its-services {
      padding: 80px 10%;
      background: #fff;
    }

    .its-services-intro {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 60px;
      gap: 40px;
    }

    .its-services-intro h2 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 48px;
      letter-spacing: 0.5px;
      color: #000;
      line-height: 1;
    }

    .its-services-intro p {
      max-width: 400px;
      font-size: 14px;
      color: rgba(0,0,0,0.45);
      line-height: 1.7;
      font-weight: 300;
      text-align: right;
    }

    /* CARDS GRID */
    .its-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: rgba(0,0,0,0.08);
      border: 1px solid rgba(0,0,0,0.08);
      border-radius: 12px;
      overflow: hidden;
    }

    .its-card {
      background: #fff;
      padding: 36px 32px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      position: relative;
      transition: background 0.25s ease;
      cursor: default;
      opacity: 0;
      transform: translateY(20px);
      animation: cardIn 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
    }

    /* staggered delay for each card */
    .its-card:nth-child(1)  { animation-delay: 0.05s; }
    .its-card:nth-child(2)  { animation-delay: 0.10s; }
    .its-card:nth-child(3)  { animation-delay: 0.15s; }
    .its-card:nth-child(4)  { animation-delay: 0.20s; }
    .its-card:nth-child(5)  { animation-delay: 0.25s; }
    .its-card:nth-child(6)  { animation-delay: 0.30s; }
    .its-card:nth-child(7)  { animation-delay: 0.35s; }
    .its-card:nth-child(8)  { animation-delay: 0.40s; }
    .its-card:nth-child(9)  { animation-delay: 0.45s; }

    @keyframes cardIn {
      to { opacity: 1; transform: translateY(0); }
    }

    .its-card:hover {
      background: #f8f8f8;
    }

    /* number */
    .its-card-num {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 13px;
      letter-spacing: 0.1em;
      color: rgba(0,0,0,0.2);
    }

    /* icon */
    .its-card-icon {
      width: 44px;
      height: 44px;
      background: #000;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .its-card-icon i {
      font-size: 18px;
      color: #fff;
    }

    /* title */
    .its-card h3 {
      font-size: 15px;
      font-weight: 600;
      color: #000;
      line-height: 1.3;
      letter-spacing: -0.01em;
    }

    /* description */
    .its-card p {
      font-size: 13px;
      color: rgba(0,0,0,0.45);
      line-height: 1.6;
      font-weight: 300;
    }

    /* arrow */
    .its-card-arrow {
      margin-top: auto;
      font-size: 12px;
      color: rgba(0,0,0,0.25);
      transition: all 0.2s ease;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .its-card:hover .its-card-arrow {
      color: #000;
      gap: 10px;
    }

    /* last card — full width if 9 items (3x3 fits perfectly) */

    /* ── CTA STRIP ── */
    .its-cta {
      margin: 0 10% 80px;
      background: #000;
      border-radius: 12px;
      padding: 50px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
    }

    .its-cta h3 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: 40px;
      color: #fff;
      letter-spacing: 0.5px;
      line-height: 1;
    }

    .its-cta p {
      font-size: 14px;
      color: rgba(255,255,255,0.45);
      margin-top: 8px;
      font-weight: 300;
    }

    .its-cta-btn {
      flex-shrink: 0;
      padding: 14px 32px;
      background: #fff;
      color: #000;
      border: none;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.25s ease;
      display: inline-block;
    }

    .its-cta-btn:hover {
      background: rgba(255,255,255,0.85);
      transform: translateY(-2px);
    }