.guide-cta {
  --klain-navy: #073050;
  --klain-orange: #ee882f;
  --klain-card: #f4f7fa;
  position: relative;
  width: min(800px, 100%);
  min-height: 474px;
  overflow: hidden;
  border-radius: 44px;
  padding: 50px 44px 44px;
  color: var(--klain-navy);
  font-family: "Host Grotesk", Inter, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at 0 6%, rgba(178, 225, 248, 0.96) 0 58px, rgba(178, 225, 248, 0.55) 106px, rgba(244, 247, 250, 0) 238px),
    radial-gradient(circle at 102% 77%, rgba(255, 227, 203, 0.92) 0 84px, rgba(255, 227, 203, 0.45) 134px, rgba(244, 247, 250, 0) 254px),
    var(--klain-card);
}

.guide-cta,
.guide-cta * {
  box-sizing: border-box;
}

.guide-cta::after {
  content: "";
  position: absolute;
  left: -11px;
  top: -44px;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(184, 231, 252, 0.5);
  filter: blur(1px);
  pointer-events: none;
}

.guide-cta__circle {
  position: absolute;
  z-index: 0;
  left: -150px;
  top: -130px;
  width: 450px;
  height: 450px;
  fill: #e5e7eb;
  pointer-events: none;
}

.guide-cta__content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.guide-cta__icon-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
}

.guide-cta__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 67.449px;
  height: 67.449px;
  border-radius: 24px;
  background: #012944;
  transform: rotate(12deg);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);
}

.guide-cta__icon svg {
  width: 31px;
  height: 31px;
  transform: rotate(-12deg);
  fill: #ffffff;
}

.guide-cta__title {
  max-width: 610px;
  margin: 0;
  color: var(--klain-navy);
  font-family: "Host Grotesk", Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 31px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4em;
  letter-spacing: -0.31px;
}

.guide-cta__text {
  max-width: 670px;
  margin: 25px 0 0;
  color: var(--klain-navy);
  font-family: "Host Grotesk", Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4em;
  letter-spacing: 0;
}

.guide-cta__button {
  width: fit-content;
  min-height: 58px;
  margin-top: 55px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 26px;
  border-radius: 12px;
  background: var(--klain-orange);
  color: var(--Sophie-Pack-Gray-cool-50, #f9f9fb);
  text-decoration: none;
  font-family: "Host Grotesk", Inter, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  letter-spacing: 0.36px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.guide-cta__button:hover,
.guide-cta__button:focus {
  background: #f57f17;
  color: #f9f9fb;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 18px -4px rgba(0, 0, 0, 0.14), 0 6px 8px -5px rgba(0, 0, 0, 0.12);
}

.guide-cta__button:focus-visible {
  outline: 3px solid rgba(7, 48, 80, 0.32);
  outline-offset: 4px;
}

.guide-cta__button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex: 0 0 auto;
}

@media (max-width: 760px) {
  .guide-cta {
    min-height: auto;
    border-radius: 34px;
    padding: 32px 24px 34px;
  }

  .guide-cta__icon-wrap {
    width: 104px;
    height: 104px;
    margin-bottom: 18px;
  }

  .guide-cta__circle {
    left: -120px;
    top: -120px;
    width: 350px;
    height: 350px;
  }

  .guide-cta__icon svg {
    width: 31px;
    height: 31px;
  }

  .guide-cta__title {
    font-size: 28px;
  }

  .guide-cta__button {
    min-height: 56px;
    margin-top: 38px;
    padding: 15px 22px;
  }
}
