/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*,
:after,
:before {
  box-sizing: border-box;
}
:root {
  --wac-body-font-family: "Inter", sans-serif;
  --wac-body-font-family-secondary: "Inter", sans-serif;
}
body {
  font-family: "Inter", sans-serif;
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}
figure {
  position: relative;
  overflow: hidden;
  width: 100%;
}
figure > img,
figure > a > img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
}
/* :root {
    --container-gutter-x: 1rem;
    --container-gutter-y: 1rem;
  } */

.magenext-container {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
  /* sm: 540px, */
  /* md: 720px, */
  /* lg: 960px, */
  /* xl: 80%, */
  /* xxl: 1467px */
}

@media (min-width: 576px) {
  .magenext-container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .magenext-container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .magenext-container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .magenext-container {
    max-width: 80%;
  }
}

@media (min-width: 1600px) {
  .magenext-container {
    max-width: 1300px;
  }
}

header .btn-two {
  display: inline-block;
  padding: 12px 24px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  border-radius: 50rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
header .btn-two:hover {
  opacity: 0.8;
}
img {
  user-select: none;
  max-width: 100%;
}

.ttl-50 {
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 30px;
}

/* @media (min-width: 992px) {
  .ttl-50 {
    margin-bottom: 34px;
  }
} */
@media (min-width: 1200px) {
  .ttl-50 {
    font-size: 46px;
    margin-bottom: 60px;
  }
}
@media (min-width: 1600px) {
  .ttl-50 {
    font-size: 50px;
  }
}

/* Layout Helpers */
.d-flex {
  display: flex;
}
.align-items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.position-relative {
  position: relative;
}
.z-1 {
  z-index: 1;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.text-center {
  text-align: center;
}
.text-lg-start {
  text-align: left;
}
.mb-0 {
  margin-bottom: 0;
}
.mt-4 {
  margin-top: 1rem;
}

/* Header */
.header {
  position: fixed;
  z-index: 1040;
  top: 0;
  left: 0;
  width: 100%;
  padding: 32px 0 20px;
  background: transparent;
  font-family: var(--wac-body-font-family-secondary);
  font-weight: 500;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.header.active {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  transform: translateY(-5px);
}
.logo {
  aspect-ratio: 196.5 / 22.8;
  width: 169px;
}
@media (min-width: 768px) {
  .logo {
    width: 196px;
  }
  .header {
    padding: 19px 0 10px;
  }
}
.header .nav {
  display: none;
}
@media (min-width: 1200px) {
  .header .nav {
    display: flex;
    gap: 0;
  }
}
.header .nav_link {
  color: #fff;
  background: none;
  border: none;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease;
  font-family:"Inter", sans-serif ;
}
.header .nav_link:hover,
.header .nav_link.active {
  opacity: 0.7;
}

/* Hero */
.hero {
  position: relative;
  padding: 132px 0 30px;
  background-color: #000;
}
@media (min-width: 992px) {
  .hero {
    padding: 150px 0 65px;
  }
}
@media (min-width: 1400px) {
  .hero {
    padding: 181px 0 75px;
  }
}
.hero .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  aspect-ratio: 375/800;
}
@media (min-width: 576px) {
  .hero .background {
    aspect-ratio: 375/600;
  }
}
@media (min-width: 768px) {
  .hero .background {
    aspect-ratio: 1920/1080;
  }
}
.hero .background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.hero .background img,
.hero .background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  z-index: 0;
}
.hero_text {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
  text-align: center;
  color: #fff;
}
@media (min-width: 768px) {
  .hero_text {
    margin-bottom: 50px;
  }
  .hero_text .subtitle {
    margin-bottom: 24px;
  }
}
@media (min-width: 1200px) {
  .hero_text {
    margin-bottom: 88px;
  }
}
.hero_text .subtitle {
  font-size: 14px;
  margin-bottom: 16px;
}
.hero_text .title {
  margin-bottom: 24px;
  line-height: 1.1;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .hero_text .title {
    font-size: 48px;
    margin-bottom: 32px;
  }
}

.hero_text .title span {
  background: linear-gradient(90deg, #bd60fb 20%, #0090f8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}
.hero_text p {
  margin: 0 auto 32px;
}

/* Showcase */
.showcase {
  padding: 6px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 100%;
  background-color: #1c1c1c;

 
}
@media (min-width: 768px) {
  .showcase {
    padding: 12px;
    border-radius: 20px;
  }
  .hero_text p {
    font-size: 16px;
    max-width: 616px;
    margin: 0 auto 40px;
  }
}
@media (min-width: 1200px) {
  .showcase {
    padding: 16px;
    border-radius: 24px;
  }
}
.showcase .image,
.showcase .video {
  position: relative;
  aspect-ratio: 1268/803.6;
  overflow: hidden;
  background-color: #000;
  border-radius: calc(8px * 0.5);
  width: 100%;
  /* video */
  display: block;
}
@media (min-width: 768px) {
  .showcase .image {
    border-radius: calc(20px * 0.5);
  }
}
@media (min-width: 1200px) {
  .showcase .image {
    border-radius: calc(24px * 0.5);
  }
}
.showcase .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  filter: blur(3px);
  transition: opacity 1s ease-in-out, filter 1s ease-in-out;
  pointer-events: none;
}
.showcase .slide.active {
  opacity: 1;
  filter: blur(0);
}

/* Features */
.features {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .features {
    padding: 40px 0;
  }
}
@media (min-width: 1200px) {
  .features {
    padding: 75px 0;
  }
}
.features .title {
  max-width: 525px;
}
.features .title span {
  display: inline-block;
}
.cardstack {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card-link {
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: #fff;
}
.card_image {
  border-radius: 12px;
  aspect-ratio: 417/440;
  overflow: hidden;
  background: linear-gradient(#000, #000) padding-box,
    linear-gradient(90deg, #323232, #1e1e1e) border-box;
  border: 1px solid transparent;
}
.card_content {
  padding: 16px 16px 0;
}
@media (min-width: 768px) {
  .card_content {
    padding: 25px 16px 0;
  }
}
@media (min-width: 1200px) {
  .card_content {
    padding: 32px 16px 0;
  }
}
.card_content p {
  color: #9b9b9b;
  font-weight: 500;
  font-size: 16px;
}
@media (min-width: 992px) {
  .card_content p {
    font-size: 18px;
  }
}
.card_content span {
  color: #fff;
}
.fade-element {
  opacity: 0;

  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-element.visible {
  opacity: 1;
}

/* Templates */
.templates {
  position: relative;
  padding: 30px 0;
}
@media (min-width: 768px) {
  .templates {
    padding: 40px 0;
  }
}
@media (min-width: 1200px) {
  .templates {
    padding: 75px 0;
  }
}
.templates::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 13%, transparent 100%);
  z-index: 1;
}
.templates .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
@media (max-width :640px) {
  .templates .background img {
    top: -75px;
  }
}
.templates .title {
  max-width: 75%;
}
.templates .figure {
  position: relative;
  aspect-ratio: 638/538;
  border-radius: 12px;
  overflow: hidden;
  max-width: 100%;
}
@media (min-width: 992px) {
  .templates .figure {
    border-radius: 20px;
  }
  .templates .title {
    max-width: 520px;
  }
}
.templates .figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.templates .hoverImage {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.templates .figure:hover .mainImage {
  opacity: 0;
}
.templates .figure:hover .hoverImage {
  opacity: 1;
}
.card_heading {
  padding: 16px 16px 0;
}
@media (min-width: 768px) {
  .card_heading {
    padding: 25px 16px 0;
  }
}
@media (min-width: 1200px) {
  .card_heading {
    padding: 32px 16px 0;
  }
}
.card_title {
  font-size: 20px;
  margin-bottom: 4px;
}
@media (min-width: 992px) {
  .card_title {
    font-size: 24px;
    font-weight: 500;
  }
}

/* Performance */
.performance {
  --media-desktop-w: 638;
  --media-desktop-h: 447;
  --media-mobile-w: 638;
  --media-mobile-h: 550;
}

@media (max-width: 991.98px) {
  .heading {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
  .heading h2 {
    text-align: center;
  }
}
@media (max-width: 1199.98px) {
  .heading h2 {
    max-width: 350px;
  }
}

@media (min-width: 992px) {
  .heading {
    padding: 40px 0 0 0;
  }
}
@media (min-width: 1200px) {
  .heading {
    padding: 75px 0 0 0;
  }
}

.performance {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .performance {
    padding: 40px 0;
  }
}
@media (min-width: 992px) {
  .performance {
    padding: 0 0 40px;
  }
}
@media (min-width: 1200px) {
  .performance {
    padding: 0 0 75px;
  }
  .performance .title {
    font-size: 56px;
  }
}
.performance .title {
  line-height: 1.25;
  max-width: 350px;
}

@media (max-width: 767.98px) {
  .performance .magenext-container .performance_media_wrapper {
    display: none;
  }
}
.tabwrapper,
.tabwrapper_mobile {
  display: flex;
  padding: 6px;
  background: rgba(41, 41, 41, 1);
  width: fit-content;
  margin-bottom: 20px;
  border-radius: 32px;
}
.tabwrapper button,
.tabwrapper_mobile button {
  border-radius: 25px;
}
@media (max-width: 991.98px) {
  .tabwrapper {
    display: none;
  }
  .tabwrapper_mobile {
    margin-inline: auto;
    position: sticky;
    top: 100px;
    z-index: 1;
  }
}
@media (min-width: 992px) {
  .tabwrapper_mobile {
    display: none;
  }
  .tabwrapper {
    margin-bottom: 40px;
  }
}
.tabbtn {
  padding: 11px 20px;
  background: transparent;
  color: #fff;
  border: none;
  font-family: var(--wac-body-font-family-secondary);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 992px) {
  .tabbtn {
    padding: 13px 24px;
  }
}
.tabbtn.active {
  background: #fff;
  color: #000;
  -webkit-tap-highlight-color:transparent
}
.performance .media {
  position: relative;
  aspect-ratio: calc(var(--media-mobile-w) / var(--media-mobile-h));
  width: calc(var(--media-desktop-w) * 1px);
  max-width: 100%;
  margin-inline: auto;
  overflow: hidden;
}

.media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.2s ease;
  object-position: top;
}
.media .mobileImage {
  opacity: 0;
}
.media.mobileActive .desktopImage {
  opacity: 0;
}
.media.mobileActive .mobileImage {
  opacity: 1;
}

/* @media (min-width: 768px) {
  .lighthouse {
    padding-top: 50px;
  }
} */
.google {
  aspect-ratio: 260/58;
  width: 260px;
  max-width: 55.5%;
  position: relative;
}
@media (max-width: 991.98px) {
  .google {
    margin-inline: auto;
  }
}

/* Progress Bar */
.progressContainer {
  position: relative;
  width: 182px;
  height: 182px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.progressSvg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 2px rgba(0, 255, 181, 0.5));
}

/* Responsive Blur Filter Control */
.progress-glow {
  filter: url(#glow-small);
}

@media (min-width: 768px) {
  .progress-glow {
    filter: url(#glow-medium);
  }
  .progressSvg {
    filter: drop-shadow(0 0 20px rgba(0, 255, 181, 0.5));
  }
}

@media (min-width: 1024px) {
  .progress-glow {
    filter: url(#glow-large);
  }
}

.progressText {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  width: 95%;
}
@media (max-width: 574.98px) {
  .progressText {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .progressContainer {
    height: 100%;
    margin-bottom: 30px;
  }
}
.progressNumber {
  display: block;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
}
@media (min-width: 576px) {
  .progressNumber {
    font-size: 25px;
  }
}
@media (min-width: 768px) {
  .progressNumber {
    font-size: 35px;
  }
}
@media (min-width: 1200px) {
  .progressNumber {
    font-size: 40px;
  }
}
.progressLabel {
  display: block;
  color: #636363;
  margin-top: 12px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .progressLabel {
    font-size: 14px;
    margin-top: 10px;
  }
}
@media (max-width: 574.98px) {
  .progressLabel {
    position: absolute;
    top: 100%;
  }
}

/* Capabilities */
.capabilities {
  background: #000;
  padding: 30px 0;
}
@media (min-width: 768px) {
  .capabilities {
    padding: 40px 0;
  }
}
@media (min-width: 1200px) {
  .capabilities {
    padding: 75px 0;
  }
}
.capabilities .header {
  text-align: center;
  margin-bottom: 30px;
}
.capabilities .title {
  max-width: 520px;
  text-align: center;
  margin-inline: auto;
  letter-spacing: -1px;
}
@media (max-width: 991.98px) {
  .capabilities_desktop_acoordian {
    display: none;
  }
  .capabilities .magenext-container .row .capabilities_accordian {
    margin: 0;
  }
}
.capabilities .row {
  gap: 130px;

}
.capabilities h2 span {
  display: inline-block;
}

.imageBox {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 520/620;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid transparent;
  background: linear-gradient(#141414, #141414) padding-box,
    linear-gradient(90deg, #282828, #141414) border-box;
}

@media (min-width: 992px) {
  .imageBox {
    max-width: 100%;
    width: 520px;
    height: 70%;
  }
  .capabilities .magenext-container .row .capabilities_accordian {
    margin: 34px 0px;
  }
}
@media (min-width: 1400px) {
  .imageBox {
    height: 100%;
  }
}
@media (max-width: 991.98px) {
  .imageBox {
    display: none;
  }
}

.imageTransition {
  transition: opacity 0.5s ease;
  opacity: 0;
}
.imageTransition.active {
  opacity: 1;
}

/* Accordion */
.acc_item {
  border-bottom: 1px solid #282828;
}
.acc_icon {
  padding: 5px;
}
.capabilities .acc_item:first-of-type button {
  padding: 0 0 24px 0;
}

.acc_header button {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  padding: 24px 0;
  align-items: center;
  -webkit-tap-highlight-color:transparent
}

@media (min-width: 992px) {
  .acc_header button {
    font-size: 18px;
  }
}
@media (max-width: 991.98px) {
  .acc_item img {
    display: none !important;
  }
}

/* .acc_header button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url('data:image/svg+xml,<svg width="10" height="2" viewBox="0 0 10 2" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M0.75 1.5H4.25H5.75H9.25C9.4625 1.5 9.64063 1.42708 9.78438 1.28125C9.92813 1.13542 10 0.956876 10 0.745625C10 0.534375 9.92813 0.357292 9.78438 0.214375C9.64063 0.0714588 9.4625 0 9.25 0H5.75H4.25H0.75C0.5375 0 0.359375 0.0729167 0.215625 0.21875C0.0718751 0.364583 0 0.543125 0 0.754375C0 0.965625 0.0718751 1.14271 0.215625 1.28562C0.359375 1.42854 0.5375 1.5 0.75 1.5Z" fill="white"/></svg>')
    no-repeat center;
  background-size: 10px;
} */
.acc_body {
  color: #afafaf;
  font-size: 14px;
  /* display: none; */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  /* opacity: 0; */
}
.acc_body.open {
  opacity: 1;
}
.acc_content {
  padding-bottom: 14px;
}
.acc_body ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  list-style: none;
}
.acc_body ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: currentColor;
}

/* Compare Features */
.compare_feature {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .compare_feature {
    padding: 40px 0;
  }
}
@media (min-width: 1200px) {
  .compare_feature {
    padding: 75px 0;
  }
}
.compare_feature .title {
  max-width: 550px;
}

/* Mobile Table - New Design */
:root {
  --mobile-bg: #050608;
  --mobile-card-bg: #101014;
  --mobile-row-alt: #16161b;
  --mobile-row-header: #202026;
  --mobile-border: #2b2b32;
  --mobile-text-main: #ffff;
  --mobile-text-sub: #ffff;
  --mobile-accent: #007bff;
}

.table_mobile {
  display: block;
  margin-bottom: 40px;
}
.table_mobile .unavailable-text {
  display: flex;
  align-items: center;
}
.table_mobile .unavailable-text .col-dot {
  margin: 8px;
}

/* .comparison-wrapper {
  background: var(--mobile-card-bg);
  border-radius: 8px;
  border: 1px solid var(--mobile-border);
  padding: 16px 16px 12px;
  max-width: 380px;
  width: 100%;
  overflow: hidden;
} */

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 12px;
}

.comparison-table th,
.comparison-table td {
  border: 1px solid var(--mobile-border);
  padding: 10px 10px;
  vertical-align: top;
}

/* Top headings */
.comparison-table thead th {
  background: #000;
  color: #ffffff;
  font-weight: 500;
  text-align: left;
  border-bottom-width: 0;
  font-size: 15px;
}
.comparison-table thead th:first-child {
  color: #0099ff;
}

/* .comparison-table thead th:first-child {
  background: var(--mobile-accent);
  color: #ffffff;
} */

.comparison-table thead th + th,
.comparison-table thead th + th + th {
  border-left: none;
}
@media (max-width: 480px) {
  .comparison-table thead th {
    width: 160px;
  }
  .table_mobile {
    overflow: auto;
  }
}

/* Section headers (Performance, SEO etc.) */
.section-header {
  background: var(--mobile-row-header);
  font-weight: 500;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.01em;
  padding: 6px 13px !important;
  color: #bfbfbf;
}

.section-header span {
  display: block;
}

.section-header {
  border-left-color: transparent;
  border-right-color: transparent;
}

.section-header[colspan="3"] {
  text-align: left;
}

/* Feature rows */
.feature-row:nth-child(odd) td {
  background: var(--mobile-card-bg);
}

.feature-row:nth-child(even) td {
  background: var(--mobile-row-alt);
}

.feature-row td {
  color: var(--mobile-text-sub);
  line-height: 1.4;
}

.feature-row td:first-child {
  color: var(--mobile-text-main);
}

.feature-title {
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.check-icon {
  font-size: 11px;
  line-height: 1.2;
}

.feature-title-text {
  font-weight: 400;
}

.muted {
  opacity: 0.85;
}

/* Make long text wrap similar to screenshot */
.comparison-table th,
.comparison-table td {
  word-wrap: break-word;
  word-break: break-word;
  padding: 20.5px 16px;
}
.comparison-table td {
  padding-block: 19px;
}
/* .comparison-table th {
  padding: 20.5px 16px;
} */

@media (max-width: 480px) {
  /* .comparison-wrapper {
    padding: 0;
    border: none;
    border-radius: 0;
  } */

  .comparison-table th,
  .comparison-table td {
    padding: 20.5px 16px;
  }
}

/* Remove old mobile tabs styles */
.mobile_tabs {
  display: none;
}

.tab_item {
  display: none;
}

.mobile_row {
  display: none;
}

.mobile_cell {
  display: none;
}

/* Business Benefits */
.benefits {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .benefits {
    padding: 40px 0;
  }
}
@media (min-width: 1200px) {
  .benefits {
    padding: 75px 0;
  }
}
.benefits .magenext-container .title {
  max-width: 530px;
}
.progresstack {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (min-width: 768px) {
  .progresstack {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
  }
  .progresstack > div {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 40px);
  }
}
.progressContainerPill {
  width: 100%;
}
@media (max-width: 768px) {
  .progressContainerPill div {
    max-width: 300px;
  }
}
.progressTrack {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  position: relative;
  overflow: visible; /* allow glow to show outside */
}
/* .progressArc {
  filter: url(#glow);
} */
.progressFill,
.progressFillGlow {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
}
.progressFill {
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--gradient-start),
    var(--gradient-end)
  );
  box-shadow: 0 0 24px var(--gradient-end), 0 0 1px var(--gradient-end),
    0 0 8px var(--gradient-end);
  transition: width 0.3s ease-out;
}
.progressFillGlow {
  width: 100%;
  height: 200%;
  top: -50%;
  background: radial-gradient(
    circle at right,
    var(--gradient-end) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  filter: blur(15px);
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}
.progressNumberPill {
  font-size: 80px;
  font-weight: 500;
  color: #fff;
  line-height: 0.8;
  margin-bottom: 32px;
  margin-top: 42px;
}
@media (min-width: 992px) {
  .progressNumberPill {
    font-size: 120px;
    margin-top: 50px;
  }
}
@media (min-width: 1200px) {
  .progressNumberPill {
    font-size: 140px;
    margin-top: 60px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1400px) {
  .progressNumberPill {
    font-size: 160px;
  }
}
.progressNumberPill span {
  font-size: 69%;
}
.progressLabelPill {
  font-size: 15px;
  color: #a0a0a0;
}
@media (min-width: 992px) {
  .progressLabelPill {
    font-size: 16px;
  }
}

/* Growth Block */
.growthblock {
  padding: 30px 0;
}
@media (min-width: 768px) {
  .growthblock {
    padding: 40px 0;
  }
}
@media (min-width: 1200px) {
  .growthblock {
    padding: 75px 0;
  }
}
.block {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, #000922 77%, #013ad6 100%);
  padding: 60px 25px;
}
.block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background: radial-gradient(
    ellipse at 50% -15%,
    rgba(1, 58, 214, 0.29) 14%,
    rgba(1, 58, 214, 0) 62%
  );
}
@media (min-width: 768px) {
  .block::before {
    left: 15%;
    width: 70%;
  }
}
@media (min-width: 992px) {
  .block {
    background: radial-gradient(
      circle at 30% -320%,
      #000922 89%,
      #013ad6 92%,
      #018bd6 95%
    );
    padding: 55px 70px;
  }
}
@media (min-width: 1200px) {
  .block {
    padding: 60px 80px;
  }
}
@media (min-width: 1400px) {
  .block {
    padding: 76px 100px;
  }
}
.figureBox {
  padding-left: 45px;
  padding-right: 66px;
  padding-top: 34px;
  max-width: 425px;
  position: relative;
}
@media (max-width: 991.98px) {
  .figureBox {
    margin-inline: auto;
  }
}
@media (min-width: 768px) {
  .figureBox {
    padding-left: 53px;
  }
}
@media (min-width: 992px) {
  .figureBox {
    padding-left: 16%;
    padding-right: 21%;
  }
}
.figureBox .figure {
  aspect-ratio: 261/314;
  width: 261px;
  max-width: 100%;
  border-radius: 12.6px;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .figureBox .figure {
    border-radius: 18px;
  }
}
.decor_01,
.decor_02 {
  position: absolute;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s, transform 0.3s;
}
.decor_01.animateDecor,
.decor_02.animateDecor {
  opacity: 1;
  transform: translateY(0);
}
.decor_01 {
  right: 0;
  top: 0;
  width: 160px;
  aspect-ratio: 160.04/172.92;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(30px);
  padding: 3.25%;
  font-size: 10px;
  z-index: 1;
  max-width: 38%;
}
@media (min-width: 1200px) {
  .decor_01 {
    font-size: 14px;
  }
}
.decor_01 .count {
  font-size: 22px;
  margin-top: 10px;
  line-height: 1.1;
}
@media (min-width: 1400px) {
  .decor_01 .count {
    font-size: 32px;
  }
}
.decor_02 {
  left: 0;
  bottom: 15%;
  width: 107px;
  aspect-ratio: 107/100;
  z-index: 1;
  max-width: 25%;
}
.growthblock .content {
  margin: 0 auto;
  max-width: 100%;
}
.growthblock .content h2 {
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.growthblock .content a {
  margin-top: 40px;
}

@media (max-width: 991.98px) {
  .growthblock .content {
    margin-top: 10px;
    text-align: center;
  }
}
.growthblock .content p {
  font-size: 14px;
}
@media (min-width: 576px) {
  .growthblock .content {
    max-width: 92%;
    margin-left: auto !important;
    text-wrap: balance;
  }
  p {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  .growthblock .content {
    margin: 0;
    text-align: left;
    width: calc(var(--title-width, 561) * 1px);
  }
  .growthblock .content p {
    max-width: 68%;
  }
}
@media (min-width: 1200px) {
  .growthblock .content h2 {
    margin-bottom: 30px;
  }
}

/* Grid System (Minimal) */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 991.98px) {
  .col-12 {
    margin-top: 32px;
  }
}

@media (min-width: 992px) {
  .col-lg-5 {
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    padding-left: 15px;
    padding-right: 15px;
  }
  .col-lg-7 {
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.ttl-68 {
  font-size: 36px;
}

@media (min-width: 992px) {
  .ttl-68 {
    font-size: 50px;
  }
}
@media (min-width: 1200px) {
  .ttl-68 {
    font-size: 60px;
  }
}
@media (min-width: 1600px) {
  .ttl-68 {
    font-size: 68px;
  }
}

@media (min-width: 768px) and (max-width: 1500px) {
  [class^="ttl-"] {
    text-wrap: balance;
  }
}
p,
li {
  font-family: var(--wac-body-font-family-secondary);
}
/* h1,
h2,
h3 {
  span {
    background: linear-gradient(90deg, #bd60fb 20%, #0090f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
} */
.gradiented {
  background: linear-gradient(90deg, #bd60fb 20%, #0090f8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.subtitle {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

@media (min-width: 1200px) {
  .subtitle {
    margin-bottom: 24px;
  }
}
.btn-two {
  padding: 13px 24px 14px;
  background-color: var(--btn-two-background, #013ad6);
  color: var(--btn-two-color, #fff);
  font-size: var(--btn-two-font-size, 14px);
  font-weight: var(--btn-two-font-weight, 500);
  font-family: var(--wac-body-font-family-secondary);
  display: inline-block;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  line-height: var(--btn-two-lh, 1.21);
  border-radius: 50rem;
}
@media (min-width: 1200px) {
  .btn-two:hover {
    background-color: var(--btn-two-hover-background, #002bb5);
    color: var(--btn-two-hover-color, #fff);
  }
}
.graph {
  max-width: 100%;
}
.graph svg {
  width: 100%;
  height: 100%;
}

/* ------------------------------------COMPARE TABLE----------------------------- */
:root {
  --table-gutter: 20px;
}
@media (min-width: 768px) {
  :root {
    --table-gutter: 30px;
  }
}
@media (min-width: 1400px) {
  :root {
    --table-gutter: 40px;
  }
}
.compare_desktop_table .title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: -1px;
}
@media (min-width: 1200px) {
  .compare_desktop_table .title {
    font-size: 48px;
    letter-spacing: -2px;
  }
}
.table-wrapper {
  position: relative;
}

/* Desktop Table */

.compare_desktop_table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto repeat(21, 1fr);
  column-gap: 0;
  row-gap: 0;
  font-size: 14px;
  font-weight: 300;
}
.compare_desktop_table::before {
  display: block;
  content: "";
  background: linear-gradient(
    136deg,
    #013ad685 0%,
    #000 16%,
    #000 33%,
    #013ad685 120%
  );
  grid-area: 1 / 2 / 23 / 3;
  border-radius: 24px;
  margin: 1px;
}
.compare_desktop_table::after {
  display: block;
  content: "";
  grid-area: 1 / 2 / 23 / 3;
  border-radius: 10px;
  z-index: -1;
  border: 1px solid transparent;
  border-radius: 24px;
  background: linear-gradient(#000, #000) padding-box,
    linear-gradient(137deg, #0095ff, #013ad6) border-box;
  z-index: -1;
  position: relative;
  overflow: hidden;
}

/* @media (min-width: 992px) {
  .compare_desktop_table {
    display: grid;
  }
} */
.compare_desktop_table > div {
  border-bottom: 1px dashed #323232;
  padding: 22px var(--table-gutter);
  display: flex;
  align-items: center;
}

.compare_desktop_table > div:nth-child(-n + 4) {
  padding: 30px calc(var(--table-gutter) * 0.2) 22px;

  top: 72px;
  background-color: var(--color-background);
  z-index: 1;
}
@media (max-width: 767.98px) {
  .compare_table_outer_wrapper {
    overflow: auto;
  }
  .compare_desktop_table > * {
    min-width: 200px;
  }
  .compare_desktop_table > div {
    padding: 0px var(--table-gutter);
  }
}
@media (min-width: 768px) {
  .compare_desktop_table > div:nth-child(-n + 4) {
    position: sticky;
    padding: 0px calc(var(--table-gutter) * 0.2) 0px;
  }
  .compare_desktop_table > div {
    padding: 12px var(--table-gutter);
  }
}
@media (min-width: 992px) {
  .compare_desktop_table > div:nth-child(-n + 4) {
    padding: 30px calc(var(--table-gutter) * 0.2) 22px;
  }
  .compare_desktop_table > div {
    padding: 30px var(--table-gutter);
  }
}
/* .compare_desktop_table > div:first-child {
  padding-left: 0 !important;
} */
.compare_desktop_table > div:first-child .heading {
  padding-left: 0 !important;
}
.compare_desktop_table > div:nth-child(4n + 1) {
  padding-left: 0;
}
.compare_desktop_table > div:nth-child(4n) {
  padding-right: 0;
}

/* Last 5 cells */
.compare_desktop_table > div:nth-last-child(-n + 4) {
  border-bottom: 1px solid transparent;
  /* padding: 0; */
}

/* Active state when scrolled */
.compare_desktop_table.active > div:nth-child(-n + 4) {
  top: 55px;
  z-index: 2;
  border-bottom-color: transparent;
}
.compare_desktop_table.active > div:first-child .heading {
  padding-left: 32px !important;
}

.compare_desktop_table.active > div:nth-child(-n + 4) .heading {
  background-color: #000;
  transform: translateY(-20px);
  font-size: 20px;
}

.compare_desktop_table .heading {
  font-size: 18px;
  padding: 10px calc(var(--table-gutter) * 0.8);
  width: 100%;
  transition: all ease-in-out 0.25s;
  transform: initial;
  will-change: transform, font-size, background-color;
  border-radius: 9999px;
  font-weight: 500;
}

@media (min-width: 1024px) {
  .compare_desktop_table .heading {
    font-size: 20px;
  }
}

@media (min-width: 1200px) {
  .compare_desktop_table .heading {
    font-size: 22px;
  }
}

@media (min-width: 1400px) {
  .compare_desktop_table .heading {
    font-size: 24px;
  }
}

.compare_desktop_table .heading.active {
  color: #0099ff;
}

.compare_desktop_table .label {
  font-weight: 500;
  font-size: 14px;
}

.values {
  font-weight: 300;
}

.col-wrapper {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-self: start;
}

.image-wrapper {
  padding: 0;
  align-self: start;
  width: 9.41px;
  height: 7.14px;
  aspect-ratio: calc(9.41 / 7.14);
}

.tick-icon {
  width: 100%;
  height: 100%;
}

.col-dot {
  background-color: #505050;
  height: 4px;
  width: 4px;
  border-radius: 50%;
}

.unavailable-text {
  font-size: 14px;
  color: #505050;
}

/* Mobile Tabs .mobile-tabs {
  display: flex;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #000;
  position: sticky;
  top: 61px;
  z-index: 2;
}

@media (min-width: 768px) {
  .mobile-tabs {
    top: 64px;
  }
}

@media (min-width: 992px) {
  .mobile-tabs {
    display: none;
  }
} */

.tab-item {
  flex: 1 0 auto;
  padding: 28px 16px 24px;
  background: transparent;
  color: #505050;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid #1e1e1e;
  white-space: nowrap;
  border-width: 1px 0 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.tab-item:first-child {
  border-left-width: 1px;
  border-top-left-radius: 16px;
}

.tab-item:last-child {
  border-right-width: 1px;
  border-top-right-radius: 16px;
}

.tab-item.tab-active {
  color: #09f;
}

@media (max-width: 991.98px) {
  .col-wrapper {
    gap: 10px;
  }
  .unavailable-text {
    color: #8a8a8a;
  }
  .compare_table_outer_wrapper {
    display: none;
  }
  .unavailable-text {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  .mobile_tabs {
    display: none;
  }
  .table_mobile {
    display: none;
  }
}

/* Footer */
:root {
  --footer-bg: #111111;
  --footer-text: #f5f5f5;
  --footer-muted: #727273;
  --footer-separator: #555555;
}
.footer {
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 80px 40px;
}

.footer_top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer_nav {
  display: flex;
  gap: 40px;
  font-size: 14px;
  color: #afafaf;
}
.footer_nav a {
  color: var(--footer-text);
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer_nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.footer_nav .anchor_link {
  cursor: pointer;
}

.footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--footer-muted);
  margin-top: 24px;
}

.footer_bottom-left {
  display: flex;
  align-items: center;
  column-gap: 40px;
  row-gap: 20px;
  flex-wrap: wrap;
}

.footer_bottom a {
  color: var(--footer-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.Copyright {
  display: none;
}

.footer_bottom a:hover {
  color: var(--footer-text);
}
.Copyright_two {
  display: none;
}

/* Responsive tweaks */
@media (min-width: 768px) {
  .footer_bottom-left > *:not(:last-child)::after {
    content: "";
    height: 10px;
    width: 1px;
    background: #727273;
    display: inline-block;
    /* transition: center; */
    transform: translate(-50%, 50%);
    /* top: 50%; */
    position: absolute;
    /* left: 50%; */
    margin-left: 20px;
  }
}

@media (max-width: 767.98px) {
  
  .footer_bottom-left {
    display: none;
  }
  .footer {
    padding: 60px 32px;
  }

  .footer_top {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer_nav {
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    color: #ffffff;
  }

  .footer_bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .Copyright {
    display: block;
  }
  .Copyright_one {
    display: none;
  }
  .Copyright_two {
    display: block;
    margin-top: 24px;
  }
  .footer_bottom-left {
    flex-direction: column;
    width: 100%;
    row-gap: 16px;
    margin-bottom: 40px;
  }
  .footer_bottom-right {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    row-gap: 16px;
    border-top: 1px solid #282828;
  }
}
