.home {
  position: relative;
  overflow: hidden;
  background: url("../images/grid.jpg"),
    linear-gradient(180deg, rgb(0, 0, 0), rgb(24, 24, 24));
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: overlay;
}

.bg-layer {
  position: absolute;
  inset: -15%;
  z-index: 0;

  background: radial-gradient(
    800px 500px at 30% 0%,
    rgba(187, 136, 49, 0.5),
    transparent 60%
  );

  transform: translate3d(0, 0, 0);
  transition: transform 0.6s ease-out;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 0 1.5rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;

  padding: 0.45rem 1rem;
  margin-bottom: 1.8rem;

  border: 1px solid rgba(187, 136, 49, 0.35);
  border-radius: 999px;

  color: #bb8831;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2px;

  background: transparent;
  backdrop-filter: blur(4px);
}

.trust-pill .icon {
  font-size: 0.9rem;
  line-height: 1;
}

.hero-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;

  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-subtitle {
  max-width: 560px;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.hero-buttons {
  display: flex;
  gap: 0.8rem;
  margin-top: 2rem;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  text-decoration: none;
}

.btn-icon {
  font-size: 1rem;
  line-height: 1;
}

.filled-btn {
  background-color: #bb8831;
  color: #fff;
  border: none;
  overflow: hidden;
}

.filled-btn::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 10%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.8) 0%,
    transparent 70%
  );
  opacity: 0;
  pointer-events: none;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.3);
  }
}

.outline-btn {
  background: transparent;
  color: #bb8831;
  border: 1.5px solid #bb8831;
}

.outline-btn:hover {
  background: rgba(187, 136, 49, 0.1);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}