/* =============================================================================
   JEDU SCHOOL ERP — SAAS DESIGN SYSTEM
   ============================================================================= */

:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', sans-serif;

  --j-indigo: #4f46e5;
  --j-indigo-hover: #4338ca;
  --j-indigo-light: #eef2ff;
  --j-indigo-glow: rgba(79, 70, 229, 0.25);
  
  --j-cyan: #06b6d4;
  --j-cyan-light: #ecfeff;
  --j-cyan-glow: rgba(6, 182, 212, 0.25);

  --j-green: #16a34a;
  --j-green-dark: #15803d;
  --j-navy: #0f172a;
  --j-mint: #f3faf5;
  --j-emerald: #10b981;
  --j-emerald-light: #ecfdf5;
  --j-whatsapp: #25d366;
  --j-amber: #f59e0b;
  --j-rose: #f43f5e;
  --j-violet: #8b5cf6;

  --j-bg-dark: #080c14;
  --j-card-dark: #0f172a;
  --j-card-dark-glass: rgba(15, 23, 42, 0.75);
  --j-border-dark: rgba(255, 255, 255, 0.08);
  --j-border-glow: rgba(99, 102, 241, 0.35);

  --j-bg-light: #ffffff;
  --j-bg-subtle: #f8fafc;
  --j-card-light: #ffffff;
  --j-border-light: #e2e8f0;

  --j-text-primary: #0f172a;
  --j-text-secondary: #475569;
  --j-text-muted: #94a3b8;
  --j-text-white: #ffffff;
  --j-text-white-dim: #cbd5e1;

  --j-shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --j-shadow-md: 0 4px 14px -2px rgba(15, 23, 42, 0.08), 0 2px 6px -2px rgba(15, 23, 42, 0.04);
  --j-shadow-lg: 0 12px 28px -4px rgba(15, 23, 42, 0.12), 0 4px 12px -2px rgba(15, 23, 42, 0.05);
  --j-shadow-xl: 0 24px 48px -12px rgba(15, 23, 42, 0.18);
  --j-shadow-glow: 0 0 40px rgba(79, 70, 229, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-pill: 9999px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--j-text-primary);
  background-color: var(--j-bg-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--j-text-primary);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.j-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.j-container-wide {
  max-width: 1440px;
}

.text-gradient {
  background: linear-gradient(135deg, #4f46e5 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.j-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
}

.j-btn:focus-visible,
.j-nav-link:focus-visible,
.j-hero-connect:focus-visible,
.j-hero-quiet:focus-visible,
.j-mobile-toggle:focus-visible,
.j-drawer-close:focus-visible,
.j-floating-wa:focus-visible {
  outline: 2px solid var(--j-green);
  outline-offset: 3px;
}

.j-btn-primary {
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.j-btn-primary:hover {
  background: linear-gradient(135deg, #4338ca 0%, #3730a3 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(79, 70, 229, 0.45);
  color: #ffffff;
}

.j-btn-secondary {
  background: #ffffff;
  color: var(--j-navy);
  border-color: #dbe3ea;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.j-btn-secondary:hover {
  background: var(--j-bg-subtle);
  border-color: #cbd5e1;
  transform: translateY(-1px);
}

.j-btn-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  backdrop-filter: blur(10px);
  border-color: rgba(255, 255, 255, 0.15);
}

.j-btn-dark:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
  color: #ffffff;
}

.j-btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.j-btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
  color: #ffffff;
}

.j-btn-lg {
  font-size: 1.05rem;
  padding: 14px 30px;
}

.j-btn-sm {
  font-size: 0.88rem;
  padding: 10px 18px;
}

.j-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.j-pill-indigo {
  background: rgba(79, 70, 229, 0.12);
  color: #4f46e5;
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.j-pill-emerald {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.j-pill-dark {
  background: rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.j-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.j-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.j-nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 84px;
}

.j-brand {
  display: flex;
  align-items: center;
  justify-self: start;
  grid-column: 1;
}

.j-brand img {
  height: 52px;
  width: auto;
}

.j-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  justify-self: center;
  grid-column: 2;
}

.j-nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #334155;
  padding: 8px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.j-nav-link:hover,
.j-nav-link.active {
  color: var(--j-navy);
  background: #e8f7ee;
}

.j-nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  grid-column: 3;
}

.j-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.45rem;
  color: var(--j-navy);
  cursor: pointer;
}

.j-dropdown {
  position: relative;
}

.j-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -120px;
  width: 640px;
  background: #ffffff;
  border: 1px solid var(--j-border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--j-shadow-xl);
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 1050;
}

.j-dropdown:hover .j-dropdown-menu,
.j-dropdown.open .j-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.j-dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.j-dropdown-item:hover {
  background: var(--j-bg-subtle);
  transform: translateX(4px);
}

.j-dropdown-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.j-dropdown-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--j-text-primary);
}

.j-dropdown-text p {
  font-size: 0.8rem;
  color: var(--j-text-muted);
  line-height: 1.4;
}

.j-drawer {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  backdrop-filter: blur(8px);
}

.j-drawer[hidden] {
  display: none !important;
}

.j-drawer-panel {
  background: #ffffff;
  width: 85%;
  max-width: 320px;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}

.j-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.j-drawer-head .j-brand img {
  height: 44px;
}

.j-drawer-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

.j-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.j-drawer-links a {
  display: block;
  font-weight: 600;
  padding: 10px 0;
  color: #0f172a;
}

.j-drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.j-hero {
  position: relative;
  background: #ffffff;
  color: var(--j-navy);
  padding: 28px 0 48px;
  overflow: hidden;
}

.j-hero-haze {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 58% 70% at 78% 42%, rgba(34, 197, 94, 0.14) 0%, transparent 62%),
    radial-gradient(ellipse 42% 48% at 12% 18%, rgba(255, 255, 255, 0.9) 0%, transparent 70%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 38%, #eef8f1 100%);
}

.j-hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: 36px 40px;
  align-items: center;
}

.j-hero-copy {
  max-width: 540px;
  animation: fadeIn 0.7s ease both;
}

.j-hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 22px;
}

.j-hero-avatars {
  display: flex;
  align-items: center;
}

.j-av {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  color: #fff;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.1);
  margin-left: -8px;
}

.j-av:first-child { margin-left: 0; }
.j-av-stu { background: #2563eb; }
.j-av-cloud { background: #16a34a; }
.j-av-fee { background: #059669; }
.j-av-wa { background: #25d366; }

.j-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.2vw, 4.6rem);
  font-weight: 800;
  color: var(--j-navy);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.j-hero h1 em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: var(--j-green);
  letter-spacing: -0.02em;
}

.j-hero p.hero-subtitle {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.6;
  max-width: 520px;
  margin: 0 0 24px;
  font-weight: 500;
}

.j-hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.j-hero-connect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 270px;
  height: 56px;
  padding: 0 22px 0 10px;
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.32);
}

.j-hero-connect:hover {
  background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
  color: #fff;
  transform: translateY(-1px);
}

.j-hero-plus {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1;
}

.j-hero-quiet {
  font-size: 1rem;
  font-weight: 700;
  color: var(--j-navy);
  border-bottom: 1px solid rgba(15, 23, 42, 0.28);
  padding-bottom: 3px;
}

.j-hero-quiet:hover { color: var(--j-green); border-color: var(--j-green); }

.j-hero-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 520px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(187, 220, 198, 0.8);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.j-hero-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  border-left: 1px solid #dbe8de;
  border-top: 1px solid #dbe8de;
}

.j-hero-trust-item:nth-child(odd) { border-left: 0; }
.j-hero-trust-item:nth-child(-n+2) { border-top: 0; }

.j-hero-trust-item i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #e8f7ee;
  color: var(--j-green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 0.72rem;
}

.j-hero-trust-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--j-navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.j-hero-trust-item span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.3;
  margin-top: 2px;
}

.j-hero-visual {
  position: relative;
  margin-right: -24px;
  animation: j-hero-in 0.85s ease both;
}

.j-hero-glow {
  position: absolute;
  width: 78%;
  height: 70%;
  right: 6%;
  top: 12%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.28) 0%, rgba(34, 197, 94, 0) 70%);
  filter: blur(32px);
  pointer-events: none;
  z-index: 0;
}

.j-hero-window {
  position: relative;
  z-index: 2;
  margin: 28px 0 36px 28px;
  padding: 3px;
  border-radius: 26px;
  overflow: hidden;
  isolation: isolate;
  background: #eaf7ef;
  animation: j-hero-float 6s ease-in-out 0.9s infinite alternate;
}

.j-hero-window-border {
  position: absolute;
  inset: -45%;
  background: conic-gradient(
    from 0deg,
    #bbf7d0 0%,
    #16a34a 8%,
    #4ade80 14%,
    #bbf7d0 22%,
    #dcfce7 40%,
    #dcfce7 72%,
    #16a34a 86%,
    #86efac 92%,
    #bbf7d0 100%
  );
  animation: j-border-spin 3.2s linear infinite;
  z-index: 0;
}

.j-hero-window-shot {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow:
    0 28px 60px -18px rgba(15, 23, 42, 0.22),
    0 0 0 1px rgba(15, 23, 42, 0.04);
  line-height: 0;
}

.j-hero-window img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top center;
}

.j-float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 12px 16px 12px 12px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
  animation: float 5.5s ease-in-out infinite alternate;
}

.j-float-ico {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.j-float-ico-wa { background: #25d366; }
.j-float-ico-fee { background: var(--j-green); }

.j-float-dot {
  position: absolute;
  right: -2px;
  bottom: -2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  border: 2px solid #fff;
}

.j-float-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
}

.j-float-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--j-navy);
  letter-spacing: -0.02em;
}

.j-float-wa {
  top: 48px;
  left: 0;
}

.j-float-fee {
  right: 18px;
  bottom: 52px;
  animation-delay: 1.4s;
}

.j-hero-benefits {
  position: relative;
  z-index: 2;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: 8px 0 0;
  background: #ffffff;
  border: 1px solid #e8eee9;
  border-radius: 22px;
  padding: 16px 6px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.j-hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 12px;
}

.j-hero-benefits li + li {
  border-left: 1px solid #e8eee9;
}

.j-hero-benefits i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.88rem;
  color: var(--j-green);
  background: #eaf7ef;
  flex-shrink: 0;
}

.j-hero-benefits strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--j-navy);
  letter-spacing: -0.02em;
}

.j-hero-benefits span {
  display: block;
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 500;
  line-height: 1.35;
}

.j-dash {
  display: grid;
  grid-template-columns: 56px 168px 1fr;
  min-height: 420px;
  background: #f1f5f9;
  color: #0f172a;
  text-align: left;
}

.j-dash-compact {
  grid-template-columns: 48px 1fr;
  min-height: 340px;
}

.j-dash-rail {
  background: #0f172a;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 0;
  color: #94a3b8;
}

.j-dash-rail-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.j-dash-rail span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
}

.j-dash-rail span.is-on {
  background: rgba(79, 70, 229, 0.28);
  color: #c7d2fe;
}

.j-dash-sub {
  background: #fff;
  border-right: 1px solid #e2e8f0;
  padding: 16px 12px;
}

.j-dash-school {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 14px;
  padding: 0 6px;
  color: #0f172a;
}

.j-dash-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  padding: 7px 8px;
  border-radius: 8px;
  margin-bottom: 2px;
}

.j-dash-nav-item.is-on {
  background: #eef2ff;
  color: #4338ca;
}

.j-dash-main {
  padding: 16px 18px 18px;
  min-width: 0;
}

.j-dash-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 14px;
}

.j-dash-kicker {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6366f1;
}

.j-dash-top strong {
  display: block;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}

.j-dash-top-meta {
  font-size: 0.7rem;
  font-weight: 600;
  color: #64748b;
  background: #fff;
  border: 1px solid #e2e8f0;
  padding: 4px 10px;
  border-radius: 999px;
}

.j-dash-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

.j-dash-pillar {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.j-dash-pillar-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
}

.j-dash-pillar.is-academic .j-dash-pillar-head { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.j-dash-pillar.is-ops .j-dash-pillar-head { background: linear-gradient(135deg, #7c3aed, #6d28d9); }
.j-dash-pillar.is-fin .j-dash-pillar-head { background: linear-gradient(135deg, #059669, #047857); }

.j-dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 10px 8px 12px;
  gap: 4px;
}

.j-dash-kpis div {
  text-align: center;
}

.j-dash-kpis b {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.03em;
}

.j-dash-kpis small {
  color: #64748b;
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.j-dash-bottom {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
}

.j-dash-chart,
.j-dash-feed {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px 14px;
}

.j-dash-chart-head {
  font-size: 0.7rem;
  font-weight: 700;
  color: #475569;
  margin-bottom: 10px;
}

.j-dash-bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 88px;
}

.j-dash-bars span {
  flex: 1;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, #818cf8 0%, #4f46e5 100%);
  opacity: 0.92;
}

.j-dash-feed ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.j-dash-feed li {
  font-size: 0.72rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
}

.j-dash-feed li i { color: #4f46e5; width: 14px; }
.j-dash-feed li i.fa-whatsapp { color: #25d366; }

.j-dash-compact .j-dash-pillars { grid-template-columns: 1fr 1fr; }
.j-dash-compact .j-dash-kpis { grid-template-columns: 1fr 1fr; }
.j-dash-compact .j-dash-bars { height: 72px; }
.j-dash-compact .j-dash-chart { margin-top: 10px; }

.j-ui-dark {
  background: #0b0f19;
  padding: 24px;
  color: #fff;
  border-radius: 0 0 16px 16px;
}

.j-ui-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 16px;
}

.j-ui-kpi {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px;
}

.j-ui-kpi span { display: block; font-size: 0.8rem; color: #94a3b8; margin-bottom: 6px; }
.j-ui-kpi strong { font-size: 0.95rem; font-weight: 700; color: #fff; }

.j-ui-split {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.j-ui-panel {
  background: #111827;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.j-ui-panel p { font-size: 0.8rem; color: #94a3b8; }
.j-ui-panel .j-btn { width: 100%; }

.j-ui-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 12px;
}

.j-ui-feed {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
}

.j-ui-feed i { margin-right: 8px; color: #38bdf8; }

.j-ui-stack { display: flex; flex-direction: column; gap: 10px; }

.j-ui-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
}

.j-ui-line span { color: #94a3b8; }

.j-ui-paper {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--j-shadow-md);
}

.j-ui-paper-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  border-bottom: 1px dashed #cbd5e1;
  padding-bottom: 12px;
}

.j-ui-paper-head span { display: block; font-size: 0.75rem; color: #64748b; }
.j-ui-paper-head em { font-style: normal; font-weight: 700; color: #10b981; }
.j-ui-paper .j-ui-line { background: #f8fafc; color: #0f172a; }
.j-ui-paper .j-ui-line span { color: #64748b; }

.j-wa-preview {
  background: #efeae2;
  border: 1px solid #d1d7db;
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--j-shadow-md);
  max-width: 440px;
  margin: 0 auto;
}

.j-wa-bar {
  background: #075e54;
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.j-wa-bar img {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  padding: 2px;
}

.j-wa-bar span { display: block; font-size: 0.72rem; color: #c8e6c9; }

.j-wa-bubble {
  background: #ffffff;
  border-radius: 8px 8px 8px 0;
  padding: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  margin-bottom: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.j-wa-bubble small {
  display: block;
  text-align: right;
  font-size: 0.68rem;
  color: #94a3b8;
  margin-top: 4px;
}

.j-platform {
  position: relative;
  padding: 88px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 12% 8%, rgba(99, 102, 241, 0.08) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 88% 18%, rgba(167, 139, 250, 0.07) 0%, transparent 55%),
    linear-gradient(180deg, #fbfaff 0%, #f7f5ff 42%, #ffffff 100%);
}

.j-platform-haze {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(79, 70, 229, 0.09) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
}

.j-platform-haze::before,
.j-platform-haze::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(99, 102, 241, 0.1);
  pointer-events: none;
}

.j-platform-haze::before {
  width: 220px;
  height: 220px;
  top: 40px;
  right: 8%;
}

.j-platform-haze::after {
  width: 140px;
  height: 140px;
  bottom: 80px;
  left: 6%;
}

.j-platform-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 8px;
}

.j-platform-title {
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--j-navy);
  line-height: 1.15;
  margin: 8px 0 16px;
}

.j-platform-desc {
  font-size: 1.08rem;
  color: var(--j-text-secondary);
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

.j-mod-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 48px 0 40px;
}

.j-mod-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 214px;
  padding: 24px 22px 56px;
  background: #ffffff;
  border: 1px solid #ebe7f4;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.j-mod-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.09);
  border-color: var(--mod);
}

.j-mod-card:focus-visible {
  outline: 2px solid var(--j-indigo);
  outline-offset: 3px;
}

.j-mod-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.j-mod-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--j-navy);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.j-mod-card p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #64748b;
  font-weight: 500;
}

.j-mod-go {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  background: #f8fafc;
  color: #64748b;
  border: 1px solid #e8eef5;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.j-mod-card-purple { --mod: #7c3aed; --mod-soft: rgba(124, 58, 237, 0.12); }
.j-mod-card-green { --mod: #16a34a; --mod-soft: rgba(22, 163, 74, 0.12); }
.j-mod-card-orange { --mod: #ea580c; --mod-soft: rgba(234, 88, 12, 0.12); }
.j-mod-card-pink { --mod: #db2777; --mod-soft: rgba(219, 39, 119, 0.12); }
.j-mod-card-blue { --mod: #2563eb; --mod-soft: rgba(37, 99, 235, 0.12); }
.j-mod-card-cyan { --mod: #0891b2; --mod-soft: rgba(8, 145, 178, 0.12); }
.j-mod-card-wa { --mod: #16a34a; --mod-soft: rgba(37, 211, 102, 0.14); }
.j-mod-card-violet { --mod: #6d28d9; --mod-soft: rgba(109, 40, 217, 0.12); }

.j-mod-card .j-mod-ico {
  background: var(--mod-soft);
  color: var(--mod);
}

.j-mod-card:hover .j-mod-go {
  background: var(--mod);
  color: #fff;
  border-color: var(--mod);
}

.j-platform-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.j-platform-trust {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.01em;
  line-height: 1.7;
}

.j-platform-trust span {
  margin: 0 8px;
  color: #c4b5fd;
}

@media (prefers-reduced-motion: reduce) {
  .j-mod-card,
  .j-mod-card:hover,
  .j-mod-go {
    transition: none;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .j-mod-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .j-platform { padding: 64px 0 56px; }
  .j-mod-grid { grid-template-columns: 1fr; gap: 14px; margin: 36px 0 32px; }
  .j-mod-card { min-height: 0; }
  .j-platform-actions { flex-direction: column; }
  .j-platform-actions .j-btn { width: 100%; }
}

.j-section {
  padding: 100px 0;
  position: relative;
}

.j-section-subtle {
  background: var(--j-bg-subtle);
  border-top: 1px solid var(--j-border-light);
  border-bottom: 1px solid var(--j-border-light);
}

.j-section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.j-section-kicker {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--j-indigo);
  margin-bottom: 12px;
  display: block;
}

.j-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.j-section-desc {
  font-size: 1.15rem;
  color: var(--j-text-secondary);
  line-height: 1.6;
}

.j-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.j-tab-btn {
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--j-border-light);
  background: #ffffff;
  color: var(--j-text-secondary);
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
}

.j-tab-btn:hover {
  background: var(--j-bg-subtle);
  border-color: #cbd5e1;
}

.j-tab-btn.active {
  background: var(--j-indigo);
  color: #ffffff;
  border-color: var(--j-indigo);
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}

.j-tab-pane {
  display: none;
  animation: fadeIn 0.4s ease;
}

.j-tab-pane.active {
  display: block;
}

.j-students-show {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 0.55fr);
  gap: 40px 48px;
  align-items: center;
  padding: 36px 40px;
  background:
    radial-gradient(ellipse 70% 80% at 92% 18%, rgba(34, 197, 94, 0.08) 0%, transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
  border: 1px solid #e8eee9;
  border-radius: 24px;
  box-shadow: var(--j-shadow-md);
  overflow: hidden;
}

.j-students-copy {
  position: relative;
  z-index: 1;
  animation: fadeIn 0.55s ease both;
}

.j-students-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--j-indigo);
  margin-bottom: 14px;
}

.j-students-copy h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.2vw, 2.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--j-navy);
  margin: 0 0 16px;
}

.j-students-grad {
  background: linear-gradient(135deg, #16a34a 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.j-students-copy > p {
  color: var(--j-text-secondary);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 520px;
}

.j-students-list {
  list-style: none;
  margin: 0 0 16px;
}

.j-students-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 8px;
  margin: 0 -8px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--j-text-primary);
  transition: background 0.2s ease;
}

.j-students-list li:hover {
  background: rgba(34, 197, 94, 0.06);
}

.j-students-list i {
  color: #16a34a;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.j-students-note {
  font-size: 0.88rem !important;
  color: #64748b !important;
  margin: 0 0 22px !important;
}

.j-students-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.j-students-demo {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--j-navy);
  border-bottom: 1px solid rgba(15, 23, 42, 0.28);
  padding-bottom: 2px;
}

.j-students-demo:hover {
  color: var(--j-green);
  border-color: var(--j-green);
}

.j-students-visual {
  position: relative;
  z-index: 1;
  animation: fadeIn 0.65s ease 0.08s both;
}

.j-students-glow {
  position: absolute;
  width: 78%;
  height: 70%;
  right: 6%;
  top: 12%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.22) 0%, rgba(34, 197, 94, 0) 70%);
  filter: blur(28px);
  pointer-events: none;
  z-index: 0;
}

.j-students-dots {
  position: absolute;
  inset: 8% -4% 8% 8%;
  background-image: radial-gradient(rgba(22, 163, 74, 0.14) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.45;
  pointer-events: none;
  z-index: 0;
}

.j-students-live {
  position: absolute;
  top: -10px;
  left: 12px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e8eee9;
  border-radius: 999px;
  padding: 6px 12px 6px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--j-navy);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  animation: float 5.5s ease-in-out infinite alternate;
}

.j-students-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
}

.j-students-frame {
  position: relative;
  z-index: 2;
  margin: 18px 0 0;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 24px 48px -16px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(15, 23, 42, 0.03);
  line-height: 0;
}

.j-students-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top left;
}

@media (max-width: 900px) {
  .j-students-show {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 24px;
  }

  .j-students-live { left: 8px; }
}

@media (max-width: 640px) {
  .j-students-show { padding: 22px 16px; border-radius: 18px; }
  .j-students-cta { flex-direction: column; align-items: flex-start; }
  .j-students-cta .j-btn { width: 100%; }
  .j-students-frame { border-radius: 16px; }
}

.j-module-preview-card {
  background: #ffffff;
  border: 1px solid var(--j-border-light);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--j-shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.j-module-info h3 {
  font-size: 2rem;
  margin: 12px 0 16px;
}

.j-module-info p {
  color: var(--j-text-secondary);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.j-feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.j-feature-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--j-text-primary);
}

.j-feature-checklist li i {
  color: #10b981;
  font-size: 1.1rem;
}

.j-feature-checklist-light li { color: #e2e8f0; }

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

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

.j-card {
  background: #ffffff;
  border: 1px solid var(--j-border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: var(--j-shadow-sm);
}

.j-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--j-shadow-lg);
  border-color: #cbd5e1;
}

.j-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.j-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.j-card p {
  color: var(--j-text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

.j-demo-card {
  background: #ffffff;
  border: 2px solid var(--j-border-light);
  border-radius: var(--radius-xl);
  padding: 36px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.j-demo-card:hover {
  border-color: var(--j-indigo);
  transform: translateY(-6px);
  box-shadow: var(--j-shadow-xl);
}

.j-demo-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.j-calc-box {
  background: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: #ffffff;
  max-width: 840px;
  margin: 0 auto 60px;
  text-align: center;
}

.j-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #334155;
  outline: none;
  margin: 24px 0;
  -webkit-appearance: none;
}

.j-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #4f46e5;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(79, 70, 229, 0.6);
}

.j-price-val {
  font-size: 3rem;
  font-weight: 800;
  color: #38bdf8;
  font-family: var(--font-heading);
}

.j-buy-section {
  padding: 28px 0 48px;
}

.j-buy {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 56px 56px 0;
  color: #fff;
  background:
    radial-gradient(ellipse 70% 80% at 88% 12%, rgba(79, 70, 229, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 8% 90%, rgba(14, 165, 233, 0.12) 0%, transparent 50%),
    linear-gradient(145deg, #1e1b4b 0%, #0f172a 58%, #111827 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 60px rgba(15, 23, 42, 0.22);
}

.j-buy-haze {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.4;
}

.j-buy-haze::before,
.j-buy-haze::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(129, 140, 248, 0.18);
}

.j-buy-haze::before {
  width: 240px;
  height: 240px;
  top: -80px;
  right: -40px;
}

.j-buy-haze::after {
  width: 160px;
  height: 160px;
  bottom: 40px;
  left: -50px;
}

.j-buy-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
  gap: 36px 48px;
  align-items: center;
  padding-bottom: 44px;
}

.j-buy-copy {
  max-width: 540px;
}

.j-buy-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c7d2fe;
  margin-bottom: 22px;
}

.j-buy-kicker i { color: #38bdf8; }

.j-buy-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 20px;
}

.j-buy-lead {
  color: #cbd5e1;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 520px;
}

.j-buy-points {
  list-style: none;
  margin: 0 0 28px;
}

.j-buy-points li {
  display: grid;
  grid-template-columns: 40px 1fr 18px;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.j-buy-points li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.j-buy-point-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, 0.18);
  border: 1px solid rgba(74, 222, 128, 0.28);
  color: #4ade80;
  font-size: 1.05rem;
  line-height: 1;
}

.j-buy-point-ico i {
  color: #4ade80;
  font-size: 1.05rem;
  line-height: 1;
}

.j-buy-points strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.j-buy-points li > div span {
  display: block;
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.4;
  margin-top: 2px;
}

.j-buy-points > li > .fa-circle-check {
  color: #22c55e;
  font-size: 1rem;
}

.j-buy-cta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.j-buy-cta .j-btn-primary {
  min-width: 240px;
  height: 56px;
  padding: 0 28px;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.4);
}

.j-buy-cta > span {
  font-size: 0.92rem;
  color: #94a3b8;
  max-width: 240px;
  line-height: 1.4;
}

.j-buy-rail {
  position: relative;
}

.j-buy-rail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 700;
  color: #4ade80;
  margin: 0 0 22px;
}

.j-buy-journey {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.j-buy-journey li {
  margin: 0;
  min-width: 0;
  animation: fadeIn 0.5s ease both;
}

.j-buy-journey li:nth-child(2) { animation-delay: 0.05s; }
.j-buy-journey li:nth-child(3) { animation-delay: 0.1s; }
.j-buy-journey li:nth-child(4) { animation-delay: 0.15s; }
.j-buy-journey li:nth-child(5) { animation-delay: 0.2s; }
.j-buy-journey li:nth-child(6) { animation-delay: 0.25s; }

.j-buy-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 800;
  background: linear-gradient(180deg, #6366f1 0%, #4f46e5 100%);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.22);
  flex-shrink: 0;
}

.j-buy-rail article {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 20px 20px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.j-buy-rail article:hover {
  transform: translateY(-3px);
  border-color: rgba(129, 140, 248, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.j-buy-rail article header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 14px;
}

.j-buy-step-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(79, 70, 229, 0.22);
  color: #c7d2fe;
  font-size: 1rem;
}

.j-buy-rail article strong {
  display: block;
  color: #fff;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
  line-height: 1.25;
}

.j-buy-rail article em {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 10px;
}

.j-buy-rail article p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.j-buy-journey li.is-featured article {
  border-color: rgba(74, 222, 128, 0.42);
  background: rgba(34, 197, 94, 0.1);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.12);
}

.j-buy-journey li.is-featured .j-buy-num {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.28);
}

.j-buy-journey li.is-featured .j-buy-step-ico {
  background: rgba(34, 197, 94, 0.18);
  color: #86efac;
}

.j-buy-journey li.is-featured em {
  color: #86efac;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  text-transform: none;
}

.j-buy-trust {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 0 -56px;
  padding: 20px 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
}

.j-buy-trust li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #94a3b8;
}

.j-buy-trust i { color: #67e8f9; font-size: 0.78rem; }

@media (prefers-reduced-motion: reduce) {
  .j-buy-rail article,
  .j-buy-rail article:hover,
  .j-buy-journey li {
    animation: none;
    transition: none;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .j-buy { padding: 40px 32px 0; }
  .j-buy-grid { grid-template-columns: 1fr; gap: 36px; align-items: start; }
  .j-buy-copy { max-width: 640px; }
  .j-buy-copy h2 { font-size: clamp(2.2rem, 5vw, 3rem); }
  .j-buy-trust { margin: 0 -32px; padding: 18px 32px; }
}

@media (max-width: 768px) {
  .j-buy-section { padding: 20px 0 28px; }
  .j-buy { padding: 32px 20px 0; border-radius: 24px; }
  .j-buy-copy h2 { font-size: clamp(2.5rem, 9vw, 3rem); }
  .j-buy-cta { flex-direction: column; align-items: flex-start; }
  .j-buy-cta .j-btn-primary { width: 100%; min-width: 0; }
  .j-buy-trust {
    grid-template-columns: 1fr 1fr;
    gap: 10px 8px;
    margin: 0 -20px;
    padding: 16px 20px 20px;
  }
  .j-buy-trust li { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .j-buy-journey { grid-template-columns: 1fr; }
}

.j-website-card {
  background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 100%);
  color: #fff;
  border: none;
}

.j-website-card h3 { color: #fff; font-size: 2rem; }
.j-website-card p { color: #cbd5e1; }

.j-website-preview {
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.15);
  background: #fff;
}

.j-website-preview-body {
  padding: 28px 24px 32px;
  color: #0f172a;
}

.j-website-preview-body p { color: #475569; margin: 8px 0; }
.j-website-preview-body span { font-size: 0.85rem; color: #64748b; }

.j-faq-wrap { max-width: 860px; }

.j-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.j-faq-item {
  background: #fff;
  border: 1px solid var(--j-border-light);
  border-radius: var(--radius-lg);
  padding: 8px 20px;
}

.j-faq-item summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 0;
  list-style: none;
}

.j-faq-item summary::-webkit-details-marker { display: none; }

.j-faq-item p {
  color: var(--j-text-secondary);
  padding-bottom: 16px;
}

.j-cta-band {
  padding: 100px 0;
  background: radial-gradient(circle at 50% 50%, #1e1b4b 0%, #090d16 100%);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.j-cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.25) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
}

.j-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.j-cta-inner h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin: 20px 0;
}

.j-cta-inner p {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 36px;
}

.j-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.j-cta-notes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-size: 0.88rem;
  color: #94a3b8;
  flex-wrap: wrap;
}

.j-cta-notes i { color: #22c55e; margin-right: 6px; }

.j-footer {
  background: #080c14;
  color: #cbd5e1;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.j-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.j-footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.j-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.j-footer-col a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.j-footer-col a:hover {
  color: #ffffff;
}

.j-footer-blurb {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.j-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  color: #fff;
}

.j-footer-contact {
  font-size: 0.88rem;
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.j-footer-contact > div {
  display: flex;
  align-items: flex-start;
  gap: 2px;
}
.j-footer-contact i { color: #38bdf8; margin-right: 8px; margin-top: 3px; flex-shrink: 0; }
.j-footer-contact a { color: #fff; font-weight: 600; }

.j-footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: #64748b;
}

.j-footer-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.j-footer-trust i { color: #38bdf8; margin-right: 6px; }

.j-floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.85rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.j-floating-wa:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-10px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes j-hero-in {
  from { opacity: 0; transform: translateY(22px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes j-hero-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-12px); }
}

@keyframes j-border-spin {
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .j-hero-copy,
  .j-hero-visual,
  .j-hero-window,
  .j-hero-window-border,
  .j-float-card,
  .j-hero-connect,
  .j-btn,
  .j-floating-wa,
  .j-students-copy,
  .j-students-visual,
  .j-students-live {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1280px) {
  .j-hero-benefits { grid-template-columns: repeat(3, 1fr); }
  .j-hero-benefits li:nth-child(3n+1) { border-left: 0; }
  .j-hero-benefits li:nth-child(n+4) { border-top: 1px solid #e8eee9; padding-top: 14px; }
}

@media (max-width: 1100px) {
  .j-hero-split { grid-template-columns: 1fr; gap: 28px; }
  .j-hero-copy { max-width: 640px; }
  .j-hero-visual { min-height: 0; margin-right: 0; }
  .j-hero-window { margin: 36px 12px 28px; }
  .j-hero-benefits { grid-template-columns: repeat(3, 1fr); padding: 12px 8px; }
  .j-hero-benefits li + li { border-left: 1px solid #e8eee9; }
  .j-hero-benefits li:nth-child(3n+1) { border-left: 0; }
  .j-hero-benefits li:nth-child(n+4) { border-top: 1px solid #e8eee9; padding-top: 14px; }
  .j-dash { grid-template-columns: 52px 1fr; }
  .j-dash-compact { grid-template-columns: 48px 1fr; }
  .j-dash-sub { display: none; }
}

@media (max-width: 1024px) {
  .j-grid-3, .j-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .j-module-preview-card { grid-template-columns: 1fr; gap: 32px; }
  .j-footer-grid { grid-template-columns: 1fr 1fr; }
  .j-ui-split, .j-cloud-card { grid-template-columns: 1fr; }
  .j-dropdown-menu { left: -40px; width: 480px; }
}

@media (max-width: 768px) {
  .j-nav-inner { grid-template-columns: 1fr auto; }
  .j-nav-actions { grid-column: 2; }
  .j-nav-links, .j-nav-actions .j-btn { display: none; }
  .j-mobile-toggle { display: block; }
  .j-grid-3, .j-grid-4 { grid-template-columns: 1fr; }
  .j-footer-grid { grid-template-columns: 1fr; }
  .j-hero { padding: 20px 0 28px; }
  .j-hero h1 { font-size: clamp(2.5rem, 9vw, 3rem); }
  .j-hero p.hero-subtitle { font-size: 1rem; }
  .j-hero-visual { min-height: 0; margin-right: 0; }
  .j-hero-window { margin: 28px 0 20px; border-radius: 18px; }
  .j-hero-window-shot { border-radius: 16px; }
  .j-hero-actions { flex-direction: column; align-items: flex-start; gap: 14px; }
  .j-hero-connect { width: 100%; min-width: 0; }
  .j-hero-trust-item { padding: 12px; }
  .j-hero-benefits { grid-template-columns: 1fr 1fr; padding: 8px 12px; }
  .j-hero-benefits li { padding: 14px 8px; }
  .j-hero-benefits li + li,
  .j-hero-benefits li:nth-child(3n+1),
  .j-hero-benefits li:nth-child(n+4) { border: 0; }
  .j-hero-benefits li:nth-child(odd) { border-right: 1px solid #e8eee9; }
  .j-hero-benefits li:nth-child(n+3) { border-top: 1px solid #e8eee9; }
  .j-float-card { max-width: calc(100% - 24px); }
  .j-float-wa { top: 8px; left: 8px; }
  .j-float-fee { right: 8px; bottom: 8px; }
  .j-dash { grid-template-columns: 1fr; min-height: 0; }
  .j-dash-compact { grid-template-columns: 1fr; }
  .j-dash-rail { display: none; }
  .j-dash-pillars,
  .j-dash-bottom { grid-template-columns: 1fr; }
  .j-module-preview-card, .j-cloud-card { padding: 24px; }
  .j-section, .j-cta-band { padding: 60px 0; }
  .j-cta-inner h2 { font-size: 1.85rem; }
  .j-section-title { font-size: 1.85rem; }
}
