.hero-section {
  min-height: 100vh;
  padding: 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--primary);
  z-index: 1;
  text-align: center;
}

.hero-content {
  max-width: 75rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  animation: heroFadeIn 1.2s ease-out;
}

.hero-business-name {
  font-size: var(--fs-display-lg);
  line-height: var(--lh-display-lg);
  letter-spacing: var(--ls-display-lg);
  font-family: var(--font-heading);
  font-weight: var(--fw-extra-bold);
  color: var(--neutral-light);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  position: relative;
  padding-top: 2rem;
}

.hero-subtext {
  font-family: var(--font-body);
  font-size: var(--fs-h4);
  line-height: var(--lh-h4);
  font-weight: var(--fw-extra-bold);
  color: var(--neutral-light);
  opacity: 0.9;
  margin-bottom: 1rem;
  max-width: 600px;
  letter-spacing: 0.01em;
  padding-top: 2rem;
}

.hero-cta {
  font-family: var(--font-heading);
  font-size: var(--fs-h5);
  font-weight: var(--fw-semibold);
  padding: 1rem 3rem;
  background: var(--accent-gradient);
  color: var(--neutral-light);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(77, 25, 77, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 2.5rem;
  z-index: 100;
  text-decoration: none;
  display: inline-block;
}

.hero-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.hero-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 30px rgba(77, 25, 77, 0.5), 0 6px 15px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #007466, #0c626b, #253055, #5e1a5e);
}

.hero-cta:hover::before {
  left: 100%;
}

.hero-cta:active {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 15px rgba(77, 25, 77, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #005456, #0a525a, #1f2845, #4d194d);
}

.curve {
  position: absolute;
  height: 225px;
  width: 100%;
  bottom: 0;
  z-index: 1;
}

.curve::before {
  content: "";
  display: block;
  position: absolute;
  border-radius: 100% 50%;
  width: 64.5%;
  height: 100%;
  background: var(--neutral-dark);
  transform: translate(70%, 58%);
}

.curve::after {
  content: "";
  display: block;
  position: absolute;
  border-radius: 100% 50%;
  width: 55%;
  height: 100%;
  background: var(--primary);
  transform: translate(-5%, 36%);
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-business-name {
    padding-top: 8rem;
  }
}

@media (max-width: 820px) {
  .hero-section {
    padding: 3rem 1rem;
  }

  .hero-business-name {
    font-size: var(--fs-display-xl);
    line-height: var(--lh-display-xl);
    letter-spacing: var(--ls-display-xl);
  }

  .hero-business-name::after {
    width: 60px;
    height: 3px;
  }

  .hero-subtext {
    font-size: var(--fs-h2);
    line-height: var(--lh-h5);
  }

  .hero-cta {
    font-size: var(--fs-h6);
    padding: 0.875rem 2.5rem;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 2rem 0.75rem;
  }

  .hero-business-name {
    font-size: var(--fs-h1);
    line-height: var(--lh-h1);
    letter-spacing: var(--ls-h1);
  }

  .hero-business-name::after {
    width: 50px;
    height: 2px;
  }

  .hero-subtext {
    font-size: var(--fs-h6);
    line-height: var(--lh-h6);
  }

  .hero-cta {
    font-size: var(--fs-base);
    padding: 0.75rem 2rem;
  }
}

@media (max-width: 540px) {
  .hero-cta {
    margin-bottom: 8rem;
  }

  .curve::before {
    transform: translate(70%, 58%);
  }

  .curve::after {
    transform: translate(-5%, 36%);
  }
}

@media (max-width: 350px) {
  .hero-cta {
    margin-bottom: 2rem;
  }

  .hero-business-name {
    font-size: 3rem;
  }
}

.container {
  width: 100%;
  height: 800vh;
  background: var(--accent);
}
