: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;
  --af-primary: #1a56db;
  --af-primary-hover: #1e40af;
  --af-primary-light: #eff6ff;
  --af-bg-main: #f3f4f6;
  --af-surface: #ffffff;
  --af-border: #e5e7eb;
  --af-text-dark: #111827;
  --af-text-gray: #6b7280;
  --af-success: #10b981;
  --af-success-light: #d1fae5;
  --af-danger: #ef4444;
  --af-radius-xl: 16px;
  --af-radius-lg: 12px;
  --af-radius-md: 8px;
  --af-font: 'Inter', sans-serif;
}

*,
*::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;
}
input.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;
}
span.select2-selection.select2-selection--single.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;
}
textarea.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;
}

/* 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;
}

/* ═══════════════════════════════════════════════════════
PANEL LAYOUT — sidebar + navbar
═══════════════════════════════════════════════════════ */

:root {
  --gp-sidebar-w: 256px;
  --gp-navbar-h: 64px;
}

.gp-layout-wrap {
  background: var(--card-bg);
}

/* ── Sidebar ──────────────────────────────────────── */
.gp-sidebar {
  width: var(--gp-sidebar-w);
  background: #0d6efd;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  transition: transform 0.25s cubic-bezier(.4,0,.2,1);
  overflow: hidden;
  height: 100%;
}

/* subtle top accent stripe */
.gp-sidebar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-1), #66a0ff, var(--blue-1));
  background-size: 200%;
  animation: gp-stripe 4s linear infinite;
}
@keyframes gp-stripe {
  0% { background-position: 0% }
  100% { background-position: 200% }
}

.gp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  height: var(--gp-navbar-h);
  border-bottom: 1px solid #ffffff20;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}
.gp-brand-logo {
  max-height: 38px;
  max-width: 100%;
  object-fit: contain;
}
.gp-brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--blue-1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,87,255,0.25);
}
.gp-brand-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.3px;
  line-height: 1;
}
.gp-brand-text span { color: var(--blue-1); }

.gp-profile {
  margin: 12px 10px;
  padding: 12px;
  background: var(--blue-pale);
  border: 1px solid var(--blue-4);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  overflow: hidden;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.gp-profile:hover {
  background: var(--blue-3);
  border-color: var(--blue-2);
}
.gp-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-1), #66a0ff);
  border: 2px solid var(--blue-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  position: relative;
}
.gp-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  position: absolute; inset: 0;
}
.gp-avatar-status {
  position: absolute;
  bottom: 0; right: 0;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #26de81;
  border: 1.5px solid #fff;
}
.gp-profile-info { flex: 1; min-width: 0; overflow: hidden; }
.gp-profile-name {
  font-size: 0.82rem; font-weight: 700; color: var(--text-dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.gp-profile-bal {
  font-size: 0.72rem; color: var(--blue-1); font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.gp-nav-wrap {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 4px 8px 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--blue-3) transparent;
}
.gp-nav-label {
  font-size: 0.63rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: #fff;
  padding: 12px 8px 4px; display: flex; align-items: center; gap: 8px;
}
.gp-nav-label::after { content: ''; flex: 1; height: 1px; background: #ffffff20; }

.gp-nav-item {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 10px; border-radius: var(--radius-sm);
  color: #ffffff; font-size: 0.83rem; font-weight: 500;
  text-decoration: none; transition: background 0.15s, color 0.15s;
  margin-bottom: 1px; position: relative;
}
.gp-nav-item:hover { background: var(--blue-pale); color: var(--blue-1); }
.gp-nav-item.active { background: var(--blue-3); color: var(--blue-1); font-weight: 600; }
.gp-nav-item.active::before {
  content: ''; position: absolute; left: 0; top: 20%; bottom: 20%;
  width: 3px; border-radius: 0 3px 3px 0; background: var(--blue-1);
}
.gp-nav-icon {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.gp-nav-item:hover .gp-nav-icon, .gp-nav-item.active .gp-nav-icon {
  background: rgba(0,87,255,0.08); color: var(--blue-1);
}
.gp-nav-text { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Sidebar footer */
.gp-sidebar-footer {
  padding: 10px; border-top: 1px solid #ffffff20; flex-shrink: 0;
}
.gp-sidebar-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: var(--radius-sm);
  background: var(--card-bg); border: 1px solid var(--border);
  color: var(--text-mid); font-size: 0.78rem; font-weight: 600;
  cursor: pointer; width: 100%; transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.gp-sidebar-btn:hover { background: var(--blue-pale); color: var(--blue-1); border-color: var(--blue-2); }
.gp-sidebar-btn .ti { font-size: 1.1rem; color: var(--blue-1); }

/* ══════════════════════════════════════════
NAVBAR (authenticated panel state)
══════════════════════════════════════════ */
.gp-navbar {
  position: fixed;
  top: 0;
  left: var(--gp-sidebar-w);
  right: 0;
  height: var(--gp-navbar-h);
  z-index: 190;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 12px;
  transition: box-shadow 0.3s;
}
.gp-navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,87,255,0.07);
  border-bottom-color: transparent;
}

.gp-hamburger {
  display: none; align-items: center; justify-content: center;
  width: 34px; height: 34px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); background: none; color: var(--text-mid);
  font-size: 1.1rem; cursor: pointer; flex-shrink: 0;
}

.gp-mobile-brand {
  display: none; align-items: center; gap: 6px; text-decoration: none;
}
.gp-mobile-brand img { max-height: 28px; max-width: 120px; object-fit: contain; }
.gp-mobile-brand span { font-weight: 800; font-family: 'Plus Jakarta Sans'; color: var(--text-dark); font-size: 1.1rem; }
.gp-mobile-brand span b { color: var(--blue-1); font-weight: 800; }

.gp-page-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem; font-weight: 700; color: var(--text-dark);
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
}
.gp-page-title .ti { color: var(--blue-1); font-size: 1.1rem; }

.gp-nav-spacer { flex: 1; }

/* ── NATIVE CURRENCY DROPDOWN STYLING ── */
/* Strictly styling the user's exact provided HTML classes */
.gp-native-currency {
  margin: 0; padding: 0; list-style: none;
  display: flex; align-items: center;
}
.gp-native-currency .dropdown-currencies {
  position: relative;
}
.gp-native-currency .dropdown-toggle {
  display: flex; align-items: center; gap: 8px;
  height: 38px; padding: 0 14px; background: var(--blue-pale);
  border: 1px solid var(--blue-4); border-radius: 50px;
  cursor: pointer; text-decoration: none; color: var(--blue-1);
  transition: all 0.2s; outline: none;
}
.gp-native-currency .dropdown-toggle:hover {
  border-color: var(--blue-1); box-shadow: 0 0 0 3px rgba(0,87,255,0.08); background: #fff;
}
/* This targets the user's exact <span class="badge"> */
.gp-native-currency .badge {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem; font-weight: 800; color: var(--blue-1);
  background: transparent; padding: 0; border: none;
}
/* This targets the user's exact <span class="caret"> */
.gp-native-currency .caret {
  display: inline-block; width: 0; height: 0;
  vertical-align: middle;
  border-top: 4px solid var(--blue-1); border-right: 4px solid transparent; border-left: 4px solid transparent;
  margin-left: 2px;
}
/* Target the dropdown menu explicitly */
.gp-native-currency .dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1); padding: 6px; list-style: none; min-width: 140px;
  z-index: 1000; margin: 0; animation: gp-menu-in 0.15s ease;
}
.gp-native-currency .dropdown-menu.show {
  display: block;
}
.gp-native-currency .dropdown-menu li { margin: 0; padding: 0; }
.gp-native-currency .dropdown-menu li a {
  display: block; padding: 8px 12px; color: var(--text-dark);
  text-decoration: none; border-radius: 6px; font-weight: 600; font-size: 0.82rem;
  transition: background 0.15s, color 0.15s;
}
.gp-native-currency .dropdown-menu li a:hover {
  background: var(--blue-pale); color: var(--blue-1);
}

/* User dropdown */
.gp-user-wrap { position: relative; flex-shrink: 0; }
.gp-user-trigger {
  display: flex; align-items: center; gap: 7px;
  height: 38px; padding: 0 12px 0 4px; background: var(--card-bg);
  border: 1px solid var(--border); border-radius: 50px;
  cursor: pointer; transition: all 0.2s;
}
.gp-user-trigger:hover { border-color: var(--blue-1); box-shadow: 0 0 0 3px rgba(0,87,255,0.08); }
.gp-navbar-avatar {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-1), #66a0ff);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.7rem; font-weight: 800; color: #fff;
  overflow: hidden; flex-shrink: 0; position: relative;
}
.gp-navbar-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; position: absolute; inset: 0; }
.gp-user-name-nb { font-size: 0.8rem; font-weight: 700; color: var(--text-dark); white-space: nowrap; max-width: 90px; overflow: hidden; text-overflow: ellipsis; }
.gp-user-trigger .ti-chevron-down { color: var(--text-light); font-size: 0.75rem; }

.gp-user-menu {
  display: none; position: absolute; top: calc(100% + 6px); right: 0;
  min-width: 210px; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-sm); box-shadow: var(--shadow-md);
  z-index: 9999; overflow: hidden; animation: gp-menu-in 0.15s ease;
}
.gp-user-menu.open { display: block; }
@keyframes gp-menu-in { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

.gp-um-header { padding: 14px; background: var(--blue-pale); border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.gp-um-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--blue-1), #66a0ff); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 800; color: #fff; position: relative; overflow: hidden;}
.gp-um-avatar img { width:100%;height:100%;object-fit:cover;position:absolute;inset:0; }
.gp-um-name { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }
.gp-um-email { font-size: 0.68rem; color: var(--text-light); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 140px; }
.gp-um-body { padding: 5px; }
.gp-um-item { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 8px; cursor: pointer; font-size: 0.8rem; font-weight: 500; color: var(--text-mid); text-decoration: none; }
.gp-um-item:hover { background: var(--blue-pale); color: var(--blue-1); }
.gp-um-item.danger:hover { background: #fee2e2; color: #b91c1c; }

/* ══════════════════════════════════════════
MODALS (Translate)
══════════════════════════════════════════ */
.gp-modal-overlay {
  display: none; position: fixed; inset: 0; background: rgba(13,27,62,0.4);
  backdrop-filter: blur(3px); z-index: 9999;
}
.gp-modal-overlay.open { display: block; }

.gp-custom-modal {
  display: none; position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
  background: #fff; width: 90%; max-width: 360px; border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15); z-index: 10000;
  animation: gp-modal-pop 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.gp-custom-modal.open { display: block; }

@keyframes gp-modal-pop {
  from { opacity: 0; transform: translate(-50%, -45%) scale(0.95); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.gp-modal-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 1px solid var(--border);
}
.gp-modal-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin: 0; }
.gp-modal-close {
  width: 30px; height: 30px; border: none; background: var(--card-bg);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--text-light); cursor: pointer; transition: all 0.2s;
}
.gp-modal-close:hover { background: #fee2e2; color: #ef4444; }

.gp-modal-body { padding: 20px; max-height: 60vh; overflow-y: auto; }

/* Custom Translate UI */
.gp-lang-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 16px; }
.gp-lang-btn {
  display: flex; align-items: center; gap: 8px; padding: 10px;
  border-radius: 8px; border: 1px solid var(--border); background: var(--card-bg);
  color: var(--text-dark); font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.gp-lang-btn:hover { border-color: var(--blue-1); background: var(--blue-pale); color: var(--blue-1); }
.gp-lang-btn .fi { font-size: 1.1rem; border-radius: 3px; }

/* Translate Reset Button */
.gp-lang-reset {
  display: flex; align-items: center; justify-content: center; gap: 6px; width: 100%;
  padding: 10px; border-radius: 8px; border: 1px solid #fee2e2; background: #fff5f5;
  color: #ef4444; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
}
.gp-lang-reset:hover { background: #fee2e2; color: #b91c1c; }

/* Completely hide native Google Translate artifacts */
body > .skiptranslate { display: none !important; }
.goog-te-banner-frame.skiptranslate { display: none !important; }
body { top: 0px !important; }
#goog-gt-tt { display: none !important; top: 0px !important; }
.goog-tooltip { display: none !important; }
.goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background-color: transparent !important; border: none !important; box-shadow: none !important; }

/* ══════════════════════════════════════════
MAIN CONTENT SHELL
══════════════════════════════════════════ */
.gp-main-shell {
  flex: 1; margin-left: var(--gp-sidebar-w); padding-top: var(--gp-navbar-h);
  min-height: 100vh; display: flex; flex-direction: column;
}
.gp-content { flex: 1; padding: 24px; }

/* ══════════════════════════════════════════
RESPONSIVE — mobile
══════════════════════════════════════════ */
.gp-overlay {
  display: none; position: fixed; inset: 0; background: rgba(13,27,62,0.35);
  backdrop-filter: blur(2px); z-index: 199;
}
.gp-overlay.open { display: block; }

@media (max-width: 991px) {
  .gp-sidebar { transform: translateX(-100%); z-index: 300; }
  .gp-sidebar.mobile-open { transform: translateX(0); }
  .gp-main-shell { margin-left: 0; }

  /* Mobile Navbar explicit fitting */
  .gp-navbar { left: 0; padding: 0 10px; gap: 8px; }
  .gp-hamburger { display: flex; }
  .gp-mobile-brand { display: flex !important; margin-right: auto; }

  /* Hide elements on mobile */
  .gp-page-title, .gp-user-name-nb { display: none !important; }

  /* Shrink elements for tight fit */
  .gp-native-currency .dropdown-toggle { padding: 0 10px; height: 34px; }
  .gp-native-currency .badge { font-size: 0.8rem; }
  .gp-user-trigger { padding: 0 4px; border: none; background: transparent; height: 34px; }
  .gp-navbar-avatar { width: 28px; height: 28px; }
}

@media (max-width: 576px) {
  .gp-content { padding: 16px; }
  .gp-navbar { gap: 4px; padding: 0 6px; }
  .gp-mobile-brand img { max-height: 24px; }
  .gp-mobile-brand span { font-size: 1rem; }
  .gp-user-trigger .ti-chevron-down { display: none; }
}
a.gp-brand img.gp-brand-logo {
  filter: brightness(0) invert(1);
}

/* ══ NEW ORDER PAGE STYLES ══ */

/* ── HERO BANNER (3-column like image) ── */
.no-hero-card {
  background: linear-gradient(135deg, #0046e0 0%, #0057ff 35%, #0041d4 70%, #002ea0 100%);
  border-radius: 20px;
  padding: 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
  color: #fff;
  min-height: 148px;
  margin-top: 15px;
}
.no-hero-bg-glow {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse 55% 120% at 0% 50%, rgba(0,180,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 100% at 100% 50%, rgba(0,20,120,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 30% 80% at 50% 0%, rgba(255,255,255,0.07) 0%, transparent 60%);
}
.no-hero-dots {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.5) 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.5) 80%, transparent 100%);
}
.no-hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  min-height: 148px;
}

/* Left column */
.no-hero-left {
  display: flex; align-items: center; gap: 0;
  padding: 0;
}
.no-hero-rocket-img {
  width: 300px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(0, 100, 255, 0.4));
  margin-left: -130px;
  margin-right: 20px;
  mask-image: linear-gradient(to right, #00000000, #00000037 10%, #00000050 10%, #000000d6 90%, #000000);
}
.no-hero-left-text { padding: 20px; }
.no-hero-h {
  font-size: 1.25rem; font-weight: 800; margin: 0 0 0.2rem;
  line-height: 1.2; font-family: 'Plus Jakarta Sans', sans-serif;
  color: #fff;
}
.no-hero-h span { color: #5ce0ff; display: block; }
.no-hero-sub {
  font-size: 0.76rem; opacity: 0.8; margin: 0 0 0.75rem;
  line-height: 1.55; max-width: 220px;
}

/* Center column */
.no-hero-center {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border-left: 1px solid rgba(255,255,255,0.12);
  border-right: 1px solid rgba(255,255,255,0.12);
  min-height: 148px;
}
.no-hero-bal-icon { font-size: 1rem; opacity: 0.65; margin-bottom: 2px; }
.no-hero-bal-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 1.4px;
  text-transform: uppercase; opacity: 0.7; margin-bottom: 4px;
}
.no-hero-bal-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.1rem; font-weight: 800; line-height: 1; margin-bottom: 4px;
  color: #fff;
}
.no-hero-bal-sub { font-size: 0.7rem; opacity: 0.65; margin-bottom: 1rem; }
.no-hero-bal-btn {
  display: inline-flex; align-items: center; gap: 7px;
  background: #fff; color: #0046e0;
  border: none; border-radius: 50px;
  padding: 9px 22px; font-size: 0.82rem; font-weight: 800;
  text-decoration: none; cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.no-hero-bal-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); color: #0046e0; }

/* Right column */
.no-hero-right {
  display: flex; align-items: center; justify-content: flex-end; gap: 0;
  padding: 0;
}
.no-hero-right-text { text-align: right; padding: 20px; }
.no-hero-right-h {
  font-size: 1.25rem; font-weight: 800; margin: 0 0 0.2rem;
  line-height: 1.2; font-family: 'Plus Jakarta Sans', sans-serif; color: #fff;
}
.no-hero-right-h span { color: #5ce0ff; display: block; }
.no-hero-right-sub { font-size: 0.74rem; opacity: 0.75; margin: 0; line-height: 1.55; }
.no-hero-wallet-img {
  width: 250px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 24px rgba(0, 100, 255, 0.4));
  margin-right: -100px;
  margin-left: 20px;
  mask-image: linear-gradient(to left, #00000000, #00000037 10%, #00000050 10%, #000000d6 90%, #000000);
}

/* Card */
.no-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.no-card-header {
  padding: 1.2rem 1.6rem;
  border-bottom: 1px solid var(--border);
  background: var(--card-bg);
  display: flex; align-items: center; gap: 12px;
}
.no-card-header-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--blue-3); border: 1px solid var(--blue-4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--blue-1);
}
.no-card-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--text-dark); margin: 0; }
.no-card-sub { font-size: 0.74rem; color: var(--text-light); margin: 0; }
.no-card-body { padding: 1.6rem; }

/* Form labels */
.no-form-label {
  font-size: 0.78rem; font-weight: 700; color: var(--text-mid);
  margin-bottom: 6px; display: flex; align-items: center; gap: 5px;
}
.no-form-label .ti { color: var(--blue-1); font-size: 0.85rem; }
.no-form-label .req { color: #ef4444; font-size: 0.65rem; margin-left: 1px; }

/* Input wrap */
.no-input-wrap { position: relative; }
.no-input-wrap .no-icon {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  color: var(--text-light); font-size: 1rem; pointer-events: none;
  transition: color 0.2s; z-index: 2;
}
.no-input-wrap:focus-within .no-icon { color: var(--blue-1); }

/* Form control override */
.no-form-control {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 0.65rem 1rem 0.65rem 2.6rem !important;
  font-size: 0.875rem !important;
  color: var(--text-dark) !important;
  background: var(--card-bg) !important;
  width: 100%;
  outline: none;
  transition: border 0.2s, box-shadow 0.2s, background 0.2s;
  -webkit-appearance: none;
  box-shadow: none !important;
}
.no-form-control:focus {
  border-color: var(--blue-1) !important;
  box-shadow: 0 0 0 3px rgba(0,87,255,0.1) !important;
  background: #fff !important;
}
select.no-form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236a7d9f' d='M6 8L1 3h10z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: calc(100% - 14px) center !important;
  padding-right: 2.4rem !important;
}

/* Charge display */
.no-charge-box {
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-3));
  border: 1.5px solid var(--blue-4);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.no-charge-label-txt { font-size: 0.78rem; font-weight: 700; color: var(--text-mid); display: flex; align-items: center; gap: 5px; }
.no-charge-label-txt .ti { color: var(--blue-1); }
.no-charge-sub { font-size: 0.68rem; color: var(--text-light); margin-top: 2px; }
.no-charge-val { font-size: 1.35rem; font-weight: 700; color: var(--blue-1); }
.no-charge-badge {
  font-size: 0.6rem; font-weight: 700; padding: 3px 8px;
  background: rgba(0,87,255,0.1); color: var(--blue-1);
  border-radius: 50px; letter-spacing: 0.5px; text-transform: uppercase; margin-top: 3px;
}

/* Alerts */
.no-alert {
  border-radius: var(--radius-sm); padding: 0.85rem 1rem;
  font-size: 0.84rem; border: none !important;
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 1.25rem;
}
.no-alert .ti { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.no-alert.no-alert-danger { background: #fee2e2; color: #991b1b; }
.no-alert.no-alert-danger .ti { color: #ef4444; }
.no-alert.no-alert-success { background: #d1fae5; color: #065f46; }
.no-alert.no-alert-success .ti { color: #059669; }
.no-alert-close { margin-left: auto; background: none; border: none; color: inherit; opacity: 0.6; cursor: pointer; padding: 0; line-height: 1; }
.no-alert-close:hover { opacity: 1; }

.no-success-table { width: 100%; border-collapse: collapse; margin-top: 6px; }
.no-success-table td { padding: 4px 0; font-size: 0.82rem; vertical-align: top; }
.no-success-table .td-k { color: inherit; opacity: 0.7; font-weight: 600; width: 130px; padding-right: 10px; }
.no-success-table .td-v { font-weight: 700; }

/* Service description */
.no-svc-desc {
  background: var(--blue-pale);
  border: 1.5px solid var(--blue-4);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  margin-bottom: 1.25rem;
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.72;
}
.no-svc-desc-label {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--blue-1); display: flex; align-items: center; gap: 5px; margin-bottom: 6px;
}

/* Terms */
.no-terms-box {
  background: var(--card-bg); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 0.85rem 1rem; margin-bottom: 1.25rem;
}
.no-terms-label {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer; font-size: 0.82rem; color: var(--text-mid); margin: 0;
}
.no-terms-label input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--blue-1); flex-shrink: 0; }
.no-terms-label a { color: var(--blue-1); font-weight: 700; }

/* Submit */
.no-submit-btn {
  background: linear-gradient(135deg, var(--blue-1) 0%, var(--blue-deep) 100%);
  color: #fff; border: none; border-radius: 50px;
  padding: 0.85rem 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 0.95rem;
  width: 100%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,87,255,0.3);
  position: relative; overflow: hidden;
}
.no-submit-btn::after {
  content: ''; position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg); transition: left 0.55s ease;
}
.no-submit-btn:hover::after { left: 160%; }
.no-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,87,255,0.38); }
.no-submit-btn:active { transform: translateY(0); }

/* ── Sidebar ── */
.no-sidebar { position: sticky; top: 24px; display: flex; flex-direction: column; gap: 16px; }

/* Why Choose card */
.no-why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,87,255,0.06);
}
.no-why-header {
  padding: 1.1rem 1.4rem 1rem;
  border-bottom: 1px solid var(--border);
}
.no-why-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem; font-weight: 800; color: var(--text-dark); margin: 0;
}
.no-why-list { padding: 0.4rem 0; }
.no-why-item {
  display: flex; align-items: center; gap: 13px;
  padding: 0.7rem 1.4rem;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: background 0.15s;
  position: relative;
}
.no-why-item:last-child { border-bottom: none; }
.no-why-item:hover { background: var(--blue-pale); }
.no-why-item-ico {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 11px;
  background: var(--blue-pale);
  border: 1.5px solid var(--blue-4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; color: var(--blue-1);
  transition: background 0.15s, border-color 0.15s;
}
.no-why-item:hover .no-why-item-ico {
  background: var(--blue-3);
  border-color: var(--blue-1);
}
.no-why-item-body { flex: 1; min-width: 0; }
.no-why-item-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem; font-weight: 700; color: var(--text-dark); margin: 0 0 1px;
}
.no-why-item-sub { font-size: 0.72rem; color: var(--text-light); margin: 0; }
.no-why-item-arr {
  color: var(--text-light); font-size: 0.8rem;
  opacity: 0.5; transition: opacity 0.15s, transform 0.15s;
}
.no-why-item:hover .no-why-item-arr { opacity: 1; transform: translateX(3px); color: var(--blue-1); }

/* Trust badge */
.no-trust-badge {
  margin: 0.5rem 1.4rem 1.4rem;
  background: linear-gradient(135deg, var(--blue-pale) 0%, #eef3ff 100%);
  border: 1.5px solid var(--blue-4);
  border-radius: 14px;
  padding: 1rem 1.15rem;
  display: flex; align-items: center; gap: 14px;
}
.no-trust-shield {
  width: 52px; height: 52px; flex-shrink: 0;
  background: linear-gradient(135deg, #0057ff 0%, #0041d4 100%);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff;
  box-shadow: 0 4px 14px rgba(0,87,255,0.3);
}
.no-trust-body {}
.no-trust-stars { display: flex; align-items: center; gap: 3px; margin-bottom: 3px; }
.no-trust-star { color: #f59e0b; font-size: 0.9rem; }
.no-trust-score {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem; font-weight: 800; color: var(--text-dark); margin-left: 5px;
}
.no-trust-text { font-size: 0.73rem; color: var(--text-mid); font-weight: 600; }

/* Extra card */
.no-extra-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; margin-top: 20px; }
.no-extra-body { padding: 1.6rem; font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .no-hero-inner {
    grid-template-columns: 1fr; /* Stack into 1 column */
  }
  .no-hero-right {
    display: flex; /* Ensure right block is visible now */
  }
  .no-hero-center {
    border-right: none;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    padding: 1.25rem 1rem;
    min-height: auto;
  }
  .no-hero-left, .no-hero-right {
    padding: 1rem 1.25rem;
  }
  .no-hero-left-text, .no-hero-right-text {
    padding: 0;
  }
  .no-hero-rocket-img {
    width: 140px;
    margin-left: -50px;
    margin-right: 15px;
  }
  .no-hero-wallet-img {
    width: 120px;
    margin-right: -40px;
    margin-left: 15px;
  }
}

@media (max-width: 600px) {
  .no-hero-card { border-radius: 14px; }

  /* Make layout deeply compact on small mobile phones */
  .no-hero-left {
    padding: 1.25rem 1rem 0.75rem 1rem;
  }
  .no-hero-center {
    padding: 1rem;
  }
  .no-hero-right {
    padding: 0.75rem 1rem 1.25rem 1rem;
  }

  .no-hero-rocket-img {
    width: 200px;
    margin-left: -100px;
    margin-right: 20px;
  }
  .no-hero-wallet-img {
    width: 160px;
    margin-right: -90px;
    margin-left: 20px;
  }
  .no-hero-h, .no-hero-right-h { font-size: 1.1rem; }
  .no-hero-sub, .no-hero-right-sub { font-size: 0.75rem; margin-bottom: 0; }

  .no-hero-bal-val { font-size: 1.75rem; }
  .no-card-body { padding: 1.25rem; }
  .no-sidebar { position: static; }
}

@media (min-width: 601px) and (max-width: 767px) {
  .no-hero-rocket-img {
    width: 200px;
    margin-left: -100px;
    margin-right: 20px;
  }
  .no-hero-wallet-img {
    width: 160px;
    margin-right: -90px;
    margin-left: 20px;
  }
  .no-hero-h, .no-hero-right-h { font-size: 1.15rem; }
  .no-sidebar { position: static; }
}

.af-wrapper {
  font-family: var(--af-font);
  color: var(--af-text-dark);
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 0;
  box-sizing: border-box;
}

.af-wrapper * {
  box-sizing: border-box;
}

/* Top Banner - Current Balance */
.af-banner {
  background: linear-gradient(105deg, #021a60 0%, #0d3eb8 45%, #1a56db 100%);
  border-radius: var(--af-radius-xl);
  padding: 30px 40px;
  padding-right: 0; /* Let image bleed */
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(26, 86, 219, 0.15);
}

.af-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/></svg>') repeat;
  opacity: 0.5;
  pointer-events: none;
}

.af-banner-left {
  display: flex;
  flex-direction: column;
  z-index: 2;
  min-width: 250px;
}

.af-balance-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: 8px;
}

.af-badge-active {
  background: rgba(16, 185, 129, 0.2);
  color: #34d399;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.af-balance-amount {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.af-balance-amount span {
  font-size: 20px;
  font-weight: 500;
  opacity: 0.8;
}

.af-balance-desc {
  font-size: 13px;
  opacity: 0.7;
}

.af-banner-features {
  display: flex;
  gap: 30px;
  z-index: 2;
  padding: 0 40px;
  border-left: 1px solid rgba(255,255,255,0.1);
}

.af-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.af-feature-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.af-feature-text h4 {
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: 600;
}

.af-feature-text p {
  margin: 0;
  font-size: 12px;
  opacity: 0.7;
  max-width: 140px;
  line-height: 1.4;
}

.af-banner-graphic {
  z-index: 1;
  display: flex;
  margin-bottom: -30px;
  margin-right: -20px;
  margin-top: -15px;
}

.af-banner-graphic img {
  height: 190px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Mask fades out to the left seamlessly into the banner */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%);
  mask-image: linear-gradient(to right, transparent 0%, black 40%);
}

/* Form & History Panels */
.af-panel {
  background: var(--af-surface);
  border: 1px solid var(--af-border);
  border-radius: var(--af-radius-xl);
  padding: 28px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  height: 100%;
}

.af-panel-title {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.af-panel-subtitle {
  font-size: 13px;
  color: var(--af-text-gray);
  margin: 0 0 24px 0;
}

/* Form UI Helpers */
.af-step-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
  color: var(--af-text-dark);
}

/* Method Slider */
.af-method-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  gap: 8px;
}

.af-method-scroll {
  background: var(--af-surface);
  border: 1px solid var(--af-border);
  color: var(--af-text-dark);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 2;
  transition: all 0.2s;
}

.af-method-scroll:hover { background: var(--af-bg-main); }
.af-method-scroll.hidden { display: none; }

ul#payUl {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex: 1;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

ul#payUl::-webkit-scrollbar { display: none; }

ul#payUl li {
  flex: 0 0 auto;
  min-width: 220px;
  border: 1.5px solid var(--af-border);
  border-radius: var(--af-radius-lg);
  padding: 8px;
  padding-right: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
  background: var(--af-surface);
  position: relative;
  max-width: 300px;
  line-height: 1.2;
}

ul#payUl li:hover { border-color: #cbd5e1; }
ul#payUl li.active {
  border-color: var(--af-primary);
  background: var(--af-primary-light);
}

ul#payUl li::after {
  content: '';
  position: absolute;
  right: 16px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  background: #fff;
  transition: all 0.2s;
}

ul#payUl li.active::after {
  border-color: var(--af-primary);
  background: var(--af-primary) url('data:image/svg+xml;utf8,<svg width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') center no-repeat;
}

.af-method-icon-placeholder {
  min-width: 32px;
  min-height: 32px;
  background: var(--af-primary);
  color: white;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.pay-tags { margin-left: auto; margin-right: 0px; }
.pay-small {
  background: var(--af-success-light);
  color: var(--af-success);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Amount Grid */
.af-amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.af-amount-box {
  border: 1.5px solid var(--af-border);
  border-radius: var(--af-radius-lg);
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--af-surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 75px;
}

.af-amount-box:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.af-amount-box.active {
  border-color: var(--af-primary);
  background: var(--af-primary-light);
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.1);
}

.af-amount-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--af-text-dark);
  margin-bottom: 4px;
  pointer-events: none;
}

.af-amount-label {
  font-size: 11px;
  color: var(--af-text-gray);
  font-weight: 500;
  pointer-events: none;
}

.af-amount-box.popular .af-amount-value,
.af-amount-box.popular .af-amount-label {
  color: var(--af-success);
}

/* Styling Native Form Elements gracefully */
.af-panel .form-group { margin-bottom: 16px; }
.af-panel .control-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--af-text-dark);
  margin-bottom: 8px;
  display: block;
}

.af-panel .form-control {
  width: 100%;
  border: 1.5px solid var(--af-border);
  border-radius: var(--af-radius-md);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--af-text-dark);
  outline: none;
  font-family: var(--af-font);
  transition: all 0.2s;
  background: #f8fafc;
  box-shadow: none;
}

.af-panel .form-control:focus {
  border-color: var(--af-primary);
  box-shadow: 0 0 0 3px var(--af-primary-light);
  background: #fff;
}

/* Secure Info Box */
.af-secure-box {
  background: #f8fafc;
  border: 1px solid var(--af-border);
  border-radius: var(--af-radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  margin-bottom: 24px;
  margin-top: 24px;
}

.af-secure-box svg { color: var(--af-text-gray); }
.af-secure-box span { font-size: 12px; font-weight: 500; color: var(--af-text-dark); }
.af-secure-box p { font-size: 11px; color: var(--af-text-gray); margin: 0; }

/* Submit Button */
.af-submit-btn {
  width: 100%;
  background: var(--af-primary);
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: var(--af-radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.2);
}

.af-submit-btn:hover { background: var(--af-primary-hover); }

/* Transaction History Table */
.af-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.af-view-all {
  font-size: 13px;
  font-weight: 600;
  color: var(--af-primary);
  text-decoration: none;
}

.af-table-container { overflow-x: auto; }
.af-table { width: 100%; border-collapse: collapse; text-align: left; }
.af-table th {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--af-text-gray);
  padding: 12px 16px;
  border-bottom: 1px solid var(--af-border);
}

.af-table td {
  font-size: 13px;
  font-weight: 500;
  padding: 16px;
  border-bottom: 1px solid var(--af-border);
  vertical-align: middle;
  white-space: nowrap;
}

.af-table tr:last-child td { border-bottom: none; }

.af-method-pill { display: inline-flex; align-items: center; gap: 8px; }
.af-method-pill-icon {
  width: 24px; height: 24px;
  background: var(--af-primary);
  color: white;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.af-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.af-status.completed {
  background: var(--af-success-light);
  color: var(--af-success);
}

.af-action-btn {
  background: transparent;
  border: 1px solid var(--af-border);
  border-radius: 6px;
  color: var(--af-primary);
  width: 28px; height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.af-action-btn:hover { background: var(--af-bg-main); }

/* Floating WhatsApp */
.af-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-family: var(--af-font);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: transform 0.2s;
}

.af-whatsapp:hover { transform: translateY(-3px); }

@media (max-width: 992px) {
  .af-banner { flex-direction: column; align-items: flex-start; gap: 0; }

  .af-banner-left { 
    order: 1; 
    width: 100%; 
  }

  .af-banner-graphic { 
    display: flex;
    order: 2; 
    width: 100%;
    justify-content: center;
    margin: 15px 0 -25px 0; 
  }

  .af-banner-graphic img {
    height: 220px;
    /* On mobile, mask fades out at the bottom to blend into the stats */
    -webkit-mask-image: linear-gradient(to top, transparent 0%, #00000020 20%, black 100%);
    mask-image: linear-gradient(to top, transparent 0%, #00000020 20%, black 100%);
  }

  .af-banner-features { 
    order: 3; 
    border-left: none; 
    padding-left: 0; 
    flex-direction: column; 
    gap: 16px; 
    width: 100%; 
    border-top: 1px solid rgba(255,255,255,0.1); 
    padding-top: 20px;
    z-index: 3;
  }
}
@media (max-width: 576px) {
  .af-amount-grid { grid-template-columns: 1fr 1fr; }
}


:root {
  --tick-primary: #1a56db;
  --tick-primary-hover: #1e40af;
  --tick-primary-light: #eff6ff;
  --tick-bg-main: #f3f4f6;
  --tick-surface: #ffffff;
  --tick-border: #e5e7eb;
  --tick-text-dark: #111827;
  --tick-text-gray: #6b7280;
  --tick-success: #10b981;
  --tick-success-light: #d1fae5;
  --tick-danger: #ef4444;
  --tick-danger-light: #fee2e2;
  --tick-radius-xl: 16px;
  --tick-radius-lg: 12px;
  --tick-radius-md: 8px;
  --tick-font: 'Inter', sans-serif;
}

.tick-wrapper {
  font-family: var(--tick-font);
  color: var(--tick-text-dark);
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.tick-wrapper * {
  box-sizing: border-box;
}

/* -------------------------------------
Top Banner
------------------------------------- */
.tick-banner {
  background: linear-gradient(105deg, #021a60 0%, #0d3eb8 45%, #1a56db 100%);
  border-radius: var(--tick-radius-xl);
  padding: 36px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(26, 86, 219, 0.15);
}

.tick-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" stroke="rgba(255,255,255,0.05)" stroke-width="2" fill="none"/></svg>') repeat;
  opacity: 0.5;
  pointer-events: none;
}

.tick-banner-left {
  display: flex;
  flex-direction: column;
  z-index: 2;
  max-width: 600px;
}

.tick-banner-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 12px 0;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tick-banner-subtitle {
  font-size: 15px;
  opacity: 0.9;
  margin: 0 0 24px 0;
  line-height: 1.5;
}

.tick-banner-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tick-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(4px);
}

.tick-pill-icon {
  background: rgba(255, 255, 255, 0.2);
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}

.tick-pill-text {
  display: flex;
  flex-direction: column;
}

.tick-pill-text strong {
  font-size: 13px;
  font-weight: 600;
}

.tick-pill-text span {
  font-size: 11px;
  opacity: 0.8;
}

.tick-banner-graphic {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.tick-banner-graphic img {
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: bottom right;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 40%);
  mask-image: linear-gradient(to right, transparent 0%, black 40%);
  display: block;
}

/* -------------------------------------
Grid Layout
------------------------------------- */
.tick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.tick-panel {
  background: var(--tick-surface);
  border: 1px solid var(--tick-border);
  border-radius: var(--tick-radius-xl);
  padding: 28px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  height: 100%;
}

/* -------------------------------------
Panel Headers
------------------------------------- */
.tick-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.tick-panel-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tick-panel-icon {
  width: 40px; height: 40px;
  background: var(--tick-primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 10px rgba(26, 86, 219, 0.2);
}

.tick-panel-title-text h2 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: var(--tick-text-dark);
}

.tick-panel-title-text p {
  font-size: 13px;
  color: var(--tick-text-gray);
  margin: 0;
}

/* -------------------------------------
Form & Input Styling
------------------------------------- */
.tick-panel .form-group {
  margin-bottom: 20px;
}

.tick-panel .control-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--tick-text-dark);
  margin-bottom: 8px;
  display: block;
}

.tick-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.tick-input-icon {
  position: absolute;
  left: 14px;
  color: var(--tick-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.tick-input-wrap.textarea-wrap {
  align-items: flex-start;
}

.tick-input-wrap.textarea-wrap .tick-input-icon {
  top: 14px;
}

.tick-panel .form-control {
  width: 100%;
  border: 1px solid var(--tick-border);
  border-radius: var(--tick-radius-md);
  padding: 12px 16px 12px 42px;
  font-size: 14px;
  font-weight: 500;
  color: var(--tick-text-dark);
  outline: none;
  font-family: var(--tick-font);
  transition: all 0.2s;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.tick-panel select.form-control {
  appearance: none;
  padding-right: 36px;
}

.tick-panel .form-control:focus {
  border-color: var(--tick-primary);
  box-shadow: 0 0 0 3px var(--tick-primary-light);
}

.tick-panel textarea.form-control {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.tick-select-arrow {
  position: absolute;
  right: 14px;
  color: var(--tick-text-gray);
  pointer-events: none;
}

/* Ticket Uploader Box */
.tickets-uploader {
  border: 1px dashed var(--tick-border);
  border-radius: var(--tick-radius-md);
  background: #f8fafc;
  transition: all 0.2s;
  overflow: hidden;
  padding: 4px;
}
.tickets-uploader:hover {
  border-color: var(--tick-primary);
  background: var(--tick-primary-light);
}

/* Submit Button */
.tick-submit-btn {
  width: 100%;
  background: var(--tick-primary);
  color: #ffffff;
  border: none;
  padding: 14px;
  border-radius: var(--tick-radius-md);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.2);
}

.tick-submit-btn:hover {
  background: var(--tick-primary-hover);
  transform: translateY(-1px);
}

/* Alerts */
.tick-alert {
  padding: 12px 16px;
  border-radius: var(--tick-radius-md);
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.tick-alert-success { background: var(--tick-success-light); color: #065f46; border: 1px solid #a7f3d0; }
.tick-alert-danger { background: var(--tick-danger-light); color: #991b1b; border: 1px solid #fecaca; }
.tick-close { background: none; border: none; font-size: 18px; cursor: pointer; opacity: 0.5; display: flex; align-items: center; }
.tick-close:hover { opacity: 1; }

/* -------------------------------------
Search Box
------------------------------------- */
.tick-search-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--tick-radius-md);
  padding: 0 12px;
  border: 1px solid var(--tick-border);
  width: 240px;
  max-width: 100%;
  transition: border 0.2s;
}
.tick-search-box:focus-within {
  border-color: var(--tick-primary);
  box-shadow: 0 0 0 3px var(--tick-primary-light);
}
.tick-search-box input {
  border: none;
  background: transparent;
  padding: 10px 8px;
  width: 100%;
  font-size: 13px;
  outline: none;
  font-family: var(--tick-font);
  color: var(--tick-text-dark);
}
.tick-search-box svg {
  color: var(--tick-text-gray);
  flex-shrink: 0;
}
.tick-search-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--tick-text-gray);
}
.tick-search-btn:hover { color: var(--tick-primary); }

/* -------------------------------------
Ticket History Table
------------------------------------- */
.tick-table-container {
  overflow-x: auto;
  margin-top: 10px;
}

.tick-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.tick-table th {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--tick-text-gray);
  padding: 12px 16px;
  border-bottom: 1px solid var(--tick-border);
  letter-spacing: 0.5px;
}

.tick-table td {
  font-size: 13px;
  font-weight: 500;
  padding: 16px;
  border-bottom: 1px solid var(--tick-border);
  vertical-align: middle;
}

.tick-table tr:last-child td {
  border-bottom: none;
}

.tick-table tr:hover td {
  background: #f8fafc;
}

.tick-ticket-link {
  color: var(--tick-text-dark);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}
.tick-ticket-link:hover {
  color: var(--tick-primary);
}
.tick-ticket-link-new {
  color: var(--tick-primary);
}

.tick-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: var(--tick-bg-main);
  color: var(--tick-text-gray);
  border: 1px solid var(--tick-border);
}

/* -------------------------------------
Empty State
------------------------------------- */
.tick-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  height: 100%;
  min-height: 350px;
}

.tick-empty-graphic {
  margin-bottom: 20px;
  position: relative;
}

.tick-empty-state h3 {
  margin: 0 0 8px 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--tick-text-dark);
}

.tick-empty-state p {
  margin: 0 0 24px 0;
  font-size: 14px;
  color: var(--tick-text-gray);
}

.tick-empty-btn {
  background: #fff;
  border: 1px solid var(--tick-border);
  color: var(--tick-primary);
  padding: 10px 20px;
  border-radius: var(--tick-radius-md);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  text-decoration: none;
}

.tick-empty-btn:hover {
  background: var(--tick-bg-main);
  border-color: #cbd5e1;
}

/* -------------------------------------
Pagination
------------------------------------- */
.tick-pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--tick-border);
}

.tick-pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6px;
}

.tick-pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border-radius: var(--tick-radius-md);
  border: 1px solid var(--tick-border);
  background: var(--tick-surface);
  color: var(--tick-text-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.tick-pagination li.active a {
  background: var(--tick-primary);
  color: #ffffff;
  border-color: var(--tick-primary);
}

.tick-pagination li a:hover:not(.active) {
  background: var(--tick-bg-main);
}

/* -------------------------------------
Bottom Help Panel
------------------------------------- */
.tick-help-panel {
  background: var(--tick-surface);
  border: 1px solid var(--tick-border);
  border-radius: var(--tick-radius-xl);
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.tick-help-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tick-help-icon {
  width: 48px; height: 48px;
  background: var(--tick-primary);
  color: white;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700;
}

.tick-help-text h4 { margin: 0 0 4px 0; font-size: 16px; font-weight: 700; color: var(--tick-text-dark); }
.tick-help-text p { margin: 0; font-size: 13px; color: var(--tick-text-gray); }

.tick-help-right {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tick-btn-outline {
  background: #fff;
  border: 1px solid var(--tick-border);
  color: var(--tick-primary);
  padding: 10px 20px;
  border-radius: var(--tick-radius-md);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.2s; text-decoration: none;
}
.tick-btn-outline:hover { background: var(--tick-bg-main); }

.tick-btn-whatsapp { color: #16a34a; border-color: #bbf7d0; background: #f0fdf4; }
.tick-btn-whatsapp:hover { background: #dcfce7; border-color: #86efac; }

/* -------------------------------------
Responsiveness
------------------------------------- */
@media (max-width: 992px) {
  .tick-grid { grid-template-columns: 1fr; }
  .tick-banner { flex-direction: column; align-items: flex-start; gap: 24px; padding: 24px; }
  .tick-banner-graphic { opacity: 0.2; }
  .tick-help-panel { flex-direction: column; align-items: flex-start; }
}


:root {
  --af-primary: #1a56db;
  --af-primary-hover: #1e40af;
  --af-primary-light: #eff6ff;
  --af-bg-main: #f3f4f6;
  --af-surface: #ffffff;
  --af-border: #e5e7eb;
  --af-text-dark: #111827;
  --af-text-gray: #6b7280;
  --af-success: #10b981;
  --af-success-light: #d1fae5;
  --af-radius-xl: 16px;
  --af-radius-lg: 12px;
  --af-radius-md: 8px;
  --af-font: 'Inter', sans-serif;
}

.chat-wrapper {
  font-family: var(--af-font);
  color: var(--af-text-dark);
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.chat-wrapper * {
  box-sizing: border-box;
}

/* -------------------------------------
Header & Ticket Info
------------------------------------- */
.chat-header {
  background: var(--af-surface);
  border: 1px solid var(--af-border);
  border-radius: var(--af-radius-xl) var(--af-radius-xl) 0 0;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.chat-back-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--af-bg-main);
  color: var(--af-text-dark);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: all 0.2s;
}
.chat-back-btn:hover { background: #e2e8f0; }

.chat-title-wrap { display: flex; flex-direction: column; }
.chat-title { font-size: 18px; font-weight: 700; margin: 0; color: var(--af-text-dark); }
.chat-id { font-size: 12px; color: var(--af-text-gray); font-weight: 500; margin-top: 2px; }

.chat-status {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}
.chat-status.open { background: var(--af-success-light); color: var(--af-success); }
.chat-status.closed { background: #f3f4f6; color: #6b7280; }

/* -------------------------------------
Chat Body (Messages)
------------------------------------- */
.chat-body {
  background: #f8fafc; /* Slightly off-white for chat depth */
  border-left: 1px solid var(--af-border);
  border-right: 1px solid var(--af-border);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 400px;
  max-height: 600px;
  overflow-y: auto;
}

/* Support Message (Left) */
.msg-row-support {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  max-width: 85%;
}

/* User Message (Right) */
.msg-row-user {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  max-width: 85%;
  margin-left: auto;
}

.msg-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; flex-shrink: 0;
}
.msg-row-support .msg-avatar { background: var(--af-primary); color: #fff; box-shadow: 0 4px 10px rgba(26, 86, 219, 0.2); }
.msg-row-user .msg-avatar { background: var(--af-bg-main); color: var(--af-text-gray); border: 1px solid var(--af-border); }

.msg-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.msg-row-user .msg-content-wrap { align-items: flex-end; }

.msg-meta {
  font-size: 11px;
  color: var(--af-text-gray);
  display: flex; gap: 8px; font-weight: 500;
}

.msg-bubble {
  padding: 16px 20px;
  font-size: 14px;
  line-height: 1.6;
  border-radius: var(--af-radius-lg);
  position: relative;
  word-break: break-word;
}

.msg-row-support .msg-bubble {
  background: #fff;
  border: 1px solid var(--af-border);
  color: var(--af-text-dark);
  border-top-left-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.msg-row-user .msg-bubble {
  background: var(--af-primary);
  color: #fff;
  border-top-right-radius: 4px;
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.15);
}

/* Attachments */
.msg-attachments {
  margin-top: 12px;
  display: flex; flex-direction: column; gap: 8px;
}

.msg-attachment-link {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.05);
  padding: 8px 12px;
  border-radius: var(--af-radius-md);
  font-size: 12px; font-weight: 600; text-decoration: none;
  transition: background 0.2s;
}
.msg-row-support .msg-attachment-link { color: var(--af-primary); }
.msg-row-support .msg-attachment-link:hover { background: var(--af-primary-light); }

.msg-row-user .msg-attachment-link { color: #fff; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.2); }
.msg-row-user .msg-attachment-link:hover { background: rgba(255,255,255,0.25); }


/* -------------------------------------
Reply Area (Footer)
------------------------------------- */
.chat-reply-area {
  background: var(--af-surface);
  border: 1px solid var(--af-border);
  border-radius: 0 0 var(--af-radius-xl) var(--af-radius-xl);
  padding: 20px 24px;
}

.chat-reply-form { margin: 0; }

.chat-input-wrapper {
  position: relative;
  margin-bottom: 16px;
}

.chat-textarea {
  width: 100%;
  border: 1px solid var(--af-border);
  border-radius: var(--af-radius-md);
  padding: 16px;
  font-size: 14px;
  color: var(--af-text-dark);
  outline: none;
  font-family: var(--af-font);
  resize: vertical;
  min-height: 100px;
  background: #f8fafc;
  transition: all 0.2s;
}
.chat-textarea:focus { border-color: var(--af-primary); background: #fff; box-shadow: 0 0 0 3px var(--af-primary-light); }

.chat-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Uploader override styling to fit inline */
.chat-actions .form-group { margin: 0; }
.tickets-uploader {
  display: inline-block;
  background: var(--af-bg-main);
  border: 1px dashed #cbd5e1;
  border-radius: var(--af-radius-md);
  padding: 2px;
  transition: all 0.2s;
}
.tickets-uploader:hover { border-color: var(--af-primary); }

.chat-submit-btn {
  background: var(--af-primary);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: var(--af-radius-md);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.2);
}
.chat-submit-btn:hover { background: var(--af-primary-hover); transform: translateY(-1px); }

/* -------------------------------------
Alerts
------------------------------------- */
.af-alert {
  padding: 12px 16px;
  border-radius: var(--af-radius-md);
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.af-alert-danger { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.af-close { background: none; border: none; font-size: 18px; cursor: pointer; opacity: 0.5; }

@media (max-width: 768px) {
  .msg-row-support, .msg-row-user { max-width: 95%; }
  .chat-actions { flex-direction: column; align-items: stretch; gap: 16px; }
  .chat-header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

:root {
  --af-primary: #1a56db;
  --af-primary-hover: #1e40af;
  --af-primary-light: #eff6ff;
  --af-bg-main: #f3f4f6;
  --af-surface: #ffffff;
  --af-border: #e5e7eb;
  --af-text-dark: #111827;
  --af-text-gray: #6b7280;
  --af-success: #10b981;
  --af-success-light: #d1fae5;
  --af-danger: #ef4444;
  --af-warning: #f59e0b;
  --af-radius-xl: 16px;
  --af-radius-lg: 12px;
  --af-radius-md: 8px;
  --af-font: 'Inter', sans-serif;
}

.acc-wrapper {
  font-family: var(--af-font);
  color: var(--af-text-dark);
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.acc-wrapper * {
  box-sizing: border-box;
}

/* -------------------------------------
Layout Grid
------------------------------------- */
.acc-layout {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* Sidebar */
.acc-sidebar {
  width: 280px;
  flex-shrink: 0;
  background: var(--af-surface);
  border: 1px solid var(--af-border);
  border-radius: var(--af-radius-xl);
  padding: 24px 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.acc-profile-widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--af-border);
}

.acc-avatar {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--af-primary), #3b82f6);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; font-weight: 700;
  margin-bottom: 12px;
  box-shadow: 0 8px 16px rgba(26, 86, 219, 0.2);
}

.acc-username {
  font-size: 16px; font-weight: 700; color: var(--af-text-dark);
}
.acc-email-text {
  font-size: 13px; color: var(--af-text-gray); margin-top: 4px;
  word-break: break-all;
}

.acc-nav {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}

.acc-nav li a {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-radius: var(--af-radius-md);
  color: var(--af-text-gray);
  text-decoration: none;
  font-size: 14px; font-weight: 600;
  transition: all 0.2s;
}

.acc-nav li a:hover {
  background: var(--af-bg-main);
  color: var(--af-text-dark);
}

.acc-nav li.active a {
  background: var(--af-primary-light);
  color: var(--af-primary);
}

/* Main Content */
.acc-content {
  flex: 1;
  min-width: 0;
}

.acc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* -------------------------------------
Cards & Forms
------------------------------------- */
.acc-card {
  background: var(--af-surface);
  border: 1px solid var(--af-border);
  border-radius: var(--af-radius-xl);
  padding: 28px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.acc-card.full-width {
  grid-column: 1 / -1;
}

.acc-card-header {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}

.acc-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--af-primary-light);
  color: var(--af-primary);
  display: flex; align-items: center; justify-content: center;
}

.acc-card-title {
  font-size: 16px; font-weight: 700; margin: 0; color: var(--af-text-dark);
}

.acc-card-desc {
  font-size: 13px; color: var(--af-text-gray); margin-top: 4px; line-height: 1.5;
}

.acc-form-group {
  margin-bottom: 16px;
}

.acc-label {
  display: block; font-size: 13px; font-weight: 600; color: var(--af-text-dark); margin-bottom: 8px;
}

.acc-input, .acc-select, .acc-textarea {
  width: 100%;
  border: 1px solid var(--af-border);
  border-radius: var(--af-radius-md);
  padding: 12px 16px;
  font-size: 14px;
  color: var(--af-text-dark);
  outline: none;
  font-family: var(--af-font);
  background: #f8fafc;
  transition: all 0.2s;
}

.acc-input:focus, .acc-select:focus, .acc-textarea:focus {
  border-color: var(--af-primary);
  background: #fff;
  box-shadow: 0 0 0 3px var(--af-primary-light);
}

.acc-input[readonly], .acc-input[disabled] {
  background: #e2e8f0;
  color: #64748b;
  cursor: not-allowed;
}

.acc-btn {
  background: var(--af-primary);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: var(--af-radius-md);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  width: 100%;
  box-shadow: 0 4px 12px rgba(26, 86, 219, 0.2);
}

.acc-btn:hover { background: var(--af-primary-hover); transform: translateY(-1px); }

.acc-btn-outline {
  background: transparent;
  color: var(--af-primary);
  border: 1.5px solid var(--af-primary);
  box-shadow: none;
}
.acc-btn-outline:hover { background: var(--af-primary-light); color: var(--af-primary-hover); }

/* -------------------------------------
Alerts
------------------------------------- */
.af-alert {
  padding: 16px 20px;
  border-radius: var(--af-radius-md);
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid transparent;
}
.af-alert-success { background: var(--af-success-light); color: #065f46; border-color: #a7f3d0; }
.af-alert-danger { background: #fee2e2; color: #991b1b; border-color: #fecaca; }
.af-close { background: none; border: none; font-size: 20px; cursor: pointer; opacity: 0.5; color: inherit; padding: 0; }
.af-close:hover { opacity: 1; }

/* -------------------------------------
Modal Overrides
------------------------------------- */
.modal-content {
  border: none;
  border-radius: var(--af-radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  font-family: var(--af-font);
}
.modal-header {
  border-bottom: 1px solid var(--af-border);
  padding: 20px 24px;
  background: var(--af-surface);
  border-radius: var(--af-radius-xl) var(--af-radius-xl) 0 0;
}
.modal-title { font-size: 18px; font-weight: 700; color: var(--af-text-dark); }
.modal-body { padding: 24px; background: var(--af-surface); }
.modal-footer {
  border-top: 1px solid var(--af-border);
  padding: 16px 24px;
  background: #f8fafc;
  border-radius: 0 0 var(--af-radius-xl) var(--af-radius-xl);
}
.modal-footer .btn-default {
  background: transparent; border: 1px solid var(--af-border); color: var(--af-text-dark);
  padding: 10px 20px; border-radius: var(--af-radius-md); font-weight: 600;
}

/* -------------------------------------
Responsiveness
------------------------------------- */
@media (max-width: 992px) {
  .acc-layout { flex-direction: column; }
  .acc-sidebar { width: 100%; display: flex; align-items: center; gap: 20px; padding: 20px; }
  .acc-profile-widget { border-bottom: none; border-right: 1px solid var(--af-border); padding-bottom: 0; padding-right: 20px; margin-bottom: 0; flex-direction: row; gap: 16px; text-align: left; }
  .acc-avatar { margin-bottom: 0; width: 48px; height: 48px; font-size: 18px; }
  .acc-nav { flex-direction: row; flex-wrap: wrap; flex: 1; gap: 8px; }
  .acc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .acc-sidebar { flex-direction: column; align-items: flex-start; }
  .acc-profile-widget { border-right: none; border-bottom: 1px solid var(--af-border); padding-right: 0; padding-bottom: 20px; width: 100%; }
  .acc-nav { width: 100%; }
  .acc-nav li { flex: 1; min-width: 120px; }
  .acc-nav li a { justify-content: center; }
}

.gp-content {
  padding: 0;
}

:root {
  --af-primary: #1a56db;
  --af-primary-hover: #1e40af;
  --af-primary-light: #eff6ff;
  --af-bg-main: #f3f4f6;
  --af-surface: #ffffff;
  --af-border: #e5e7eb;
  --af-text-dark: #111827;
  --af-text-gray: #6b7280;

  /* Status Colors */
  --af-status-pending: #f59e0b;
  --af-status-pending-bg: #fef3c7;
  --af-status-progress: #3b82f6;
  --af-status-progress-bg: #dbeafe;
  --af-status-completed: #10b981;
  --af-status-completed-bg: #d1fae5;
  --af-status-partial: #6366f1;
  --af-status-partial-bg: #e0e7ff;
  --af-status-processing: #8b5cf6;
  --af-status-processing-bg: #ede9fe;
  --af-status-canceled: #ef4444;
  --af-status-canceled-bg: #fee2e2;

  --af-radius-xl: 16px;
  --af-radius-lg: 12px;
  --af-radius-md: 8px;
  --af-font: 'Inter', sans-serif;
}

.ord-wrapper {
  font-family: var(--af-font);
  color: var(--af-text-dark);
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.ord-wrapper * {
  box-sizing: border-box;
}

/* -------------------------------------
Header & Controls (Filters / Search)
------------------------------------- */
.ord-header-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  background: var(--af-surface);
  padding: 16px 20px;
  border-radius: var(--af-radius-xl);
  border: 1px solid var(--af-border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

/* Horizontal Scrollable Filter Slider */
.ord-filter-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.ord-filter-scroll {
  background: var(--af-surface);
  border: 1px solid var(--af-border);
  color: var(--af-text-dark);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  z-index: 2;
  transition: all 0.2s;
}
.ord-filter-scroll:hover { background: var(--af-bg-main); }
.ord-filter-scroll.hidden { display: none; }

.ord-filter-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scroll-behavior: smooth;
  flex: 1;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.ord-filter-list::-webkit-scrollbar { display: none; }

.ord-filter-list li { flex: 0 0 auto; }

.ord-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: var(--af-text-gray);
  background: var(--af-surface);
  border: 1.5px solid var(--af-border);
  text-decoration: none;
  transition: all 0.2s ease;
}
.ord-filter-btn:hover { border-color: #cbd5e1; color: var(--af-text-dark); text-decoration: none; }

.ord-filter-list li.active .ord-filter-btn {
  border-color: var(--af-primary);
  background: var(--af-primary);
  color: white;
}

/* Search Block */
.ord-controls-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  max-width: 100%;
}

.ord-search-box {
  display: flex;
  align-items: center;
  background: var(--af-bg-main);
  border-radius: var(--af-radius-md);
  padding: 0 12px;
  border: 1px solid var(--af-border);
  width: 280px;
  max-width: 100%;
  transition: border 0.2s;
}
.ord-search-box:focus-within { border-color: var(--af-primary); box-shadow: 0 0 0 3px var(--af-primary-light); background: #fff; }

.ord-search-box input {
  border: none;
  background: transparent;
  padding: 10px 8px;
  width: 100%;
  font-size: 13px;
  outline: none;
  font-family: var(--af-font);
  color: var(--af-text-dark);
}
.ord-search-box button {
  background: none; border: none; padding: 0; color: var(--af-text-gray); cursor: pointer; display: flex; align-items: center;
}
.ord-search-box button:hover { color: var(--af-primary); }

/* -------------------------------------
Cards Layout
------------------------------------- */
.ord-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.ord-card {
  background: var(--af-surface);
  border: 1px solid var(--af-border);
  border-radius: var(--af-radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.ord-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  border-color: #cbd5e1;
}

/* Card Header Row */
.ord-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.ord-id-date {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ord-id { font-size: 12px; font-weight: 700; color: var(--af-text-gray); text-transform: uppercase; letter-spacing: 0.5px;}
.ord-date { font-size: 12px; color: #94a3b8; font-weight: 500; }

/* Status Badges */
.ord-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ord-status.pending { background: var(--af-status-pending-bg); color: var(--af-status-pending); }
.ord-status.inprogress, .ord-status.in\ progress { background: var(--af-status-progress-bg); color: var(--af-status-progress); }
.ord-status.completed { background: var(--af-status-completed-bg); color: var(--af-status-completed); }
.ord-status.partial { background: var(--af-status-partial-bg); color: var(--af-status-partial); }
.ord-status.processing { background: var(--af-status-processing-bg); color: var(--af-status-processing); }
.ord-status.canceled { background: var(--af-status-canceled-bg); color: var(--af-status-canceled); }
.ord-status-icon { cursor: help; margin-left: 4px; opacity: 0.7; }

/* Service Name */
.ord-service-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--af-text-dark);
  margin: 0 0 16px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Link Box */
.ord-link-box {
  background: #f8fafc;
  border: 1px solid var(--af-border);
  border-radius: var(--af-radius-md);
  padding: 10px 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ord-link-text {
  font-size: 12px;
  color: var(--af-primary);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ord-link-text:hover { text-decoration: underline; }

.ord-details-btn {
  background: var(--af-surface);
  border: 1px solid var(--af-border);
  color: var(--af-text-gray);
  width: 28px; height: 28px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s; flex-shrink: 0;
}
.ord-details-btn:hover { background: var(--af-primary-light); color: var(--af-primary); border-color: var(--af-primary-light); }

/* Stats Grid */
.ord-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 20px;
  margin-top: auto;
  background: var(--af-surface);
  border-top: 1px solid var(--af-border);
  border-bottom: 1px solid var(--af-border);
  padding: 12px 0;
}

.ord-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  border-right: 1px solid var(--af-border);
}

.ord-stat-label { font-size: 10px; color: var(--af-text-gray); text-transform: uppercase; font-weight: 600; }
.ord-stat-value { font-size: 13px; font-weight: 700; color: var(--af-text-dark); }
.ord-stat-value.charge { color: var(--af-primary); }

/* Footer Actions */
.ord-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ord-action-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.ord-btn {
  padding: 8px 16px;
  border-radius: var(--af-radius-md);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid transparent;
}

.ord-btn-outline {
  background: transparent;
  border-color: var(--af-border);
  color: var(--af-text-dark);
}
.ord-btn-outline:hover { background: var(--af-bg-main); border-color: #cbd5e1; color: var(--af-text-dark); text-decoration: none;}

.ord-btn-primary {
  background: var(--af-primary-light);
  color: var(--af-primary);
  border-color: transparent;
}
.ord-btn-primary:hover { background: #dbeafe; color: var(--af-primary-hover); text-decoration: none; }

.ord-btn-report {
  background: var(--af-primary);
  color: white;
  width: 100%;
  margin-top: 12px;
}
.ord-btn-report:hover { background: var(--af-primary-hover); color: white; }

.ord-status-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--af-text-gray);
  background: var(--af-bg-main);
  padding: 4px 10px;
  border-radius: var(--af-radius-md);
}

/* -------------------------------------
Modal Overrides (for details)
------------------------------------- */
.modal-content {
  border: none;
  border-radius: var(--af-radius-xl);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  font-family: var(--af-font);
}
.modal-header {
  border-bottom: 1px solid var(--af-border);
  padding: 20px 24px;
  background: var(--af-surface);
  border-radius: var(--af-radius-xl) var(--af-radius-xl) 0 0;
}
.modal-title { font-size: 18px; font-weight: 700; color: var(--af-text-dark); margin: 0; }
.modal-body { padding: 24px; background: var(--af-surface); }
.modal-body .form-group { margin-bottom: 16px; }
.modal-body label { font-size: 12px; font-weight: 600; color: var(--af-text-dark); margin-bottom: 8px; display: block; }
.modal-body .form-control {
  border: 1px solid var(--af-border); border-radius: var(--af-radius-md); padding: 12px;
  font-size: 13px; font-family: var(--af-font); color: var(--af-text-dark); width: 100%;
  background: #f8fafc;
}
.modal-body .form-control[disabled] { color: #64748b; cursor: not-allowed; }

/* -------------------------------------
Pagination
------------------------------------- */
.af-pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--af-border);
}

.af-pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 6px;
}

.af-pagination li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 12px;
  border-radius: var(--af-radius-md);
  border: 1px solid var(--af-border);
  background: var(--af-surface);
  color: var(--af-text-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
}

.af-pagination li.active a {
  background: var(--af-primary);
  color: #ffffff;
  border-color: var(--af-primary);
}

.af-pagination li a:hover:not(.active) {
  background: var(--af-bg-main);
}

/* Empty State */
.ord-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  background: var(--af-surface);
  border: 1px dashed var(--af-border);
  border-radius: var(--af-radius-xl);
}
.ord-empty h3 { margin: 0 0 8px 0; font-size: 18px; font-weight: 700; color: var(--af-text-dark); }
.ord-empty p { margin: 0; font-size: 14px; color: var(--af-text-gray); }

/* -------------------------------------
Responsiveness
------------------------------------- */
@media (max-width: 768px) {
  .ord-header-bar { flex-direction: column; align-items: stretch; }
  .ord-filter-wrap { width: 100%; }
  .ord-controls-right { width: 100%; max-width: none; }
  .ord-search-box { width: 100%; }
  .ord-grid { grid-template-columns: 1fr; }
  .ord-footer { flex-direction: column; align-items: stretch; }
  .ord-action-group { width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
}
























/* =====================================================================
YOUR EXISTING CORE THEME VARIABLES
===================================================================== */
: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; 
  --radius-sm: 11px;
}

.mb-3 { margin-bottom: 1rem; }

.no-form-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.no-form-label .req {
  color: #ef4444;
  font-size: 0.7rem;
}

/* =====================================================================
SELECT2 DROPDOWN REDESIGN (GRID PACKAGES)
===================================================================== */

/* Target the dropdown menu to expand for the grid */
.select2-container--open .select2-dropdown {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-md) !important;
  background: var(--card-bg) !important;
  padding: 10px;
  margin-top: 5px;
  /* Force width to break out of standard input size if needed */
  min-width: 100% !important; 
}

.select2-search__field {
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  padding: 10px 15px !important;
  background: var(--white) !important;
  font-family: "Inter", sans-serif;
}

/* Convert the list to a Grid */
.select2-results__options {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 10px;
  padding: 8px 4px !important;
  max-height: 60vh !important; /* Allow generous scrolling */
}

.select2-results__option {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  list-style: none !important;
}

/* Style the anchor tag to look like the Card */
.select2-results__option a {
  display: flex !important;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 15px !important;
  height: 100%;
  text-decoration: none !important;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 87, 255, 0.04);
  color: inherit !important;
  cursor: pointer;
}

/* Hover & Active States */
.select2-results__option[aria-selected="true"] a,
.select2-results__option--highlighted a,
.select2-results__option a:hover {
  border-color: var(--blue-1) !important;
  background: var(--blue-pale) !important;
  box-shadow: 0 6px 20px rgba(0, 87, 255, 0.1) !important;
  transform: translateY(-2px);
}

/* Custom internal elements injected by JS */
.s2-pkg-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }

/* New Flag System Styles */
.s2-pkg-flag { 
  display: flex; 
  align-items: center; 
}
.svc-flag-group { 
  display: flex; 
  align-items: center; 
}
.svc-flag-group .fi {
  width: 19px;
  line-height: 18px;
  border-radius: 30px;
  margin-left: -6px;
  border: 1px solid var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
  background-size: cover;
}
.svc-flag-group .fi:first-child { margin-left: 0; }

.s2-pkg-id {
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #0057ff 0%, #0041d4 100%);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 50px;
  transition: all 0.2s;
}
.s2-pkg-title { font-family: "Plus Jakarta Sans", sans-serif; font-size: 0.85rem; font-weight: 700; color: var(--text-dark); line-height: 1.4; margin-bottom: 12px; flex: 1; white-space: normal; }
.s2-pkg-footer { border-top: 1px dashed var(--border); padding-top: 10px; display: flex; justify-content: space-between; align-items: flex-end; }
.s2-pkg-price-lbl { font-size: 0.65rem; color: var(--text-light); font-weight: 600; margin-bottom: 2px;}
.s2-pkg-price { font-family: "Plus Jakarta Sans", sans-serif; font-size: 1.25rem; font-weight: 800; color: var(--blue-1); line-height: 1;}

/* Highlighted specific element shifts */
.select2-results__option--highlighted .s2-pkg-id,
.select2-results__option:hover .s2-pkg-id { background: linear-gradient(135deg, #0057ff 0%, #0041d4 100%); color: #fff; border-color: var(--blue-4); }

/* Mobile adjustments */
@media (max-width: 768px) {
  .select2-results__options {
    grid-template-columns: 1fr !important;
  }
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}
span.select2-selection.select2-selection--single.form-control {
  padding: 12px 40px;
}
span.select2-selection__id.badge {
  background: linear-gradient(135deg, #0057ff 0%, #0041d4 100%);
  border-radius: 14px;
  line-height: 1.5;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-radius: 10px !important;
}
.select2-container--open .select2-dropdown {
  top: 6px;
  overflow: hidden;
  background: #fff !important;
}
.select2-results__option a {
  font-size: 14px;
  font-weight: 600;
}
.no-charge-box {
  padding: 10px;
}
.no-charge-val {
  line-height: 1;
  margin-bottom: 5px;
}
.form-group {
  margin-bottom: 1rem !important;
}
label.control-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
label.no-form-label {
  margin-bottom: 5px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  display: block;
  white-space: break-spaces !important;
}
.no-hero-btn-grp {
  display: flex;
  align-items: center;
  gap: 5px;
}
a.no-hero-bal-btn.no-hero-cur-btn {
  font-size: 22px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 70px;
  background: #ffffff40;
  color: #fff;
  border: 1px solid #ffffff20;
  padding: 0;
}
a.no-btn-how {
  background: linear-gradient(135deg, var(--blue-1) 0%, var(--blue-deep) 100%);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 7px 15px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  margin-left: auto;
}
.no-hero-bal-subhead span {
  text-transform: uppercase;
  font-weight: bold;
  color: #5ce0ff;
}
a.gp-sidebariconYt {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radius-sm);
  background: var(--card-bg);
  border: 1px solid var(--border);
  font-size: 16px;
}
a.gp-sidebariconYt i {
  font-weight: 800;
}
.gp-sidebar-footer {
  display: flex;
  gap: 8px;
  padding: 0 10px;
  border: 0;
}




.glassyBtn, .rn-btn-primary, .svc-btn-action {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.glassyBtn::before, .rn-btn-primary::before, .svc-btn-action::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-150%) skewX(-25deg);
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.05) 35%,
    rgba(255,255,255,0.35) 50%,
    rgba(255,255,255,0.05) 65%,
    transparent 100%
  );
  animation: shine 3.5s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% {
    transform: translateX(-150%) skewX(-25deg);
  }
  100% {
    transform: translateX(250%) skewX(-25deg);
  }
}
a.ord-link-text {
  white-space: break-spaces;
  word-break: break-all;
  line-height: 1.2;
}

nav#gpNavbar {
  margin: 10px;
  border: 1px solid #0057ff2b;
  border-radius: 13px;
  padding: 15px;
  background: url(https://storage.perfectcdn.com/oz099h/g7r2567tqysd9iti.webp);
  background-size: cover;
  background-position: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
button.gp-hamburger {
  height: 40px;
  width: 40px;
  font-size: 20px;
  background: #ffffff80;
  backdrop-filter: blur(30px);
}
@media (max-width: 576px) {
  .gp-mobile-brand img {
    max-height: 30px;
  }
  .gp-native-currency .badge {
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
div#gpMainShell {
  padding-top: 70px;
}

button.btn.btn-link {
  background: #fff;
  text-decoration: none;
  color: #0041d4 !important;
  height: 40px;
  width: 40px;
  border-radius: 20px;
  line-height: 1;
  font-weight: 700 !important;
}
button.btn.btn-link i {
  font-size: 20px !important;
  font-weight: 800;
}

.s2-pkg-price {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #000000b3;
  line-height: 1;
}
.s2-pkg-footer {
  border-top: 1px dashed var(--border);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.af-dropdown {
  display: flex !important;
  gap: 10px;
  justify-content: space-between;
}
a.svc-btn-action {
  background: #1f3f87;
}
.af-dropdown {
  width: -webkit-fill-available;
}
.af-dropdown ul, .af-dropdown button {
  flex: auto;
}
.svc-header-bar {
  flex-wrap: nowrap !important;
}
.svc-card-price {
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #000000b3 !important;
  margin-bottom: 13px !important;
}
.af-method-scroll.hidden {
  display: block;
  opacity: 0.5;
  cursor: no-drop;
}
.gp-sidebar.mobile-open > img {
  margin-top: -70px;
}
.gp-nav-item {
  padding: 5px;
}