/* ===================================================
   Rakuten Rewards Hub — Scoped Styles
   All classes prefixed with rrh- to avoid theme clashes
   =================================================== */

.rrh-wrapper {
  --rrh-crimson: #ff1744;
  --rrh-crimson-deep: #c8102e;
  --rrh-crimson-glow: rgba(255,23,68,0.5);
  --rrh-gold: #ffc857;
  --rrh-gold-light: #ffeaa0;
  --rrh-emerald: #00f5a0;
  --rrh-cyan: #00d4ff;
  --rrh-magenta: #ff00aa;
  --rrh-ink: #050507;
  --rrh-ink2: #0a0a12;
  --rrh-surface: #12121c;
  --rrh-surface-2: #1a1a28;
  --rrh-surface-3: #22223a;
  --rrh-border: rgba(255,255,255,0.06);
  --rrh-border-lit: rgba(255,255,255,0.12);
  --rrh-text: #f5f5fb;
  --rrh-muted: #7e7e9c;
  --rrh-muted-2: #aaaacc;

  position: relative;
  background: var(--rrh-ink);
  color: var(--rrh-text);
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  isolation: isolate;
}
.rrh-wrapper * { box-sizing: border-box; }
.rrh-wrapper h1,
.rrh-wrapper h2,
.rrh-wrapper h3,
.rrh-wrapper h4,
.rrh-wrapper h5 {
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.02em;
  margin: 0;
}
.rrh-wrapper p { margin: 0; }
.rrh-wrapper a { color: inherit; }

/* ─── BACKDROP ─── */
.rrh-backdrop {
  position: absolute; inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.rrh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: rrh-float 20s ease-in-out infinite;
}
.rrh-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, var(--rrh-crimson) 0%, transparent 70%); top: -200px; left: -150px; animation-duration: 22s; }
.rrh-orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, var(--rrh-magenta) 0%, transparent 70%); top: 30%; right: -100px; animation-duration: 28s; animation-delay: -5s; opacity: 0.35; }
.rrh-orb-3 { width: 700px; height: 700px; background: radial-gradient(circle, var(--rrh-cyan) 0%, transparent 70%); bottom: -300px; left: 30%; animation-duration: 30s; animation-delay: -10s; opacity: 0.25; }
.rrh-orb-4 { width: 400px; height: 400px; background: radial-gradient(circle, var(--rrh-gold) 0%, transparent 70%); top: 60%; left: 10%; animation-duration: 24s; animation-delay: -8s; opacity: 0.3; }
@keyframes rrh-float {
  0%,100% { transform: translate(0,0) scale(1); }
  25% { transform: translate(80px,-60px) scale(1.1); }
  50% { transform: translate(-50px,80px) scale(0.95); }
  75% { transform: translate(60px,40px) scale(1.05); }
}

.rrh-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  z-index: 0;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
          mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.rrh-particles { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.rrh-particle {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  animation: rrh-rise linear infinite;
  opacity: 0;
}
@keyframes rrh-rise {
  0% { transform: translateY(100vh) translateX(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-10vh) translateX(50px); opacity: 0; }
}

/* ─── HERO ─── */
.rrh-hero {
  position: relative; z-index: 2;
  min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  padding: 100px 20px 80px;
  text-align: center;
}
.rrh-hero-inner { position: relative; max-width: 920px; }

.rrh-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,23,68,0.12);
  border: 1px solid rgba(255,23,68,0.35);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: #ff6680;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px;
  margin-bottom: 28px;
  animation: rrh-slide-down 0.7s ease both;
}
.rrh-hero-title {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 800; line-height: 1.05;
  margin-bottom: 28px;
  animation: rrh-slide-down 0.8s 0.1s ease both;
  color: var(--rrh-text);
}
.rrh-accent {
  background: linear-gradient(135deg, var(--rrh-crimson), var(--rrh-magenta));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rrh-gold {
  background: linear-gradient(135deg, var(--rrh-gold) 0%, #ff8a3d 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative; display: inline-block;
}
.rrh-hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--rrh-muted-2);
  max-width: 640px; margin: 0 auto 44px;
  animation: rrh-slide-down 0.8s 0.2s ease both;
  font-weight: 300;
}
.rrh-hero-sub strong { color: var(--rrh-text); font-weight: 500; }

.rrh-cta-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; animation: rrh-slide-down 0.8s 0.3s ease both; }

.rrh-hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin: 64px auto 0;
  max-width: 720px;
  animation: rrh-slide-up 0.9s 0.5s ease both;
}
@media (max-width: 600px) { .rrh-hero-stats { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
.rrh-stat {
  text-align: center; padding: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--rrh-border);
  border-radius: 14px;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.rrh-stat:hover { transform: translateY(-4px); border-color: var(--rrh-border-lit); background: rgba(255,255,255,0.06); }
.rrh-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--rrh-gold), #ff8a3d);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 6px;
}
.rrh-stat-label { font-size: 0.72rem; color: var(--rrh-muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* ─── BUTTONS ─── */
.rrh-btn-primary, .rrh-btn-secondary, .rrh-btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(.2,.9,.3,1.4);
  position: relative; overflow: hidden;
  border: none; cursor: pointer;
  line-height: 1;
}
.rrh-btn-primary {
  background: linear-gradient(135deg, var(--rrh-crimson) 0%, var(--rrh-crimson-deep) 100%);
  color: #fff !important;
  box-shadow: 0 0 40px var(--rrh-crimson-glow), 0 8px 24px rgba(255,23,68,0.3);
}
.rrh-btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.7s;
}
.rrh-btn-primary:hover::before { left: 100%; }
.rrh-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 60px var(--rrh-crimson-glow), 0 14px 40px rgba(255,23,68,0.45); }
.rrh-btn-secondary {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--rrh-border-lit);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  color: var(--rrh-text) !important;
}
.rrh-btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }
.rrh-btn-large { font-size: 1.05rem; padding: 18px 36px; }
.rrh-btn-block { width: 100%; justify-content: center; }
.rrh-btn-wrap { text-align: center; padding: 20px 0; }
.rrh-btn-white {
  background: #fff;
  color: var(--rrh-crimson-deep) !important;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  font-weight: 800;
  padding: 18px 40px;
  font-size: 1.05rem;
}
.rrh-btn-white:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }

/* ─── SECTIONS ─── */
.rrh-section { padding: 100px 20px; position: relative; z-index: 2; }
.rrh-section-inner { max-width: 1180px; margin: 0 auto; position: relative; }
.rrh-narrow { max-width: 900px; }
.rrh-section-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rrh-crimson);
  margin-bottom: 16px;
  padding: 5px 14px;
  background: rgba(255,23,68,0.08);
  border: 1px solid rgba(255,23,68,0.2);
  border-radius: 100px;
}
.rrh-section-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: var(--rrh-text);
}
.rrh-section-sub {
  font-size: 1rem;
  color: var(--rrh-muted-2);
  max-width: 600px;
  margin-bottom: 56px;
  font-weight: 300;
}
.rrh-section-sub strong { color: var(--rrh-text); font-weight: 500; }
.rrh-bg-soft { background: rgba(10,10,18,0.4); }
.rrh-center { text-align: center; }

/* ─── STORE MARQUEE ─── */
.rrh-stores-strip {
  position: relative; z-index: 2;
  padding: 50px 0;
  overflow: hidden;
}
.rrh-stores-row {
  display: flex; gap: 14px;
  animation: rrh-scroll-x 60s linear infinite;
  white-space: nowrap;
  width: max-content;
  margin-bottom: 14px;
}
.rrh-stores-row.rrh-reverse { animation-direction: reverse; animation-duration: 75s; }
.rrh-store-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--rrh-surface);
  border: 1px solid var(--rrh-border);
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 0.9rem; font-weight: 600;
  transition: all 0.3s;
  text-decoration: none !important;
  color: var(--rrh-text) !important;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.rrh-store-chip:hover {
  background: var(--rrh-surface-2);
  border-color: var(--rrh-crimson);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255,23,68,0.2);
}
.rrh-chip-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px;
  background: linear-gradient(135deg, var(--rrh-surface-2), var(--rrh-surface-3));
}
.rrh-chip-rate { color: var(--rrh-emerald); font-weight: 700; font-family: 'Syne', sans-serif; }
@keyframes rrh-scroll-x { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ─── STEPS ─── */
.rrh-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.rrh-step {
  background: rgba(18,18,28,0.7);
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  border: 1px solid var(--rrh-border);
  border-radius: 20px;
  padding: 32px 26px;
  position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(.2,.9,.3,1.2);
}
.rrh-step:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  border-color: rgba(255,23,68,0.35);
  background: rgba(26,26,40,0.85);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(255,23,68,0.15);
}
.rrh-step::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rrh-crimson), var(--rrh-magenta));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.rrh-step:hover::before { transform: scaleX(1); }
.rrh-step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem; font-weight: 800;
  background: linear-gradient(135deg, rgba(255,23,68,0.2), rgba(255,0,170,0.1));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 12px;
}
.rrh-step-icon { font-size: 1.8rem; margin-bottom: 12px; display: inline-block; transition: transform 0.4s; }
.rrh-step:hover .rrh-step-icon { transform: scale(1.2) rotate(-8deg); }
.rrh-step h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; color: var(--rrh-text); }
.rrh-step p { font-size: 0.88rem; color: var(--rrh-muted-2); }
.rrh-step a { color: var(--rrh-crimson); text-decoration: underline; text-underline-offset: 3px; }
.rrh-highlight { color: var(--rrh-gold); font-weight: 600; }

.rrh-qualify-box {
  background: linear-gradient(135deg, rgba(255,23,68,0.08), rgba(255,0,170,0.05));
  border: 1px solid rgba(255,23,68,0.25);
  border-radius: 16px;
  padding: 20px 24px;
  font-size: 0.9rem;
  color: #ffacba;
  margin-top: 32px;
  display: flex; gap: 14px; align-items: flex-start;
}
.rrh-qualify-box strong { color: var(--rrh-crimson); }
.rrh-qualify-box a { color: var(--rrh-gold); text-decoration: underline; }
.rrh-qualify-icon { font-size: 1.4rem; flex-shrink: 0; }

/* ─── BONUS BOX ─── */
.rrh-bonus-box {
  background:
    radial-gradient(ellipse at top, rgba(255,200,87,0.15) 0%, transparent 60%),
    linear-gradient(135deg, var(--rrh-surface) 0%, var(--rrh-surface-2) 100%);
  border: 1px solid rgba(255,200,87,0.3);
  border-radius: 28px;
  padding: 60px 32px;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 0 80px rgba(255,200,87,0.15);
}
.rrh-bonus-amount {
  font-family: 'Syne', sans-serif;
  font-size: clamp(4.5rem, 13vw, 9rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--rrh-gold) 0%, #ff8a3d 50%, var(--rrh-gold) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  animation: rrh-gradient-shift 3s ease infinite;
  display: inline-block;
}
@keyframes rrh-gradient-shift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
.rrh-bonus-label { font-size: 1.1rem; color: var(--rrh-muted-2); margin: 12px 0 28px; font-weight: 300; }
.rrh-bonus-note {
  background: rgba(255,200,87,0.08);
  border: 1px solid rgba(255,200,87,0.25);
  border-radius: 12px;
  padding: 12px 22px;
  font-size: 0.88rem;
  color: var(--rrh-gold-light);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 32px;
}
.rrh-bonus-note strong { color: var(--rrh-gold); }
.rrh-ref-note { margin-top: 20px; font-size: 0.85rem; color: var(--rrh-muted); }
.rrh-ref-note a { color: var(--rrh-gold); text-decoration: underline; }

/* ─── BOA COMPARISON ─── */
.rrh-compare-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 800px) { .rrh-compare-wrap { grid-template-columns: 1fr; } }
.rrh-comp-card {
  border-radius: 22px;
  padding: 32px 28px;
  position: relative; overflow: hidden;
  transition: transform 0.4s;
}
.rrh-comp-card:hover { transform: translateY(-6px); }
.rrh-comp-bad { background: linear-gradient(135deg, #1a1a28, #16161e); border: 1px solid rgba(255,255,255,0.08); }
.rrh-comp-good {
  background:
    linear-gradient(135deg, rgba(0,245,160,0.1), rgba(255,200,87,0.08)),
    linear-gradient(135deg, #1a2520, #131c19);
  border: 1px solid rgba(0,245,160,0.3);
  box-shadow: 0 0 60px rgba(0,245,160,0.15);
}
.rrh-comp-good::before {
  content: 'RECOMMENDED';
  position: absolute; top: 22px; right: -32px;
  background: var(--rrh-emerald);
  color: #003322;
  padding: 6px 36px;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 0.7rem;
  letter-spacing: 0.1em;
  transform: rotate(35deg);
}
.rrh-comp-header { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.rrh-comp-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.rrh-comp-bad .rrh-comp-icon { background: rgba(255,255,255,0.05); }
.rrh-comp-good .rrh-comp-icon { background: linear-gradient(135deg, var(--rrh-emerald), #00d68f); color: #003322; }
.rrh-comp-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; }
.rrh-comp-sub-title { font-size: 0.72rem; color: var(--rrh-muted); font-weight: 400; }
.rrh-comp-bad .rrh-comp-title { color: var(--rrh-muted-2); }
.rrh-comp-value {
  font-family: 'Syne', sans-serif;
  font-size: 3.2rem; font-weight: 800;
  line-height: 1; margin-bottom: 4px;
}
.rrh-comp-bad .rrh-comp-value { color: #555570; text-decoration: line-through; text-decoration-color: #ff4466; text-decoration-thickness: 3px; }
.rrh-comp-good .rrh-comp-value {
  background: linear-gradient(135deg, var(--rrh-emerald), var(--rrh-gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rrh-comp-sub { font-size: 0.82rem; color: var(--rrh-muted); margin-bottom: 22px; }
.rrh-comp-list { list-style: none; margin: 0 0 22px; padding: 0; }
.rrh-comp-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
  display: flex; gap: 10px; align-items: flex-start;
}
.rrh-comp-list li:last-child { border-bottom: none; }
.rrh-comp-bad .rrh-comp-list li { color: var(--rrh-muted); }
.rrh-comp-bad .rrh-comp-list li::before { content: '✕'; color: #ff4466; font-weight: 700; }
.rrh-comp-good .rrh-comp-list li::before { content: '✓'; color: var(--rrh-emerald); font-weight: 700; }
.rrh-comp-loss {
  font-size: 0.78rem; color: var(--rrh-muted);
  padding: 12px; background: rgba(255,68,102,0.05);
  border-radius: 10px; text-align: center;
}
.rrh-comp-loss strong { color: #ff6680; }

.rrh-diff-summary {
  background: linear-gradient(135deg, var(--rrh-surface), var(--rrh-surface-2));
  border: 1px solid var(--rrh-border-lit);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  margin-top: 20px;
}
.rrh-diff-amount {
  font-family: 'Syne', sans-serif;
  font-size: 2.8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--rrh-emerald), var(--rrh-gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1; margin-bottom: 8px;
}
.rrh-diff-label { color: var(--rrh-muted-2); margin-bottom: 20px; font-size: 0.92rem; }
.rrh-pro-tip { font-size: 0.78rem; color: var(--rrh-muted); margin-top: 14px; }
.rrh-pro-tip a { color: var(--rrh-gold); text-decoration: underline; }

/* ─── OFFERS GRID ─── */
.rrh-offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.rrh-offer-card {
  background: var(--rrh-surface);
  border: 1px solid var(--rrh-border);
  border-radius: 18px;
  padding: 22px 20px;
  transition: all 0.3s cubic-bezier(.2,.9,.3,1.2);
  text-decoration: none !important;
  color: var(--rrh-text) !important;
  position: relative; overflow: hidden;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.rrh-offer-card:hover {
  transform: translateY(-6px);
  border-color: var(--rrh-crimson);
  background: var(--rrh-surface-2);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 24px rgba(255,23,68,0.15);
}
.rrh-offer-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--rrh-surface-2), var(--rrh-surface-3));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
  transition: transform 0.3s;
}
.rrh-offer-card:hover .rrh-offer-icon { transform: rotate(-8deg) scale(1.1); }
.rrh-offer-store { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 0.98rem; margin-bottom: 4px; }
.rrh-offer-cat { font-size: 0.7rem; color: var(--rrh-muted); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; }
.rrh-offer-rate {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0,245,160,0.15), rgba(0,212,255,0.1));
  border: 1px solid rgba(0,245,160,0.3);
  color: var(--rrh-emerald);
  font-family: 'Syne', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  padding: 5px 12px;
  border-radius: 8px;
}

/* ─── CALCULATOR ─── */
.rrh-calc-card {
  background: linear-gradient(135deg, var(--rrh-surface), var(--rrh-surface-2));
  border: 1px solid var(--rrh-border-lit);
  border-radius: 22px;
  padding: 36px;
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
}
.rrh-calc-row { margin-bottom: 24px; }
.rrh-calc-label {
  display: flex; justify-content: space-between;
  font-size: 0.9rem; color: var(--rrh-muted-2);
  margin-bottom: 10px;
}
.rrh-calc-value { color: var(--rrh-gold); font-weight: 700; font-family: 'Syne', sans-serif; }
.rrh-calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: var(--rrh-surface-3);
  border-radius: 3px;
  outline: none; cursor: pointer;
}
.rrh-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rrh-crimson), var(--rrh-magenta));
  cursor: pointer;
  box-shadow: 0 0 16px var(--rrh-crimson-glow);
  transition: transform 0.2s;
}
.rrh-calc-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.rrh-calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--rrh-crimson);
  cursor: pointer; border: none;
  box-shadow: 0 0 16px var(--rrh-crimson-glow);
}
.rrh-calc-result {
  background: linear-gradient(135deg, rgba(0,245,160,0.1), rgba(255,200,87,0.06));
  border: 1px solid rgba(0,245,160,0.25);
  border-radius: 16px;
  padding: 26px;
  text-align: center;
  margin-top: 16px;
}
.rrh-calc-result-label { font-size: 0.82rem; color: var(--rrh-muted-2); margin-bottom: 8px; letter-spacing: 0.1em; text-transform: uppercase; }
.rrh-calc-result-amount {
  font-family: 'Syne', sans-serif;
  font-size: 3.2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--rrh-emerald), var(--rrh-gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.rrh-calc-bonus { color: var(--rrh-gold); font-size: 0.88rem; margin-top: 6px; font-weight: 500; }

/* ─── BENEFITS GRID ─── */
.rrh-benefits-section { position: relative; }
.rrh-ref-bar {
  background: linear-gradient(135deg, var(--rrh-surface), var(--rrh-surface-2));
  border: 1px solid rgba(255,200,87,0.25);
  border-radius: 16px;
  padding: 20px 26px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
  margin-bottom: 36px;
  -webkit-backdrop-filter: blur(20px); backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(255,200,87,0.1);
}
.rrh-ref-bar-text strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.rrh-ref-bar-text span { font-size: 0.82rem; color: var(--rrh-muted-2); }
.rrh-ref-url {
  font-family: 'JetBrains Mono', monospace;
  background: rgba(255,200,87,0.08);
  border: 1px solid rgba(255,200,87,0.3);
  color: var(--rrh-gold) !important;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.82rem; font-weight: 600;
  text-decoration: none !important;
  transition: all 0.25s;
  white-space: nowrap;
}
.rrh-ref-url:hover { background: rgba(255,200,87,0.15); transform: scale(1.03); }
.rrh-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 12px;
}
.rrh-benefit-item {
  background: rgba(18,18,28,0.6);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--rrh-border);
  border-radius: 14px;
  padding: 16px 18px;
  display: flex; gap: 12px; align-items: flex-start;
  transition: all 0.3s;
}
.rrh-benefit-item:hover {
  background: var(--rrh-surface-2);
  border-color: var(--rrh-border-lit);
  transform: translateY(-3px);
}
.rrh-benefit-icon {
  font-size: 1.3rem; flex-shrink: 0;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--rrh-surface-2), var(--rrh-surface-3));
  border-radius: 10px;
}
.rrh-benefit-text strong { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 3px; color: var(--rrh-text); line-height: 1.3; }
.rrh-benefit-text span { font-size: 0.74rem; color: var(--rrh-muted); line-height: 1.4; }

/* ─── FAQ ─── */
.rrh-faq-list { max-width: 800px; margin: 0 auto; }
.rrh-faq-item {
  background: rgba(18,18,28,0.6);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border: 1px solid var(--rrh-border);
  border-radius: 16px;
  padding: 22px 26px;
  margin-bottom: 12px;
  transition: all 0.3s;
}
.rrh-faq-item:hover { border-color: var(--rrh-border-lit); }
.rrh-faq-item.rrh-open { background: var(--rrh-surface); border-color: rgba(255,23,68,0.3); }
.rrh-faq-q {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 1rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.rrh-faq-q::after {
  content: '+';
  font-size: 1.6rem; font-weight: 300;
  color: var(--rrh-crimson);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.rrh-faq-item.rrh-open .rrh-faq-q::after { transform: rotate(45deg); }
.rrh-faq-a {
  font-size: 0.92rem;
  color: var(--rrh-muted-2);
  line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.3s ease;
}
.rrh-faq-item.rrh-open .rrh-faq-a { max-height: 500px; margin-top: 14px; }
.rrh-faq-a a { color: var(--rrh-gold); text-decoration: underline; }

/* ─── FINAL CTA BANNER ─── */
.rrh-cta-banner {
  background:
    radial-gradient(ellipse at top right, rgba(255,0,170,0.3) 0%, transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(0,212,255,0.2) 0%, transparent 60%),
    linear-gradient(135deg, var(--rrh-crimson-deep) 0%, var(--rrh-crimson) 60%, #ff4488 100%);
  border-radius: 28px;
  padding: 70px 36px;
  text-align: center;
  position: relative; overflow: hidden;
  box-shadow: 0 30px 80px rgba(255,23,68,0.35);
}
.rrh-cta-banner-inner { position: relative; z-index: 2; }
.rrh-cta-banner h2 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 16px; color: #fff; }
.rrh-cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.05rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.rrh-ref-link { display: inline-block; margin-top: 18px; font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.rrh-ref-link a { color: rgba(255,255,255,0.95); text-decoration: underline; }

/* ─── TRUST BAR ─── */
.rrh-trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 44px 20px;
  border-top: 1px solid var(--rrh-border);
  border-bottom: 1px solid var(--rrh-border);
  background: rgba(10,10,18,0.6);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  max-width: 1180px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.rrh-trust-item { display: flex; align-items: center; gap: 14px; justify-content: center; }
.rrh-trust-icon {
  font-size: 1.5rem;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--rrh-surface-2), var(--rrh-surface-3));
  border-radius: 12px;
}
.rrh-trust-text strong { display: block; font-size: 0.92rem; font-weight: 700; font-family: 'Syne', sans-serif; }
.rrh-trust-text span { font-size: 0.76rem; color: var(--rrh-muted); }

/* ─── FLOATING CTA ─── */
.rrh-floating-cta {
  position: fixed;
  bottom: 24px; right: 24px;
  background: linear-gradient(135deg, var(--rrh-crimson), var(--rrh-crimson-deep));
  color: #fff !important;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.88rem;
  padding: 14px 22px;
  border-radius: 14px;
  text-decoration: none !important;
  box-shadow: 0 12px 40px var(--rrh-crimson-glow);
  z-index: 99999;
  display: flex; align-items: center; gap: 10px;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(.2,.9,.3,1.4);
}
.rrh-floating-cta.rrh-show { transform: translateY(0); opacity: 1; }
.rrh-floating-cta:hover { transform: translateY(-4px); box-shadow: 0 18px 50px var(--rrh-crimson-glow); }
.rrh-pulse-dot {
  width: 8px; height: 8px;
  background: var(--rrh-gold);
  border-radius: 50%;
  animation: rrh-pulse-ring 2s infinite;
}
@keyframes rrh-pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(255,200,87,0.6); }
  100% { box-shadow: 0 0 0 14px rgba(255,200,87,0); }
}

/* ─── ANIMATIONS ─── */
@keyframes rrh-slide-down {
  from { opacity:0; transform:translateY(-30px); }
  to { opacity:1; transform:translateY(0); }
}
@keyframes rrh-slide-up {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}
.rrh-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(.2,.7,.3,1), transform 0.8s cubic-bezier(.2,.7,.3,1);
}
.rrh-fade-in.rrh-visible { opacity: 1; transform: translateY(0); }
