
  .cases-module-section {
    width: 100%;
    padding: 60px 0;
    background-color: #ffffff;
    font-family: Arial, sans-serif;
  }

  .cases-module-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .cases-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 28px auto;
  }

  .cases-title,
  .hub-hero-title {
    font-size: 36px;
    font-weight: 400 !important;
    color: #222222;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .hub-hero-title {
    color: #ffffff;
    margin-bottom: 16px;
  }

  .cases-subtitle {
    font-size: 16px;
    color: #555555;
    line-height: 1.6;
    margin: 0;
  }

  .region-tabs-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
  }

  .region-tab-btn {
    font-family: Arial, sans-serif;
    background-color: #f7f9fc;
    border: 1px solid #eef2f7;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    text-transform: none;
    display: inline-block;
  }

  .region-tab-btn:hover,
  .region-tab-btn.active {
    background-color: #30A0FF;
    border-color: #30A0FF;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(48, 160, 255, 0.25);
  }

  .cases-region-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .cases-region-grid.active {
    display: grid;
  }

  .case-card {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    aspect-ratio: 4 / 3;
    display: block;
  }

  .case-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 28px rgba(48, 160, 255, 0.22);
  }

  .case-img-link {
    display: block;
    width: 100%;
    height: 100%;
  }

  .case-img-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: block;
  }

  .case-card:hover .case-img-link img {
    transform: scale(1.08);
  }

  .case-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    transition: background 0.4s ease;
    box-sizing: border-box;
  }

  .case-card:hover .case-overlay {
    background: linear-gradient(to top, rgba(11, 30, 54, 0.9) 0%, rgba(48, 160, 255, 0.35) 70%, transparent 100%);
  }

  .case-location-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(48, 160, 255, 0.88);
    padding: 4px 10px;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 8px;
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  }

  .case-card-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.35;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
  }

  .case-card:hover .case-card-title {
    transform: translateY(-2px);
  }

  .region-bottom-link-box {
    text-align: center;
    margin-top: 40px;
  }

  .region-view-all-btn,
  .custom-cta-btn,
  .hub-hero-btn {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    height: 46px;
    padding: 0 28px;
    border-radius: 0px;
    background-color: #30A0FF;
    color: #ffffff;
    border: 2px solid #30A0FF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
  }

  .region-view-all-btn:hover,
  .custom-cta-btn:hover,
  .hub-hero-btn:hover {
    background-color: #ffffff;
    color: #30A0FF;
    border-color: #30A0FF;
    box-shadow: 0 6px 18px rgba(48, 160, 255, 0.25);
  }

  @media (max-width: 1024px) {
    .cases-region-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
  }

  @media (max-width: 576px) {
    .cases-module-section {
      padding: 36px 0;
    }

    .cases-module-container {
      padding: 0 12px;
    }

    .cases-title,
    .hub-hero-title {
      font-size: 22px;
      font-weight: 400 !important;
      margin-bottom: 8px;
    }

    .cases-subtitle {
      font-size: 13px;
    }

    .region-tabs-bar {
      gap: 6px;
      margin-bottom: 20px;
    }

    .region-tab-btn {
      padding: 6px 12px;
      font-size: 12px;
      border-radius: 20px;
    }

    .cases-region-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .case-card {
      border-radius: 10px;
    }

    .case-overlay {
      padding: 10px;
    }

    .case-location-badge {
      font-size: 10px;
      padding: 2px 8px;
      margin-bottom: 4px;
    }

    .case-card-title {
      font-size: 12px;
      line-height: 1.25;
    }

    .region-view-all-btn {
      height: 40px;
      padding: 0 20px;
      font-size: 12px;
    }
  }
