:root {
      --font: "Geist", "Geist Placeholder", sans-serif;
      --bg: #ffffff;
      --text: #111111;
      --accent2: #000000;
      --muted: #111111;
      --highlight: #f0f0f0;
    }



    .hero {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 10px 40px;
      gap: 40px;
      height: 100vh;
      margin-top: -80px;
    }

    .hero-left {
      flex: 1 1 400px;
    }

    .badge {
      display: inline-block;
      background: #000;
      color: #fff;
      padding: 6px 12px;
      font-size: 0.85rem;
      border-radius: 4px;
      margin-bottom: 20px;
      font-weight: 500;
    }

    .hero-left h1 {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .benefits {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 20px;
    }

    .benefit {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 500;
      color: var(--muted);
    }

    .benefit i {
      color: var(--accent2);
    }

    .hero-right {
      flex: 1 1 400px;
    }

    .hero-right p {
      font-size: 1.1rem;
      margin-bottom: 20px;
      color: var(--muted);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent2);
      color: #fff;
      padding: 12px 20px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
    }

    .loved {
      margin-top: 20px;
      font-size: 0.9rem;
      color: var(--muted);
    }

    .avatars {
      display: flex;
      gap: 8px;
      margin-top: 10px;
    }

    .avatars img {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #fff;
      box-shadow: 0 0 0 1px #ccc;
    }

    @media (max-width: 768px) {
      .hero {
        flex-direction: column;
        padding: 40px 20px;
      }

      .hero-left h1 {
        font-size: 2rem;
      }
    }

    @media (max-width: 1024px) {
  .hero {
    height: auto;
    padding: 60px 40px;
    margin-top: 0;
  }

  .hero-left,
  .hero-right {
    flex: 1 1 100%;
  }

  .hero-left h1 {
    font-size: 2.4rem;
  }

  .hero-right p {
    font-size: 1rem;
  }

  .btn {
    font-size: 0.95rem;
    padding: 10px 18px;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 40px 20px;
    gap: 30px;
    height: auto;
  }

  .hero-left h1 {
    font-size: 2rem;
    text-align: center;
  }

  .badge {
    font-size: 0.75rem;
    margin: 0 auto 16px;
  }

  .benefits {
    align-items: center;
  }

  .benefit {
    font-size: 0.95rem;
  }

  .hero-right {
    text-align: center;
  }

  .hero-right p {
    font-size: 0.95rem;
  }

  .loved {
    font-size: 0.85rem;
  }

  .avatars {
    justify-content: center;
    flex-wrap: wrap;
  }

  .avatars img {
    width: 28px;
    height: 28px;
  }

  .btn {
    margin-top: 10px;
    font-size: 0.9rem;
    padding: 10px 16px;
  }
}