/* ============================================
  0. GLOBAL PAGE UTILITIES (Scoped)
 */
#particles-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  background: transparent;
}

/* ——— Hero ——— */
.services-hero {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 0;
  padding: clamp(6rem, 14vw, 8.5rem) 0 clamp(3rem, 8vw, 4.5rem);
}

.services-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.services-hero__orb {
  position: absolute;
  border-radius: 50%;
  /* filter: blur(80px);
  opacity: 0.32;
  animation: servicesOrbFloat 8s ease-in-out infinite; */
}

/* .services-hero__orb--1 {
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  background: var(--primary);
  top: -12%;
  right: -8%;
}

.services-hero__orb--2 {
  width: min(340px, 48vw);
  height: min(340px, 48vw);
  background: var(--secondary);
  bottom: -18%;
  left: -10%;
  animation-delay: -3s;
}

.services-hero__orb--3 {
  width: min(240px, 36vw);
  height: min(240px, 36vw);
  background: color-mix(in srgb, var(--secondary) 55%, var(--primary));
  top: 38%;
  left: 28%;
  opacity: 0.18;
  animation-delay: -5s;
} */

@keyframes servicesOrbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(24px, -20px) scale(1.04);
  }
  66% {
    transform: translate(-16px, 16px) scale(0.98);
  }
}

.services-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.services-hero__title {
  font-size: clamp(2.25rem, 4.6vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.15rem;
  letter-spacing: -0.02em;
}

.services-hero__subtitle {
  font-size: 1.05rem;
  max-width: 34rem;
  margin-bottom: 1.75rem;
  line-height: 1.85;
}

.services-hero__text {
  max-width: 40rem;
  padding-inline-end: 0.5rem;
}

.services-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.services-hero__cta {
  gap: 0.5rem;
}

.services-hero__cta svg {
  transition: transform 0.28s ease;
}

.services-hero__cta:hover svg {
  transform: translate(3px, 2px);
}

.services-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.services-hero__graphic {
  width: min(280px, 72vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.services-hero__motion {
  width: 100%;
  height: auto;
  overflow: visible;
}

.services-hero__motion-ring {
  transform-origin: 120px 120px;
  animation: servicesHeroRing 22s linear infinite;
}

.services-hero__motion-ring--reverse {
  animation-direction: reverse;
  animation-duration: 28s;
}

.services-hero__motion-core {
  transform-origin: 120px 120px;
  animation: servicesHeroPulse 5s ease-in-out infinite;
}

@keyframes servicesHeroRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes servicesHeroPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .services-hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.25rem;
  }

  .services-hero__subtitle {
    margin-inline: auto;
  }

  .services-hero__actions {
    justify-content: center;
  }

  .services-hero__text {
    padding-inline: 0;
    margin-inline: auto;
  }

  .services-hero__visual {
    order: -1;
  }
}

@media (max-width: 640px) {
  .services-hero {
    padding: 5.5rem 0 2.75rem;
  }
}

/* ——— Core services carousel ——— */
.core-services {
  padding: clamp(4rem, 10vw, 7.5rem) 0;
}

.core-services__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4.25rem);
}

.core-services__title {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
}

.core-services__slider-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.core-services__viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.core-services__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.2, 0.9, 0.2, 1);
  will-change: transform;
}

.core-services__card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 17.5rem;
  padding: var(--space-lg);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

@media (max-width: 640px) {
  .core-services__card {
    padding: var(--space-md);
  }
}

.core-services__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s ease;
}

.core-services__card:hover::before {
  transform: scaleX(1);
}

.core-services__card-icon {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 65%, transparent);
  transition: var(--transition);
}

.core-services__card:hover .core-services__card-icon {
  border-color: transparent;
  background: var(--gradient);
}

.core-services__card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.core-services__card-desc {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.15rem;
}

.core-services__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: gap 0.28s ease;
}

.core-services__card-link:hover {
  gap: 0.55rem;
}

.core-services__nav {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  padding: 0;
}

.core-services__nav:hover {
  transform: scale(1.06);
}

.core-services__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 1024px) {
  .core-services__card {
    flex: 0 0 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .core-services__card {
    flex: 0 0 100%;
  }

  .core-services__nav {
    display: none;
  }

  .core-services__slider-wrapper {
    gap: 0;
  }
}

/* ——— Services details ——— */
.services-details {
  padding: clamp(4rem, 10vw, 7.5rem) 0;
}

.services-details__header {
  text-align: center;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.services-details__title {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
}

.services-details__list {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 10vw, 7rem);
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 3.75rem);
  align-items: center;
}

.service-detail--right .service-detail__content {
  grid-column: 2;
  grid-row: 1;
}

.service-detail--right .service-detail__visual {
  grid-column: 1;
  grid-row: 1;
}

.service-detail__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-detail__icon-wrap {
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary);
}

.service-detail:nth-child(even) .service-detail__icon-wrap {
  background: color-mix(in srgb, var(--secondary) 12%, transparent);
  color: var(--secondary);
}

.service-detail__title {
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  font-weight: 700;
}

.service-detail__text {
  font-size: 0.98rem;
  line-height: 1.78;
}

.service-detail__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.35rem;
}

.service-detail__features li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.92rem;
  font-weight: 500;
}

.service-detail__features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

.service-detail__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 14rem;
}

.service-detail__code-block {
  width: 100%;
  max-width: 25rem;
  overflow: hidden;
}

.service-detail__code-header {
  display: flex;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
}

.service-detail__code-header span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--text-muted) 35%, transparent);
}

.service-detail__code-header span:nth-child(1) {
  background: color-mix(in srgb, var(--primary) 45%, var(--text-muted));
}

.service-detail__code-header span:nth-child(2) {
  background: color-mix(in srgb, var(--secondary) 35%, var(--text-muted));
}

.service-detail__code-body {
  padding: 1.15rem 1.15rem 1.35rem;
  margin: 0;
  font-family: ui-monospace, "Cascadia Code", "Segoe UI Mono", Consolas, monospace;
  font-size: 0.82rem;
  line-height: 1.75;
  overflow-x: auto;
}

.service-detail__shield {
  position: relative;
  width: 9.25rem;
  height: 9.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail__shield svg {
  z-index: 2;
  position: relative;
}

.service-detail__shield-ring {
  position: absolute;
  inset: 0;
  border: 2px solid var(--border);
  border-radius: 50%;
  animation: servicesRingPulse 3s ease-in-out infinite;
}

.service-detail__shield-ring--2 {
  animation-delay: -1.5s;
  inset: -1.15rem;
  opacity: 0.45;
}

@keyframes servicesRingPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.service-detail__chart {
  display: flex;
  align-items: flex-end;
  gap: 0.65rem;
  height: 12rem;
  padding: 1.15rem;
  width: 100%;
  max-width: 21rem;
  border-radius: var(--radius-md);
}

.service-detail__chart-bar {
  flex: 1;
  height: var(--h);
  background: var(--gradient);
  border-radius: 4px 4px 0 0;
  position: relative;
  animation: servicesBarGrow 0.85s ease-out forwards;
  animation-delay: calc(var(--i, 0) * 0.08s);
  opacity: 0.88;
  transition: opacity 0.28s ease;
}

.service-detail__chart-bar:hover {
  opacity: 1;
}

.service-detail__chart-bar span {
  position: absolute;
  bottom: -1.35rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  font-weight: 600;
}

@keyframes servicesBarGrow {
  from {
    height: 0;
  }
}

.service-detail__server-stack {
  width: 100%;
  max-width: 23rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-detail__server-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  transition: var(--transition);
}

.service-detail__server-item:hover {
  transform: translateX(4px);
}

.service-detail__server-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  position: relative;
}

.service-detail__server-dot--active {
  background: color-mix(in srgb, var(--primary) 55%, var(--secondary));
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--primary) 25%, transparent);
}

.service-detail__server-dot--active::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid color-mix(in srgb, var(--primary) 45%, var(--secondary));
  animation: servicesDotPing 2s ease-in-out infinite;
}

@keyframes servicesDotPing {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.service-detail__color-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 17rem;
}

.service-detail__color {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  transition: transform 0.28s ease;
}

.service-detail__color:hover {
  transform: scale(1.05);
}

.service-detail__audit-radar {
  width: 12rem;
  height: 12rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail__audit-ring {
  position: absolute;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 60%;
  height: 60%;
}

.service-detail__audit-ring--2 {
  width: 80%;
  height: 80%;
  opacity: 0.58;
}

.service-detail__audit-ring--3 {
  width: 100%;
  height: 100%;
  opacity: 0.28;
}

.service-detail__audit-point {
  position: absolute;
  width: 11px;
  height: 11px;
  background: var(--gradient);
  border-radius: 50%;
  transform: rotate(var(--angle)) translateX(var(--dist)) rotate(calc(-1 * var(--angle)));
  animation: servicesRadarPulse 2s ease-in-out infinite;
}

@keyframes servicesRadarPulse {
  0%,
  100% {
    transform: rotate(var(--angle)) translateX(var(--dist)) rotate(calc(-1 * var(--angle))) scale(1);
  }
  50% {
    transform: rotate(var(--angle)) translateX(var(--dist)) rotate(calc(-1 * var(--angle))) scale(1.28);
  }
}

@media (max-width: 1024px) {
  .service-detail,
  .service-detail--right .service-detail__content,
  .service-detail--right .service-detail__visual {
    grid-column: auto;
    grid-row: auto;
  }

  .service-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .service-detail__visual {
    order: -1;
  }

  .services-details__list {
    gap: 3.5rem;
  }
}

@media (max-width: 640px) {
  .services-details__header {
    margin-bottom: 2.25rem;
  }

  .service-detail__code-block,
  .service-detail__chart,
  .service-detail__server-stack,
  .service-detail__color-grid {
    max-width: 100%;
  }
}

/* ——— How we work ——— */
.how-we-work {
  padding: clamp(4rem, 10vw, 7.5rem) 0;
  overflow: hidden;
}

.how-we-work__header {
  text-align: center;
  margin-bottom: clamp(3rem, 7vw, 5rem);
}

.how-we-work__title {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
}

.how-we-work__timeline {
  position: relative;
  max-width: 56rem;
  margin-inline: auto;
}

.how-we-work__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: var(--border);
}

.how-we-work__line-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: var(--gradient);
  transition: height 0.28s ease;
}

.how-we-work__steps {
  display: flex;
  flex-direction: column;
  gap: clamp(2.75rem, 6vw, 4rem);
  position: relative;
  z-index: 1;
}

.how-we-work__step {
  display: flex;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 2.5rem);
  position: relative;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
  transition-delay: var(--sd, 0s);
}

.how-we-work__step:nth-child(odd) {
  flex-direction: row;
}

.how-we-work__step:nth-child(even) {
  flex-direction: row-reverse;
}

.how-we-work__node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3.65rem;
  height: 3.65rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.how-we-work__step--active .how-we-work__node {
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--primary) 14%, transparent);
}

.how-we-work__step--active {
  opacity: 1;
  transform: translateY(0);
}

.how-we-work__number {
  font-family: "Orbitron", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 0.28s ease;
}

.how-we-work__step--active .how-we-work__number {
  color: var(--primary);
}

.how-we-work__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0;
  animation: servicesNodePulse 2s ease-in-out infinite;
}

.how-we-work__step--active .how-we-work__pulse {
  opacity: 1;
}

@keyframes servicesNodePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.24);
    opacity: 0;
  }
}

.how-we-work__card {
  width: calc(50% - 3rem);
  position: relative;
  padding: clamp(1.35rem, 3vw, 1.85rem);
}

.how-we-work__card::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  width: 10px;
  height: 10px;
  background: color-mix(in srgb, var(--surface) 55%, transparent);
  border: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
  transform: rotate(45deg);
}

.how-we-work__step:nth-child(odd) .how-we-work__card::before {
  right: -6px;
  border-left: none;
  border-bottom: none;
}

.how-we-work__step:nth-child(even) .how-we-work__card::before {
  left: -6px;
  border-right: none;
  border-top: none;
}

.how-we-work__step-title {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.how-we-work__step-text {
  font-size: 0.92rem;
  line-height: 1.68;
  margin-bottom: 0.85rem;
}

.how-we-work__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.how-we-work__tags span {
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 72%, transparent);
}

@media (max-width: 768px) {
  .how-we-work__line {
    left: 1.5rem;
  }

  .how-we-work__step,
  .how-we-work__step:nth-child(odd),
  .how-we-work__step:nth-child(even) {
    flex-direction: row;
    padding-left: 3.75rem;
  }

  .how-we-work__node {
    left: 1.5rem;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
  }

  .how-we-work__card {
    width: 100%;
  }

  .how-we-work__card::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .how-we-work__steps {
    gap: 2.25rem;
  }
}

/* ——— Pricing ——— */
.pricing-model {
  padding: clamp(4rem, 10vw, 7.5rem) 0;
}

.pricing-model__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.pricing-model__title {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-model__desc {
  font-size: 1.02rem;
  max-width: 32rem;
  margin-inline: auto;
  line-height: 1.65;
}

.pricing-model__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 2.25rem;
}

.pricing-model__card {
  display: flex;
  flex-direction: column;
  padding: clamp(2.25rem, 4vw, 3rem) clamp(1.75rem, 3vw, 2.35rem);
  border-width: 1px;
  min-height: 100%;
}

.pricing-model__card--highlight {
  transform: scale(1.02);
  border-color: color-mix(in srgb, var(--secondary) 45%, var(--border));
  background: linear-gradient(
    165deg,
    color-mix(in srgb, var(--surface) 55%, transparent),
    color-mix(in srgb, var(--secondary) 6%, transparent)
  );
}

.pricing-model__icon {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.pricing-model__name {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pricing-model__text {
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
  flex: 1;
}

.pricing-model__features {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.pricing-model__feature {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  line-height: 1.55;
  padding-left: 0.15rem;
}

.pricing-model__feature::before {
  content: "";
  width: 5px;
  height: 5px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--gradient);
  flex-shrink: 0;
}

.pricing-model__badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  width: fit-content;
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 70%, transparent);
}

.pricing-model__badge--purple {
  border-color: color-mix(in srgb, var(--secondary) 35%, var(--border));
  background: color-mix(in srgb, var(--secondary) 10%, transparent);
  color: var(--secondary);
}

.pricing-model__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 1.25rem 1.5rem;
  font-size: 0.88rem;
  text-align: center;
  line-height: 1.55;
}

.pricing-model__note svg {
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .pricing-model__grid {
    grid-template-columns: 1fr;
    max-width: 32rem;
    margin-inline: auto;
  }

  .pricing-model__card--highlight {
    transform: none;
  }
}

@media (max-width: 640px) {
  .pricing-model__card {
    padding: 1.85rem 1.35rem;
  }
}

/* ——— Mini CTA ——— */
.mini-cta {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.mini-cta__box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 2rem);
  padding: clamp(2rem, 5vw, 3rem);
  overflow: hidden;
}

.mini-cta__box:hover {
  transform: translateY(-2px);
}

.mini-cta__content {
  flex: 1;
}

.mini-cta__title {
  font-size: clamp(1.25rem, 2.6vw, 1.55rem);
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.mini-cta__text {
  font-size: 0.92rem;
  max-width: 32rem;
  line-height: 1.65;
}

.mini-cta__btn {
  flex-shrink: 0;
  gap: 0.45rem;
}

.mini-cta__btn svg {
  transition: transform 0.28s ease;
}

.mini-cta__btn:hover svg {
  transform: translateX(4px);
}

.mini-cta__glow {
  position: absolute;
  top: -50%;
  right: -12%;
  width: min(280px, 50vw);
  height: min(280px, 50vw);
  background: var(--gradient);
  filter: blur(100px);
  opacity: 0.07;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.mini-cta__box:hover .mini-cta__glow {
  opacity: 0.12;
}

@media (max-width: 768px) {
  .mini-cta__box {
    flex-direction: column;
    text-align: center;
  }

  .mini-cta__btn {
    width: 100%;
  }
}

/* ——— Final CTA ——— */
.final-cta {
  padding: clamp(4rem, 10vw, 7.5rem) 0;
}

.final-cta__wrapper {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.75rem, 4vw, 2.75rem);
  text-align: center;
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.final-cta__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}

.final-cta__orb--1 {
  width: min(380px, 70vw);
  height: min(380px, 70vw);
  background: var(--primary);
  top: -45%;
  left: -8%;
}

.final-cta__orb--2 {
  width: min(320px, 60vw);
  height: min(320px, 60vw);
  background: var(--secondary);
  bottom: -48%;
  right: -8%;
}

.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  margin-inline: auto;
}

.final-cta__title {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 0.85rem;
  line-height: 1.18;
}

.final-cta__text {
  font-size: 1.02rem;
  margin-bottom: 1.75rem;
  line-height: 1.65;
}

.final-cta__btn {
  gap: 0.45rem;
}

.final-cta__btn svg {
  transition: transform 0.28s ease;
}

.final-cta__btn:hover svg {
  transform: scale(1.06);
}

@media (max-width: 640px) {
  .final-cta__btn {
    width: 100%;
  }
}