.act-page {
  min-height: 100vh;
}

.act-hero {
  padding: 5rem 0 3rem;
  text-align: center;
}

.act-badge {
  display: inline-block;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--gradient);
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.act-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.act-hero p {
  max-width: 680px;
  margin: 1rem auto 0;
  color: var(--gray);
  font-size: 1.15rem;
}

.act-categories {
  padding: 1rem 0 5rem;
}

.act-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.act-card {
  position: relative;
  height: 360px;
  border-radius: 30px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  box-shadow: var(--shadow-xl);
  transform: translateY(0);
  transition: 0.35s ease;
}

.act-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.act-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.25)),
    linear-gradient(135deg, rgba(0,168,204,0.35), rgba(0,212,170,0.2));
  z-index: 1;
}

.act-content {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  padding: 2rem;
}

.act-content i {
  font-size: 2rem;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.act-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 850;
}

.act-content p {
  max-width: 430px;
  opacity: 0.95;
  margin-bottom: 1rem;
  line-height: 1.55;
}

.act-content span {
  display: inline-block;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: white;
  color: var(--primary-dark);
  font-weight: 800;
}

.act-card:hover {
  transform: translateY(-10px) scale(1.01);
}

.act-card:hover img {
  transform: scale(1.12);
}

@media (max-width: 768px) {
  .act-hero {
    padding: 3.5rem 0 2rem;
  }

  .act-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .act-card {
    height: 290px;
    border-radius: 24px;
  }

  .act-content {
    padding: 1.35rem;
  }

  .act-content h2 {
    font-size: 1.55rem;
  }

  .act-content p {
    font-size: 0.95rem;
  }
}