/* Final CTA — cream, centered, floating shapes */
.ddb-final-cta {
  position: relative;
  overflow: hidden;
  background: var(--ddb-cream);
}
.ddb-final-cta__inner {
  position: relative;
  text-align: center;
}
.ddb-final-cta__eyebrow {
  margin-bottom: 1rem;
}
.ddb-final-cta__title {
  margin-inline: auto;
  max-width: 48rem;
  font-size: 2.25rem;
  line-height: 1.05;
  color: var(--ddb-navy);
}
@media (min-width: 768px) {
  .ddb-final-cta__title {
    font-size: 3.75rem;
  }
}
@media (min-width: 1024px) {
  .ddb-final-cta__title {
    font-size: 4rem;
  }
}
.ddb-final-cta__title em {
  font-style: normal;
  color: var(--ddb-brand-red);
}
.ddb-final-cta__text {
  margin-inline: auto;
  margin-top: 1.5rem;
  max-width: 36rem;
  color: var(--ddb-muted-fg);
}
@media (min-width: 768px) {
  .ddb-final-cta__text {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}
.ddb-final-cta__actions {
  margin-top: 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .ddb-final-cta__actions {
    flex-direction: row;
  }
}
.ddb-final-cta__btn1,
.ddb-final-cta__btn2 {
  padding: 1rem 1.75rem;
}

/* Decor shapes */
.ddb-final-cta__shape {
  position: absolute;
  display: block;
}
.ddb-final-cta__shape--1 {
  left: 6%;
  top: 18%;
  height: 3rem;
  width: 3rem;
  border-radius: 1rem;
  background: oklch(0.68 0.16 225 / 0.7);
}
.ddb-final-cta__shape--2 {
  right: 10%;
  top: 12%;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  background: oklch(0.55 0.19 255 / 0.7);
}
.ddb-final-cta__shape--3 {
  left: 12%;
  bottom: 14%;
  height: 3.5rem;
  width: 3.5rem;
  border-radius: 0.75rem;
  background: oklch(0.22 0.13 265 / 0.8);
  transform: rotate(12deg);
}
.ddb-final-cta__shape--4 {
  right: 8%;
  bottom: 20%;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  background: oklch(0.72 0.13 210 / 0.8);
}
