:root {
  --blue-1: #0057ff;
  --brand: #0057ff;
  --blue-2: #1a6bff;
  --blue-3: #e8f0ff;
  --blue-4: #ccdaff;
  --blue-deep: #0037bb;
  --blue-pale: #f0f5ff;
  --text-dark: #0d1b3e;
  --text-mid: #3a4a6a;
  --text-light: #6a7d9f;
  --white: #ffffff;
  --border: #dde6f5;
  --card-bg: #f8faff;
  --shadow-sm: 0 2px 16px 0 rgba(0, 87, 255, 0.07);
  --shadow-md: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
  --radius: 18px; /* Slightly scaled up for 110% feel */
  --radius-sm: 11px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
/* NATIVE 110% SCALING TRICK */
html {
  scroll-behavior: smooth;
  font-size: 110%;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
.rn-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Abstract Shapes & Animations */
@keyframes anim-float {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-15px) translateX(10px);
  }
}
@keyframes anim-float-rev {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(15px) translateX(-10px);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}
@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes countGlow {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0);
  }
  50% {
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.25);
  }
}
@keyframes orbDrift1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(60px, -40px) scale(1.08);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.95);
  }
}
@keyframes orbDrift2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-50px, 50px) scale(1.12);
  }
}
@keyframes orbDrift3 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(40px, -60px);
  }
}
@keyframes gridDrift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 40px);
  }
}
@keyframes orbitSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes orbitSpinRev {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes particleRise {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20vh) scale(1);
    opacity: 0;
  }
}
@keyframes auroraPulse {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1) translateX(0);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.05) translateX(20px);
  }
}
@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.15;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.35;
  }
}
@keyframes circleSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes ctaOrb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
  }
}

/* Premium grain & scroll progress */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.rn-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--blue-1);
  z-index: 1001;
  transition: width 0.08s linear;
}

.rn-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.rn-shapes > * {
  position: absolute;
}
.sh-blob {
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 87, 255, 0.08) 0%,
    transparent 70%
  );
}
.sh-ring {
  border-radius: 50%;
  border: 1.5px solid rgba(0, 87, 255, 0.1);
  background: transparent;
}
.sh-bar {
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 87, 255, 0.15),
    transparent
  );
  border-radius: 2px;
}
.sh-dots {
  background-image: radial-gradient(
    circle,
    rgba(0, 87, 255, 0.12) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
}
.sh-cross {
  width: 20px;
  height: 20px;
  position: relative;
  opacity: 0.15;
}
.sh-cross::before,
.sh-cross::after {
  content: "";
  position: absolute;
  background: var(--blue-1);
  border-radius: 2px;
}
.sh-cross::before {
  top: 9px;
  left: 0;
  width: 20px;
  height: 2px;
}
.sh-cross::after {
  left: 9px;
  top: 0;
  height: 20px;
  width: 2px;
}

.anim-float {
  animation: anim-float 8s ease-in-out infinite;
}
.anim-float-rev {
  animation: anim-float-rev 9s ease-in-out infinite;
}

.rn-navbar {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.rn-navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 87, 255, 0.08);
  border-bottom-color: transparent;
}
.rn-brand {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue-1) !important;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.rn-brand span {
  color: var(--text-dark);
}
.rn-nav-link {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-mid) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s;
  text-decoration: none;
}
.rn-nav-link:hover {
  color: var(--blue-1) !important;
}
.rn-nav-cta {
  background: var(--blue-1);
  color: #fff !important;
  border-radius: 50px;
  padding: 0.5rem 1.3rem !important;
  font-weight: 700;
  font-size: 0.875rem;
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}
.rn-nav-cta:hover {
  background: var(--blue-deep) !important;
  box-shadow: 0 4px 16px rgba(0, 87, 255, 0.3);
}

.rn-hero {
  background: linear-gradient(135deg, #eef4ff 0%, #e4eeff 45%, #f5f8ff 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4.5rem;
}
.rn-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 70% 40%,
    rgba(0, 87, 255, 0.07) 0%,
    transparent 70%
  ),
    radial-gradient(
      ellipse 50% 50% at 20% 80%,
      rgba(0, 87, 255, 0.05) 0%,
      transparent 60%
    );
  pointer-events: none;
  z-index: 0;
}
.rn-hero > .container {
  position: relative;
  z-index: 2;
}

/* Hero infinite animated background */
.rn-hero-anim-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.rn-hero-grid {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  background-image: linear-gradient(rgba(0, 87, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 87, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 20s linear infinite;
  mask-image: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    black 20%,
    transparent 70%
  );
  -webkit-mask-image: radial-gradient(
    ellipse 70% 70% at 50% 50%,
    black 20%,
    transparent 70%
  );
}
.rn-hero-aurora {
  position: absolute;
  width: 900px;
  height: 500px;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(
    ellipse,
    rgba(0, 87, 255, 0.12) 0%,
    rgba(102, 160, 255, 0.06) 40%,
    transparent 70%
  );
  filter: blur(40px);
  animation: auroraPulse 8s ease-in-out infinite;
}
.rn-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}
.rn-hero-orb-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  right: -80px;
  background: rgba(0, 87, 255, 0.14);
  animation: orbDrift1 14s ease-in-out infinite;
}
.rn-hero-orb-2 {
  width: 350px;
  height: 350px;
  bottom: -60px;
  left: -40px;
  background: rgba(0, 87, 255, 0.1);
  animation: orbDrift2 18s ease-in-out infinite;
}
.rn-hero-orb-3 {
  width: 250px;
  height: 250px;
  top: 40%;
  left: 45%;
  background: rgba(102, 160, 255, 0.12);
  animation: orbDrift3 11s ease-in-out infinite;
}
.rn-hero-orbit {
  position: absolute;
  border: 1.5px dashed rgba(0, 87, 255, 0.12);
  border-radius: 50%;
  animation: orbitSpin 30s linear infinite;
}
.rn-hero-orbit-1 {
  width: 500px;
  height: 500px;
  top: -80px;
  right: -100px;
}
.rn-hero-orbit-2 {
  width: 320px;
  height: 320px;
  bottom: 10%;
  left: 5%;
  animation: orbitSpinRev 25s linear infinite;
  border-style: solid;
  border-color: rgba(0, 87, 255, 0.08);
}
.rn-hero-orbit-3 {
  width: 180px;
  height: 180px;
  top: 30%;
  left: 35%;
  animation: ringPulse 4s ease-in-out infinite;
  border: 2px solid rgba(0, 87, 255, 0.1);
  background: transparent;
}
.rn-hero-particles {
  position: absolute;
  inset: 0;
}
.rn-hero-particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue-1);
  opacity: 0;
  animation: particleRise linear infinite;
}
.rn-hero-particles span:nth-child(1) {
  left: 8%;
  animation-duration: 12s;
  animation-delay: 0s;
  width: 3px;
  height: 3px;
}
.rn-hero-particles span:nth-child(2) {
  left: 18%;
  animation-duration: 15s;
  animation-delay: 2s;
}
.rn-hero-particles span:nth-child(3) {
  left: 28%;
  animation-duration: 11s;
  animation-delay: 4s;
  width: 5px;
  height: 5px;
  opacity: 0.3;
}
.rn-hero-particles span:nth-child(4) {
  left: 42%;
  animation-duration: 14s;
  animation-delay: 1s;
}
.rn-hero-particles span:nth-child(5) {
  left: 55%;
  animation-duration: 13s;
  animation-delay: 3s;
  width: 3px;
  height: 3px;
}
.rn-hero-particles span:nth-child(6) {
  left: 68%;
  animation-duration: 16s;
  animation-delay: 5s;
}
.rn-hero-particles span:nth-child(7) {
  left: 78%;
  animation-duration: 10s;
  animation-delay: 0.5s;
  width: 5px;
  height: 5px;
}
.rn-hero-particles span:nth-child(8) {
  left: 88%;
  animation-duration: 12s;
  animation-delay: 2.5s;
}
.rn-hero-particles span:nth-child(9) {
  left: 35%;
  animation-duration: 17s;
  animation-delay: 6s;
  width: 3px;
  height: 3px;
}
.rn-hero-particles span:nth-child(10) {
  left: 62%;
  animation-duration: 11s;
  animation-delay: 4.5s;
}
.rn-hero-col-left {
  animation: heroFadeIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.rn-hero-col-right {
  animation: slideInRight 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s both;
}
.rn-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-3);
  border: 1px solid var(--blue-4);
  color: var(--blue-1);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 0.8px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.rn-hero-h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2.3rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--text-dark);
  margin-bottom: 1.1rem;
}
.rn-hero-h1 .tx-blue {
  color: var(--blue-1);
  position: relative;
}
.rn-hero-h1 .tx-blue::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-1), #66a0ff);
  border-radius: 4px;
  opacity: 0.32;
}
.rn-hero-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 510px;
}
.rn-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.rn-btn-primary {
  background: var(--blue-1);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2rem;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 87, 255, 0.28);
}
.rn-btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 87, 255, 0.35);
  color: #fff;
}
.rn-btn-outline {
  background: transparent;
  color: var(--blue-1);
  border: 2px solid var(--blue-1);
  border-radius: 50px;
  padding: 0.75rem 1.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all 0.2s;
  text-decoration: none;
}
.rn-btn-outline:hover {
  background: var(--blue-3);
  transform: translateY(-2px);
  color: var(--blue-1);
}

.rn-hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.rn-hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rn-hero-stat .ti {
  color: var(--blue-1);
  font-size: 1.25rem;
}
.rn-hero-stat strong {
  font-weight: 800;
  color: var(--text-dark);
}
.rn-hero-stat span {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* Hero social proof strip */
.rn-hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(0, 87, 255, 0.1);
}
.rn-avatar-stack {
  display: flex;
}
.rn-avatar-stack img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  margin-left: -10px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 87, 255, 0.12);
}
.rn-avatar-stack img:first-child {
  margin-left: 0;
}
.rn-hero-proof-text {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.rn-hero-proof-text strong {
  color: var(--text-dark);
  font-weight: 700;
}
.rn-hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
}
.rn-hero-rating .stars {
  color: #fbbf24;
  letter-spacing: 1px;
}

/* Floating live badge */
.rn-live-badge {
  position: absolute;
  top: -18px;
  left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: anim-float 6s ease-in-out infinite;
}
.rn-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #26de81;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
.rn-live-badge-text {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}
.rn-live-badge-text span {
  display: block;
  font-weight: 500;
  color: var(--text-light);
  font-size: 0.68rem;
}
.rn-float-stat {
  position: absolute;
  bottom: -16px;
  right: -14px;
  background: linear-gradient(135deg, var(--blue-1), var(--blue-deep));
  color: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 30px rgba(0, 87, 255, 0.35);
  z-index: 3;
  animation: anim-float-rev 7s ease-in-out infinite;
  text-align: center;
}
.rn-float-stat .num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}
.rn-float-stat .lbl {
  font-size: 0.65rem;
  opacity: 0.85;
  margin-top: 2px;
  font-weight: 500;
}
.rn-login-wrap {
  position: relative;
  padding: 28px 20px 28px 12px;
}

/* Premium login card */
.rn-login-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-md), 0 0 0 1px var(--border);
  padding: 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  animation: cardPulse 5s ease-in-out infinite;
}
@keyframes cardPulse {
  0%,
  100% {
    box-shadow: var(--shadow-md), 0 0 0 1px var(--border);
  }
  50% {
    box-shadow: var(--shadow-md), 0 0 0 3px rgba(0, 87, 255, 0.14);
  }
}
.rn-login-inner {
  padding: 2rem 2rem 1.6rem;
}
.rn-login-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}
.rn-login-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-3), var(--blue-pale));
  border: 1px solid var(--blue-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--blue-1);
  flex-shrink: 0;
}
.rn-login-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}
.rn-login-sub {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}
.rn-login-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.3rem;
}
.rn-login-perk {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-1);
  background: var(--blue-pale);
  border: 1px solid var(--blue-4);
  border-radius: 50px;
  padding: 4px 11px;
}
.rn-login-perk .ti {
  font-size: 0.75rem;
}
.rn-form-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rn-form-section-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.rn-form-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 5px;
  display: block;
}
.rn-input-wrap {
  position: relative;
}
.rn-input-wrap .ti-field,
.input-icon-wrap .input-prefix-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1rem;
  pointer-events: none;
  transition: color 0.2s;
}
.input-icon-wrap {
  position: relative;
}
.rn-form-control,
.input-icon-wrap .form-control {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 1rem 0.65rem 2.6rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--card-bg);
  width: 100%;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
}
.rn-form-control:focus,
.input-icon-wrap .form-control:focus {
  border-color: var(--blue-1);
  box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.12);
  background: #fff;
}
.rn-input-wrap:focus-within .ti-field,
.input-icon-wrap:focus-within .input-prefix-icon {
  color: var(--blue-1);
}
.rn-form-group {
  margin-bottom: 1rem;
  position: relative;
}
.rn-form-group.mb-3 {
  margin-bottom: 1rem !important;
}
.rn-form-alert {
  padding: 0.55rem 0.85rem;
  font-size: 0.82rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  border: none;
}
.rn-form-alert-danger {
  background: #fee2e2;
  color: #991b1b;
}
.rn-form-alert-success {
  background: #d1fae5;
  color: #065f46;
}
.rn-forgot {
  font-size: 0.76rem;
  color: var(--blue-1);
  font-weight: 600;
  text-decoration: none;
}
.rn-forgot:hover {
  text-decoration: underline;
}
.rn-checkbox-label {
  font-size: 0.84rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  margin-bottom: 1.2rem;
}
.rn-checkbox-label input {
  accent-color: var(--blue-1);
  width: 15px;
  height: 15px;
}
.rn-btn-signin,
.btn-login {
  background: var(--blue-1);
  border: none;
  border-radius: 50px;
  padding: 0.72rem 1.7rem;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.rn-btn-signin:hover,
.btn-login:hover {
  background: var(--blue-deep);
  box-shadow: 0 4px 20px rgba(0, 87, 255, 0.35);
  transform: translateY(-1px);
  color: #fff;
}
.rn-signup-row {
  text-align: center;
  margin-top: 1rem;
}
.rn-signup-text {
  font-size: 0.84rem;
  color: var(--text-light);
}
.rn-signup-text a {
  color: var(--blue-1);
  font-weight: 700;
  text-decoration: none;
}
.rn-signup-text a:hover {
  text-decoration: underline;
}
.rn-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 1.1rem 0;
  color: var(--text-light);
  font-size: 0.76rem;
}
.rn-divider::before,
.rn-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.rn-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  width: 100%;
}
.rn-google-btn:hover {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--blue-4);
  color: var(--text-dark);
}
.rn-google-btn svg {
  width: 17px;
  height: 17px;
}
.rn-form-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 1rem 2rem;
  background: var(--blue-pale);
  border-top: 1px solid var(--border);
}
.rn-form-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-mid);
}
.rn-form-trust-item .ti {
  color: var(--blue-1);
  font-size: 0.85rem;
}

/* MARQUEE BELT */
.rn-marquee-bar {
  background: #0d1b3e;
  padding: 14px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.rn-marquee-wrapper {
  display: inline-flex;
  white-space: nowrap;
  animation: marqueeScroll 22s linear infinite;
}
.rn-marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
}
.rn-marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.rn-marquee-item svg {
  fill: #0057ff;
  width: 20px;
  height: 20px;
} /* Scaled up SVG */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.rn-section {
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}
.rn-section > .container {
  position: relative;
  z-index: 1;
}
.rn-section-bg-pale {
  background: var(--blue-pale);
}
.rn-section-bg-white {
  background: var(--white);
}
.rn-section-bg-dark {
  background: linear-gradient(135deg, var(--blue-1) 0%, #0041d4 100%);
  color: #fff;
}
.rn-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.rn-section-header .rn-section-sub {
  margin-left: auto;
  margin-right: auto;
}
.rn-section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  max-width: 200px;
  margin: 1rem auto 0;
}
.rn-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue-1);
  background: var(--blue-3);
  border: 1px solid var(--blue-4);
  border-radius: 50px;
  padding: 4px 14px;
  margin-bottom: 0.8rem;
}
.rn-section-bg-dark .rn-label {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.25);
  color: #fff;
}
.rn-section-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}
.rn-section-bg-dark .rn-section-title {
  color: #fff;
}
.rn-section-sub {
  font-size: 0.97rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 560px;
}
.rn-section-bg-dark .rn-section-sub {
  color: rgba(255, 255, 255, 0.8);
}
.tx-blue {
  color: var(--blue-1);
}

.rn-panel-visual {
  background: url("https://storage.perfectcdn.com/oz099h/4ksd9m388h2qy39l.png")
    center/cover no-repeat,
    var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-md), 0 0 0 1px var(--border);
  overflow: hidden;
  animation: floatY 4s ease-in-out infinite;
  position: relative;
}
.rn-overview-checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}
.rn-overview-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 10px;
}
.rn-overview-checklist .ti {
  color: var(--blue-1);
  background: var(--blue-3);
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.rn-panel-topbar {
  background: rgba(241, 244, 250, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(221, 230, 245, 0.5);
  padding: 0.7rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.rn-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.rn-dot-r {
  background: #fc5c65;
}
.rn-dot-y {
  background: #fed330;
}
.rn-dot-g {
  background: #26de81;
}
.rn-panel-body {
  padding: 1.3rem;
}
.rn-panel-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  background: rgba(240, 245, 255, 0.9);
  backdrop-filter: blur(4px);
}
.rn-panel-row .ti {
  color: var(--blue-1);
  font-size: 1.05rem;
}
.rn-panel-row-lbl {
  font-size: 0.81rem;
  font-weight: 600;
  color: var(--text-mid);
  flex: 1;
}
.rn-panel-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
  background: rgba(209, 250, 229, 0.9);
  color: #065f46;
}
.rn-panel-badge.warn {
  background: rgba(254, 243, 199, 0.9);
  color: #92400e;
}
.rn-panel-metrics {
  display: flex;
  gap: 10px;
  margin-top: 0.8rem;
}
.rn-metric {
  flex: 1;
  background: rgba(232, 240, 255, 0.9);
  backdrop-filter: blur(4px);
  border-radius: 10px;
  padding: 0.75rem;
  text-align: center;
}
.rn-metric .mv {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--blue-1);
  line-height: 1;
}
.rn-metric .ml {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 3px;
}

.rn-stat-box {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}
.rn-stat-box .rn-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  font-size: 1.3rem;
  color: #fff;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.rn-stat-box .rn-stat-num {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  margin-bottom: 0.3rem;
  animation: countGlow 4s ease-in-out infinite;
}
.rn-stat-box .rn-stat-lbl {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}
.rn-stat-divider {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.discover-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-dark);
  max-width: 935px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.discover-heading span {
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.discover-stat-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 15px;
}
/* Circles scaled to 121px for 110% size */
.discover-circle {
  width: 121px;
  height: 121px;
  border-radius: 50%;
  border: 1.5px dashed var(--blue-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}
.discover-circle::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--blue-3);
  animation: circleSpin 20s linear infinite;
}
.discover-stat-wrap:hover .discover-circle {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.discover-circle-val {
  font-size: 2rem;
  font-weight: 800;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1;
  color: var(--text-dark);
}
.discover-circle-icon {
  color: var(--blue-1);
  font-size: 1.1rem;
  margin-top: 5px;
}
.discover-stat-text {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 198px;
}

.discover-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 880px;
  margin: 3.5rem auto;
  text-align: center;
}

.discover-card {
  border-radius: var(--radius);
  padding: 2.5rem 1.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.discover-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-4);
}
.discover-card-1,
.discover-card-2,
.discover-card-3 {
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.discover-card-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--blue-pale);
  border: 1px solid var(--blue-4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  transition: background 0.3s;
}
.discover-card:hover .discover-card-icon-wrap {
  background: var(--blue-3);
}
.discover-card-icon {
  font-size: 1.8rem;
  color: var(--blue-1);
  display: inline-block;
  margin: 0;
}
.discover-card h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}
.discover-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.rn-feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  height: 100%;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.rn-feature-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 87, 255, 0.06) 0%,
    transparent 70%
  );
  transition: transform 0.3s;
}
.rn-feature-card::after {
  content: attr(data-num);
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--blue-3);
  line-height: 1;
  transition: color 0.25s;
}
.rn-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-4);
}
.rn-feature-card:hover::before {
  transform: scale(2);
}
.rn-feature-card:hover::after {
  color: var(--blue-4);
}
.rn-feature-icon {
  width: 57px;
  height: 57px;
  background: linear-gradient(135deg, var(--blue-3), var(--blue-pale));
  border: 1px solid var(--blue-4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
  color: var(--blue-1);
}
.rn-feature-card h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.rn-feature-card p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.65;
  margin: 0;
}

.rn-service-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0.6rem 1.35rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-mid);
  margin: 5px;
  transition: all 0.25s;
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.rn-service-pill .ti {
  color: var(--blue-1);
  font-size: 1rem;
  background: var(--blue-pale);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}
.rn-service-pill:hover {
  border-color: var(--blue-1);
  color: var(--blue-1);
  background: var(--blue-3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.rn-service-pill:hover .ti {
  background: var(--white);
}
.rn-services-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

/* White-label mockup */
.rn-wl-mockup {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  animation: floatY 5s ease-in-out infinite;
}
.rn-wl-header {
  border-bottom: 2px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rn-wl-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rn-wl-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--blue-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.7rem;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.rn-wl-logo-text {
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.rn-wl-tag {
  font-size: 0.8rem;
  color: var(--text-light);
  background: var(--blue-pale);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 600;
}
.rn-wl-bar {
  height: 12px;
  background: var(--blue-3);
  border-radius: 6px;
  margin-bottom: 15px;
}
.rn-wl-bar-sm {
  width: 40%;
}
.rn-wl-bar-md {
  width: 60%;
  margin-bottom: 25px;
}
.rn-wl-metrics {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.rn-wl-metric {
  flex: 1;
  height: 80px;
  background: linear-gradient(180deg, var(--blue-pale), var(--card-bg));
  border-radius: 10px;
  border: 1px solid var(--border);
}
.rn-wl-chart {
  height: 150px;
  background: linear-gradient(180deg, var(--blue-pale) 0%, transparent 100%);
  border: 1px dashed var(--blue-4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-1);
  font-weight: 600;
  font-size: 0.9rem;
}
.rn-checklist {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}
.rn-checklist li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.rn-checklist .ti {
  color: var(--blue-1);
  background: var(--blue-3);
  padding: 5px;
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.rn-reseller-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  height: 100%;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.rn-reseller-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.3);
}
.rn-reseller-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #fff;
  margin: 0 auto 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s;
}
.rn-reseller-card:hover .rn-reseller-icon {
  background: rgba(255, 255, 255, 0.22);
}

/* Social proof feature rows */
.rn-sp-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.25s;
}
.rn-sp-feature:hover {
  border-color: var(--blue-4);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.rn-sp-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-3);
  color: var(--blue-1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.rn-sp-feature h6 {
  margin: 0;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.92rem;
}
.rn-sp-feature span {
  font-size: 0.82rem;
  color: var(--text-light);
}
.rn-reseller-card h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}
.rn-reseller-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.68;
  margin: 0;
}

.rn-payment-section {
  background-color: transparent !important;
}
.rn-payment-bg {
  position: absolute;
  inset: 0;
  background: url("https://storage.perfectcdn.com/oz099h/kus1sud9gm6w0igq.webp");
  background-size: cover;
  background-position: center;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 25%,
    black 75%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 25%,
    black 75%,
    transparent 100%
  );
  z-index: 0;
  pointer-events: none;
}
.rn-blur-bg {
  position: absolute;
  inset: 0;
  background: url("https://storage.perfectcdn.com/oz099h/n7sbi8mg2rlkwmpr.webp")
    center center no-repeat;
  background-size: cover;
  opacity: 0.6;
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 15%,
    black 85%,
    transparent 100%
  );
  z-index: 0;
  pointer-events: none;
}

.rn-paymentFlex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  max-width: 770px;
  margin: auto;
}
.rn-pay-img {
  height: 94px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  background: var(--white);
  object-fit: contain;
  padding: 11px;
  transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid var(--border);
}
.rn-pay-img:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: var(--shadow-md);
}
.rn-payment-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.rn-payment-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 6px 16px;
  box-shadow: var(--shadow-sm);
}
.rn-payment-trust .ti {
  color: var(--blue-1);
}

.rn-media-box {
  background: linear-gradient(135deg, var(--blue-1) 0%, #0041d4 100%);
  border-radius: 24px;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 87, 255, 0.15);
}
.rn-media-box-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.rn-media-box-bg-shapes .blob1 {
  position: absolute;
  width: 400px;
  height: 400px;
  top: -150px;
  right: -100px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
}
.rn-media-box-bg-shapes .dots1 {
  position: absolute;
  width: 200px;
  height: 200px;
  bottom: 20px;
  left: 5%;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.15) 1px,
    transparent 1px
  );
  background-size: 20px 20px;
}

.rn-lgootop-wrap {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.rn-lgootop-wrap h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.rn-lgootop-wrap h2 span {
  color: #ffd04e;
}
.rn-lgootop-wrap p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  max-width: 760px;
  margin: 0 auto 2rem;
}
.rn-logoGrp {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.rn-logo-pill {
  background: #fff;
  border-radius: 12px;
  padding: 0.6rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
  min-width: 154px;
  height: 55px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.rn-logo-pill img {
  max-height: 33px;
  max-width: 132px;
  object-fit: contain;
}
.rn-logo-pill:hover {
  transform: translateY(-3px);
}

/* Embla carousel */
.rn-embla {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.rn-embla__container {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.rn-embla__container::-webkit-scrollbar {
  display: none;
}
.rn-embla__slide {
  flex: 0 0 calc(33.333% - 12px);
  min-width: 0;
}
@media (max-width: 991px) {
  .rn-embla__slide {
    flex: 0 0 calc(50% - 9px);
  }
}
@media (max-width: 640px) {
  .rn-embla__slide {
    flex: 0 0 calc(90% - 9px);
  }
}

.rn-socl-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.2s, transform 0.2s;
  height: 100%;
}
.rn-socl-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}
.rn-socl-card-flag {
  font-size: 2.2rem;
  padding: 1.5rem 1.5rem 0;
  display: block;
}
.rn-socl-card-flag .fi {
  border-radius: 4px;
}
.rn-socl-card-body {
  padding: 1rem 1.5rem 1.5rem;
}
.rn-socl-card-body h5 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.rn-socl-card-body p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
  margin: 0;
}
.rn-carousel-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1.8rem;
  position: relative;
  z-index: 1;
}
.rn-carousel-btn {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background 0.2s;
}
.rn-carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Process Auto-Tabs */
.rn-process-tabs {
  border: none;
}
.rn-process-tabs .nav-item {
  border: none;
}
.rn-step-nav-link {
  background: transparent;
  border: none;
  display: block;
  width: 100%;
  text-align: left;
  padding: 0;
  margin-bottom: 0.6rem;
  text-decoration: none;
  color: inherit;
}
.rn-step-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: var(--white);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.rn-step-nav-link.active .rn-step-card,
.rn-step-nav-link:focus .rn-step-card {
  border-color: var(--blue-1);
  background: var(--blue-3);
  box-shadow: var(--shadow-sm);
}
.rn-step-num-badge {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--border);
  min-width: 57px;
  line-height: 1;
  transition: color 0.25s;
}
.rn-step-nav-link.active .rn-step-num-badge {
  color: var(--blue-1);
}
.rn-step-card-text h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.rn-step-card-text p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}
.rn-step-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--blue-1);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform linear;
  margin: 0;
}
.rn-step-nav-link.active .rn-step-progress-bar {
  transform: scaleX(1);
}
.rn-step-pane-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.rn-step-pane-content::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 87, 255, 0.06) 0%,
    transparent 70%
  );
}
.rn-step-pane-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-3), var(--blue-pale));
  border: 1px solid var(--blue-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blue-1);
  margin-bottom: 1.2rem;
}
.rn-step-sub {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue-1);
  margin-bottom: 0.6rem;
}
.rn-step-pane-content h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.rn-step-pane-content p {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

/* Testimonials */
.rn-testi-embla {
  overflow: hidden;
  padding: 1rem 0;
  margin: -1rem 0;
}
.rn-testi-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}
.rn-testi-container::-webkit-scrollbar {
  display: none;
}
.rn-testi-slide {
  flex: 0 0 calc(33.333% - 14px);
  scroll-snap-align: start;
  min-width: 0;
}
@media (max-width: 991px) {
  .rn-testi-slide {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 768px) {
  .rn-testi-slide {
    flex: 0 0 calc(100% - 10px);
    margin-left: 5px;
    margin-right: 5px;
  }
}
.rn-testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  height: 100%;
  transition: box-shadow 0.25s, border-color 0.25s, transform 0.25s;
  position: relative;
}
.rn-testi-card::before {
  content: '"';
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: var(--blue-3);
  line-height: 1;
  pointer-events: none;
}
.rn-testi-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--blue-4);
  transform: translateY(-4px);
}
.rn-testi-stars {
  color: #fbbf24;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  letter-spacing: 2px;
}
.rn-testi-summary {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding: 1.2rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.rn-testi-summary-item {
  text-align: center;
}
.rn-testi-summary-item .val {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue-1);
  line-height: 1;
}
.rn-testi-summary-item .lbl {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 600;
  margin-top: 3px;
}
.rn-testi-text {
  font-size: 0.91rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 1.2rem;
  font-style: italic;
}
.rn-testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rn-testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue-3);
  overflow: hidden;
  border: 2px solid var(--blue-3);
}
.rn-testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rn-testi-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--text-dark);
}
.rn-testi-role {
  font-size: 0.77rem;
  color: var(--text-light);
}

/* FAQ */
.rn-faq-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.rn-accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: 0.65rem;
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.25s;
}
.rn-accordion-item:hover {
  box-shadow: var(--shadow-sm);
}
.rn-accordion-btn {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.93rem;
  color: var(--text-dark);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1.1rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}
.rn-accordion-btn .ti {
  transition: transform 0.3s ease;
  font-size: 1rem;
  color: var(--text-light);
}
.rn-accordion-btn[aria-expanded="true"] {
  color: var(--blue-1);
  background: var(--blue-3);
}
.rn-accordion-btn[aria-expanded="true"] .ti {
  transform: rotate(45deg);
  color: var(--blue-1);
}
.rn-accordion-collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.rn-accordion-collapse.open {
  grid-template-rows: 1fr;
}
.rn-accordion-collapse > div {
  overflow: hidden;
  opacity: 0;
  padding-bottom: 0;
  transition: opacity 0.35s ease, padding 0.35s ease;
}
.rn-accordion-collapse.open > div {
  opacity: 1;
  padding-bottom: 1.2rem;
}
.rn-accordion-body {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.72;
  padding: 0 1.3rem;
}

/* CTA */
.rn-cta-band {
  background: linear-gradient(135deg, var(--blue-1) 0%, #0041d4 100%);
  color: #fff;
  padding: 5.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.rn-cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: ctaOrb 10s ease-in-out infinite;
  pointer-events: none;
}
.rn-cta-orb-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  background: rgba(255, 255, 255, 0.08);
}
.rn-cta-orb-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: -60px;
  background: rgba(255, 208, 78, 0.1);
  animation-delay: 3s;
}
.rn-cta-band h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.rn-cta-band p {
  font-size: 1rem;
  opacity: 0.82;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.rn-cta-pills {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.rn-cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 5px 14px;
  backdrop-filter: blur(8px);
}
.rn-btn-white {
  background: #fff;
  color: var(--blue-1);
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2.2rem;
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.rn-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
  color: var(--blue-1);
}
.rn-btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 50px;
  padding: 0.75rem 1.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.rn-btn-white-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* Footer */
.rn-footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 2rem;
  position: relative;
}
.rn-footer-newsletter {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.rn-footer-newsletter h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.rn-footer-newsletter p {
  font-size: 0.8rem;
  margin-bottom: 0.8rem;
}
.rn-footer-input-wrap {
  display: flex;
  gap: 8px;
}
.rn-footer-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 0.55rem 1rem;
  color: #fff;
  font-size: 0.82rem;
  outline: none;
  transition: border 0.2s;
}
.rn-footer-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.rn-footer-input:focus {
  border-color: var(--blue-2);
}
.rn-footer-sub-btn {
  background: var(--blue-1);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.55rem 1.2rem;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.rn-footer-sub-btn:hover {
  background: var(--blue-2);
}
.rn-footer-brand {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}
.rn-footer-brand span {
  color: var(--blue-2);
}
.rn-footer p {
  font-size: 0.85rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.5);
}
.rn-footer-title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.rn-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rn-footer-links li {
  margin-bottom: 0.5rem;
}
.rn-footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.84rem;
  text-decoration: none;
  transition: color 0.2s;
}
.rn-footer-links a:hover {
  color: var(--blue-2);
}
.rn-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.rn-footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
}
.rn-social-links {
  display: flex;
  gap: 9px;
}
.rn-social-link {
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.rn-social-link:hover {
  background: var(--blue-1);
  color: #fff;
}

/* Animations Trigger */
@keyframes blurFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 87, 255, 0.2);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
    box-shadow: 0 0 0 rgba(0, 87, 255, 0);
  }
}
.rn-fade-up {
  opacity: 0;
  will-change: transform, opacity, filter;
}
.rn-fade-up.visible {
  animation: blurFadeUp 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--fade-delay, 0ms);
}

@media (max-width: 991px) {
  .rn-stat-divider {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .rn-live-badge {
    left: 10px;
    top: -14px;
  }
  .rn-float-stat {
    right: 10px;
    bottom: -14px;
  }
  .rn-navbar .navbar-collapse {
    padding: 1rem 0 0.5rem;
    border-top: 1px solid var(--border);
    margin-top: 0.75rem;
  }
  .rn-navbar .d-flex.mx-auto {
    flex-direction: column;
    align-items: flex-start !important;
    width: 100%;
    gap: 0 !important;
  }
  .rn-navbar .d-flex.gap-2 {
    width: 100%;
    flex-direction: column;
    gap: 0.5rem !important;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
  }
  .rn-nav-link {
    width: 100%;
    padding: 0.65rem 0.5rem !important;
  }
  .rn-nav-cta {
    width: 100%;
    text-align: center;
    padding: 0.7rem 1rem !important;
  }
  .rn-hero-col-right {
    margin-top: 0.5rem;
  }
  .rn-process-tabs {
    margin-bottom: 1.5rem;
  }
  .rn-step-pane-content {
    padding: 1.75rem;
  }
  .rn-media-box {
    padding: 2.5rem 1.25rem;
  }
  .rn-lgootop-wrap h2 br {
    display: none;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 100%;
  }
  body {
    overflow-x: hidden;
  }
  .container {
    padding-left: 1.15rem;
    padding-right: 1.15rem;
    max-width: 100%;
  }

  /* Hero */
  .rn-hero {
    padding: 2.5rem 0 2rem;
  }
  .rn-hero-h1 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
    letter-spacing: -0.8px;
  }
  .rn-hero-sub {
    font-size: 0.95rem;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }
  .rn-hero-badge {
    font-size: 0.68rem;
    padding: 4px 12px;
  }
  .rn-btns {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1.5rem;
  }
  .rn-btn-primary,
  .rn-btn-outline {
    width: 100%;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  .rn-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  .rn-hero-stat {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
  }
  .rn-hero-stat .ti {
    font-size: 1.1rem;
  }
  .rn-hero-stat strong {
    font-size: 0.85rem;
  }
  .rn-hero-stat span {
    font-size: 0.68rem;
    line-height: 1.3;
  }
  .rn-hero-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 1.2rem;
  }
  .rn-hero-proof-text {
    font-size: 0.78rem;
  }
  .rn-live-badge,
  .rn-float-stat {
    display: none;
  }
  .rn-login-wrap {
    padding: 0;
    margin-top: 0.5rem;
  }
  .rn-login-card {
    border-radius: 18px;
    animation: none;
  }
  .rn-login-inner {
    padding: 1.35rem 1.15rem 1.25rem;
  }
  .rn-login-header {
    gap: 10px;
    margin-bottom: 0.9rem;
  }
  .rn-login-icon {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
    border-radius: 12px;
  }
  .rn-login-title {
    font-size: 1.15rem;
  }
  .rn-login-sub {
    font-size: 0.78rem;
    line-height: 1.55;
  }
  .rn-login-perks {
    gap: 6px;
    margin-bottom: 1rem;
  }
  .rn-login-perk {
    font-size: 0.68rem;
    padding: 3px 9px;
  }
  .rn-form-trust {
    padding: 0.85rem 1rem;
    gap: 10px;
  }
  .rn-form-trust-item {
    font-size: 0.65rem;
  }
  .input-icon-wrap .form-control,
  .rn-form-control {
    font-size: 16px;
    padding: 0.7rem 1rem 0.7rem 2.5rem;
  }
  .btn-login,
  .rn-btn-signin {
    padding: 0.78rem 1.5rem;
    font-size: 0.92rem;
    min-height: 48px;
  }

  /* Sections */
  .rn-section {
    padding: 3rem 0;
  }
  .rn-section-header {
    margin-bottom: 2rem;
  }
  .rn-section-title {
    font-size: clamp(1.55rem, 6vw, 2rem);
    letter-spacing: -0.5px;
  }
  .rn-section-sub {
    font-size: 0.9rem;
    max-width: 100%;
  }
  .discover-heading {
    font-size: 1.55rem;
    margin-bottom: 2rem;
    padding: 0 0.25rem;
  }
  .discover-desc {
    font-size: 0.85rem;
    margin: 2rem auto;
    padding: 0 0.25rem;
  }
  .discover-circle {
    width: 100px;
    height: 100px;
  }
  .discover-circle-val {
    font-size: 1.65rem;
  }
  .discover-card {
    padding: 1.75rem 1.25rem;
  }

  /* Dashboard mockup */
  .rn-panel-visual {
    animation: none;
    border-radius: 14px;
  }
  .rn-panel-body {
    padding: 1rem;
  }
  .rn-panel-row {
    padding: 0.55rem 0.7rem;
    gap: 8px;
  }
  .rn-panel-row-lbl {
    font-size: 0.72rem;
  }
  .rn-panel-badge {
    font-size: 0.62rem;
    padding: 2px 7px;
    white-space: nowrap;
  }
  .rn-panel-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .rn-metric .mv {
    font-size: 1.15rem;
  }

  /* Stats bar */
  .rn-stat-box {
    padding: 1.25rem 0.75rem;
  }
  .rn-stat-box .rn-stat-num {
    font-size: 2rem;
  }
  .rn-stat-box .rn-stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }
  .rn-stat-box .rn-stat-lbl {
    font-size: 0.78rem;
  }

  /* Features & cards */
  .rn-feature-card {
    padding: 1.5rem 1.25rem;
  }
  .rn-feature-card::after {
    font-size: 2rem;
    top: 1rem;
    right: 1rem;
  }
  .rn-feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .rn-services-box {
    padding: 1.25rem;
  }
  .rn-service-pill {
    width: 100%;
    justify-content: flex-start;
    margin: 4px 0;
    padding: 0.55rem 1rem;
    font-size: 0.82rem;
  }
  .rn-wl-mockup {
    padding: 1.25rem;
    animation: none;
  }
  .rn-wl-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .rn-wl-tag {
    font-size: 0.72rem;
  }

  /* Process */
  .rn-step-card {
    padding: 1rem 1.1rem;
  }
  .rn-step-num-badge {
    font-size: 1.35rem;
    min-width: 44px;
  }
  .rn-step-pane-content {
    padding: 1.5rem 1.25rem;
  }
  .rn-step-pane-content h2 {
    font-size: 1.45rem;
  }
  .rn-step-pane-icon {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  /* Social / Instagram */
  .rn-sp-feature {
    padding: 12px 14px;
  }
  .rn-sp-feature:hover {
    transform: none;
  }
  .rn-ig-embed {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 480px;
    height: min(520px, 75vw) !important;
  }

  /* Payments */
  .rn-pay-img {
    height: 72px;
    padding: 8px;
    border-radius: 40px;
  }
  .rn-payment-trust {
    gap: 8px;
  }
  .rn-payment-trust span {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  /* Media box */
  .rn-media-box {
    padding: 2rem 1rem;
    border-radius: 18px;
  }
  .rn-logo-pill {
    min-width: 120px;
    height: 48px;
    padding: 0.5rem 0.9rem;
  }
  .rn-logo-pill img {
    max-height: 28px;
  }
  .rn-embla__slide {
    flex: 0 0 85%;
  }

  /* Testimonials */
  .rn-testi-summary {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 1.25rem;
    max-width: 100%;
  }
  .rn-testi-slide {
    flex: 0 0 calc(100% - 10px);
  }
  .rn-testi-card {
    padding: 1.4rem;
  }
  .rn-testi-card::before {
    font-size: 3rem;
    top: 8px;
    right: 14px;
  }

  /* FAQ */
  .rn-faq-wrap {
    padding: 1rem;
  }
  .rn-accordion-btn {
    padding: 0.95rem 1rem;
    font-size: 0.88rem;
  }
  .rn-accordion-body {
    font-size: 0.84rem;
    padding: 0 1rem;
  }

  /* CTA */
  .rn-cta-band {
    padding: 3.5rem 0;
  }
  .rn-cta-band h2 {
    font-size: clamp(1.65rem, 6vw, 2.2rem);
  }
  .rn-cta-pills {
    gap: 6px;
  }
  .rn-cta-pill {
    font-size: 0.72rem;
    padding: 4px 11px;
  }
  .rn-btn-white,
  .rn-btn-white-outline {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .rn-footer {
    padding: 3rem 0 1.5rem;
  }
  .rn-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .rn-footer-input-wrap {
    flex-direction: column;
  }
  .rn-footer-sub-btn {
    width: 100%;
    padding: 0.7rem;
  }

  /* Marquee */
  .rn-marquee-item {
    font-size: 0.85rem;
    gap: 8px;
  }
  .rn-marquee-item svg {
    width: 16px;
    height: 16px;
  }

  /* Reduce bg noise on mobile */
  .rn-hero-orbit-1,
  .rn-hero-orbit-2,
  .rn-hero-orbit-3 {
    display: none;
  }
  .rn-hero-orb-1 {
    width: 280px;
    height: 280px;
  }
  .rn-hero-orb-2 {
    width: 200px;
    height: 200px;
  }
  .rn-shapes .sh-blob {
    opacity: 0.35 !important;
  }
  .rn-panel-row-lbl {
    word-break: break-word;
  }
  .rn-hero .row {
    --bs-gutter-y: 1.25rem;
  }
}

@media (max-width: 480px) {
  .rn-hero-stats {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .rn-hero-stat {
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.65rem 0.85rem;
    box-shadow: var(--shadow-sm);
  }
  .rn-hero-stat .ti {
    font-size: 1.2rem;
  }
  .rn-hero-h1 {
    font-size: 1.75rem;
  }
  .rn-login-perks {
    flex-direction: column;
    align-items: flex-start;
  }
  .rn-form-trust {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }
  .rn-stat-box .rn-stat-num {
    font-size: 1.75rem;
  }
  .rn-carousel-btn {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .rn-hero-particles,
  .rn-hero-grid {
    display: none;
  }
  .rn-fade-up {
    opacity: 1;
    filter: none;
    transform: none;
  }
}
footer {
  overflow: hidden;
}
body {
  padding: 0;
}