/* AI Page CSS : cloud-agent */

.auto-fill-text {
  /* dark on the left of the gradient, light on the right */
  background: linear-gradient(to right, #000 40%, #a4a4a4 60%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.auto-fill-text.is-filled {
  animation: textFillAnimation 4s ease-in-out forwards;
}

@keyframes textFillAnimation {
  from {
    background-position: 100% 0;
  }

  /* light */
  to {
    background-position: 0% 0;
  }

  /* dark / filled */
}

.gif-banner {
  position: relative;
  overflow: hidden;
  padding: 110px 0 40px;
}

.banner__scroll {
  display: flex;
  justify-content: end;
  align-items: center;
  transform: translateX(-50%);
  /* center it horizontally */
  z-index: 2;
  animation: scrollBob 1.8s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes scrollBob {
  0% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(10px);
  }

  /* move down */
  100% {
    transform: translateX(-50%) translateY(0);
  }

  /* back to top */
}

/* be kind to users who prefer no motion */
@media (prefers-reduced-motion: reduce) {
  .banner__scroll {
    animation: none;
  }
}

.herok {
  position: relative;
  overflow: hidden;
  background-image: url("/wp-content/uploads/2026/06/agentbnrdesk.webp");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0 0;
}

.herok .container {
  position: relative;
  z-index: 2;
}

/* Left content */
.herok__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 672px;
}

.herok__title {
  margin: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: -0.96px;
  color: #f9fafb;
}

.herok__lead {
  margin: 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  color: #f9fafb;
}

.herok__sub {
  margin: 8px 0 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: #f9fafb;
}

.herok__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 40px;
  margin: 24px 0;
  align-items: start;
  max-width: 560px;
}

.herok__check {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #f9fafb;
  min-width: 160px;
}

.herok__check img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Right stat card */
.herok__card {
  width: 100%;
  max-width: 479px;
  margin-left: auto;
  padding: 24px;
  border: 1px solid rgba(0, 0, 255, 0.6);
  border-radius: 24px;
  backdrop-filter: blur(21px);
  -webkit-backdrop-filter: blur(21px);
  background: linear-gradient(
      90deg,
      rgba(86, 74, 232, 0.02) 0%,
      rgba(186, 98, 188, 0.02) 27%,
      rgba(224, 103, 140, 0.02) 56%,
      rgba(232, 93, 104, 0.02) 100%
    ),
    rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  will-change: transform, opacity;
}

/* Fade-in-up entrance (matches reference video) */
@keyframes herokFadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Only hide for the entrance when JS is active, so the card is never
       stuck invisible if the script doesn't run. */
.herok-js .herok__card {
  opacity: 0;
}

.herok-js .herok__card.is-visible {
  animation: herokFadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@media (prefers-reduced-motion: reduce) {
  .herok-js .herok__card {
    opacity: 1;
  }

  .herok-js .herok__card.is-visible {
    animation: none;
  }
}

.herok__card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.herok__card-label {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #484848;
}

.herok__amount {
  margin: 0;
  font-size: 72px;
  font-weight: 700;
  line-height: 80px;
  letter-spacing: -1.44px;
  background: linear-gradient(
    90deg,
    #0000ff 0%,
    #4e49e0 33.654%,
    #d90094 66.827%,
    #ff0a0a 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.herok__card-note {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #484848;
}

.herok__rows {
  display: flex;
  flex-direction: column;
}

.herok__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.herok__row:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.herok__row-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.herok__chip {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.herok__chip img {
  width: 32px;
  height: 32px;
}

.herok__chip--mon {
  background: #2a2a2a;
}

.herok__chip--tag {
  background: #3d2e00;
}

.herok__chip--ano {
  background: #1e1a2e;
}

.herok__row-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #212121;
}

.herok__row-val {
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
  color: #212121;
  white-space: nowrap;
}

.herok__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
}

.herok__foot-meta {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.12px;
  color: #484848;
}

.herok__scan {
  border: none;
  background: none;
  padding: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  background: linear-gradient(
    90deg,
    #0000ff 0%,
    #4e49e0 33.654%,
    #d90094 66.827%,
    #ff0a0a 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  white-space: nowrap;
  width: fit-content;
}

@media (max-width: 1199.98px) {
  .herok__check {
    min-width: 100%;
  }
}

@media (max-width: 991.98px) {
  .herok {
    padding: 64px 0 0;
  }

  .gif-banner {
    position: relative;
    overflow: hidden;
    padding: 70px 0 40px;
  }

  .herok__sub {
    text-align: center;
  }

  .herok__title {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -0.8px;
  }

  .herok__check {
    min-width: fit-content;
  }

  .herok__lead {
    font-size: 22px;
    line-height: 32px;
  }

  .herok__card {
    margin: 32px auto 0;
  }

  .herok__btn {
    width: 100%;
  }

  .herok__checks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 40px;
    margin: 24px 0;
    align-items: center;
    max-width: max-content;
    justify-content: center;
  }

  .herok__copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 672px;
    justify-content: center;
    align-items: center;
  }

  /* Wrapper: holds the glow + sizing */
  .herok__scan_button {
    position: relative;
    display: inline-flex;
    width: 100%;
    border-radius: 4px;
    background: #fff;
  }

  /* Blurred gradient glow behind the button (hidden until hover) */
  .herok__scan_button::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 8px;
    background: linear-gradient(
      90deg,
      #564ae8 0%,
      #ba62bc 26.92%,
      #e0678c 56.25%,
      #e85d68 100%
    );
    filter: blur(12px);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: 0;
    display: none;
  }

  .herok__scan_button:hover::before {
    opacity: 0.85;
  }

  .herok__foot {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    flex-direction: column;
  }

  .herok__scan {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 12px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.3s ease-in-out;
    color: transparent;
    background: var(
      --top-navigation-2,
      linear-gradient(
        90deg,
        #00f 0%,
        #4e49e0 33.65%,
        #d90094 66.83%,
        #ff0a0a 100%
      )
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    width: fit-content;
    margin: 0 auto;
  }

  /* Gradient TEXT lives on the child, so the white fill is preserved */
  .herok__scan-label {
    font-size: 20px;
    font-weight: 500;
    line-height: 24.936px;
    background: linear-gradient(
      90deg,
      #00f 0%,
      #4e49e0 33.65%,
      #d90094 66.83%,
      #ff0a0a 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  /* Lift on hover — keyed to the REAL wrapper class */
  .herok__scan_button:hover .herok__scan {
    transform: translateY(-1px);
  }
}

@media (max-width: 575.98px) {
  .herok {
    padding: 40px 0;
    background-image: url("/wp-content/uploads/2026/06/agentbnrmob.webp");
  }

  .herok__copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 672px;
    justify-content: start;
    align-items: start;
  }

  .herok__card {
    margin: 0px auto 0;
  }

  .gif-banner {
    /* position: relative; */
    overflow: hidden;
    padding-bottom: 120px;
    display: none;
  }

  .herok__title {
    font-size: 34px;
    line-height: 44px;
    letter-spacing: -0.6px;
  }

  .herok__lead {
    font-size: 20px;
    line-height: 30px;
    margin-top: 8px;
  }

  .herok__sub {
    font-size: 16px;
    line-height: 24px;
    text-align: start;
  }

  .herok__checks {
    gap: 8px 24px;
    align-items: start;
    max-width: max-content;
    justify-content: start;
  }

  .herok__amount {
    font-size: 56px;
    line-height: 64px;
    letter-spacing: -1px;
  }
}

/*  Request a demo — infinite marquee */

.rqd-marquee {
  width: 100%;
  overflow: hidden;
  background: #f9fafb;
  padding: 24px 0;
}

.rqd-marquee .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.rqd-marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  animation: rqd-marquee-scroll 30s linear infinite;
}

/* Pause on hover */
.rqd-marquee:hover .rqd-marquee__track {
  animation-play-state: paused;
}

.rqd-marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.rqd-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 58px;
  margin-right: 60px;
  flex-shrink: 0;
}

.rqd-marquee__icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rqd-marquee__text {
  font-size: 60px;
  font-weight: 600;
  line-height: 72px;
  letter-spacing: -1.2px;
  color: #212121;
  white-space: nowrap;
}

@keyframes rqd-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 991.98px) {
  .rqd-marquee {
    padding: 20px 0;
  }

  .rqd-marquee__item {
    gap: 32px;
    margin-right: 40px;
  }

  .rqd-marquee__icon {
    width: 72px;
    height: 72px;
  }

  .rqd-marquee__text {
    font-size: 40px;
    line-height: 50px;
    letter-spacing: -0.8px;
  }
}

@media (max-width: 575.98px) {
  .rqd-marquee {
    padding: 16px 0;
  }

  .rqd-marquee__item {
    gap: 20px;
    margin-right: 28px;
  }

  .rqd-marquee__icon {
    width: 48px;
    height: 48px;
  }

  .rqd-marquee__text {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -0.5px;
  }
}

/* CTA (AWS) */

.cta-aws {
  background: #f9fafb;
  padding: 80px 0;
}

.cta-aws__card {
  position: relative;
  width: 100%;
  min-height: 460px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background-image: url("/wp-content/uploads/2026/06/agentbgdeskcta.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta-aws__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

/* Inset bordered inner frame */
.cta-aws__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 995px;
  min-height: 373px;
  /* border: 1px solid rgba(255, 255, 255, 0.2); */
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 48px 73px;
  text-align: center;
}

.cta-aws__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 848px;
}

.cta-aws__title {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: -0.8px;
  color: #f9fafb;
}

.cta-aws__text {
  margin: 0;
  max-width: 716px;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  color: #f9fafb;
}

.cta-aws__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: none;
  border-radius: 4px;
  background: #ffffff;
  color: #0f0232;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-aws__btn:hover {
  color: #0f0232;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 2, 50, 0.25);
}

@media (max-width: 1199.98px) {
  .cta-aws__card {
    background-image: url("/wp-content/uploads/2026/06/agentbgmbcta.webp");
  }
}

@media (max-width: 991.98px) {
  .cta-aws {
    padding: 56px 0;
  }

  .cta-aws__card {
    min-height: 0;
    padding: 24px;
  }

  .cta-aws__frame {
    min-height: 0;
    gap: 32px;
    padding: 40px 32px;
  }

  .cta-aws__title {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.6px;
  }

  .cta-aws__text {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (max-width: 575.98px) {
  .cta-aws {
    padding: 40px 0;
  }

  .home-cta-loop__btn,
  .home-cta-loop__btn-wrap {
    width: 100%;
  }

  .cta-aws__card {
    border-radius: 20px;
    padding: 12px;
    background-image: url("/wp-content/uploads/2026/06/agentbgmbcta.webp");
  }

  .cta-aws__frame {
    border-radius: 14px;
    gap: 24px;
    padding: 28px 20px;
  }

  .cta-aws__title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.5px;
  }

  .cta-aws__text {
    font-size: 16px;
    line-height: 24px;
  }

  .cta-aws__btn {
    width: 100%;
  }
}

/* mcloud */

.mcloud {
  position: relative;
  overflow: hidden;
  background-image: url("/wp-content/uploads/2026/06/aggentbg-azuredesk.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}

/* Soft gradient wash (Figma background image) */
.mcloud__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.mcloud .container {
  position: relative;
  z-index: 1;
}

/* Heading block */
.mcloud__head {
  max-width: 804px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.mcloud__title {
  margin: 0;
  max-width: 644px;
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: -0.8px;
  color: #212121;
}

.mcloud__subtext {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: #323232;
}

/* Cards */
.mcloud__card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 16px;
  background: linear-gradient(
        90deg,
        rgba(86, 74, 232, 0.04) 0%,
        rgba(186, 98, 188, 0.04) 26.92%,
        rgba(224, 103, 140, 0.04) 56.25%,
        rgba(232, 93, 104, 0.04) 100%
      )
      padding-box,
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(
        90deg,
        #564ae8 0%,
        #ba62bc 26.92%,
        #e0678c 56.25%,
        #e85d68 100%
      )
      border-box;
}

.mcloud__logo {
  width: 100%;
  height: 113px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
}

.mcloud__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.mcloud__img--azure {
  max-height: 57px;
}

.mcloud__img--google {
  max-height: 44px;
}

.mcloud__desc {
  margin: 0;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: #484848;
}

@media (max-width: 991.98px) {
  .mcloud {
    padding: 56px 0;
  }

  .mcloud__head {
    margin-bottom: 32px;
  }

  .mcloud__title {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.6px;
  }
}

@media (max-width: 575.98px) {
  .mcloud {
    padding: 40px 0;
    background-image: url("/wp-content/uploads/2026/06/aggentbg-azuremob.webp");
  }

  .mcloud__head {
    margin-bottom: 24px;
  }

  .mcloud__title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.5px;
  }

  .mcloud__subtext {
    font-size: 16px;
    line-height: 24px;
  }

  .mcloud__desc {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Built to Get Better — Coming Soon */

.csoon {
  position: relative;
  overflow: hidden;
  background-image: url("/wp-content/uploads/2026/06/AWSIconbg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}

.csoon .container {
  position: relative;
  z-index: 1;
}

/* Heading block */
.csoon__head {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.csoon__title {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: -0.8px;
  color: #212121;
}

.csoon__sub {
  margin: 0;
  max-width: 950px;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: #323232;
}

/* Cards row */
.csoon__cards {
  max-width: 950px;
  margin: 40px auto 24px;
}

.csoon__card {
  position: relative;
  /* anchor for the gradient border */
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(
      90deg,
      rgba(86, 74, 232, 0.02) 0%,
      rgba(186, 98, 188, 0.02) 26.92%,
      rgba(224, 103, 140, 0.02) 56.25%,
      rgba(232, 93, 104, 0.02) 100%
    ),
    linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 154.29%);
}

.csoon__card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(
    180deg,
    rgba(86, 74, 232, 0.4) 0%,
    rgba(186, 98, 188, 0.4) 30.39%,
    rgba(224, 103, 140, 0.256) 63.49%,
    rgba(232, 93, 104, 0) 112.87%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.csoon__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.csoon__iconbox {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f5;
  border-radius: 14px;
}

.csoon__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.csoon__badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 4px;
  background: linear-gradient(
    90deg,
    #0000ff 0%,
    #4e49e0 33.654%,
    #d90094 66.827%,
    #ff0a0a 100%
  );
  color: #f9fafb;
  font-size: 10px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  width: fit-content;
}

.csoon__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.csoon__ct {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  color: #323232;
}

.csoon__cd {
  margin: 0;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #484848;
}

.csoon__foot {
  max-width: 820px;
  margin: 3px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.csoon__lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.csoon__note {
  margin: 0;
  max-width: 754px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #484848;
}

.csoon__link {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  background: linear-gradient(
    90deg,
    #0000ff 0%,
    #4e49e0 33.654%,
    #d90094 66.827%,
    #ff0a0a 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  width: fit-content;
}

.csoon__btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 2, 50, 0.3);
}

@media (max-width: 991.98px) {
  .csoon {
    padding: 56px 0;
  }

  .csoon__title {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.6px;
  }
}

@media (max-width: 575.98px) {
  .csoon {
    padding: 40px 0;
    background-image: url("/wp-content/uploads/2026/06/AWSIconmb.webp");
  }

  .csoon__title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.5px;
  }

  .csoon__sub {
    font-size: 16px;
    line-height: 24px;
  }

  .csoon__cards {
    margin-top: 24px;
  }
}

/* A Bill That Counts Every */

.optr {
  background: #ffffff;
  padding: 80px 0;
}

.optr__head {
  max-width: 752px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.optr__title {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: -0.8px;
  color: #212121;
}

.optr__sub {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: #323232;
}

.optr__panel {
  max-width: 852px;
  margin: 0 auto;
  padding: 16px 0;
  border: 1px solid transparent;
  border-radius: 16px;
  background: linear-gradient(
        90deg,
        rgba(86, 74, 232, 0.04) 0%,
        rgba(186, 98, 188, 0.04) 26.92%,
        rgba(224, 103, 140, 0.04) 56.25%,
        rgba(232, 93, 104, 0.04) 100%
      )
      padding-box,
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(
        90deg,
        #564ae8 0%,
        #ba62bc 26.92%,
        #e0678c 56.25%,
        #e85d68 100%
      )
      border-box;
}

/* Items */
.optr__item {
  position: relative;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.optr__divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(55, 55, 55, 0) 0%,
    #3737379c 20%,
    #37373794 80%,
    rgba(55, 55, 55, 0) 100%
  );
  pointer-events: none;
}

.optr__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  right: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.12) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.optr__it-title {
  margin: 0;
  width: 100%;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  background: linear-gradient(
    90deg,
    #0000ff 0%,
    #4e49e0 7.41%,
    #d90094 14.715%,
    #ff0a0a 22.02%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.optr__it-desc {
  margin: 0;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #484848;
}

@media (max-width: 991.98px) {
  .optr {
    padding: 56px 0;
  }

  .optr__title {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.6px;
  }

  .optr__item:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 16px;
    bottom: 0;
    width: calc(100% - 32px);
    height: 1px;
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.12) 50%,
      rgba(0, 0, 0, 0) 100%
    );
  }

  .optr__head {
    margin-bottom: 24px;
  }

  .optr__divider::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0%,
      rgb(0 0 0 / 50%) 50%,
      rgba(0, 0, 0, 0) 100%
    );
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .optr {
    padding: 40px 0;
  }

  .optr__title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.5px;
  }

  .optr__sub {
    font-size: 16px;
    line-height: 24px;
  }

  .optr__divider::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0%,
      rgb(0 0 0 / 50%) 50%,
      rgba(0, 0, 0, 0) 100%
    );
    margin: 0 auto;
    width: 200px;
  }
}

/* Permission Model — Ksolves AWS Agent */
.perm {
  background: #f9fafb;
  padding: 80px 0;
}

.perm__head {
  max-width: 390px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.perm__title {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: -0.8px;
  color: #212121;
}

.perm__sub {
  margin: 0;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
  color: #323232;
}

.perm__panel {
  position: relative;
  max-width: 580px;
  margin-left: auto;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(
      90deg,
      rgba(86, 74, 232, 0.02) 0%,
      rgba(186, 98, 188, 0.02) 26.92%,
      rgba(224, 103, 140, 0.02) 56.25%,
      rgba(232, 93, 104, 0.02) 100%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.6) 0%,
      rgba(255, 255, 255, 0) 154.29%
    );
}

.perm__panel::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 16px;
  bottom: 16px;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.9) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.perm__panel::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  right: 16px;
  height: 1px;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.9) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

.perm__item {
  position: relative;
  min-height: 170px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.perm__it-title {
  margin: 0;
  width: 100%;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 27px;
  background: linear-gradient(
    90deg,
    #0000ff 0%,
    #4e49e0 33.654%,
    #d90094 66.827%,
    #ff0a0a 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.perm__it-desc {
  margin: 0;
  width: 100%;
  font-family: "Manrope", "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #323232;
}

@media (max-width: 991.98px) {
  .perm {
    padding: 56px 0;
  }

  .perm__head {
    max-width: none;
    margin-bottom: 24px;
  }

  .perm__title {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.6px;
  }

  .perm__panel {
    max-width: 100%;
    margin: 0 auto;
  }

  .perm__panel::before,
  .perm__panel::after {
    display: none;
  }

  .perm__item {
    min-height: 0;
  }

  .perm__item:not(:first-child)::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 1.5px;
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.9) 50%,
      rgba(0, 0, 0, 0) 100%
    );
  }
}

@media (max-width: 575.98px) {
  .perm {
    padding: 40px 0;
  }

  .perm__title {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.5px;
  }

  .perm__sub {
    font-size: 16px;
    line-height: 24px;
  }

  .perm__panel {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0;
  }
}

/* See What Your Team Would Receive Every Morning*/

.hero7 {
  position: relative;
  overflow: hidden;
  background-image: url("/wp-content/uploads/2026/06/hero7bgdesk.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 90px 0;
}

.hero7__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hero7 .container {
  position: relative;
  z-index: 1;
}

.hero7__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  margin-top: 80px;
}

.hero7__title {
  margin: 0;
  max-width: 541px;
  font-size: 48px;
  font-weight: 500;
  line-height: 60px;
  letter-spacing: -0.96px;
  color: #212121;
}

.hero7__card {
  display: flex;
  justify-content: flex-end;
  margin-top: 80px;
}

.hero7__card-img {
  width: 100%;
  max-width: 568px;
  height: auto;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 255, 0.12);
  background: #fff;
  box-shadow: 0 8px 48px 0 rgba(0, 0, 200, 0.1),
    0 2px 8px 0 rgba(0, 0, 200, 0.06);
}

.hero7__btn-wrap {
  margin-top: 28px;
}

@media (max-width: 1199.98px) {
  .hero7__card {
    margin-top: 127px;
  }

  .hero7__left {
    margin-top: 127px;
  }
}

@media (max-width: 991.98px) {
  .hero7 {
    padding: 0 0 40px;
    background-image: url("/wp-content/uploads/2026/06/hero7bgmob.webp");
  }

  .hero7__bg {
    height: 170px;
    bottom: auto;
    object-position: center top;
  }

  .hero7__left {
    gap: 24px;
    padding-top: 56px;
    margin-top: 0;
  }

  .hero7__title {
    font-size: 36px;
    line-height: 46px;
    letter-spacing: -0.7px;
  }

  .hero7__card {
    justify-content: start;
    margin-top: 32px;
  }

  .hero7__card-img {
    margin: 0 0;
  }
}

@media (max-width: 575.98px) {
  .hero7__left {
    padding-top: 0px;
  }

  .hero7__title {
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.6px;
  }

  .hero7 {
    padding: 40px 0 40px;
    background-image: url("/wp-content/uploads/2026/06/hero7bgmob.webp");
    background-position: top;
  }
}

/* The AWS Cost Optimization  */

.shortx {
  position: relative;
  overflow: hidden;
  background: #f9fafb;
  padding: 80px 0;
}

.shortx__img-wrap {
  width: 100%;
  aspect-ratio: 498 / 609;
  border: 1px solid #cfcfcf;
  border-radius: 12px;
  overflow: hidden;
  background: #6f6f6f;
}

.shortx__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shortx__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.shortx__head-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shortx__title {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: -0.8px;
  color: #212121;
}

.shortx__sub {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #323232;
}

/* Accordion */
.shortx__acc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.shortx__head {
  width: 100%;
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  /* closed-item divider */
  text-align: left;
}

.shortx__item.is-open .shortx__head {
  border-bottom-color: transparent;
}

.shortx__q {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.32px;
  white-space: nowrap;
  background: linear-gradient(
    90deg,
    #0000ff 0%,
    #4e49e0 33.654%,
    #d90094 66.827%,
    #ff0a0a 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.shortx__icon {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.shortx__icon::before,
.shortx__icon::after {
  content: "";
  position: absolute;
  background: #212121;
  border-radius: 2px;
}

.shortx__icon::before {
  left: 4px;
  right: 4px;
  top: 50%;
  height: 2px;
  transform: translateY(-50%);
}

.shortx__icon::after {
  top: 4px;
  bottom: 4px;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
}

.shortx__item.is-open .shortx__icon {
  transform: rotate(45deg);
}

.shortx__body {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}

.shortx__item.is-open .shortx__body {
  max-height: 1000px;
  /* CSS fallback: open answer is visible even before JS runs */
  opacity: 1;
}

.shortx__body-inner {
  padding: 10px;
}

.shortx__item.is-open .shortx__body-inner {
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
}

.shortx__body-inner p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #000000;
}

/* Button */
.shortx__btn-row {
  margin-top: 40px;
}

@media (max-width: 991.98px) {
  .shortx {
    padding: 56px 0;
  }

  .shortx__img-wrap {
    aspect-ratio: 4 / 3;
    margin-bottom: 32px;
  }

  .shortx__content {
    gap: 28px;
  }

  .shortx__title {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.6px;
  }

  .shortx__q {
    font-size: 26px;
    line-height: 34px;
  }
}

@media (max-width: 575.98px) {
  .shortx {
    padding: 40px 0;
  }

  .shortx__title {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.32px;
  }

  .shortx__sub {
    font-size: 18px;
    line-height: 27px;
  }

  .shortx__content {
    gap: 24px;
  }

  .shortx__acc {
    gap: 12px;
  }

  .shortx__head {
    padding: 8px 0;
  }

  .shortx__body-inner {
    padding: 0 0 10px;
  }

  .shortx__q {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0;
    white-space: normal;
  }

  .shortx__btn {
    width: 100%;
  }

  .cta-btn-wrap,
  .cta-btn--primary {
    width: 100% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shortx__body,
  .shortx__icon {
    transition: none;
  }
}

.hero7__card_ani {
  transform-style: preserve-3d;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

.hero7__card_ani:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* .awstat {
    background: #f9fafb;
    position: relative;
} */

.awstat {
  position: relative;
  background-image: url("/wp-content/uploads/2026/06/statsbgdesk.webp");
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.awstat__pin {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.awstat__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.awstat__heading {
  font-weight: 600;
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -0.8px;
  color: #212121;
  margin: 0;
}

/* .awstat__gray {
        color: #a4a4a4;
    } */
.awstat__heading .awf-word {
  display: inline-block;
  white-space: pre;
  /* keep the spaces between words */
  background-image: linear-gradient(
    90deg,
    #000 0%,
    #000 50%,
    #a4a4a4 50%,
    #a4a4a4 100%
  );
  background-size: 200% 100%;
  background-position: 100% 0;
  /* 100% = fully light, 0% = fully dark */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* tiny easing so the moving edge looks soft */
  transition: background-position 0.08s linear;
}

.awstat__sub {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #323232;
  margin: 0 0 24px;
  max-width: 453px;
}

.awstat__cta {
  display: inline-flex;
  padding: 16px 24px;
  background: #0f0232;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
  cursor: pointer;
  margin-top: 20px;
  align-self: flex-start;
}

.awstat__stage {
  position: relative;
  width: 100%;
  max-width: 486px;
  margin-left: auto;
  height: 225px;
}

.awstat__card {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 225px;
  background: #f9fafb;
  border: 1.5px solid #c5c5c5;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: flex-start;
  will-change: transform;
  transform-origin: center center;
  backface-visibility: hidden;
}

.awstat__card-title {
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -0.32px;
  margin: 0;
  background: linear-gradient(
    68deg,
    #0000ff 6.28%,
    #4e49e0 39.54%,
    #d90094 72.32%,
    #ff0a0a 105.1%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  width: fit-content;
}

.awstat__card-text {
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
  color: #000;
  margin: 0;
}

@media (max-width: 991px) {
  .awstat {
    height: auto !important;
    padding: 40px 0;
    background-image: url("/wp-content/uploads/2026/06/scrolimgbg.webp");
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .awstat__pin {
    position: static;
    height: auto;
    display: block;
    overflow: visible;
  }

  .awstat__left {
    margin-bottom: 24px;
  }

  .awstat__heading {
    font-size: 32px;
    line-height: 40px;
  }

  .awstat__sub {
    max-width: 100%;
    margin-bottom: 16px;
  }

  .awstat__stage {
    position: static;
    height: auto !important;
    max-width: 100%;
    margin-left: 0;
  }

  .awstat__card {
    position: static;
    width: 100%;
    height: auto !important;
    min-height: 225px;
    margin-bottom: 19px;
    gap: 8px;
    padding: 15px;
    transform: none !important;
    opacity: 1 !important;
    justify-content: flex-start;
  }

  .awstat__card:last-child {
    margin-bottom: 0;
  }

  .awstat__card-title {
    font-size: 24px;
    line-height: 36px;
  }
  .hero7__card_ani:hover {
    border-radius: 16px;
  }
}

/* =============================================
   CTA AWS
   ============================================= */

.cta-aws {
  background: #f9fafb;
  padding: 80px 0;
}

/* Card — overflow hidden clips the rotated ::before bg */
.cta-aws__card {
  position: relative;
  width: 100%;
  min-height: 417px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

/* Layer 1: rotated background image via pseudo-element */
.cta-aws__card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("/wp-content/uploads/2026/06/glow-cta.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* Layer 2: content frame — sits above the bg image */
/* .cta-aws__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 995px;
  min-height: 321px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 48px 73px;
  text-align: center;
} */
.cta-aws__frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 995px;
  min-height: 321px;
  border-radius: 16px;
  background: transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(34px);
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.2),
    0 0 94px 0px rgba(298, 287, 203, 0);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 48px 73px;
  text-align: center;
}

.cta-aws__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 848px;
}

.cta-aws__title {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: 52px;
  letter-spacing: -0.8px;
  color: #f9fafb;
}

.cta-aws__text {
  margin: 0;
  max-width: 716px;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  color: #f9fafb;
}

/* =============================================
   TABLET (768–1199px)
   ============================================= */

@media (max-width: 1199.98px) {
  .cta-aws {
    padding: 56px 0;
  }

  .cta-aws__card {
    min-height: 0;
  }

  .cta-aws__frame {
    min-height: 0;
    gap: 32px;
    padding: 40px 32px;
  }

  .cta-aws__title {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -0.6px;
  }

  .cta-aws__text {
    font-size: 18px;
    line-height: 28px;
  }
}

/* =============================================
   MOBILE (<576px)
   ============================================= */

@media (max-width: 575.98px) {
  .cta-aws {
    padding: 40px 0;
  }

  .cta-aws__card {
    min-height: 314px;
    border-radius: 24px;
  }

  /* Mobile bg image — swap to mobile asset */
  .cta-aws__card::before {
    background-image: url("/wp-content/uploads/2026/06/glow-ban-mob.webp");
  }

  .cta-aws__frame {
    max-width: 100%;
    min-height: auto;
    padding: 16px;
    gap: 24px;
    border-radius: 16px;
  }

  .cta-aws__title {
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -0.32px;
  }

  .cta-aws__text {
    font-size: 18px;
    line-height: 27px;
  }

  .home-cta-loop__btn,
  .home-cta-loop__btn-wrap {
    width: 100%;
  }
}
/* trial */

.perm__panel {
  position: relative;
  max-width: 580px;
  margin-left: auto;
  padding: 16px;
  border-radius: 16px;
  background: url("/wp-content/uploads/2026/06/glow-grad-bg.webp") center /
    cover no-repeat;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
