/* ── COMPACT HERO SECTION (Sync with Gallery Page) ── */
.reviews-hero.page-hero {
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(5, 150, 105, 0.15) 0%,
      transparent 50%
    ),
    linear-gradient(135deg, #022c22 0%, #064e3b 60%, #022c22 100%);
  padding: clamp(120px, 12vw, 150px) 0 clamp(40px, 5vw, 60px);
  min-height: auto;
  height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at 20% 50%, black, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.radial-glow {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(16, 185, 129, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

.reviews-hero .hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-compact-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px) !important;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px !important;
  color: white;
  line-height: 1.1 !important;
}

.hero-compact-desc {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.5vw, 18px) !important;
  color: rgba(255, 255, 255, 0.6) !important;
  max-width: 650px !important;
  margin-bottom: 0 !important;
  line-height: 1.6 !important;
}

.reviews-hero .breadcrumb {
  margin-bottom: 16px;
  color: var(--color-lime);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.reviews-hero .breadcrumb a {
  color: white;
  opacity: 0.7;
  text-decoration: none;
}

.trust-badge-hero {
  display: inline-block;
  background: rgba(109, 191, 62, 0.15);
  color: var(--color-lime);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(109, 191, 62, 0.2);
}

.reviews-grid-section .container {
  max-width: 1450px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 32px);
}

.reviews-masonry {
  columns: 3;
  column-gap: clamp(16px, 2vw, 28px);
  width: 100%;
}

.t-card {
  break-inside: avoid-column;
  margin-bottom: clamp(16px, 2vw, 28px);
  background: white;
  border-radius: var(--radius-xl);
  padding: clamp(16px, 1.8vw, 24px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
  display: inline-block;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.t-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--color-teal-mid), var(--color-lime));
  opacity: 0;
  transition: opacity 0.3s;
}

.t-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(109, 191, 62, 0.2);
}

.t-card:hover::before {
  opacity: 1;
}

.t-card-message {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: clamp(14px, 1.5vw, 18px);
  font-weight: 500;
}

.t-card-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--color-muted);
  opacity: 0.6;
  letter-spacing: 0.05em;
  margin-bottom: clamp(14px, 1.5vw, 18px);
  padding-bottom: clamp(12px, 1.2vw, 16px);
  border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
}

.t-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.t-card-user {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.t-card-avatar {
  width: clamp(36px, 3vw, 44px);
  height: clamp(36px, 3vw, 44px);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-ice);
  color: var(--color-teal-mid);
  font-weight: 700;
  font-size: 16px;
  border: 2px solid white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.t-card-avatar.placeholder {
  background: linear-gradient(45deg, var(--color-teal-deep), var(--color-teal-mid));
  color: white;
}

.t-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.t-card-name {
  font-family: var(--font-display);
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  color: var(--color-text);
}

.t-card-role {
  font-size: clamp(12px, 1vw, 14px);
  color: var(--color-subtext);
  opacity: 0.8;
}

.t-card-platform {
  font-size: 16px;
  color: var(--color-muted);
  opacity: 0.3;
}

/* CTA Section - Premium Upgrade */
.cta-review-section {
  background: linear-gradient(135deg, #064e3b 0%, #022c22 100%);
  color: white;
  margin: var(--space-9) auto;
  border-radius: clamp(20px, 3vw, 40px);
  padding: clamp(40px, 8vw, 80px) var(--space-6);
  max-width: var(--container-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-review-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(109, 191, 62, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.cta-review-section h2 {
  color: white;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--space-4);
  position: relative;
  z-index: 2;
}

.cta-review-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  max-width: 600px;
  margin: 0 auto var(--space-7);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.btn-premium-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #6dbf3e;
  color: #022c22;
  padding: 16px 36px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(109, 191, 62, 0.2);
}

.btn-premium-cta:hover {
  transform: translateY(-3px);
  background: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn-premium-cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-premium-cta:hover svg {
  transform: translateX(4px);
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
  .reviews-masonry {
    columns: 2;
  }
}

@media (max-width: 640px) {
  .reviews-masonry {
    columns: 1;
  }
  
  .cta-review-section {
    margin: var(--space-6) var(--space-4);
    border-radius: var(--radius-xl);
    padding: 40px 20px;
  }

  .t-card:hover {
    transform: none; /* Disable hover lift on mobile */
  }
}
