
/* ===== PREMIUM IMAGE STYLES ===== */
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo img {
  transform: scale(1.05);
}
.case-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.case-card-full:hover .case-card-image img {
  transform: scale(1.05);
}

/* ===== PREMIUM ICONS ===== */
.agency-feature-icon svg, .platform-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-accent);
}
.platform-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
}
.platform-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.2);
}
.platform-icon {
  background: transparent !important;
}
.platform-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
  color: white;
}

/* ===== INSIGHTS & GALLERY ===== */
.team-gallery .gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.team-gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.team-gallery .gallery-item:hover img {
  transform: scale(1.03);
}

.insights-filter-container {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.insights-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-pill {
  padding: 8px 24px;
  border-radius: 30px;
  background: white;
  border: 1px solid #e2e8f0;
  color: #1e293b;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-pill:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}
.filter-pill.active {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.insight-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.insight-image {
  height: 200px;
  width: 100%;
  overflow: hidden;
}
.insight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insight-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.insight-badge {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.insight-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.insight-content p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

.btn-download:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.2); }
