/* ═══════════════════════════════════════════════
   WALL OF LOVE — barcelonaentrepreneurs.com
   ═══════════════════════════════════════════════ */

/* ── HERO ── */
.wol-hero {
  text-align: center;
  padding: 160px 40px 80px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  min-height: 420px;
}

.wol-hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.wol-hero-sub {
  font-size: clamp(1.15rem, 1.6vw, 1.3rem);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.wol-hero-sub strong {
  color: var(--ink);
  font-weight: 600;
}

/* Platform logos */
.wol-platforms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 56px;
}

.wol-platform-logo {
  height: 32px;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.wol-platform-logo:hover { opacity: 1; }

/* ── BADGE ROW ── */
.wol-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto 64px;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.wol-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 18px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  min-width: 110px;
  flex: 1;
  max-width: 130px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wol-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(var(--ink-rgb), 0.06);
}

.wol-badge-icon {
  font-size: 1.4rem;
  color: var(--red);
  line-height: 1;
}

.wol-badge-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  line-height: 1.3;
}

.wol-badge-count {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--red);
}

/* ── RATING BREAKDOWN ── */
.wol-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  max-width: 820px;
  margin: 0 auto 80px;
  padding: 48px 40px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.wol-rating-score {
  text-align: center;
  flex-shrink: 0;
}

.wol-rating-number {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 8px;
}

.wol-rating-stars {
  color: var(--red);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.wol-rating-based {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

.wol-bars {
  flex: 1;
  max-width: 400px;
}

.wol-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.wol-bar-row:last-child { margin-bottom: 0; }

.wol-bar-label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  min-width: 90px;
}

.wol-bar-track {
  flex: 1;
  height: 8px;
  background: var(--cream-alt);
  border-radius: 100px;
  overflow: hidden;
}

.wol-bar-fill {
  height: 100%;
  background: var(--red);
  border-radius: 100px;
  transition: width 0.6s ease;
}

/* ── FLOATING TESTIMONIALS (hero sides) ── */
.wol-hero-wrapper {
  position: relative;
  overflow: visible;
}

/* Background spans full hero area (applied to outer bg wrapper) */
.wol-hero-bg {
  position: relative;
  background: url('https://becmedia.b-cdn.net/bec-website/20564ad4-bf5a-4f04-8f4f-95e48e5219d2.webp') center top / cover no-repeat;
}

.wol-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(var(--cream-rgb), 0.88);
  z-index: 0;
}

.wol-float {
  position: absolute;
  max-width: 260px;
  padding: 24px;
  z-index: 2;
}

.wol-float-left {
  left: 32px;
  top: 140px;
}

.wol-float-right {
  right: 32px;
  top: 140px;
}

.wol-float-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid var(--white);
  box-shadow: 0 2px 12px rgba(var(--ink-rgb), 0.1);
}

.wol-float-quote {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 12px;
}

.wol-float-quote::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--red);
  line-height: 0;
  display: block;
  margin-bottom: 8px;
}

.wol-float-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
}

/* ── REVIEWS MASONRY ── */
.wol-reviews {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 100px;
  position: relative;
  z-index: 1;
}

.wol-reviews-heading {
  text-align: center;
  margin-bottom: 48px;
}

.wol-reviews-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.wol-reviews-heading p {
  font-size: 0.92rem;
  color: var(--muted);
}

.wol-masonry {
  columns: 3;
  column-gap: 24px;
}

/* ── REVIEW CARD ── */
.wol-card {
  break-inside: avoid;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wol-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(var(--ink-rgb), 0.07);
}

/* Card with highlight accent */
.wol-card--accent {
  border-left: 3px solid var(--red);
}

/* Card with dark background */
.wol-card--dark {
  background: var(--ink);
  border-color: rgba(var(--white-rgb), 0.08);
  color: rgba(var(--white-rgb), 0.88);
}
.wol-card--dark .wol-card-name { color: var(--white); }
.wol-card--dark .wol-card-role { color: rgba(var(--white-rgb), 0.5); }
.wol-card--dark .wol-card-title { color: var(--white); }
.wol-card--dark .wol-card-stars { color: #E8C547; }

/* Card with cream background */
.wol-card--cream {
  background: var(--cream-alt);
  border-color: transparent;
}

.wol-card-stars {
  color: var(--red);
  font-size: 0.88rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.wol-card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}

.wol-card-text {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.wol-card-text:last-child { margin-bottom: 0; }

.wol-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.wol-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.wol-card-name {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.wol-card-role {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.4;
}

.wol-card-big-quote {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0.6;
}

/* Highlight stat inside card */
.wol-card-stat {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 8px;
}

/* ── MEETUP REVIEWS MARQUEE ── */
.wol-meetup {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.wol-meetup-heading {
  text-align: center;
  margin-bottom: 48px;
  padding: 0 40px;
}

.wol-meetup-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.wol-meetup-heading p {
  font-size: 0.92rem;
  color: var(--muted);
}

.mr-track {
  overflow: hidden;
  margin-bottom: 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.mr-track-inner {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
}

.mr-track--left .mr-track-inner {
  animation: marqueeLeft 300s linear infinite;
}

.mr-track--right .mr-track-inner {
  animation: marqueeRight 340s linear infinite;
}

.mr-track:hover .mr-track-inner {
  animation-play-state: paused;
}

@keyframes marqueeLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.mr-chip {
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 180px;
  max-width: 300px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.mr-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(var(--ink-rgb), 0.06);
}

.mr-chip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.mr-chip-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mr-chip-stars {
  font-size: 0.68rem;
  color: var(--red);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.mr-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.mr-pill {
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--cream-alt);
  border-radius: 100px;
  padding: 2px 8px;
  white-space: nowrap;
}

/* ── CTA SECTION ── */
.wol-cta {
  text-align: center;
  padding: 48px 40px 56px;
  position: relative;
  z-index: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .wol-float { display: none; }
}

@media (max-width: 900px) {
  .wol-hero { padding: 120px 24px 48px; }

  .wol-badges { gap: 8px; padding: 0 16px; margin-bottom: 40px; }
  .wol-badge { min-width: 90px; padding: 14px 10px 12px; }
  .wol-badge-label { font-size: 0.66rem; }

  .wol-rating {
    flex-direction: column;
    gap: 32px;
    padding: 32px 24px;
    margin: 0 24px 56px;
  }

  .wol-bars { max-width: 100%; width: 100%; }

  .wol-masonry { columns: 1; }

  .wol-reviews { padding: 48px 20px 64px; }
  .wol-cta { padding: 32px 24px 40px; }
  .wol-meetup { padding: 48px 0; }
  .wol-meetup-heading { padding: 0 20px; }
}

@media (min-width: 901px) and (max-width: 1100px) {
  .wol-masonry { columns: 2; }
}
