/* ============================================================
   JX-LANDING.CSS — JX-SMS Modern Landing Page
   Self-contained. No dependencies on old theme CSS.
   ============================================================ */

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  /* Brand */
  --jx-primary:       #4f46e5;
  --jx-primary-light: #818cf8;
  --jx-primary-dark:  #3730a3;
  --jx-secondary:     #0ea5e9;
  --jx-success:       #10b981;
  --jx-warning:       #f59e0b;

  /* Neutrals */
  --jx-dark:   #0f172a;
  --jx-gray-50:  #f8fafc;
  --jx-gray-100: #f1f5f9;
  --jx-gray-200: #e2e8f0;
  --jx-gray-300: #cbd5e1;
  --jx-gray-400: #94a3b8;
  --jx-gray-500: #64748b;
  --jx-gray-600: #475569;
  --jx-gray-700: #334155;

  /* Gradients */
  --jx-gradient:      linear-gradient(135deg, var(--jx-primary) 0%, var(--jx-secondary) 100%);
  --jx-gradient-dark:  linear-gradient(135deg, var(--jx-primary-dark) 0%, var(--jx-primary) 100%);
  --jx-gradient-hero:  linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);

  /* Glassmorphism */
  --jx-glass-bg:     rgba(255, 255, 255, 0.08);
  --jx-glass-border: rgba(255, 255, 255, 0.12);
  --jx-glass-blur:   16px;

  /* Shadows */
  --jx-shadow-sm:  0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --jx-shadow:     0 4px 6px -1px rgba(0, 0, 0, .07), 0 2px 4px -2px rgba(0, 0, 0, .05);
  --jx-shadow-md:  0 10px 25px -3px rgba(0, 0, 0, .08), 0 4px 6px -4px rgba(0, 0, 0, .05);
  --jx-shadow-lg:  0 20px 50px -12px rgba(0, 0, 0, .15);
  --jx-shadow-xl:  0 25px 60px -12px rgba(0, 0, 0, .2);
  --jx-shadow-glow: 0 0 40px rgba(79, 70, 229, .25);

  /* Typography */
  --jx-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Spacing */
  --jx-section-py: 100px;

  /* Radius */
  --jx-radius:    12px;
  --jx-radius-lg: 20px;
  --jx-radius-xl: 28px;

  /* Transition */
  --jx-transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

/* ── Reset / Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body.jx-landing {
  font-family: var(--jx-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--jx-gray-700);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--jx-transition); }
ul, ol { list-style: none; }

::selection {
  background: var(--jx-primary);
  color: #fff;
}

/* ── Typography Helpers ───────────────────────────────────── */
.jx-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--jx-primary);
  background: rgba(79, 70, 229, .08);
  border: 1px solid rgba(79, 70, 229, .15);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.jx-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--jx-dark);
  margin-bottom: 18px;
}

.jx-section-subtitle {
  font-size: 1.1rem;
  color: var(--jx-gray-500);
  max-width: 600px;
  margin: 0 auto 50px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.jx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--jx-font);
  font-size: .95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--jx-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--jx-transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
}

.jx-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2) 0%, transparent 60%);
  opacity: 0;
  transition: var(--jx-transition);
}
.jx-btn:hover::after { opacity: 1; }

.jx-btn-primary {
  background: var(--jx-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(79, 70, 229, .35);
}
.jx-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 70, 229, .45);
  color: #fff;
}

.jx-btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, .3);
  color: #fff;
}
.jx-btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .5);
  transform: translateY(-2px);
  color: #fff;
}

.jx-btn-outline-dark {
  background: transparent;
  border-color: var(--jx-primary);
  color: var(--jx-primary);
}
.jx-btn-outline-dark:hover {
  background: var(--jx-primary);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 70, 229, .35);
}

.jx-btn-white {
  background: #fff;
  color: var(--jx-primary);
  box-shadow: var(--jx-shadow-md);
}
.jx-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--jx-shadow-lg);
  color: var(--jx-primary-dark);
}

.jx-btn-sm {
  padding: 10px 22px;
  font-size: .85rem;
}

.jx-btn-lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ── Navbar ───────────────────────────────────────────────── */
.jx-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--jx-transition);
}

.jx-navbar.scrolled {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, .06);
  padding: 10px 0;
}

.jx-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.jx-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.jx-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--jx-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(79, 70, 229, .35);
}

.jx-logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #fff;
  transition: var(--jx-transition);
}
.jx-logo-text span {
  background: var(--jx-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.jx-navbar.scrolled .jx-logo-text {
  color: var(--jx-dark);
}

/* Nav links */
.jx-nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.jx-nav-links a {
  padding: 8px 18px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  border-radius: 8px;
  transition: var(--jx-transition);
}
.jx-nav-links a:hover,
.jx-nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.jx-navbar.scrolled .jx-nav-links a {
  color: var(--jx-gray-600);
}
.jx-navbar.scrolled .jx-nav-links a:hover,
.jx-navbar.scrolled .jx-nav-links a.active {
  color: var(--jx-primary);
  background: rgba(79, 70, 229, .06);
}

/* Nav actions */
.jx-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.jx-nav-login {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .9);
  padding: 8px 18px;
  border-radius: 8px;
  transition: var(--jx-transition);
}
.jx-nav-login:hover {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}
.jx-navbar.scrolled .jx-nav-login {
  color: var(--jx-gray-700);
}
.jx-navbar.scrolled .jx-nav-login:hover {
  color: var(--jx-primary);
  background: rgba(79, 70, 229, .06);
}

.jx-nav-cta {
  font-size: .85rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 10px;
  background: var(--jx-gradient);
  color: #fff;
  box-shadow: 0 4px 15px rgba(79, 70, 229, .3);
  transition: var(--jx-transition);
}
.jx-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(79, 70, 229, .45);
  color: #fff;
}

/* Mobile toggle */
.jx-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: none;
  background: none;
  z-index: 1001;
}

.jx-nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: #fff;
  border-radius: 4px;
  transition: var(--jx-transition);
}
.jx-navbar.scrolled .jx-nav-toggle span {
  background: var(--jx-dark);
}

.jx-nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.jx-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.jx-nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.jx-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 23, 42, .97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: var(--jx-transition);
}

.jx-mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.jx-mobile-menu a {
  font-size: 1.3rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  padding: 12px 32px;
  border-radius: 12px;
  transition: var(--jx-transition);
}
.jx-mobile-menu a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .08);
}

.jx-mobile-menu .jx-btn {
  margin-top: 16px;
}

/* ── Hero Section ─────────────────────────────────────────── */
.jx-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #020617;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Animated background — rendered by canvas in JS */
.jx-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Color wash over canvas */
.jx-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 700px at 10% 60%, rgba(79, 70, 229, .18) 0%, transparent 70%),
    radial-gradient(circle 500px at 85% 25%, rgba(14, 165, 233, .12) 0%, transparent 70%),
    radial-gradient(circle 400px at 60% 85%, rgba(139, 92, 246, .08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* Subtle vignette */
.jx-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(2,6,23,.6) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Floating blobs */
.jx-hero-blob { display: none; }

/* Floating tech shapes */
.jx-hero-shape { display: none; }

/* Lines & nodes rendered by canvas instead */
.jx-hero-line { display: none; }
.jx-hero-node { display: none; }

/* Hero content */
.jx-hero-content {
  position: relative;
  z-index: 2;
}

.jx-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--jx-primary-light);
  background: rgba(79, 70, 229, .12);
  border: 1px solid rgba(129, 140, 248, .2);
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.jx-hero-badge i {
  font-size: .7rem;
  animation: jxPulse 2s ease-in-out infinite;
}

.jx-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 22px;
  letter-spacing: -.03em;
}

.jx-hero h1 .jx-text-gradient {
  background: linear-gradient(135deg, var(--jx-primary-light) 0%, var(--jx-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jx-hero-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .65);
  max-width: 520px;
  margin-bottom: 36px;
}

.jx-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

/* Trust badges in hero */
.jx-hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.jx-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: rgba(255, 255, 255, .5);
}

.jx-hero-trust-item i {
  color: var(--jx-success);
  font-size: .75rem;
}

/* ── Hero Login Form (glassmorphism) ──────────────────────── */
.jx-hero-form-wrap {
  position: relative;
  z-index: 2;
}

.jx-hero-form {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(var(--jx-glass-blur));
  -webkit-backdrop-filter: blur(var(--jx-glass-blur));
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--jx-radius-xl);
  padding: 40px 36px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
  max-width: 420px;
  margin-left: auto;
}

.jx-hero-form-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.jx-hero-form-sub {
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 28px;
}

.jx-form-group {
  margin-bottom: 18px;
  position: relative;
}

.jx-form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 8px;
}

.jx-form-input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  font-family: var(--jx-font);
  font-size: .92rem;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--jx-radius);
  outline: none;
  transition: var(--jx-transition);
}

.jx-form-input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.jx-form-input:focus {
  border-color: var(--jx-primary-light);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, .15);
}

.jx-form-icon {
  position: absolute;
  left: 16px;
  bottom: 15px;
  color: #a5b4fc;
  font-size: .9rem;
  pointer-events: none;
  z-index: 2;
}

/* Prevent browser autofill from overriding dark theme */
.jx-form-input:-webkit-autofill,
.jx-form-input:-webkit-autofill:hover,
.jx-form-input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #1e1b4b inset !important;
  -webkit-text-fill-color: #fff !important;
  border-color: rgba(255, 255, 255, .12) !important;
  caret-color: #fff;
}

.jx-form-remember {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.jx-form-remember label {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 0;
}

.jx-form-remember a {
  font-size: .82rem;
  font-weight: 600;
  color: var(--jx-primary-light);
}
.jx-form-remember a:hover {
  color: #fff;
}

.jx-hero-form .jx-btn {
  width: 100%;
  justify-content: center;
}

.jx-form-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
  color: rgba(255, 255, 255, .3);
  font-size: .8rem;
}

.jx-form-divider::before,
.jx-form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .1);
}

.jx-form-signup-link {
  text-align: center;
  font-size: .88rem;
  color: rgba(255, 255, 255, .5);
}
.jx-form-signup-link a {
  color: var(--jx-primary-light);
  font-weight: 600;
}
.jx-form-signup-link a:hover {
  color: #fff;
}

/* ── Flash Messages ───────────────────────────────────────── */
.jx-alert {
  padding: 14px 20px;
  border-radius: var(--jx-radius);
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.jx-alert-error {
  background: rgba(239, 68, 68, .12);
  border: 1px solid rgba(239, 68, 68, .2);
  color: #fca5a5;
}

.jx-alert-success {
  background: rgba(16, 185, 129, .12);
  border: 1px solid rgba(16, 185, 129, .2);
  color: #6ee7b7;
}

/* ── Stats Bar ────────────────────────────────────────────── */
.jx-stats {
  background: var(--jx-gray-50);
  padding: 60px 0;
  border-bottom: 1px solid var(--jx-gray-200);
}

.jx-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.jx-stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.jx-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: var(--jx-gray-200);
}

.jx-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(79, 70, 229, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--jx-primary);
  font-size: 1.2rem;
}

.jx-stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--jx-dark);
  line-height: 1.2;
  letter-spacing: -.02em;
}

.jx-stat-label {
  font-size: .88rem;
  color: var(--jx-gray-500);
  font-weight: 500;
  margin-top: 4px;
}

/* ── Features ─────────────────────────────────────────────── */
.jx-features {
  padding: var(--jx-section-py) 0;
  background: #fff;
}

.jx-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.jx-feature-card {
  padding: 36px 30px;
  border-radius: var(--jx-radius-lg);
  border: 1px solid var(--jx-gray-200);
  background: #fff;
  transition: var(--jx-transition);
  position: relative;
  overflow: hidden;
}

.jx-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--jx-gradient);
  opacity: 0;
  transition: var(--jx-transition);
}

.jx-feature-card:hover {
  border-color: transparent;
  box-shadow: var(--jx-shadow-lg);
  transform: translateY(-6px);
}

.jx-feature-card:hover::before {
  opacity: 1;
}

.jx-feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 22px;
  transition: var(--jx-transition);
}

.jx-feature-icon.icon-purple {
  background: rgba(79, 70, 229, .08);
  color: var(--jx-primary);
}
.jx-feature-icon.icon-blue {
  background: rgba(14, 165, 233, .08);
  color: var(--jx-secondary);
}
.jx-feature-icon.icon-green {
  background: rgba(16, 185, 129, .08);
  color: var(--jx-success);
}
.jx-feature-icon.icon-amber {
  background: rgba(245, 158, 11, .08);
  color: var(--jx-warning);
}
.jx-feature-icon.icon-indigo {
  background: rgba(55, 48, 163, .08);
  color: var(--jx-primary-dark);
}
.jx-feature-icon.icon-sky {
  background: rgba(14, 165, 233, .08);
  color: var(--jx-secondary);
}

.jx-feature-card:hover .jx-feature-icon {
  transform: scale(1.1);
}

.jx-feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--jx-dark);
  margin-bottom: 10px;
}

.jx-feature-text {
  font-size: .92rem;
  color: var(--jx-gray-500);
  line-height: 1.7;
}

/* ── How It Works ─────────────────────────────────────────── */
.jx-how {
  padding: var(--jx-section-py) 0;
  background: var(--jx-gray-50);
}

.jx-how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* Connecting line */
.jx-how-steps::before {
  content: '';
  position: absolute;
  top: 55px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(90deg, var(--jx-primary) 0%, var(--jx-secondary) 100%);
  z-index: 0;
}

.jx-how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.jx-how-number {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px;
  position: relative;
  box-shadow: var(--jx-shadow-md);
  transition: var(--jx-transition);
}

.jx-how-number::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--jx-gradient);
  z-index: -1;
  opacity: 0;
  transition: var(--jx-transition);
}

.jx-how-step:hover .jx-how-number::before {
  opacity: 1;
}

.jx-how-step:hover .jx-how-number {
  transform: scale(1.05);
}

.jx-how-number i {
  font-size: 2rem;
  background: var(--jx-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.jx-how-step-num {
  position: absolute;
  top: -6px;
  right: -2px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--jx-gradient);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(79, 70, 229, .35);
}

.jx-how-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--jx-dark);
  margin-bottom: 8px;
}

.jx-how-text {
  font-size: .9rem;
  color: var(--jx-gray-500);
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}

/* ── Pricing ──────────────────────────────────────────────── */
.jx-pricing {
  padding: var(--jx-section-py) 0;
  background: #fff;
}

.jx-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.jx-price-card {
  border-radius: var(--jx-radius-xl);
  border: 1px solid var(--jx-gray-200);
  padding: 44px 36px;
  background: #fff;
  text-align: center;
  transition: var(--jx-transition);
  position: relative;
}

.jx-price-card:hover {
  border-color: transparent;
  box-shadow: var(--jx-shadow-lg);
  transform: translateY(-8px);
}

/* Popular card */
.jx-price-card.popular {
  border: 2px solid var(--jx-primary);
  background: #fff;
  box-shadow: var(--jx-shadow-xl), var(--jx-shadow-glow);
  transform: scale(1.06);
  z-index: 2;
  padding: 52px 36px;
}

.jx-price-card.popular:hover {
  transform: scale(1.06) translateY(-8px);
}

.jx-price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 22px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #fff;
  background: var(--jx-gradient);
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(79, 70, 229, .35);
}

.jx-price-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--jx-dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.jx-price-desc {
  font-size: .85rem;
  color: var(--jx-gray-500);
  margin-bottom: 24px;
}

.jx-price-amount {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

.jx-price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--jx-gray-500);
  line-height: 1.8;
}

.jx-price-value {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--jx-dark);
  letter-spacing: -.03em;
}

.jx-price-unit {
  font-size: .88rem;
  color: var(--jx-gray-500);
  font-weight: 500;
  margin-bottom: 24px;
}

.jx-price-features {
  text-align: left;
  margin-bottom: 30px;
}

.jx-price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: .9rem;
  color: var(--jx-gray-600);
  border-bottom: 1px solid var(--jx-gray-100);
}

.jx-price-features li:last-child {
  border-bottom: none;
}

.jx-price-features li i {
  color: var(--jx-success);
  font-size: .8rem;
  flex-shrink: 0;
}

.jx-price-card .jx-btn {
  width: 100%;
  justify-content: center;
}

.jx-price-card .jx-btn-outline-dark {
  border-color: var(--jx-gray-200);
  color: var(--jx-gray-700);
}
.jx-price-card .jx-btn-outline-dark:hover {
  border-color: var(--jx-primary);
  background: var(--jx-primary);
  color: #fff;
}

/* ── Testimonials ─────────────────────────────────────────── */
.jx-testimonials {
  padding: var(--jx-section-py) 0;
  background: var(--jx-gray-50);
}

.jx-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.jx-testimonial-card {
  background: #fff;
  border-radius: var(--jx-radius-lg);
  padding: 36px 30px;
  border: 1px solid var(--jx-gray-200);
  transition: var(--jx-transition);
  position: relative;
}

.jx-testimonial-card:hover {
  border-color: transparent;
  box-shadow: var(--jx-shadow-lg);
  transform: translateY(-4px);
}

.jx-testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.jx-testimonial-stars i {
  color: var(--jx-warning);
  font-size: .9rem;
}

.jx-testimonial-quote {
  font-size: .95rem;
  color: var(--jx-gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
}

.jx-testimonial-quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--jx-primary-light);
  opacity: .3;
  position: absolute;
  top: -20px;
  left: -4px;
  font-family: Georgia, serif;
  line-height: 1;
}

.jx-testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.jx-testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--jx-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.jx-testimonial-name {
  font-size: .95rem;
  font-weight: 700;
  color: var(--jx-dark);
}

.jx-testimonial-role {
  font-size: .82rem;
  color: var(--jx-gray-500);
}

/* ── CTA Section ──────────────────────────────────────────── */
.jx-cta {
  padding: 90px 0;
  background: var(--jx-gradient-hero);
  position: relative;
  overflow: hidden;
}

.jx-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 30% 50%, rgba(79, 70, 229, .3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 70% 50%, rgba(14, 165, 233, .2) 0%, transparent 60%);
  pointer-events: none;
}

.jx-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.jx-cta h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: -.02em;
}

.jx-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 36px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.jx-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── Footer ───────────────────────────────────────────────── */
.jx-footer {
  background: var(--jx-dark);
  color: rgba(255, 255, 255, .6);
  padding: 80px 0 0;
}

.jx-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.jx-footer-about .jx-logo {
  margin-bottom: 18px;
}

.jx-footer-about .jx-logo .jx-logo-text {
  color: #fff;
}

.jx-footer-about p {
  font-size: .9rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 22px;
}

.jx-footer-social {
  display: flex;
  gap: 10px;
}

.jx-footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  font-size: .9rem;
  transition: var(--jx-transition);
}

.jx-footer-social a:hover {
  background: var(--jx-primary);
  border-color: var(--jx-primary);
  color: #fff;
  transform: translateY(-3px);
}

.jx-footer-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: .02em;
}

.jx-footer-links li {
  margin-bottom: 12px;
}

.jx-footer-links a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .45);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--jx-transition);
}

.jx-footer-links a:hover {
  color: var(--jx-primary-light);
  transform: translateX(4px);
}

.jx-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .45);
}

.jx-footer-contact li i {
  color: var(--jx-primary-light);
  margin-top: 4px;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

/* Newsletter */
.jx-newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.jx-newsletter-input {
  flex: 1;
  padding: 12px 16px;
  font-family: var(--jx-font);
  font-size: .88rem;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--jx-radius);
  outline: none;
  transition: var(--jx-transition);
}

.jx-newsletter-input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.jx-newsletter-input:focus {
  border-color: var(--jx-primary-light);
  background: rgba(255, 255, 255, .08);
}

.jx-newsletter-btn {
  padding: 12px 20px;
  background: var(--jx-gradient);
  border: none;
  border-radius: var(--jx-radius);
  color: #fff;
  cursor: pointer;
  transition: var(--jx-transition);
  font-family: var(--jx-font);
}

.jx-newsletter-btn:hover {
  box-shadow: 0 4px 15px rgba(79, 70, 229, .4);
  transform: translateY(-2px);
}

/* Footer bottom */
.jx-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: .82rem;
  color: rgba(255, 255, 255, .35);
}

.jx-footer-bottom-links {
  display: flex;
  gap: 24px;
}

.jx-footer-bottom-links a {
  color: rgba(255, 255, 255, .35);
  transition: var(--jx-transition);
}

.jx-footer-bottom-links a:hover {
  color: var(--jx-primary-light);
}

/* ── Signup Modal ─────────────────────────────────────────── */
.jx-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--jx-transition);
  padding: 20px;
}

.jx-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.jx-modal {
  background: #fff;
  border-radius: var(--jx-radius-xl);
  padding: 44px 40px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--jx-shadow-xl);
  transform: translateY(20px) scale(.97);
  transition: var(--jx-transition);
}

.jx-modal-overlay.active .jx-modal {
  transform: translateY(0) scale(1);
}

.jx-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--jx-gray-100);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--jx-gray-500);
  font-size: 1rem;
  transition: var(--jx-transition);
}

.jx-modal-close:hover {
  background: var(--jx-gray-200);
  color: var(--jx-dark);
}

.jx-modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.jx-modal-logo {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--jx-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #fff;
  font-size: 1.3rem;
}

.jx-modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--jx-dark);
  margin-bottom: 6px;
}

.jx-modal-subtitle {
  font-size: .88rem;
  color: var(--jx-gray-500);
}

/* Modal form fields */
.jx-modal .jx-mform-group {
  margin-bottom: 16px;
}

.jx-modal .jx-mform-group label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: var(--jx-gray-700);
  margin-bottom: 6px;
}

.jx-modal .jx-mform-input {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--jx-font);
  font-size: .9rem;
  color: var(--jx-dark);
  background: var(--jx-gray-50);
  border: 1.5px solid var(--jx-gray-200);
  border-radius: var(--jx-radius);
  outline: none;
  transition: var(--jx-transition);
}

.jx-modal .jx-mform-input::placeholder {
  color: var(--jx-gray-400);
}

.jx-modal .jx-mform-input:focus {
  border-color: var(--jx-primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, .08);
}

.jx-modal .jx-mform-select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--jx-font);
  font-size: .9rem;
  color: var(--jx-dark);
  background: var(--jx-gray-50);
  border: 1.5px solid var(--jx-gray-200);
  border-radius: var(--jx-radius);
  outline: none;
  transition: var(--jx-transition);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2394a3b8'%3E%3Cpath fill-rule='evenodd' d='M5.23 7.21a.75.75 0 011.06.02L10 11.168l3.71-3.938a.75.75 0 111.08 1.04l-4.25 4.5a.75.75 0 01-1.08 0l-4.25-4.5a.75.75 0 01.02-1.06z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
}

.jx-modal .jx-mform-select:focus {
  border-color: var(--jx-primary);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, .08);
}

.jx-modal .jx-mform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.jx-modal .jx-btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.jx-modal-footer {
  text-align: center;
  margin-top: 20px;
  font-size: .86rem;
  color: var(--jx-gray-500);
}

.jx-modal-footer a {
  color: var(--jx-primary);
  font-weight: 600;
}
.jx-modal-footer a:hover {
  color: var(--jx-primary-dark);
}

/* ── Auth Pages (standalone login/forgot/reset) ───────────── */
.jx-auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--jx-gradient-hero);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.jx-auth-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 60%, rgba(79, 70, 229, .25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 30%, rgba(14, 165, 233, .2) 0%, transparent 60%);
  pointer-events: none;
}

.jx-auth-card {
  background: rgba(255, 255, 255, .06);
  backdrop-filter: blur(var(--jx-glass-blur));
  -webkit-backdrop-filter: blur(var(--jx-glass-blur));
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--jx-radius-xl);
  padding: 48px 40px;
  max-width: 440px;
  width: 100%;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
}

.jx-auth-logo {
  text-align: center;
  margin-bottom: 30px;
}

.jx-auth-logo .jx-logo {
  justify-content: center;
}

.jx-auth-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 8px;
}

.jx-auth-subtitle {
  font-size: .9rem;
  color: rgba(255, 255, 255, .5);
  text-align: center;
  margin-bottom: 30px;
}

/* ── Scroll Reveal Animations ─────────────────────────────── */
.jx-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1),
              transform .7s cubic-bezier(.4, 0, .2, 1);
}

.jx-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.jx-reveal-delay-1 { transition-delay: .1s; }
.jx-reveal-delay-2 { transition-delay: .2s; }
.jx-reveal-delay-3 { transition-delay: .3s; }
.jx-reveal-delay-4 { transition-delay: .4s; }
.jx-reveal-delay-5 { transition-delay: .5s; }
.jx-reveal-delay-6 { transition-delay: .6s; }

/* ── Keyframe Animations ──────────────────────────────────── */
@keyframes jxFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-20px) translateX(10px); }
  50% { transform: translateY(-10px) translateX(-10px); }
  75% { transform: translateY(-25px) translateX(5px); }
}

@keyframes jxPulse {
  0%, 100% { opacity: .08; transform: scale(1); }
  50% { opacity: .15; transform: scale(1.15); }
}

@keyframes jxSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes jxFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes jxCountUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes jxShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Hero content entrance */
.jx-hero-content .jx-hero-badge { animation: jxFadeInUp .6s ease both; }
.jx-hero-content h1 { animation: jxFadeInUp .6s ease .1s both; }
.jx-hero-content .jx-hero-text { animation: jxFadeInUp .6s ease .2s both; }
.jx-hero-content .jx-hero-buttons { animation: jxFadeInUp .6s ease .3s both; }
.jx-hero-content .jx-hero-trust { animation: jxFadeInUp .6s ease .4s both; }
.jx-hero-form-wrap .jx-hero-form { animation: jxFadeInUp .7s ease .3s both; }

/* ── Responsive ───────────────────────────────────────────── */

/* Large screens down */
@media (max-width: 1199.98px) {
  .jx-hero h1 { font-size: 3rem; }
  .jx-section-title { font-size: 2.2rem; }
  .jx-cta h2 { font-size: 2.4rem; }
}

/* Tablet (992px) */
@media (max-width: 991.98px) {
  :root { --jx-section-py: 80px; }

  /* Navbar mobile */
  .jx-nav-links,
  .jx-nav-actions { display: none; }
  .jx-nav-toggle { display: flex; }
  .jx-mobile-menu { display: flex; }

  /* Hero */
  .jx-hero { padding: 120px 0 60px; }
  .jx-hero h1 { font-size: 2.6rem; }
  .jx-hero-form-wrap { margin-top: 50px; }
  .jx-hero-form { margin-left: 0; max-width: 100%; }

  /* Stats */
  .jx-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .jx-stat-item:nth-child(2)::after { display: none; }

  /* Features */
  .jx-features-grid { grid-template-columns: repeat(2, 1fr); }

  /* How it works */
  .jx-how-steps { grid-template-columns: 1fr; max-width: 360px; }
  .jx-how-steps::before { display: none; }

  /* Pricing */
  .jx-pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .jx-price-card.popular { transform: scale(1); }
  .jx-price-card.popular:hover { transform: translateY(-8px); }

  /* Testimonials */
  .jx-testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  /* Footer */
  .jx-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }

  /* CTA */
  .jx-cta h2 { font-size: 2rem; }
}

/* Mobile (768px) */
@media (max-width: 767.98px) {
  :root { --jx-section-py: 70px; }

  .jx-hero h1 { font-size: 2.2rem; }
  .jx-hero-text { font-size: 1rem; }
  .jx-section-title { font-size: 1.9rem; }

  .jx-hero-buttons { flex-direction: column; }
  .jx-hero-buttons .jx-btn { width: 100%; }

  .jx-hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }

  .jx-features-grid { grid-template-columns: 1fr; }

  .jx-footer-grid { grid-template-columns: 1fr; gap: 36px; }

  .jx-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .jx-modal { padding: 30px 24px; }
  .jx-modal .jx-mform-row { grid-template-columns: 1fr; }

  .jx-cta h2 { font-size: 1.75rem; }
  .jx-cta p { font-size: 1rem; }

  .jx-price-card { padding: 36px 28px; }

  .jx-stat-item::after { display: none; }
}

/* Small mobile (576px) */
@media (max-width: 575.98px) {
  .jx-hero { padding: 100px 0 50px; }
  .jx-hero h1 { font-size: 1.85rem; }
  .jx-section-title { font-size: 1.65rem; }
  .jx-hero-form { padding: 30px 24px; }
  .jx-stat-number { font-size: 1.8rem; }
  .jx-stats-grid { grid-template-columns: 1fr 1fr; }
  .jx-newsletter-form { flex-direction: column; }
  .jx-auth-card { padding: 36px 24px; }
}

/* ── Utility: Scrollbar ───────────────────────────────────── */
.jx-modal::-webkit-scrollbar { width: 6px; }
.jx-modal::-webkit-scrollbar-track { background: transparent; }
.jx-modal::-webkit-scrollbar-thumb {
  background: var(--jx-gray-300);
  border-radius: 10px;
}

/* ── Inner-page compat (jxl- aliased to jx- after rename) ── */
/* Navbar inner-page structure */
.jx-nav-menu {
  display: flex; align-items: center; gap: 8px;
}
.jx-nav-menu .jx-nav-link {
  color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px;
  font-weight: 500; padding: 8px 14px; border-radius: 8px;
  transition: var(--jx-transition);
}
.jx-nav-menu .jx-nav-link:hover,
.jx-nav-menu .jx-nav-link.active { color: #fff; background: rgba(255,255,255,0.1); }
.jx-navbar.scrolled .jx-nav-menu .jx-nav-link { color: var(--jx-gray-600); }
.jx-navbar.scrolled .jx-nav-menu .jx-nav-link:hover,
.jx-navbar.scrolled .jx-nav-menu .jx-nav-link.active { color: var(--jx-primary); background: var(--jx-primary);  background: rgba(79,70,229,0.08); }
.jx-menu-toggle {
  display: none; background: none; border: none; color: #fff;
  font-size: 24px; cursor: pointer; padding: 4px;
}
.jx-navbar.scrolled .jx-menu-toggle { color: var(--jx-gray-700); }

/* Page hero (inner pages) */
.jx-page-hero {
  background: #020617;
  padding: 140px 0 60px; text-align: center; position: relative; overflow: hidden;
}
.jx-page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 500px at 30% 50%, rgba(79,70,229,.14) 0%, transparent 70%),
    radial-gradient(circle 400px at 75% 40%, rgba(14,165,233,.1) 0%, transparent 70%);
  pointer-events: none;
}
.jx-page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle 1.5px at center, rgba(79,70,229,.2) 0%, transparent 100%);
  background-size: 40px 40px;
  pointer-events: none;
}
.jx-page-hero h1 {
  color: #fff; font-size: clamp(28px, 5vw, 42px); font-weight: 800; margin-bottom: 12px;
}
.jx-breadcrumb {
  list-style: none; display: flex; justify-content: center; gap: 8px;
  padding: 0; margin: 0; font-size: 14px;
}
.jx-breadcrumb li { color: rgba(255,255,255,0.5); }
.jx-breadcrumb li a { color: rgba(255,255,255,0.7); text-decoration: none; }
.jx-breadcrumb li a:hover { color: #fff; }
.jx-breadcrumb li + li::before { content: '/'; margin-right: 8px; color: rgba(255,255,255,0.3); }

/* Section light bg */
.jx-section-light { background: var(--jx-gray-50); }

/* Label badge */
.jx-label {
  display: inline-block; padding: 6px 16px; border-radius: 50px; font-size: 13px;
  font-weight: 600; color: var(--jx-primary); background: rgba(79,70,229,0.1);
  margin-bottom: 12px;
}

/* Generic buttons */
.jx-btn-primary {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
  background: var(--jx-gradient); color: #fff; border: none; border-radius: 10px;
  font-weight: 600; font-size: 15px; cursor: pointer; text-decoration: none;
  transition: var(--jx-transition); box-shadow: 0 4px 15px rgba(79,70,229,0.3);
}
.jx-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(79,70,229,0.4); color: #fff; text-decoration: none; }
.jx-btn-outline {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px;
  background: transparent; color: var(--jx-primary); border: 2px solid var(--jx-primary);
  border-radius: 10px; font-weight: 600; font-size: 15px; cursor: pointer; text-decoration: none;
  transition: var(--jx-transition);
}
.jx-btn-outline:hover { background: var(--jx-primary); color: #fff; text-decoration: none; }
.jx-btn-block { width: 100%; justify-content: center; }
.jx-btn-lg { padding: 14px 32px; font-size: 16px; }

/* Input */
.jx-input {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--jx-gray-200);
  border-radius: 10px; font-size: 14px; font-family: var(--jx-font);
  transition: var(--jx-transition); outline: none; background: #fff;
}
.jx-input:focus { border-color: var(--jx-primary); box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }

/* Feature card (inner pages) */
.jx-feature-icon {
  width: 56px; height: 56px; border-radius: 14px; display: flex;
  align-items: center; justify-content: center; color: #fff; font-size: 22px;
  margin-bottom: 16px;
}

/* Pricing card tweaks */
.jx-pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--jx-gradient); color: #fff; padding: 4px 18px;
  border-radius: 50px; font-size: 12px; font-weight: 700; white-space: nowrap;
}
.jx-pricing-card {
  background: #fff; border-radius: var(--jx-radius-lg); padding: 32px 28px;
  border: 1.5px solid var(--jx-gray-200); text-align: center; position: relative;
  transition: var(--jx-transition);
}
.jx-pricing-card:hover { transform: translateY(-6px); box-shadow: var(--jx-shadow-lg); }
.jx-pricing-card.featured { border-color: var(--jx-primary); box-shadow: var(--jx-shadow-glow); transform: scale(1.03); }
.jx-pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.jx-pricing-header h5 { font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.jx-pricing-amount { font-size: 48px; font-weight: 800; color: var(--jx-primary); line-height: 1; }
.jx-pricing-currency { font-size: 20px; font-weight: 600; vertical-align: super; }
.jx-pricing-range { background: var(--jx-gray-50); border-radius: 8px; padding: 8px 16px; font-size: 13px; font-weight: 600; color: var(--jx-gray-600); margin: 16px 0; }
.jx-pricing-features { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.jx-pricing-features li { padding: 8px 0; font-size: 14px; color: var(--jx-gray-600); display: flex; align-items: center; gap: 10px; border-bottom: 1px solid var(--jx-gray-100); }
.jx-pricing-features li i { font-size: 12px; }
.jx-pricing-features li .fa-check { color: var(--jx-success); }
.jx-pricing-features li .fa-times { color: var(--jx-gray-300); }
.jx-pricing-features li.disabled { color: var(--jx-gray-400); }

/* FAQ accordion */
.jx-faq-item, .jx-accordion-item {
  background: #fff; border: 1.5px solid var(--jx-gray-200); border-radius: var(--jx-radius);
  margin-bottom: 12px; overflow: hidden; transition: var(--jx-transition);
}
.jx-faq-item:hover, .jx-accordion-item:hover { border-color: var(--jx-gray-300); }

.jx-faq-question, .jx-accordion-btn {
  width: 100%; padding: 18px 24px; font-weight: 600; font-size: 15px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: var(--jx-transition); background: none; border: none; text-align: left;
  font-family: var(--jx-font); color: var(--jx-gray-700);
}
.jx-faq-question:hover, .jx-accordion-btn:hover { color: var(--jx-primary); }
.jx-faq-question i, .jx-accordion-btn i { transition: transform 0.3s; font-size: 14px; color: var(--jx-gray-400); }

.jx-faq-item.open .jx-faq-question i,
.jx-accordion-item.active .jx-accordion-btn i { transform: rotate(180deg); color: var(--jx-primary); }

.jx-faq-answer, .jx-accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease;
}
.jx-faq-item.open .jx-faq-answer,
.jx-accordion-item.active .jx-accordion-body {
  max-height: 400px;
}
.jx-accordion-content {
  padding: 0 24px 20px; font-size: 14px; color: var(--jx-gray-500); line-height: 1.8;
}
.jx-faq-answer {
  font-size: 14px; color: var(--jx-gray-500); line-height: 1.8;
  padding: 0 24px;
}
.jx-faq-item.open .jx-faq-answer { padding-bottom: 18px; }

/* Active state highlight */
.jx-accordion-item.active { border-color: var(--jx-primary); box-shadow: 0 2px 12px rgba(79,70,229,0.08); }
.jx-accordion-item.active .jx-accordion-btn { color: var(--jx-primary); }

/* Contact card */
.jx-contact-card {
  background: #fff; border-radius: var(--jx-radius-lg); padding: 28px; text-align: center;
  border: 1.5px solid var(--jx-gray-200); transition: var(--jx-transition);
}
.jx-contact-card:hover { transform: translateY(-4px); box-shadow: var(--jx-shadow-md); }
.jx-contact-icon {
  width: 56px; height: 56px; border-radius: 14px; display: flex;
  align-items: center; justify-content: center; color: #fff; font-size: 22px;
  margin: 0 auto 14px;
}

/* Story section */
.jx-story-image {
  background: var(--jx-gradient); border-radius: var(--jx-radius-xl); padding: 48px 32px;
  text-align: center; color: #fff; min-height: 320px; display: flex;
  align-items: center; justify-content: center;
}
.jx-story-stats h3 { font-size: 48px; font-weight: 800; margin-bottom: 4px; }
.jx-story-stats p { font-size: 16px; opacity: 0.8; }

/* Values card */
.jx-value-card {
  background: #fff; border-radius: var(--jx-radius-lg); padding: 28px; text-align: center;
  border: 1.5px solid var(--jx-gray-200); transition: var(--jx-transition); height: 100%;
}
.jx-value-card:hover { transform: translateY(-4px); box-shadow: var(--jx-shadow-md); }
.jx-value-icon {
  width: 56px; height: 56px; border-radius: 14px; display: flex;
  align-items: center; justify-content: center; color: #fff; font-size: 22px;
  margin: 0 auto 14px;
}

/* CTA section */
.jx-cta {
  background: var(--jx-gradient-hero); padding: 80px 0; position: relative; overflow: hidden;
}

/* Footer (inner pages) */
.jx-footer-brand { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.jx-footer-brand .jx-logo-icon { width: 36px; height: 36px; font-size: 14px; }
.jx-footer-title { color: #fff; font-weight: 700; font-size: 15px; margin-bottom: 16px; }
.jx-footer-text { color: rgba(255,255,255,0.5); font-size: 14px; line-height: 1.7; }
.jx-footer-links { list-style: none; padding: 0; margin: 0; }
.jx-footer-links li { padding: 5px 0; font-size: 14px; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 8px; }
.jx-footer-links li a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.jx-footer-links li a:hover { color: #fff; }
.jx-footer-links li i { font-size: 13px; width: 16px; color: var(--jx-primary-light); }
.jx-social-links { display: flex; gap: 10px; margin-top: 16px; }
.jx-social-links a {
  width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center;
  justify-content: center; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5);
  text-decoration: none; transition: var(--jx-transition);
}
.jx-social-links a:hover { background: var(--jx-primary); color: #fff; }
.jx-footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; margin-top: 40px; text-align: center; }
.jx-footer-bottom p { color: rgba(255,255,255,0.3); font-size: 13px; margin: 0; }

/* Modal overlay */
.jx-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 16px;
}
.jx-modal {
  background: #fff; border-radius: var(--jx-radius-lg); padding: 36px; width: 100%;
  max-width: 500px; position: relative; max-height: 90vh; overflow-y: auto;
  box-shadow: var(--jx-shadow-xl);
}
.jx-modal-close {
  position: absolute; top: 16px; right: 20px; background: none; border: none;
  font-size: 28px; color: var(--jx-gray-400); cursor: pointer; line-height: 1;
}
.jx-modal-close:hover { color: var(--jx-gray-700); }

/* Auth pages (forgot/reset) */
.jx-auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--jx-gradient-hero); padding: 24px; position: relative; overflow: hidden;
}
.jx-auth-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15;
}
.jx-auth-card {
  background: #fff; border-radius: var(--jx-radius-xl); width: 100%; max-width: 420px;
  overflow: hidden; box-shadow: var(--jx-shadow-xl); position: relative; z-index: 2;
}
.jx-auth-header {
  background: var(--jx-gradient); padding: 32px; text-align: center; color: #fff;
}
.jx-auth-header i { font-size: 32px; margin-bottom: 12px; opacity: 0.8; }
.jx-auth-header h3 { font-weight: 800; font-size: 22px; margin-bottom: 4px; }
.jx-auth-header p { opacity: 0.75; font-size: 14px; margin: 0; }
.jx-auth-body { padding: 32px; }
.jx-auth-input-wrap {
  position: relative; margin-bottom: 16px;
}
.jx-auth-input-wrap i {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: var(--jx-gray-400); font-size: 14px;
}
.jx-auth-input-wrap input {
  width: 100%; padding: 12px 16px 12px 42px; border: 1.5px solid var(--jx-gray-200);
  border-radius: 10px; font-size: 14px; font-family: var(--jx-font); outline: none;
  transition: var(--jx-transition);
}
.jx-auth-input-wrap input:focus { border-color: var(--jx-primary); box-shadow: 0 0 0 3px rgba(79,70,229,0.1); }

/* Reveal animation */
.jx-reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.jx-reveal.revealed { opacity: 1; transform: translateY(0); }

/* Responsive inner-page nav */
@media (max-width: 991.98px) {
  .jx-nav-menu {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--jx-dark); flex-direction: column; align-items: center;
    justify-content: center; gap: 12px; z-index: 9998;
  }
  .jx-nav-menu.active { display: flex; }
  .jx-nav-menu .jx-nav-link { font-size: 18px; padding: 12px 24px; }
  .jx-menu-toggle { display: block; z-index: 9999; }
}

/* ── Print ────────────────────────────────────────────────── */
@media print {
  .jx-navbar,
  .jx-modal-overlay,
  .jx-hero-blob,
  .jx-hero-shape { display: none !important; }
  .jx-hero { min-height: auto; padding: 40px 0; }
  body.jx-landing { color: #000; }
}
