.cta-section {
  position: relative;
  isolation: isolate;
  width: min(1320px, calc(100% - 42px));
  min-height: 610px;
  margin: 0 auto 120px;
  padding: 74px 82px;
  display: grid;
  grid-template-columns: 1.42fr .72fr;
  align-items: center;
  gap: 76px;
  overflow: hidden;
  border: 1px solid rgba(171,91,255,.28);
  border-radius: 38px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 22%, rgba(126,59,221,.32), transparent 28%),
    radial-gradient(circle at 60% 100%, rgba(104,52,211,.26), transparent 34%),
    linear-gradient(120deg, #090c20 0%, #100b26 52%, #211044 100%);
  box-shadow: 0 36px 90px rgba(27,16,54,.22), inset 0 1px 0 rgba(255,255,255,.06);
}

.cta-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 760px;
  height: 760px;
  right: -205px;
  top: -350px;
  border: 1px solid rgba(171,91,255,.15);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(171,91,255,.025), 0 0 0 96px rgba(171,91,255,.018);
}

.cta-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto auto 0 0;
  width: 440px;
  height: 180px;
  opacity: .55;
  background-image: radial-gradient(circle, rgba(171,91,255,.34) 1.5px, transparent 1.8px);
  background-size: 13px 13px;
  mask-image: linear-gradient(30deg, #000, transparent 68%);
}

.cta-copy { position: relative; z-index: 2; }
.cta-copy .section-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(211,193,255,.76);
}
.cta-copy .section-kicker i {
  width: 29px;
  height: 2px;
  display: block;
  background: linear-gradient(90deg, #b15bff, #ef4d83);
}

.cta-section .cta-copy h2 {
  max-width: 740px;
  margin-top: 34px;
  font-size: clamp(54px, 5.7vw, 82px);
  line-height: 1.08;
  letter-spacing: -.065em;
}
.cta-copy h2 span {
  color: transparent;
  background: linear-gradient(90deg, #c16cff, #8c55f6 52%, #ef5b94 100%);
  background-clip: text;
  -webkit-background-clip: text;
}
.cta-copy > p {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 18px;
  line-height: 1.62;
}
.cta-copy > p strong { color: #ba82ff; font-weight: 500; }

.cta-features {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}
.cta-features > div {
  min-height: 84px;
  padding: 17px 19px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid rgba(171,91,255,.2);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
}
.cta-features svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: #a964ff;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cta-features span { font-size: 14px; font-weight: 600; }

.cta-action {
  position: relative;
  z-index: 2;
  min-height: 400px;
  padding: 54px 43px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(207,180,255,.62);
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(170,99,255,.28), transparent 42%),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 30px 65px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.11), 0 0 50px rgba(138,75,240,.1);
  backdrop-filter: blur(16px);
}
.cta-spark { color: #b36aff; font-size: 38px; line-height: 1; }
.cta-action p {
  margin: 30px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 19px;
  line-height: 1.72;
}
.cta-action p strong { color: #b885ff; font-weight: 500; }
.cta-rule { width: 44px; height: 2px; margin: 27px 0; background: linear-gradient(90deg, #c89bff, transparent); }
.cta-action .primary-button {
  width: 100%;
  min-height: 77px;
  padding: 18px 28px;
  justify-content: center;
  gap: 28px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 17px;
  background: linear-gradient(110deg, #7047df, #a14df2 55%, #d84d9a);
  box-shadow: 0 19px 38px rgba(118,51,211,.3), inset 0 1px 0 rgba(255,255,255,.25);
  font-size: 18px;
}
.cta-action .primary-button:hover { transform: translateY(-3px); box-shadow: 0 24px 48px rgba(118,51,211,.4); }
.cta-action .primary-button span { font-size: 27px; font-weight: 400; }

@media (max-width: 1050px) {
  .cta-section { padding: 62px 52px; grid-template-columns: 1.2fr .8fr; gap: 42px; }
  .cta-features { grid-template-columns: 1fr; max-width: 290px; }
  .cta-features > div { min-height: 66px; }
}

@media (max-width: 820px) {
  .cta-section { width: calc(100% - 28px); padding: 56px 36px; grid-template-columns: 1fr; }
  .cta-section .cta-copy h2 { font-size: clamp(48px, 9vw, 67px); }
  .cta-features { max-width: none; grid-template-columns: repeat(3, 1fr); }
  .cta-action { min-height: 350px; }
}

@media (max-width: 600px) {
  .cta-section { margin-bottom: 86px; padding: 46px 23px 24px; border-radius: 27px; }
  .cta-section .cta-copy h2 { margin-top: 27px; font-size: 45px; }
  .cta-copy > p { font-size: 15px; }
  .cta-features { margin-top: 28px; grid-template-columns: 1fr; }
  .cta-features > div { min-height: 62px; }
  .cta-action { min-height: 325px; padding: 38px 27px 28px; border-radius: 19px; }
  .cta-action p { font-size: 16px; }
  .cta-action .primary-button { min-height: 63px; font-size: 15px; }
}
