:root {
  --primary-purple: #7047EB;
  --primary-green: #97D749;
  --primary-yellow: #FBE216;
  --accent-orange: #E88313;
  --text-dark: #1A1A1A;
}




/* Hero Section */
.hero {
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero__title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 30px;
}

.hero__text {
  font-size: 18px;
  line-height: 1.6;
  color: #8c8c8c;
  max-width: 480px;
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent-orange);
  color: #fff;
  text-decoration: none;
  padding: 15px 15px 15px 30px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.4);
  color: #fff;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-primary__icon {
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  color: var(--accent-orange);
}

/* Circle Avatars */
.hero__visuals {
  position: relative;
  height: 550px;
  width: 100%;
}

.circle-avatar {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  padding: 6px;
}

.circle-avatar__inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.circle-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Custom border colors */
.circle-avatar--purple {
  border: 8px solid var(--primary-purple);
}

.circle-avatar--green {
  border: 8px solid var(--primary-green);
}

.circle-avatar--yellow {
  border: 8px solid var(--primary-yellow);
}

/* Positions and Sizes */
.circle-avatar--p1 { width: 110px; height: 110px; top: 10%; left: 15%; }
.circle-avatar--p2 { width: 140px; height: 140px; top: 0%; left: 50%; }
.circle-avatar--p3 { width: 90px; height: 90px; top: 15%; right: 0%; }
.circle-avatar--p4 { width: 100px; height: 100px; bottom: 35%; left: 0%; }
.circle-avatar--p5 { width: 180px; height: 180px; bottom: 20%; left: 30%; }
.circle-avatar--p6 { width: 115px; height: 115px; bottom: 30%; right: 10%; }

/* Stats Section */
.stats {
  padding: 80px 0 120px;
}

.stat-card {
  background: #fff;
  border-radius: 35px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 15px 45px rgba(0,0,0,0.04);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.stat-card__number {
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 15px;
  color: var(--primary-purple);
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.stat-card--orange .stat-card__number {
  color: var(--accent-orange);
}

.stat-card__unit {
  font-size: 40px;
  margin-left: 5px;
}

.stat-card__label {
  font-size: 16px;
  color: var(--text-dark);
  font-weight: 500;
}

@media (max-width: 991px) {
  .hero__title { font-size: 42px; }
  .hero__visuals { height: 450px; margin-top: 50px; }
  .circle-avatar--p1 { top: 5%; }
  .circle-avatar--p5 { width: 150px; height: 150px; }
}

@media (max-width: 767px) {
  .hero__title { font-size: 32px; }
  .hero { padding-top: 120px; }
  .stat-card { padding: 40px 20px; }
}