/* ============================================
   NIYULOGIC — Global Styles  (Light Edition)
   Design: Clean enterprise, light background
   Fonts: Plus Jakarta Sans (display) + DM Sans (body)
   ============================================ */

:root {
  /* Backgrounds */
  --bg-base:     #F6F8FC;
  --bg-surface:  #FFFFFF;
  --bg-card:     #FFFFFF;
  --bg-muted:    #EFF2F8;

  /* Brand accents */
  --blue:        #2563EB;
  --blue-dim:    rgba(37, 99, 235, 0.08);
  --blue-mid:    rgba(37, 99, 235, 0.2);

  /* Product palettes */
  --teal:        #0D9488;
  --teal-dim:    rgba(13, 148, 136, 0.08);
  --teal-mid:    rgba(13, 148, 136, 0.2);

  --amber:       #D97706;
  --amber-dim:   rgba(217, 119, 6, 0.08);
  --amber-mid:   rgba(217, 119, 6, 0.2);

  --indigo:      #4F46E5;
  --indigo-dim:  rgba(79, 70, 229, 0.08);
  --indigo-mid:  rgba(79, 70, 229, 0.2);

  --emerald:     #059669;
  --emerald-dim: rgba(5, 150, 105, 0.08);
  --emerald-mid: rgba(5, 150, 105, 0.2);

  --gold:        #92400E;
  --gold-bright: #D97706;
  --gold-dim:    rgba(146, 64, 14, 0.08);
  --gold-mid:    rgba(146, 64, 14, 0.2);

  /* Text */
  --text-primary:   #0F172A;
  --text-secondary: #475569;
  --text-muted:     #94A3B8;

  /* Borders & shadows */
  --border:         #E2E8F0;
  --border-strong:  #CBD5E1;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow:         0 4px 16px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg:      0 10px 40px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.05);

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-base);
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.22s ease;
  box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}
.btn-primary:hover {
  background: #1D4ED8;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.35);
}
.amber-btn { background: var(--amber); box-shadow: 0 2px 8px rgba(217,119,6,0.3); }
.amber-btn:hover { background: #B45309; box-shadow: 0 6px 20px rgba(217,119,6,0.35); }
.indigo-btn { background: var(--indigo); box-shadow: 0 2px 8px rgba(79,70,229,0.3); }
.indigo-btn:hover { background: #4338CA; }
.emerald-btn { background: var(--emerald); box-shadow: 0 2px 8px rgba(5,150,105,0.3); }
.emerald-btn:hover { background: #047857; }
.gold-btn { background: var(--gold); box-shadow: 0 2px 8px rgba(146,64,14,0.3); }
.gold-btn:hover { background: #78350F; }
.teal-btn { background: var(--teal); box-shadow: 0 2px 8px rgba(13,148,136,0.3); }
.teal-btn:hover { background: #0F766E; }

.full-btn { width: 100%; justify-content: center; font-size: 1rem; padding: 15px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--text-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1.5px solid var(--border-strong);
  cursor: pointer;
  transition: all 0.22s ease;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-dim); }

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.22s ease;
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.25); }

.btn-nav {
  display: inline-flex;
  align-items: center;
  background: var(--blue);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  padding: 9px 18px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(37,99,235,0.25);
}
.btn-nav:hover { background: #1D4ED8; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(246, 248, 252, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 44px; width: auto; display: block; }
.logo-mark { display: none; }
.logo-text { display: none; }

.nav-links { display: flex; gap: 2px; list-style: none; margin-left: auto; }
.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}
.nav-link:hover { color: var(--text-primary); background: var(--bg-muted); }
.nav-link.active { color: var(--blue); background: var(--blue-dim); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}
.mobile-menu a:hover { color: var(--text-primary); background: var(--bg-muted); }
.mobile-menu .btn-nav { margin-top: 8px; width: fit-content; }

/* ── TYPOGRAPHY HELPERS ── */
.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid var(--blue-mid);
  background: var(--blue-dim);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
.section-title em { font-style: italic; color: var(--blue); font-weight: 700; }

/* ── HERO ── */
.hero {
  position: relative;
  padding: 156px 0 100px;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #EFF6FF 0%, #F6F8FC 40%, #FAF5FF 100%);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 40%, black 30%, transparent 100%);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  top: -100px; right: -120px;
}
.orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(79,70,229,0.1) 0%, transparent 70%);
  bottom: -80px; left: -80px;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: #EFF6FF;
  border: 1px solid var(--blue-mid);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:0.5; transform:scale(1.3); }
}
.hero-title {
  font-size: clamp(3rem, 6vw, 4.8rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 700px;
}
.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; align-items: center; gap: 40px; }
.stat-num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}
.stat-divider { width: 1px; height: 40px; background: var(--border); }
.hero-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: scrollPulse 2.5s ease infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.8;} 50%{opacity:.3;} }

/* ── PRODUCTS STRIP ── */
.products-strip {
  background: var(--bg-surface);
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.strip-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.products-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-base);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.28s ease;
  cursor: pointer;
}
.product-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.card-icon { margin-bottom: 16px; }
.card-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.card-desc {
  font-size: 0.87rem;
  color: var(--text-secondary);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 20px;
}
.card-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: auto;
}

.card-priceiq { border-top: 3px solid var(--teal); }
.card-priceiq .card-tag { color: var(--teal); }
.card-priceiq .card-icon { color: var(--teal); }
.card-priceiq .card-cta { color: var(--teal); }
.card-priceiq:hover { border-color: var(--teal-mid); }

.card-niyusuite { border-top: 3px solid var(--amber); }
.card-niyusuite .card-tag { color: var(--amber); }
.card-niyusuite .card-icon { color: var(--amber); }
.card-niyusuite .card-cta { color: var(--amber); }
.card-niyusuite:hover { border-color: var(--amber-mid); }

.card-niyucrm { border-top: 3px solid var(--indigo); }
.card-niyucrm .card-tag { color: var(--indigo); }
.card-niyucrm .card-icon { color: var(--indigo); }
.card-niyucrm .card-cta { color: var(--indigo); }
.card-niyucrm:hover { border-color: var(--indigo-mid); }

.card-niyupos { border-top: 3px solid var(--emerald); }
.card-niyupos .card-tag { color: var(--emerald); }
.card-niyupos .card-icon { color: var(--emerald); }
.card-niyupos .card-cta { color: var(--emerald); }
.card-niyupos:hover { border-color: var(--emerald-mid); }

.card-niyujewel { border-top: 3px solid var(--gold-bright); }
.card-niyujewel .card-tag { color: var(--gold); }
.card-niyujewel .card-icon { color: var(--gold-bright); }
.card-niyujewel .card-cta { color: var(--gold); }
.card-niyujewel:hover { border-color: var(--gold-mid); }

/* ── WHY SECTION ── */
.why-section { padding: 100px 0; background: var(--bg-base); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-item {
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.25s ease;
}
.why-item:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.why-icon {
  width: 48px; height: 48px;
  background: var(--blue-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 20px;
}
.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.why-item p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* ── CTA BAND ── */
.cta-band {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #1E40AF 0%, #4338CA 100%);
  overflow: hidden;
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band-inner h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.cta-band-inner p { color: rgba(255,255,255,0.75); font-size: 1rem; }
.cta-band-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(160deg, #EFF6FF 0%, #F6F8FC 60%, #FAF5FF 100%);
  border-bottom: 1px solid var(--border);
}
.short-hero { padding: 130px 0 70px; }
.page-hero-content { position: relative; z-index: 2; max-width: 680px; }
.page-hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.75;
}

/* ── FOOTER ── */
.footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-inner {
  display: flex;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { flex: 0 0 280px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand .logo-img { filter: brightness(0) invert(1) opacity(0.8); }
.footer-brand p { font-size: 0.875rem; line-height: 1.65; max-width: 240px; }
.footer-links { display: flex; gap: 56px; flex-grow: 1; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color 0.2s ease; }
.footer-col a:hover { color: rgba(255,255,255,0.9); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { color: rgba(255,255,255,0.35); transition: color 0.2s ease; }
.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }

/* ── PRODUCT DETAIL ── */
.product-detail { padding: 100px 0; background: var(--bg-surface); }
.product-detail.alt-bg { background: var(--bg-base); }
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.product-detail-grid.reverse { direction: rtl; }
.product-detail-grid.reverse > * { direction: ltr; }
.product-label {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.product-label.teal { color: var(--teal); background: var(--teal-dim); border: 1px solid var(--teal-mid); }
.product-label.amber { color: var(--amber); background: var(--amber-dim); border: 1px solid var(--amber-mid); }
.product-label.indigo { color: var(--indigo); background: var(--indigo-dim); border: 1px solid var(--indigo-mid); }
.product-label.emerald { color: var(--emerald); background: var(--emerald-dim); border: 1px solid var(--emerald-mid); }
.product-label.gold { color: var(--gold); background: var(--gold-dim); border: 1px solid var(--gold-mid); }

.product-detail-name {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
.product-tagline {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-style: italic;
}
.product-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
}
.feature-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.feature-dot.teal    { background: var(--teal); }
.feature-dot.amber   { background: var(--amber); }
.feature-dot.indigo  { background: var(--indigo); }
.feature-dot.emerald { background: var(--emerald); }
.feature-dot.gold    { background: var(--gold-bright); }

.feature-item strong { font-size: 0.93rem; font-weight: 700; display: block; margin-bottom: 3px; }
.feature-item p { font-size: 0.855rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* ── PRODUCT VISUALS ── */
.product-detail-visual { position: relative; }
.visual-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.vc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
}
.vc-dot { width: 10px; height: 10px; border-radius: 50%; }
.vc-dot.r { background: #FC5F5A; }
.vc-dot.y { background: #FDBB2E; }
.vc-dot.g { background: #26C940; }
.vc-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 6px;
}
.vc-body { padding: 28px; }
.vc-metric { margin-bottom: 24px; padding: 16px 20px; border-radius: var(--radius); border: 1.5px solid; }
.vc-metric.teal { background: var(--teal-dim); border-color: var(--teal-mid); }
.vc-metric.amber { background: var(--amber-dim); border-color: var(--amber-mid); }
.vc-metric.indigo { background: var(--indigo-dim); border-color: var(--indigo-mid); }
.vc-metric.emerald { background: var(--emerald-dim); border-color: var(--emerald-mid); }
.vc-metric.gold { background: var(--gold-dim); border-color: var(--gold-mid); }
.vm-label { display: block; font-size: 0.75rem; color: var(--text-muted); font-weight: 500; margin-bottom: 4px; }
.vm-value {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
}
.vm-sub { display: block; font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

.vc-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  margin-bottom: 20px;
}
.chart-bar {
  flex: 1;
  height: var(--h);
  background: var(--bg-muted);
  border-radius: 4px 4px 0 0;
  animation: barGrow 0.8s ease var(--delay) both;
}
.chart-bar.active.teal-bar { background: var(--teal); }
.chart-bar.active.amber-bar { background: var(--amber); }
.chart-bar.active.indigo-bar { background: var(--indigo); }
.chart-bar.active.emerald-bar { background: var(--emerald); }
.chart-bar.active.gold-bar { background: var(--gold-bright); }
@keyframes barGrow {
  from { height: 0; opacity: 0; }
  to { height: var(--h); opacity: 1; }
}
.vc-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.vc-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: var(--bg-muted);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.vc-tag.teal { background: var(--teal-dim); color: var(--teal); border-color: var(--teal-mid); }
.vc-tag.amber { background: var(--amber-dim); color: var(--amber); border-color: var(--amber-mid); }
.vc-tag.indigo { background: var(--indigo-dim); color: var(--indigo); border-color: var(--indigo-mid); }
.vc-tag.emerald { background: var(--emerald-dim); color: var(--emerald); border-color: var(--emerald-mid); }
.vc-tag.gold { background: var(--gold-dim); color: var(--gold); border-color: var(--gold-mid); }

.visual-floating-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 10px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow);
  animation: floatBadge 3s ease-in-out infinite;
  color: var(--text-primary);
}
@keyframes floatBadge {
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}

/* Suite modules visual */
.suite-modules { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.suite-mod {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.sm-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.amber-icon { background: var(--amber-dim); color: var(--amber); }
.indigo-icon { background: var(--indigo-dim); color: var(--indigo); }
.emerald-icon { background: var(--emerald-dim); color: var(--emerald); }
.gold-icon { background: var(--gold-dim); color: var(--gold-bright); }
.suite-mod span { font-size: 0.85rem; font-weight: 600; flex-grow: 1; }
.sm-status { font-size: 0.7rem; }
.sm-status.active { color: var(--emerald); }

/* CRM visual */
.crm-pipeline { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.pipeline-stage {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
}
.ps-label { flex-grow: 1; font-weight: 500; }
.ps-bar-wrap { width: 80px; height: 6px; background: var(--bg-muted); border-radius: 3px; overflow: hidden; }
.ps-bar { height: 100%; border-radius: 3px; background: var(--indigo); }
.ps-count { font-weight: 700; font-size: 0.8rem; width: 28px; text-align: right; }

/* POS visual */
.pos-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.pos-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
}
.pos-item-name { font-weight: 500; }
.pos-item-price { font-weight: 700; color: var(--emerald); }
.pos-total {
  padding: 12px 14px;
  background: var(--emerald-dim);
  border: 1px solid var(--emerald-mid);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
}
.pos-total-label { font-size: 0.82rem; color: var(--text-secondary); }
.pos-total-val { font-size: 1.2rem; color: var(--emerald); }

/* Jewel visual */
.jewel-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.jewel-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
}
.ji-rfid {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  background: var(--gold-dim);
  color: var(--gold);
  border: 1px solid var(--gold-mid);
  border-radius: 4px;
  letter-spacing: 0.05em;
}
.ji-name { flex-grow: 1; font-weight: 500; }
.ji-weight { font-size: 0.78rem; color: var(--text-muted); }
.ji-val { font-weight: 700; color: var(--gold); }

/* ── PRODUCT DIVIDER ── */
.product-divider { padding: 0; }
.pd-line { height: 1px; background: var(--border); max-width: 1200px; margin: 0 auto; }

/* ── COMPARE TABLE ── */
.compare-section { padding: 80px 0; background: var(--bg-surface); border-top: 1px solid var(--border); }
.compare-table {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
}
.compare-col { display: flex; flex-direction: column; }
.cc-header {
  padding: 16px 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  background: var(--bg-muted);
  border-bottom: 1.5px solid var(--border);
  letter-spacing: -0.01em;
}
.teal-header { color: var(--teal); }
.amber-header { color: var(--amber); }
.indigo-header { color: var(--indigo); }
.emerald-header { color: var(--emerald); }
.gold-header { color: var(--gold); }
.cc-row {
  padding: 13px 20px;
  font-size: 0.855rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
}
.compare-col:not(.header-col) .cc-row { justify-content: center; }
.check { font-size: 1rem; font-weight: 700; }
.teal-check { color: var(--teal); }
.amber-check { color: var(--amber); }
.indigo-check { color: var(--indigo); }
.emerald-check { color: var(--emerald); }
.gold-check { color: var(--gold-bright); }
.dash { color: var(--text-muted); font-size: 0.9rem; }
.compare-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 24px;
}

/* ── ABOUT PAGE ── */
.mission-section { padding: 90px 0; background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.mission-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 24px;
}
.mission-title em { color: var(--blue); font-style: italic; }
.mission-left p { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }
.mission-right { display: flex; flex-direction: column; gap: 14px; }
.value-card {
  background: var(--bg-base);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: all 0.25s ease;
}
.value-card:hover { border-color: var(--blue-mid); box-shadow: var(--shadow-sm); }
.value-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.value-card p { font-size: 0.855rem; color: var(--text-secondary); line-height: 1.6; }

/* ── TIMELINE ── */
.story-section { padding: 90px 0; background: var(--bg-base); }
.timeline { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 23px; top: 8px; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--blue), var(--indigo), transparent);
  opacity: 0.25;
}
.tl-item { display: grid; grid-template-columns: 48px 80px 1fr; gap: 16px; align-items: flex-start; padding-bottom: 44px; }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; margin-top: 4px; position: relative; z-index: 1; justify-self: center; flex-shrink: 0; }
.tl-dot.blue { background: var(--blue); box-shadow: 0 0 10px rgba(37,99,235,0.4); }
.tl-dot.indigo { background: var(--indigo); box-shadow: 0 0 10px rgba(79,70,229,0.4); }
.tl-dot.cyan { background: var(--teal); box-shadow: 0 0 10px rgba(13,148,136,0.4); }
.tl-dot.amber { background: var(--amber); box-shadow: 0 0 10px rgba(217,119,6,0.4); }
.tl-year { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--text-muted); padding-top: 2px; }
.tl-content h4 { font-size: 0.97rem; font-weight: 700; margin-bottom: 7px; }
.tl-content p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* ── VALUES ── */
.values-section { padding: 90px 0; background: var(--bg-surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.value-block {
  background: var(--bg-base);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all 0.25s ease;
}
.value-block:hover { border-color: var(--blue-mid); box-shadow: var(--shadow-sm); }
.vb-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--blue-mid);
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}
.value-block h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.value-block p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* ── CONTACT PAGE ── */
.contact-section { padding: 60px 0 100px; background: var(--bg-base); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-form-wrap {
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; letter-spacing: -0.02em; }
.form-sub { font-size: 0.9rem; color: var(--text-secondary); margin-bottom: 28px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--text-secondary); letter-spacing: 0.02em; }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-base);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  color: var(--text-primary);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-dim);
  background: var(--bg-surface);
}
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }

.form-success {
  display: none;
  text-align: center;
  padding: 48px 32px;
  background: var(--bg-base);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
}
.form-success.visible { display: block; }
.success-icon {
  width: 52px; height: 52px;
  background: var(--emerald);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.form-success h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; color: var(--text-secondary); }

.contact-info { display: flex; flex-direction: column; gap: 36px; padding-top: 8px; }
.info-block h4 {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.info-icon {
  width: 38px; height: 38px;
  background: var(--bg-surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary);
  flex-shrink: 0;
}
.info-label { display: block; font-size: 0.73rem; color: var(--text-muted); margin-bottom: 3px; }
.info-value { font-weight: 600; font-size: 0.92rem; color: var(--text-primary); transition: color 0.2s ease; }
.info-value:hover { color: var(--blue); }

.product-inquiry-card { border-radius: var(--radius); padding: 18px 20px; margin-bottom: 10px; border: 1.5px solid; }
.cyan-inquiry { background: var(--teal-dim); border-color: var(--teal-mid); }
.amber-inquiry { background: var(--amber-dim); border-color: var(--amber-mid); }
.piq-name { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 0.95rem; margin-bottom: 5px; }
.product-inquiry-card p { font-size: 0.83rem; color: var(--text-secondary); margin-bottom: 10px; line-height: 1.55; }
.piq-link { font-size: 0.83rem; font-weight: 600; }
.cyan-link { color: var(--teal); }
.amber-link { color: var(--amber); }

.response-items { display: flex; flex-direction: column; gap: 14px; }
.response-item { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ri-bar {
  width: 40px; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  border-radius: 2px;
  flex-shrink: 0;
}
.response-item span { font-size: 0.85rem; color: var(--text-secondary); flex-grow: 1; }
.response-item strong { font-size: 0.85rem; color: var(--text-primary); font-weight: 600; }

/* ── ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .compare-table { grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr 1fr; font-size: 0.82rem; }
  .products-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-detail-grid.reverse { direction: ltr; }
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; }
  .compare-table { grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr 1fr; font-size: 0.75rem; }
  .cc-header, .cc-row { padding: 10px 10px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .cta-band-inner { flex-direction: column; }
  .hero-stats { gap: 24px; }
  .footer-inner { flex-direction: column; gap: 36px; }
  .footer-links { gap: 28px; }
}
@media (max-width: 700px) {
  .products-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero { padding: 130px 0 80px; }
  .hero-ctas { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .compare-table { grid-template-columns: 1.2fr repeat(5, 0.8fr); font-size: 0.7rem; }
  .tl-item { grid-template-columns: 36px 60px 1fr; gap: 8px; }
  .contact-form-wrap { padding: 24px; }
}
