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

.page-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 48px 40px 60px;
      position: relative;
      overflow: hidden;
    }

    /* Decorative hexagon background */
    .hex-bg {
      position: absolute;
      right: -60px;
      top: 0;
      width: 420px;
      height: 100%;
      opacity: 0.06;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='138' viewBox='0 0 120 138'%3E%3Cpolygon points='60,2 118,32 118,106 60,136 2,106 2,32' fill='none' stroke='%230a2e6e' stroke-width='3'/%3E%3C/svg%3E");
      background-size: 120px 138px;
      background-repeat: repeat;
    }

    /* Section title */
    .section-title {
      font-family: 'Sora', sans-serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--blue-dark);
      margin-bottom: 36px;
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .section-title::before {
      content: '';
      display: block;
      width: 5px;
      height: 36px;
      border-radius: 3px;
      background: linear-gradient(to bottom, var(--blue-mid), var(--accent));
      flex-shrink: 0;
    }

    /* Grid of items */
    .expertise-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px 12px;
      margin-bottom: 52px;
    }

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

    /* Each item card */
    .item-card {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
      cursor: default;
      animation: fadeUp 0.4s ease both;
    }

    .item-card:hover {
      box-shadow: 0 6px 24px rgba(26, 91, 191, 0.12);
      transform: translateY(-2px);
      border-color: var(--blue-light);
    }

    .item-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 2px solid var(--border);
      background: var(--icon-bg);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
    }

    .item-icon svg {
      width: 24px;
      height: 24px;
    }

    .item-label {
      font-family: 'DM Sans', sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--text);
      line-height: 1.3;
    }

    /* Stagger animations */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .expertise-grid .item-card:nth-child(1)  { animation-delay: 0.04s; }
    .expertise-grid .item-card:nth-child(2)  { animation-delay: 0.08s; }
    .expertise-grid .item-card:nth-child(3)  { animation-delay: 0.12s; }
    .expertise-grid .item-card:nth-child(4)  { animation-delay: 0.16s; }
    .expertise-grid .item-card:nth-child(5)  { animation-delay: 0.20s; }
    .expertise-grid .item-card:nth-child(6)  { animation-delay: 0.24s; }
    .expertise-grid .item-card:nth-child(7)  { animation-delay: 0.28s; }
    .expertise-grid .item-card:nth-child(8)  { animation-delay: 0.32s; }
    .expertise-grid .item-card:nth-child(9)  { animation-delay: 0.36s; }
    .expertise-grid .item-card:nth-child(10) { animation-delay: 0.40s; }
    .expertise-grid .item-card:nth-child(11) { animation-delay: 0.44s; }
    .expertise-grid .item-card:nth-child(12) { animation-delay: 0.48s; }
    .expertise-grid .item-card:nth-child(13) { animation-delay: 0.52s; }
    .expertise-grid .item-card:nth-child(14) { animation-delay: 0.56s; }
    .expertise-grid .item-card:nth-child(15) { animation-delay: 0.60s; }
    .expertise-grid .item-card:nth-child(16) { animation-delay: 0.64s; }
    .expertise-grid .item-card:nth-child(17) { animation-delay: 0.68s; }
    .expertise-grid .item-card:nth-child(18) { animation-delay: 0.72s; }
    .expertise-grid .item-card:nth-child(19) { animation-delay: 0.76s; }
    .expertise-grid .item-card:nth-child(20) { animation-delay: 0.80s; }
    .expertise-grid .item-card:nth-child(21) { animation-delay: 0.84s; }

    .services-grid .item-card:nth-child(1)  { animation-delay: 0.50s; }
    .services-grid .item-card:nth-child(2)  { animation-delay: 0.55s; }
    .services-grid .item-card:nth-child(3)  { animation-delay: 0.60s; }
    .services-grid .item-card:nth-child(4)  { animation-delay: 0.65s; }
    .services-grid .item-card:nth-child(5)  { animation-delay: 0.70s; }
    .services-grid .item-card:nth-child(6)  { animation-delay: 0.75s; }
    .services-grid .item-card:nth-child(7)  { animation-delay: 0.80s; }
    .services-grid .item-card:nth-child(8)  { animation-delay: 0.85s; }
    .services-grid .item-card:nth-child(9)  { animation-delay: 0.90s; }
    .services-grid .item-card:nth-child(10) { animation-delay: 0.95s; }

    /* Responsive */
    @media (max-width: 960px) {
      .expertise-grid, .services-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 640px) {
      .expertise-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
      .page-wrapper { padding: 32px 20px 48px; }
      .section-title { font-size: 1.5rem; }
    }