/* ═══════════════════════════════════════════════════════════
   ChatCMMC Landing Pages — Jun Cyber Premium Design System
   Brand: Deep Purple + Vibrant Orange | Glassmorphism
   Font: Inter | Animations & Responsive
   ═══════════════════════════════════════════════════════════ */

/* ── Scroll Reveal Animations ──────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ── Keyframes ─────────────────────────── */
@keyframes heroGlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 122, 0, 0.15); }
  50%      { box-shadow: 0 0 40px rgba(255, 122, 0, 0.3); }
}

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

@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}

@keyframes slideOutRight {
  from { transform: translateX(0); }
  to   { transform: translateX(100%); }
}

/* ── Landing Page Body ─────────────────── */
.landing-page {
  height: auto;
  overflow: auto;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.landing-page .app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 5, 32, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.3s ease;
}

/* ── Header Navigation ─────────────────── */
.header-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

.header-logo-link:hover {
  opacity: 0.85;
}

.header-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.cta-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  color: var(--jc-gray-300);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--jc-white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
  color: var(--jc-orange);
  background: rgba(255, 122, 0, 0.08);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--jc-orange), #e86e00);
  color: var(--jc-white);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition-fast);
  box-shadow: 0 2px 12px rgba(255, 122, 0, 0.25);
}

.header-cta:hover {
  background: linear-gradient(135deg, var(--jc-orange-bright), var(--jc-orange));
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255, 122, 0, 0.4);
}

/* ── Mobile Hamburger Menu ─────────────── */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 200;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--jc-gray-300);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-btn:hover span {
  background: var(--jc-orange);
}

/* Hamburger → X animation */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Backdrop overlay */
.mobile-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 140;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-backdrop.open {
  display: block;
  opacity: 1;
}

/* Slide-in drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  background: linear-gradient(180deg, #1a0a2e 0%, #0f0520 100%);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 150;
  padding: 80px 24px 32px;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
}

.mobile-nav.open {
  display: flex;
  transform: translateX(0);
}

.mobile-nav .nav-link {
  display: block;
  font-size: 0.95rem;
  padding: 14px 16px;
  border-radius: 10px;
  color: var(--jc-gray-300);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.mobile-nav .nav-link:hover {
  color: var(--jc-white);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-nav .header-cta {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  padding: 14px 20px;
  font-size: 0.9rem;
  border-radius: 12px;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px 20px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--jc-white);
}

.mobile-nav-header .header-logo-img {
  height: 28px;
  width: auto;
}

.mobile-nav-link {
  display: block;
  font-size: 0.95rem;
  padding: 14px 16px;
  border-radius: 10px;
  color: var(--jc-gray-300);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition-fast);
}

.mobile-nav-link:hover {
  color: var(--jc-white);
  background: rgba(255, 255, 255, 0.06);
}

.mobile-nav-cta {
  display: flex;
  justify-content: center;
  margin-top: 16px;
  padding: 14px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  color: var(--jc-white);
  background: linear-gradient(135deg, var(--jc-orange), #e06800);
  transition: var(--transition-fast);
}

.mobile-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 122, 0, 0.3);
}

.mobile-nav-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 8px 16px;
}

.header-brand {
  font-size: 1.1rem;
  font-weight: 700;
}

body.no-scroll {
  overflow: hidden;
}

/* ── Landing Main Content ──────────────── */
.landing-main {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 24px 64px;
  animation: fadeInUp 0.5s ease-out;
}

/* ── Hero Section — Animated Gradient ──── */
.hero-section {
  text-align: center;
  padding: 48px 0 56px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(76, 28, 113, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 80%, rgba(255, 122, 0, 0.06) 0%, transparent 60%);
  background-size: 200% 200%;
  animation: heroGlow 12s ease-in-out infinite;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(107, 63, 160, 0.08) 0%, transparent 50%);
  animation: heroGlow 15s ease-in-out infinite reverse;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  background: rgba(255, 122, 0, 0.1);
  border: 1px solid rgba(255, 122, 0, 0.25);
  border-radius: 24px;
  color: var(--jc-orange);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.5s ease-out 0.1s both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--jc-orange);
  border-radius: 50%;
  animation: pulseGlow 2s ease-in-out infinite;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--jc-white) 0%, var(--jc-gray-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.5s ease-out 0.2s both;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--jc-orange) 0%, var(--jc-orange-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--jc-gray-400);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto;
  animation: fadeInUp 0.5s ease-out 0.3s both;
}

/* ── Homepage Hero (Full-width) ────────── */
.homepage-hero {
  position: relative;
  text-align: center;
  padding: 80px 24px 72px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(15, 5, 32, 0.4) 0%, rgba(15, 5, 32, 0.95) 100%),
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(76, 28, 113, 0.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(255, 122, 0, 0.08) 0%, transparent 50%);
  background-size: 100% 100%, 200% 200%, 200% 200%;
  animation: heroGlow 14s ease-in-out infinite;
}

.homepage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(107, 63, 160, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(255, 122, 0, 0.06) 0%, transparent 40%);
  animation: heroGlow 18s ease-in-out infinite reverse;
  pointer-events: none;
}

.homepage-hero .hero-title {
  font-size: 3.4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.homepage-hero .hero-subtitle {
  font-size: 1.2rem;
  max-width: 680px;
}

/* ── Hero Search Bar ───────────────────── */
.hero-search-bar {
  display: inline-flex;
  align-items: center;
  gap: 0;
  max-width: 520px;
  width: 100%;
  margin-top: 32px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition-fast);
  animation: fadeInUp 0.5s ease-out 0.5s both;
}

.hero-search-bar:hover {
  border-color: rgba(255, 122, 0, 0.3);
  box-shadow: 0 0 30px rgba(255, 122, 0, 0.1);
}

.hero-search-bar input {
  flex: 1;
  padding: 16px 20px;
  background: transparent;
  border: none;
  outline: none;
  color: var(--jc-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}

.hero-search-bar input::placeholder {
  color: var(--jc-gray-500);
}

.hero-search-bar .search-btn {
  padding: 12px 24px;
  margin: 4px;
  background: linear-gradient(135deg, var(--jc-orange), #e86e00);
  color: var(--jc-white);
  border: none;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
}

.hero-search-bar .search-btn:hover {
  background: linear-gradient(135deg, var(--jc-orange-bright), var(--jc-orange));
  box-shadow: 0 4px 16px rgba(255, 122, 0, 0.35);
}

/* ── Stats Counter Bar ─────────────────── */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  overflow: hidden;
}

.stats-bar .stat-item {
  flex: 1;
  text-align: center;
  padding: 28px 20px;
  position: relative;
  transition: var(--transition-fast);
}

.stats-bar .stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}

.stats-bar .stat-item:hover {
  background: rgba(255, 255, 255, 0.03);
}

.stats-bar .stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--jc-orange), var(--jc-orange-bright));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stats-bar .stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--jc-gray-400);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ── Trust Badges Strip ────────────────── */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 24px 0;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--jc-gray-400);
  font-weight: 500;
  transition: var(--transition-fast);
}

.trust-badge:hover {
  color: var(--jc-white);
}

.trust-badge .badge-icon {
  font-size: 1.1rem;
  color: var(--jc-orange);
}

/* ── Content Sections ──────────────────── */
.content-section {
  margin-bottom: 56px;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255, 122, 0, 0.1);
  border: 1px solid rgba(255, 122, 0, 0.15);
  border-radius: 8px;
  color: var(--jc-orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.content-section h2 {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--jc-white);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.content-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 28px;
  color: var(--jc-white);
}

.content-section p {
  font-size: 0.95rem;
  color: var(--jc-gray-300);
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-section ul,
.content-section ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.content-section li {
  font-size: 0.92rem;
  color: var(--jc-gray-300);
  line-height: 1.7;
  margin-bottom: 8px;
}

.content-section li strong {
  color: var(--jc-white);
}

/* ── FAQ Accordion ─────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 122, 0, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-item.active {
  border-color: rgba(255, 122, 0, 0.3);
  background: rgba(255, 255, 255, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--jc-white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.02);
}

.faq-arrow {
  color: var(--jc-orange);
  font-size: 0.8rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
  max-height: 600px;
}

.faq-answer-inner {
  padding: 0 24px 22px;
  font-size: 0.92rem;
  color: var(--jc-gray-300);
  line-height: 1.8;
}

.faq-answer-inner a {
  color: var(--jc-orange);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.faq-answer-inner a:hover {
  text-decoration: underline;
  color: var(--jc-orange-bright);
}

/* ── Info Cards / Grid — Enhanced ──────── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
  margin: 28px 0;
}

.info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--jc-orange), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.info-card:hover {
  border-color: rgba(255, 122, 0, 0.3);
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 0 30px rgba(255, 122, 0, 0.15),
              0 12px 32px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.06);
}

.info-card:hover::before {
  opacity: 1;
}

.info-card .card-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
  animation-play-state: paused;
}

.info-card:hover .card-icon {
  animation-play-state: running;
}

.info-card h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--jc-white);
  margin-bottom: 8px;
  margin-top: 0;
}

.info-card p {
  font-size: 0.86rem;
  color: var(--jc-gray-400);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ── Content Hub Grid ──────────────────── */
.content-hub {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin: 32px 0;
}

.content-hub .hub-card {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.content-hub .hub-card::after {
  content: '→';
  position: absolute;
  top: 28px;
  right: 28px;
  font-size: 1.1rem;
  color: var(--jc-gray-600);
  transition: all 0.35s ease;
}

.content-hub .hub-card:hover {
  border-color: rgba(255, 122, 0, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(255, 122, 0, 0.1),
              0 10px 30px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.content-hub .hub-card:hover::after {
  color: var(--jc-orange);
  transform: translateX(4px);
}

.hub-card .hub-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.hub-card .hub-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--jc-white);
  margin-bottom: 8px;
}

.hub-card .hub-description {
  font-size: 0.85rem;
  color: var(--jc-gray-400);
  line-height: 1.6;
  flex: 1;
}

/* ── Features Showcase ─────────────────── */
.features-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 36px 0;
}

.features-showcase .feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 36px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.features-showcase .feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255, 122, 0, 0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.features-showcase .feature-card:hover {
  border-color: rgba(255, 122, 0, 0.25);
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(255, 122, 0, 0.12),
              0 16px 40px rgba(0, 0, 0, 0.25);
}

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

.feature-card .feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.12), rgba(107, 63, 160, 0.12));
  border: 1px solid rgba(255, 122, 0, 0.15);
  border-radius: 18px;
  position: relative;
  z-index: 1;
}

.feature-card .feature-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--jc-white);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.feature-card .feature-description {
  font-size: 0.88rem;
  color: var(--jc-gray-400);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ── How It Works (3-col Steps) ────────── */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 36px 0;
  position: relative;
}

/* Connecting line between step cards */
.how-it-works::before {
  content: '';
  position: absolute;
  top: 56px;
  left: calc(16.66% + 12px);
  right: calc(16.66% + 12px);
  height: 2px;
  background: linear-gradient(90deg,
    rgba(255, 122, 0, 0.3),
    rgba(107, 63, 160, 0.3),
    rgba(255, 122, 0, 0.3));
  z-index: 0;
}

.how-it-works .step-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  position: relative;
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.how-it-works .step-card:hover {
  border-color: rgba(255, 122, 0, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.how-it-works .step-badge {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--jc-orange), #e86e00);
  border-radius: 14px;
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 16px rgba(255, 122, 0, 0.3);
}

.how-it-works .step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--jc-white);
  margin-bottom: 8px;
}

.how-it-works .step-card p {
  font-size: 0.85rem;
  color: var(--jc-gray-400);
  line-height: 1.65;
}

/* ── Levels Table ──────────────────────── */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
  border-radius: 14px;
}

.levels-table {
  width: 100%;
  min-width: 500px;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--glass-border);
}

.levels-table thead th {
  background: rgba(255, 122, 0, 0.1);
  color: var(--jc-orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 122, 0, 0.15);
}

.levels-table tbody td {
  padding: 14px 20px;
  font-size: 0.88rem;
  color: var(--jc-gray-300);
  border-top: 1px solid var(--glass-border);
  background: var(--glass-bg);
  transition: var(--transition-fast);
}

.levels-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.05);
}

/* ── Callout Box ───────────────────────── */
.callout-box {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.08) 0%, rgba(255, 122, 0, 0.02) 100%);
  border: 1px solid rgba(255, 122, 0, 0.2);
  border-left: 4px solid var(--jc-orange);
  border-radius: 0 14px 14px 0;
  padding: 24px 28px;
  margin: 28px 0;
  position: relative;
  overflow: hidden;
}

.callout-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--jc-orange), #6b3fa0);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.callout-box:hover::before {
  opacity: 1;
}

.callout-box h4 {
  color: var(--jc-orange);
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.callout-box p {
  font-size: 0.88rem;
  color: var(--jc-gray-300);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ── Timeline / Steps — Vertical Line ──── */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
  position: relative;
  padding-left: 20px;
}

/* Animated vertical connecting line */
.steps-list::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 39px;
  width: 2px;
  background: linear-gradient(180deg,
    var(--jc-orange),
    #6b3fa0,
    var(--jc-orange));
  background-size: 100% 200%;
  animation: shimmer 4s linear infinite;
  border-radius: 2px;
  opacity: 0.4;
}

.step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  z-index: 1;
}

.step-item:hover {
  border-color: rgba(255, 122, 0, 0.25);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.step-number {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--jc-orange), var(--jc-orange-bright));
  border-radius: 12px;
  color: white;
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(255, 122, 0, 0.25);
}

.step-content h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 1rem;
}

.step-content p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

/* ── Chat CTA Section ──────────────────── */
.chat-cta-section {
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.08) 0%, rgba(26, 10, 46, 0.9) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(76, 28, 113, 0.15) 0%, transparent 60%);
  border-top: 1px solid var(--glass-border);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.chat-cta-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -50px;
  border-radius: 50%;
  pointer-events: none;
}

.cta-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

.cta-container h2 {
  font-size: 1.85rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--jc-white);
  letter-spacing: -0.02em;
}

.cta-container p {
  font-size: 1rem;
  color: var(--jc-gray-400);
  line-height: 1.7;
  margin-bottom: 28px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--jc-orange), var(--jc-orange-bright));
  color: white;
  font-size: 1.02rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 24px rgba(255, 122, 0, 0.3);
  animation: pulseGlow 3s ease-in-out infinite;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 36px rgba(255, 122, 0, 0.45);
}

.cta-subtext {
  display: block;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--jc-gray-600);
}

/* ── Jun Cyber Promo Section ───────────── */
.jc-promo-section {
  background:
    linear-gradient(135deg, rgba(45, 18, 80, 0.4) 0%, rgba(15, 5, 32, 0.8) 100%);
  border: 1px solid rgba(107, 63, 160, 0.15);
  border-radius: 20px;
  padding: 48px 40px;
  margin: 48px 0;
  position: relative;
  overflow: hidden;
}

.jc-promo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(107, 63, 160, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(255, 122, 0, 0.06) 0%, transparent 40%);
  pointer-events: none;
}

.jc-promo-section .promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(107, 63, 160, 0.15);
  border: 1px solid rgba(107, 63, 160, 0.25);
  border-radius: 8px;
  color: #6b3fa0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.jc-promo-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--jc-white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.jc-promo-section p {
  font-size: 0.95rem;
  color: var(--jc-gray-300);
  line-height: 1.75;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.jc-promo-section .promo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #6b3fa0, #4c1c71);
  color: var(--jc-white);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
  z-index: 1;
}

.jc-promo-section .promo-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(107, 63, 160, 0.35);
}

.jc-promo-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
  position: relative;
  z-index: 1;
}

.jc-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(107, 63, 160, 0.1);
  border: 1px solid rgba(107, 63, 160, 0.2);
  border-radius: 10px;
  color: var(--jc-gray-300);
  font-size: 0.85rem;
  font-weight: 500;
}

.jc-feature span {
  font-size: 1.1rem;
}

.jc-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

/* ── Control Bar Chart ─────────────────── */
.control-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0;
  padding: 28px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
}

.control-bars .bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.control-bars .bar-label {
  flex-shrink: 0;
  width: 60px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--jc-gray-400);
  text-align: right;
}

.control-bars .bar-track {
  flex: 1;
  height: 28px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.control-bars .bar-fill {
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--jc-orange), var(--jc-orange-bright));
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  min-width: 30px;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.control-bars .bar-fill::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(255, 255, 255, 0.15));
  border-radius: 8px;
}

.control-bars .bar-value {
  font-size: 0.72rem;
  font-weight: 700;
  color: white;
  position: relative;
  z-index: 1;
}

/* ── Footer ────────────────────────────── */
.landing-footer {
  background: rgba(0, 0, 0, 0.35);
  border-top: 1px solid var(--glass-border);
  padding: 56px 24px 36px;
}

.footer-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-col h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--jc-white);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.footer-col p {
  font-size: 0.82rem;
  color: var(--jc-gray-500);
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a {
  color: var(--jc-gray-400);
  text-decoration: none;
  font-size: 0.82rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-col a:hover {
  color: var(--jc-orange);
  transform: translateX(2px);
}

.footer-bottom {
  max-width: 900px;
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--jc-gray-600);
}

/* ── Breadcrumbs ───────────────────────── */
.breadcrumbs {
  margin-bottom: 24px;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}

.breadcrumbs a {
  color: var(--jc-gray-500);
  text-decoration: none;
  transition: var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--jc-orange);
}

.breadcrumbs span {
  color: var(--jc-gray-600);
  margin: 0 8px;
}

.breadcrumbs .current {
  color: var(--jc-gray-300);
}

/* ═══════════════════════════════════════════
   Responsive Styles
   ═══════════════════════════════════════════ */

/* ── Tablet ────────────────────────────── */
@media (max-width: 900px) {
  .how-it-works {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .how-it-works::before {
    display: none;
  }

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

/* ── Mobile ────────────────────────────── */
@media (max-width: 768px) {
  /* Show hamburger, hide desktop nav */
  .mobile-menu-btn {
    display: flex;
  }

  .header-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  /* Hero adjustments */
  .hero-title {
    font-size: 2rem;
  }

  .hero-section {
    padding: 32px 0 40px;
  }

  .homepage-hero {
    padding: 48px 16px 40px;
  }

  .homepage-hero .hero-title {
    font-size: 2.2rem;
  }

  .homepage-hero .hero-subtitle {
    font-size: 1rem;
  }

  /* Search bar */
  .hero-search-bar {
    flex-direction: column;
    border-radius: 14px;
  }

  .hero-search-bar .search-btn {
    width: calc(100% - 8px);
    margin: 0 4px 4px;
    text-align: center;
    justify-content: center;
  }

  /* Landing main */
  .landing-main {
    padding: 32px 16px 48px;
  }

  /* Stats bar stack on mobile */
  .stats-bar {
    flex-direction: column;
    border-radius: 14px;
  }

  .stats-bar .stat-item:not(:last-child)::after {
    right: 20%;
    top: auto;
    bottom: 0;
    width: 60%;
    height: 1px;
  }

  .stats-bar .stat-item {
    padding: 20px;
  }

  .stats-bar .stat-number {
    font-size: 1.6rem;
  }

  /* Trust badges wrap */
  .trust-badges {
    gap: 16px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Info grid */
  .info-grid {
    grid-template-columns: 1fr;
  }

  /* Content hub */
  .content-hub {
    grid-template-columns: 1fr;
  }

  /* Table */
  .levels-table {
    font-size: 0.82rem;
  }

  /* Steps timeline */
  .steps-list {
    padding-left: 0;
  }

  .steps-list::before {
    left: 19px;
  }

  /* How it works */
  .how-it-works {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Jun Cyber promo */
  .jc-promo-section {
    padding: 32px 24px;
  }

  /* CTA */
  .chat-cta-section {
    padding: 48px 16px;
  }

  .cta-container h2 {
    font-size: 1.5rem;
  }

  /* Control bars */
  .control-bars {
    padding: 20px;
  }

  .control-bars .bar-label {
    width: 48px;
    font-size: 0.72rem;
  }
}

/* ── Small Mobile ──────────────────────── */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.7rem;
  }

  .homepage-hero .hero-title {
    font-size: 1.8rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .content-section h2 {
    font-size: 1.45rem;
  }

  .info-card {
    padding: 22px;
  }

  .faq-question {
    font-size: 0.92rem;
    padding: 18px 20px;
  }

  .step-item {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 0.92rem;
    width: 100%;
    justify-content: center;
  }

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