
/* =========================================
   META108 MEMBER REVIEWS SECTION
========================================= */

.review-meta108 {
  --review-navy-950: #020817;
  --review-navy-900: #051229;
  --review-navy-850: #071a36;
  --review-navy-800: #092247;
  --review-blue-700: #0665db;
  --review-blue-600: #087ff5;
  --review-blue-500: #1b9cff;
  --review-blue-400: #55b8ff;
  --review-blue-300: #94d4ff;
  --review-white: #ffffff;
  --review-text: #dcecff;
  --review-muted: #91a9c8;
  --review-border: rgba(103, 187, 255, 0.17);
  --review-star: #ffd76a;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 20px;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(8, 127, 245, 0.17),
      transparent 34%
    ),
    linear-gradient(
      180deg,
      #030d1e 0%,
      var(--review-navy-900) 50%,
      var(--review-navy-950) 100%
    );
  color: var(--review-white);
}

.review-meta108 *,
.review-meta108 *::before,
.review-meta108 *::after {
  box-sizing: border-box;
}

.review-meta108__container {
  position: relative;
  z-index: 2;
  width: min(100%, 1200px);
  margin: 0 auto;
}

/* Background Glow */
.review-meta108__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(16px);
}

.review-meta108__glow--left {
  top: 20%;
  left: -230px;
  width: 480px;
  height: 480px;
  background: rgba(6, 101, 219, 0.11);
}

.review-meta108__glow--right {
  right: -225px;
  bottom: 3%;
  width: 500px;
  height: 500px;
  background: rgba(27, 156, 255, 0.09);
}

/* Header */
.review-meta108__header {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}

.review-meta108__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 9px 16px;
  border: 1px solid rgba(85, 184, 255, 0.25);
  border-radius: 999px;
  background: rgba(8, 127, 245, 0.09);
  color: var(--review-blue-300);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-meta108__eyebrow svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-meta108__header h2 {
  margin: 0;
  color: var(--review-white);
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.review-meta108__header h2 span {
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--review-blue-400),
    var(--review-blue-500)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.review-meta108__header p {
  max-width: 760px;
  margin: 23px auto 0;
  color: var(--review-muted);
  font-size: 17px;
  line-height: 1.8;
}

/* Review Summary */
.review-meta108__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 25px;
  padding: 25px 28px;
  border: 1px solid rgba(85, 184, 255, 0.25);
  border-radius: 23px;
  background:
    linear-gradient(
      110deg,
      rgba(6, 101, 219, 0.21),
      rgba(6, 24, 51, 0.94)
    );
  box-shadow:
    0 22px 55px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.review-meta108__score {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 18px;
}

.review-meta108__score-value {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.review-meta108__score-value strong {
  color: var(--review-white);
  font-size: 46px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.review-meta108__score-value span {
  color: var(--review-muted);
  font-size: 12px;
  font-weight: 700;
}

.review-meta108__score-detail {
  padding-left: 18px;
  border-left: 1px solid rgba(103, 187, 255, 0.17);
}

.review-meta108__stars,
.review-meta108__card-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-meta108__stars {
  margin-bottom: 7px;
}

.review-meta108__stars svg {
  width: 18px;
  height: 18px;
  fill: var(--review-star);
  stroke: var(--review-star);
  stroke-width: 1;
}

.review-meta108__score-detail > span {
  color: var(--review-muted);
  font-size: 10px;
  line-height: 1.4;
}

.review-meta108__summary-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 680px);
}

.review-meta108__summary-item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid rgba(103, 187, 255, 0.12);
  border-radius: 14px;
  background: rgba(3, 15, 34, 0.32);
}

.review-meta108__summary-icon {
  display: inline-flex;
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(85, 184, 255, 0.2);
  border-radius: 11px;
  background: rgba(27, 156, 255, 0.08);
  color: var(--review-blue-400);
}

.review-meta108__summary-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-meta108__summary-item strong,
.review-meta108__summary-item span {
  display: block;
}

.review-meta108__summary-item strong {
  margin-bottom: 3px;
  color: var(--review-white);
  font-size: 11px;
  line-height: 1.35;
}

.review-meta108__summary-item div span {
  color: var(--review-muted);
  font-size: 9px;
  line-height: 1.4;
}

/* Review Grid */
.review-meta108__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.review-meta108__card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--review-border);
  border-radius: 23px;
  background:
    linear-gradient(
      145deg,
      rgba(12, 36, 72, 0.94),
      rgba(5, 18, 39, 0.98)
    );
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 45px rgba(0, 0, 0, 0.21);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.review-meta108__card::before {
  position: absolute;
  top: -75px;
  right: -75px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(27, 156, 255, 0.08);
  content: "";
  pointer-events: none;
}

.review-meta108__card::after {
  position: absolute;
  right: 26px;
  bottom: 0;
  left: 26px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(85, 184, 255, 0.52),
    transparent
  );
  content: "";
  opacity: 0;
  transition: opacity 0.35s ease;
}

.review-meta108__card:hover {
  transform: translateY(-7px);
  border-color: rgba(85, 184, 255, 0.4);
  box-shadow:
    0 27px 62px rgba(0, 0, 0, 0.31),
    0 0 31px rgba(8, 127, 245, 0.08);
}

.review-meta108__card:hover::after {
  opacity: 1;
}

/* Card Top */
.review-meta108__card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 19px;
}

.review-meta108__member {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 13px;
}

.review-meta108__avatar {
  display: inline-flex;
  width: 53px;
  height: 53px;
  flex: 0 0 53px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(85, 184, 255, 0.32);
  border-radius: 16px;
  background:
    linear-gradient(
      135deg,
      rgba(27, 156, 255, 0.24),
      rgba(6, 101, 219, 0.09)
    );
  color: var(--review-blue-300);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 12px 26px rgba(0, 78, 175, 0.13);
}

.review-meta108__member h3 {
  margin: 0 0 6px;
  color: var(--review-white);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.3;
}

.review-meta108__verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--review-blue-300);
  font-size: 9px;
  font-weight: 700;
  line-height: 1.3;
}

.review-meta108__verified svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-meta108__quote {
  color: rgba(85, 184, 255, 0.23);
}

.review-meta108__quote svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

/* Rating */
.review-meta108__card-stars {
  position: relative;
  z-index: 2;
  margin-bottom: 17px;
}

.review-meta108__card-stars svg {
  width: 17px;
  height: 17px;
  fill: var(--review-star);
  stroke: var(--review-star);
  stroke-width: 1;
}

.review-meta108__card-stars .review-meta108__star--empty {
  fill: transparent;
  stroke: rgba(255, 215, 106, 0.42);
}

/* Review Text */
.review-meta108__text {
  position: relative;
  z-index: 2;
  margin: 0 0 20px;
  color: var(--review-muted);
  font-size: 13px;
  line-height: 1.8;
}

/* Tags */
.review-meta108__tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: auto;
  margin-bottom: 19px;
}

.review-meta108__tags span {
  padding: 7px 10px;
  border: 1px solid rgba(85, 184, 255, 0.15);
  border-radius: 999px;
  background: rgba(27, 156, 255, 0.06);
  color: var(--review-blue-300);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

/* Card Footer */
.review-meta108__footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding-top: 16px;
  border-top: 1px solid rgba(103, 187, 255, 0.12);
  color: var(--review-muted);
  font-size: 9px;
  font-weight: 600;
}

/* Bottom CTA */
.review-meta108__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 27px;
  padding: 28px 30px;
  border: 1px solid rgba(85, 184, 255, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(
      110deg,
      rgba(6, 101, 219, 0.24),
      rgba(6, 24, 51, 0.95)
    );
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.review-meta108__cta-content {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 18px;
}

.review-meta108__cta-icon {
  display: inline-flex;
  width: 55px;
  height: 55px;
  flex: 0 0 55px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(85, 184, 255, 0.3);
  border-radius: 17px;
  background: rgba(27, 156, 255, 0.12);
  color: var(--review-blue-400);
}

.review-meta108__cta-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-meta108__cta-label {
  display: block;
  margin-bottom: 6px;
  color: var(--review-blue-300);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-meta108__cta h3 {
  margin: 0 0 6px;
  color: var(--review-white);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
}

.review-meta108__cta p {
  max-width: 650px;
  margin: 0;
  color: var(--review-muted);
  font-size: 12px;
  line-height: 1.65;
}

.review-meta108__cta-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.review-meta108__button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 19px;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.review-meta108__button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-meta108__button--primary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(
    135deg,
    var(--review-blue-500),
    var(--review-blue-700)
  );
  color: var(--review-white);
  box-shadow:
    0 13px 29px rgba(6, 101, 219, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.review-meta108__button--secondary {
  border: 1px solid rgba(85, 184, 255, 0.26);
  background: rgba(8, 127, 245, 0.07);
  color: var(--review-blue-300);
}

.review-meta108__button:hover {
  transform: translateY(-3px);
}

.review-meta108__button--primary:hover {
  box-shadow:
    0 18px 37px rgba(6, 101, 219, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.review-meta108__button--secondary:hover {
  border-color: rgba(85, 184, 255, 0.5);
  background: rgba(8, 127, 245, 0.14);
  color: var(--review-white);
}

/* Keyboard Accessibility */
.review-meta108 a:focus-visible {
  outline: 3px solid rgba(148, 212, 255, 0.75);
  outline-offset: 4px;
}

/* Tablet */
@media (max-width: 1050px) {
  .review-meta108 {
    padding: 90px 20px;
  }

  .review-meta108__summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-meta108__summary-items {
    width: 100%;
  }

  .review-meta108__cta {
    align-items: stretch;
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .review-meta108 {
    padding: 72px 16px;
  }

  .review-meta108__header {
    margin-bottom: 36px;
  }

  .review-meta108__eyebrow {
    margin-bottom: 17px;
    padding: 8px 13px;
    font-size: 10px;
  }

  .review-meta108__header h2 {
    font-size: clamp(30px, 10vw, 41px);
    line-height: 1.15;
  }

  .review-meta108__header p {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.75;
  }

  .review-meta108__summary {
    margin-bottom: 17px;
    padding: 21px 18px;
    border-radius: 20px;
  }

  .review-meta108__score {
    width: 100%;
  }

  .review-meta108__score-value strong {
    font-size: 40px;
  }

  .review-meta108__summary-items {
    grid-template-columns: 1fr;
  }

  .review-meta108__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .review-meta108__card {
    padding: 22px 19px;
    border-radius: 20px;
  }

  .review-meta108__card:hover {
    transform: translateY(-3px);
  }

  .review-meta108__avatar {
    width: 49px;
    height: 49px;
    flex-basis: 49px;
    border-radius: 14px;
  }

  .review-meta108__quote svg {
    width: 29px;
    height: 29px;
  }

  .review-meta108__text {
    font-size: 12px;
    line-height: 1.75;
  }

  .review-meta108__cta {
    margin-top: 18px;
    padding: 22px 19px;
    border-radius: 20px;
  }

  .review-meta108__cta-content {
    align-items: flex-start;
  }

  .review-meta108__cta-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 14px;
  }

  .review-meta108__cta h3 {
    font-size: 17px;
  }

  .review-meta108__cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .review-meta108__button {
    width: 100%;
  }
}

/* Small Mobile */
@media (max-width: 390px) {
  .review-meta108 {
    padding-right: 13px;
    padding-left: 13px;
  }

  .review-meta108__header h2 {
    font-size: 29px;
  }

  .review-meta108__score {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .review-meta108__score-detail {
    padding-top: 12px;
    padding-left: 0;
    border-top: 1px solid rgba(103, 187, 255, 0.17);
    border-left: 0;
  }

  .review-meta108__card {
    padding-right: 17px;
    padding-left: 17px;
  }

  .review-meta108__card-top {
    gap: 10px;
  }

  .review-meta108__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .review-meta108__cta-content {
    flex-direction: column;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .review-meta108__card,
  .review-meta108__button {
    transition: none;
  }
}