/* ==========================================================================
   NUGI PROPERTI - ULTRA PREMIUM PROPERTY-TECH DESIGN SYSTEM
   ========================================================================== */

:root {
  /* ========================================================================
     NUGIPROPERTI — UNIFIED BRAND TOKENS (match Nugi Content Factory)
     Identitas: dark obsidian + gradient violet (#8B5CF6) → cyan (#38BDF8)
     ======================================================================== */

  --bg-dark: #070b14;
  --bg-surface: #0c1220;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-card-hover: rgba(22, 34, 60, 0.85);

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-highlight: rgba(139, 92, 246, 0.4);
  --border-card: rgba(255, 255, 255, 0.1);

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --accent-violet: #8b5cf6;
  --accent-violet-light: #a855f7;
  --accent-violet-soft: #c084fc;
  --accent-cyan: #38bdf8;
  --accent-indigo: #6366f1;
  --accent-emerald: #10b981;
  --accent-amber: #f59e0b;
  --accent-rose: #f43f5e;

  --wa-green: #25d366;

  --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #38bdf8 100%);
  --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
  --gradient-hero: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.16), transparent 62%);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.6);

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* Reset & Base Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Ambient Glow Lighting */
.glow-sphere {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
}
.sphere-1 {
  width: 550px;
  height: 550px;
  background: rgba(139, 92, 246, 0.09);
  top: -100px;
  left: 20%;
}
.sphere-2 {
  width: 500px;
  height: 500px;
  background: rgba(56, 189, 248, 0.07);
  bottom: 10%;
  right: 10%;
}

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

/* Typography */
h1, h2, h3, h4 {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.3;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.94rem;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  font-family: var(--font-main);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 18px rgba(56, 189, 248, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(56, 189, 248, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-main);
  border: 1px solid var(--border-card);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.84rem;
}
.btn-block {
  width: 100%;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: rgba(7, 11, 18, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0;
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 1.18rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.brand-logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer .brand-logo-img {
  height: 38px;
}
.logo-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(56, 189, 248, 0.2));
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: var(--accent-violet-soft);
}
.logo-icon svg {
  width: 17px;
  height: 17px;
}
.brand-logo .highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 800;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: var(--accent-cyan);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
}

/* Hero Section */
.hero-section {
  padding: 140px 0 80px 0;
  text-align: center;
  position: relative;
  background: var(--gradient-hero);
}
.hero-container {
  max-width: 900px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-cyan);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-cyan);
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  line-height: 1.25;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 740px;
  margin: 0 auto 32px auto;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 16px 24px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}
.trust-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}
.trust-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--border-subtle);
}

/* Sections General */
.section {
  padding: 80px 0;
  position: relative;
}
.section-header {
  margin-bottom: 44px;
}
.text-center {
  text-align: center;
}
.section-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent-violet-soft);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.section-title {
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.section-subtitle {
  font-size: 0.96rem;
  color: var(--text-muted);
  max-width: 660px;
  margin: 0 auto;
}

/* Cards & Grid Base */
.grid {
  display: grid;
  gap: 20px;
}
.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 26px;
  backdrop-filter: blur(12px);
  transition: all 0.25s ease;
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Problem Cards */
.problem-card .card-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.bg-red { background: rgba(244, 63, 94, 0.12); border: 1px solid rgba(244, 63, 94, 0.25); color: #fb7185; }
.bg-orange { background: rgba(245, 158, 11, 0.12); border: 1px solid rgba(245, 158, 11, 0.25); color: #fbbf24; }
.bg-purple { background: rgba(168, 85, 247, 0.12); border: 1px solid rgba(168, 85, 247, 0.25); color: #c084fc; }
.bg-blue { background: rgba(56, 189, 248, 0.12); border: 1px solid rgba(56, 189, 248, 0.25); color: #38bdf8; }
.bg-emerald { background: rgba(16, 185, 129, 0.12); border: 1px solid rgba(16, 185, 129, 0.25); color: #34d399; }
.bg-cyan { background: rgba(56, 189, 248, 0.12); border: 1px solid rgba(56, 189, 248, 0.25); color: #38bdf8; }

.card-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.card-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Solution Cards */
.solution-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.solution-icon {
  font-size: 1.6rem;
}
.solution-tag {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  color: var(--accent-cyan);
}
.feature-list {
  list-style: none;
  margin-top: 16px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
}
.feature-list li {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.highlight-border {
  border-color: var(--border-highlight);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.08);
}

/* ==========================================================================
   SECTION 4: TENTANG SAYA & REKAM JEJAK (REDESIGNED ULTRA CLEAN)
   ========================================================================== */
.founder-showcase-card {
  padding: 36px;
  background: linear-gradient(135deg, rgba(16, 24, 40, 0.85), rgba(11, 17, 28, 0.85));
  border: 1px solid rgba(56, 189, 248, 0.2);
  margin-bottom: 40px;
}

.founder-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: center;
}

.founder-visual-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.founder-img-frame {
  position: relative;
  width: 170px;
  height: 170px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.2);
  margin-bottom: 14px;
}

.founder-main-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.founder-badge-floating {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8, 12, 20, 0.88);
  border: 1px solid rgba(56, 189, 248, 0.4);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--accent-cyan);
  white-space: nowrap;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 5px;
}
.founder-status-dot {
  width: 6px;
  height: 6px;
  background: var(--accent-emerald);
  border-radius: 50%;
}

.founder-quick-pills {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}
.pill-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  padding: 5px 11px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  text-align: center;
}
.pill-item .icon { width: 14px; height: 14px; color: var(--accent-violet-soft); }
.email-link { display: inline-flex; align-items: center; gap: 6px; }
.email-link .icon { width: 14px; height: 14px; }
.float-icon .icon { width: 18px; height: 18px; }

.founder-story-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent-violet-soft);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.story-headline {
  font-size: 1.35rem;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.4;
}

.story-paragraph {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.65;
}

.story-actions {
  margin-top: 10px;
}

/* Sleek Slider Module */
/* ==========================================================================
   CINEMATIC FULL-VIEW AUTHORITY SHOWCASE (GAMBAR JELAS & TEKS TERPISAH)
   ========================================================================== */
.cinematic-showcase-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.featured-slide-card {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-lg);
  min-height: 440px;
  align-items: stretch;
}

.featured-img-stage {
  background: #03060d;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border-subtle);
}

.featured-main-photo {
  max-width: 100%;
  max-height: 420px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.featured-info-panel {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.7), rgba(9, 14, 24, 0.7));
}

.slide-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.featured-category-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent-violet-soft);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.slide-counter-badge {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-dim);
  font-weight: 600;
}

.featured-slide-title {
  font-size: 1.45rem;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.35;
}

.featured-slide-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.featured-nav-controls {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.cinematic-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-card);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-main);
}
.cinematic-nav-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}
.cinematic-nav-btn.primary {
  background: var(--gradient-primary);
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(56, 189, 248, 0.25);
}
.cinematic-nav-btn.primary:hover {
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
}

/* 8 Thumbnail Strip */
.thumbnail-selector-strip {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.thumb-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}
.thumb-btn img {
  width: 100%;
  height: 52px;
  object-fit: cover;
  border-radius: 4px;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.thumb-btn .thumb-label {
  font-size: 0.68rem;
  color: var(--text-dim);
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
.thumb-btn:hover {
  border-color: rgba(56, 189, 248, 0.4);
}
.thumb-btn:hover img {
  opacity: 0.9;
}
.thumb-btn.active {
  border-color: var(--accent-cyan);
  background: rgba(56, 189, 248, 0.08);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
}
.thumb-btn.active img {
  opacity: 1;
}
.thumb-btn.active .thumb-label {
  color: var(--accent-cyan);
}

@media (max-width: 900px) {
  .featured-slide-card { grid-template-columns: 1fr; }
  .featured-img-stage { border-right: none; border-bottom: 1px solid var(--border-subtle); min-height: 280px; }
  .thumbnail-selector-strip { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .thumbnail-selector-strip { grid-template-columns: repeat(2, 1fr); }
}

/* Portfolio Case Studies */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 24px;
}
.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s ease;
}
.portfolio-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}
.portfolio-preview {
  padding: 28px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bg-gradient-1 { background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(56, 189, 248, 0.12)); }
.bg-gradient-2 { background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(56, 189, 248, 0.12)); }
.bg-gradient-3 { background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(244, 63, 94, 0.1)); }
.bg-gradient-4 { background: linear-gradient(135deg, rgba(245, 158, 11, 0.12), rgba(139, 92, 246, 0.1)); }

.portfolio-status-badge {
  position: absolute;
  top: 12px;
  left: 14px;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-full);
}
.status-production {
  background: rgba(16, 185, 129, 0.18);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34d399;
}
.status-deployed {
  background: rgba(56, 189, 248, 0.18);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
}

.code-preview-box {
  background: rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: #38bdf8;
  max-width: 92%;
  text-align: center;
}
.portfolio-body {
  padding: 24px;
}
.portfolio-title {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.portfolio-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.tech-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 12px;
}
.tech-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-right: 4px;
}
.tag {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-card);
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
}
.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.step-number {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-mono);
  color: rgba(139, 92, 246, 0.45);
  margin-bottom: 8px;
}
.step-title {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.step-desc {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Pricing Cards */
.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.featured-pricing {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.14);
  background: rgba(18, 30, 50, 0.8);
}
.featured-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--radius-full);
}
.package-name {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.package-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.price-box {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}
.price-from {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
}
.price-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
}
.price-range {
  font-size: 0.8rem;
  color: var(--text-dim);
  display: block;
}
.pricing-features {
  list-style: none;
  margin-bottom: 22px;
}
.pricing-features li {
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

/* Consultation Form Card */
.consultation-card {
  padding: 36px;
  background: linear-gradient(135deg, rgba(16, 24, 40, 0.9), rgba(9, 15, 26, 0.9));
  border: 1px solid var(--border-highlight);
}
.consultation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
.consultation-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.consultation-subtitle {
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.6;
  font-size: 0.92rem;
}
.consultation-points .point-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.86rem;
  color: var(--text-main);
  margin-bottom: 8px;
}
.consultation-points .point-item .icon {
  color: var(--accent-violet-soft);
  margin-top: 2px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-muted);
}
.form-input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.88rem;
  transition: all 0.2s ease;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  font-size: 0.94rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-main);
}
.faq-icon {
  font-size: 1.1rem;
  color: var(--accent-cyan);
  transition: transform 0.2s ease;
}
.faq-answer {
  padding: 0 20px 16px 20px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

/* Footer */
.footer {
  padding: 48px 0 80px 0;
  border-top: 1px solid var(--border-subtle);
  background: #04070d;
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-dim);
  max-width: 460px;
  margin: 8px auto 0 auto;
}
.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.82rem;
}
.footer-links a:hover {
  color: var(--accent-cyan);
}
.footer-bottom p {
  font-size: 0.76rem;
  color: var(--text-dim);
}

/* Sticky Float Button */
.sticky-wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 999;
}
.float-wa-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  padding: 11px 18px;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.25s ease;
}
.float-wa-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

/* ==========================================================================
   SVG ICON SYSTEM (stroke, menggantikan emoji)
   ========================================================================== */
.icon {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-icon-box .icon { width: 22px; height: 22px; }
.solution-icon .icon { width: 28px; height: 28px; }
.btn .icon { width: 1.1em; height: 1.1em; }
.consultation-points .point-item .icon { width: 18px; height: 18px; }
.logo-icon .icon { width: 17px; height: 17px; }

/* ==========================================================================
   HERO — TWO COLUMN (copy kiri + dashboard mockup kanan)
   ========================================================================== */
.hero-section { text-align: left; }
.hero-container {
  max-width: 1160px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero-copy { display: flex; flex-direction: column; align-items: flex-start; }
.hero-subtitle { margin-left: 0; margin-right: 0; }
.hero-actions { justify-content: flex-start; }
.trust-strip { grid-column: 1 / -1; }

/* Dashboard / CRM property-tech mockup (murni HTML+CSS) */
.hero-visual { display: flex; justify-content: center; }
.dashboard-mockup {
  width: 100%;
  max-width: 470px;
  position: relative;
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.92), rgba(9, 14, 26, 0.96));
  border: 1px solid rgba(139, 92, 246, 0.32);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7), 0 0 46px rgba(139, 92, 246, 0.12);
  overflow: hidden;
}
.dashboard-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 0%, rgba(139, 92, 246, 0.22), transparent 55%);
  pointer-events: none;
}
.mockup-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mockup-brand { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 0.9rem; color: #fff; }
.mockup-brand .m-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-cyan); box-shadow: 0 0 8px var(--accent-cyan); }
.mockup-live {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 9px;
  border-radius: 9999px;
}
.mockup-metrics { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 16px; }
.mockup-metric { background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; padding: 12px; }
.mockup-metric .m-value { font-size: 1.3rem; font-weight: 800; color: #fff; }
.mockup-metric .m-label { font-size: 0.64rem; color: var(--text-dim); }
.mockup-pipeline { position: relative; display: flex; flex-direction: column; gap: 8px; }
.mockup-stage {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 10px 12px;
}
.mockup-stage .stage-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.stage-dot.v { background: var(--accent-violet); box-shadow: 0 0 8px rgba(139, 92, 246, 0.8); }
.stage-dot.c { background: var(--accent-cyan); box-shadow: 0 0 8px rgba(56, 189, 248, 0.8); }
.stage-dot.e { background: var(--accent-emerald); box-shadow: 0 0 8px rgba(16, 185, 129, 0.8); }
.stage-dot.a { background: var(--accent-amber); box-shadow: 0 0 8px rgba(245, 158, 11, 0.8); }
.stage-dot.r { background: var(--accent-rose); box-shadow: 0 0 8px rgba(244, 63, 94, 0.8); }
.mockup-stage .stage-name { font-size: 0.78rem; color: var(--text-main); font-weight: 600; }
.mockup-stage .stage-count { margin-left: auto; font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-dim); }
.mockup-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 9999px;
  box-shadow: 0 6px 18px rgba(139, 92, 246, 0.35);
}

/* Responsive Breakpoints */
@media (max-width: 900px) {
  .hero-title { font-size: 2.1rem; }
  .hero-container { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-copy { align-items: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { width: 100%; }
  .founder-grid { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .consultation-grid { grid-template-columns: 1fr; gap: 24px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .trust-strip { flex-direction: column; gap: 12px; text-align: center; }
  .trust-divider { display: none; }
  .nav-menu { display: none; }
  .mobile-toggle { display: block; }
}
