/* [project]/components/blocks/Hero.module.css [app-client] (css) */
.Hero-module__M3L2Sa__hero {
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
  padding: var(--space-4xl) 0;
  background-position: center;
  background-size: cover;
  position: relative;
}

.Hero-module__M3L2Sa__hero:before {
  content: "";
  z-index: 1;
  background: rgba(255, 255, 255, .9);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

.Hero-module__M3L2Sa__container {
  max-width: var(--max-width);
  padding: 0 var(--space-lg);
  z-index: 2;
  margin: 0 auto;
  position: relative;
}

.Hero-module__M3L2Sa__content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.Hero-module__M3L2Sa__title {
  font-size: var(--font-size-5xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
  line-height: 1.1;
}

.Hero-module__M3L2Sa__subtitle {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.5;
}

.Hero-module__M3L2Sa__actions {
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  display: flex;
}

@media (max-width: 768px) {
  .Hero-module__M3L2Sa__hero {
    padding: var(--space-3xl) 0;
  }

  .Hero-module__M3L2Sa__title {
    font-size: var(--font-size-3xl);
  }

  .Hero-module__M3L2Sa__subtitle {
    font-size: var(--font-size-lg);
  }

  .Hero-module__M3L2Sa__actions {
    flex-direction: column;
    align-items: center;
  }
}

/* [project]/components/sections/ServicesOverview.module.css [app-client] (css) */
.ServicesOverview-module__9NaEqq__section {
  padding: var(--space-4xl) 0;
  background-color: var(--bg-primary);
}

.ServicesOverview-module__9NaEqq__container {
  max-width: var(--max-width);
  padding: 0 var(--space-lg);
  margin: 0 auto;
}

.ServicesOverview-module__9NaEqq__header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.ServicesOverview-module__9NaEqq__title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.ServicesOverview-module__9NaEqq__subtitle {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  line-height: 1.6;
}

.ServicesOverview-module__9NaEqq__grid {
  gap: var(--space-2xl);
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  display: grid;
}

.ServicesOverview-module__9NaEqq__card {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-lg);
  padding: var(--space-2xl);
  text-align: center;
  transition: all .3s;
  position: relative;
}

.ServicesOverview-module__9NaEqq__card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-primary);
  transform: translateY(-4px);
}

.ServicesOverview-module__9NaEqq__icon {
  margin-bottom: var(--space-lg);
  font-size: 3rem;
  display: block;
}

.ServicesOverview-module__9NaEqq__cardTitle {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-md);
  color: var(--text-primary);
}

.ServicesOverview-module__9NaEqq__cardDescription {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.ServicesOverview-module__9NaEqq__cardLink {
  align-items: center;
  gap: var(--space-xs);
  color: var(--accent-primary);
  font-weight: var(--font-weight-medium);
  text-decoration: none;
  transition: color .2s;
  display: inline-flex;
}

.ServicesOverview-module__9NaEqq__cardLink:hover {
  color: var(--accent-primary-hover);
  text-decoration: none;
}

.ServicesOverview-module__9NaEqq__cardLink span {
  transition: transform .2s;
}

.ServicesOverview-module__9NaEqq__card:hover .ServicesOverview-module__9NaEqq__cardLink span {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .ServicesOverview-module__9NaEqq__section {
    padding: var(--space-3xl) 0;
  }

  .ServicesOverview-module__9NaEqq__grid {
    gap: var(--space-xl);
    grid-template-columns: 1fr;
  }

  .ServicesOverview-module__9NaEqq__card {
    padding: var(--space-xl);
  }
}

/*# sourceMappingURL=components_aad3583a._.css.map*/