.hero-actions {
  gap: 14px;
}

.hero-actions .btn {
  --cta-height: 62px;
  --cta-icon-box: calc(var(--cta-height) - 18px);
  --cta-icon-img: calc(var(--cta-height) - 28px);
  justify-content: flex-start;
  gap: 10px;
  width: auto !important;
  min-width: 218px !important;
  max-width: 292px;
  height: auto !important;
  min-height: var(--cta-height) !important;
  padding: 7px 20px 7px 10px !important;
  border: 1px solid rgba(255, 229, 163, 0.58) !important;
  border-radius: 12px !important;
  background-image: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -10px 18px rgba(0, 0, 0, 0.2),
    0 16px 30px rgba(0, 0, 0, 0.34) !important;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.48);
}

.hero-actions .btn::before {
  content: "" !important;
  position: absolute;
  inset: 1px !important;
  z-index: -1;
  border-radius: 11px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 42%),
    radial-gradient(circle at 18% 50%, rgba(255, 229, 163, 0.22), transparent 34%) !important;
  opacity: 1;
  pointer-events: none;
}

.hero-actions .btn::after {
  content: "" !important;
  position: absolute;
  inset: auto 14px 7px 14px !important;
  z-index: -1;
  height: 1px !important;
  border-radius: 0 !important;
  background: rgba(255, 239, 188, 0.32) !important;
  filter: none !important;
  transform: none !important;
  pointer-events: none;
}

.hero-actions .btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.hero-actions .btn-primary {
  color: #fff7dc;
  border-color: rgba(255, 218, 126, 0.72) !important;
  background:
    linear-gradient(180deg, rgba(92, 64, 24, 0.94), rgba(39, 25, 12, 0.96)),
    linear-gradient(135deg, #f7c765, #8f451e) !important;
}

.hero-actions .btn-secondary {
  color: #eefbff;
  border-color: rgba(113, 213, 255, 0.48) !important;
  background:
    linear-gradient(180deg, rgba(24, 54, 72, 0.92), rgba(10, 21, 33, 0.96)),
    linear-gradient(135deg, #57d3ff, #3153b6) !important;
}

.hero-actions .cta-icon {
  display: grid;
  place-items: center;
  width: var(--cta-icon-box) !important;
  height: var(--cta-icon-box) !important;
  flex: 0 0 var(--cta-icon-box) !important;
  border-radius: 10px !important;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.26), transparent 34%),
    rgba(255, 255, 255, 0.08) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 6px 12px rgba(0, 0, 0, 0.22) !important;
}

.hero-actions .cta-icon img {
  display: block;
  width: var(--cta-icon-img) !important;
  height: var(--cta-icon-img) !important;
  object-fit: contain;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.24))
    drop-shadow(0 4px 5px rgba(0, 0, 0, 0.3)) !important;
}

.hero-actions .cta-icon svg {
  display: none;
}

.hero-actions .btn-label {
  max-width: 190px;
  letter-spacing: 0;
}

@media (max-width: 900px) {
  .hero-actions .btn {
    --cta-height: 60px;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 340px;
    min-height: var(--cta-height) !important;
    padding: 7px 18px 7px 10px !important;
  }

  .hero-actions .btn-label {
    max-width: none;
    font-size: 15px;
  }
}

/* Final harmonious CTA pass: scaled icons, darker fantasy palette */
.hero-actions {
  gap: 13px;
}

.hero-actions .btn {
  --cta-height: 58px;
  --cta-icon-box: 40px;
  --cta-icon-img: 38px;
  isolation: isolate;
  justify-content: flex-start;
  gap: 10px;
  width: auto !important;
  min-width: 206px !important;
  max-width: 276px;
  height: auto !important;
  min-height: var(--cta-height) !important;
  padding: 8px 18px 8px 10px !important;
  overflow: hidden;
  border: 1px solid rgba(255, 229, 163, 0.46) !important;
  border-radius: 10px !important;
  background-image: none !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -12px 18px rgba(0, 0, 0, 0.28),
    0 14px 26px rgba(0, 0, 0, 0.34) !important;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.62);
}

.hero-actions .btn::before {
  content: "" !important;
  position: absolute;
  inset: 1px !important;
  z-index: -1;
  border-radius: 9px !important;
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 42%),
    radial-gradient(circle at 18% 50%, rgba(255, 224, 151, 0.18), transparent 36%) !important;
  pointer-events: none;
}

.hero-actions .btn::after {
  content: "" !important;
  position: absolute;
  inset: auto 12px 6px 12px !important;
  z-index: -1;
  height: 1px !important;
  border-radius: 0 !important;
  background: rgba(255, 239, 188, 0.25) !important;
  filter: none !important;
  transform: none !important;
  pointer-events: none;
}

.hero-actions .btn:hover {
  filter: brightness(1.07);
  transform: translateY(-2px);
}

.hero-actions .btn-primary {
  color: #fff2c8;
  border-color: rgba(246, 196, 99, 0.64) !important;
  background:
    linear-gradient(180deg, rgba(74, 48, 20, 0.95), rgba(19, 13, 8, 0.97)),
    linear-gradient(135deg, #d99a3b, #5c2612) !important;
}

.hero-actions .btn-secondary {
  color: #eaf8ff;
  border-color: rgba(105, 204, 245, 0.45) !important;
  background:
    linear-gradient(180deg, rgba(23, 55, 71, 0.94), rgba(9, 17, 30, 0.97)),
    linear-gradient(135deg, #41bde7, #243d93) !important;
}

.hero-actions .cta-icon {
  display: grid;
  place-items: center;
  width: var(--cta-icon-box) !important;
  height: var(--cta-icon-box) !important;
  flex: 0 0 var(--cta-icon-box) !important;
  border-radius: 8px !important;
  background:
    radial-gradient(circle at 35% 22%, rgba(255, 255, 255, 0.22), transparent 34%),
    rgba(255, 255, 255, 0.07) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 5px 10px rgba(0, 0, 0, 0.24) !important;
}

.hero-actions .cta-icon img {
  display: block;
  width: var(--cta-icon-img) !important;
  height: var(--cta-icon-img) !important;
  object-fit: contain;
  transform: none;
}

.hero-actions .btn-primary .cta-icon img {
  filter:
    saturate(0.82)
    brightness(0.92)
    sepia(0.12)
    drop-shadow(0 3px 4px rgba(0, 0, 0, 0.34)) !important;
}

.hero-actions .btn-secondary .cta-icon img {
  filter:
    hue-rotate(8deg)
    saturate(0.76)
    brightness(0.96)
    drop-shadow(0 3px 4px rgba(0, 0, 0, 0.34)) !important;
}

.hero-actions .btn-label {
  max-width: 178px;
  overflow: hidden;
  color: currentColor;
  line-height: 1.05;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero-actions {
    gap: 10px;
    justify-items: start;
  }

  .hero-actions .btn {
    --cta-height: 56px;
    --cta-icon-box: 38px;
    --cta-icon-img: 36px;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 328px;
    min-height: var(--cta-height) !important;
    padding: 8px 18px !important;
    justify-content: center;
    gap: 12px;
  }

  .hero-actions .cta-icon {
    margin-left: 0;
  }

  .hero-actions .btn-label {
    flex: 0 1 auto;
    max-width: calc(100% - 54px);
    font-size: 15px;
    text-align: center;
  }
}
