.about-hero-section {
  position: relative;
  background: #0B0D0E;
  color: #fff;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0 80px 0;
  overflow: hidden;
}
.about-hero-grid-bg {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, #23272F 0 1px, transparent 1px 80px),
              repeating-linear-gradient(180deg, #23272F 0 1px, transparent 1px 80px);
  opacity: 0.5;
  z-index: 0;
}
.about-hero-grid-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0 1px, transparent 1px 80px),
              repeating-linear-gradient(180deg, transparent 0 1px, transparent 1px 80px);
  z-index: 1;
  pointer-events: none;
}
.about-hero-grid-cell {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 1px solid #23272F;
  opacity: 0.15;
  z-index: 1;
  pointer-events: auto;
  transition: background 0.18s, opacity 0.18s;
}
.about-hero-grid-cell:hover {
  opacity: 1;
  z-index: 2;
}
.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 50% 40%, #f3f6fa 0%, #fff 80%);
  opacity: 1;
  pointer-events: none;
}
.about-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.about-hero-badge {
  display: inline-block;
  background: #181A1B;
  color: #fff;
  font-size: 0.95rem;
  border-radius: 28px;
  padding: 4px 16px;
  margin-bottom: 32px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.about-hero-desc {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 2.2rem;
  line-height: 1.5;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.about-hero-title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0;
  letter-spacing: -1px;
  line-height: 1.1;
  padding: 2rem 0;
}
@media (max-width: 991px) {
  .about-hero-title { font-size: 2.2rem; padding: 1rem 0; }
  .about-hero-section { padding: 60px 0 40px 0; }
  .about-hero-grid-cell { width: 50px; height: 50px; }
  .about-hero-badge { font-size: 0.95rem; padding: 4px 12px; margin-bottom: 18px; }
  .about-hero-desc { font-size: 1.05rem; margin-bottom: 1.5rem; }
}
@media (max-width: 600px) {
  .about-hero-section { padding: 40px 0 20px 0; }
  .about-hero-title { font-size: 1.3rem; padding: 0.5rem 0; }
  .about-hero-grid-cell { width: 30px; height: 30px; }
  .about-hero-badge { font-size: 0.9rem; padding: 3px 8px; }
  .about-hero-desc { font-size: 0.95rem; }
}
.services-modern-section {
  background: #f7fafd;
  padding: 60px 0 40px 0;
}
.services-modern-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.services-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-modern-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(44, 62, 80, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1.5px solid #e6eaf1;
}
.service-modern-card:hover {
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.16);
  transform: translateY(-4px) scale(1.02);
}
.service-modern-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: #f3f6fa;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.service-modern-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin: 0;
  border-radius: 0;
}
.service-modern-content {
  padding: 24px 20px 20px 20px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.service-modern-title {
  font-size: 1.18rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: #23272f;
}
.service-modern-desc {
  font-size: 0.98rem;
  color: #5a6270;
  margin: 0;
  line-height: 1.5;
}
.service-modern-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-modern-card-link:focus .service-modern-card,
.service-modern-card-link:hover .service-modern-card {
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.16);
  transform: translateY(-4px) scale(1.02);
}
@media (max-width: 991px) {
  .services-modern-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .services-modern-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .service-modern-content {
    padding: 16px 12px 14px 12px;
  }
}