/* ==========================================================================
   Mobile ERP - Sovereign Enterprise ERP Stylesheet (Linear / Vercel Standard)
   Color Canvas: Deep Obsidian (#080C14 / #0D1322)
   Borders: Ultra-Fine 1px (rgba(255, 255, 255, 0.07))
   Typography: Outfit (Headings) + Plus Jakarta Sans (Body)
   ========================================================================== */

:root {
  --bg-dark: #080c14;
  --bg-canvas: #080c14;
  --bg-surface-1: #0d1322;
  --bg-surface-2: #121a2d;
  --bg-surface-3: #18233c;
  --bg-surface-4: #202d4c;

  --border-color: rgba(255, 255, 255, 0.07);
  --border-subtle: rgba(255, 255, 255, 0.04);
  --border-hover: rgba(59, 130, 246, 0.4);
  --border-focus: rgba(96, 165, 250, 0.6);

  --text-white: #f8fafc;
  --text-muted: #94a3b8;
  --text-sub: #64748b;
  --text-dim: #475569;

  --accent-blue: #2563eb;
  --accent-blue-light: #60a5fa;
  --accent-cyan: #06b6d4;
  --accent-cyan-light: #38bdf8;
  --accent-emerald: #10b981;
  --accent-emerald-light: #34d399;
  --accent-amber: #f59e0b;
  --accent-amber-light: #fbbf24;
  --accent-purple: #8b5cf6;
  --accent-purple-light: #c084fc;
  --accent-rose: #f43f5e;
  --accent-indigo: #6366f1;
  --accent-wa: #25d366;
  --accent-wa-hover: #1eb857;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-card: 0 16px 40px -8px rgba(0, 0, 0, 0.65), 0 0 1px 1px rgba(255, 255, 255, 0.05);
  --shadow-glow: 0 0 50px rgba(37, 99, 235, 0.18);
  --shadow-glow-cyan: 0 0 45px rgba(6, 182, 212, 0.15);
  --shadow-wa: 0 8px 24px rgba(37, 211, 102, 0.28);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  background-color: var(--bg-dark);
  color: var(--text-white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  background-color: var(--bg-dark);
  min-height: 100vh;
  position: relative;
  line-height: 1.65;
  color: var(--text-white);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.max-w-4xl { max-width: 900px; }
.max-w-5xl { max-width: 1040px; }

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-white);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.tabular-nums {
  font-variant-numeric: tabular-nums;
}

.mono-code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  letter-spacing: -0.02em;
}

/* Ambient Lighting Mesh */
.ambient-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.mesh-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.45;
}

.glow-1 {
  top: -120px;
  left: 25%;
  width: 650px;
  height: 450px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.22) 0%, transparent 70%);
}

.glow-2 {
  top: 35%;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.14) 0%, transparent 70%);
}

.glow-3 {
  bottom: 8%;
  left: -80px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.14) 0%, transparent 70%);
}

/* Top Announcement Bar */
.top-announcement-bar {
  background: linear-gradient(90deg, #0f1c3f 0%, #091022 50%, #0b152d 100%);
  border-bottom: 1px solid rgba(59, 130, 246, 0.25);
  padding: 0.55rem 0;
  font-size: 0.82rem;
  color: #bfdbfe;
  position: relative;
  z-index: 60;
}

.announcement-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  text-align: center;
}

.announcement-tag {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.announcement-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #ffffff;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
  transition: var(--transition);
}

.announcement-link:hover {
  color: #93c5fd;
}

/* Sticky Premium Navigation Bar */
.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 12, 20, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
  transition: var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-unit {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-img {
  height: 38px;
  width: 38px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.brand-subheading {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #60a5fa;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.nav-item {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  padding: 0.25rem 0;
}

.nav-item:hover {
  color: var(--text-white);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  transition: var(--transition);
}

.nav-item:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  outline: none;
}

.btn-ghost-nav {
  padding: 0.55rem 1.05rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  font-size: 0.88rem;
}

.btn-ghost-nav:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.btn-wa-nav {
  padding: 0.55rem 1.15rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  font-size: 0.88rem;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
}

.btn-wa-nav:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.38);
}

/* Hero Section */
.hero-section {
  padding: 5rem 0 4rem 0;
  position: relative;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0.95rem;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #93c5fd;
  margin-bottom: 1.5rem;
}

.beacon-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3b82f6;
  box-shadow: 0 0 10px #3b82f6;
  animation: pulseBeacon 2s infinite;
}

@keyframes pulseBeacon {
  0% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.8; }
}

.hero-main-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.highlight-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #38bdf8 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 620px;
}

.hero-cta-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn-primary-hero {
  padding: 0.9rem 1.85rem;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
  border-radius: var(--radius-sm);
}

.btn-primary-hero:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.5);
}

.btn-secondary-hero {
  padding: 0.9rem 1.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  font-size: 1rem;
  border-radius: var(--radius-sm);
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.hero-contact-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.contact-pill-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--text-muted);
}

.contact-pill-item strong {
  color: var(--text-white);
}

.icon-green { color: var(--accent-emerald-light); }
.icon-blue { color: var(--accent-blue-light); }
.icon-purple { color: var(--accent-purple-light); }

/* Interactive Glass Panel / Mockup */
.interactive-glass-panel {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  overflow: hidden;
  transition: var(--transition-slow);
}

.interactive-glass-panel:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.panel-header-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1.15rem;
  background: var(--bg-surface-2);
  border-bottom: 1px solid var(--border-color);
}

.window-controls {
  display: flex;
  gap: 6px;
}

.dot-ctrl {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-ctrl.red { background: #ef4444; }
.dot-ctrl.yellow { background: #f59e0b; }
.dot-ctrl.green { background: #10b981; }

.panel-url-box {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-xs);
  font-size: 0.75rem;
  color: var(--text-sub);
  width: 100%;
}

.lock-icon {
  font-size: 14px;
  color: var(--accent-emerald-light);
}

.panel-inner-body {
  padding: 1.5rem;
}

.dashboard-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.kpi-card {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.kpi-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.kpi-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-sub);
}

.kpi-icon {
  font-size: 18px;
}

.kpi-card.blue .kpi-icon { color: #60a5fa; }
.kpi-card.green .kpi-icon { color: #34d399; }
.kpi-card.amber .kpi-icon { color: #fbbf24; }

.kpi-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white);
}

.kpi-note {
  font-size: 0.7rem;
  color: var(--text-sub);
}

.dashboard-stream-box {
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
}

.stream-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}

.stream-title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.stream-badge-live {
  font-size: 0.65rem;
  font-weight: 800;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.stream-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.stream-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.8rem;
}

.stream-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.stream-dot.green { background: var(--accent-emerald); box-shadow: 0 0 6px var(--accent-emerald); }
.stream-dot.blue { background: var(--accent-blue-light); box-shadow: 0 0 6px var(--accent-blue-light); }
.stream-dot.amber { background: var(--accent-amber); box-shadow: 0 0 6px var(--accent-amber); }

.stream-text {
  flex-grow: 1;
  color: var(--text-muted);
  line-height: 1.5;
}

.stream-text strong {
  color: var(--text-white);
}

.stream-time {
  font-size: 0.7rem;
  color: var(--text-sub);
  white-space: nowrap;
}

/* Partners Marquee */
.partners-section {
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(13, 19, 34, 0.5);
}

.partners-headline {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--text-sub);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.marquee-wrapper {
  overflow: hidden;
  display: flex;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marqueeRun 28s linear infinite;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 0.55rem 1.35rem;
  border-radius: var(--radius-full);
}

@keyframes marqueeRun {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Features Grid */
.features-section {
  padding: 6.5rem 0;
}

.section-title-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3.5rem auto;
}

.section-pretitle {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #60a5fa;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.28);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.15rem;
  text-transform: uppercase;
}

.section-maintitle {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 1.15rem;
  letter-spacing: -0.03em;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.features-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.feature-box {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.feature-box:hover {
  background: var(--bg-surface-2);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
}

.feature-icon-wrapper.blue { background: rgba(37, 99, 235, 0.14); color: #60a5fa; border: 1px solid rgba(37, 99, 235, 0.25); }
.feature-icon-wrapper.green { background: rgba(16, 185, 129, 0.14); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.25); }
.feature-icon-wrapper.amber { background: rgba(245, 158, 11, 0.14); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.25); }
.feature-icon-wrapper.purple { background: rgba(139, 92, 246, 0.14); color: #c084fc; border: 1px solid rgba(139, 92, 246, 0.25); }
.feature-icon-wrapper.cyan { background: rgba(6, 182, 212, 0.14); color: #38bdf8; border: 1px solid rgba(6, 182, 212, 0.25); }
.feature-icon-wrapper.indigo { background: rgba(99, 102, 241, 0.14); color: #818cf8; border: 1px solid rgba(99, 102, 241, 0.25); }

.feature-badge-code {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-xs);
  display: inline-block;
  width: fit-content;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.feature-badge-code.blue { background: rgba(37, 99, 235, 0.15); color: #93c5fd; }
.feature-badge-code.green { background: rgba(16, 185, 129, 0.15); color: #6ee7b7; }
.feature-badge-code.amber { background: rgba(245, 158, 11, 0.15); color: #fde68a; }
.feature-badge-code.purple { background: rgba(139, 92, 246, 0.15); color: #d8b4fe; }
.feature-badge-code.cyan { background: rgba(6, 182, 212, 0.15); color: #7dd3fc; }
.feature-badge-code.indigo { background: rgba(99, 102, 241, 0.15); color: #a5b4fc; }

.feature-box-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.feature-box-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Interactive Showcase Tabs */
.showcase-section {
  padding: 6.5rem 0;
  background: rgba(13, 19, 34, 0.4);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.interactive-console-wrapper {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  box-shadow: var(--shadow-card);
}

.console-tab-buttons {
  display: flex;
  gap: 0.65rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.25rem;
  margin-bottom: 2.25rem;
  overflow-x: auto;
}

.tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.04);
}

.tab-btn.active {
  background: var(--bg-surface-3);
  border-color: rgba(59, 130, 246, 0.4);
  color: var(--text-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.35s ease forwards;
}

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

.tab-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 3rem;
  align-items: center;
}

.tab-description h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.tab-description p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.96rem;
  line-height: 1.65;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text-white);
}

.check-mark {
  color: var(--accent-emerald-light);
  font-size: 20px;
  flex-shrink: 0;
}

.mock-table {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 0.84rem;
}

.mock-head {
  display: grid;
  grid-template-columns: repeat(var(--cols, 4), 1fr);
  padding: 0.85rem 1.15rem;
  background: var(--bg-surface-2);
  font-weight: 800;
  color: var(--text-sub);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border-color);
}

.mock-row {
  display: grid;
  grid-template-columns: repeat(var(--cols, 4), 1fr);
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  align-items: center;
  transition: var(--transition);
}

.mock-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.mock-row:last-child {
  border-bottom: none;
}

.tag-status {
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-xs);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  width: fit-content;
}

.tag-status.safe { background: rgba(16, 185, 129, 0.15); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.25); }
.tag-status.warning { background: rgba(245, 158, 11, 0.15); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.25); }
.tag-status.info { background: rgba(37, 99, 235, 0.15); color: #60a5fa; border: 1px solid rgba(37, 99, 235, 0.25); }
.tag-status.cyan { background: rgba(6, 182, 212, 0.15); color: #38bdf8; border: 1px solid rgba(6, 182, 212, 0.25); }

/* Security Section */
.security-section {
  padding: 6.5rem 0;
}

.security-card-box {
  background: linear-gradient(135deg, #0d1527 0%, #080d1a 100%);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: var(--radius-md);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 3rem;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.security-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: #38bdf8;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.security-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.security-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.security-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.spec-item {
  display: flex;
  gap: 0.85rem;
}

.spec-icon {
  color: #38bdf8;
  font-size: 28px;
  flex-shrink: 0;
}

.spec-item h4 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.spec-item p {
  font-size: 0.85rem;
  color: var(--text-sub);
  line-height: 1.5;
}

.security-badge-display {
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge-item-display {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.huge-icon {
  font-size: 64px;
  color: var(--accent-emerald-light);
}

.badge-item-display span {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
}

.badge-item-display small {
  color: var(--text-sub);
  font-size: 0.78rem;
}

/* Pricing Cards Matrix */
.pricing-section {
  padding: 6.5rem 0;
}

.pricing-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3.5rem;
}

.pricing-plan-item {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  position: relative;
}

.pricing-plan-item:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-card);
}

.pricing-plan-item.popular {
  border: 2px solid var(--accent-blue);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.08) 0%, var(--bg-surface-1) 100%);
  box-shadow: var(--shadow-glow);
}

.popular-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-head-block {
  margin-bottom: 1.75rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.plan-name-txt {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.plan-desc-txt {
  font-size: 0.85rem;
  color: var(--text-muted);
  min-height: 2.5rem;
  line-height: 1.55;
}

.plan-price-block {
  margin-top: 1.25rem;
}

.price-main-val {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.price-period-val {
  font-size: 0.85rem;
  color: var(--text-sub);
}

.plan-features-list {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.plan-features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

.plan-features-list .material-symbols-outlined {
  color: var(--accent-emerald-light);
  font-size: 18px;
  flex-shrink: 0;
}

.btn-plan-action {
  width: 100%;
  padding: 0.85rem;
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-plan-action.primary {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.28);
}

.btn-plan-action.primary:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-plan-action.outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-white);
  border: 1px solid var(--border-color);
}

.btn-plan-action.outline:hover {
  border-color: var(--accent-blue-light);
  background: rgba(37, 99, 235, 0.12);
  transform: translateY(-2px);
}

/* Enterprise Consultation Banner */
.enterprise-consultation-banner {
  background: linear-gradient(135deg, var(--bg-surface-2) 0%, var(--bg-surface-1) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.75rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  box-shadow: var(--shadow-card);
}

.banner-text h3 {
  font-size: 1.65rem;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.banner-text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 600px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.banner-contact-chips {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 600;
  transition: var(--transition);
}

.contact-chip.wa {
  background: rgba(16, 185, 129, 0.12);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.28);
}

.contact-chip.mail {
  background: rgba(59, 130, 246, 0.12);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.28);
}

.contact-chip:hover {
  transform: translateY(-2px);
}

.btn-wa-large {
  padding: 0.95rem 1.85rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.btn-wa-large:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.42);
}

/* Testimonials */
.testimonials-section {
  padding: 6.5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.testimonial-card-item {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.testimonial-card-item:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.testi-stars-row {
  display: flex;
  gap: 3px;
  color: var(--accent-amber);
  margin-bottom: 1rem;
}

.testi-stars-row .material-symbols-outlined {
  font-variation-settings: 'FILL' 1;
  font-size: 18px;
}

.testi-quote-txt {
  font-size: 0.96rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author-block {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-monogram-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.88rem;
  color: #ffffff;
}

.author-info-box h4 {
  font-size: 0.95rem;
  font-weight: 800;
}

.author-info-box span {
  font-size: 0.78rem;
  color: var(--text-sub);
}

/* FAQ Accordion */
.faq-section {
  padding: 6.5rem 0;
  border-top: 1px solid var(--border-color);
}

.faq-accordion-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card-item {
  background: var(--bg-surface-1);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-card-item.open {
  border-color: var(--border-hover);
}

.faq-btn-trigger {
  width: 100%;
  padding: 1.35rem 1.75rem;
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  letter-spacing: -0.015em;
}

.faq-icon-arrow {
  color: #60a5fa;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-card-item.open .faq-icon-arrow {
  transform: rotate(180deg);
}

.faq-body-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 1.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-card-item.open .faq-body-panel {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

/* Bottom CTA Section */
.bottom-cta-section {
  padding: 4rem 0 7rem 0;
}

.bottom-cta-box {
  background: linear-gradient(135deg, #172a59 0%, #0b1427 100%);
  border: 1px solid rgba(59, 130, 246, 0.35);
  border-radius: var(--radius-md);
  padding: 5rem 3rem;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.cta-huge-title {
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  font-weight: 900;
  max-width: 840px;
  margin: 0 auto 1.25rem auto;
  letter-spacing: -0.035em;
}

.cta-huge-subtitle {
  font-size: 1.12rem;
  color: #bfdbfe;
  max-width: 680px;
  margin: 0 auto 2.5rem auto;
  line-height: 1.65;
}

.cta-huge-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-cta {
  padding: 1rem 2.25rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.btn-primary-cta:hover {
  background: linear-gradient(135deg, #059669, #047857);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
}

.btn-secondary-cta {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  font-size: 1.02rem;
  border-radius: var(--radius-sm);
}

.btn-secondary-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Footer */
.footer-wrapper {
  background: #05080e;
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.25fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-col-main .brand-logo-img {
  height: 42px;
  width: 42px;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--text-sub);
  margin: 1rem 0 1.5rem 0;
  max-width: 320px;
  line-height: 1.6;
}

.footer-uptime-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.status-indicator-green {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-emerald-light);
  box-shadow: 0 0 8px var(--accent-emerald-light);
}

.footer-heading {
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-white);
  margin-bottom: 1.25rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links-list a:hover {
  color: #60a5fa;
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #93c5fd !important;
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-sub);
  text-align: center;
}

/* Floating WhatsApp Button */
.floating-wa-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 90;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.wa-btn-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
  transition: var(--transition);
}

.floating-wa-btn:hover .wa-btn-circle {
  transform: scale(1.08);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.wa-tooltip-bubble {
  position: absolute;
  right: 66px;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  color: var(--text-white);
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-xs);
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--transition);
}

.floating-wa-btn:hover .wa-tooltip-bubble {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  .hero-description {
    margin: 0 auto 2.25rem auto;
  }
  .hero-cta-box, .hero-contact-strip {
    justify-content: center;
  }
  .features-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tab-grid-layout {
    grid-template-columns: 1fr;
  }
  .security-card-box {
    grid-template-columns: 1fr;
  }
  .enterprise-consultation-banner {
    flex-direction: column;
    text-align: center;
  }
  .banner-contact-chips {
    justify-content: center;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero-main-title {
    font-size: 2.2rem;
  }
  .dashboard-kpi-grid {
    grid-template-columns: 1fr;
  }
  .security-specs-grid {
    grid-template-columns: 1fr;
  }
  .features-card-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .console-tab-buttons {
    padding-bottom: 0.75rem;
  }
  .mock-head, .mock-row {
    font-size: 0.72rem;
    padding: 0.75rem 0.5rem;
  }
}
