@charset "UTF-8";

.home-cta {
  margin: 32px 0;
  background: transparent;
  border-radius: 14px;
  padding: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-cta__title {
  font-size: 1.45rem;
  font-family: 'Noto Sans', var(--font-main);
  font-weight: 900;
  margin: 0;
  color: var(--color-heading);
}

.home-cta__columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.home-cta__column {
  background: var(--color-bg-light);
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.home-cta__column-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.home-cta__emoji {
  font-size: 1.8rem;
}

.home-cta__heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-heading);
}

.home-cta__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-cta__list li {
  position: relative;
  padding-left: 16px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--color-text);
}

.home-cta__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff3b30;
}

.home-cta__column--cons .home-cta__list li::before {
  background: #ff7a3d;
}

.home-cta__footer {
  display: flex;
  justify-content: center;
}

.home-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  border-radius: 999px;
  background: linear-gradient(90deg, #FFD700 0%, #FFC107 100%);
  color: var(--color-text);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  box-shadow: 0 12px 25px rgba(255, 215, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(168, 85, 247, 0.45);
  color: var(--color-text);
  background: linear-gradient(90deg, #FFD700 0%, #FFC107 100%);
}

@media (max-width: 900px) {
  .home-cta {
    padding: 24px;
  }

  .home-cta__columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .home-cta {
    padding: 20px;
    gap: 20px;
  }

  .home-cta__column {
    padding: 18px;
  }

  .home-cta__button {
    width: 100%;
  }
}

