/* ============================================================
   ESSE INDIA — REVIEWS PAGE STYLES
   Location: /assets/css/reviews.css
   All classes namespaced with .rv2- to avoid conflicts
   ============================================================ */

/* ============================================================
   BASE / TOKENS
   ============================================================ */
.rv2-page {
  --rv2-ink: #150c2e;
  --rv2-purple-950: #170a38;
  --rv2-purple-900: #20103f;
  --rv2-purple-800: #321a7a;
  --rv2-purple-600: #4b21c4;
  --rv2-purple-500: #6a35e6;
  --rv2-purple-400: #8b5cf6;
  --rv2-lilac-100: #f1ecfc;
  --rv2-lilac-50: #f8f6fd;
  --rv2-gold: #f5b400;
  --rv2-gold-light: #ffd76b;
  --rv2-gray: #6d6d80;
  --rv2-gray-light: #a6a6b8;
  --rv2-radius-lg: 28px;
  --rv2-radius-md: 20px;
  --rv2-shadow: 0 20px 50px -18px rgba(26, 13, 61, .28);
  --rv2-shadow-lg: 0 34px 70px -20px rgba(26, 13, 61, .4);
  --rv2-ease: cubic-bezier(.22, 1, .36, 1);
  font-family: 'Inter', sans-serif;
  color: var(--rv2-ink);
  background: #fff;
}
.rv2-page * { box-sizing: border-box; }
.rv2-page h1,
.rv2-page h2,
.rv2-page h3 {
  font-family: 'Outfit', 'Inter', sans-serif;
  margin: 0;
}
.rv2-page a { text-decoration: none; color: inherit; }
.rv2-wrap { max-width: 1340px; margin: 0 auto; padding: 0 24px; }

.rv2-spotlight {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
  background: radial-gradient(circle 420px at var(--sx, 50%) var(--sy, 50%), rgba(139, 92, 246, .10), transparent 65%);
}
.rv2-spotlight.rv2-on { opacity: 1; }
@media (max-width: 900px) { .rv2-spotlight { display: none; } }

.rv2-stars {
  display: inline-flex;
  gap: 2px;
  color: var(--rv2-gold);
  font-size: 15px;
}
.rv2-stars.lg { font-size: 21px; }
.rv2-stars i { filter: drop-shadow(0 2px 3px rgba(245, 180, 0, .35)); }

.rv2-grad-text {
  background: linear-gradient(100deg, #fff 20%, var(--rv2-gold-light) 55%, #fff 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   SCROLL-REVEAL ANIMATION
   ============================================================ */
.rv2-reveal {
  opacity: 0;
  transform: translateY(36px) scale(.98) rotateX(-6deg);
  transform-origin: center bottom;
  transition: opacity .8s var(--rv2-ease), transform .8s var(--rv2-ease);
}
.rv2-reveal.rv2-in {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0deg);
}
.rv2-reveal-stagger.rv2-in { transition-delay: var(--rv2-delay, 0s); }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes rv2Float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-22px) rotate(6deg); }
}
@keyframes rv2FloatSlow {
  0%, 100% { transform: translateY(0) translateX(0); }
  50%      { transform: translateY(18px) translateX(-14px); }
}
@keyframes rv2Spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes rv2Pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 180, 0, .45); }
  50%      { box-shadow: 0 0 0 14px rgba(245, 180, 0, 0); }
}
@keyframes rv2Shine {
  0%   { background-position: -150% 0; }
  100% { background-position: 250% 0; }
}
@keyframes rv2Shimmer {
  0%   { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}
@keyframes rv2Twinkle {
  0%, 100% { opacity: .25; transform: scale(.8); }
  50%      { opacity: 1; transform: scale(1.15); }
}
@keyframes rv2Gradient {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes rv2Coin3D {
  0%   { transform: translateY(0) rotateY(0deg) rotateX(6deg); }
  50%  { transform: translateY(-16px) rotateY(180deg) rotateX(6deg); }
  100% { transform: translateY(0) rotateY(360deg) rotateX(6deg); }
}
@keyframes rv2OrbitRing {
  from { transform: translate(-50%, -50%) rotateZ(0deg) rotateX(72deg); }
  to   { transform: translate(-50%, -50%) rotateZ(360deg) rotateX(72deg); }
}
@keyframes rv2GlowPulse {
  0%, 100% { opacity: .5; }
  50%      { opacity: 1; }
}
@keyframes rv2PopIn3D {
  0%   { opacity: 0; transform: translateY(50px) rotateX(-25deg) scale(.9); }
  100% { opacity: 1; transform: translateY(0) rotateX(0deg) scale(1); }
}
@keyframes rv2PlaneFly {
  0%   { transform: translate(0, 0) rotate(18deg); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { transform: translate(128vw, -90px) rotate(18deg); opacity: 0; }
}

/* ============================================================
   SPLIT HERO
   ============================================================ */
.rv2-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 900px 500px at 15% -10%, rgba(139, 92, 246, .55), transparent 60%),
    radial-gradient(ellipse 700px 500px at 100% 10%, rgba(245, 180, 0, .28), transparent 55%),
    radial-gradient(ellipse 500px 400px at 70% 90%, rgba(139, 92, 246, .32), transparent 60%),
    linear-gradient(150deg, var(--rv2-purple-950), var(--rv2-purple-600) 78%);
  color: #fff;
  padding: 130px 0 180px;
  perspective: 1400px;
}
.rv2-hero-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .5;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 90%);
}
.rv2-hero-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.rv2-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--rv2-gold-light);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 20px 10px 10px;
  border-radius: 50px;
  margin-bottom: 26px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.rv2-hero-badge img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .4);
}
.rv2-hero-badge .rv2-stars { font-size: 11px; }

.rv2-hero-star {
  position: absolute;
  color: var(--rv2-gold-light);
  z-index: 0;
  pointer-events: none;
  animation: rv2Twinkle 3.2s ease-in-out infinite;
}

.rv2-hero-plane {
  position: absolute;
  top: 24%;
  left: -6%;
  z-index: 1;
  color: rgba(255, 255, 255, .55);
  font-size: 22px;
  pointer-events: none;
  animation: rv2PlaneFly 16s linear infinite;
}

.rv2-hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}
.rv2-hero-wave svg { width: 100%; height: 70px; display: block; }

.rv2-hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  z-index: 0;
  pointer-events: none;
  opacity: .55;
}
.rv2-hero-blob.b1 {
  width: 260px;
  height: 260px;
  top: -60px;
  right: 8%;
  background: radial-gradient(circle at 35% 30%, var(--rv2-gold-light), var(--rv2-gold) 60%, transparent 75%);
  animation: rv2Float 9s ease-in-out infinite;
}
.rv2-hero-blob.b2 {
  width: 180px;
  height: 180px;
  bottom: -40px;
  left: 2%;
  background: radial-gradient(circle at 35% 30%, var(--rv2-purple-400), transparent 72%);
  animation: rv2FloatSlow 11s ease-in-out infinite;
}
.rv2-hero-blob.b3 {
  width: 70px;
  height: 70px;
  top: 18%;
  left: 38%;
  background: conic-gradient(from 90deg, var(--rv2-gold-light), var(--rv2-purple-400), var(--rv2-gold-light));
  animation: rv2Spin 14s linear infinite, rv2Float 7s ease-in-out infinite;
  opacity: .35;
}

/* ============================================================
   3D SPINNING TRUST COIN
   ============================================================ */
.rv2-coin3d-wrap {
  position: absolute;
  top: 8%;
  right: 6%;
  width: 130px;
  height: 130px;
  z-index: 2;
  perspective: 900px;
  pointer-events: none;
}
.rv2-coin3d-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 190px;
  height: 190px;
  margin: -95px 0 0 -95px;
  border: 1.5px dashed rgba(255, 214, 107, .35);
  border-radius: 50%;
  animation: rv2OrbitRing 9s linear infinite;
}
.rv2-coin3d {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: rv2Coin3D 7s cubic-bezier(.45, .05, .55, .95) infinite;
}
.rv2-coin3d-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 20px 45px -12px rgba(0, 0, 0, .5), inset 0 0 0 3px rgba(255, 255, 255, .25);
  font-family: 'Outfit', sans-serif;
  color: var(--rv2-purple-950);
}
.rv2-coin3d-face.front {
  background: radial-gradient(circle at 32% 28%, #fff6dd, var(--rv2-gold-light) 55%, var(--rv2-gold) 100%);
}
.rv2-coin3d-face.back {
  background: radial-gradient(circle at 32% 28%, #e9ddff, var(--rv2-purple-400) 55%, var(--rv2-purple-600) 100%);
  transform: rotateY(180deg);
  color: #fff;
}
.rv2-coin3d-face b {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}
.rv2-coin3d-face span {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-top: 4px;
}
.rv2-coin3d-face .rv2-stars {
  font-size: 9px;
  margin-top: 5px;
}
.rv2-coin-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 107, .45), transparent 70%);
  filter: blur(10px);
  animation: rv2GlowPulse 3.5s ease-in-out infinite;
  z-index: -1;
}
@media (max-width: 900px) { .rv2-coin3d-wrap { display: none; } }

.rv2-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: center;
}
.rv2-crumb {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 18px;
}
.rv2-crumb a { color: #fff; }

.rv2-hero h1 {
  font-size: clamp(40px, 6vw, 66px);
  font-weight: 800;
  line-height: 1.08;
  text-shadow: 0 12px 30px rgba(0, 0, 0, .25);
  letter-spacing: -1px;
}
.rv2-hero h1 em {
  font-style: normal;
  background: linear-gradient(100deg, var(--rv2-gold-light), #fff2cf 40%, var(--rv2-gold-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rv2Gradient 5s ease-in-out infinite;
}
.rv2-hero p {
  margin-top: 22px;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .85);
  max-width: 560px;
}

.rv2-cta-row {
  margin-top: 34px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.rv2-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  padding: 18px 34px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform .35s var(--rv2-ease), box-shadow .35s var(--rv2-ease);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}
.rv2-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .55) 45%, transparent 60%);
  background-size: 250% 100%;
  background-position: -150% 0;
  opacity: 0;
  transition: opacity .3s;
}
.rv2-btn:hover::after {
  opacity: 1;
  animation: rv2Shine 1s ease;
}

.rv2-btn-gold {
  background: linear-gradient(135deg, var(--rv2-gold), var(--rv2-gold-light));
  color: var(--rv2-purple-950);
  box-shadow: 0 14px 26px -10px rgba(245, 180, 0, .55), 0 3px 0 #c98f00;
}
.rv2-btn-gold:hover {
  transform: translateY(-4px) rotateX(6deg);
  box-shadow: 0 22px 34px -12px rgba(245, 180, 0, .65), 0 3px 0 #c98f00;
}
.rv2-btn-gold:active {
  transform: translateY(0) rotateX(0deg);
  box-shadow: 0 6px 14px -8px rgba(245, 180, 0, .55), 0 1px 0 #c98f00;
}

.rv2-btn-outline-light {
  background: rgba(255, 255, 255, .05);
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: #fff;
}
.rv2-btn-outline-light:hover {
  background: rgba(255, 255, 255, .14);
  transform: translateY(-4px) rotateX(6deg);
}
.rv2-btn-outline-light:active {
  transform: translateY(0) rotateX(0deg);
}

/* ============================================================
   SCORE PANEL — glassmorphic gradient-border card
   ============================================================ */
.rv2-score-panel {
  position: relative;
  background: linear-gradient(160deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .05));
  border-radius: var(--rv2-radius-lg);
  padding: 2px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform-style: preserve-3d;
  transition: transform .5s var(--rv2-ease), box-shadow .5s var(--rv2-ease);
  box-shadow: 0 30px 70px -25px rgba(0, 0, 0, .55);
  background-image:
    linear-gradient(rgba(255, 255, 255, .09), rgba(255, 255, 255, .09)),
    linear-gradient(135deg, var(--rv2-gold-light), rgba(255, 255, 255, .1) 40%, var(--rv2-purple-400));
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 1px solid transparent;
}
.rv2-score-panel:hover {
  transform: rotateY(-6deg) rotateX(3deg) translateY(-6px);
  box-shadow: 0 44px 90px -25px rgba(0, 0, 0, .65);
}
.rv2-score-inner { padding: 38px; }
.rv2-score-top {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.rv2-score-num {
  font-size: 72px;
  font-weight: 800;
  color: var(--rv2-gold-light);
  line-height: 1;
  text-shadow: 0 8px 28px rgba(245, 180, 0, .4);
}
.rv2-score-meta {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .75);
}
.rv2-score-meta strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 4px;
}

.rv2-platform-list {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.rv2-platform-row {
  display: flex;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 13px;
  padding: 12px 15px;
  transition: transform .3s var(--rv2-ease), background .3s;
}
.rv2-platform-row:hover {
  transform: translateX(6px) translateZ(10px);
  background: rgba(255, 255, 255, .12);
}
.rv2-platform-row > div { flex: 1; }

.rv2-platform-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 8px 16px -6px rgba(0, 0, 0, .5);
  transition: transform .5s var(--rv2-ease);
}
.rv2-platform-row:hover .rv2-platform-icon {
  transform: translateZ(20px) rotateY(360deg);
}
.rv2-google-mark {
  width: 56%;
  height: 56%;
  display: block;
}
.rv2-icon-google {
  box-shadow: 0 8px 16px -6px rgba(0, 0, 0, .35), inset 0 0 0 1px rgba(0, 0, 0, .06);
}
.rv2-platform-row b {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.rv2-platform-row b i.fa-circle-check {
  color: #3ee08a;
  font-size: 11px;
}
.rv2-platform-row small {
  color: rgba(255, 255, 255, .6);
  font-size: 12px;
  display: block;
  margin-top: 2px;
}

/* ============================================================
   RATING BREAKDOWN BARS
   ============================================================ */
.rv2-rating-bars {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rv2-rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, .7);
  font-weight: 600;
}
.rv2-rating-row span:first-child { width: 22px; }
.rv2-rating-row span:last-child { width: 32px; text-align: right; }
.rv2-rating-bar-track {
  flex: 1;
  height: 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .14);
  overflow: hidden;
}
.rv2-rating-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--rv2-gold), var(--rv2-gold-light));
  transition: width 1.3s var(--rv2-ease);
  box-shadow: 0 0 10px rgba(245, 180, 0, .5);
}

/* ============================================================
   STAT STRIP (floating card)
   ============================================================ */
.rv2-stat-strip {
  position: relative;
  margin-top: -92px;
  z-index: 2;
}
.rv2-stat-card {
  background: #fff;
  border-radius: var(--rv2-radius-lg);
  box-shadow: var(--rv2-shadow-lg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--rv2-lilac-100);
  overflow: hidden;
}
.rv2-stat {
  text-align: center;
  padding: 30px 12px;
  border-right: 1px solid var(--rv2-lilac-100);
  position: relative;
  perspective: 600px;
  transition: transform .35s var(--rv2-ease), background .35s;
}
.rv2-stat:hover {
  transform: translateY(-6px);
  background: var(--rv2-lilac-50);
}
.rv2-stat:last-child { border-right: none; }
.rv2-stat i {
  color: var(--rv2-purple-500);
  font-size: 18px;
  margin-bottom: 8px;
  display: inline-block;
  transition: transform .6s var(--rv2-ease);
  transform-style: preserve-3d;
}
.rv2-stat:hover i {
  transform: rotateY(360deg) translateZ(10px);
}
.rv2-stat b {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 38px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--rv2-purple-600), var(--rv2-purple-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.rv2-stat span {
  font-size: 13px;
  color: var(--rv2-gray);
  font-weight: 600;
}

/* ============================================================
   SECTION HEAD
   ============================================================ */
.rv2-section { padding: 70px 0 90px; }
.rv2-section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 42px;
}
.rv2-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--rv2-lilac-100);
  color: var(--rv2-purple-600);
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 17px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.rv2-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rv2-purple-500);
  box-shadow: 0 0 0 4px rgba(106, 53, 230, .18);
}
.rv2-section-head h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.5px;
  position: relative;
  display: inline-block;
}
.rv2-section-head h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--rv2-purple-500), var(--rv2-gold));
  transform: translateX(-50%);
  transition: width 1s var(--rv2-ease) .2s;
}
.rv2-section-head.rv2-in h2::after { width: 70px; }
.rv2-section-head p {
  margin-top: 12px;
  color: var(--rv2-gray);
  font-size: 15.5px;
  line-height: 1.7;
}

/* ============================================================
   FILTERS
   ============================================================ */
.rv2-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 42px;
}
.rv2-filter-btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--rv2-purple-800);
  background: #fff;
  border: 1px solid var(--rv2-lilac-100);
  padding: 11px 22px;
  border-radius: 50px;
  cursor: pointer;
  transition: transform .25s var(--rv2-ease), box-shadow .25s var(--rv2-ease), background .25s;
}
.rv2-filter-btn:hover {
  background: var(--rv2-lilac-50);
  transform: translateY(-2px);
}
.rv2-filter-btn.active {
  background: var(--rv2-purple-600);
  color: #fff;
  border-color: var(--rv2-purple-600);
  box-shadow: 0 10px 20px -8px rgba(75, 33, 196, .55);
  transform: translateY(-2px);
}
.rv2-filter-btn:active { transform: translateY(0) scale(.96); }

/* ============================================================
   REVIEW GRID (3D tilt cards)
   ============================================================ */
.rv2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  perspective: 1600px;
}
.rv2-card {
  display: none;
  background: #fff;
  border: 1px solid var(--rv2-lilac-100);
  border-radius: var(--rv2-radius-md);
  padding: 32px;
  box-shadow: var(--rv2-shadow);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .45s var(--rv2-ease), box-shadow .45s var(--rv2-ease);
  --mx: 50%;
  --my: 50%;
}
.rv2-card.rv2-show {
  display: flex;
  flex-direction: column;
}
.rv2-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, .55) 45%, transparent 60%);
  background-size: 250% 100%;
  transition: opacity .35s;
}
.rv2-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--rv2-purple-500), var(--rv2-gold-light), var(--rv2-purple-500));
  background-size: 200% auto;
  opacity: 0;
  transition: opacity .35s;
}
.rv2-card:hover { box-shadow: var(--rv2-shadow-lg); }
.rv2-card:hover::before { opacity: 1; animation: rv2Shine 1.1s ease; }
.rv2-card:hover::after { opacity: 1; animation: rv2Shimmer 2.4s linear infinite; }

.rv2-card-glare {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  border-radius: inherit;
  transition: opacity .3s;
  background: radial-gradient(circle 220px at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .55), transparent 60%);
  mix-blend-mode: overlay;
}
.rv2-card:hover .rv2-card-glare { opacity: 1; }
.rv2-final-card:hover .rv2-card-glare { opacity: 1; }
.rv2-final-card {
  --mx: 50%;
  --my: 50%;
}
.rv2-final-card:hover {
  box-shadow: 0 44px 90px -20px rgba(26, 13, 61, .55);
}

.rv2-card-quote {
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 72px;
  color: var(--rv2-lilac-100);
  z-index: 0;
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  transform: translateZ(14px);
}
.rv2-card > * { position: relative; z-index: 1; }

.rv2-card-top {
  display: flex;
  align-items: center;
  gap: 13px;
}
.rv2-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rv2-purple-500), var(--rv2-purple-800));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 10px 18px -8px rgba(75, 33, 196, .55);
  border: 2.5px solid var(--rv2-lilac-100);
  outline: 2px solid rgba(139, 92, 246, .18);
  outline-offset: 2px;
  transform: translateZ(38px);
  transition: transform .45s var(--rv2-ease);
}
.rv2-card-name {
  font-size: 15.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  transform: translateZ(24px);
}
.rv2-card-name i.fa-circle-check {
  color: #3ee08a;
  font-size: 12px;
}
.rv2-card-sub {
  font-size: 12.5px;
  color: var(--rv2-gray);
  margin-top: 2px;
}
.rv2-card-platform {
  margin-left: auto;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  flex-shrink: 0;
  box-shadow: 0 6px 12px -4px rgba(0, 0, 0, .35);
  transform: translateZ(46px);
  transition: transform .5s var(--rv2-ease);
}
.rv2-card:hover .rv2-card-platform {
  transform: translateZ(60px) rotateY(360deg);
}

.rv2-card-stars {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
}
.rv2-card-date {
  font-size: 12px;
  color: var(--rv2-gray-light);
  font-weight: 600;
}
.rv2-card-text {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.72;
  color: #3a3350;
  flex: 1;
  transform: translateZ(16px);
}
.rv2-card-tag {
  margin-top: 18px;
  align-self: flex-start;
  background: var(--rv2-lilac-100);
  color: var(--rv2-purple-600);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 50px;
  transition: background .3s, color .3s, transform .3s var(--rv2-ease);
  transform: translateZ(10px);
}
.rv2-card:hover .rv2-card-tag {
  transform: translateZ(22px);
}
.rv2-card-tag:hover {
  background: var(--rv2-purple-600);
  color: #fff;
}

.rv2-loadmore-wrap {
  text-align: center;
  margin-top: 46px;
}
.rv2-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--rv2-purple-600);
  background: #fff;
  border: 1.5px solid var(--rv2-purple-500);
  padding: 13px 28px;
  border-radius: 50px;
  cursor: pointer;
  font-family: inherit;
  transition: transform .3s var(--rv2-ease), box-shadow .3s var(--rv2-ease);
}
.rv2-btn-outline:hover {
  background: var(--rv2-lilac-50);
  transform: translateY(-4px);
  box-shadow: 0 16px 26px -14px rgba(75, 33, 196, .4);
}
.rv2-btn-outline.rv2-hide { display: none; }

/* ============================================================
   WRITE A REVIEW STRIP
   ============================================================ */
.rv2-write-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, var(--rv2-purple-950), var(--rv2-purple-600));
  padding: 96px 0;
}
.rv2-write-section::before {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 180, 0, .22), transparent 70%);
  top: -160px;
  left: -100px;
  animation: rv2FloatSlow 10s ease-in-out infinite;
  pointer-events: none;
}
.rv2-write-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  perspective: 1200px;
}
.rv2-write-card {
  position: relative;
  border-radius: var(--rv2-radius-md);
  padding: 2px;
  text-align: center;
  color: #fff;
  transition: transform .4s var(--rv2-ease);
  transform-style: preserve-3d;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07), rgba(255, 255, 255, .07)),
    linear-gradient(135deg, rgba(255, 255, 255, .35), rgba(255, 255, 255, .05) 60%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  border: 1px solid transparent;
}
.rv2-write-card:hover {
  transform: translateY(-8px) rotateX(4deg);
}
.rv2-write-card-inner {
  padding: 34px 28px;
  perspective: 500px;
}
.rv2-write-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #fff;
  margin: 0 auto 16px;
  animation: rv2Pulse 2.6s ease-in-out infinite;
  transition: transform .6s var(--rv2-ease);
  transform-style: preserve-3d;
}
.rv2-write-card:hover .rv2-write-icon {
  transform: rotateY(360deg) translateZ(12px);
}
.rv2-write-card b {
  display: block;
  font-size: 16px;
  margin-bottom: 16px;
}
.rv2-write-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--rv2-gold-light);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 10px 20px;
  border-radius: 50px;
  transition: transform .3s var(--rv2-ease);
}
.rv2-write-link:hover {
  background: rgba(255, 255, 255, .1);
  transform: translateX(4px);
}

/* ============================================================
   INLINE WRITE-A-REVIEW FORM
   ============================================================ */
.rv2-inline-form-wrap {
  max-width: 640px;
  margin: 52px auto 0;
  position: relative;
  z-index: 1;
}
.rv2-inline-form-head {
  text-align: center;
  margin-bottom: 24px;
}
.rv2-inline-form {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--rv2-radius-lg);
  padding: 34px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.rv2-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.rv2-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rv2-form-group { margin-bottom: 18px; }
.rv2-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 7px;
}
.rv2-inline-form input[type="text"],
.rv2-inline-form input[type="email"],
.rv2-inline-form textarea {
  width: 100%;
  background: rgba(255, 255, 255, .09);
  border: 1.5px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  padding: 13px 15px;
  font-family: inherit;
  font-size: 14.5px;
  color: #fff;
  transition: border-color .25s, background .25s;
}
.rv2-inline-form input::placeholder,
.rv2-inline-form textarea::placeholder {
  color: rgba(255, 255, 255, .45);
}
.rv2-inline-form input:focus,
.rv2-inline-form textarea:focus {
  outline: none;
  border-color: var(--rv2-gold-light);
  background: rgba(255, 255, 255, .14);
}
.rv2-inline-form textarea {
  resize: vertical;
  min-height: 96px;
}

.rv2-star-picker {
  display: flex;
  gap: 8px;
}
.rv2-star-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 26px;
  color: rgba(255, 255, 255, .35);
  padding: 4px;
  line-height: 1;
  transition: transform .2s, color .2s;
}
.rv2-star-btn:hover { transform: scale(1.15); }
.rv2-star-btn.rv2-star-active { color: var(--rv2-gold-light); }

.rv2-form-msg {
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 14px;
  min-height: 0;
  display: none;
  padding: 10px 14px;
  border-radius: 10px;
}
.rv2-form-msg.rv2-show { display: block; }
.rv2-form-msg.rv2-ok {
  background: rgba(62, 224, 138, .15);
  color: #7bffb8;
  border: 1px solid rgba(62, 224, 138, .3);
}
.rv2-form-msg.rv2-err {
  background: rgba(255, 90, 90, .15);
  color: #ffb3b3;
  border: 1px solid rgba(255, 90, 90, .3);
}

#rv2SubmitBtn:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none !important;
}

@media (max-width: 640px) {
  .rv2-form-row { grid-template-columns: 1fr; }
  .rv2-inline-form { padding: 24px; }
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.rv2-final {
  padding: 100px 0 110px;
  perspective: 1600px;
}
.rv2-final-card {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: var(--rv2-radius-lg);
  padding: 80px 48px;
  text-align: center;
  color: #fff;
  box-shadow: var(--rv2-shadow-lg);
  transition: box-shadow .45s var(--rv2-ease);
  background:
    radial-gradient(ellipse 600px 400px at 15% 0%, rgba(139, 92, 246, .55), transparent 60%),
    radial-gradient(ellipse 500px 400px at 100% 100%, rgba(245, 180, 0, .25), transparent 55%),
    linear-gradient(135deg, var(--rv2-purple-600), var(--rv2-purple-950));
}
.rv2-final-card::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rv2-gold-light), transparent 70%);
  opacity: .2;
  top: -120px;
  right: -60px;
  animation: rv2FloatSlow 8s ease-in-out infinite;
}
.rv2-final-card::before {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--rv2-purple-400), transparent 70%);
  opacity: .25;
  bottom: -100px;
  left: -60px;
  animation: rv2Float 10s ease-in-out infinite;
}
.rv2-final-card h2 {
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 800;
  letter-spacing: -.5px;
  position: relative;
  z-index: 1;
}
.rv2-final-card p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .82);
  font-size: 16.5px;
  position: relative;
  z-index: 1;
}
.rv2-final-btns {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .rv2-hero-grid { grid-template-columns: 1fr; }
  .rv2-grid { grid-template-columns: repeat(2, 1fr); }
  .rv2-write-grid { grid-template-columns: 1fr; }
  .rv2-stat-card { grid-template-columns: 1fr; }
  .rv2-stat {
    border-right: none;
    border-bottom: 1px solid var(--rv2-lilac-100);
    padding-bottom: 18px;
  }
  .rv2-stat:last-child { border-bottom: none; }
  .rv2-stat-strip { margin-top: -60px; }
}
@media (max-width: 600px) {
  .rv2-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   LIVE SOCIAL-PROOF TOAST
   ============================================================ */
.rv2-toast {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 60;
  max-width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--rv2-shadow-lg);
  border: 1px solid var(--rv2-lilac-100);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(24px) scale(.96);
  pointer-events: none;
  transition: opacity .5s var(--rv2-ease), transform .5s var(--rv2-ease);
}
.rv2-toast.rv2-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.rv2-toast-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--rv2-purple-500), var(--rv2-purple-800));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}
.rv2-toast-body { flex: 1; min-width: 0; }
.rv2-toast-body b {
  display: block;
  font-size: 13px;
  color: var(--rv2-ink);
}
.rv2-toast-body span {
  display: block;
  font-size: 11.5px;
  color: var(--rv2-gray);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rv2-toast-close {
  font-size: 12px;
  color: var(--rv2-gray-light);
  cursor: pointer;
  flex-shrink: 0;
  padding: 4px;
}
.rv2-toast-close:hover { color: var(--rv2-ink); }

/* ============================================================
   STICKY WRITE-A-REVIEW CTA
   ============================================================ */
.rv2-sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 55;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 14px;
  color: var(--rv2-purple-950);
  background: linear-gradient(135deg, var(--rv2-gold), var(--rv2-gold-light));
  padding: 15px 24px;
  border-radius: 50px;
  box-shadow: 0 16px 34px -12px rgba(245, 180, 0, .55);
  opacity: 0;
  transform: translateY(20px) scale(.9);
  pointer-events: none;
  transition: opacity .4s var(--rv2-ease), transform .4s var(--rv2-ease), box-shadow .3s;
}
.rv2-sticky-cta.rv2-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.rv2-sticky-cta:hover {
  box-shadow: 0 22px 42px -12px rgba(245, 180, 0, .65);
  transform: translateY(-4px) scale(1.03);
}

@media (max-width: 640px) {
  .rv2-toast {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: 84px;
  }
  .rv2-sticky-cta {
    right: 12px;
    bottom: 12px;
    padding: 13px 20px;
    font-size: 13px;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .rv2-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .rv2-hero-blob,
  .rv2-write-icon,
  .rv2-final-card::after {
    animation: none;
  }
}