/* Qoffa Smart — premium final conversion CTA */
body.index-page .cta-section {
  position: relative;
  width: min(calc(100% - 32px), 1320px);
  min-height: 410px;
  margin: clamp(42px, 8vw, 104px) auto;
  padding: clamp(56px, 8vw, 105px) clamp(24px, 7vw, 102px);
  overflow: hidden;
  border: 1px solid rgba(214, 237, 128, .22);
  border-radius: clamp(28px, 4vw, 42px);
  background:
    radial-gradient(circle at 86% 12%, rgba(214, 237, 128, .26), transparent 19%),
    radial-gradient(circle at 8% 87%, rgba(111, 201, 155, .18), transparent 22%),
    linear-gradient(128deg, #092b1e 0%, #0f5c40 54%, #0b3426 100%);
  color: #fff;
  text-align: right;
  box-shadow: 0 30px 70px rgba(10, 55, 36, .2), inset 0 1px 0 rgba(255, 255, 255, .1);
  isolation: isolate;
}

body.index-page .cta-section::before {
  content: '';
  position: absolute;
  z-index: -1;
  width: min(48vw, 580px);
  aspect-ratio: 1;
  inset-inline-end: -14%;
  top: -62%;
  border: 1px solid rgba(214, 237, 128, .25);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(214, 237, 128, .04), 0 0 0 76px rgba(214, 237, 128, .025);
}

body.index-page .cta-section::after {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .42;
  background-image: radial-gradient(rgba(214, 237, 128, .18) .7px, transparent .7px);
  background-size: 15px 15px;
  -webkit-mask-image: linear-gradient(120deg, transparent 7%, #000 48%, transparent 88%);
  mask-image: linear-gradient(120deg, transparent 7%, #000 48%, transparent 88%);
  pointer-events: none;
}

body.index-page .cta-section .container {
  width: 100%;
  max-width: 930px;
  padding: 0;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

body.index-page .cta-content {
  position: relative;
  max-width: 800px;
}

body.index-page .cta-content::before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-inline-end: 10px;
  border-radius: 50%;
  background: var(--fresh-lime);
  box-shadow: 0 0 0 7px rgba(214, 237, 128, .13);
  vertical-align: middle;
}

body.index-page .cta-content h2 {
  display: inline;
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 5.3vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.08em;
  text-wrap: balance;
  text-shadow: 0 8px 28px rgba(0, 0, 0, .14);
}

body.index-page .cta-content p {
  max-width: 640px;
  margin: 23px 0 0;
  color: rgba(233, 247, 237, .83);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.8;
}

body.index-page .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}

body.index-page .cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 15px 23px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: transform .4s var(--motion-spring, cubic-bezier(.16, 1, .3, 1)), box-shadow .35s ease, border-color .35s ease, background-color .35s ease, color .35s ease;
}

body.index-page .cta-buttons .btn i {
  font-size: 1.18rem;
  transition: transform .35s var(--motion-spring, ease);
}

body.index-page .cta-buttons .btn:first-child {
  min-width: 205px;
  background: var(--fresh-lime);
  color: var(--fresh-ink);
  box-shadow: 0 14px 28px rgba(3, 18, 10, .23), inset 0 1px 0 rgba(255, 255, 255, .46);
}

body.index-page .cta-buttons .btn:last-child {
  min-width: 170px;
  border-color: rgba(255, 255, 255, .35);
  background: rgba(255, 255, 255, .09);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
  backdrop-filter: blur(10px);
}

body.index-page .cta-buttons .btn:hover {
  transform: translateY(-6px);
}

body.index-page .cta-buttons .btn:hover i {
  transform: rotate(-9deg) scale(1.12);
}

body.index-page .cta-buttons .btn:first-child:hover {
  background: #e5f69c;
  box-shadow: 0 20px 34px rgba(3, 18, 10, .3), inset 0 1px 0 rgba(255, 255, 255, .65);
}

body.index-page .cta-buttons .btn:last-child:hover {
  border-color: rgba(214, 237, 128, .7);
  background: rgba(214, 237, 128, .13);
  color: var(--fresh-lime);
}

body.index-page .cta-buttons .btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

@media (max-width: 600px) {
  body.index-page .cta-section {
    width: calc(100% - 16px);
    min-height: 0;
    margin-block: 60px;
    padding: 48px 22px;
    border-radius: 27px;
    text-align: center;
  }

  body.index-page .cta-section::before {
    inset-inline-end: -30%;
    top: -35%;
  }

  body.index-page .cta-content {
    margin-inline: auto;
  }

  body.index-page .cta-content::before {
    width: 7px;
    height: 7px;
    margin-inline-end: 8px;
  }

  body.index-page .cta-content p {
    margin: 19px auto 0;
    font-size: .95rem;
  }

  body.index-page .cta-buttons {
    flex-direction: column;
    margin-top: 27px;
  }

  body.index-page .cta-buttons .btn,
  body.index-page .cta-buttons .btn:first-child,
  body.index-page .cta-buttons .btn:last-child {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.index-page .cta-buttons .btn,
  body.index-page .cta-buttons .btn:hover,
  body.index-page .cta-buttons .btn i,
  body.index-page .cta-buttons .btn:hover i {
    transform: none;
  }
}
