/*!********************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/sass-loader/dist/cjs/index.js??ruleSet[1].rules[1].use[2]!./sass/site/landings/landing.sbcSummitLisbon.scss ***!
  \********************************************************************************************************************************************************************************************************/
:root {
  --font-main: "Wazdan Sans", sans-serif;
  --panel-gradient: linear-gradient(180deg, #880cff 0%, #3305ff 100%);
  --cta-gradient: linear-gradient(268.46deg, #ff76ff 1.31%, #ff3d17 98.69%);
  --purple-accent: #931afb;
  --purple-border: #9420d5;
  --purple-shadow: rgba(148, 32, 213, 0.89);
  --dark-bg: #140026;
  --header-height: 140px;
  --fs-h1: clamp(34px, 24.3428571429px + 2.4761904762vw, 60px);
  --fs-heading-lead: clamp(28px, 20.5714285714px + 1.9047619048vw, 48px);
  --fs-h2: clamp(25px, 20.1714285714px + 1.2380952381vw, 38px);
  --fs-h3: clamp(20px, 18.1428571429px + 0.4761904762vw, 25px);
  --fs-h4: clamp(16px, 14.5142857143px + 0.380952381vw, 20px);
  --fs-h5: clamp(13px, 11.8857142857px + 0.2857142857vw, 16px);
}

.landing-sbc {
  min-height: 100vh;
  color: #ffffff;
  overflow-x: hidden;
  background: var(--dark-bg);
}

@media (max-width: 768px) {
  :root {
    --header-height: 76px;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 16px) 16px 40px;
  background: linear-gradient(180deg, rgba(177, 10, 255, 0.55) 0%, rgba(58, 45, 135, 0) 50%), linear-gradient(180deg, rgba(19, 6, 39, 0) 40%, #18062d 98%), url("https://wazdan.com/wp-content/uploads/Hero-background.webp") center top/cover no-repeat;
}

.hero__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 2;
}

.hero__content {
  text-align: center;
  width: 100%;
}

.hero__br-mobile {
  display: inline;
}

.hero__title {
  font-size: var(--fs-h1);
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 16px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero__meta {
  color: #ffffff;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.hero__meta-brand {
  font-size: var(--fs-h1);
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero__meta-row {
  font-size: var(--fs-h2);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 4px;
}

.hero__meta-highlight {
  display: block;
  font-size: var(--fs-h2);
  font-weight: 800;
  line-height: 1.1;
  margin-top: 10px;
}

.hero__card {
  width: 100%;
  max-width: 380px;
  background: var(--panel-gradient);
  border-radius: 34px;
  padding: 34px 22px 28px;
  box-shadow: 0 24px 60px rgba(13, 0, 36, 0.5);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: min-height 0.3s ease;
}

.hero__card-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__card-body.is-hidden {
  display: none !important;
}

.hero__card-success {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 20px 10px;
  animation: fadeIn 0.4s ease forwards;
}

.hero__card-success[hidden] {
  display: none !important;
}

.hero__success-title {
  font-size: clamp(22px, 16.0571428571px + 1.5238095238vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero__card-title {
  font-size: var(--fs-h3);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.hero__card-text {
  font-size: var(--fs-h4);
  font-weight: 400;
  line-height: 1.45;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.95);
}

.hero__card-text strong {
  font-weight: 700;
}

.hero__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  width: 100%;
}

.hero__form-input, .hero__form-textarea {
  width: 100%;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  color: #222222;
  font-size: 13.5px;
  text-align: center;
  padding: 12px 18px;
  outline: none;
}

.hero__form-input::-moz-placeholder, .hero__form-textarea::-moz-placeholder {
  color: #b8b8b8;
  text-align: center;
  font-size: 13px;
}

.hero__form-input::placeholder, .hero__form-textarea::placeholder {
  color: #b8b8b8;
  text-align: center;
  font-size: 13px;
}

.hero__form-textarea {
  min-height: 120px;
  border-radius: 22px;
  resize: none;
  padding-top: 12px;
}

.hero__form-submit {
  align-self: center;
  border: none;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 9px 36px;
  cursor: pointer;
  margin-top: 4px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero__form-submit:hover {
  background: #11112b;
  transform: scale(1.04);
}

.hero__form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.hero__form-note {
  font-size: 10.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  margin-top: 14px;
}

.hero__form-note a {
  color: #ffffff;
  text-decoration: underline;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 992px) {
  .hero {
    min-height: 100vh;
    padding: calc(var(--header-height) + 32px) 32px 50px;
  }
  .hero__br-mobile {
    display: none;
  }
  .hero__container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 705px);
    gap: 48px;
    align-items: center;
  }
  .hero__content {
    text-align: left;
    transform: translateY(-20px);
  }
  .hero__title {
    font-size: var(--fs-h1);
    line-height: 1.1;
    max-width: 495px;
    margin-bottom: 40px;
  }
  .hero__meta-brand {
    font-size: var(--fs-h1);
    line-height: 1;
    margin-bottom: 36px;
  }
  .hero__meta-row {
    font-size: var(--fs-h2);
    line-height: 1.25;
    margin-bottom: 6px;
  }
  .hero__meta-highlight {
    font-size: var(--fs-h2);
    font-weight: 700;
    line-height: 1;
    margin-top: 36px;
  }
  .hero__card {
    justify-self: end;
    max-width: 705px;
    height: auto;
    min-height: auto;
    padding: 56px 52px 48px;
    transform: none;
    text-align: left;
    align-items: stretch;
    justify-content: flex-start;
  }
  .hero__card-body {
    text-align: left;
    align-items: stretch;
  }
  .hero__card-success {
    min-height: 380px;
    padding: 40px 20px;
  }
  .hero__card-title {
    line-height: 1.15;
    margin-bottom: 14px;
  }
  .hero__card-text {
    line-height: 1.35;
    margin-bottom: 10px;
  }
  .hero__form {
    gap: 14px;
    margin-top: 20px;
  }
  .hero__form-input, .hero__form-textarea {
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .hero__form-textarea {
    min-height: 120px;
  }
  .hero__form-submit {
    padding: 10px 38px;
    margin-top: 8px;
  }
  .hero__form-note {
    margin-top: 20px;
  }
}
/* ===================================================
   SHOWCASE
   =================================================== */
.showcase {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 16px 80px;
  overflow-x: hidden;
  background: linear-gradient(180deg, #18062d 0%, rgba(24, 6, 45, 0) 25%), linear-gradient(180deg, rgba(0, 0, 0, 0) 75%, #05060f 100%), url("https://wazdan.com/wp-content/uploads/Panel-background.webp") center top/cover no-repeat;
}

.showcase__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.showcase__title {
  font-size: var(--fs-h1);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  text-align: center;
  margin-bottom: 48px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.showcase__grid--desktop {
  display: none;
  position: relative;
}

.showcase__card {
  background: transparent;
  border: none;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 342/685;
  cursor: pointer;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.showcase__card img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.showcase__card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6);
}

.showcase__slider {
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
  display: flex;
}

.showcase__slider-arrow {
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.2s;
}

.showcase__slider-arrow--prev {
  left: -8px;
}

.showcase__slider-arrow--prev img {
  transform: rotate(180deg);
}

.showcase__slider-arrow--next {
  right: -8px;
}

.showcase__slider-arrow:active {
  opacity: 0.6;
}

.showcase__slider-arrow img {
  display: block;
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
  object-fit: contain;
}

.showcase__slider-track {
  width: min(402px, 82vw);
  aspect-ratio: 402/705;
  position: relative;
  overflow: visible;
}

.showcase__slider-slide {
  width: 78%;
  height: 94%;
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translateX(-50%) scale(0.92);
  opacity: 0.5;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s, transform 0.3s;
}

.showcase__slider-slide.is-active {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  z-index: 2;
}

.showcase__slider-slide.is-prev {
  opacity: 0.7;
  transform: translateX(-150%) scale(0.92);
}

.showcase__slider-slide.is-next {
  opacity: 0.7;
  transform: translateX(50%) scale(0.92);
}

.showcase__slider-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
}

@media (min-width: 769px) {
  .showcase {
    min-height: calc(100vh - 40px);
    padding: 80px 24px 100px;
  }
  .showcase__grid--desktop {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
  .showcase__slider {
    display: none;
  }
}
/* ===================================================
   STATS
   =================================================== */
.stats {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 16px 90px;
  overflow-x: hidden;
  background: linear-gradient(rgba(0, 0, 0, 0.64), rgba(0, 0, 0, 0.64)), url("https://wazdan.com/wp-content/uploads/Deck-background.webp") center top/cover no-repeat;
}

.stats__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.stats__title {
  font-size: var(--fs-h1);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  text-align: center;
  margin-bottom: 48px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 12px;
  max-width: 1140px;
  margin: 0 auto 40px;
}

.stats__grid .stats__item:last-child {
  grid-column: 1/-1;
  justify-self: center;
  width: calc(50% - 6px);
  max-width: none;
}

.stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  min-height: 112px;
}

.stats__value {
  font-size: clamp(1.8rem, 3.2vw, 42px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stats__label {
  font-size: var(--fs-h5);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.25;
}

.stats__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 12px auto 0;
  padding: 12px 34px;
  border-radius: 50px;
  background: var(--purple-accent);
  border: 1px solid var(--purple-border);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 4px 0 rgba(148, 32, 213, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.stats__cta:hover {
  transform: translateY(-2px);
  background: rgb(156.4557939914, 46.0497854077, 251.3502145923);
  box-shadow: 0 6px 14px 0 rgba(148, 32, 213, 0.45);
  color: #ffffff;
  text-decoration: none;
}

@media (min-width: 769px) {
  .stats {
    min-height: 100vh;
    padding: 100px 24px 110px;
  }
  .stats__grid {
    grid-template-columns: repeat(4, minmax(0, 341px));
    gap: 20px;
    max-width: 1424px;
    margin-bottom: 48px;
    justify-content: center;
  }
  .stats__grid .stats__item:nth-child(-n+4) {
    grid-row: 1;
    width: 100%;
  }
  .stats__grid .stats__item:nth-child(5),
  .stats__grid .stats__item:nth-child(6),
  .stats__grid .stats__item:nth-child(7) {
    grid-row: 2;
    transform: translateX(180.5px);
  }
  .stats__grid .stats__item:nth-child(5) {
    grid-column: 1;
  }
  .stats__grid .stats__item:nth-child(6) {
    grid-column: 2;
  }
  .stats__grid .stats__item:nth-child(7) {
    grid-column: 3;
    width: 100%;
  }
  .stats__grid .stats__item {
    width: 100%;
    height: 169px;
    min-height: 169px;
    padding: 24px 16px;
  }
  .stats__grid .stats__value {
    font-size: 58px;
  }
  .stats__grid .stats__label {
    font-size: 20px;
  }
}
/* ===================================================
   TEAM
   =================================================== */
.team {
  position: relative;
  padding: 60px 16px 80px;
  overflow-x: hidden;
  background-color: #0d082b;
}

.team::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 880px;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(180deg, rgba(13, 8, 43, 0.95) 0%, rgba(13, 8, 43, 0.82) 35%, #0d082b 100%), url("https://wazdan.com/wp-content/uploads/Parrot-background.webp") calc(50% + 40px) top no-repeat;
  background-size: max(100vw, 1100px) auto;
}

.team__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.team__title {
  font-size: var(--fs-h1);
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 16px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.team__subtitle {
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  max-width: 820px;
  margin: 0 auto 32px;
}

.team__filters {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 12px;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 36px;
}

.team__filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1.5px solid var(--purple-border);
  background: #000000;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 0 4px 0 var(--purple-shadow);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.team__filter.is-active {
  background: var(--purple-accent);
  border-color: var(--purple-border);
  box-shadow: 0 0 10px 0 var(--purple-shadow);
}

.team__filter:hover:not(.is-active) {
  background: rgba(148, 32, 213, 0.2);
  box-shadow: 0 0 8px 0 var(--purple-shadow);
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 36px 24px;
  width: 100%;
  max-width: 1100px;
  justify-items: center;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.team__card {
  width: 100%;
  max-width: 320px;
  text-align: center;
}

.team__card.is-hidden {
  display: none !important;
}

.team__card-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.team__card-photo-wrap {
  position: relative;
  width: 220px;
  height: 230px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 16px;
}

.team__card-person {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: bottom center;
  object-position: bottom center;
  padding-bottom: 10px;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
}

.team__card-name {
  font-size: var(--fs-h3);
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.15;
}

.team__card-role {
  font-size: var(--fs-h4);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.25;
  max-width: 300px;
}

.team__show-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 36px;
  border-radius: 50px;
  border: 1px solid var(--purple-border);
  background: var(--purple-accent);
  color: #ffffff;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(148, 32, 213, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.team__show-more:hover {
  transform: translateY(-2px);
  background: rgb(156.4557939914, 46.0497854077, 251.3502145923);
  box-shadow: 0 0 20px rgba(148, 32, 213, 0.65);
}

.team__show-more.is-hidden {
  display: none;
}

@media (min-width: 992px) {
  .team {
    padding: 90px 20px 110px;
  }
  .team::before {
    height: 980px;
    background: linear-gradient(180deg, rgba(13, 8, 43, 0.95) 0%, rgba(13, 8, 43, 0.82) 35%, #0d082b 100%), url("https://wazdan.com/wp-content/uploads/Parrot-background.webp") center top no-repeat;
    background-size: cover;
  }
  .team__subtitle {
    margin-bottom: 44px;
  }
  .team__filters {
    max-width: none;
    flex-wrap: nowrap;
    gap: 20px;
    margin-bottom: 54px;
  }
  .team__filter {
    height: 81px;
    padding: 0 40px;
    font-size: 20px;
    font-weight: 500;
    border-width: 2px;
    box-shadow: 0 0 4px 0 var(--purple-shadow);
  }
  .team__filter[data-filter=all] {
    min-width: 120px;
  }
  .team__filter[data-filter=c-suite] {
    min-width: 170px;
  }
  .team__filter[data-filter=account-management] {
    min-width: 210px;
    padding: 0 40px;
  }
  .team__filter.is-active {
    box-shadow: 0 0 12px 0 var(--purple-shadow);
  }
  .team__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 36px;
    margin-bottom: 48px;
  }
  .team__card-photo-wrap {
    width: 308px;
    height: 323px;
    margin-bottom: 20px;
  }
  .team__show-more {
    height: 52px;
    padding: 0 38px;
  }
}
/* ===================================================
   CTA
   =================================================== */
.cta {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 16px 40px;
  background: linear-gradient(180deg, rgba(13, 8, 43, 0.95) 0%, rgba(13, 8, 43, 0) 25%), linear-gradient(180deg, rgba(0, 0, 0, 0) 75%, rgba(10, 5, 25, 0.95) 100%), url("https://wazdan.com/wp-content/uploads/Form-background-1.webp") center center/cover no-repeat;
}

.cta__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta__wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.cta__card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 360px;
  padding: 40px 20px 36px;
  border-radius: 36px;
  background: var(--panel-gradient);
  color: #ffffff;
  box-shadow: 0 24px 60px rgba(13, 0, 36, 0.55);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta__title {
  font-size: var(--fs-heading-lead);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
}

.cta__content {
  width: 100%;
  max-width: 240px;
  margin: 0 auto 24px;
}

.cta__text {
  font-size: var(--fs-h3);
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
}

.cta__text strong {
  font-weight: 700;
}

.cta__text--highlight {
  margin-bottom: 0;
}

.cta__br-mobile {
  display: inline;
}

.cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: #111322;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta__button:hover {
  background: #000000;
  transform: scale(1.03);
  color: #ffffff;
  text-decoration: none;
}

.cta__asset {
  display: block;
  position: absolute;
  right: -40px;
  top: -37%;
  height: 270%;
  max-height: none;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: top center;
  object-position: top center;
  z-index: 3;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.5));
}

@media (max-width: 991px) {
  .cta__asset {
    display: none;
  }
}
@media (min-width: 992px) {
  .cta {
    min-height: 100vh;
    padding: 60px 32px;
  }
  .cta__wrap {
    justify-content: flex-start;
    align-items: center;
    min-height: 630px;
  }
  .cta__card {
    max-width: 788px;
    padding: 64px 56px 60px;
    border-radius: 34px;
    text-align: left;
    align-items: flex-start;
  }
  .cta__title {
    font-size: var(--fs-heading-lead);
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 689px;
  }
  .cta__content {
    max-width: 575px;
    margin: 0 0 32px 0;
  }
  .cta__text {
    font-size: var(--fs-h3);
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .cta__text--highlight {
    margin-bottom: 24px;
  }
  .cta__br-mobile {
    display: none;
  }
  .cta__button {
    width: auto;
    height: auto;
    padding: 12px 34px;
    font-size: 14px;
    background: #000000;
  }
}
@media (min-width: 1600px) {
  .cta .cta__asset {
    right: calc(50% - 780px - 40px);
    top: -37%;
    height: 270%;
  }
} 

/*# sourceMappingURL=landing.sbcSummitLisbon.min.css.map*/