/* ==========================================================================
   VQC Reviews — ALL rules scoped to #vqc-reviews-section
   No rule leaks outside this ID wrapper.
   ========================================================================== */

/* ── Reset within scope ── */
#vqc-reviews-section *,
#vqc-reviews-section *::before,
#vqc-reviews-section *::after {
  box-sizing: border-box;
}
#vqc-reviews-section ul,
#vqc-reviews-section ol { list-style: none; margin: 0; padding: 0; }
#vqc-reviews-section p  { margin: 0; padding: 0; }
#vqc-reviews-section h2 { margin: 0; padding: 0; }
#vqc-reviews-section blockquote { margin: 0; padding: 0; }

/* ── Section shell ── */
#vqc-reviews-section {
  position: relative;
  background: #fff;
  padding: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
  font-family: 'Manrope', sans-serif;
}

/* Background grid */
#vqc-reviews-section .vqcr__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21,166,224,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21,166,224,0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

#vqc-reviews-section .vqcr__container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* ── Header ── */
#vqc-reviews-section .vqcr__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

#vqc-reviews-section .vqcr__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Bebas Neue', 'Manrope', sans-serif;
  font-size: clamp(18px, 2.5vw, 26px);
  letter-spacing: 4px;
  color: #0d1b3e;
  margin-bottom: 16px;
}
#vqc-reviews-section .vqcr__eyebrow-line {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #0d1b3e);
  flex-shrink: 0;
}
#vqc-reviews-section .vqcr__eyebrow-line:last-child {
  background: linear-gradient(90deg, #0d1b3e, transparent);
}

#vqc-reviews-section .vqcr__heading {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 5.5vw, 68px);
  letter-spacing: 3px;
  line-height: 1.05;
  color: #0d1b3e;
  font-weight: 400;
  margin-bottom: 24px;
}
#vqc-reviews-section .vqcr__heading em {
  font-style: normal;
  color: #15a6e0;
}

#vqc-reviews-section .vqcr__subtext {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #2c3e5e;
  line-height: 1.75;
  max-width: 820px;
  margin: 0 auto 32px;
}
 
/* Header Quote */
#vqc-reviews-section .vqcr__header-quote {
  max-width: 720px;
  margin: 40px auto 0;
  padding-top: 32px;
  border-top: 1px solid rgba(21,166,224,0.15);
}
#vqc-reviews-section .vqcr__header-quote p {
  font-family: 'Manrope', sans-serif;
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: #0d1b3e;
  line-height: 1.6;
  margin-bottom: 12px;
}
#vqc-reviews-section .vqcr__header-quote cite {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  color: #15a6e0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Content grid ── */
#vqc-reviews-section .vqcr__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}
#vqc-reviews-section .vqcr__grid--single {
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── Left panel ── */
#vqc-reviews-section .vqcr__panel {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Stars badge — in header */
#vqc-reviews-section .vqcr__stars-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(21,166,224,0.25);
  border-radius: 999px;
  padding: 8px 22px;
  margin-bottom: 24px;
}
#vqc-reviews-section .vqcr__badge-count {
  font-family: 'Bebas Neue', 'Manrope', sans-serif;
  font-size: 17px;
  letter-spacing: 2px;
  color: #15a6e0;
  line-height: 1;
}
#vqc-reviews-section .vqcr__badge-stars {
  font-size: 18px;
  letter-spacing: 2px;
  color: #f59e0b;
  line-height: 1;
}
#vqc-reviews-section .vqcr__badge-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 2px;
  color: #0d1b3e;
  line-height: 1;
}

/* Founder quote */
#vqc-reviews-section .vqcr__founder-quote {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(21,166,224,0.15);
}
#vqc-reviews-section .vqcr__founder-quote p {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: #2c3e5e;
  line-height: 1.7;
  margin-bottom: 12px;
}
#vqc-reviews-section .vqcr__founder-quote cite {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  color: #15a6e0;
  letter-spacing: 0.5px;
}

/* Stats list */
#vqc-reviews-section .vqcr__stats-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#vqc-reviews-section .vqcr__stats-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #2c3e5e;
  line-height: 1.5;
}
#vqc-reviews-section .vqcr__stats-list li::before {
  content: '✓';
  color: #15a6e0;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── Slider wrapper ── */
#vqc-reviews-section .vqcr__slider-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative !important;
  overflow: hidden !important;
  padding: 10px 0 !important;
}

/* Track — now a flex container for sliding */
#vqc-reviews-section .vqcr__track {
  display: flex !important;
  gap: 20px !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
  width: 100% !important;
}

/* Cards */
#vqc-reviews-section .vqcr__card {
  background: #fff;
  border: 2px solid rgba(21,166,224,0.25);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(13,27,62,0.07);
  display: flex;
  flex-direction: column;
  gap: 16px;
  
  flex: 0 0 calc(33.333% - 14px) !important; /* 3 cards in view */
  position: relative !important;
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}
 
@media (max-width: 1024px) {
  #vqc-reviews-section .vqcr__card {
    flex: 0 0 calc(50% - 10px) !important; /* 2 cards */
  }
}
@media (max-width: 600px) {
  #vqc-reviews-section .vqcr__card {
    flex: 0 0 100% !important; /* 1 card */
  }
}

#vqc-reviews-section .vqcr__card::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #15a6e0, #1090c8);
  border-radius: 16px 16px 0 0;
}

/* Stars row */
#vqc-reviews-section .vqcr__stars-row {
  display: flex;
  gap: 4px;
}
#vqc-reviews-section .vqcr__star {
  font-size: 22px;
  color: rgba(0,0,0,0.12);
  line-height: 1;
}
#vqc-reviews-section .vqcr__star--on {
  color: #f59e0b;
}

/* Text wrapper — fixed height with fade */
#vqc-reviews-section .vqcr__text-wrap {
  position: relative;
  max-height: 160px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
#vqc-reviews-section .vqcr__text-wrap.is-expanded {
  max-height: 600px;
}
#vqc-reviews-section .vqcr__text-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: linear-gradient(transparent, #fff);
  pointer-events: none;
  transition: opacity 0.3s;
}
#vqc-reviews-section .vqcr__text-wrap.is-expanded .vqcr__text-fade {
  opacity: 0;
}

/* Read more button */
#vqc-reviews-section .vqcr__read-more {
  background: none;
  border: none;
  padding: 0;
  margin-top: 4px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #15a6e0;
  cursor: pointer;
  letter-spacing: 0.2px;
  flex-shrink: 0;
}
#vqc-reviews-section .vqcr__read-more:hover {
  text-decoration: underline;
}

/* Review text */
#vqc-reviews-section .vqcr__card-text {
  font-family: 'Manrope', sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #2c3e5e !important;
  line-height: 1.8 !important;
  margin: 0 !important;
}

/* Card footer */
#vqc-reviews-section .vqcr__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(21,166,224,0.12);
}
#vqc-reviews-section .vqcr__card-name {
  font-family: 'Manrope', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0d1b3e;
  letter-spacing: 0.2px;
}
#vqc-reviews-section .vqcr__card-qq {
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 0.6;
  color: rgba(21,166,224,0.18);
  user-select: none;
}

/* ── Controls ── */
#vqc-reviews-section .vqcr__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

#vqc-reviews-section .vqcr__nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(21,166,224,0.35);
  background: #fff;
  color: #0d1b3e;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  flex-shrink: 0;
  padding: 0;
}
#vqc-reviews-section .vqcr__nav-btn:hover {
  background: #15a6e0;
  border-color: #15a6e0;
  color: #fff;
  transform: scale(1.08);
}
#vqc-reviews-section .vqcr__nav-btn svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
}

/* Dots */
#vqc-reviews-section .vqcr__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}
#vqc-reviews-section .vqcr__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(13,27,62,0.2);
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, width 0.25s;
  flex-shrink: 0;
}
#vqc-reviews-section .vqcr__dot.is-active {
  background: #15a6e0;
  width: 24px;
  border-radius: 4px;
}

/* CTA Footer */
#vqc-reviews-section .vqcr__footer-cta {
  margin-top: 48px;
  text-align: center;
}
#vqc-reviews-section .vqcr__cta-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-family: 'Manrope', sans-serif !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  letter-spacing: 0.5px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  padding: 14px 28px !important;
  border-radius: 50px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  white-space: normal !important;
  word-break: break-word !important;
  text-align: center !important;
  line-height: 1.3 !important;
  background-color: #15a6e0 !important;
  color: #fff !important;
  border: 2px solid #15a6e0 !important;
  box-shadow: 0 6px 20px rgba(21,166,224,0.35) !important;
  margin: 0 !important;
}
#vqc-reviews-section .vqcr__cta-btn:hover {
  background-color: #1090c8 !important;
  border-color: #1090c8 !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
  box-shadow: 0 10px 25px rgba(21,166,224,0.45) !important;
}
#vqc-reviews-section .vqcr__btn-arr {
  display: inline-block !important;
  transition: transform 0.3s ease !important;
  margin-left: 8px !important;
}
#vqc-reviews-section .vqcr__cta-btn:hover .vqcr__btn-arr {
  transform: translateX(4px) !important;
}
 
/* Empty state */
#vqc-reviews-section .vqcr__empty {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #888;
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: 16px;
  border: 1.5px dashed rgba(21,166,224,0.3);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  #vqc-reviews-section .vqcr__grid {
    grid-template-columns: 1fr;
  }
  #vqc-reviews-section .vqcr__panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  #vqc-reviews-section .vqcr__stars-badge {
    grid-column: 1 / -1;
    border-bottom: 1px solid rgba(21,166,224,0.15);
    padding-bottom: 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 600px) {
  #vqc-reviews-section .vqcr__panel {
    grid-template-columns: 1fr;
  }
  #vqc-reviews-section .vqcr__card {
    padding: 24px 20px;
  }
  #vqc-reviews-section .vqcr__heading {
    font-size: clamp(28px, 8vw, 44px);
  }
}
