/* FAQ — smooth expand/collapse + plus icon (replaces display:none toggle) */
.blockora-faq-section .faq-countent-box .faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.blockora-faq-section .faq-countent-box.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.blockora-faq-section .faq-countent-box .faq-answer > * {
  min-height: 0;
  overflow: hidden;
}

.blockora-faq-section .faq-plus-wrap .plus-vertical {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  transform-origin: center;
}

.blockora-faq-section .faq-countent-box.is-open .faq-plus-wrap .plus-vertical {
  transform: rotate(90deg);
  opacity: 0;
}

.blockora-faq-section .blockora-faq-separator-placeholder {
  width: 100%;
  min-height: 12px;
  opacity: 0.35;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

/* Hero widget — avatar circles match theme layout */
.blockora-elementor-section .hero-athour-images .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
  display: block;
  vertical-align: middle;
}

/* Hero: overlay + content stacking (matches static template) */
.hero-area-section.blockora-elementor-section {
  position: relative;
  z-index: 0;
}

.hero-area-section.blockora-elementor-section > .container {
  position: relative;
  z-index: 2;
}

.hero-area-section.blockora-elementor-section > .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* -------------------------------------------------------------------------
   Hero logo marquee — infinite horizontal scroll + responsive column widths
   Desktop: 5 visible slots, tablet: 4, mobile: 2
   ------------------------------------------------------------------------- */

.blockora-marquee-section .blockora-marquee-viewport {
  --blockora-marquee-gap: 24px;
  --blockora-marquee-duration: 75s;
  overflow: hidden;
  width: 100%;
  max-width: 1322px;
  margin-left: auto;
  margin-right: auto;
}

.blockora-marquee-section .marquee-track.blockora-marquee-track {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: max-content;
  will-change: transform;
  animation: blockora-marquee-scroll var(--blockora-marquee-duration, 75s) linear infinite;
}

.blockora-marquee-section .marquee-track.blockora-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes blockora-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.blockora-marquee-section .marquee-wrap.blockora-marquee-strip {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-start;
  grid-column-gap: unset;
  grid-row-gap: unset;
  column-gap: var(--blockora-marquee-gap);
  row-gap: 0;
}

/* Fallback widths (viewport-based) */
.blockora-marquee-section .marquee-wrap.blockora-marquee-strip .marquee-single-box {
  flex: 0 0 auto;
  box-sizing: border-box;
  width: calc((min(1322px, 100vw) - 40px - 4 * var(--blockora-marquee-gap)) / 5);
  max-width: 260px;
  padding: 20px 12px;
}

.blockora-marquee-section .marquee-wrap.blockora-marquee-strip .marquee-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 140px;
  margin: 0 auto;
  object-fit: contain;
}

.testimoniel-athour-images-2 img,
.testimoniel-athour-img {
  border: 2px solid var(--color-1) !important;
  border-radius: 50% !important;
  max-width: 58px !important;
}

@media (max-width: 1024px) {
  .blockora-marquee-section .marquee-wrap.blockora-marquee-strip .marquee-single-box {
    width: calc((100vw - 32px - 3 * var(--blockora-marquee-gap)) / 4);
  }
}

@media (max-width: 767px) {
  .blockora-marquee-section .marquee-wrap.blockora-marquee-strip .marquee-single-box {
    width: calc((100vw - 24px - 1 * var(--blockora-marquee-gap)) / 2);
  }
}

@supports (width: 1cqw) {
  .blockora-marquee-section .blockora-marquee-viewport {
    --blockora-marquee-cols: 5;
    --blockora-marquee-gap: clamp(16px, 3cqw, 48px);
    container-type: inline-size;
    container-name: blockora-marquee;
  }

  .blockora-marquee-section .marquee-wrap.blockora-marquee-strip .marquee-single-box {
    width: calc(
      (100cqw - (var(--blockora-marquee-cols) - 1) * var(--blockora-marquee-gap)) / var(--blockora-marquee-cols)
    );
    padding: clamp(12px, 2cqw, 28px) clamp(8px, 1.5cqw, 14px);
  }

  @media (max-width: 1024px) {
    .blockora-marquee-section .blockora-marquee-viewport {
      --blockora-marquee-cols: 4;
      --blockora-marquee-gap: clamp(12px, 2.5cqw, 36px);
    }
  }

  @media (max-width: 767px) {
    .blockora-marquee-section .blockora-marquee-viewport {
      --blockora-marquee-cols: 2;
      --blockora-marquee-gap: clamp(10px, 2cqw, 20px);
    }
  }
}

@media (prefers-reduced-motion: reduce) {
  .blockora-marquee-section .marquee-track.blockora-marquee-track {
    animation: none;
    transform: none;
  }
}

/* Timeline widget — overlay layer (theme has star positions; wrapper was missing) */
.blockora-timeline-section .timeline-wrapper {
  position: relative;
  overflow: hidden;
}

.blockora-timeline-section .timeline-wrap {
  position: relative;
  z-index: 1;
}

.blockora-timeline-section .timeline-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 4;
}

/* Testimonials — star fallback + separator placeholder (structure always present) */
.blockora-testimonials-section .testimoniel-rating-fallback-star {
  display: block;
  color: #f5c518;
  font-size: 18px;
  line-height: 1;
}

.blockora-testimonials-section .testimoniel-separator-placeholder {
  width: 100%;
  min-height: 12px;
  opacity: 0.35;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

/* Testimonials — space above bottom card row (desktop only; theme tablet/mobile keeps tighter stack) */
@media screen and (min-width: 992px) {
  .testimoniel-down-countent-wrap {
    margin-top: 30px;
  }
}

/* CTA — overlay stacking (decorative shapes + GSAP targets) */
.blockora-cta-section .cta-wrapper {
  position: relative;
}

.blockora-cta-section .cta-heading {
  position: relative;
  z-index: 2;
}

.blockora-cta-section .cta-overlay {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  .blockora-faq-section .faq-countent-box .faq-answer {
    transition: none;
  }

  .blockora-faq-section .faq-plus-wrap .plus-vertical {
    transition: none;
  }
}

/* Counter — scroll-scale animation targets (GSAP sets transform) */
.blockora-counter-section .counter-countent {
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .blockora-counter-section .counter-countent {
    will-change: auto;
    transform: scale(1) !important;
  }
}

/* Process / cryptocurrency — heading left, steps right; sticky heading (desktop) */
.elementor-widget-blockora_process,
.elementor-widget-blockora_process .elementor-widget-container {
  overflow: visible;
}

.blockora-process-section,
.blockora-process-section .container,
.blockora-process-section .cryptocurrency-wrapper {
  overflow: visible;
}

.blockora-process-section .cryptocurrency-wrap {
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: 'heading' 'steps';
  align-items: start;
}

.blockora-process-section .cryptocurrency-heading {
  grid-area: heading;
}

.blockora-process-section .cryptocurrency-countent {
  grid-area: steps;
}

@media screen and (min-width: 992px) {
  .blockora-process-section .cryptocurrency-wrap {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas: 'heading steps';
    column-gap: 60px;
    row-gap: 60px;
  }

  .blockora-process-section .cryptocurrency-heading.has_blurred_anim {
    position: sticky;
    top: max(24px, 20vh);
    align-self: start;
    max-width: 593px;
    width: 100%;
  }
}

/* -------------------------------------------------------------------------
   Blockora Elementor widgets — responsive layout (overflow, stacking, FAQ grid)
   ------------------------------------------------------------------------- */

.elementor-widget[class*='elementor-widget-blockora_'] {
  max-width: 100%;
}

.elementor-widget[class*='elementor-widget-blockora_'] .elementor-widget-container {
  max-width: 100%;
  min-width: 0;
}

.blockora-elementor-section {
  max-width: 100%;
  box-sizing: border-box;
}

.blockora-elementor-section > .container {
  box-sizing: border-box;
}

.blockora-elementor-section .hero-title,
.blockora-elementor-section .all-headingtitle,
.blockora-elementor-section .cta-title {
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

@media screen and (max-width: 991px) {
  .blockora-testimonials-section .testimoniel-wrapper,
  .blockora-testimonials-section .testimoniel-countent {
    width: 100%;
    max-width: 100%;
  }

  .blockora-testimonials-section .testimoniel-down-countent-wrap {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    flex-direction: column;
    align-items: stretch;
    row-gap: 16px;
  }

  .blockora-testimonials-section .testimoniel-down-countent-left,
  .blockora-testimonials-section .testimoniel-down-countent-right {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-top: 0;
    box-sizing: border-box;
  }

  .blockora-testimonials-section .testimoniel-top-countent-wrap {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    row-gap: 16px;
  }

  .blockora-testimonials-section .testimoniel-countent-top-left,
  .blockora-testimonials-section .testimoniel-countent-top-right {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .blockora-testimonials-section .testimoniel-heading {
    width: 100%;
    align-items: flex-start;
  }

  .blockora-testimonials-section .testimoniel-title,
  .blockora-testimonials-section .testimoniel-para {
    max-width: 100%;
  }

  .blockora-faq-section .faq-wrap,
  .blockora-faq-section .faq-wrapper {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .blockora-faq-section .answer {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .blockora-cta-section .cta-wrapper {
    max-width: 100%;
    box-sizing: border-box;
  }

  .blockora-timeline-section .timeline-wrapper,
  .blockora-timeline-section .timeline-wrap {
    max-width: 100%;
    min-width: 0;
  }

  .articles-section.blockora-elementor-section .articles-wrap,
  .articles-section.blockora-elementor-section .articles-wrapper {
    max-width: 100%;
    min-width: 0;
  }

  .about-us-section.blockora-elementor-section .about-wrapper,
  .about-us-section.blockora-elementor-section .about-wrap {
    max-width: 100%;
    min-width: 0;
  }

  .hero-area-section.blockora-elementor-section .hero-wrapper {
    max-width: 100%;
    min-width: 0;
  }

  .counter-section.blockora-elementor-section .counter-wrapper {
    max-width: 100%;
    min-width: 0;
  }
}

@media screen and (max-width: 767px) {
  /* Theme uses 2 grid columns for .faq-question but markup has 3 children — keep one clean row */
  .blockora-faq-section .faq-question {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto;
    align-items: flex-start;
    column-gap: 10px;
    row-gap: 8px;
  }

  .blockora-faq-section .faq-number {
    grid-column: 1;
    grid-row: 1;
    flex-shrink: 0;
  }

  .blockora-faq-section .question {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    text-align: left;
  }

  .blockora-faq-section .faq-plus-wrap {
    grid-column: 3;
    grid-row: 1;
    flex-shrink: 0;
    align-self: flex-start;
  }

  .blockora-testimonials-section .testimoniel-athour-para {
    text-align: left;
  }

  .blockora-testimonials-section .testimoniel-athour {
    align-items: flex-start;
  }

  .blockora-testimonials-section .testimoniel-athour-name,
  .blockora-testimonials-section .testimoniel-athourtext {
    text-align: left;
  }

  .blockora-testimonials-section .testimoniel-athour-name-wrap-2 {
    align-items: flex-start;
  }
}

/* -------------------------------------------------------------------------
   Blockora Tokens Table (Premium) — real <table> + Blockora token styling
   ------------------------------------------------------------------------- */

.blockora-tokens-table-section.blockora-elementor-section {
  padding-left: 15px;
  padding-right: 15px;
}

.blockora-token-table-heading {
  margin: 0 0 28px;
  color: var(--color-1, #fff);
  font-family: var(--switzer, Switzer, Arial, sans-serif);
  font-weight: 600;
  font-size: var(--font-size__34px, 34px);
  line-height: var(--line_h_129, 129%);
}

.blockora-token-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -6px;
  padding: 0 6px;
}

.blockora-token-data-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--color-8, #242424);
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--color-bg-clr, #0c0c0c);
}

.blockora-token-data-table thead th {
  text-align: left;
  padding: 18px 20px;
  color: var(--color-6, #cdc8c8);
  background-color: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--color-8, #242424);
  font-family: var(--switzer, Switzer, Arial, sans-serif);
  font-size: var(--font-size__18px, 18px);
  font-weight: 600;
}

.blockora-token-data-table thead th.blockora-token-table-num-head {
  text-align: right;
}

.blockora-token-data-table tbody td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--color-8, #242424);
  vertical-align: middle;
  color: var(--color-6, #cdc8c8);
  font-family: Manrope, sans-serif;
  font-size: var(--font-size__16px, 16px);
  line-height: var(--line_h_162, 162%);
}

.blockora-token-data-table tbody tr:last-child td {
  border-bottom: none;
}

.blockora-token-data-table--zebra tbody tr:nth-child(even) td {
  background-color: rgba(255, 255, 255, 0.03);
}

.blockora-token-table-name-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blockora-token-table-icon-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.blockora-token-table-name-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.blockora-token-table-name {
  color: var(--color-1, #fff);
  font-weight: 600;
}

.blockora-token-table-date {
  font-size: 0.875em;
  opacity: 0.85;
}

.blockora-token-table-num {
  color: var(--color-1, #fff);
  font-weight: 600;
  font-size: var(--font-size__18px, 18px);
}
